@charset "UTF-8";
/*----------------
フォント読み込み 
----------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  background-image: url(../../assets/images/common/bg-img.webp);
  background-size: contain;
  background-repeat: repeat;
  font-size: 15px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.85;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  body {
    background-image: url(../../assets/images/common/sp_bg-img.webp);
  }
}

.inner {
  margin: 0 auto;
  width: 79.16vw;
}
@media screen and (max-width: 1024px) {
  .inner {
    width: 89.7%;
    margin: 0 auto;
  }
}

.inner--size-l {
  margin: 0 auto;
  width: 89.58vw;
}
@media screen and (max-width: 1024px) {
  .inner--size-l {
    width: 89.7%;
    margin: 0 auto;
  }
}

.oneSide-margin {
  width: min(89.58vw, 1290px + (100vw - 1290px) / 2);
}
@media screen and (max-width: 1024px) {
  .oneSide-margin {
    width: 89.7%;
    margin: 0 auto;
  }
}

.oneSide-margin--noMax {
  width: 89.58vw;
}
@media screen and (max-width: 1024px) {
  .oneSide-margin--noMax {
    width: 100%;
    margin: 0 auto;
  }
}

.oneSide-margin--size-l {
  width: 94.79vw;
}
@media screen and (max-width: 1024px) {
  .oneSide-margin--size-l {
    width: 89.7%;
    margin: 0 auto;
  }
}

.textCenter {
  text-align: center;
}

.border-dashed {
  background-image: linear-gradient(to right, #ADADAD 5px, transparent 5px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.only-pc {
  display: block;
}

.pc-tab1280 {
  display: block;
}

.pc-tab1024 {
  display: block;
}

.tab1280 {
  display: none;
}

.tab1280-tab1024 {
  display: none;
}

.tab1280-sp {
  display: none;
}

.tab1024 {
  display: none;
}

.tab1024-sp {
  display: none;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: block;
  }
  .pc-tab1024 {
    display: block;
  }
  .tab1280 {
    display: block;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: none;
  }
  .only-sp {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: block;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: block;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 86.66%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: none;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: none;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 13px;
  }
  .inner {
    width: 89.333%;
  }
}
/*==================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1024px) {
  @-webkit-keyframes fadeLeftAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeLeftAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1024px) {
  @-webkit-keyframes fadeRightAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeRightAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeInLoadTrigger,
.fadeUpLoadTrigger,
.fadeLeftLoadTrigger,
.fadeRightLoadTrigger {
  opacity: 0;
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger,
.blurLoadTrigger {
  opacity: 0;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-time2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.change-time1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.change-time15 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.change-time2 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.change-time25 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.l-center {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.l-left {
  margin-left: 0;
  margin-right: auto;
}

.l-right {
  margin-right: 0;
  margin-left: auto;
}

.bl-btn {
  width: 187px;
}
@media screen and (max-width: 768px) {
  .bl-btn {
    width: 155px;
  }
}
.bl-btn a {
  display: block;
  padding: 13px 45px 13px 8px;
  transition: all 0.5s;
  position: relative;
  left: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .bl-btn a {
    font-size: 16px;
    padding: 13px 25px 13px 8px;
  }
}
.bl-btn a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  transform: translate(-100%, -50%) rotate(-45deg);
  top: 50%;
  right: 21px;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .bl-btn a::after {
    right: 7px;
  }
}
.bl-btn a::before {
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFFFFF;
  transition: all 0.5s;
}
@media screen and (min-width: 1023.9px) {
  .bl-btn a:hover {
    left: 7px;
    transition: all 0.5s;
  }
  .bl-btn a:hover::after {
    right: 14px;
    transition: all 0.5s;
  }
  .bl-btn a:hover::before {
    left: -7px;
    transition: all 0.5s;
  }
}

@media screen and (max-width: 1024px) {
  .bl-btn--square {
    width: 100%;
  }
}
.bl-btn--square a {
  width: 100%;
  padding: 19px 0;
  position: relative;
  left: 0;
  text-align: center;
  letter-spacing: 0.1em;
  color: #000805;
  background-color: #FFFFFF;
  line-height: 1;
  transition: all 0.5s;
}
.bl-btn--square a::before {
  display: none;
}
.bl-btn--square a::after {
  display: none;
}
.bl-btn--square a:hover {
  background-color: #000805;
  color: #FFFFFF;
  left: 0;
}
@media screen and (max-width: 768px) {
  .bl-btn--square a {
    font-size: 11px;
    padding: 10px 0 10px 25px;
  }
}

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

.bl-flex__rowCenter {
  justify-content: center;
}

.bl-flex__leftAlignment {
  justify-content: flex-start;
}

.bl-flex__rightAlignment {
  justify-content: flex-end;
}

.bl-flex__topAlignment {
  align-items: flex-start;
}

.bl-flex__bottomAlignment {
  align-items: flex-start;
}

.section-ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.section-ttl::after {
  content: "";
  position: absolute;
  width: calc(79.16vw - 100%);
  top: 30px;
  right: -22px;
  transform: translateX(100%);
  background-color: #FFFFFF;
  height: 1px;
}
@media screen and (max-width: 1024px) {
  .section-ttl::after {
    width: calc(89.3vw - 100% - 20px);
    right: -20px;
  }
}

.section-ttl__en {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .section-ttl__en {
    font-size: 32px;
  }
}

.section-ttl__ja {
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .section-ttl__ja {
    font-size: 12px;
  }
}

.section-subTtl {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.12;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .section-subTtl {
    font-size: 33px;
  }
}

.section-ttl--maxSize {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 0 auto 75px;
}
@media screen and (max-width: 768px) {
  .section-ttl--maxSize {
    flex-direction: column-reverse;
    width: 89.7%;
    margin: 0 auto 43px;
    padding-bottom: 15px;
  }
}
.section-ttl--maxSize::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #FFFFFF;
  top: unset;
  right: unset;
  transform: unset;
}

.section-ttl__en--maxSize {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.82vw;
  margin-right: 4.11vw;
  font-size: 5.26vw;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .section-ttl__en--maxSize {
    font-size: 42px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
}

.section-ttl__ja--maxSize {
  font-size: 1.82vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .section-ttl__ja--maxSize {
    font-size: 20px;
    margin: 0 auto 10px;
  }
}

/*==========================
ページ共通
===========================*/
.underFv {
  width: 100%;
  margin-bottom: 100px;
}

.underFv__img {
  width: 100%;
  height: auto;
  position: relative;
}

.page-ttl {
  position: absolute;
  bottom: 0;
  left: 5.2vw;
}

