@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@keyframes down {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  10% {
    transform: rotate(0deg) translateY(0px);
  }
  40% {
    transform: rotate(0deg) translateY(10px);
  }
  60% {
    transform: rotate(0deg) translateY(10px);
  }
  90% {
    transform: rotate(0deg) translateY(0px);
  }
  100% {
    transform: rotate(0deg) translateY(0px);
  }
}
@keyframes line {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
body.fix {
  position: fixed;
  overflow-y: scroll;
}

header {
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
header.active {
  opacity: 1;
}

section {
  width: 100%;
  min-width: 1120px;
  overflow: hidden;
}
section#message {
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  transition: all 0.35s ease-in;
  opacity: 0;
  pointer-events: none;
}
section#message.on {
  opacity: 1;
  pointer-events: auto;
}
section#message .inner {
  width: calc(100% - 288px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 160px;
}
section#message .inner h3 {
  color: #000000;
  font-family: "Poppins", serif;
  font-size: 10rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#message .inner .text p {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  text-align: left;
}
section#message .inner .text p:not(:last-child) {
  margin-bottom: 48px;
}
section#message .background {
  width: 100%;
  position: absolute;
  opacity: 0.2;
  top: 0px;
  left: 0px;
  z-index: 0;
}
section#message .close {
  width: 180px;
  height: 48px;
  background-image: url(../../common/images/bg_tt.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 16px;
  position: fixed;
  top: calc(100% - 48px - 30px);
  right: 30px;
  z-index: 555;
  cursor: pointer;
  transition: all 0.25s ease-in 0s;
}
section#message .close:hover {
  filter: brightness(1.25);
}
section#message .close::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../../common/images/icon_plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 16px;
  transform: rotate(45deg);
}
section#message .close span {
  color: #FFF;
  font-family: "Poppins", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#visual {
  width: 100%;
  clip-path: inset(0 0 0 0);
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-position: centr;
  background-size: cover;
  opacity: 0;
  transition: all 0.5s ease-in;
}
section#visual.on {
  opacity: 1;
}
section#visual.on .contents .catchcopy {
  opacity: 1;
}
section#visual .contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 152px 0;
  position: relative;
  z-index: 3;
}
section#visual .contents .catchcopy {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  transition: all 0.5s ease-in 1.25s;
}
section#visual .contents .catchcopy > h3 {
  background-image: url(../images/catch.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  width: 514px;
  height: 476px;
}
section#visual .contents .catchcopy .scrolldown {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: calc(100% - 122px - 30px);
  left: 24px;
  z-index: 555;
  cursor: pointer;
  transition: all 0.25s ease-in 0s;
  opacity: 1;
}
section#visual .contents .catchcopy .scrolldown.on {
  opacity: 1;
}
section#visual .contents .catchcopy .scrolldown::after {
  content: "";
  width: 12px;
  height: 14px;
  background-image: url(../../common/images/arrow_pgdown.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: relative;
  animation: 1s linear infinite down;
}
section#visual .contents .catchcopy .scrolldown span {
  color: #FFF;
  font-family: "Poppins", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-bottom: 8px;
}
section#visual .contents .catchcopy .message {
  width: 180px;
  height: 48px;
  background-image: url(../../common/images/bg_tt.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 16px;
  position: fixed;
  top: calc(100% - 48px - 30px);
  right: 30px;
  z-index: 555;
  cursor: pointer;
  transition: all 0.25s ease-in 0s;
}
section#visual .contents .catchcopy .message:hover {
  filter: brightness(1.25);
}
section#visual .contents .catchcopy .message::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../../common/images/icon_plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 16px;
}
section#visual .contents .catchcopy .message span {
  color: #FFF;
  font-family: "Poppins", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#visual .contents .special {
  text-align: left;
  width: calc(100% - 104px);
  margin: 0 0 0 auto;
  opacity: 0;
  transition: opacity 0.3s ease-in 0s;
}
section#visual .contents .special.on {
  opacity: 1;
}
section#visual .contents .special.on .inner .text {
  opacity: 1;
}
section#visual .contents .special.on .inner .slider {
  opacity: 1;
}
section#visual .contents .special h3 {
  color: #FFF;
  font-family: "Poppins", serif;
  font-size: 20rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#visual .contents .special .inner {
  width: 100%;
  margin-top: -3rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
