@charset "UTF-8";

.top {
  background-color: var(--color-sand-beige);
}

/* mv
================================================== */
#mv {
  margin-top: 64px;
  margin-bottom: 24px;
  position: relative;
}
#mv .mv-slider {
  width: 100%;
}

#mv .swiper-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

#mv .swiper-slide {
  width: 513px;
  height: 469px;
  border-radius: 30px;
  overflow: hidden;
  flex-shrink: 0;
}

#mv .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mv .mv-copy {
  position: absolute;
  top: 40px;
  right: 24vw;
  flex-direction: row-reverse;
  z-index: 1;
  gap: 20px;
}
#mv .mv-copy-inr img {
  width: 52px;
}
#mv .mv-copy-inr2 img {
  margin-top: 100px;
}

#mv .mv-copy img {
  object-fit: contain;
  box-shadow: 5px 5px 5px 2px rgba(0, 0, 0, 0.2);
}

#mv .swiper-pagination {
  position: relative;
  text-align: right;
  padding-right: 20vw;
  padding-top: 20px;
  top: 0;
  margin: 0 auto;
}

#mv .swiper-pagination-bullet {
  background-color: var(--color-green-2);
  width: 8px;
  height: 8px;
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet:nth-child(n + 5) {
  display: none;
}

@media screen and (max-width: 1500px) {
  #mv .mv-copy {
    gap: 16px;
  }
}

@media screen and (max-width: 1200px) {
  #mv .mv-copy {
    right: 16vw;
  }
  #mv .swiper-pagination {
    padding-right: 30px;
  }
}

@media screen and (max-width: 960px) {
  #mv {
    margin-bottom: 0;
  }
  #mv .swiper-slide {
    width: 400px;
    height: 360px;
  }
  #mv .swiper-pagination {
    padding-top: 8px;
  }
  #mv .mv-copy-inr img {
    width: 42px;
  }
  #mv .mv-copy-inr2 img {
    margin-top: 64px;
  }
}

@media screen and (max-width: 768px) {
  #mv .swiper-slide {
    width: 300px;
    height: 260px;
  }
  #mv .mv-copy {
    gap: 8px;
    top: 24px;
  }
  #mv .mv-copy-inr img {
    width: 32px;
  }
  #mv .mv-copy-inr2 img {
    margin-top: 40px;
  }

  #mv .swiper-pagination {
    bottom: -24px;
    right: 20px;
  }
}

@media screen and (max-width: 599px) {
  #mv .mv-copy {
    bottom: 24px;
    right: 20vw;
  }
  #mv .mv-copy-inr img {
    width: 30px;
  }
}

/* nav 
================================================== */
#sub-nav .sub-nav-inr {
  flex-wrap: nowrap;
}

#sub-nav .sub-nav-title {
  width: auto;
  height: 150px;
}

#sub-nav .sub-nav-title-pc {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#sub-nav .sub-nav-title-sp {
  display: none;
}

#sub-nav .sub-nav-item {
  width: auto;
  height: calc(140px + 24px);
}

#sub-nav .sub-nav-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  #sub-nav .sub-nav-title {
    height: 120px;
  }
  #sub-nav .sub-nav-item {
    height: calc(120px + 16px);
  }
}

@media screen and (max-width: 960px) {
  #sub-nav .sub-nav-inr {
    flex-direction: column;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
  }
  #sub-nav .sub-nav-title {
    width: 100%;
    height: auto;
  }
  #sub-nav .sub-nav-title-pc {
    display: none;
  }
  #sub-nav .sub-nav-title-sp {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    max-width: 320px;
  }
  #sub-nav .sub-nav-item {
    height: calc(120px + 8px);
  }
}

@media screen and (max-width: 768px) {
  #sub-nav .sub-nav-title-sp {
    max-width: 280px;
  }
  #sub-nav .sub-nav-list {
    gap: 16px 0;
    max-width: 500px;
  }
  #sub-nav .sub-nav-item {
    width: calc(100% / 3);
    height: auto;
  }
}

@media screen and (max-width: 599px) {
  #sub-nav .sub-nav-title {
    height: 60px;
  }
  #sub-nav .sub-nav-list {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
}

/* 背景 */
#sub-nav .sub-nav-bg {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -56px;
  position: relative;
}

