@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');

body {
  position: relative;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  font-size: max(14px , 0.97vw);
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.1em;
  background-color: #191919;
}

main {
  overflow: hidden;
}

.inner {
  width: 78.3%;
  max-width: 1700px;
  margin: 0 auto;
}

img {
  width: 100%;
  max-width: 100%;
}

.pc {
  display: block;
}

.sp {
  display: none;
}


/* スクロール調整 */
:root {
  scroll-padding: 0;
  scroll-behavior: smooth;
}

/*--- font color ---*/
.font-white {
  color: #fff;
}

.bg-gray {
  background-color: #393939;
}

.bg-black {
  background-color: #191919;
}

/*--- font style ---*/
.font-center {
  text-align: center;
}

/*--- table ---*/
.table {
  width: 100%;
  margin: 0 auto;
}

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


.fadeUpTrigger{
    opacity: 0;
}

.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:1.2s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }

  
/*-----------------------
ページ共通
-----------------------*/
h2.section-title {
  margin-top: 70px;
  display: inline-block;
  min-width: 165px;
  margin-bottom: 25px;
  padding: 5px 30px;
  border: 1px solid #fff;
  border-radius: 50px;
  font-size: max(16px , 1.11vw);
  font-family: Georgia, 'Times New Roman', Times, serif;
  letter-spacing: 1px;
  text-align: center;
}

h3.section-copy {
  font-size: max(2.77vw , 40px);
  letter-spacing: 2px;
}


.section-copy--border {
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}

.scroll {
  width: 100%;
  height: 100vh;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.section {
  width: 100%;
  scroll-snap-align: start;
  transition: all 0.5s ease;
}

/*-----------------------
ヘッダー
-----------------------*/

header::after {
  display: none;
}

.Toggle {
  display: none;
}

.header {
  width: 100%;
  justify-content: space-between;
  padding-left: 3%;
  padding-top: 20px;
  position: fixed;
  top: -70px;
  left: 0;
  z-index: 980;
  transition: all 1s;
  transform: translateY(-70px);
}

.header.header-fixed {
  top: 0px;
  transform: translateY(0px);
}

.header-logo img {
  display: block;
  width: 100%;
}

.header__nav {
  width: 100%;
  margin-top: 15px;
}

.header__nav-list {
  list-style: none;
  display: flex;
  padding: 0;
  justify-content: flex-end;
}

.header__nav-list li {
  margin-right: 40px;
}

.header__nav-list a {
  color: white;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.header__nav-list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #3b61ff;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.header__nav-list a:hover::after {
  width: 60%;
}

a.contact-btn::after {
  content: none;
  background: none;
}

.contact-btn {
  color: white;
  list-style: none;
  text-decoration: none;
  background-color: #3B61FF;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  margin-left: 70px;
  transition: background-color 0.3s ease;
}

/* hover時 */
.contact-btn:hover {
  background-color: #7490ff;
  border: none;
}

/* confirm 入力内容確認画面*/
.header-confirm {
  top: 70px;
}


.contact-confirm .contact-inner {
  max-width: 90%;
  padding: 100px 0;
  text-align: center;
}

.breadcrumb {
  margin: 100px 0 15px 50px;
}

.breadcrumb ul {
  display: flex;
  list-style: none;
}

.breadcrumb li a {
  color: inherit;
  text-decoration: none;
  color: #fff;
  pointer-events: initial;
}

.breadcrumb li+li::before {
  content: "・";
  margin: 0 8px;
}

.contact-confirm tr {
  text-align: left;
}

.contact-confirm .contact-text {
  text-align: center;
  padding-bottom: 45px;
}

.contact-confirm .contact-btn {
  margin: 0 auto;
  padding: 10px 20px;
  font-size: max(14px , 0.97vw);
}


/*-----------------------
FV
-----------------------*/
.firstview {
  padding-top: 0px !important;
}

.video-wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* ローディングアニメーション */
/* 背景色の設定 */
#container.loading {
  background-color: #191919;
  overflow: hidden;
  transition: all 1s;
}

