@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Noto_Sans_JP';
    src: url(../font/Noto_Sans_JP/static/NotoSansJP-Medium.ttf);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/*ヘッダー*/

header {
    position: fixed;
    top: 0;
    display: flex;
    width: 100%;
    background-color: #fff;
    z-index: 999;
}

h1 {
    width: 33%;
    margin-left: 33%;
}

h1 a {
    display: block;
    width: 100%;
}

h1 a img {
    width: 100%;
}

nav {
    position: relative;
}

nav ul {
    display: none;
    position: absolute;
    top: 13vw;
    left: -66vw;
    width: 100vw;
    list-style-type: none;
}

nav ul li {
    position: relative;
    width: 100%;
}

nav ul li a {
    display: block;
    text-align: center;
    line-height: 4;
    font-size: 4vw;
    font-family: 'Noto_Sans_JP';
    text-decoration: none;
    color: #222;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #fff;
    background-color: rgb(244, 0, 0);
    transition: 0.3s;
}

nav ul li:nth-child(1) a {
    color: red;
}

.insta {
    position: relative;
    top: 0.5vw;
    left: 24vw;
    width: 5%;
}

.insta a {
    display: block;
    text-align: center;
    color: #666;
    font-size: 9vw;
}

/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active ul {
	/*transform: translateY(0%);/*上から出したい場合は、transform: translateYを使う。*/
    display: block;
    background-color: rgba(255,255,255,1);
    animation: humbarger 0.8s;
}

@keyframes humbarger {
	0% { width: 10vw; }
  100% { width: 100vw; }
}

/*トグルボタンのスタイルを指定*/
.Toggle {
	position: fixed;    /* bodyに対しての絶対位置指定 */
    top: 1.5vw;
    left: 12px;
    width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 3;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
	display: block;
	position: absolute;
	width: 22px;
	border-bottom: solid 3px #000;
	transition: .35s ease-in-out;			/*変化の速度を指定*/
	left: 6px;
}

.Toggle span:nth-child(1) {
	top: 9px;
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

/*メイン*/

main {
    padding-top: 22%;
}

/*メインビジュアル*/

.main-visual {
	position: relative;
	width: 100%;
	height: 54vw;
    margin-top: 4%;
    z-index: 10;
}

.main-image {
	position: absolute;
	top: 0;
    left: 0;
    bottom: -15%;
    opacity: 0;
    right: 0;
	animation: bgAnime 16s infinite;
}

.main-image:nth-of-type(1) {
	background-image: url(../images/mv-photo-item1.webp);
	background-repeat: no-repeat;
    background-size: contain;
	animation-delay: 0s;
}

.main-image:nth-of-type(2) {
	background-image: url(../images/mv-photo-item2.webp);
	background-repeat: no-repeat;
    background-size: contain;
	animation-delay: 4s;
}

.main-image:nth-of-type(3) {
	background-image: url(../images/mv-photo-item3.webp);
	background-repeat: no-repeat;
    background-size: contain;
	animation-delay: 8s;
}

.main-image:nth-of-type(4) {
	background-image: url(../images/mv-photo-item4.webp);
	background-repeat: no-repeat;
    background-size: contain;
	animation-delay: 12s;
}

@keyframes bgAnime {
	0% { opacity: 0; }
   30% { opacity: 1; }
   40% { opacity: 1; }
   55% { opacity: 0; }
  100% { opacity: 0; }
 }

.main-visual-text {
    width: 100%;
    height: 0;
}

.main-visual-text p:nth-child(1) {
    position: relative;
    top: -62vw;
    width: 100%;
    text-align: center;
    letter-spacing: 0.3em;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
    z-index: 20;
}

.main-visual-text p:nth-child(2) {
    position: relative;
    top: -64vw;
    width: 100%;
    text-align: center;
    letter-spacing: 0.1em;
    color: red;
    font-size: 10vw;
    font-family: 'Noto_Sans_JP';
    z-index: 20;
}

/*私たちについて*/

.about-us {
    width: 100%;
    margin-top: -7%;
    padding-top: 12%;
    padding-bottom: 10%;
    background-color: rgb(255, 185, 0);
    background-image: url(../images/about-bg.webp);
    background-size: 100%;
    z-index: 1;
}

.about-us h2 {
    position: relative;
    text-align: center;
    letter-spacing: 0.2em;
    color: #222;
    font-size: 5vw;
    font-family: 'Noto_Sans_JP';
}

.about-us h2::before {
    position: absolute;
    display: inline-block;
    top: -20%;
    left: 25%;
    width: 5%;
    height: 3vw;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/section-title-decoration.svg);
}

