@charset "UTF-8";
/* コンテンツ最大幅 */
/* color */
/* ============================================ */
/* font */
/* ============================================ */
/* top */
/* ============================================ */
header {
  background: rgba(255, 255, 255, 0.5);
}
header #ham-menu nav > ul > li > a span {
  color: #000;
}
header.is-scrolled #ham-menu nav > ul > li > a span {
  color: #808080;
}

hgroup {
  display: flex;
  flex-direction: column;
}
hgroup p[lang=en] {
  font-family: "EB Garamond", serif;
  font-size: 7rem;
  font-weight: 500;
  line-height: 1.25;
}
@media all and (max-width: 896px) {
  hgroup p[lang=en] {
    font-size: 3.6rem;
  }
}
hgroup h2 {
  position: relative;
  margin-top: 10px;
  padding-left: 45px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  hgroup h2 {
    margin-top: 2px;
    padding-left: 40px;
    font-size: 1.4rem;
  }
}
hgroup h2::before, hgroup h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4179af;
  translate: 0 -50%;
}
hgroup h2::after {
  left: 16px;
  background: #ac9b45;
}

.mv {
  position: relative;
  max-height: 100dvh;
}
@media all and (max-width: 896px) {
  .mv {
    max-height: 470px;
    overflow: hidden;
  }
}
.mv-swiper {
  max-height: 100dvh;
  position: relative;
  overflow: hidden;
}
.mv-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  scale: 1.1;
  transition: 5s cubic-bezier(0.45, 0, 0.55, 1);
}
.mv-swiper .swiper-slide-active img {
  scale: 1;
}
.mv .shine-effect {
  position: absolute;
  top: 0;
  left: 125%;
  z-index: 2;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-30deg);
  pointer-events: none;
  opacity: 0;
}
.mv .shine-effect.active {
  animation: shine 0.8s ease-in forwards;
}
@keyframes shine {
  0% {
    left: 125%;
    opacity: 1;
  }
  100% {
    left: -75%;
    opacity: 0;
  }
}
.mv h1 {
  position: absolute;
  bottom: 1vw;
  left: 0;
  z-index: 2;
  width: 100%;
  color: #fff;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 7.4vw;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
@media all and (max-width: 896px) {
  .mv h1 {
    bottom: 46px;
    left: 7px;
    text-align: left;
    font-size: 6.4rem;
    line-height: 0.85;
  }
}

.news {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding-block: 50px 20px;
  border-radius: 40px 40px 0 0;
  background: #ecf2f7;
}
@media all and (max-width: 896px) {
  .news {
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    padding-block: 20px 0;
  }
}
.news-inner {
  max-width: 900px;
  width: calc(100% - 30px);
  margin-inline: auto;
}
.news-inner hgroup {
  flex-direction: row;
  align-items: baseline;
  gap: 30px;
}
@media all and (max-width: 896px) {
  .news-inner hgroup {
    gap: 20px;
  }
}
.news-inner hgroup p[lang=en] {
  font-size: 5rem;
}
@media all and (max-width: 896px) {
  .news-inner hgroup p[lang=en] {
    font-size: 2.8rem;
  }
}
.news-inner hgroup h2 {
  padding-left: 0;
  font-size: 2rem;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .news-inner hgroup h2 {
    font-size: 1.6rem;
  }
}
.news-inner hgroup h2::before, .news-inner hgroup h2::after {
  content: none;
}
.news-inner ul {
  margin-top: 20px;
  padding: 20px 60px;
  border-radius: 10px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .news-inner ul {
    margin-top: 16px;
    padding: 0 20px;
  }
}
.news-inner ul li:not(:last-child) {
  border-bottom: 1px solid #363628;
}
.news-inner ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 24px;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .news-inner ul li a {
    flex-wrap: wrap;
    gap: 5px 20px;
    padding-block: 12px;
  }
}
.news-inner ul li a time {
  flex: none;
  font-family: "EB Garamond", serif;
}
.news-inner ul li a span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  width: 115px;
  height: 35px;
  border: 1px solid #a89981;
  color: #a89981;
  font-size: 1.4rem;
  transition: 0.6s;
}
@media all and (max-width: 896px) {
  .news-inner ul li a span {
    width: 100px;
    height: 20px;
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .news-inner ul li a:hover {
    color: #4179af;
    opacity: 1;
  }
  .news-inner ul li a:hover span {
    border-color: #4179af;
    background: #4179af;
    color: #fff;
  }
}
.news-inner .more {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
@media all and (max-width: 896px) {
  .news-inner .more {
    margin-top: 10px;
  }
}
.news-inner .more a {
  position: relative;
  padding-right: 45px;
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .news-inner .more a {
    font-size: 1.6rem;
  }
}
.news-inner .more a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #363628;
  transition: 0.3s;
}
.news-inner .more a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 9px;
  background: url(../images/common/ico_ar.svg) no-repeat center/cover;
  translate: 0 -50%;
  transition: 0.3s;
  filter: brightness(0);
}
@media (hover: hover) {
  .news-inner .more a:hover {
    color: #4179af;
    opacity: 1;
  }
  .news-inner .more a:hover::before {
    background: #4179af;
  }
  .news-inner .more a:hover::after {
    filter: none;
  }
}