#sub-nav .sub-nav-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: -1;
}

/* インスタボックス */
#sub-nav .insta-box {
  position: absolute;
  left: 10vw;
  width: 202px;
  background-color: var(--color-white);
  bottom: -56px;
  z-index: 10;
  border-radius: 100px 100px 0 0;
  padding: 8px;
}

#sub-nav .insta-box-inr {
  background-color: var(--color-light-beige);
  border-radius: 100px 100px 0 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#sub-nav .insta-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}
#sub-nav .insta-hd img {
  width: 37px;
  height: 37px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

#sub-nav .insta-hd p {
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
#sub-nav .insta-hd .insta-text-check {
  width: 145px;
  height: 36px;
  object-fit: contain;
  margin-top: 8px;
  margin-bottom: 12px;
}

#sub-nav .insta-btn {
  background-color: var(--color-white);
  border: 1px solid var(--color-red);
  padding: 8px;
  width: 100%;
  gap: 4px;
  margin-bottom: 16px;
}

#sub-nav .insta-btn-text_pc {
  width: 113px;
  height: 27px;
  object-fit: contain;
}

#sub-nav .insta-btn-text_sp {
  display: none;
}

#sub-nav .insta-text {
  font-size: var(--fs-sm-mid);
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 800;
  text-align: justify;
}

@media screen and (max-width: 1500px) {
  #sub-nav .sub-nav-bg {
    margin-top: -40px;
  }
}

@media screen and (max-width: 1400px) {
  #sub-nav .sub-nav-bg {
    margin-top: -20px;
  }
  #sub-nav .insta-box {
    left: 8vw;
  }
}

@media screen and (max-width: 1300px) {
  #sub-nav .insta-box {
    width: 180px;
  }
  #sub-nav .insta-hd p {
    font-size: var(--fs-xs);
  }
  #sub-nav .insta-hd .insta-text-check {
    width: 120px;
    height: 30px;
    padding-top: 4px;
    margin-bottom: 8px;
  }
  #sub-nav .insta-btn {
    margin-bottom: 8px;
  }
  #sub-nav .insta-text {
    font-size: var(--fs-xs);
  }
}

@media screen and (max-width: 1200px) {
  #sub-nav .insta-box {
    left: 6vw;
  }
}

@media screen and (max-width: 1100px) {
  #sub-nav {
    overflow: hidden;
  }
  #sub-nav .insta-box {
    position: initial;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border-radius: 50px 50px 0 0;
  }
  #sub-nav .insta-box-inr {
    padding: 20px;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hd text"
      "btn btn";
    border-radius: 40px 40px 0 0;
  }
  #sub-nav .insta-hd {
    grid-area: hd;
    flex-direction: row;
    justify-content: flex-end;
  }

  #sub-nav .insta-hd img {
    margin: initial;
  }
  #sub-nav .insta-btn-text_pc {
    display: none;
  }

  #sub-nav .insta-btn-text_sp {
    display: block;
    width: 300px;
    height: auto;
    object-fit: contain;
  }

  #sub-nav .insta-hd .insta-text-check {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  #sub-nav .insta-hd p {
    display: flex;
    align-items: center;
    gap: 0;
  }
  #sub-nav .insta-btn {
    grid-area: btn;
    gap: 16px;
    width: 90%;
    margin: 0 auto;
  }

  #sub-nav .insta-text {
    grid-area: text;
    max-width: 300px;
  }
  #sub-nav .sub-nav-bg {
    margin-top: 0;
    padding-top: 32px;
  }
  #sub-nav .sub-nav-bg-img {
    margin-top: -32px;
    width: 130%;
    left: -20%;
  }
}

@media screen and (max-width: 960px) {
  #sub-nav .sub-nav-bg-img {
    margin-top: -20px;
  }
  #sub-nav .insta-box {
    width: calc(100% - 60px);
  }
}

@media screen and (max-width: 768px) {
  #sub-nav .insta-box-inr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  #sub-nav .insta-btn {
    width: 100%;
  }
  #sub-nav .insta-text {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  #sub-nav .sub-nav-bg {
    padding-top: 24px;
  }
  #sub-nav .sub-nav-bg-img {
    margin-top: 0;
  }
  #sub-nav .insta-box {
    border-radius: 100px 100px 0 0;
  }

  #sub-nav .insta-box-inr {
    padding: 8px 16px 16px 16px;
    border-radius: 90px 90px 0 0;
  }
  #sub-nav .insta-hd {
    flex-direction: column;
    gap: 8px;
  }
}