/* loadingクラスが外れたときの状態 */
#container:not(.loading) {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s;
}


/* アニメーションの定義 */
@keyframes fv-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-500px);
  }

  to {
    opacity: 0.4;
    transform: translateX(0);
  }
}

@keyframes fv-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fv-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 初期状態 */
.fv-catch-en1,
.fv-catch-en2,
.fv-catch-jp,
.fv {
  opacity: 0;
}

/* アニメーションの適用 */
.fv-catch-en1.fv-animate,
.fv-catch-en2.fv-animate {
  animation: fv-fadeInLeft 2s forwards;
}

.fv-catch-jp.fv-animate {
  animation: fv-fadeInUp 3s forwards;
}

.fv.fv-animate {
  animation: fv-fadeIn 2s forwards;
}

.fv {
  position: relative;
}

.fv-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.fv-catch {
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translate(0, -50%);
}

.fv-catch-jp {
  font-size: max(1.45vw , 21px);
  letter-spacing: 5px;
  margin-left: 98px;
}

.fv-catch-en1,
.fv-catch-en2 {
  white-space: nowrap;
  font-size: clamp(100px, 9.02vw, 170px);
  line-height: 1;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

/* 背景キャッチコピー */
.catch-back--top,
.catch-back--bottom {
  opacity: 0;
  position: absolute;
  left: 10%;
  font-size: clamp(120px, 9.5vw, 160px);
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #fff;
  line-height: 1;
  z-index: -1;
  white-space: nowrap;
  transform: translateX(0);
  transition: all 1s;
}

.catch-back--top {
  top: 0;
}

.catch-back--bottom {
  bottom: 0;
}

/* 背景キャッチコピー読み込み後 */
.catch-back-animate {
  opacity: 0.03;
  left: 0;
  transform: translateX(0px);
  right: auto;
}

/* lottieスクロールアニメーション */
.lottie-scroll {
  display: block;
  z-index: 1000;
  position: fixed;
  bottom: -45px;
  right: -60px;
}

/* 左下動画リンク */
.video-link {
  position: absolute;
  width: clamp(180px, 15.27vw, 220px);
  height: 150px;
  left: 20px;
  bottom: -200px;
  z-index: 999;
  transition: all 1s;
  transform: translateY(0px);
  border-radius: 13px;
  overflow: hidden;
}

.video-link.video-link-fixed {
  position: fixed;
  bottom: 50px;
  transform: translateY(0px);
}

.video-link a {
  background-color: #6d6d8e;
  color: #fff;
  font-size: max(0.833vw , 12px);
  text-decoration: underline;
  text-align: center;
  margin-top: 10px;
}

.video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-text {
  position: absolute;
  width: 100%;
  height: 30px;
  bottom: 0;
  padding-top: 6px;
  font-size:  max(0.833vw , 12px);
  background: #4861C9;
}

.modaal-video .modaal-inner-wrapper {
  padding: 0;
}

.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

  .lottie-play {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }


/* 背景動画 */
.video {
  position: fixed;
  opacity: 0;
  width: 86.8vw;
  height: 75%;
  right: -100%;
  top: 50%;
  z-index: -1;
  transition: all 1s;
  transform: translateY(-50%) translateX(0px);
  border-radius: 500px 0 0 500px;
  overflow: hidden;
}

.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 背景動画読み込み後 */
.video.video-animate {
  opacity: 1;
  right: -25%;
  transform: translateY(-50%) translateX(0px);
  transition: all 1s;
}

.video.video-background {
  opacity: 0.3;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow: hidden;
  z-index: -1;
  border-radius: 0;
  transform: translateY(-50%) translateX(0px);
  transition: all 1s;
}
/* #about セクションの中央が画面中央に来たときの状態 */
.video.fixed {
  opacity: 0.3;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow: hidden;
  z-index: -1;
  border-radius: 0;
  transform: translateY(-50%) translateX(0px);
  transition: all 1s;
}
/*-----------------------
ABOUT
-----------------------*/

.about {
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: opacity 2s ease-in-out;
  /* スムーズなフェードインを設定 */
}

.about-text {
  margin-top: 60px;
  line-height: 2.5;
}

/*-----------------------
仕事風景
-----------------------*/
.scene {
  position: relative;
  /*height: 100vh;*/
  height: auto;
}

.scene-container {
  position: relative;
  gap: 35px;
  /*margin-top: 100px;*/
  /*padding: 200px 0 100px;*/
}

.scene-img {
  position: relative;
  max-width: 544px;
  width: 25%;
  height: auto;
  object-fit: cover;
  border-radius: 32px;
/*  transform: translateY(45px);*/
 /* opacity: 0.3;*/
}

.scene-img:nth-child(2),
.scene-img:nth-child(4) {
  top: 90px;
}
/*
.scene-img.scene-animate {
  transform: translateY(0px);
  opacity: 1;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.scene-img.scene-animate:nth-child(2),
.scene-img.scene-animate:nth-child(4) {
  transform: translateY(-95px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}*/

/*-----------------------
MISSION
-----------------------*/
.mission {
  margin-top: 100px;
  width: 65%;
  max-width: 90%;
  padding: 0 0 100px;
}

.mission-container {
  margin-top: 35px;
  gap: 8%;
}

.mission-copy {
  font-size: max(1.736vw , 25px);
  margin-bottom: 50px;
}

.mission-content {
  min-width: 370px;
}

.mission-text {
  line-height: 2.5;
}
.mission-image{
  width: 43%;
}
.mission-image img{
  height: auto;
}

/*-----------------------
INTERVIEW
-----------------------*/
.interview {
  padding: 100px 0;
}

.interview h3.section-copy {
  font-size: max(2.778vw , 40px);
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.interview .section-title {
  margin: 50px auto 25px;
  display: table;
}

.interview-container {
  position: relative;
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}

.interview-item {
  align-items: flex-start;
  justify-content: space-around;
  /* padding-bottom: 80px; */
}

.interview-image {
  width: 47.9%;
  margin-right: 2vw;
}

.interview-image img {
  display: block;
  max-width: 660px;
  width: 100%;
  gap: 45px;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
  margin-right: 4.1vw;
}

.interview-content {
  width: 42%;
}

.interview-title {
  font-size: max(1.736vw , 25px);
  margin-bottom: 30px;
}

.interview-name {
  font-size: max(1.388vw , 20px);
  margin-bottom: 40px;
}

.swiper-container {
  margin: 0 auto;
  overflow: visible;
}

.swiper-wrapper {
  padding: 30px 0;
}

.swiper-slide {
  margin-right: 100px;
  vertical-align: top;
  white-space: normal;
  align-items: flex-start;
  flex: 0 0 auto;
  scroll-snap-align: center;
  justify-content: space-between;
  align-items: flex-start;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ddd !important;
}

/* 前へ次への矢印カスタマイズ */

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 1px;
  transform: translate(-50%, -50%);
}

.swiper-button-prev::after {
  left: 55%;
}

.swiper-button-next::after {
  left: 48%;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev {
  background-color: white;
  border-radius: 50%;
  width: 60px !important;
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  /* 縦横比を1:1に設定 */
}

.swiper-button-prev::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next {
  background-color: white;
  border-radius: 50%;
  width: 60px !important;
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  /* 縦横比を1:1に設定 */
}

.swiper-button-next::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "" !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "" !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 20px) !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 20px) !important;
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