.about-us p {
    margin-top: 3%;
    margin-bottom: 3%;
    white-space: pre-wrap;
    text-align: center;
    line-height: 2.8;
    letter-spacing: -0.2em;
    color: #222;
    font-size: 2.8vw;
    font-family: 'Noto_Sans_JP';
}

.about-us a {
    display: block;
    width: 30%;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    line-height: 4;
    color: #fff;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
    border-radius: 1rem;
    box-shadow: 0 0 10px #999;
    background-color: rgb(244, 0, 0);
    transition: 0.5s;
}

.about-us a:hover {
    color:  rgb(244, 0, 0);
    background-color: #fff;
    transition: 0.5s;
}

.about-us-loop {
    display: flex;
    width: 100%;
    height: 5vw;
    margin-top: 10%;
}

.about-us-loop img:nth-child(1) {
    animation: loop1 60s linear infinite;
}

.about-us-loop img:nth-child(2) {
    animation: loop2 60s linear infinite;
}

.about-us-loop img:nth-child(3) {
    animation: loop3 60s linear infinite;
}

@keyframes loop1 {
    0% {transform: translateX(0%);}
  100% {transform: translateX(200%);}
}

@keyframes loop2 {
    0% {transform: translateX(-205%);}
  100% {transform: translateX(-5%);}
}

@keyframes loop3 {
    0% {transform: translateX(-410%);}
  100% {transform: translateX(-210%);}
}

.about-us-loop2 {
    display: flex;
    width: 100%;
    height: 5vw;
    margin-top: 5%;
}

.about-us-loop2 img:nth-child(1) {
    animation: loop2-1 30s linear infinite;
}

.about-us-loop2 img:nth-child(2) {
    animation: loop2-2 30s linear infinite;
}

@keyframes loop2-1 {
    0% {transform: translateX(0%);}
  100% {transform: translateX(-100%);}
}

@keyframes loop2-2 {
    0% {transform: translateX(5%);}
  100% {transform: translateX(-95%);}
}

/*店舗紹介*/

.shop {
    display: flex;
    width: 100%;
    margin-top: 22%;
}

.mac-image {
    position: relative;
    width: 100%;
}

.mac-image img {
    position: absolute;
    top: 10vw;
    height: 8vw;
    animation: macanime 40s linear infinite;
}

@keyframes macanime {
    0% {transform: translateX(43%);}
  100% {transform: translateX(-90%);}
}

.shop-left {
    display: block;
    position: absolute;
    width: 55%;
    height: 30vw;
}

.shop-left img:nth-child(1) {
    position: relative;
    width: 100%;
    height: 100%;
    top: -16vw;
    animation: swing 10s linear infinite;
    transform: rotate(20deg);
}

@keyframes swing {
    50% {transform: rotate(-20deg);}
    100% {transform: rotate(20deg);}
}

.shop-left img:nth-child(2) {
    position: relative;
    top: -30.5vw;
    width: 100%;
    height: 100%;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
}

.shop-right {
    margin-left: auto;
    width: 43%;
    height: 30vw;
}

.shop-right h2 {
    position: relative;
    margin: 5%;
    text-align: center;
    letter-spacing: 0.2em;
    color: #222;
    font-size: 5vw;
    font-family: 'Noto_Sans_JP';
}

.shop-right h2::before {
    position: absolute;
    top: -1vw;
    left: 10%;
    width: 10%;
    height: 2.6vw;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/section-title-decoration.svg);
}

.shop-right p {
    margin-top: 3%;
    margin-bottom: 3%;
    white-space: pre-wrap;
    text-align: center;
    line-height: 2;
    color: #222;
    font-size: 2.6vw;
    font-family: 'Noto_Sans_JP';
}

.shop-right a {
    display: block;
    width: 60%;
    margin: 10% auto 0;
    text-align: center;
    text-decoration: none;
    line-height: 4;
    color: #fff;
    font-size: 2.3vw;
    font-family: 'Noto_Sans_JP';
    border-radius: 1rem;
    box-shadow: 0 0 30px #ddd;
    background-color: rgb(244, 0, 0);
    transition: 0.5s;
}

.shop-right a:hover {
    color:  rgb(244, 0, 0);
    background-color: #fff;
    transition: 0.5s;
}

/*採用情報*/

.recruit-image {
    margin-top: 15%;
    width: 100%;
}

.recruit-image img {
    width: 100%;
}

.recruit-back {
    position: relative;
}

.recruit-back img:nth-child(1) {
    position: absolute;
    height: 26vw;
    top: 12vw;
    left: 43%;
    animation: updown 8s linear infinite;
    z-index: -1;
}

