@charset "UTF-8";
@font-face {
  font-family: "Switzer";
  src: url("../fonts/Switzer-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Switzer";
  src: url("../fonts/Switzer-VariableItalic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
/* main colors */
/*トップページのスタイル*/
.main_visual {
  width: 100%;
  height: 600px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .main_visual {
    height: 100vh;
  }
}
.main_visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/fv_filter.png");
  /* フォールバック（未対応ブラウザ用） */
  background-image: -webkit-image-set(url("../img/top/fv_filter.png") 1x, url("../img/common/footer_filter@2x.png") 2x);
  background-image: image-set(url("../img/top/fv_filter.png") 1x, url("../img/top/fv_filter@2x.png") 2x);
  background-repeat: repeat;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}
.main_visual picture {
  width: 100%;
  height: 100%;
}
.main_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_visual_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  max-width: 188px;
}
@media (min-width: 600px) {
  .main_visual_logo {
    max-width: none;
    width: max(25.2857142857vw, 300px);
  }
}
.main_visual_mainText {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.4;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  white-space: nowrap;
}
@media screen and (min-width: 980px) {
  .main_visual_mainText {
    font-size: 40px;
    line-height: 1;
  }
}
@media screen and (min-width: 980px) {
  .main_visual_mainText_br {
    display: none;
  }
}
.main_visual_text {
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 20px;
  font-feature-settings: "palt";
  letter-spacing: -0.075em;
}
@media (min-width: 768px) {
  .main_visual_text {
    bottom: 40px;
    left: 40px;
    padding: 0;
    max-width: 522px;
    font-size: 14px;
    letter-spacing: 0;
  }
}
.main_visual .scroll_container {
  display: none;
}
@media (min-width: 768px) {
  .main_visual .scroll_container {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
  }
}
.main_visual .scroll_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scroll-move 2s infinite;
}
.main_visual .scroll_text {
  color: #fff;
  font-family: "Switzer";
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}
@keyframes scroll-move {
  0% {
    transform: translateY(-10px);
    /* 開始位置（少し上から） */
    opacity: 0;
    /* 最初は透明 */
  }
  50% {
    opacity: 1;
    /* 中間でくっきり表示 */
  }
  100% {
    transform: translateY(10px);
    /* 終了位置（下に移動） */
    opacity: 0;
    /* 最後は透明 */
  }
}

.main_visual_swiper {
  position: relative;
  z-index: 1;
  height: 600px;
}
@media (min-width: 768px) {
  .main_visual_swiper {
    height: 100vh;
  }
}
.main_visual_swiper > .swiper-pagination.swiper-pagination-bullets {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end;
  gap: 8px !important;
  left: auto !important;
  right: 20px !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  width: auto !important;
  z-index: 10;
}
@media (min-width: 768px) {
  .main_visual_swiper > .swiper-pagination.swiper-pagination-bullets {
    right: 40px !important;
  }
}
.main_visual_swiper .swiper-pagination-bullet[class] {
  width: 8px !important;
  height: 8px !important;
  background-color: #fff !important;
  opacity: 1 !important;
  margin: 0 !important;
  border-radius: 4px !important;
  display: block !important;
  transition: all 0.4s ease !important;
}
.main_visual_swiper .swiper-pagination-bullet-active[class] {
  width: 24px !important;
  background-color: hsl(198, 59%, 51%) !important;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes zoomUpSP {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.35);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUpSP 7s linear 0s normal both;
}
@media (min-width: 768px) {
  .swiper-slide-active .swiper-img,
  .swiper-slide-duplicate-active .swiper-img,
  .swiper-slide-prev .swiper-img {
    animation: zoomUp 7s linear 0s normal both;
  }
}

.swiper-slide img {
  height: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .swiper-slide img {
    height: 100vh;
  }
}

.container-h-base {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .container-h-base {
    padding: 120px 0;
  }
}