.company {
  padding-block: 200px 100px;
  background: #fff url(../images/top/bg_company.webp) no-repeat center 0/100% auto;
}
@media all and (max-width: 896px) {
  .company {
    padding-block: 50px 30px;
  }
  .company .inner {
    display: flex;
    flex-direction: column;
  }
  .company .inner hgroup {
    order: -1;
    margin-bottom: 20px;
  }
}
.company h3 {
  margin-block: 40px;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .company h3 {
    margin-block: 16px 10px;
    font-size: 1.6rem;
    letter-spacing: normal;
  }
}
.company-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: calc((100vw - 1300px) / 2 + 100%);
}
@media (max-width: 1300px) {
  .company-inner {
    width: 100%;
    gap: 30px;
  }
}
@media all and (max-width: 896px) {
  .company-inner {
    display: contents;
  }
}
.company-inner .exp {
  flex: none;
  width: 45vw;
  font-weight: 700;
  line-height: 2.4;
}
@media all and (max-width: 896px) {
  .company-inner .exp {
    width: 100%;
    line-height: 2;
  }
}
@media all and (max-width: 896px) {
  .company-inner .com-swiper {
    order: -1;
    width: 100%;
  }
}
.company-inner .com-swiper img {
  width: 100%;
  border-radius: 10px;
}
@media all and (max-width: 896px) {
  .company-inner .com-swiper img {
    aspect-ratio: 16/9;
    object-fit: cover;
  }
}
.company nav {
  margin-top: 80px;
}
@media all and (max-width: 896px) {
  .company nav {
    margin-top: 30px;
  }
}
.company nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4vw;
}
@media all and (max-width: 896px) {
  .company nav ul {
    gap: 24px 16px;
  }
}
.company nav ul li {
  width: calc((100% - 8vw) / 3);
}
@media all and (max-width: 896px) {
  .company nav ul li {
    width: calc((100% - 16px) / 2);
  }
}
.company nav ul li:nth-child(-n+2) {
  width: calc((100% - 4vw) / 2);
}
@media all and (max-width: 896px) {
  .company nav ul li:nth-child(-n+2) {
    width: calc((100% - 16px) / 2);
  }
}
@media all and (max-width: 896px) {
  .company nav ul li:last-child a {
    justify-content: center;
    padding: 0 15px;
    border-bottom: 0;
    border-radius: 10px;
    background: linear-gradient(75deg, rgba(247, 245, 236, 0) 0%, rgb(216, 209, 169) 100%);
  }
}
.company nav ul li:last-child a span {
  color: #363628;
  font-size: 1.2rem;
}
.company nav ul li:last-child a span em {
  font-style: normal;
  font-size: 1.5rem;
}
.company nav ul li a {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #363628;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .company nav ul li a {
    padding-bottom: 12px;
  }
}
.company nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid #363628;
  border-radius: 50%;
  background: url(../images/common/ico_ar.svg) no-repeat center/19px auto;
  filter: brightness(0);
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .company nav ul li a::after {
    bottom: 18px;
    width: 24px;
    height: 24px;
    background-size: 12px auto;
  }
}
.company nav ul li a figure {
  margin-bottom: 20px;
}
@media all and (max-width: 896px) {
  .company nav ul li a figure {
    margin-bottom: 10px;
  }
}
.company nav ul li a figure img {
  border-radius: 8px;
}
.company nav ul li a span {
  margin-bottom: 5px;
  color: #a89981;
  font-family: "EB Garamond", serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .company nav ul li a span {
    margin-bottom: 0;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: normal;
  }
}
@media (hover: hover) {
  .company nav ul li a:hover {
    color: #4179af;
    opacity: 1;
    border-color: #4179af;
  }
  .company nav ul li a:hover::after {
    border-color: #4179af;
    filter: none;
  }
  .company nav ul li a:hover span {
    color: #4179af;
  }
}

