﻿@charset "UTF-8";
@import url("./fonts.css");

/* Recruit site specific styles */

:root {
  --recruit-max-width: 1100px;
}

.container {
  width: min(100% - 32px, var(--recruit-max-width));
  margin-inline: auto;
}

/*****
header
*****/

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

header .header_ttl {
  width: 100%;
  height: 92px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

header .header_ttl p.header_ttl01 {
  font-size: 50px;
  font-weight: 600;
}

header .header_ttl p.header_ttl02 {
  font-family: var(--font-alinnea);
  font-size: 60px;
  color: #0068b7;
  margin: 10px 0 0;
}

section#mv {
  position: relative;
  text-align: center;
  height: 450px;
  margin-top: -25px;
  color: #fff;
}

section#mv p.year {
  padding-top: 168px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 27px;
  text-align: center;
}

section#mv h1 {
  font-size: 50px;
  font-family: var(--font-gothic);
  line-height: 58px;
  color: #fff;
}

section#mv .mv_bg {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

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

section#mv h1 span {
  font-size: 18px;
  font-family: var(--font-mincho);
  line-height: 47px;
}

/*****
contents
*****/

/*****
footer
*****/

footer {
  position: relative;
  color: #fff;
  height: 450px;
}

.footer_con {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
}

.footer_con .info {
}

.footer_con .info p.page-en {
  font-size: 60px;
  font-family: var(--font-alinnea);
  margin-bottom: -14px;
}

.footer_con .info p.shop {
  font-size: 50px;
  margin-bottom: -1px;
}

.footer_con .info p.shop-en {
  font-size: 18px;
  margin-bottom: 33px;
}

.footer_con .info p.add {
  font-size: 18px;
  line-height: 30px;
}

.footer_con .schedule {
}

.footer_con .schedule p {
  font-size: 18px;
  line-height: 30px;
}

.footer_bg {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.footer_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