.top_section_title {
  font-family: "Switzer";
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
}
@media (min-width: 768px) {
  .top_section_title {
    font-size: 48px;
  }
}
.top_section_title_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .top_section_title_container {
    gap: 16px;
  }
}
.top_section_title_container.top_section_title_container_recruit {
  align-items: center;
}
.top_section_title_jp {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 768px) {
  .top_section_title_jp {
    font-size: 16px;
  }
}
.top_section_title_ofTop {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top_section_title_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 11px;
}
@media (min-width: 768px) {
  .top_section_title_icon {
    max-width: 14px;
  }
}

.about_top_section {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .about_top_section {
    padding-top: 120px;
  }
}
.about_main_wrap {
  padding: 249px 0 402px;
}
@media (min-width: 768px) {
  .about_main_wrap {
    margin: 0 auto;
    max-width: 1400px;
    padding: 199px 0 513px;
  }
}
.about_top_img {
  position: absolute;
  z-index: 1;
}
.about_top_img.about_top_img_n1 {
  top: -185px;
  left: 0;
  width: min(51.2820512821vw, 260px);
}
@media (min-width: 768px) {
  .about_top_img.about_top_img_n1 {
    top: -119px;
    left: 120px;
    width: clamp(200px, 28.5714285714vw, 400px);
  }
}
.about_top_img.about_top_img_n2 {
  top: -264px;
  right: 0;
  width: min(31.7948717949vw, 200px);
}
@media (min-width: 768px) {
  .about_top_img.about_top_img_n2 {
    top: -280px;
    right: 220px;
    width: clamp(124px, 17.6428571429vw, 247px);
  }
}
.about_top_img.about_top_img_n3 {
  bottom: -173px;
  left: 0;
  width: min(51.2820512821vw, 260px);
  z-index: 2;
}
@media screen and (min-width: 450px) {
  .about_top_img.about_top_img_n3 {
    bottom: -196px;
  }
}
@media (min-width: 768px) {
  .about_top_img.about_top_img_n3 {
    bottom: -236px;
    left: 0;
    width: clamp(200px, 32.1428571429vw, 450px);
  }
}
.about_top_img.about_top_img_n4 {
  top: -104px;
  right: 0;
  width: min(20.5128205128vw, 120px);
}
@media (min-width: 768px) {
  .about_top_img.about_top_img_n4 {
    top: auto;
    bottom: 24px;
    right: 0;
    width: clamp(80px, 21.4285714286vw, 300px);
  }
}
.about_top_img.about_top_img_n5 {
  bottom: -322px;
  right: 0;
  width: min(71.7948717949vw, 340px);
}
@media (min-width: 768px) {
  .about_top_img.about_top_img_n5 {
    bottom: -393px;
    right: 160px;
    width: clamp(280px, 37.8571428571vw, 530px);
  }
}
.about_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .about_main {
    gap: 40px;
  }
}
.about_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .about_text_container {
    gap: 40px;
  }
}
.about_text_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (min-width: 768px) {
  .about_text_wrap {
    gap: 15px;
  }
}
.about_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 390px) {
  .about_text {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .about_text {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .about_text_br {
    display: none;
  }
}
.about_big_text {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
  flex-shrink: 0;
}
@media screen and (min-width: 450px) {
  .about_big_text {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .about_big_text {
    font-size: clamp(28px, 2.8571428571vw, 40px);
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .about_big_text_br {
    display: none;
  }
}
.about_common_btn {
  position: relative;
  z-index: 3;
}

.business_top_section {
  background-color: hsl(0, 0%, 97%);
}

.business_top_content {
  background: #fff;
  padding: 40px;
}
@media (min-width: 920px) {
  .business_top_content {
    padding: clamp(28px, 1.4285714286vw, 20px);
  }
}
.business_top_content_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 64px;
}
@media (min-width: 920px) {
  .business_top_content_container {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: clamp(16px, 2.8571428571vw, 40px);
    margin-top: 80px;
  }
}
.business_top_content_top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .business_top_content_top {
    gap: clamp(24px, 2.8571428571vw, 40px);
  }
}
.business_top_content_img img {
  width: 100%;
}
.business_top_content_title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid hsl(0, 0%, 83%);
}
@media (min-width: 920px) {
  .business_top_content_title {
    font-size: clamp(16px, 1.4285714286vw, 20px);
  }
}
.business_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 920px) {
  .business_link {
    gap: 16px;
  }
}
.business_link:hover .business_link_arrow {
  background-color: hsl(46, 100%, 49%);
}
.business_link_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 920px) {
  .business_link_container {
    margin-top: clamp(24px, 2.8571428571vw, 40px);
  }
}
.business_link_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
}
@media (min-width: 920px) {
  .business_link_text {
    font-size: clamp(14px, 1vw, 16px);
  }
}
.business_link_arrow {
  padding: 9px 7px 9px 8px;
  background: hsl(198, 59%, 51%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease-out;
}

.works_top_section {
  overflow: hidden;
}

.works_swiper_container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
}
@media (min-width: 768px) {
  .works_swiper_container {
    flex-direction: row;
    align-items: stretch;
    margin-top: 80px;
  }
}