.business {
  padding-block: 80px;
  border-radius: 40px;
  background: #ecf2f7;
}
@media all and (max-width: 896px) {
  .business {
    padding-block: 20px 30px;
    border-radius: 20px;
  }
}
.business .exp {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media all and (max-width: 896px) {
  .business .exp {
    flex-direction: column;
    gap: 10px;
  }
}
.business .exp-inner {
  flex: none;
  font-weight: 700;
  line-height: 2.4;
}
@media all and (max-width: 896px) {
  .business .exp-inner {
    line-height: 2;
  }
}
.business .exp-inner h3 {
  margin-block: 40px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  .business .exp-inner h3 {
    margin-block: 10px;
    font-size: 1.6rem;
    letter-spacing: normal;
  }
}
.business .exp figure {
  max-width: 600px;
  margin-top: -60px;
  text-align: center;
}
@media all and (max-width: 896px) {
  .business .exp figure {
    order: -1;
    margin-top: 20px;
  }
}
.business .exp figure img {
  width: 70%;
}
@media all and (max-width: 896px) {
  .business .exp figure img {
    width: 300px;
  }
}

.brand {
  padding-block: 80px;
}
@media all and (max-width: 896px) {
  .brand {
    padding-block: 30px;
  }
}
.brand .slide {
  width: 100%;
  margin-top: 60px;
  padding-bottom: 5px;
  overflow: hidden;
  white-space: nowrap;
}
@media all and (max-width: 896px) {
  .brand .slide {
    margin-top: 20px;
  }
}
.brand .slide-track {
  display: flex;
  width: 240%;
  animation: scroll 50s linear infinite;
}
@media all and (max-width: 896px) {
  .brand .slide-track {
    width: 500%;
    animation-duration: 24s;
  }
}
.brand .slide-track li {
  width: calc((100% - 90px) / 4);
  margin-right: 30px;
  font-size: 1.3rem;
  white-space: normal;
}
@media all and (max-width: 896px) {
  .brand .slide-track li {
    margin-right: 20px;
    font-size: 1.2rem;
  }
}
.brand .slide-track li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.brand .slide-track li a figure img {
  border-radius: 10px;
}
@media all and (max-width: 896px) {
  .brand .slide-track li a figure img {
    aspect-ratio: 16/9;
    object-fit: cover;
  }
}
.brand .slide-track li a .name {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 30px 16px;
}
@media all and (max-width: 896px) {
  .brand .slide-track li a .name {
    margin-block: 16px 8px;
  }
}
.brand .slide-track li a .name img {
  width: auto;
  height: 30px;
  margin-bottom: 5px;
}
@media all and (max-width: 896px) {
  .brand .slide-track li a .name img {
    height: 25px;
  }
}
.brand .slide-track li a .name img.size {
  scale: 0.7;
}
.brand .slide-track li a.sns {
  width: 50px;
  height: 50px;
  margin: 20px auto 0;
  padding: 10px;
  border: 1px solid #363628;
  border-radius: 50%;
}
@media all and (max-width: 896px) {
  .brand .slide-track li a.sns {
    width: 40px;
    height: 40px;
    margin-top: 8px;
    padding: 8px;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.shop {
  border-radius: 40px;
  background: #f7f4eb;
}
@media all and (max-width: 896px) {
  .shop {
    border-radius: 20px;
  }
}

.web {
  padding-block: 60px 80px;
}
@media all and (max-width: 896px) {
  .web {
    padding-block: 20px 30px;
  }
}
.web h2 {
  text-align: center;
  font-family: "EB Garamond", serif;
  font-size: 7rem;
  font-weight: 500;
  line-height: 1.25;
}
@media all and (max-width: 896px) {
  .web h2 {
    font-size: 3.6rem;
  }
}
.web ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  .web ul {
    gap: 16px;
    margin-top: 12px;
  }
}
.web ul li {
  width: calc((100% - 48px) / 3);
}
@media all and (max-width: 896px) {
  .web ul li {
    width: calc((100% - 16px) / 2);
  }
}
.web ul li a {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 10px 15px 15px;
  border: 1px solid #363628;
  font-size: 1.5rem;
}
@media all and (max-width: 896px) {
  .web ul li a {
    padding: 5px 10px 10px;
    font-size: 1rem;
    letter-spacing: -0.04em;
  }
}
.web ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #4179af 0%, #73aace 100%);
  transition: 0.3s;
}
.web ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 40px;
  height: 40px;
  border: 1px solid #363628;
  border-radius: 50%;
  background: url(../images/common/ico_ar.svg) no-repeat center/15px auto;
  translate: 0 -50%;
  transition: 0.3s;
  filter: brightness(0);
}
@media all and (max-width: 896px) {
  .web ul li a::after {
    right: 7px;
    width: 25px;
    height: 25px;
    background-size: 12px auto;
  }
}
.web ul li a p[lang=en] {
  color: #a89981;
  font-family: "EB Garamond", serif;
  font-size: clamp(2.1rem, 2vw, 3.6rem);
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .web ul li a p[lang=en] {
   font-size: 1.5rem;
  }
}
@media (hover: hover) {
  .web ul li a:hover {
    color: #fff;
    opacity: 1;
  }
  .web ul li a:hover::before {
    animation: gnav 0.3s ease-out 0s forwards;
  }
  .web ul li a:hover::after {
    border-color: #fff;
    background-color: #fff;
    filter: none;
  }
  .web ul li a:hover p[lang=en] {
    color: inherit;
  }
}
@media all and (max-width: 896px) {
  .web ul li:last-child a {
    letter-spacing: -0.1em;
  }
}