/* news
================================================== */
#t-news {
  background-color: var(--color-green);
  position: relative;
  z-index: 1;
  padding-top: 180px;
  padding-bottom: 160px;
}

#t-news .news-inr {
  background-color: var(--color-white);
  border-radius: 40px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 32px 64px 32px 0;
  margin-bottom: 48px;
}

#t-news .sec-ttl-en {
  max-width: 255px;
  width: 100%;
  height: auto;
  margin-top: -32px;
}

#t-news .sec-ttl-en img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-left: -32px;
}

#t-news .sec-ttl-jp2 {
  padding-left: 64px;
}

#t-news .news-list {
  flex: 1;
}

#t-news .news-list-item {
  font-size: var(--fs-base-mid);
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--color-brown-2);
  padding-top: 16px;
  padding-bottom: 16px;
}

#t-news .news-list-item:not(:last-child) {
  border-bottom: 1px solid var(--color-gray);
}

#t-news .news-list-item-date {
  padding-right: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-right: 1px solid var(--color-gray);
}
#t-news .news-list-item-ttl {
  padding-left: 32px;
  flex: auto;
}
#t-news .news-list-item-ttl p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

#t-news .news-list-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* リンク */
#t-news .news-link {
  text-align: right;
  padding-right: 8vw;
  position: relative;
  z-index: 10;
}

/* 背景画像 */
#t-news .news-bg1-pc,
#t-news .news-bg1-sp,
#t-news .news-bg2,
#t-news .news-bg3,
#t-news .news-bg4 {
  position: absolute;
  left: 0;
  height: auto;
  object-fit: contain;
  z-index: -1;
}
#t-news .news-bg1-pc {
  width: 100%;
  top: -100px;
}
#t-news .news-bg1-sp {
  display: none;
}
#t-news .news-bg2 {
  top: -20px;
  left: 55%;
  transform: translateX(-50%);
  width: 132px;
  height: 107px;
  object-fit: contain;
}
#t-news .news-bg3 {
  max-width: 1090px;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
#t-news .news-bg4 {
  width: 248px;
  height: 190px;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

@media screen and (max-width: 1900px) {
  #t-news {
    padding-top: 140px;
  }
}
@media screen and (max-width: 1600px) {
  #t-news {
    padding-top: 120px;
  }
}

@media screen and (max-width: 1500px) {
  #t-news .news-bg1-pc {
    top: -80px;
  }
}
@media screen and (max-width: 1400px) {
  #t-news {
    padding-top: 100px;
  }
}

@media screen and (max-width: 1300px) {
  #t-news .news-bg1-pc {
    top: -64px;
  }
}

@media screen and (max-width: 1200px) {
  #t-news {
    padding-bottom: 120px;
  }
  #t-news .sec-ttl-en {
    max-width: 200px;
  }
  #t-news .sec-ttl-en img {
    margin-left: -16px;
  }
  #t-news .sec-ttl-jp2 {
    padding-left: 40px;
  }
  #t-news .news-inr {
    padding: 24px 40px 24px 0;
    gap: 24px;
  }
  #t-news .news-list-item-date {
    padding-right: 24px;
  }
  #t-news .news-bg1-pc {
    top: -60px;
  }
  #t-news .news-bg3 {
    padding-left: 30px;
  }
  #t-news .news-bg4 {
    width: 200px;
    height: 160px;
  }
}

@media screen and (max-width: 1100px) {
  #t-news .news-bg1-pc {
    display: none;
  }
  #t-news .news-bg1-sp {
    display: block;
    top: -32px;
    width: 100%;
    z-index: -1;
  }
  #t-news .news-bg2 {
    width: 100px;
    height: 80px;
  }
}

@media screen and (max-width: 960px) {
  #t-news .news-inr {
    gap: 16px;
    margin-bottom: 32px;
  }
  #t-news .news-list-item {
    flex-direction: column;
    align-items: flex-start;
    -webkit-box-align: flex-start;
  }
  #t-news .news-list-item-date {
    padding-right: 0;
    padding-bottom: 0px;
    padding-top: 0;
    border-right: none;
  }
  #t-news .news-list-item-ttl {
    padding-left: 0;
    width: 100%;
    flex-wrap: nowrap;
    gap: 8px;
  }
  #t-news .news-bg4 {
    bottom: 64px;
  }
}