.page-ttl__ja {
  font-size: 20px;
  color: #EAEAEA;
  line-height: 1;
  font-weight: 700;
  margin-bottom: -10px;
}
@media screen and (max-width: 1024px) {
  .page-ttl__ja {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-ttl__ja {
    font-size: 16px;
  }
}

.page-ttl__en {
  font-size: 143px;
  font-weight: 700;
  color: #EAEAEA;
  line-height: 0.9;
}
@media screen and (max-width: 1280px) {
  .page-ttl__en {
    font-size: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .page-ttl__en {
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  .page-ttl__en {
    font-size: 55px;
  }
}

.img-on-footer {
  margin-top: 220px;
}
@media screen and (max-width: 1024px) {
  .img-on-footer {
    margin-top: 80px;
  }
}

.section-subTtl--underFv {
  width: 53%;
  margin: 0 auto 23px;
  font-size: 60px;
}
@media screen and (max-width: 1024px) {
  .section-subTtl--underFv {
    font-size: 33px;
    width: 100%;
  }
}

.section-txt--underFv {
  width: 53%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .section-txt--underFv {
    width: 100%;
  }
}

.section-txt {
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
}

/*---------------------------
ヘッダー
---------------------------*/
.head {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-content: flex-start;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 56.5px;
  padding-top: 11px;
}
.head.js-changeColor .head__logo .head__logo--wh {
  opacity: 0;
  transition: all 0.5s;
}
.head.js-changeColor .head__logo .head__logo--bk {
  opacity: 1;
  transition: all 0.5s;
}
.head.js-changeColor .nav__item a {
  color: #000805;
  transition: all 0.5s;
}
.head.js-changeColor .nav__item a::after {
  border: 1px solid #000805;
  transition: all 0.5s;
}

.head.head--pageTop {
  opacity: 0;
  -webkit-animation-name: topAppearAnime;
          animation-name: topAppearAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes topAppearAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes topAppearAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.head__logo {
  width: 92px;
  height: 73px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .head__logo {
    width: 65px;
    height: 51px;
    z-index: 9999;
  }
}
.head__logo .head__logo--wh {
  display: block;
  opacity: 1;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  transition: all 0.5s;
}
.head__logo .head__logo--bk {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}

.head__nav {
  margin-top: 8.25px;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav__list .nav__item:not(:last-child) {
  margin-right: 40px;
}

.nav__item a {
  font-size: 12px;
  line-height: 1;
  padding: 8px 13px;
  text-transform: uppercase;
  position: relative;
  font-family: "Noto Sans JP", serif;
  color: #FFFFFF;
  transition: all 0.5s;
}
.nav__item a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}
.nav__item a:hover::after {
  opacity: 1;
  transition: all 0.5s;
}

.burger-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../../assets/images/common/sp_bg-img.png);
  background-position: center;
  background-size: cover;
  transition: all 0.3s;
  pointer-events: none;
}
.burger-nav::after {
  content: "";
  position: absolute;
  top: 80px;
  width: 89.74%;
  height: 0.5px;
  background-color: rgba(255, 255, 255, 0.6);
  left: 50%;
  transform: translateX(-50%);
}

.burger-nav.panelactive {
  opacity: 1;
  z-index: 999;
  pointer-events: all;
}

.burger-nav.panelactive .burger-nav__listWrap {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.burger-nav .burger-nav__list {
  display: none;
  z-index: 999;
  margin: 157px auto 0;
}
.burger-nav .burger-nav__list .burger-nav__item:not(:last-of-type) {
  margin-bottom: 33px;
}

.burger-nav.panelactive .burger-nav__list {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.burger-nav .burger-nav__item {
  list-style: none;
}

.burger-nav .burger-nav__item a {
  color: #FFFFFF;
}
.burger-nav .burger-nav__item a .burger-nav__ja {
  font-size: 11px;
  margin-bottom: 3px;
  line-height: 1;
}
.burger-nav .burger-nav__item a .burger-nav__en {
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1;
}

.burger-bottom-wrap {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

.burger-policyLink {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 10.5px;
  margin-bottom: 10.5px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.6);
}
.burger-policyLink a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 10px;
  text-align: center;
  line-height: 1;
}

.burger-copy {
  font-size: 10px;
  padding-bottom: 12px;
  line-height: 1;
  text-align: center;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 20.5px;
  height: 12.3px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 1px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 100%;
}

.openbtn1 span:nth-of-type(1) {
  top: 0;
}

.openbtn1 span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.openbtn1 span:nth-of-type(3) {
  bottom: 0;
}

.openbtn1.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
  width: 35px;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
  width: 35px;
}

/*---------------------------
フッター
---------------------------*/
.foot {
  padding: 44px 0 8px;
  background-color: rgba(0, 8, 5, 0.49);
}

.inner--foot {
  width: 89.58%;
  margin: 0 auto;
  max-width: unset;
}

.foot__flex-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .foot__flex-wrap {
    display: block;
    margin-bottom: 14px;
  }
}

.foot__side-l {
  width: 317px;
}
@media screen and (max-width: 1024px) {
  .foot__side-l {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 86px;
  }
}

.foot__logo {
  width: 40%;
  margin-bottom: 15px;
}
@media screen and (max-width: 1280px) {
  .foot__logo {
    width: 74px;
    margin-right: 25px;
  }
}

.foot__companyName {
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .foot__companyName {
    font-size: 16px;
  }
}

.foot__address {
  font-size: 11.25px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 15px 0 6px;
}

@media screen and (max-width: 1024px) {
  .foot__tel-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}

.foot__tel {
  font-size: 11.25px;
  font-weight: 300;
  margin-bottom: 7.5px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .foot__tel {
    font-size: 11px;
    letter-spacing: 0.05em;
    margin-bottom: 0;
    margin-right: 11px;
  }
}

.foot__fax {
  font-size: 11.25px;
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .foot__fax {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
}

.foot__tel-contact {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media screen and (max-width: 1280px) {
  .foot__tel-contact {
    display: block;
  }
}

.foot__tel-contact__side--l {
  font-weight: 600;
  line-height: 1;
  font-size: 21px;
  margin-right: 15px;
}
@media screen and (max-width: 1280px) {
  .foot__tel-contact__side--l {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .foot__tel-contact__side--l {
    font-size: 20px;
    text-align: center;
  }
}

.foot__tel-contact__side--r {
  font-size: 11.25px;
  line-height: 1;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .foot__tel-contact__side--r {
    font-size: 13px;
    text-align: center;
  }
}

.foot__telNum {
  font-size: 41px;
}
@media screen and (max-width: 1280px) {
  .foot__telNum {
    font-size: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .foot__telNum {
    font-size: 34px;
    text-align: center;
    font-weight: 700;
  }
}

.foot__contact-link {
  margin-top: 12px;
}
@media screen and (max-width: 1024px) {
  .foot__contact-link {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 35px auto 0;
  }
}
.foot__contact-link a {
  display: block;
  font-size: 25px;
  color: #000805;
  font-weight: 700;
  background-color: #EAEAEA;
  padding: 21px 58px;
  transition: all 0.5s;
}
@media screen and (max-width: 1280px) {
  .foot__contact-link a {
    font-size: 18px;
    padding: 13px 30px;
  }
}
.foot__contact-link a:hover {
  background-color: #000805;
  color: #FFFFFF;
  transition: all 0.5s;
}

.foot__side-r {
  width: 335px;
}
@media screen and (max-width: 1024px) {
  .foot__side-r {
    width: 100%;
    margin-top: 23px;
    padding-top: 30px;
    position: relative;
    border-top: 0.5px solid rgba(255, 255, 255, 0.6);
  }
}

.foot-nav__list {
  display: flex;
  flex-wrap: wrap;
}
.foot-nav__list .foot-nav__item {
  margin-bottom: 13px;
  width: 33%;
}
.foot-nav__list .foot-nav__item a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 11.25px;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 4.5px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .foot-nav__list .foot-nav__item a {
    font-size: 13px;
  }
}
.foot-nav__list .foot-nav__item a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: left;
  transition: all 0.5s;
}
.foot-nav__list .foot-nav__item a:hover::after {
  transform: scale(1, 1);
  transform-origin: left;
  transition: all 0.5s;
}

.foot__policyLink {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .foot__policyLink {
    margin-right: auto;
    margin-left: 0;
  }
}
.foot__policyLink a {
  font-size: 9px;
  font-family: "Zen Kaku Gothic New", serif;
  line-height: 1;
  display: block;
  padding-bottom: 4.5px;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .foot__policyLink a {
    font-size: 10px;
  }
}
.foot__policyLink a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: left;
  transition: all 0.5s;
}
.foot__policyLink a:hover::after {
  transform: scale(1, 1);
  transform-origin: left;
  transition: all 0.5s;
}

.foot__copy {
  padding-top: 18.75px;
  border-top: 0.5px solid #FFFFFF;
  text-align: center;
  font-size: 9px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .foot__copy {
    font-size: 10px;
    padding-top: 7.5px;
  }
}

/*==========================
TOPページ
==========================*/
.top-section-ttl__ja {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-section-ttl__ja {
    font-size: 8.9vw;
  }
}

.top-section-ttl__en {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .top-section-ttl__en {
    font-size: 12px;
    margin-top: 10px;
  }
}

.top-section-subTtl {
  font-size: 36px;
  font-weight: 700;
  margin: 49px 0 37px;
}
@media screen and (max-width: 768px) {
  .top-section-subTtl {
    font-size: 23px;
    margin: 22px 0 13px;
  }
}

.txt-wrap {
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .txt-wrap {
    margin-top: 0;
  }
}
.txt-wrap .top-section-txt {
  font-family: "Noto Sans JP", serif;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
}
.txt-wrap .top-section-txt:not(:last-of-type) {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .txt-wrap .top-section-txt {
    font-size: 13px;
    margin-top: 7px;
  }
}

/*=========== ローディング ===========*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-image: url(../../assets/images/common/bg-img.png);
  background-size: cover;
  background-repeat: repeat-y;
  text-align: center;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-name: fadeInLoadingAnime;
          animation-name: fadeInLoadingAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

#splash_logo img {
  width: 9.5%;
  min-width: 136px;
}

@-webkit-keyframes fadeInLoadingAnime {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInLoadingAnime {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*=========== fv ===========*/
.fv {
  width: 100vw;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 100svh;
  }
}

.lottie-anime-wrap {
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 13.4vw;
}
@media screen and (max-width: 1024px) {
  .lottie-anime-wrap {
    display: none;
  }
}

.lottie-anime {
  position: absolute;
  width: 13.4vw;
  bottom: 0;
  right: 0;
  transform: translate(30.8%, 31%);
  -webkit-animation-name: topAppearAnime;
          animation-name: topAppearAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.fv-copy {
  font-size: max(0.88vw, 11px);
  writing-mode: sideways-lr;
  text-orientation: upright;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 50%;
  left: 1.77vw;
  transform: translateY(-50%);
  text-orientation: sideways;
  -webkit-animation-name: topAppearAnime;
          animation-name: topAppearAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .fv-copy {
    display: none;
  }
}

.fv-img {
  width: 79.16vw;
  height: 78.24vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fv-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.fv-img .slick-list {
  width: 100%;
  height: 100%;
}
.fv-img .slick-track {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .fv-img {
    width: 100%;
    height: 100%;
  }
  .fv-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.fv__txt-side-l {
  position: absolute;
  bottom: 5.8vh;
  left: 7.4vw;
  width: 40.3vw;
  aspect-ratio: 1/0.83;
  -webkit-animation-name: topAppearAnime;
          animation-name: topAppearAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-l {
    bottom: 4.97vh;
    left: 5.12vw;
    width: 88vw;
  }
}
.fv__txt-side-l::before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% + 10px);
  background-color: #FFFFFF;
  top: -5px;
  left: -5px;
  transform: scale(1, 0);
  transform-origin: bottom;
  -webkit-animation-name: fvBorderY-bottomAnime;
          animation-name: fvBorderY-bottomAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.fv__txt-side-l::after {
  content: "";
  position: absolute;
  width: calc(99.4% + 5px);
  height: 1px;
  background-color: #FFFFFF;
  bottom: -5px;
  left: -5px;
  transform: scale(0, 1);
  transform-origin: right;
  -webkit-animation-name: fvBorderX-rightAnime;
          animation-name: fvBorderX-rightAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-l::after {
    width: 100%;
  }
}

.fv__txt {
  font-size: 3.9vw;
  position: relative;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .fv__txt {
    font-size: 8.97vw;
    letter-spacing: -0.054em;
    font-weight: 700;
  }
}

.fv__txt-side-l__vertical {
  position: absolute;
  top: 0;
  left: 0;
}
.fv__txt-side-l__vertical .fv__txt {
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-l__vertical .fv__txt {
    letter-spacing: 0.05em;
  }
}
.fv__txt-side-l__vertical .fv__txt::before {
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  height: 1px;
  background-color: #FFFFFF;
  top: -5px;
  left: -5px;
  transform: scale(0, 1);
  transform-origin: left;
  -webkit-animation-name: fvBorderX-leftAnime;
          animation-name: fvBorderX-leftAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.fv__txt-side-l__vertical .fv__txt::after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(95% + 8px);
  background-color: #FFFFFF;
  top: -5px;
  right: -5px;
  transform: scale(1, 0);
  transform-origin: top;
  -webkit-animation-name: fvBorderY-topAnime;
          animation-name: fvBorderY-topAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-l__vertical .fv__txt::after {
    height: calc(93% + 5px);
  }
}

.fv__txt-side-l__horizontal {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-l__horizontal {
    left: 1.9vw;
  }
}
.fv__txt-side-l__horizontal .fv__txt::before {
  content: "";
  position: absolute;
  width: calc(86.55% - 5px);
  height: 1px;
  background-color: #FFFFFF;
  top: 5px;
  right: 0;
  transform: scale(0, 1);
  transform-origin: left;
  -webkit-animation-name: fvBorderX-leftAnime;
          animation-name: fvBorderX-leftAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-l__horizontal .fv__txt::before {
    width: 85.7%;
    top: 0;
  }
}
.fv__txt-side-l__horizontal .fv__txt::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 90%;
  background-color: #FFFFFF;
  top: 5px;
  right: 0;
  transform: scale(1, 0);
  transform-origin: top;
  -webkit-animation-name: fvBorderY-topAnime;
          animation-name: fvBorderY-topAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-l__horizontal .fv__txt::after {
    height: 100%;
    top: 0;
  }
}

.fv__txt-side-r {
  position: absolute;
  top: 14.1vh;
  right: 8.33vw;
  opacity: 0;
  -webkit-animation-name: topAppearAnime;
          animation-name: topAppearAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-r {
    top: 8.32vh;
    right: 5.38vw;
    width: 12.15vw;
  }
}
.fv__txt-side-r::before {
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  height: 1px;
  background-color: #FFFFFF;
  top: 0;
  left: -5px;
  transform: scale(0, 1);
  transform-origin: left;
  -webkit-animation-name: fvBorderX-leftAnime;
          animation-name: fvBorderX-leftAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-r::before {
    top: -5px;
  }
}
.fv__txt-side-r::after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% + 5px);
  background-color: #FFFFFF;
  top: 0;
  right: -5px;
  transform: scale(1, 0);
  transform-origin: top;
  -webkit-animation-name: fvBorderY-topAnime;
          animation-name: fvBorderY-topAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-r::after {
    height: calc(100% + 10px);
    top: -5px;
  }
}
.fv__txt-side-r .fv__txt {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-r .fv__txt {
    writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: 1.4;
    letter-spacing: 0.1em;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.fv__txt-side-r .fv__txt::before {
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  height: 1px;
  background-color: #FFFFFF;
  bottom: -5px;
  left: -5px;
  transform: scale(0, 1);
  transform-origin: right;
  -webkit-animation-name: fvBorderX-rightAnime;
          animation-name: fvBorderX-rightAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-r .fv__txt::before {
    bottom: -5px;
  }
}
.fv__txt-side-r .fv__txt::after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% + 5px);
  background-color: #FFFFFF;
  top: 0;
  left: -5px;
  transform: scale(1, 0);
  transform-origin: top;
  -webkit-animation-name: fvBorderY-bottomAnime;
          animation-name: fvBorderY-bottomAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
@media screen and (max-width: 1024px) {
  .fv__txt-side-r .fv__txt::after {
    height: calc(100% + 10px);
    top: -5px;
  }
}

@-webkit-keyframes fvBorderX-leftAnime {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes fvBorderX-leftAnime {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes fvBorderX-rightAnime {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes fvBorderX-rightAnime {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes fvBorderY-topAnime {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes fvBorderY-topAnime {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes fvBorderY-bottomAnime {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes fvBorderY-bottomAnime {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
/*=========== about ===========*/
.top-about {
  margin-top: 132px;
}
@media screen and (max-width: 768px) {
  .top-about {
    margin-top: 50px;
  }
}

.oneSide-margin--size-l--top-about {
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .oneSide-margin--size-l--top-about {
    margin-right: auto;
    width: 100%;
  }
}

.top-about__txt {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  z-index: 1;
  width: 790px;
}
@media screen and (max-width: 1024px) {
  .top-about__txt {
    width: 89.7%;
    margin: 0 auto;
    margin-top: -72px;
  }
}

.top-about__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top-about__content {
    flex-direction: column-reverse;
  }
}

.top-about__img {
  width: calc(108% - 790px);
  margin-left: -8%;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-about__img {
    width: 100%;
    margin: 0;
  }
}

.bl-btn--top-about {
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .bl-btn--top-about {
    margin-top: 30px;
  }
}

/*=========== service ===========*/
.top-service {
  margin-top: 168px;
  padding: 124px 0 130px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-service {
    width: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .top-service {
    margin-top: 90px;
    padding: 98px 0 135px;
  }
}

.top-service__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.service__bottom-txt {
  position: absolute;
  font-size: 5.2vw;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 6%);
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .service__bottom-txt {
    left: 0;
    transform: translate(0, 6%);
  }
}
@media screen and (max-width: 768px) {
  .service__bottom-txt {
    font-size: 15vw;
  }
}

.top-service__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .top-service__content {
    width: 100%;
  }
}

.section-txt--top-service {
  text-align: center;
}

.bl-btn--top-service {
  margin: 45px auto 0;
}

.txt-wrap--service {
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  .txt-wrap--service {
    width: 79.8%;
    margin: 0 auto;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 16.6666666667vw;
}

.scroll-infinity__item--text {
  width: 265vw;
  font-size: 15vw;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0;
  line-height: 1;
}

/*=========== about ===========*/
.top-recruit {
  margin: 180px 0 150px;
}
@media screen and (max-width: 1024px) {
  .top-recruit {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .top-recruit {
    margin: 85px 0 0;
  }
}

.top-recruit__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top-recruit__content {
    flex-direction: column-reverse;
  }
}

.txt-wrap--recruit {
  margin-top: 0;
}

.top-recruit__imgs {
  width: calc(100% - 658px);
  aspect-ratio: 1/1.04;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-recruit__imgs {
    aspect-ratio: unset;
    margin-top: 56px;
    width: 100%;
  }
}
.top-recruit__imgs .top-recruit__img-item:first-of-type {
  width: 90.9%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top-recruit__imgs .top-recruit__img-item:first-of-type {
    width: 100%;
  }
}
.top-recruit__imgs .top-recruit__img-item:last-of-type {
  width: 48.75%;
  bottom: 0;
  right: 0;
}

.top-recruit__img-item {
  position: absolute;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .top-recruit__img-item {
    position: relative;
  }
}
.top-recruit__img-item img {
  width: 100%;
  height: auto;
}

.top-recruit__txt {
  width: 520px;
}
@media screen and (max-width: 1024px) {
  .top-recruit__txt {
    width: 89.74%;
    margin: 0 auto;
  }
}

.bl-btn--top-recruit {
  margin-top: 49px;
}

.txt-wrap .section-txt--top-recruit--size-l {
  font-size: 20px;
  margin-bottom: 5px !important;
}

/*==========================
ABOUTページ
==========================*/
/*========= メッセージ =========*/
.about-message {
  margin-top: 97.5px;
}
@media screen and (max-width: 768px) {
  .about-message {
    margin-top: 67px;
  }
}

@media screen and (max-width: 1024px) {
  .section-subTtl--message {
    width: 100%;
    margin-bottom: 28px;
  }
}
.message-img {
  width: 68.61%;
  margin: 0 auto 56px;
}
@media screen and (max-width: 768px) {
  .message-img {
    width: 100%;
    margin: 0 auto 29px;
    aspect-ratio: 1/0.87;
  }
}

.message-txt {
  width: 68.61%;
  margin: 0 auto;
}
.message-txt .section-txt--message {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .message-txt {
    width: 100%;
  }
}

.message-sign {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.message-sign__heading {
  font-size: 14px;
  margin-right: 15px;
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
}

.message-sign__name {
  font-size: 20px;
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
}

/*========= HSの強み =========*/
.strength {
  margin-top: 212px;
}
@media screen and (max-width: 1024px) {
  .strength {
    margin-top: 100px;
  }
}

.section-subTtl--strength {
  margin-top: 56px;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .section-subTtl--strength {
    margin-top: 17px;
  }
}

.strength__list {
  margin-top: 96px;
}
@media screen and (max-width: 1024px) {
  .strength__list {
    margin-top: 20px;
  }
}
.strength__list .strength__item {
  position: relative;
}
.strength__list .strength__item .oneSide-margin--strength {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .strength__list .strength__item .oneSide-margin--strength {
    display: block;
    width: 100%;
  }
}
.strength__list .strength__item:not(:last-of-type) {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .strength__list .strength__item:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.strength__list .strength__item:first-of-type .oneSide-margin--strength {
  margin-right: auto;
  margin-left: 0;
}
.strength__list .strength__item:nth-of-type(2) .oneSide-margin--strength {
  margin-right: 0;
  margin-left: auto;
  flex-direction: row-reverse;
}
.strength__list .strength__item:nth-of-type(3) {
  width: 100%;
  padding: 34px 0 75px;
}
@media screen and (max-width: 1024px) {
  .strength__list .strength__item:nth-of-type(3) {
    padding: 0;
  }
}
.strength__list .strength__item:nth-of-type(3) .strength-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .strength__list .strength__item:nth-of-type(3) .strength-img {
    position: relative;
    top: unset;
    left: unset;
    width: 89.7%;
    margin: 0 auto;
  }
}
.strength__list .strength__item:nth-of-type(3) .section-txt--strength {
  padding-left: 0;
}
.strength__list .strength__item:nth-of-type(3) .strength-txt {
  margin: 0 auto;
}
.strength__list .strength__item:nth-of-type(3) .strength-txt {
  position: relative;
}
.strength__list .strength__item:nth-of-type(3) .strength-ttl {
  text-align: center;
}
.strength__list .strength__item:nth-of-type(3) .strength-ttl__num {
  color: rgba(255, 255, 255, 0.13);
}
.strength__list .strength__item:nth-of-type(4) .oneSide-margin--strength {
  margin-right: 0;
  margin-left: auto;
  flex-direction: row-reverse;
}
.strength__list .strength__item:nth-of-type(5) .oneSide-margin--strength {
  margin-right: auto;
  margin-left: 0;
}

.strength-txt {
  width: 580px;
}
@media screen and (max-width: 1024px) {
  .strength-txt {
    width: 89.7%;
    margin: 0 auto;
  }
}

.strength-img {
  width: calc(100% - 663px);
}
@media screen and (max-width: 1024px) {
  .strength-img {
    width: 89.7%;
    position: relative;
    margin: 0 auto;
  }
}

.strength-ttl {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .strength-ttl {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.strength-ttl .strength-ttl__num {
  font-size: 165px;
  color: rgba(0, 8, 5, 0.21);
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .strength-ttl .strength-ttl__num {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 171px;
    color: rgba(255, 255, 255, 0.15);
  }
}
.strength-ttl .strength-ttl {
  font-size: 33px;
  font-weight: 700;
  margin-top: -31px;
  padding-left: 60px;
}
@media screen and (max-width: 1024px) {
  .strength-ttl .strength-ttl {
    font-size: 29px;
    margin-top: 0;
    padding-left: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1.31;
  }
}

.section-txt--strength {
  padding-left: 60px;
}
@media screen and (max-width: 1024px) {
  .section-txt--strength {
    padding-left: 0;
    margin-top: 20px;
  }
}

/*========= 経営理念 =========*/
.philosophy {
  padding-top: 140px;
}
@media screen and (max-width: 1024px) {
  .philosophy {
    padding-top: 105px;
  }
}

.philosophy-bg-wrap {
  padding: 71px 0;
  background-image: url(../../assets/images/about/philosophy.png);
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .philosophy-bg-wrap {
    padding: 103px 0 105px;
    background-image: url(../../assets/images/about/sp_philosophy.png);
    background-position: bottom;
  }
}

.philosophy__list {
  width: 76.12%;
  margin: 20px auto 0;
}
@media screen and (max-width: 1024px) {
  .philosophy__list {
    width: 100%;
    margin: 25px auto 0;
  }
}
.philosophy__list .philosophy__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 41.25px 15px 5.3px 0;
  border-bottom: 0.7px solid rgba(255, 255, 255, 0.54);
}
@media screen and (max-width: 1024px) {
  .philosophy__list .philosophy__item {
    display: block;
    padding: 25px 0;
  }
}

.philosophy-heading {
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.06em;
  width: 230px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .philosophy-heading {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .philosophy-heading {
    font-size: 22px;
    letter-spacing: 0;
  }
}

.philosophy-content {
  text-align: left;
  padding-left: 15px;
  font-family: "Noto Sans JP", serif;
  line-height: 1.23;
  width: calc(100% - 230px);
}
@media screen and (max-width: 1024px) {
  .philosophy-content {
    margin-top: 15px;
    width: 100%;
    padding-left: 0;
  }
}

/*========= 会社概要 =========*/
.company {
  padding-top: 120px;
}
@media screen and (max-width: 1024px) {
  .company {
    padding-top: 86px;
  }
}

.company__table {
  width: 69.7%;
  margin: 60px auto 0;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 1024px) {
  .company__table {
    width: 100%;
    margin: 45px auto 0;
  }
}
.company__table tbody {
  width: 100%;
  display: block;
}

.company__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
}
@media screen and (max-width: 768px) {
  .company__row {
    display: block;
    padding: 17px 0;
  }
}

.company__head {
  display: block;
  width: 92px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .company__head {
    width: 100%;
  }
}

.company__data {
  display: block;
  width: calc(100% - 92px);
  padding-left: 81px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .company__data {
    width: 100%;
    padding-left: 0;
  }
}

/*========= 沿革 =========*/
.history {
  background-color: rgba(255, 255, 255, 0.73);
  padding: 51px 5.81% 105px;
  max-width: 1140px;
  margin: 205px auto 0;
}
@media screen and (max-width: 1024px) {
  .history {
    margin-top: 95px;
    padding: 96px 5.12vw 90px;
  }
}

@media screen and (max-width: 768px) {
  .inner--history {
    width: 100%;
  }
}
.section-ttl--history::after {
  width: min(75.16vw - 100%, 780px);
}
@media screen and (max-width: 1024px) {
  .section-ttl--history::after {
    width: calc(80.3vw - 100% - 20px);
    right: -20px;
  }
}

.history__content {
  margin-top: 66px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .history__content {
    margin-top: 35px;
  }
}

.history-year {
  width: 186px;
  padding: 27px 0;
  background-color: rgba(16, 124, 53, 0.05);
  border-radius: 5px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .history-year {
    display: none;
  }
}
.history-year .history-year__item {
  font-size: 17px;
  font-family: "Noto Sans JP", serif;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  color: #000805;
}
.history-year .history-year__item:not(:last-of-type) {
  margin-bottom: 21px;
}
.history-year .history-year__item .year-unit {
  font-size: 13.5px;
  padding-left: 4px;
}

.history__list-wrap {
  margin: 0 auto;
  width: 54.4%;
}
@media screen and (max-width: 1024px) {
  .history__list-wrap {
    width: 100%;
  }
}

.history__list {
  width: 100%;
  margin-left: -93px;
}
@media screen and (max-width: 1024px) {
  .history__list {
    margin-left: auto;
    margin-right: auto;
  }
}
.history__list .history__item {
  padding: 26px 65px 29px;
  border: 0.5px solid rgba(0, 8, 5, 0.4);
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .history__list .history__item {
    padding: 20px 5.7%;
  }
}
.history__list .history__item:not(:last-of-type) {
  margin-bottom: 17px;
}

.history-ttl {
  font-size: 22.5px;
  color: #007C35;
  font-weight: 500;
  line-height: 1;
  font-family: "Noto Sans JP", serif;
  cursor: pointer;
  position: relative;
}
.history-ttl::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background-color: #000805;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.history-ttl::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  background-color: #000805;
  right: 5.5px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.history-ttl.active::after {
  transform: translateY(-50%) rotate(-90deg);
  transition: all 0.5s;
}

.history-ttl__unit {
  font-size: 16.5px;
  color: #007C35;
  font-weight: 500;
  line-height: 1;
}

.history-detail-wrap {
  margin-top: 23px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .history-detail-wrap {
    margin-top: 17px;
  }
}

.history-detail {
  padding-left: 30px;
  position: relative;
  color: #000805;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 1024px) {
  .history-detail {
    padding-left: 20px;
  }
}
/*
.history-detail::after {
  content: "";
  position: absolute;
  width: 0.5px;
  height: 100%;
  background-color: rgba(0, 8, 5, 0.4);
  top: 0;
  left: 5.25px;
}
*/
.history-month {
  font-size: 13.5px;
  color: #007C35;
  position: relative;
}
.history-month::after {
  position: absolute;
  content: "";
  width: 10.5px;
  height: 10.5px;
  background-color: #007C35;
  border-radius: 50%;
  left: -30px;
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .history-month::after {
    left: -20px;
  }
}

.history-txt {
  padding: 23px 0;
}
@media screen and (max-width: 1024px) {
  .history-txt {
    padding: 15px;
  }
}

.section-ttl--history::after {
  background-color: #000805;
}
.section-ttl--history .section-ttl__en {
  color: #000805;
}
.section-ttl--history .section-ttl__ja {
  color: #000805;
}

/*========= アクセス =========*/
.access {
  padding-top: 150px;
}
@media screen and (max-width: 1024px) {
  .access {
    padding-top: 90px;
    margin-bottom: 100px;
  }
}

.access-wrap {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .access-wrap {
    margin-top: 25px;
    display: block;
  }
}

.googleMap {
  width: calc(100% - 373px);
  aspect-ratio: 1/0.446;
}
@media screen and (max-width: 1024px) {
  .googleMap {
    width: 100vw;
    aspect-ratio: 1/0.63;
    margin-left: -5.15vw;
  }
}
.googleMap iframe {
  width: 100%;
  height: 100%;
  filter: invert(100%) hue-rotate(-180deg);
}

.access-txt {
  width: 252px;
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .access-txt {
    width: 100%;
  }
}

.access__companyName {
  font-size: 18.7px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .access__companyName {
    margin-top: 25px;
    font-size: 17px;
  }
}

.access__address {
  font-size: 13.5px;
  line-height: 1.6;
  margin: 21px 0 18.7px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .access__address {
    font-size: 14px;
    margin: 10px 0;
  }
}

.access__telNum {
  font-size: 13.5px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .access__telNum {
    font-size: 14px;
  }
}
.access__telNum a {
  font-size: 13.5px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .access__telNum a {
    font-size: 14px;
  }
}

.access__sta {
  font-size: 13.5px;
  margin: 21px 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .access__sta {
    font-size: 14px;
    margin: 10px 0;
  }
}

.googleMap-icon {
  width: 88px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .googleMap-icon {
    width: 100px;
  }
}

/*==========================
SERVICEページ
==========================*/
.section-subTtl--underFv--page-service {
  width: 780px;
}
@media screen and (max-width: 1024px) {
  .section-subTtl--underFv--page-service {
    width: 100%;
  }
}

.section-txt--underFv--page-service {
  width: 780px;
}
@media screen and (max-width: 1024px) {
  .section-txt--underFv--page-service {
    width: 100%;
  }
}

.processing {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .processing {
    margin-top: 70px;
  }
}

.oneSide-margin--page-service {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 66px;
}
@media screen and (max-width: 1024px) {
  .oneSide-margin--page-service {
    display: block;
    width: 100%;
  }
}

.page-service__categoryName {
  font-size: 15px;
  margin-bottom: 3px;
  line-height: 1;
}

.page-service__side-l {
  width: calc(100% - 688px);
  aspect-ratio: 1/1.27;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .page-service__side-l {
    width: 100%;
    aspect-ratio: unset;
  }
}
.page-service__side-l .page-service-img:first-of-type {
  width: 84.4%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .page-service__side-l .page-service-img:first-of-type {
    position: relative;
    width: 100%;
  }
}
.page-service__side-l .page-service-img:last-of-type {
  width: 75.46%;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .page-service__side-l .page-service-img:last-of-type {
    position: absolute;
    width: 100%;
  }
}

.page-service__side-r {
  width: 580px;
  margin-top: 5px;
}
@media screen and (max-width: 1024px) {
  .page-service__side-r {
    width: 89.7%;
    margin: 29px auto 45px;
  }
}

@media screen and (max-width: 1024px) {
  .page-service-img--upper-point {
    width: 89.7%;
    margin: 0 auto;
  }
}
.section-txt-wrap--page-service {
  margin: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .section-txt-wrap--page-service {
    margin-bottom: 35px;
  }
}

.section-subTtl--service {
  margin-left: 0;
}

.page-service__categoryName--sales {
  margin-top: 10px;
}

.section-txt--page-service {
  font-size: 17px;
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .section-txt--page-service {
    font-size: 13px;
  }
}

.feature {
  width: 100%;
  position: relative;
  padding-bottom: 31.5px;
}
.feature::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.7px;
  background-color: rgba(255, 255, 255, 0.4);
  bottom: 0;
  left: 0;
}

.feature-ttl {
  width: 100%;
  font-size: 33px;
  font-weight: 700;
  padding: 0 174px 0 126px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .feature-ttl {
    padding: 0;
    font-size: 25px;
  }
}
.feature-ttl::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 0.5px;
  background-color: rgba(255, 255, 255, 0.4);
  top: 29.5px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .feature-ttl::before {
    display: none;
  }
}
.feature-ttl::after {
  content: "";
  position: absolute;
  width: 171.5px;
  height: 0.5px;
  background-color: rgba(255, 255, 255, 0.4);
  top: 29.5px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .feature-ttl::after {
    width: calc(87.4vw - 203px);
  }
}

.feature__list {
  width: 69.3%;
  margin-left: 97px;
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .feature__list {
    width: 100%;
    margin-left: 0;
  }
}
.feature__list .feature__item {
  position: relative;
  padding-left: 30.75px;
  line-height: 1;
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
}
.feature__list .feature__item:not(:last-child) {
  margin-bottom: 22.5px;
}
.feature__list .feature__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 13px solid #007c35;
  border-right: 0;
}

.point__list {
  margin-top: 45px;
}
.point__list .point__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 42px 7.7% 47px 6.57%;
  background-color: rgba(155, 155, 155, 0.4);
  border: 0.5px solid rgba(0, 8, 5, 0.4);
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .point__list .point__item {
    display: block;
  }
}
.point__list .point__item:not(:last-of-type) {
  margin-bottom: 7.5px;
}

.point-icon {
  width: 74px;
  height: auto;
  margin-right: 87.5px;
}
@media screen and (max-width: 1024px) {
  .point-icon {
    margin: 0 auto 18px;
  }
}

.point-explan {
  width: calc(100% - 161.5px);
}
@media screen and (max-width: 1024px) {
  .point-explan {
    width: 100%;
  }
}

.point-ttl {
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .point-ttl {
    font-size: 24px;
    text-align: center;
  }
}

.point-txt {
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
}

.sales {
  margin-top: 188px;
}
@media screen and (max-width: 1024px) {
  .sales {
    margin-top: 140px;
  }
}

/*==========================
RECRUITページ
==========================*/
.recruit-underFv-wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .recruit-underFv-wrap {
    width: 100%;
  }
}

.section-subTtl--recruit {
  width: 100%;
}

.underFvtxt-wrap .section-txt--underFv {
  width: 100%;
}
.underFvtxt-wrap .section-txt--underFv:not(:last-of-type) {
  margin-bottom: 10px;
}

.processing {
  margin-top: 78px;
}

/*======= インタビュー =======*/
/*
.interview__list{
    margin-top: 43px;
    .interview__item{
        &:nth-of-type(odd){
            .interview-txt{
                left: 13.8%;
            }
        }
        &:nth-of-type(even){
            .interview-txt{
            right: 13.8%;
            }
        }
    }
}

.interview__item{
    position: relative;
    width: 100%;
    aspect-ratio:  1 / 0.31;
    a{
        width: 100%;
        height: 100%;
        position: relative;
        &::after{
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            background-color: rgba(0, 8, 5 , .35);
            top: 0;
            left: 0;
            pointer-events: none;
            transition: all .5s;
            opacity: 1;

        }
        &:hover{
            .interview__ttl{
                color: s.$black;
                transition: all .5s;
            }
            .interview__name{
                color: s.$black;
                transition: all .5s;
            }
            .interview__position{
                color: s.$black;
                transition: all .5s;
            }
            .check{
                border: 1px solid s.$black;
                transition: all .5s;
                span{
                    border-bottom: 1px solid s.$black;
                    border-right: 1px solid s.$black;
                    transition: all .5s;
                }
            }
            &::after{
                opacity: 0;
                transition: all .5s;
            }
        }
    }
}
.interview__img{
    width: 100%;
    height: 100%;
}

.interview-txt{
    width: fit-content;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.interview__ttl{
    font-size: 30px;
    font-weight: 700;
    color: s.$white;
    transition: all .5s;
    position: relative;
    z-index: 2;
}

.interview__personal-info{
    margin-top: 10px;
    position: relative;
    z-index: 2;
}
.interview__name,
.interview__position{
    color: s.$white;
    line-height: 1.65;
    transition: all .5s;
}

.check{
    position: absolute;
    width: 39px;
    height: 35px;
    border: 1px solid s.$white;
    right: 28.5px;
    bottom: 22.5px;
    transition: all .5s;
    span{
        display: block;
        position: absolute;
        top: calc(50% - 3px);
        left: 50%;
        transform: translate(-50% , -50%) rotate(45deg);
        width: 10px;
        height: 10px;
        border-bottom: 1px solid s.$white;
        border-right: 1px solid s.$white;
        transition: all .5s;
    }
}

*/
/*======= 福利厚生 =======*/
.welfare {
  margin-top: 167px;
}
@media screen and (max-width: 1024px) {
  .welfare {
    margin-top: 0;
  }
}

.welfare__list {
  max-width: 1140px;
  margin: 43px auto 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .welfare__list {
    display: block;
  }
}
.welfare__list .welfare__item:nth-of-type(2) .welfare-point__img {
  width: 19%;
}
.welfare__list .welfare__item:nth-of-type(3) .welfare-point__img {
  width: 22.72%;
}

.welfare__item {
  font-weight: 300;
  width: 48.24%;
  padding: 5.18% 3.23%;
  background-color: rgba(155, 155, 155, 0.4);
  border: 0.5px solid rgba(0, 8, 5, 0.4);
  margin-bottom: 23px;
}
@media screen and (max-width: 1024px) {
  .welfare__item {
    padding: 30px 20px 45px;
    margin-bottom: 15px;
    width: 100%;
  }
}

.welfare-point {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.welfare-point__ttl-wrap {
  position: relative;
  padding-right: 24px;
  margin-right: 24px;
}
.welfare-point__ttl-wrap::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 72px;
  background-color: #FFFFFF;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.welfare-point__txt {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .welfare-point__txt {
    font-size: 12px;
  }
}

.welfare-point__num {
  font-size: 67.5px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  width: 100%;
  display: block;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .welfare-point__num {
    font-size: 42px;
  }
}

.welfare-point__ttl {
  font-size: 33px;
  line-height: 1.07;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .welfare-point__ttl {
    font-size: 24px;
  }
}

.welfare-point__img {
  width: 20.18%;
  margin: 19px auto 33px;
}
.welfare-point__img img {
  width: 100%;
  height: auto;
}

.welfare-point__list .welfare-point__item {
  padding: 15px 0 15px 31.5px;
  position: relative;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.4);
  font-family: "Noto Sans JP", serif;
}
.welfare-point__list .welfare-point__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 13px solid #007c35;
  border-right: 0;
}
.welfare-point__list .welfare-point__item:first-of-type {
  border-top: 0.5px solid rgba(255, 255, 255, 0.4);
}

/*======= 募集要項 =======*/
.guideline {
  margin-top: 173px;
}
@media screen and (max-width: 768px) {
  .guideline {
    margin-top: 100px;
  }
}

.guideline-table {
  margin: 58px auto 151px;
  width: 74%;
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .guideline-table {
    width: 100%;
    margin: 45px auto 113px;
  }
}

.guideline-table__tr {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 17px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 768px) {
  .guideline-table__tr {
    display: block;
  }
}

.guideline-table__th {
  display: block;
  width: 160px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.61;
}
@media screen and (max-width: 768px) {
  .guideline-table__th {
    width: 100%;
  }
}

.guideline-table__td {
  display: block;
  width: calc(100% - 160px);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.61;
}
@media screen and (max-width: 768px) {
  .guideline-table__td {
    width: 100%;
    margin-top: 5px;
  }
}

.table-flex {
  display: flex;
  align-content: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .table-flex {
    display: block;
  }
}

.table-flex__side-l {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .table-flex__side-l {
    display: inline;
  }
}

.table-flex__side-r {
  width: auto;
}
@media screen and (max-width: 768px) {
  .table-flex__side-r {
    display: inline;
  }
}

.table-flex__side-l--size-m {
  width: 78px;
}
@media screen and (max-width: 768px) {
  .table-flex__side-l--size-m {
    width: unset;
  }
}

.table-flex__side-r--size-m {
  width: calc(100% - 78px);
}
@media screen and (max-width: 768px) {
  .table-flex__side-r--size-m {
    width: unset;
  }
}

.table-flex__side-l--size-s {
  width: 48px;
}

.table-flex__side-r--size-s {
  width: calc(100% - 48px);
}

.entry-btn-wrap{
  margin-top: 27px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  .entry-btn-wrap{
    display: block;
  }
}
.bl-btn--recruit {
  width: 250px;
  margin-right: 15px;
}

.bl-btn--doda{
  width: 210px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .bl-btn--recruit {
    width: 100%;
  }
  .bl-btn--doda {
    width: 100%;
    margin-top: 10px;
  }
  .bl-btn--duda-entry img{
    width: 207px;
  }
}
.bl-btn--recruit a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 21px 25px;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .bl-btn--recruit a {
    justify-content: center;
  }
}
.bl-btn--recruit a .bl-btn--recruit__entry {
  transition: all 0.5s;
  margin: 0 auto;
}
.bl-btn--recruit a .link-icon .link-icon-img.link-icon--bl {
  opacity: 1;
  transition: all 0.5s;
}
.bl-btn--recruit a .link-icon .link-icon-img.link-icon--wh {
  opacity: 0;
  transition: all 0.5s;
}
.bl-btn--recruit a:hover .link-icon .link-icon-img.link-icon--bl {
  opacity: 0;
  transition: all 0.5s;
}
.bl-btn--recruit a:hover .link-icon .link-icon-img.link-icon--wh {
  opacity: 1;
  transition: all 0.5s;
}
.bl-btn--recruit a::after {
  display: none;
}

.bl-btn--recruit__entry {
  font-size: 13.5px;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.link-icon {
  position: relative;
  width: 18px;
  height: 18px;
}
.link-icon .link-icon-img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.link-icon .link-icon-img.link-icon--bl {
  opacity: 1;
  transition: all 0.5s;
}
.link-icon .link-icon-img.link-icon--wh {
  opacity: 0;
  transition: all 0.5s;
}

/*==========================
INTERVIEWページ
==========================*/
.interviewHead {
  margin-top: 133.5px;
}

.interview01 {
  margin-top: 43px;
}

.interview-img {
  position: relative;
}

.interview-img__ttl {
  position: absolute;
  top: 50%;
  left: 8.3%;
  transform: translateY(-50%);
}

.interview-ttl {
  font-size: 33px;
  font-weight: 700;
  line-height: 1.34;
}

.interview-name {
  line-height: 1.65;
}

.interview-detail {
  width: 78%;
  margin: 0 auto;
}
.interview-detail .interview-detail__item {
  padding-bottom: 30px;
  padding-top: 60px;
  border-bottom: 1px solid rgba(0, 8, 5, 0.4);
}

.interview-question {
  margin-bottom: 23px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.interview-question__icon,
.interview-answer__icon {
  font-size: 49px;
  font-weight: 700;
  margin-right: 21px;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", serif;
}

.interview-question__txt {
  font-size: 33px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 15px;
}

.interview-answer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.interview-answer__txt {
  margin-top: 19px;
}

.interview02,
.interview03 {
  margin-top: 195px;
}

.interview02 .interview-img__ttl {
  right: 8.3%;
  left: unset;
}

.interview03 .interview-ttl {
  color: #FFFFFF;
}
.interview03 .interview-name {
  color: #FFFFFF;
}

.inner-interview {
  position: relative;
}

.interview .check {
  position: absolute;
  width: 39px;
  height: 35px;
  border: 1px solid #000805;
  right: 28.5px;
  bottom: -47px;
  transition: all 0.5s;
  transform: translateY(100%);
}
.interview .check span {
  display: block;
  position: absolute;
  top: calc(50% + 3px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #000805;
  border-right: 1px solid #000805;
  transition: all 0.5s;
}

/*---------------------------
CONTACTページ
---------------------------*/
.contact-txt {
  text-align: center;
  margin-top: 118px;
  margin-bottom: 68px;
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .contact-txt {
    margin-top: 76px;
    margin-bottom: 75px;
    text-align: left;
  }
  .contact-txt.contact-txt--thanks {
    text-align: center;
  }
}

.contactForm {
  margin: 100px auto 0;
  width: 90%;
  max-width: 1280px;
}
@media screen and (max-width: 768px) {
  .contactForm {
    width: 100%;
    margin: 0 auto;
  }
}

.formDl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .formDl {
    display: block;
  }
}
.formDl.formDl-flexStart {
  align-items: flex-start;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .formDl.formDl-flexStart {
    display: block;
  }
}

.formDt {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .formDt {
    width: 100%;
    justify-content: flex-start;
  }
}

.formTtl {
  margin-right: 51px;
  font-weight: 500;
  text-align: right;
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .formTtl {
    margin-right: 10px;
    font-size: 14px;
    text-align: left;
  }
}

.formRequired {
  font-size: 21px;
  line-height: 1;
  padding-left: 3px;
  font-weight: 300;
}

.formDd {
  width: calc(100% - 251px);
}
@media screen and (max-width: 768px) {
  .formDd {
    width: 100%;
    margin-top: 6px;
  }
}

.radioBtn-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .radioBtn-wrap {
    display: block;
  }
}

label[for] {
  color: #FFFFFF;
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
  vertical-align: super;
}

input[type=radio] {
  position: relative;
  width: 16px;
  height: 16px;
  background-color: #FFFFFF;
  border-radius: 50%;
  vertical-align: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  input[type=radio] {
    width: 25px;
    height: 25px;
    margin-right: 5px;
    vertical-align: -2px;
  }
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8.6px;
  height: 8.6px;
  border-radius: 50%;
  background: #107C35;
  content: "";
}
@media screen and (max-width: 768px) {
  input[type=radio]:checked:before {
    width: 10px;
    height: 10px;
  }
}

.radioBtn {
  margin-right: 25px;
  color: #000805;
}
.radioBtn:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 420px) {
  .radioBtn {
    margin-right: 13px;
  }
  .radioBtn:last-of-type {
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .radioBtn-wrap__contactMethod {
    display: block;
  }
}
input[type=text],
input[type=email],
textarea {
  padding: 16.5px 33px;
  background-color: #FFFFFF;
  border-radius: 3px;
  color: #000805;
  width: 100%;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
textarea {
    padding: 5.3px 18px;
  }
}

textarea {
  height: 212px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  textarea {
    height: 258px;
  }
}

::-moz-placeholder {
  color: #A3AFAC;
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
  font-size: 14px;
}

::placeholder {
  color: #A3AFAC;
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
  font-size: 14px;
}

input[type=text].postCode {
  width: 160px;
  margin-right: 18px;
}
@media screen and (max-width: 768px) {
  input[type=text].postCode {
    margin-right: 15px;
    width: 120px;
  }
}

input[type=text].prefectures {
  background-color: #FFFFFF;
  border-radius: 3px;
  color: #000805;
  width: 184px;
}
@media screen and (max-width: 1024px) {
  input[type=text].prefectures {
    padding: 5.3px 18px;
    font-size: 14px;
    width: 120px;
  }
}

input[type=text].birthday{
  background-color: #FFFFFF;
  border-radius: 3px;
  color: #000805;
  width: 89px;
  margin-right: 10px;
} 

input[type=text].birthday.birthday-year{
  width: 184px;
}

.birthday-unit{
  padding-right: 48px;
}
.formAdress__upper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.restAddress {
  margin-top: 12px;
}

.formDl--addressWrap {
  align-items: flex-start;
}
.formDl--addressWrap .formTtl {
  margin-top: 15px;
}

input[type=checkbox] {
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid #FFFFFF;
  vertical-align: 3.5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  content: "";
}

.privacy-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 84px auto 37.5px;
}
.privacy-wrap a {
  color: #FFFFFF;
}

.form--policyLink {
  text-decoration: underline;
}

.submit {
  width: 161px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .submit {
    width: 100%;
  }
}

.submitBtn {
  width: 100%;
  padding: 19px 0;
  text-align: center;
  letter-spacing: 0.1em;
  color: #000805;
  background-color: #FFFFFF;
  line-height: 1;
  transition: all 0.5s;
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 15px;
}
.submitBtn:hover {
  background-color: #000805;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .submitBtn {
    width: 100%;
    font-size: 14px;
    padding: 10px 0;
  }
}

.bl-btn--toTop {
  width: 206px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .bl-btn--toTop {
    width: 100%;
  }
}
.bl-btn--toTop a {
  width: 100%;
  padding: 19px 0;
  text-align: center;
  letter-spacing: 0.1em;
  color: #000805;
  background-color: #FFFFFF;
  line-height: 1;
  transition: all 0.5s;
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 15px;
}
.bl-btn--toTop a::before {
  display: none;
}
.bl-btn--toTop a::after {
  display: none;
}
.bl-btn--toTop a:hover {
  background-color: #000805;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .bl-btn--toTop a {
    font-size: 14px;
    padding: 10px 0 10px 25px;
  }
}

@media screen and (max-width: 1024px) {
  .page-ttl__en--page-policy {
    font-size: 10.25vw;
  }
}
/*# sourceMappingURL=style.css.map */