.recruit {
  padding-block: 70px 100px;
  border-radius: 40px;
  background: url(../images/recruit/bg_recruit.webp) no-repeat center bottom/cover;
}
@media all and (max-width: 896px) {
  .recruit {
    border-radius: 20px;
    padding-block: 30px;
  }
}
.recruit .inner {
  position: relative;
}
@media (max-width: 1300px) {
  .recruit .inner {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
@media all and (max-width: 896px) {
  .recruit .inner {
    flex-direction: column;
  }
}
.recruit .inner .exp {
  flex: none;
  width: 45vw;
  font-weight: 700;
  line-height: 2.4;
}
@media all and (max-width: 896px) {
  .recruit .inner .exp {
    display: contents;
    line-height: 2;
  }
}
.recruit .inner .exp hgroup {
  order: -2;
  margin-bottom: 30px;
}
@media all and (max-width: 896px) {
  .recruit .inner .exp hgroup {
    margin-bottom: 10px;
  }
}
.recruit .inner .exp h3 {
  margin-block: 30px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  .recruit .inner .exp h3 {
    margin-block: 0 10px;
    font-size: 1.8rem;
    letter-spacing: normal;
  }
}
.recruit .inner .exp p + p {
  margin-top: 1em;
}
.recruit figure {
  position: absolute;
  top: 50%;
  right: calc((100vw - 1300px) / -2);
  width: 40vw;
  translate: 0 -50%;
}
@media (max-width: 1300px) {
  .recruit figure {
    position: relative;
    top: 0;
    right: -15px;
    width: 100%;
    translate: 0;
  }
}
@media all and (max-width: 896px) {
  .recruit figure {
    position: static;
    order: -1;
  }
}
.recruit figure img {
  border-radius: 10px 0 0 10px;
}
@media all and (max-width: 896px) {
  .recruit figure img {
    border-radius: 10px;
  }
}

/*Languages*/
html[lang=en] .mv h1 br {
  display: none;
}
@media all and (max-width: 896px) {
  html[lang=en] .mv h1 br {
    display: block;
  }
}
html[lang=en] .news-inner ul li a span {
  width: 140px;
}
html[lang=en] .business .exp-inner {
  max-width: 400px;
}
@media all and (max-width: 896px) {
  html[lang=en] .business .exp-inner {
    max-width: initial;
  }
}

html[lang=zh-TW] .mv h1 br {
  display: none;
}
@media all and (max-width: 896px) {
  html[lang=zh-TW] .mv h1 br {
    display: block;
  }
}

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