@keyframes updown {
    0% {transform: translateY(0%);}
    25% {transform: translateY(30%);}
    50% {transform: translateY(0%);}
    75% {transform: translateY(-30%);}
    100% {transform: rotate(0%);}
}

.recruit-back img:nth-child(2) {
    position: absolute;
    height: 26vw;
    top: 12vw;
    left: 67%;
    animation: updown2 8s linear infinite;
    z-index: -1;
}

@keyframes updown2 {
    0% {transform: translateY(0%);}
    25% {transform: translateY(-30%);}
    50% {transform: translateY(0%);}
    75% {transform: translateY(30%);}
    100% {transform: rotate(0%);}
}

.recruit {
    display: flex;
    width: 100%;
    margin-top: 10%;
}

.recruit-left {
    width: 45%;
}

.recruit-left h2 {
    position: relative;
    margin: 5%;
    text-align: center;
    letter-spacing: 0.2em;
    color: #222;
    font-size: 5vw;
    font-family: 'Noto_Sans_JP';
}

.recruit-left h2::before {
    position: absolute;
    top: -1.8vw;
    left: 10%;
    width: 10%;
    height: 2.6vw;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/section-title-decoration.svg);
}

.recruit-left p {
    margin-top: 3%;
    margin-bottom: 3%;
    white-space: pre-wrap;
    text-align: center;
    line-height: 2;
    letter-spacing: -0.1em;
    color: #222;
    font-size: 2.6vw;
    font-family: 'Noto_Sans_JP';
}

.recruit-left a {
    display: block;
    width: 80%;
    margin: 10% auto 0;
    text-align: center;
    text-decoration: none;
    line-height: 4;
    color: #fff;
    font-size: 2.8vw;
    font-family: 'Noto_Sans_JP';
    border-radius: 1rem;
    box-shadow: 0 0 30px #ddd;
    background-color: rgb(244, 0, 0);
    transition: 0.5s;
}

.recruit-left a:hover {
    color:  rgb(244, 0, 0);
    background-color: #fff;
    transition: 0.5s;
}

.recruit-right {
    display: flex;
    width: 55%;
}

.recruit-image1 {
    width: 70%;
    margin-top: 35%;
    margin-left: 10%;
    padding: 5% 5% 20%;
    border-radius: 1em;
    background-color: white;
    box-shadow: 0 0 30px #bbb;
    transition: 0.5s;
}

.recruit-image1 img {
    width: 100%;
    margin-top: 5%;
    border-radius: 1em;
    transition: 0.5s;
}

.recruit-image1 h3 {
    margin-top: 3%;
    text-align: center;
    letter-spacing: 0.2em;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
    transition: 0.5s;
}

.recruit-image1:hover {
    background-color: rgb(244, 0, 0);
    transition: 0.5s;
}

.recruit-image1:hover img {
    transform: scale(1.05);
    transition: 0.5s;
}

.recruit-image1:hover h3 {
    color: #fff;
    transition: 0.5s;
}

.recruit-image2 {
    width: 70%;
    margin-top: 5%;
    margin-left: 5%;
    padding: 5% 5% 20%;
    border-radius: 1em;
    box-shadow: 0 0 30px #bbb;
    background-color: white;
    transition: 0.5s;
}

.recruit-image2 img {
    width: 100%;
    margin-top: 5%;
    border-radius: 1em;
    transition: 0.5s;
}

.recruit-image2 h3 {
    margin-top: 3%;
    text-align: center;
    letter-spacing: 0.2em;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
    transition: 0.5s;
}

.recruit-image2:hover {
    background-color: rgb(244, 0, 0);
    transition: 0.5s;
}

.recruit-image2:hover img {
    transform: scale(1.05);
    transition: 0.5s;
}

.recruit-image2:hover h3 {
    color: #fff;
    transition: 0.5s;
}

/*アルバイトクルー募集中！*/

.burger {
    position: relative;
}

.burger img {
    position: absolute;
    top: -6vw;
    left: 80%;
    height: 16vw;
    animation: screw 3s ease-out infinite;
}

@keyframes screw {
    0% {transform: scale(1) rotate(0);}
    50% {transform: scale(1.1) rotate(25deg);}    
    100% {transform: scale(1) rotate(0);}
}

.crew {
    width: 76%;
    margin: 10% auto 5%;
    padding: 5%;
    background-color: rgb(255, 185, 0);
    background-image: url(../images/about-bg.webp);
    background-size: 100%;
    border-radius: 1em;
}