/*-----------------------
greeting
-----------------------*/

.greeting {
  padding: 100px 0px;
}

.greeting-container {
  margin-top: 60px;
  gap: 6%;
}

.greeting-content {
  width: 51%;
}

.greeting-image{
  width: 41.2%;
}
.greeting-copy {
  font-size: max(1.736vw , 25px);
  margin: 0 auto 50px;
}

.greeting-name {
  font-size: max(1.736vw , 25px);
  text-align: right;
  margin-top: 50px;
}

.greeting-name span {
  font-size: max(1.25vw , 18px);
  padding-right: 20px;
}

.greeting-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 32px;
}

/*-----------------------
COMPANY
-----------------------*/
.company {
  padding: 100px 0;
}

.company table {
  width: 73.6%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  margin-right: 0;
  text-align: left;
}

.company table tr {
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.company table th,
table td {
  padding: 20px 15px;
}

.contact-confirm table th {
  padding: 20px 15px;
}

/*-----------------------
STORE
-----------------------*/
.store {
  padding: 100px 0;
}

.store-container {
  margin-top: 40px;
  gap: 6%;
}

.store-content {
  width: 45.6%;
  max-width: 100%;
}

.store-copy {
  font-size: max(1.736vw , 25px);;
  margin-bottom: 40px;
}

.store-text {
  line-height: 2.5;
}

.store-image {
  width: 49.1%;
}

.store-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
}