@media screen and (max-width: 768px) {
  #t-news .news-bg1-sp {
    top: -24px;
  }
  #t-news .news-bg2 {
    width: 80px;
    height: 64px;
    top: 16px;
  }

  #t-news .sec-ttl-en {
    max-width: 160px;
    margin-top: -8px;
  }
  #t-news .sec-ttl-en img {
    margin-left: -16px;
  }
  #t-news .sec-ttl-jp2 {
    padding-left: 32px;
  }

  #t-news .news-inr {
    padding: 16px 32px 16px 0;
    border-radius: 30px;
  }
  #t-news .news-list-item img {
    width: 16px;
    height: 16px;
  }
  #t-news .news-link {
    padding-right: 10vw;
  }
  #t-news .news-bg3 {
    padding-left: 15px;
  }
  #t-news .news-bg4 {
    bottom: 64px;
    width: 160px;
    height: 128px;
    left: 45%;
  }
}
@media screen and (max-width: 599px) {
  #t-news .news-inr {
    flex-direction: column;
    padding: 8px 24px;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
  }
  #t-news .sec-ttl {
    text-align: center;
    margin-top: -24px;
  }
  #t-news .sec-ttl-en {
    max-width: 100px;
  }
  #t-news .sec-ttl-en img {
    margin-left: 0;
  }
  #t-news .sec-ttl-jp2 {
    padding-left: 0;
  }
  #t-news .news-list {
    width: 100%;
  }
  #t-news .news-bg4 {
    width: 128px;
    height: 102px;
    left: 40%;
    bottom: 100px;
  }
}

@media screen and (max-width: 480px) {
  #t-news {
    padding-bottom: 96px;
  }
  #t-news .news-bg4 {
    width: 110px;
    height: auto;
    bottom: 96px;
    left: 30%;
  }
}

/* 共通タイトル <about・recruit>
================================================== */
.t-cm-ttl-icon {
  width: 98px;
  height: 98px;
  object-fit: contain;
}

.t-cm-ttl-en {
  height: 98px;
  object-fit: contain;
}

.t-cm-ttl-ja {
  gap: 24px;
  padding-bottom: 24px;
}

.t-cm-ttl-ja h2 {
  font-family: var(--font-mplus-rounded);
  font-size: var(--fs-lg);
  letter-spacing: 0.2em;
  font-weight: 800;
  line-height: 1.3;
}

@media screen and (max-width: 1100px) {
  .t-cm-ttl-en {
    height: 72px;
  }
}

@media screen and (max-width: 960px) {
  .t-cm-ttl-icon {
    width: 88px;
    height: 88px;
  }
  .t-cm-ttl-ja {
    padding-bottom: 16px;
  }
  .t-cm-ttl-en {
    height: 72px;
  }
}

@media screen and (max-width: 768px) {
  .t-cm-ttl-icon {
    width: 80px;
    height: 80px;
  }

  .t-cm-ttl-ja {
    padding-bottom: 8px;
  }

  .t-cm-ttl-en {
    height: 64px;
  }
}

@media screen and (max-width: 650px) {
  .t-cm-ttl-ja h2 {
    font-size: var(--fs-md);
  }
  .t-cm-ttl-icon {
    width: 64px;
    height: 64px;
  }
  .t-cm-ttl-en {
    height: 50px;
  }
}

/* about
================================================== */
#t-about .about-ttl {
  position: relative;
}

#t-about .about-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: calc(100% + 120px);
  transform: translateX(-50%);
  background-color: var(--color-white);
  z-index: -1;
}

#t-about .about-ttl-ja {
  gap: 24px;
}

#t-about .about-ttl-logo {
  display: block;
  width: 345px;
  height: auto;
  object-fit: contain;
}

#t-about .about-copy {
  position: absolute;
  width: 603px;
  height: 582px;
  object-fit: contain;
  top: 32px;
  right: -15px;
  z-index: -1;
}