section#visual .contents .special .inner .text {
  width: 35%;
  padding: 80px 24px;
  background-image: url(../images/bg_home.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px 0;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.5s;
}
section#visual .contents .special .inner .text .link.on a dl dt {
  background-color: #FFF;
}
section#visual .contents .special .inner .text .link.on a dl dt span {
  color: #000000;
}
section#visual .contents .special .inner .text .link.on a dl dd::before {
  opacity: 1;
}
section#visual .contents .special .inner .text .link.on a dl dd span {
  color: #FFF;
}
section#visual .contents .special .inner .text .link a dl {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
section#visual .contents .special .inner .text .link a dl dt {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 4px 8px;
  border-radius: 14px;
  margin-bottom: 8px;
  transition: all 0.25s ease-in 0s;
}
section#visual .contents .special .inner .text .link a dl dt span {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  transition: all 0.25s ease-in 0s;
}
section#visual .contents .special .inner .text .link a dl dd {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 8px;
}
section#visual .contents .special .inner .text .link a dl dd::before {
  content: "";
  width: 13px;
  height: 19px;
  background-image: url(../../common/images/icon_greater.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  display: block;
  transition: all 0.25s ease-in 0s;
}
section#visual .contents .special .inner .text .link a dl dd span {
  color: rgba(255, 255, 255, 0.65);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  transition: all 0.25s ease-in 0s;
}
section#visual .contents .special .inner .text .explain {
  width: 100%;
  padding: 24px 0 0 0;
  border-top: solid 1px #FFF;
}
section#visual .contents .special .inner .text .explain p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  display: none;
}
section#visual .contents .special .inner .text .explain p.on {
  display: block;
}
section#visual .contents .special .inner .slider {
  width: calc(65% - 16px);
  padding: 16px;
  background-image: url(../images/bg_home.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px 0 0 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.75s;
}
section#visual .contents .special .inner .slider .inslider {
  width: 100%;
  height: 100%;
  clip-path: polygon(44px calc(50% - 22px), 0 calc(50% - 22px), 0 0, 100% 0, 100% calc(50% - 22px), calc(100% - 44px) calc(50% - 22px), calc(100% - 44px) calc(50% + 22px), 100% calc(50% + 22px), 100% 100%, 0 99%, 0 calc(50% + 22px), 44px calc(50% + 22px));
}
section#visual .contents .special .inner .slider .inslider .swiper-wrapper {
  width: 100%;
  height: 100%;
}
section#visual .contents .special .inner .slider .inslider .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section#visual .contents .special .inner .slider .inslider .swiper-wrapper .swiper-slide.sld1 {
  background-image: url(../images/photo_special1.jpg);
}
section#visual .contents .special .inner .slider .inslider .swiper-wrapper .swiper-slide.sld2 {
  background-image: url(../images/photo_special2.jpg);
}
section#visual .contents .special .inner .slider .inslider .swiper-wrapper .swiper-slide.sld3 {
  background-image: url(../images/photo_special3.jpg);
}
section#visual .contents .special .inner .slider .inslider .swiper-wrapper .swiper-slide.sld4 {
  background-image: url(../images/photo_special4.jpg);
}
section#visual .contents .special .inner .slider .inslider .swiper-wrapper .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
}
section#visual .contents .special .inner .slider .inslider .swiper-wrapper img {
  width: 100%;
  height: auto;
  opacity: 0;
}
section#visual .contents .special .inner .slider .arrow {
  width: 44px;
  height: 44px;
  background-image: url(../images/arrow_special.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 22px);
  z-index: 10;
}
section#visual .contents .special .inner .slider .arrow.prev {
  left: 16px;
}
section#visual .contents .special .inner .slider .arrow.next {
  right: 16px;
  transform: rotate(180deg);
}
section#visual .contents .special .inner .slider .count {
  display: none;
}
section#visual .background {
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 0;
}
section#visual .background::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/bg_line2.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  animation-name: line;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-delay: 2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  clip-path: inset(0 100% 0 0);
}
section#visual .background::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/bg_line3.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  animation-name: line;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-delay: 2.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  clip-path: inset(0 100% 0 0);
}
section#visual .background span {
  width: 100%;
  animation-name: line;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-delay: 2.25s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  clip-path: inset(0 100% 0 0);
  display: block;
}
section#about {
  width: 100%;
  padding: 56px 0;
  background-image: url(../images/bg_about.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: coer;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.3s ease-in 0s;
}
section#about.on {
  opacity: 1;
}
section#about.on .inner .tt {
  opacity: 1;
}
section#about.on .inner .combo {
  opacity: 1;
}
section#about .inner {
  text-align: left;
  width: calc(100% - 100px);
}
section#about .inner .tt {
  width: 100%;
  margin-bottom: 56px;
  border-bottom: solid 1px #000000;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.5s;
}
section#about .inner .tt h3 {
  color: #000000;
  font-family: "Poppins", serif;
  font-size: 8rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#about .inner .combo {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.75s;
}
section#about .inner .combo .thumb a {
  width: 100%;
}
section#about .inner .combo .thumb a dl dt {
  width: 100%;
  margin-bottom: 16px;
}
section#about .inner .combo .thumb a dl dd {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 8px;
}
section#about .inner .combo .thumb a dl dd::before {
  content: "";
  width: 13px;
  height: 19px;
  background-image: url(../../common/images/icon_greater.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
}
section#about .inner .combo .thumb a dl dd span {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#about .inner .combo .thumb-main {
  width: 35%;
  background-image: url(../images/bg_home.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10px 10px 16px 10px;
}
section#about .inner .combo .thumbs {
  width: calc(65% - 64px);
  background-color: #FFF;
  padding: 10px 0 16px 0;
  position: relative;
}
section#about .inner .combo .thumbs .thumb-sub {
  width: 100%;
  overflow: hidden;
}
section#about .inner .combo .thumbs .thumb-sub .swiper-wrapper {
  width: 100%;
}
section#about .inner .combo .thumbs .thumb-sub .swiper-wrapper .thumb a dl dd {
  padding: 0 10px;
}
section#about .inner .combo .thumbs .thumb-sub .swiper-wrapper .thumb a dl dd::before {
  background-image: url(../../common/images/icon_greater2.svg);
}
section#about .inner .combo .thumbs .thumb-sub .swiper-wrapper .thumb a dl dd span {
  color: #000000;
}
section#about .inner .combo .thumbs .thumb-sub .arrow {
  width: 44px;
  height: 44px;
  background-image: url(../images/arrow_special.png), url(../images/bg_home.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 22px);
  z-index: 10;
}
section#about .inner .combo .thumbs .thumb-sub .arrow.prev {
  left: 0px;
}
section#about .inner .combo .thumbs .thumb-sub .arrow.next {
  right: 0px;
  transform: rotate(180deg);
}
section#interview {
  width: 100%;
  padding: 56px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.3s ease-in 0s;
}
section#interview.on {
  opacity: 1;
}
section#interview.on .inner .tt {
  opacity: 1;
}
section#interview.on .inner .combo {
  opacity: 1;
}
section#interview .inner {
  text-align: left;
  width: calc(100% - 100px);
}
section#interview .inner .tt {
  width: 100%;
  margin-bottom: 36px;
  border-bottom: solid 1px #000000;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.5s;
}
section#interview .inner .tt h3 {
  color: #000000;
  font-family: "Poppins", serif;
  font-size: 8rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#interview .inner .mybody {
  width: 100%;
  margin-bottom: 36px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
}
section#interview .inner .mybody h4 {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#interview .inner .mybody .btn {
  width: 152px;
  border-radius: 18px;
  overflow: hidden;
}
section#interview .inner .mybody .btn a {
  width: 100%;
  height: 36px;
  background-image: url(../../common/images/bg_tt.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.25s ease-in 0s;
}
section#interview .inner .mybody .btn a::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../../common/images/icon_plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7px);
  right: 12px;
  transition: all 0.25s ease-in 0s;
}
section#interview .inner .mybody .btn a:hover {
  filter: brightness(1.25);
}
section#interview .inner .mybody .btn a:hover::after {
  transform: rotate(90deg);
}
section#interview .inner .mybody .btn a span {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#interview .inner .combo {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.75s;
}
section#interview .inner .combo .interview {
  width: 100%;
}
section#interview .inner .combo .interview .intwrap {
  width: 100%;
  height: calc(100% - 72px);
  background-image: url(../images/bg_home.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10px;
  position: relative;
}
section#interview .inner .combo .interview .intwrap .inint {
  width: 100%;
  overflow: hidden;
}
section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0 10px;
}
section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb {
  width: calc((100% - 50px) / 6);
}
section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a {
  width: 100%;
}
section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a:hover dl dt img {
  transform: scale(1.05);
}
section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a dl dt {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
}
section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a dl dt img {
  transition: all 0.3s ease-out;
}
section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a dl dd {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a dl dd span:nth-child(1) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a dl dd span:nth-child(2) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a dl dd span:nth-child(3) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#interview .inner .combo .interview .intwrap .inint .arrow {
  width: 44px;
  height: 44px;
  background-image: url(../images/arrow_special.png), url(../images/bg_home.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 22px);
  z-index: 10;
  display: none;
}
section#interview .inner .combo .interview .intwrap .inint .arrow.prev {
  left: 0px;
}
section#interview .inner .combo .interview .intwrap .inint .arrow.next {
  right: 0px;
  transform: rotate(180deg);
}
section#information {
  width: 100%;
  padding: 50px 0;
  background-image: url(../images/bg_info.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in 0s;
}
section#information.on {
  opacity: 1;
}
section#information.on .inner .tt {
  opacity: 1;
}
section#information.on .inner .combo {
  opacity: 1;
}
section#information .inner {
  text-align: left;
  width: calc(100% - 360px);
}
section#information .inner .tt {
  text-align: center;
  width: 100%;
  margin-bottom: 56px;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.5s;
}
section#information .inner .tt h3 {
  color: #FFF;
  font-family: "Poppins", serif;
  font-size: 8rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#information .inner .combo {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.75s;
}
section#information .inner .combo > div {
  width: calc((100% - 20px) / 3);
}
section#information .inner .combo > div.banner {
  width: 100%;
}
section#information .inner .combo > div.banner a {
  padding: 10px;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