/*-----------------------
RECRUIT
-----------------------*/
.recruit {
  position: relative;
  padding: 100px 0;
  display: flex;
}

.recruit-wrapper {
  padding: 5px 0;
  width: max-content;
  margin-left: min(60%, calc(100% - 376px));
  margin-top: 50px;
  min-width: 376px;
}

.recruit-image {
  position: absolute;
  left: -70px;
  top: 54%;
  transform: translateY(-50%);
  width: 50%
}

.recruit-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.recruit-image img:first-child {
  border-radius: 0 30px 0 0;
}

.recruit-image img:last-child {
  border-radius: 0 0 30px 0;
}

.recruit-text {
  margin: 80px auto 20px;
  line-height: 2.5;
}

/*-----------------------
CONTACT
-----------------------*/
.contact {
  position: relative;
  background: #393939;
}

.contact-overflow {
  /* overflow: auto; */
  /* max-height: 100vh; */
  box-sizing: border-box;
  padding: 110px 0;
  transition: scroll-top 0.5s ease-in-out;
}

.contact .section-title {
  display: table;
  margin: 0 auto 25px;
}

.contact-inner {
  width: max-content;
}

.contact-text {
  line-height: 2.5;
  margin: 20px auto;
}

.contact-subtext {
  text-align: center;
  color: #212121;
  padding: 5px 10px;
  background: #CBCBCB;
  display: table;
  margin: 0 auto 80px;
}

.form-group {
  justify-content: flex-start;
  margin-bottom: 30px;
  align-items: baseline;
}

label {
  width: 13.8vw;
}

input,
textarea {
  width: calc(100% - 13.8vw);
  padding: 10px;
  margin-bottom: 25px;
  background: none;
  border: none;
  border-bottom: 1px solid #A5A5A5;
  box-sizing: border-box;
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 1.3;
}

textarea#message {
  height: 100px;
}

.file-text {
  margin: -10px 0 0 180px;
  font-size: max(0.69vw , 10px);
  line-height: 2;
}

input[type="radio" i] {
  width: 14px;
  margin: 4px;
}

input#file {
  border: none;
  padding: 0;
}

.radio-group {
  width: calc(100% - 13.8vw);
  justify-content: flex-start;
  align-items: center;
}

.radio-group label {
  width: unset;
  margin-right: 20px;
}

input#terms {
  margin-right: 5px;
  width: unset;
}

.privacypolicy {
  color: #171717;
  font-size:  max(0.833vw , 12px);
  height: 270px;
  max-width: 670px;
  width: 100%;
  overflow-y: auto;
  padding: 30px 50px;
  box-sizing: border-box;
  background: #fff;
  margin: 0 auto;
}

.privacypolicy__ttl{
  font-size: max(1.04vw , 15px);
  font-weight: 700;
  margin-bottom: 27px;
}

.privacypolicy-check {
  margin: 25px auto;
  width: 100%;
  text-align: center;
}