@media (min-width: 768px) {
  .works_swiper {
    width: 100%;
    overflow: visible !important;
    clip-path: inset(0 -100% 0 0);
  }
}
.works_swiper .swiper-wrapper .swiper-slide {
  width: fit-content !important;
}
.works_swiper .swiper-wrapper .swiper-slide .works_link {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .works_swiper .swiper-wrapper .swiper-slide .works_link {
    max-width: 360px;
  }
}
.works_swiper .swiper-wrapper .swiper-slide .works_link:hover .works_thumbnail img {
  transform: scale(1.05);
}
.works_swiper .swiper-wrapper .swiper-slide .works_link .works_thumbnail {
  cursor: pointer;
  max-width: 360px;
  width: 100%;
  overflow: hidden;
}
.works_swiper .swiper-wrapper .swiper-slide .works_link .works_thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 360/240;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.swiper-navigation-icon {
  display: none !important;
}

.works-swiper-button-prev,
.works-swiper-button-next {
  position: static;
  margin: 0;
  flex: 1;
  background: hsl(198, 59%, 51%);
  border-radius: 5px;
  padding: 12px;
  max-width: 40px;
  max-height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}
@media (min-width: 768px) {
  .works-swiper-button-prev,
  .works-swiper-button-next {
    padding: 16px;
    max-width: none;
    max-height: none;
  }
}
.works-swiper-button-prev:hover,
.works-swiper-button-next:hover {
  background-color: hsl(198, 55%, 40%);
}
.works-swiper-button-prev.swiper-button-disabled,
.works-swiper-button-next.swiper-button-disabled {
  background: #aaa;
  cursor: not-allowed;
  pointer-events: auto;
}

.works_swiper_btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .works_swiper_btn_wrapper {
    max-width: 64px;
    flex-direction: column;
    align-self: stretch;
    min-height: auto;
    gap: 2px;
  }
}
.works_swiper_btn_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.works_swiper_btn_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.works_swiper_btn_arrow img {
  vertical-align: middle;
}
.works_swiper_btn_text {
  display: none;
}
@media (min-width: 768px) {
  .works_swiper_btn_text {
    display: block;
    color: #fff;
    font-family: "Switzer";
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    text-align: center;
  }
}

.license_top_section {
  background-color: hsl(0, 0%, 97%);
}
.license_main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 64px;
}
@media (min-width: 768px) {
  .license_main {
    flex-direction: row;
    gap: 40px;
    margin-top: 80px;
  }
}
.license_img {
  width: 100%;
}
@media (min-width: 768px) {
  .license_img {
    max-width: 600px;
  }
}
.license_img img {
  width: 100%;
}
.license_text_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .license_text_wrap {
    align-items: flex-end;
  }
}

.license_top_section {
  background-color: hsl(0, 0%, 97%);
}

