@charset "utf-8";
.sec_h2{
    font-size: 6.3rem;
    color: var(--color-green);
    @media (max-width:480px){
        font-size: 4.3rem;
    }
}
.mask{
  clip-path: url(#mask);
}
.mv{
    position: relative;
    aspect-ratio: 15/10;
    overflow: hidden;
}
.mv_text{
    position: absolute;
    bottom: 26.5rem;
    left: 9.5rem;
    color: var(--color-white);
    z-index: 2;
    line-height: 1.0;
}
.mv_text_main{
    font-family: 'Lato',sans-serif;
    font-size: 6.6rem;
    margin-bottom: 2rem;
}
.mv_text_main span.uppercase{
    font-size: 9.4rem;
}
.mv_text_sub{
    font-size: 1.7rem;
    letter-spacing: 0.33em;
}
.mv .swiper {
	width: 100%;
	height: 100%;
}
.mv_swiper_item {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.mv_swiper_item_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@keyframes zoomOut {
	0% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
.swiper-slide-active .mv_swiper_item_img {
	animation: zoomOut 7s linear forwards;
}

.scroll{
    position: absolute;
    bottom: 10rem;
    right: 10rem;
    height: 10rem;
    z-index: 3;
}
.scroll:before {
    -webkit-animation: scrollBorder 3s infinite;
    animation: scrollBorder 3s infinite;
    content: "";
    display: block;
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: .15rem;
    background: #5D5D5D;
    z-index: 2;
}
.scroll:after {
    content: "";
    display: block;
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: .1rem;
    background: #fff;
}
@keyframes scrollBorder{
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}
.scroll_infinity_wrap{
  color: var(--color-white);
}
.scroll_infinity_box {
  --width: 11rem; /* 1文の表示の幅 */
  width: var(--width);
  overflow: hidden;
  display: inline-block;
  margin: 0 1rem;
  vertical-align: middle;
  line-height: 1;
}

.scroll_infinity_box_text {
  display: inline-block;
  text-shadow: var(--width) 0 0 currentColor;
  animation-name: scrollingText;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes scrollingText {
  0% {
    translate: 0 0;
  }
  100% {
    translate: calc(var(--width) * -1) 0;
  }
}

.caption{
    text-align: center;
}
.caption_inner{
    max-width: 1400px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.caption_header{
    font-size: 5.3rem;
    color: var(--color-green);
}
.caption_header span{
    font-size: 7.3rem;
}
.caption_img{
    margin: 5em auto;
}
.caption_img img{
    max-width: 41rem;
    width:80%;
    display: inline-block;
}
.caption_text{
    background-image:linear-gradient(90deg,rgba(204,204,204,0) 0%,rgba(204,204,204,0) 49%,#fff 50%,#fff 100%),linear-gradient(180deg,rgba(204,204,204,0) 0%,rgba(204,204,204,0) 98.5%,rgba(100,100,100,100) 100%);
    background-repeat:repeat-x,repeat-y;
    background-size:4px 100%,100% 2.4em;
    line-height:2.4;
    mix-blend-mode: multiply;
    font-size: 2.0rem;
    margin-top: 3em;
    letter-spacing: 0.15em;
}

.slider {
  overflow: hidden;
  margin-bottom: 25rem;
}
.slider_container {
  display: flex;
  width: max-content;
  animation: infinity-scroll 30s linear infinite;
}
.slider_img{
    margin-right: 3rem;
    display: inline;
}
.slider_img img{
    width: auto;
    object-fit: contain;
    height: 25rem;
    display: inline;
    @media screen and (min-width: 900px) {
        height: min(340 / 900 * 100vw, 340px);
    }

    @media screen and (min-width: 1200px) {
        height: max(340 / 1200 * 100vw, 340px);
    }
}
@keyframes infinity-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.splide .splide__slide img {
    width: auto;
    height: 30rem;
    @media screen and (max-width: 480px) {
        height: max(200 / 1200 * 100vw, 200px);
    }
}
.style{
    text-align: center;
    margin-bottom: 25rem;
}
.style_header{
    position: relative;
    max-width: 140rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4.5rem;
}
.style_header .arrow_btn{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.style_list{
    max-width: 140rem;
    width: 80%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 3rem;
    margin-left: auto;
    margin-right: auto;
}
.style_list_item img{
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}
.style_list_wrap{
    padding: 10rem 0;
    border-radius: 5rem;
    background: url('../img/style_back.png') center/cover no-repeat;
}

.recruit{
    background-color: #FFFAF0;
    padding: 6rem 0;
    text-align: center;
}
.recruit_header{
    text-align: center;
    margin-bottom: 3rem;
}
.recruit_header p{
    font-style: italic;
}
.recruit-job__inner{
    max-width: 80rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.recruit-job__boxWrap {
    margin-bottom: 3rem;
}
.recruit-job__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-bottom: 1px solid #dddddd;
    line-height: 2;
    text-align: left;
    font-size: 1.5rem;
}
.recruit-job__boxTtl {
    width: 25%;
}
.recruit-job__boxTxt {
    width: 70%;
}

.front-menu__inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    max-width: 140rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.front-menu__block {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:5rem 7rem;
}
.st-menu__boxTtl {
    font-family: "Lato", sans-serif;
    text-align: left;
}
.st-menu__boxTtl:before {
    content: "_";
}
.st-menu__itemWrap{
    display: flex;
    justify-content: space-between;
}
.st-menu__itemWrap dt{
    font-weight: 400;
}
.st-menu__list{
    padding-top: 0.5rem;
    line-height: 1.6;
    font-size: 1.4rem;
}
.st-menu__item {
    margin-top: 12px;
    padding-bottom: 7px;
}
.st-menu__itemPrice{
    font-family: "Lato", sans-serif;
}

@media (max-width: 767px){
    .mv{
        aspect-ratio:6/10;
    }
}
@media (max-width: 480px){
    .mask{
    clip-path: url(#mask-sp);
    }
    .mv_text{
        bottom: 0;
        top: 8rem;
        left: 0;
        padding: 0 1.7rem;
    }
    .mv_text_main{
        font-size: 4.2rem;
        letter-spacing: 5%;
        margin-bottom: 0;
        display: inline;
    }
    .mv_text_main span.uppercase{
        font-size: 6rem;;
    }
    .mv_text_sub{
        font-size: 1.1rem;
        text-align: right;
        display: inline;
        margin-left: 3rem;
    }
    .scroll{
        position: absolute;
        bottom: 0;
        right: 0;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
    .caption_header{
        font-size: 2.8rem;
        line-height: 1.6;
    }
    .caption_header span{
        font-size: 3.7rem;
    }
    .caption_img{
        margin: 4rem 0;
    }
    .caption_text{
        font-size: 1.35rem;
        line-height: 3;
        background-size: 4px 100%, 100% 3em;
    }
    .caption_text span{
        display: block;
        font-size: 0;
    }
    .slider_container{
        height: 16rem;
    }
    .slider{
        margin-bottom: 10rem;
    }
    .slider_img{
        margin-right: 1.5rem;
    }
    .slider_img img{
        height: 100%;
        width: auto;
    }
    .style{
        margin-bottom: 10rem;
    }
    .style_header{
        text-align: right;
        .sec_h2{text-align: center;}
    }
    .style_header .arrow_btn{
        position: relative;
        transform: none;
    }
    .style_list_wrap{
        padding: 5rem 0;
    }
    .style_list{
        grid-template-columns:repeat(2,1fr);
        gap: 2rem;
    }
    .recruit-job__boxTtl,
    .recruit-job__boxTxt{
        width: 100%;
    }
    .front-menu__inner{
        flex-direction: column;
    }
    .front-menu__block{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5rem;
    }
    .menu_header{
        width: 100%;
        text-align: right;
        .sec_h2{
            text-align: center;
        }
    }
}