.crew h2 {
    text-align: center;
    letter-spacing: 0.1em;
    color: #222;
    font-size: 5vw;
    font-family: 'Noto_Sans_JP';
}

.crew p {
    margin-top: 4%;
    white-space: pre-wrap;
    text-align: center;
    line-height: 2.5;
    color: #222;
    font-size: 2.8vw;
    font-family: 'Noto_Sans_JP';
}

.crew-smile {
    width: 20%;
    margin: 5% auto 0;
}

.crew-smile img {
    width: 100%;
}

/*ニュース＆トピックス*/

.news {
    display: flex;
    width: 100%;
    margin-top: 10%;
}

.news h2 {
    position: relative;
    margin-left: 6%;
    letter-spacing: 0.1em;
    color: #222;
    font-size: 5vw;
    font-family: 'Noto_Sans_JP';
}

.news h2::before {
    position: absolute;
    top: -1.8vw;
    left: -5%;
    width: 14%;
    height: 3vw;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/section-title-decoration.svg);
}

.news a {
    display: block;
    width: 30%;
    margin-left: 5%;
    text-align: center;
    text-decoration: none;
    line-height: 4;
    color: #fff;
    font-size: 2.8vw;
    font-family: 'Noto_Sans_JP';
    border-radius: 1rem;
    box-shadow: 0 0 30px #ddd;
    background-color: rgb(244, 0, 0);
    transition: 0.5s;
}

.news a:hover {
    color:  rgb(244, 0, 0);
    background-color: #fff;
    transition: 0.5s;
}

.news-box {
    display: flex;
    margin: 3% 5%;
    padding: 2%;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
}

.news-image {
    width: 30%;
}

.news-image img {
    width: 100%;
}

.news-text {
    margin-left: 5%;
}

.news-text p:nth-child(1) {
    line-height: 2.8;
    font-size: 2.8vw;
    color: #222;
    font-family: 'Noto_Sans_JP';
}

.news-text p time {
    color:  rgb(244, 0, 0);
}

.news-text p span {
    margin-left: 1em;
    margin-right: 1em;
}

.news-text p:nth-child(2) {
    line-height: 2.5;
    font-size: 2.6vw;
    color: #222;
    font-family: 'Noto_Sans_JP';
}

/*ユースエール認定企業*/

.youth-yell {
    display: flex;
    width: 82%;
    margin: 15% auto 0%;
}

.youth-yell-image {
    width: 15%;
}

.youth-yell-image img {
    width: 100%;
}

.youth-yell-text {
    width: 75%;
    margin-left: auto;
}

.youth-yell-text h3 {
    letter-spacing: 0.1em;
    color: #222;
    font-size: 4vw;
    font-family: 'Noto_Sans_JP';
}

.youth-yell-text p {
    margin-top: 2%;
    margin-bottom: 5%;
    line-height: 1.5;
    color: #222;
    font-size: 2.8vw;
    font-family: 'Noto_Sans_JP';
}

/*フッター*/

footer {
    width: 100%;
    height: 59vw;
    margin-top: 5%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/footer-bg.svg);
}

.yajirushi {
    width: 1.5%;
    height: 5vw;
    margin: 0 auto;
    content: "";
    clip-path: polygon(0 0, 100% 14%, 100% 100%, 0% 100%);
    background: #ffbc0d;
    transition: 0.8s;
}

.yajirushi:hover {
    transform: scale(-1, 1);
    transition: 0.8s;
}

footer a {
    text-decoration: none;
}

footer a p {
    text-align: center;
    color:  rgb(244, 0, 0);
    font-size: 2.8vw;
    font-family: 'Noto_Sans_JP';
}

.footer-image {
    width: 50%;
    margin: 5% auto 3%;
}

.footer-image img {
    width: 100%;
}

footer address {
    text-align: center;
    line-height: 2;
    color:  #fff;
    font-size: 2.8vw;
    font-family: 'Noto_Sans_JP';
}

.mac-image-footer {
    position: relative;
    width: 100%;
}

.mac-image-footer img:nth-child(1) {
    position: absolute;
    top: 8vw;
    height: 8vw;
    animation: macanime2 40s linear infinite;
}

@keyframes macanime2 {
    0% {transform: translateX(43%);}
  100% {transform: translateX(-90%);}
}

.mac-image-footer img:nth-child(2) {
    position: absolute;
    height: 36vw;
    top: -3vw;
    left: 68vw;
    animation: swing 10s linear infinite;
    transform: rotate(20deg);
}

@keyframes swing {
    50% {transform: rotate(-20deg);}
    100% {transform: rotate(20deg);}
}