.news_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .news_main {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
  }
}
.news_main_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.news_main_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
@media (min-width: 768px) {
  .news_main_left {
    align-items: flex-start;
    gap: 40px;
  }
}
.news_main_right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 829px;
}
@media (min-width: 768px) {
  .news_main_right {
    width: 71.4%;
  }
}
@media (min-width: 768px) {
  .news_sp_btn {
    display: none;
  }
}
.news_pc_btn {
  display: none;
}
@media (min-width: 768px) {
  .news_pc_btn {
    display: flex;
  }
}
.news_list {
  display: flex;
  flex-direction: column;
}
.news_list_item:nth-child(n+2) .news_article_link {
  padding-top: 24px;
}
.news_article_link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid hsl(0, 0%, 83%);
}
.news_article_link:nth-child(n+2) {
  padding-top: 24px;
}
.news_article_link:hover .news_article_thumbnail img {
  transform: scale(1.05) translateZ(0);
}
.news_article_link:hover .news_article_title span {
  background-size: 100% 1px;
}
@media (min-width: 768px) {
  .news_article_link {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }
}
.news_article_thumbnail {
  overflow: hidden;
  width: 38.4615384615vw;
  aspect-ratio: 150/100;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media (min-width: 768px) {
  .news_article_thumbnail {
    flex: 0 0 200px;
    max-width: 200px;
    aspect-ratio: 200/133;
  }
}
.news_article_thumbnail img {
  width: 100%;
  height: auto;
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  transform: translateZ(0);
}
.news_article_text_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news_article_text_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .news_article_text_top {
    justify-content: left;
    gap: 16px;
  }
}

.recruit_top_section {
  padding: 0 0 316px;
}
@media (min-width: 768px) {
  .recruit_top_section {
    padding: 0 0 293px;
  }
}

.recruit_container_base {
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}
.recruit_main {
  border-radius: 10px;
  background: hsl(40, 100%, 81%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  overflow: hidden;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .recruit_main {
    border-radius: 20px;
  }
}
@media (min-width: 920px) {
  .recruit_main {
    flex-direction: row;
    gap: 20px;
    padding: 0 24px;
    max-height: 777px;
    height: 100%;
  }
}
.recruit_main_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 920px) {
  .recruit_main_center {
    gap: 64px;
    padding: 120px 0;
  }
}
.recruit_main_text {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 920px) {
  .recruit_main_text {
    font-size: clamp(28px, 2.8571428571vw, 40px);
  }
}
.recruit_main_text_container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.recruit_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  text-align: center;
  margin-right: -0.5em;
}
@media (min-width: 920px) {
  .recruit_text {
    font-size: 15px;
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .recruit_text_br {
    display: none;
  }
}
@media (min-width: 920px) {
  .recruit_text_br {
    display: block;
  }
}
@media screen and (min-width: 1220px) {
  .recruit_text_br {
    display: none;
  }
}
.recruit_text_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 920px) {
  .recruit_text_wrap {
    gap: 40px;
  }
}

.vertical_swiper {
  display: none;
}
@media (min-width: 920px) {
  .vertical_swiper {
    display: block;
    width: 25.3%;
    max-width: 345px;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    margin: 0;
  }
}
.vertical_swiper .swiper-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vertical_swiper .swiper-slide {
  width: 100% !important;
  height: auto !important;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.vertical_swiper .swiper-slide img {
  display: block;
  height: auto !important;
  object-fit: cover;
}
.vertical_swiper .swiper-slide:nth-child(odd) img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 345/230;
  width: 100% !important;
  max-width: 345px !important;
}
.vertical_swiper .swiper-slide:nth-child(even) img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 66.6% !important;
  max-width: 230px !important;
}

@media (min-width: 920px) {
  .horizontal_swiper {
    display: none;
  }
}
.horizontal_swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.horizontal_swiper .swiper-slide {
  width: auto !important;
  height: 115px !important;
}
.horizontal_swiper .swiper-slide img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.horizontal_swiper .swiper-slide[width="435"] {
  aspect-ratio: 172/115;
}
.horizontal_swiper .swiper-slide[width="900"] {
  aspect-ratio: 1/1;
}

.vertical_swiper .swiper-wrapper,
.horizontal_swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}/*# sourceMappingURL=home.css.map */