@charset "UTF-8";

body {
    background-color: #000;
    color: #fff;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	min-width: 1100px;
	margin: 0 auto;
}

.language {
    display: flex;
    align-items: center;
    border-radius: 4px;
    line-height: 18px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    overflow: hidden;
    font-weight: 200;
    margin-left: 30px;
    border: 0.5px solid #fff;
}

.language_active {
    background: #fff;
    color: #000;
    font-weight: bold;
    padding: 2px 12px 3px;
}

.language a {
    display: block;
    padding: 2px 10px 3px;
    color: #fff;
    border-left: 0.5px solid;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}

.language a:hover {
    background: rgba(255,255,255,0.3);
}

#bg {
  width: 100vw;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100vh;
  opacity: 0.7;
  position: fixed !important;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}


header {
    position: fixed;
    left: 5%;
    top: 5%;
    z-index: 999;
    min-width: 1100px;
    width: max-content;
    margin: 0 auto;
}

.header_logo {
    font-family: 'aileron';
    color: #fff;
    font-size: 3.2rem;
    display: flex;
    position: relative;
    font-weight: bold;
    letter-spacing: 0.5px;
    z-index: 99999;
    align-items: baseline;
}


.header_logo_content {
  display: flex;
  align-items: center; /* ロゴとスライダーを縦方向で中央揃え */
  gap: 10px; /* ロゴとスライダーの間隔を適度に調整 */
}

.header_logo_content_t {
  display: flex;
  align-items: center; /* ロゴとスライダーを縦方向で中央揃え */
  gap: 10px; /* ロゴとスライダーの間隔を適度に調整 */
}


.header_logo_link {
    color: #fff;
    font-size: 3.2rem;
    letter-spacing: 0.5px;
}

ul.header_menu li a {
  padding: 10px 0;
  position: relative;
  color: #fff;
  width: max-content;
  display: block;
  letter-spacing: 1px;
  font-family: "aileron", sans-serif;
  font-size: 1.4rem;
}
ul.header_menu li a::before {
  background: #fff;
  content: '';
  width: 100%;
  height: 0.5px;
  position: absolute;
  left: 0;
  bottom: 8px;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
ul.header_menu li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}


a.header_instagram {
  position: relative;
    display: flex;
    margin-top: 15px;
    align-items: center;
    line-height: 24px;
    color: #fff;
    font-weight: 300;
    width: max-content;
    font-size: 1.2rem;
}
a.header_instagram::before {
  background: #fff;
  content: '';
  width: 100%;
  height: 0.5px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
a.header_instagram:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

a.header_instagram img {
    width: 16px;
    margin-right: 5px;
}

.header_logo span {
    margin-left: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.header_menu_area {
    position: fixed;
    top: 150px;
    left: 5%;
    z-index: 999;
}

ul.header_menu {
    width: max-content;
}

a.header_reserve {
    color: #fff;
    border: 0.5px solid;
    padding: 1px 10px 3px;
    margin-top: 15px;
    display: block;
    font-size: 1.2rem;
    width: max-content;
}

main {
    position: relative;
    z-index: 99;
}

.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}

.svg-logo {
  width:80px;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
body {
	min-width: inherit;
}
	
header {
    width: 100%;
    top: 20px;
	min-width: inherit;
}

ul.header_menu {
    display: none;
}

.header_logo span {
    display: block;
    margin-left: 0;
}

.header_logo {
    display: block;
}

.language {
    width: max-content;
    margin: 10px 0 0;
}

a.header_instagram {
    display: none;
}

.svg-logo {
  width:60px;
}

.header_logo_content {
  display: flex;
  align-items: center; /* ロゴとスライダーを縦方向で中央揃え */
  gap: 30px; /* ロゴとスライダーの間隔を適度に調整 */
}
.header_logo_content_t {
  display: inline-block;
  align-items: center; /* ロゴとスライダーを縦方向で中央揃え */
  gap: 30px; /* ロゴとスライダーの間隔を適度に調整 */
}

}