section#information .inner .combo > div.banner a::after {
  width: 23px;
  height: 20px;
  background-color: transparent;
  background-image: url(../../common/images/icon_blank.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 10px);
  right: 24px;
}
section#information .inner .combo > div.banner a .ph {
  width: 50%;
}
section#information .inner .combo > div.banner a .txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
section#information .inner .combo > div a {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  position: relative;
}
section#information .inner .combo > div a::after {
  content: "";
  width: 36px;
  height: 1px;
  background-color: #000000;
  position: absolute;
  top: 50%;
  right: 0px;
}
section#information .inner .combo > div a p:nth-child(1) {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  margin-bottom: 16px;
}
section#information .inner .combo > div a p:nth-child(2) {
  color: #000000;
  font-family: "Poppins", serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  font-style: italic;
}
section#recruit-sys {
  width: 100%;
  padding: 50px 0;
  opacity: 0;
  transition: opacity 0.5s ease-in 0s;
}
section#recruit-sys.on {
  opacity: 1;
}
section#recruit-sys .inner {
  width: calc(100% - 360px);
  margin: 0 auto;
}
section#recruit-sys .inner h4 {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  margin-bottom: 48px;
}
section#recruit-sys .inner > div {
  width: 100%;
}
section#recruit-sys .inner > div a {
  width: 100%;
  display: block;
  transition: all 0.25s ease-in 0s;
}
section#recruit-sys .inner > div a:hover {
  opacity: 0.7;
}