#t-about .about-copy img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 写真 */
#t-about .about-img {
  position: relative;
  z-index: 3;
  flex-wrap: nowrap;
  margin-top: -24px;
  gap: 10px;
}

#t-about .about-img li {
  width: calc((100% - 10px) / 3);
}

#t-about .about-img li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 10px 10px 10px 2px rgba(0, 0, 0, 0.2);
}
/* テキスト */
#t-about .about-text {
  flex-wrap: nowrap;
  gap: 92px;
}

#t-about .about-text p {
  letter-spacing: 0.05em;
  text-align: justify;
  flex: 1 auto;
  font-weight: 500;
}

#t-about .about-link {
  flex-shrink: 0;
  width: auto;
}

@media screen and (max-width: 1100px) {
  #t-about .about-ttl-en {
    margin-bottom: 64px;
  }

  #t-about .about-ttl-logo {
    width: 280px;
  }
  #t-about .about-copy {
    width: 540px;
    height: auto;
    top: initial;
    bottom: 0;
  }
}

@media screen and (max-width: 960px) {
  #t-about .about-ttl::before {
    height: calc(100% + 80px);
  }
  #t-about .about-ttl-logo {
    width: 240px;
  }
  #t-about .about-copy {
    width: 480px;
  }
}

@media screen and (max-width: 768px) {
  #t-about .about-ttl::before {
    height: calc(100% + 32px);
  }

  #t-about .about-ttl-en {
    margin-bottom: 40px;
  }
  #t-about .about-ttl-logo {
    width: 200px;
  }
  #t-about .about-copy {
    width: 380px;
  }

  #t-about .about-img {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 650px) {
  #t-about .about-ttl-logo {
    width: 160px;
  }
  #t-about .about-copy {
    width: 340px;
  }
}

@media screen and (max-width: 599px) {
  #t-about .about-ttl::before {
    height: calc(100% + 16px);
  }
  #t-about .about-text {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  #t-about .about-ttl-logo {
    width: 120px;
  }
  #t-about .about-copy {
    width: 280px;
  }
  #t-about .about-img {
    gap: 8px;
    margin-top: -12px;
  }
  #t-about .about-img li {
    width: calc((100% - 8px) / 3);
  }
}

@media screen and (max-width: 480px) {
  #t-about .about-copy {
    width: 232px;
  }
}

/* 下層画像 
================================================== */

#t-btm-img {
  background-color: var(--color-green);
  padding-top: 40px;
}

#t-btm-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  #t-btm-img {
    padding-top: 20px;
  }
  #t-btm-img img {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}

/* 採用情報
================================================== */
#t-recruit {
  background-color: var(--color-white);
  background-image: url(../../img/common/img_check_bg.webp);
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
}

#t-recruit .recruittl-inr {
  max-width: 850px;
  margin: 0 auto;
}

#t-recruit .recruit-ttl {
  position: relative;
}

#t-recruit .recruit-ttl p {
  font-size: var(--fs-xlg);
  font-weight: 800;
}

#t-recruit .recruit-ttl-img {
  position: absolute;
  width: 216px;
  height: auto;
  object-fit: contain;
  bottom: 0;
  right: 0;
}

#t-recruit .recruit-ttl-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#t-recruit .recruit-img {
  flex-wrap: nowrap;
  gap: 10px;
}

#t-recruit .recruit-img li {
  max-width: 200px;
  width: 100%;
  max-height: 200px;
  aspect-ratio: 200/200;
}

#t-recruit .recruit-img li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#t-recruit .recruit-link {
  text-align: center;
}
@media screen and (max-width: 960px) {
  #t-recruit .recruittl-inr {
    padding-left: 30px;
    padding-right: 30px;
  }
  #t-recruit .recruit-img {
    gap: 4px;
  }
}
@media screen and (max-width: 768px) {
  #t-recruit .recruit-ttl-img {
    bottom: initial;
    top: 8px;
    width: 180px;
    right: 16px;
  }
  #t-recruit .inr {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 650px) {
  #t-recruit .recruit-ttl-img {
    width: 140px;
  }
}

@media screen and (max-width: 599px) {
  #t-recruit .recruit-ttl-img {
    width: 120px;
    right: 0;
  }
  #t-recruit .recruit-ttl p {
    font-size: var(--fs-mid);
  }
}