button {
  background-color: #3B61FF;
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: max(1.04vw , 15px);
  letter-spacing: 2px;
  margin: 0 auto;
  padding: 10px 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #7490ff;
}

.button {
  width: 210px;
  background-color: #3B61FF;
  border: none;
  border-radius: 50px !important;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: max(1.04vw , 15px);
  letter-spacing: 2px;
  margin: 30px auto 10px;
  padding: 10px 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #7490ff;
}

.back-button {
  border: none;
  margin: 10px auto;
  cursor: pointer;
  width: 100px;
}

.contact-confirm .privacypolicy-check {
  margin: 70px auto 0;
  pointer-events: none;
}

input[type=checkbox]{
  width: fit-content;
}
/*-----------------------
フッター
-----------------------*/
.footer {
  padding: 20px 0;
  background: #191919;
  width: 100%;
}

.copy {
  text-align: center;
  font-size:  max(0.833vw , 12px);
}




/* ---------------- SPここから ----------------*/

@media screen and (max-width: 1080px) {}


@media screen and (max-width:768px) {
  .inner {
    width: 89.333333%;
  }

  main {
    overflow: hidden;
  }

  .flex {
    display: block;
  }

  .pc {
    display: none;
  }

  .tab {
    display: none;
  }

  .sp {
    display: block;
  }

  h2.section-title {
    margin: 0 auto;
    display: table;
  }

  h3.section-copy {
    margin-top: 20px;
    font-size: 35px;
    /*margin-left: 20px;*/
    text-align: center;
  }

  .section {
    width: 100%;
    height: auto;
  }

  .section-copy--border {
    border: none;
  }


  /* ヘッダー */
  .header {
    display: block;
    height: 60px;
    padding-top: 17px;
  }

  .header-logo {
    width: 90px;
  }

  .header-sp {
    display: flex;
    justify-content: space-between;
  }

  .contact-btn {
    padding: 4px 20px;
    margin-left: unset;
    margin-right: 10px;
    font-size: 18px;
  }

  /* FV */


  .firstview {
    z-index: -1;
    background-image: url(../images/catch-back--sp.svg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -webkit-background-position: center;
    -webkit-background-repeat: no-repeat;
  }

  /*  初期状態 */
  .catch-back--top,
  .catch-back--bottom {
    display: none;
  }

  .fv-catch {
    width: 100%;
    top: 50%;
    left: -5px;
    transform: translate(0, -50%);
    transition: transform 1s ease-in-out;
  }


  /*アニメーションの適用 */
  .fv-catch-animate {
    transform: translate(0, 0);
  }

  .fv-catch-jp {
    font-size: clamp(18px, 5vw, 21px);
    letter-spacing: 5px;
    text-align: center;
    margin: 0 0 0 10px;
  }



  /* 動画リンク */
  .video-link.video-link-fixed {
    bottom: 20px;
    left: 10px;
  }

  .modaal-video .modaal-inner-wrapper {
    padding: 0;
  }

  .modaal-close:after,
  .modaal-close:before {
    background: #ccc;
  }

  .modaal-close:focus:after,
  .modaal-close:focus:before,
  .modaal-close:hover:after,
  .modaal-close:hover:before {
    background: #666;
  }

  .modaal-video-wrap {
    margin: auto 20px;
    position: relative;
  }

  /*背景動画 */
  .video {
    width: 100%;
    height: 70%;
    right: 0;
    top: 50%;
    border-radius: 0;
  }

  .video.video-animate {
    right: 0;
  }

  /* about */
  .about {
    margin: 0 auto;
    padding: 50px 0 0;
  }


  /* 仕事風景 */
  .scene {
    position: relative;
    height: auto;
    margin-top: 60px;
  }

  .scene-container {
    display: flex;
    gap: 10px;
    padding: 0;
    opacity: 0;
  }

  .scene-container.scene-animate {
    opacity: 1;
  }

  /* .scene-img:nth-child(2),
  .scene-img:nth-child(4) {
    top: -15px;
  } */

  .scene-img {
    width: 170px;
    height: 250px;
    object-fit: cover;
   /* opacity: 1;*/
  }

/*
  .scene-img:nth-child(2),
  .scene-img:nth-child(4) {
    transform: translateY(0px);
  }

  .scene-animate .scene-img {
    transform: translateY(0px);
    opacity: 1;
    transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  }

  .scene-animate .scene-img:nth-child(2),
  .scene-animate .scene-img:nth-child(4) {
    transform: translateY(-45px);
    transition: transform 1s ease-out, opacity 1s ease-out;
  }
*/
  /* MISSION */
  .mission {
    padding: 100px 0;
  }

  .mission-container {
    margin-top: 10px;
  }

  .mission-content {
    margin-top: 30px;
    text-align: center;
    min-width: 100%;
  }

  .mission-copy {
    margin-bottom: 25px;
  }

  .mission-image {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  /* INTERVIEW */
  .interview {
    padding: 60px 0 0;
  }

  .swiper-wrapper {
    display: block !important;
    margin: 0 auto;
    max-width: 90%;
  }

  .interview-image {
    width: 100%;
    margin-right: unset;
  }

  .interview-image img {
    height: 320px;
    margin: 0 auto;
    object-fit: cover;
  }

  .interview-content {
    width: 100%;
  }

  .interview-content {
    width: 100%;
    margin: 20px auto 0;
  }

  .swiper-wrapper .swiper-slide:not(:last-of-type){
    margin-bottom: 80px;
  }

  .interview-title {
    margin-bottom: 10px;
  }

  .interview-name {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  /* greeting */
  .greeting {
    padding: 50px 0px 80px;
  }

  .greeting-image{
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  .greeting-container {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 0;
  }

  .greeting-content {
    width: 100%;
    margin-top: 40px;
  }

  .greeting-name span {
    padding-right: 0;
    display: block;
  }


  /* company */
  .company {
    padding: 0 0 10px;
  }

  .company table {
    width: 100%;
  }

  .company-item {
    width: 30%;
  }

  .company-info {
    width: 70%;
    letter-spacing: normal;
  }

  /* store */
  .store {
    padding: 90px 0 0;
  }

  .store-image {
    width: 100%;
  }
  
  .store-content{
    width: 100%;
  }

  .store-container {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 0;
  }

  .store-copy {
    font-size: 23px;
    margin: 20px auto;
  }

  /* recruit */
  .recruit-wrapper {
    /* padding: 100px 0; */
    width: 100%;
    margin: 0 auto;
  }

  .recruit-image {
    position: unset;
    transform: unset;
    width: 100%;
  }

  .recruit-image img {
    width: 100%;
    height: 130px;
    margin-bottom: 5px;
    border-radius: 0;
  }

  .recruit-image img:first-child,
  .recruit-image img:last-child {
    border-radius: 0;
  }

  .recruit-image {
    position: unset;
    transform: unset;
    margin: 30px auto 0;
  }

  .recruit-text {
    margin: 30px auto 0;
    width: 90%;
  }

  /* contact */
  .contact-text {
    text-align: left;
    line-height: 1.8;
  }

  input,
  textarea {
    width: 100%;
  }

  input#file {
    margin-top: 10px;
  }

  .radio-group {
    width: 100%;
    margin-top: 15px;
  }

  input[type="radio" i] {
    margin: 4px 4px 20px 4px;
  }

  .contact-overflow {
    padding: 65px 0 170px;
  }

  .file-text {
    margin: -10px auto 0;
  }

  .copy {
    text-align: right;
    padding-right: 7px;
  }

  .privacypolicy {
    padding: 30px 20px;
  }

  .contact-confirm table th {
    padding: 20px 0px;
    width: 40%;
}
.about h3.section-copy,
.recruit h3.section-copy{
  padding-left: 32px;
}

}