footer {
  width: 100%;
  padding: 50px 0;
}
footer .inner {
  width: calc(100% - 60px);
  margin: 0 auto;
}

@media screen and (max-height: 640px) {
  .sec.sec2::before {
    bottom: 0px;
  }
  .sec.sec2 .inner .message p {
    color: #000000;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.875;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  .sec.sec2 .inner .message p:not(:last-child) {
    margin-bottom: 10px;
  }
}
/* --------------------------------------- Media Queries Smartphone --------------------------------------- */
@media screen and (max-width: 768px) {
  section {
    min-width: 100%;
  }
  section#message {
    width: 100%;
    height: auto;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  section#message .inner {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 40px 0;
  }
  section#message .inner h3 {
    color: #000000;
    font-family: "Poppins", serif;
    font-size: 5rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#message .inner .text p {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    text-align: left;
    font-feature-settings: "palt";
  }
  section#message .inner .text p:not(:last-child) {
    margin-bottom: 16px;
  }
  section#message .inner .text p br {
    display: none;
  }
  section#message .background {
    width: 100%;
    height: 100%;
    background-image: url(../images/bg_line_message.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    position: absolute;
  }
  section#message .background img {
    display: none;
  }
  section#message .close {
    width: 144px;
    height: 32px;
    border-radius: 16px;
    gap: 0 16px;
    position: fixed;
    top: calc(100% - 32px - 20px);
    right: 10px;
  }
  section#message .close:hover {
    filter: brightness(1);
  }
  section#message .close::after {
    width: 12px;
    height: 12px;
    top: calc(50% - 6px);
    right: 8px;
  }
  section#message .close span {
    color: #FFF;
    font-family: "Poppins", serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#visual {
    width: 100%;
    clip-path: inset(0 0 0 0);
  }
  section#visual .contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 72px 0;
    position: relative;
    z-index: 3;
  }
  section#visual .contents .catchcopy {
    width: 100%;
    height: auto;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
  }
  section#visual .contents .catchcopy > h3 {
    width: 257px;
    height: 238px;
  }
  section#visual .contents .catchcopy .scrolldown {
    top: calc(100% - 108px - 24px);
    left: 8px;
    z-index: 555;
    opacity: 1;
  }
  section#visual .contents .catchcopy .scrolldown.on {
    opacity: 1;
  }
  section#visual .contents .catchcopy .scrolldown::after {
    width: 12px;
    height: 14px;
  }
  section#visual .contents .catchcopy .scrolldown span {
    color: #FFF;
    font-family: "Poppins", serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    margin-bottom: 8px;
  }
  section#visual .contents .catchcopy .message {
    width: 144px;
    height: 32px;
    background-image: url(../../common/images/bg_tt.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0 16px;
    position: fixed;
    top: calc(100% - 32px - 20px);
    right: 10px;
  }
  section#visual .contents .catchcopy .message:hover {
    filter: brightness(1);
  }
  section#visual .contents .catchcopy .message::after {
    width: 12px;
    height: 12px;
    top: calc(50% - 6px);
    right: 8px;
  }
  section#visual .contents .catchcopy .message span {
    color: #FFF;
    font-family: "Poppins", serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#visual .contents .special {
    width: calc(100% - 20px);
  }
  section#visual .contents .special h3 {
    color: #FFF;
    font-family: "Poppins", serif;
    font-size: 8rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#visual .contents .special .inner {
    width: 100%;
    margin-top: -1.25rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section#visual .contents .special .inner .text {
    width: 100%;
    padding: 16px;
    gap: 16px 0;
    border-radius: 0 0 0 8px;
    order: 2;
  }
  section#visual .contents .special .inner .text .link.on a dl dt {
    background-color: #FFF;
  }
  section#visual .contents .special .inner .text .link.on a dl dt span {
    color: #000000;
  }
  section#visual .contents .special .inner .text .link.on a dl dd::before {
    opacity: 1;
  }
  section#visual .contents .special .inner .text .link.on a dl dd span {
    color: #FFF;
  }
  section#visual .contents .special .inner .text .link a dl dt {
    padding: 4px 8px;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.25s ease-in 0s;
  }
  section#visual .contents .special .inner .text .link a dl dt span {
    color: rgba(255, 255, 255, 0.5);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    transition: all 0.25s ease-in 0s;
  }
  section#visual .contents .special .inner .text .link a dl dd {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 8px;
  }
  section#visual .contents .special .inner .text .link a dl dd::before {
    width: 10px;
    height: 15px;
  }
  section#visual .contents .special .inner .text .link a dl dd span {
    color: rgba(255, 255, 255, 0.65);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    transition: all 0.25s ease-in 0s;
  }
  section#visual .contents .special .inner .text .explain {
    width: 100%;
    padding: 16px 0 0 0;
  }
  section#visual .contents .special .inner .text .explain p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#visual .contents .special .inner .slider {
    width: 100%;
    padding: 8px;
    background-image: url(../images/bg_home.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 0px;
    border-radius: 8px 0 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    order: 1;
  }
  section#visual .contents .special .inner .slider .inslider {
    width: 100%;
    clip-path: polygon(22px calc(50% - 11px), 0 calc(50% - 11px), 0 0, 100% 0, 100% calc(50% - 11px), calc(100% - 22px) calc(50% - 11px), calc(100% - 22px) calc(50% + 11px), 100% calc(50% + 11px), 100% 100%, 0 100%, 0 calc(50% + 11px), 22px calc(50% + 11px));
  }
  section#visual .contents .special .inner .slider .inslider .swiper-wrapper {
    height: auto;
  }
  section#visual .contents .special .inner .slider .inslider .swiper-wrapper .swiper-slide {
    height: auto;
    background-image: none !important;
  }
  section#visual .contents .special .inner .slider .inslider .swiper-wrapper img {
    opacity: 1;
  }
  section#visual .contents .special .inner .slider .arrow {
    width: 22px;
    height: 22px;
    top: calc(50% - 11px);
  }
  section#visual .contents .special .inner .slider .arrow.prev {
    left: 8px;
  }
  section#visual .contents .special .inner .slider .arrow.next {
    right: 8px;
    transform: rotate(180deg);
  }
  section#visual .background {
    width: 100%;
    height: 100%;
  }
  section#visual .background::before {
    animation-duration: 2s;
  }
  section#visual .background::after {
    animation-duration: 2s;
  }
  section#visual .background span {
    width: 100%;
    height: 100%;
    background-image: url(../images/bg_line.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    animation-duration: 2s;
  }
  section#visual .background span img {
    display: none;
  }
  section#about {
    width: 100%;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
  }
  section#about .inner {
    width: calc(100% - 20px);
  }
  section#about .inner .tt {
    margin-bottom: 40px;
    border-bottom: solid 1px #000000;
  }
  section#about .inner .tt h3 {
    color: #000000;
    font-family: "Poppins", serif;
    font-size: 4rem;
    font-weight: 200;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#about .inner .combo {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section#about .inner .combo .thumb a {
    width: 100%;
  }
  section#about .inner .combo .thumb a dl dt {
    width: 100%;
    margin-bottom: 16px;
  }
  section#about .inner .combo .thumb a dl dd {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 8px;
  }
  section#about .inner .combo .thumb a dl dd::before {
    width: 10px;
    height: 15px;
  }
  section#about .inner .combo .thumb a dl dd span {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#about .inner .combo .thumb-main {
    width: 100%;
    background-image: url(../images/bg_home.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 10px 10px 10px 10px;
  }
  section#about .inner .combo .thumbs {
    width: 100%;
    padding: 10px 0 10px 0;
  }
  section#about .inner .combo .thumbs .thumb-sub {
    width: 100%;
  }
  section#about .inner .combo .thumbs .thumb-sub .swiper-wrapper {
    width: 100%;
  }
  section#about .inner .combo .thumbs .thumb-sub .swiper-wrapper .thumb a dl dd {
    padding: 0 5px;
  }
  section#about .inner .combo .thumbs .thumb-sub .swiper-wrapper .thumb a dl dd span {
    color: #000000;
  }
  section#about .inner .combo .thumbs .thumb-sub .arrow {
    width: 22px;
    height: 22px;
    top: calc(50% - 11px);
  }
  section#interview {
    padding: 40px 0;
  }
  section#interview .inner {
    width: calc(100% - 20px);
  }
  section#interview .inner .tt {
    width: 100%;
    margin-bottom: 24px;
  }
  section#interview .inner .tt h3 {
    color: #000000;
    font-family: "Poppins", serif;
    font-size: 4rem;
    font-weight: 200;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#interview .inner .mybody {
    padding: 0 10px 0 0;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 16px;
  }
  section#interview .inner .mybody h4 {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#interview .inner .mybody .btn {
    width: 120px;
    border-radius: 12px;
    overflow: hidden;
  }
  section#interview .inner .mybody .btn a {
    width: 100%;
    height: 24px;
  }
  section#interview .inner .mybody .btn a::after {
    width: 12px;
    height: 12px;
    top: calc(50% - 6px);
    right: 8px;
  }
  section#interview .inner .mybody .btn a:hover {
    filter: brightness(1);
  }
  section#interview .inner .mybody .btn a:hover::after {
    transform: rotate(90deg);
  }
  section#interview .inner .mybody .btn a span {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#interview .inner .combo {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section#interview .inner .combo .interview {
    width: 100%;
  }
  section#interview .inner .combo .interview .intwrap {
    width: 100%;
    height: calc(100% - 72px);
    background-image: url(../images/bg_home.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 10px 0 16px 0;
    position: relative;
  }
  section#interview .inner .combo .interview .intwrap .inint {
    width: 100%;
    overflow: hidden;
  }
  section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb {
    width: auto;
  }
  section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a {
    width: 100%;
  }
  section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a dl dt {
    width: 100%;
    margin-bottom: 16px;
  }
  section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a dl dd {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a dl dd span:nth-child(1) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a dl dd span:nth-child(2) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#interview .inner .combo .interview .intwrap .inint .swiper-wrapper .thumb a dl dd span:nth-child(3) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#interview .inner .combo .interview .intwrap .inint .arrow {
    width: 22px;
    height: 22px;
    top: calc(50% - 11px);
    display: block;
  }
  section#information {
    width: 100%;
    padding: 40px 0;
  }
  section#information .inner {
    text-align: left;
    width: calc(100% - 40px);
  }
  section#information .inner .tt {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
  }
  section#information .inner .tt h3 {
    color: #FFF;
    font-family: "Poppins", serif;
    font-size: 4rem;
    font-weight: 200;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#information .inner .combo {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
  }
  section#information .inner .combo > div {
    width: calc((100% - 16px) / 3);
  }
  section#information .inner .combo > div.banner {
    width: 100%;
  }
  section#information .inner .combo > div.banner a {
    padding: 10px;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  section#information .inner .combo > div.banner a::after {
    width: 16px;
    height: 14px;
    top: calc(100% - 14px - 10px);
    right: 8px;
  }
  section#information .inner .combo > div.banner a .ph {
    width: 45%;
  }
  section#information .inner .combo > div.banner a .txt {
    width: 55%;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
  }
  section#information .inner .combo > div a {
    width: 100%;
    height: 100px;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    background-color: #FFF;
    position: relative;
  }
  section#information .inner .combo > div a::after {
    width: 8px;
    height: 1px;
    top: 50%;
    right: 0px;
  }
  section#information .inner .combo > div a p:nth-child(1) {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    margin-bottom: 8px;
  }
  section#information .inner .combo > div a p:nth-child(2) {
    color: #000000;
    font-family: "Poppins", serif;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    font-style: italic;
  }
  section#recruit-sys {
    width: 100%;
    padding: 40px 0 0 0;
  }
  section#recruit-sys .inner {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  section#recruit-sys .inner h4 {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    margin-bottom: 24px;
  }
  section#recruit-sys .inner > div {
    width: 100%;
  }
  section#recruit-sys .inner > div a:hover {
    opacity: 1;
  }

  footer {
    width: 100%;
    padding: 40px 0;
  }
  footer .inner {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}

/*# sourceMappingURL=style_home_early.css.map */
