@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Shippori Mincho", serif, "Noto Serif JP", serif;
  line-height: 1.4;
  color: #222222;
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.heading {
  font-size: 40px;
  font-weight: bold;
}
.heading01 {
  font-size: 64px;
}
@media screen and (max-width: 767px) {
  .heading01 {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 32px;
  }
}

.fontBlod {
  font-weight: bold;
}

header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  transition: transform 0.6s;
  transform-origin: top;
}
@media screen and (max-width: 767px) {
  header {
    transform-origin: top;
  }
}
header.is-small .headerTitle {
  max-width: 100px;
}
@media screen and (max-width: 767px) {
  header.is-small .headerTitle {
    max-width: 110px;
  }
}
header.is-small .menuText {
  font-size: 24px;
}
header.is-small .menuBar {
  width: 80px;
}

.headerMenuBtn.is-open .menuBar:nth-child(2) {
  transform: translateY(1px);
}
.headerMenuBtn.is-open .menuBar:nth-child(3) {
  transform: translateY(-1px);
}

.header {
  max-width: 97.0833333333vw;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.header .headerWrap {
  display: flex;
  max-width: 97.0833333333vw;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  position: absolute;
  top: 40px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .header .headerWrap {
    padding: 0 16px;
    width: 100%;
    top: 16px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.header .headerTitle {
  max-width: 180px;
  width: 100%;
  transition: max-width 0.6s;
}
@media screen and (max-width: 980px) {
  .header .headerTitle {
    max-width: 120px;
  }
}
.header .headerTitle img {
  width: 100%;
}
.header .headerNavList {
  display: flex;
  align-items: self-start;
  gap: 24px;
}
.header .headerNavList + .headerNavList {
  margin-top: 24px;
}
@media screen and (max-width: 980px) {
  .header .headerNavList {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .header .headerNavList {
    flex-direction: column;
    gap: 32px;
  }
}
.header .headerNavItem a {
  display: block;
  font-size: 16px;
  overflow: hidden;
  text-decoration: none;
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.3s;
}
@media screen and (max-width: 767px) {
  .header .headerNavItem a {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .header .headerNavItem a:hover {
    text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
  }
}

@media screen and (max-width: 767px) {
  .headerNav {
    display: none;
  }
  .headerWrap {
    position: relative;
    padding: 2.0833333333vw;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .headerMenuBtn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    row-gap: 0.78125vw;
    position: relative;
    z-index: 9999;
  }
  .menuText {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    transition: font-size 0.6s;
  }
  .menuBar {
    width: 80px;
    height: 1px;
    background: #000;
    transition: all 0.3s;
  }
  .menuBar:nth-child(1) {
    transform: rotate(6deg);
  }
}
@media screen and (max-width: 767px) {
  .headerNav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .headerNav.is-open {
    transform: translateX(0);
  }
  .headerNavList {
    align-items: center;
    gap: 32px;
  }
  .headerNavItem a {
    font-size: 40px;
  }
}
.SnsWrap {
  width: 112px;
  margin-top: 32px;
}
.SnsWrap p {
  margin-bottom: 8px;
  margin-left: -16px;
}

footer {
  margin: 80px 0 24px;
  max-width: 1864px;
  padding-inline: 32px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer {
    padding-inline: 16px;
  }
}
footer .footerNavList {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footerNavList .footerNavItem a {
  display: block;
  font-size: 16px;
  overflow: hidden;
  text-decoration: none;
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.3s;
}
@media screen and (max-width: 767px) {
  footer .footerNavList .footerNavItem a {
    font-size: 16px;
  }
}
@media (hover: hover) {
  footer .footerNavList .footerNavItem a:hover {
    text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFF;
}

#about,
#service,
#work,
#recruit,
#company,
#contact {
  scroll-margin-top: 120px;
}

html.is-lock,
body.is-lock {
  overflow: hidden;
  height: 100%;
}

main.is-open {
  opacity: 0.4;
}

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

#loading {
  position: fixed;
  inset: 0;
  background: #FFF;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading.is-hide {
  opacity: 0;
  visibility: hidden;
}

.loadingInner img {
  max-width: 140px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: logoFade 1.2s ease forwards;
}

/* ロゴふわっと */
@keyframes logoFade {
  to {
    opacity: 1;
  }
}
.fv-news {
  max-width: 480px;
  margin: -100px 0 0;
  padding: 0 20px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .fv-news {
    margin: 24px auto 0;
    max-width: 100%;
  }
}
.fv-news-link {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2509803922);
  backdrop-filter: blur(4px);
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .fv-news-link {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
    gap: 5px;
    background: #e5e6e9;
  }
}
@media (hover: hover) {
  .fv-news-link:hover .fv-news-text {
    text-shadow: 0 0 0 #FFF, 0 1.5em 0 #FFF;
  }
}
.fv-news-date {
  font-weight: 400;
  margin-right: 20px;
  color: #FFF;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .fv-news-date {
    color: #000;
  }
}
.fv-news-text {
  display: block;
  font-size: 16px;
  overflow: hidden;
  text-decoration: none;
  color: transparent;
  text-shadow: 0 -1.5em 0 #FFF, 0 0 0 #FFF;
  transition: text-shadow 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .fv-news-text {
    color: #000;
  }
}

.firstView {
  width: 100%;
  position: relative;
}

.firstViewWrap {
  width: 100%;
  position: relative;
}

.firstViewText {
  position: absolute;
  top: 25%;
  right: 10%;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.8;
  z-index: 99;
  writing-mode: vertical-rl;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .firstViewText {
    font-size: 28px;
    top: auto;
    right: auto;
    bottom: 120px;
    left: 18px;
    line-height: 2;
    writing-mode: initial;
  }
}

.firstViewImgdot {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
  position: absolute;
  bottom: 0;
  right: 5vw;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .firstViewImgdot {
    right: -7.1614583333vw;
    bottom: 2.8645833333vw;
    -moz-column-gap: 3.125vw;
         column-gap: 3.125vw;
  }
}
.firstViewImgdot span {
  display: block;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border: 1px solid #0060b4;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .firstViewImgdot span {
    width: 6.25vw;
    height: 6.25vw;
  }
}
.firstViewImgdot span.is-active {
  width: 3.3333333333vw;
  height: 3.3333333333vw;
  background-color: #0060b4;
}
@media screen and (max-width: 767px) {
  .firstViewImgdot span.is-active {
    width: 9.375vw;
    height: 9.375vw;
  }
}

.firstViewImgItem {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  list-style: none;
}
.firstViewImgItem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.firstViewImgItem.is-active {
  opacity: 1;
  z-index: 1;
}

.firstViewImgFrame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.firstViewImgList {
  transition: transform 0.6s ease;
  position: relative;
  height: 100%;
}

.firstViewImgItem {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.firstViewImgItem img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  transition: transform 6s ease;
}

.firstViewImgItem.is-active {
  opacity: 1;
  z-index: 1;
}

.firstViewImgItem.is-active img {
  transform: scale(1);
}

.firstViewText .char {
  opacity: 0;
  transform: translateY(20px);
  transition: 1s ease;
  color: #fff;
}

.firstViewText.is-show .char {
  opacity: 1;
  transform: translateY(0);
}

.aboutArea {
  padding: 180px 32px 160px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .aboutArea {
    padding: 120px 16px 160px;
  }
}

hgroup {
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.7s ease;
}
hgroup h2 {
  font-size: 80px;
  color: #000;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}
@media screen and (max-width: 767px) {
  hgroup h2 {
    font-size: 40px;
  }
}
hgroup.is-show {
  opacity: 1;
}
hgroup.is-show h2 {
  transform: translateY(0);
  opacity: 1;
}

.aboutWrap {
  padding-top: 32px;
}

.aboutWrapFirst {
  position: relative;
  width: 100%;
  margin-bottom: 400px;
}
@media screen and (max-width: 767px) {
  .aboutWrapFirst {
    margin-bottom: 120px;
  }
}
.aboutWrapFirst .aboutWraptImg01 {
  width: 100%;
  height: 700px;
}
@media screen and (max-width: 767px) {
  .aboutWrapFirst .aboutWraptImg01 {
    height: 550px;
  }
}
.aboutWrapFirst .aboutWraptImg01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutWrapFirst .aboutWraptImg02 {
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 300px;
  height: 320px;
  overflow: hidden;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
@media screen and (max-width: 767px) {
  .aboutWrapFirst .aboutWraptImg02 {
    bottom: auto;
    top: 480px;
    width: 160px;
    height: 180px;
  }
}
.aboutWrapFirst .aboutWraptImg02.is-show {
  transform: scale(1);
  opacity: 1;
}
.aboutWrapFirst .aboutWraptImg02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutWrapFirst .aboutContentTextArea {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  max-width: 480px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .aboutWrapFirst .aboutContentTextArea {
    position: static;
    transform: none;
    margin-top: 180px;
    max-width: 600px;
  }
}
.aboutWrapFirst .aboutContentTextArea .aboutText {
  font-size: 16px;
  line-height: 2;
  color: #FFF;
  transition: opacity 1.2s 0.6s;
  opacity: 0;
  text-shadow: 1px 1px 3px rgb(0, 0, 0);
}
@media screen and (max-width: 767px) {
  .aboutWrapFirst .aboutContentTextArea .aboutText {
    color: #000;
    text-shadow: none;
  }
}
.aboutWrapFirst.is-show .aboutContentImg {
  transform: scale(1);
  opacity: 1;
}
.aboutWrapFirst.is-show .aboutContentTextArea .aboutText {
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

.serviceContentStrengthWrap {
  width: 100%;
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .serviceContentStrengthWrap {
    margin-top: 0;
  }
}
.serviceContentStrengthWrap .serviceContentStrength {
  display: flex;
  width: 100%;
  height: 100vh;
  height: 100svh;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding: 80px 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  gap: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .serviceContentStrengthWrap .serviceContentStrength {
    flex-direction: column-reverse;
    height: auto;
    min-height: auto;
    padding: 32px 0;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
}
.serviceContentStrengthWrap .aboutContentStrength:first-child,
.serviceContentStrengthWrap .aboutContentStrength:last-child {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}
.serviceContentStrengthWrap .serviceContentStrengthTextArea {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 50%;
  min-width: 350px;
}
@media screen and (max-width: 767px) {
  .serviceContentStrengthWrap .serviceContentStrengthTextArea {
    min-width: auto;
    max-width: 600px;
    width: 100%;
  }
}
.serviceContentStrengthWrap .serviceContentStrengthImg {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .serviceContentStrengthWrap .serviceContentStrengthImg {
    width: 100%;
    min-width: 0;
  }
}
.serviceContentStrengthWrap .serviceContentStrengthImg img {
  width: 100%;
  height: auto;
  display: block;
}
.serviceContentStrengthWrap .aboutContentTextTitle {
  font-size: 32px;
  line-height: 2;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  .serviceContentStrengthWrap .aboutContentTextTitle {
    font-size: 22px;
    padding: 0 0 16px;
  }
}
.serviceContentStrengthWrap .aboutContentTextTitleSub {
  font-size: 16px;
}

.staffArea {
  max-width: 1664px;
  padding: 160px 32px 0px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .staffArea {
    padding: 45px 16px 0;
  }
}

.WorkArea {
  max-width: 1864px;
  width: 100%;
  margin: 80px auto 0;
  padding: 0 32px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .WorkArea {
    margin-top: 0;
    padding: 45px 16px 0;
  }
}

.workSliderContainer {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .workSliderContainer {
    margin-top: 32px;
  }
}

.workSliderList {
  display: flex;
  gap: 24px;
  /* 修正ポイント：上下に「はみ出しを許容するスペース」を作る */
  /* 日付やテキストエリアがはみ出す分（例: 40px）を確保 */
  padding-top: 40px;
  padding-bottom: 40px;
  /* 元の左右パディングも維持 */
  padding-inline: 24px;
  /* 元のmargin-topを、padding分だけ相殺して位置を微調整 */
  margin-top: 0;
  overflow-x: auto;
  /* ↓ これが原因で縦方向が隠れるので、paddingで内側に余白を作って解決 */
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.workSliderList::-webkit-scrollbar {
  display: none;
}
.workSliderList {
  scrollbar-width: none;
}
@media screen and (max-width: 767px) {
  .workSliderList {
    padding-top: 0;
  }
}

.workCard {
  flex: 0 0 330px;
  scroll-snap-align: start;
  padding: 0 20px;
  width: 440px;
  position: relative;
  display: flex;
  justify-content: center;
}

.workCardArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #FFF;
  border-radius: 50%;
  margin: 8px 0 0 auto;
  color: transparent;
  transition: text-shadow 0.3s;
  text-shadow: 2em 0 0 #000, 0 0 0 #000;
  overflow: hidden;
}
.workCardArrow a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px 16px;
  background-color: #000;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 4px;
  transition: all 0.3s;
}
.workCardArrow a span {
  display: block;
  font-size: 24px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .workCardArrow a {
    max-width: 200px;
    font-size: 24px;
  }
}

/* ボタンのデザイン */
.workSliderBtn {
  display: flex;
  position: absolute;
  top: 0;
  right: 32px;
  gap: 40px;
}

.sliderBtn {
  width: 80px;
  height: 80px;
  background: #fff;
  border: none;
  cursor: pointer;
  display: none;
  position: relative;
}
@media (min-width: 769px) {
  .sliderBtn.active {
    display: block;
  }
}
.sliderBtn::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sliderBtn.prev::before {
  transform: rotate(-135deg);
}
.sliderBtn.next::before {
  transform: rotate(45deg);
}

.workCardImg {
  overflow: hidden;
  max-width: 400px;
  height: 290px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #000;
}
.workCardImg img {
  transition: all 0.6s;
}

@media (hover: hover) {
  .workCardLink:hover .workCardImg img {
    transform: scale(1.1);
  }
  .workCardLink:hover .workCardArrow {
    text-shadow: 0 0 0 #000, 0 0 2em #000;
  }
}

.workCardDate {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  writing-mode: vertical-rl;
}

.workCardBody {
  position: absolute;
  bottom: -28px;
  left: -4px;
  padding: 16px 16px;
  border-radius: 4px;
  background-color: rgb(242, 242, 242);
  width: 288px;
  height: 131px;
}

.staffCardBody {
  position: absolute;
  bottom: -40px;
  left: -4px;
  padding: 16px 16px;
  border-radius: 4px;
  background-color: rgb(242, 242, 242);
  width: 288px;
  height: 160px;
}

.workCardTitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  height: 3.2em;
}

.staffCardTitle {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  margin-bottom: 8px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 20px;
}

.staffCardText {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.workMoreBtnArea {
  max-width: 1200px;
  width: 100%;
  margin: 64px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .workMoreBtnArea {
    margin-top: 24px;
    max-width: none;
  }
}
.workMoreBtnArea a {
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 16px;
  background-color: #000;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 4px;
  transition: all 0.3s;
}
.workMoreBtnArea a span {
  display: block;
  font-size: 24px;
  overflow: hidden;
  color: transparent;
  transition: text-shadow 0.3s;
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
}
@media screen and (max-width: 767px) {
  .workMoreBtnArea a {
    max-width: 320px;
    font-size: 24px;
  }
}
@media (hover: hover) {
  .workMoreBtnArea a:hover {
    background-color: #fff;
    border: 1px solid #000;
  }
  .workMoreBtnArea a:hover span {
    text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
  }
}

.aboutContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.aboutContent .aboutContentImg {
  width: 100%;
  overflow: hidden;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.aboutContent .aboutContentImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutContent .aboutContentTextArea {
  margin-top: 2.0833333333vw;
  transition: opacity 1.2s 0.6s;
  opacity: 0;
  width: 32%;
}
@media screen and (max-width: 767px) {
  .aboutContent .aboutContentTextArea {
    margin-top: 24px;
    width: 100%;
  }
}
.aboutContent.is-show .aboutContentImg {
  transform: scale(1);
  opacity: 1;
}
.aboutContent.is-show .aboutContentTextArea {
  opacity: 1;
}
.aboutContent + .aboutContent {
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .aboutContent {
    flex-direction: column-reverse;
    margin-top: 50px;
  }
}
.aboutContent .aboutContentImg {
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .aboutContent .aboutContentImg {
    width: 100%;
    margin-top: 0;
  }
}
.aboutContent .aboutContentTextArea {
  width: 47%;
  min-width: 420px;
}
@media screen and (max-width: 767px) {
  .aboutContent .aboutContentTextArea {
    width: 100%;
    min-width: auto;
  }
}

.aboutText {
  font-size: 16px;
  line-height: 3;
}
@media screen and (max-width: 767px) {
  .aboutText {
    font-size: 16px;
    line-height: 1.8;
  }
}

.PresidentStoryArea {
  max-width: 1664px;
  padding: 160px 32px 160px;
  width: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .PresidentStoryArea {
    padding: 45px 16px 50px;
  }
}

.PresidentStoryWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8%;
       column-gap: 8%;
}
@media screen and (max-width: 1200px) {
  .PresidentStoryWrap {
    flex-direction: column;
  }
}

.PresidentStoryNameImgArea {
  display: flex;
  justify-content: center;
  -moz-column-gap: 56px;
       column-gap: 56px;
}
@media screen and (max-width: 767px) {
  .PresidentStoryNameImgArea {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}

.PresidentStoryImg {
  max-width: 467px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .PresidentStoryImg {
    max-width: 320px;
  }
}

.PresidentStoryText span {
  opacity: 0;
  display: inline-block;
  transform: translateY(-10px);
  transition: opacity 0.6s, transform 0.6s;
}

.PresidentStoryText.is-show span {
  opacity: 1;
  transform: translateY(0);
}

.PresidentStoryNameArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .PresidentStoryNameArea {
    padding-top: 24px;
  }
}

.PresidentStoryName {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 32px;
  padding-top: 16px;
}
@media screen and (max-width: 767px) {
  .PresidentStoryName {
    font-size: 24px;
    padding-top: 16px;
  }
}
.PresidentStoryName span {
  display: block;
  margin-top: -20px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .PresidentStoryName span {
    margin-top: 12px;
  }
}

.PresidentStoryTextSub {
  font-size: 16px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .PresidentStoryTextSub {
    font-size: 14px;
    margin-top: 8px;
  }
}

.PresidentStoryPresident {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .PresidentStoryPresident {
    margin-top: 12px;
    font-size: 18px;
  }
}

.PresidentStoryTextArea {
  max-width: 600px;
  width: 100%;
}
.PresidentStoryText {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .PresidentStoryText {
    font-size: 16px;
    margin-top: 32px;
  }
}

.serviceArea {
  max-width: 1664px;
  padding: 160px 32px 160px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .serviceArea {
    padding: 45px 16px 0;
  }
}

.recruitCompany {
  margin-top: 240px;
}
@media screen and (max-width: 767px) {
  .recruitCompany {
    margin-top: 0;
  }
}
.recruitCompany + .recruitCompany {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .recruitCompany + .recruitCompany {
    margin-top: 0;
  }
}

.recruitCompanyWrap {
  max-width: 1864px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
@media screen and (max-width: 767px) {
  .recruitCompanyWrap {
    margin-top: 0;
    padding: 64px 16px 0;
  }
}

.recruitCompanyOverviewArea {
  max-width: 1200px;
  width: 100%;
  margin: 64px auto 0;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .recruitCompanyOverviewArea {
    margin: 32px auto 0;
    flex-direction: column;
    align-items: center;
  }
}

.recruitCompanyOverviewaTextImg {
  max-width: 400px;
  width: 100%;
}

.recruitCompanyOverviewaTextArea h3 {
  font-size: 20px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .recruitCompanyOverviewaTextArea h3 {
    margin-bottom: 16px;
  }
}
.recruitCompanyOverviewaTextArea p {
  font-size: 16px;
  line-height: 2;
}

.recruitCompanyList {
  max-width: 1200px;
  margin: 120px auto 0;
  width: 100%;
  border-top: 1px solid #333;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .recruitCompanyList {
    margin: 32px auto 0;
  }
}
.recruitCompanyList .recruitCompanyItem {
  border-bottom: 1px solid #333;
  padding: 32px 0;
}
@media (max-width: 768px) {
  .recruitCompanyList .recruitCompanyItem {
    padding: 24px 0;
  }
}
.recruitCompanyList .recruitCompanyItem dl {
  display: flex;
  margin: 0;
}
@media (max-width: 768px) {
  .recruitCompanyList .recruitCompanyItem dl {
    flex-direction: column;
    gap: 12px;
  }
}
.recruitCompanyList .recruitCompanyItem dt {
  width: 18%;
  font-size: 16px;
  color: #333;
}
@media (max-width: 768px) {
  .recruitCompanyList .recruitCompanyItem dt {
    width: 100%;
    font-weight: bold;
  }
}
.recruitCompanyList .recruitCompanyItem dd {
  width: 82%;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
@media (max-width: 768px) {
  .recruitCompanyList .recruitCompanyItem dd {
    width: 100%;
  }
}

.companyList {
  margin-top: 90px;
}

.ApplyWrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: vw(40);
}
@media screen and (max-width: 767px) {
  .ApplyWrap {
    display: block;
  }
}

.ApplyBtn {
  max-width: 1200px;
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .ApplyBtn {
    margin-top: 40px;
    max-width: none;
  }
}
.ApplyBtn a {
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px 16px;
  background-color: #000;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 4px;
  transition: all 0.3s;
}
.ApplyBtn a span {
  display: block;
  font-size: 24px;
  overflow: hidden;
  color: transparent;
  transition: text-shadow 0.3s;
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
}
@media screen and (max-width: 767px) {
  .ApplyBtn a {
    max-width: 320px;
    width: 100%;
    font-size: 24px;
  }
}
@media (hover: hover) {
  .ApplyBtn a:hover {
    background-color: #fff;
    border: 1px solid #000;
  }
  .ApplyBtn a:hover span {
    text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
  }
}

.contactWrapListWrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .contactWrapListWrap {
    flex-direction: column;
  }
}

.contactWrapList {
  max-width: 1500px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

.contactWrapItem {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .contactWrapItem {
    width: 50%;
  }
}
.contactWrapItem img {
  width: 100%;
}

.requirementBox {
  position: relative;
  padding: 40px 24px 24px;
}

.frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.frame-path {
  fill: none;
  stroke: #0060b4;
  stroke-width: 2;
}

.requirementTitle {
  position: absolute;
  top: -12px;
  left: 24px;
  font-size: 20px;
  font-weight: bold;
}

.contact {
  max-width: 1864px;
  width: 100%;
  margin-top: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.contactWrap {
  padding: 0 32px;
}
@media screen and (max-width: 767px) {
  .contactWrap {
    padding: 64px 16px 50px;
  }
}

.contactContainer {
  max-width: 1200px;
  padding: 0 32px;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .contactContainer {
    max-width: none;
    padding: 0 16px;
    margin: 32px auto 0;
  }
}

.formGroup {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .formGroup {
    margin-bottom: 48px;
  }
}

.formGroup label {
  display: block;
  font-size: 24px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .formGroup label {
    font-size: 20px;
  }
}

.required {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .required {
    font-size: 12px;
  }
}

input,
textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px;
  font-size: 14px;
  outline: none;
}

textarea {
  height: 160px;
  resize: none;
}

input::-moz-placeholder {
  color: #ccc;
}

input::placeholder {
  color: #ccc;
}

/* ラジオ */
.radioGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .radioGroup {
    gap: 28px;
  }
}

.radioGroup label input {
  width: -moz-fit-content;
  width: fit-content;
}

.radioGroup label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.radioGroup label input[type=radio] {
  transform: scale(1.5);
}
@media screen and (max-width: 767px) {
  .radioGroup label input[type=radio] {
    transform: scale(1);
  }
}
@media screen and (max-width: 767px) {
  .radioGroup label {
    gap: 8px;
    margin-bottom: 0;
  }
}
.radioGroup label span {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .radioGroup label span {
    font-size: 16px;
  }
}

/* ボタン */
.formSubmit {
  text-align: center;
  margin-top: 80px;
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .formSubmit {
    margin-top: 40px;
    max-width: none;
  }
}
.formSubmit button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px 16px;
  background-color: #000;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 4px;
  width: 400px;
}
.formSubmit button span {
  display: block;
  font-size: 24px;
  overflow: hidden;
  color: transparent;
  transition: text-shadow 0.3s;
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
}
@media screen and (max-width: 767px) {
  .formSubmit button {
    max-width: 320px;
    font-size: 24px;
  }
}
@media (hover: hover) {
  .formSubmit button:hover {
    background-color: #fff;
    border: 1px solid #000;
  }
  .formSubmit button:hover span {
    text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
  }
}
@media screen and (max-width: 767px) {
  .formSubmit {
    margin-top: 40px;
  }
}

.faq {
  max-width: 1864px;
  width: 100%;
  margin-top: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .faq {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.faqWrap {
  max-width: 1864px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
@media screen and (max-width: 767px) {
  .faqWrap {
    margin-top: 0;
    padding: 64px 16px 0;
  }
}

.faqList {
  border-top: 1px solid #333;
  max-width: 1200px;
  margin: 64px auto 0;
  width: 100%;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .faqList {
    margin: 32px auto 0;
  }
}

.faqItem {
  border-bottom: 1px solid #333;
}
.faqItem .faqQuestion {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.faqItem .faqQuestion .qText {
  display: flex;
  gap: 12px;
  font-size: 16px;
  color: #000;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}
.faqItem .faqQuestion .qText::before {
  content: "Q.";
  flex-shrink: 0;
  font-weight: bold;
}
.faqItem .faqQuestion .icon {
  margin-top: 6px;
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faqItem .faqQuestion .icon::before, .faqItem .faqQuestion .icon::after {
  content: "";
  position: absolute;
  background: #333;
  transition: 0.3s;
}
.faqItem .faqQuestion .icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faqItem .faqQuestion .icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faqItem .faqQuestion.is-active .icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faqItem .faqAnswer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f9f9f9;
}
.faqItem .faqAnswer .faqAnswerContent {
  display: flex;
  gap: 12px;
  padding: 20px 20px 30px 22px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}
.faqItem .faqAnswer .faqAnswerContent::before {
  content: "A.";
  flex-shrink: 0;
  color: #000;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */