@charset "UTF-8";

html {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    min-width: 380px;
  }

body{
    color: #EEE;
}

/* ローディング画面 */
/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

#loading-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    width: 450px;
}

.loader-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    margin-bottom: 20px;
    color: #00f2ff;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.progress-wrap {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #00f2ff;
    box-shadow: 0 0 15px #00f2ff;
    transition: width 0.3s ease;
}

.loader-text {
    font-size: 1.8rem;
    opacity: 0.9;
    letter-spacing: 0.1rem;
}

h1{
    position: absolute;
    font-family: "Libre Barcode 39 Text", system-ui;
    font-weight: 200;
    font-style: normal;
    font-size: 80px;
    padding-right: 30px;
    line-height: 1.75;
    top: 15%;
    left: auto;
    padding: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}

/* ------------- ここから下部メニュー ------------- */
.menulist{
    position: fixed;
    bottom: 10px;
    list-style-type: none;
    display: table;
    color: #e9dcbe;
    text-align: center;
    z-index: 2;
    width: 100%;
    padding-left: 0;
    z-index: 9999;
}

.menulist:before{
    position: absolute;
    content: "";
    bottom: -50px;
    width: 100%;
    height: 150px;
    z-index: 1;
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.7),rgba(0,0,0,1));
}

.menulist li{
    position: relative;
    z-index: 3;
    transition: all .3s;
    width: 25%;
    font-feature-settings: "liga" 0;
    font-family: 'Playfair Display', serif;
    display: table-cell;
    border-left: 1px solid #ddd ;
}

.menulist li a{
    font-size: 2vw;
    transition: all .3s;
    color: #e9dcbe;
    text-decoration: none;
    font-feature-settings: "liga" 0;
}

.menulist li a .niceclass1{
    display: inline;
}

.menulist li a .niceclass1.mikansei{
    text-decoration: line-through;
}

.menulist li a:hover{
    letter-spacing: 6px;
}

.menulist li:first-child{
    border-left: none; 
}

/* ------------- ここまで下部メニュー ------------- */


main{
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/Summer/bg_fhd.jpg');
    background-size: auto 100%;
    -webkit-animation: bgscroll 150s linear infinite;
    animation: bgscroll 150s linear infinite;
}

@-webkit-keyframes bgscroll{
  0%{
    background-position: 0 0;
  }
  
  100%{
    background-position: -1920px 0;
  }
}

@keyframes bgscroll{
  0%{
    background-position: 0 30px;
  }
  
  100%{
    background-position: -1920px 30px ;
  }
}

main img.syozi_left,
main img.syozi_right,
main img.load_syozi_left,
main img.load_syozi_right{
  position: fixed;
  width: 25%;
  height: 100vh;
}

main img.syozi_left{
  left: 0px;
  z-index: 9;
}

main img.syozi_right{
  right: 0px;
  z-index: 9;
}

main img.load_syozi_left{
  left: calc(25vw);
  z-index: 10;
}

main img.load_syozi_right{
  right: calc(25vw);
  z-index: 10;
}

main .move_l_shozi1,
main .move_r_shozi1{
  position: absolute;
  animation-duration: 1s;
  animation-timing-function:ease-in-out;
  animation-direction: alternate;
  animation-fill-mode:forwards;
}

main .move_l_shozi1{
  animation-name: leftoutshozi1;
}

main .move_r_shozi1{
  animation-name: rightoutshozi1;
}

@keyframes leftoutshozi1{
  100%{
    left: -100px;
  }
}

@keyframes rightoutshozi1{
  100%{
    right: -100px;
  }
}

main .bg_fillter{
  position: fixed;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100vh;
  margin: auto;
  display: block;
}

main .saku{
    position: absolute;
    bottom: 0;
    z-index: 6;
    background: url('../images/saku.png') repeat-x;
    width: 100%;
    height: 350px;
}

main .yane{
    position: absolute;
    left: 0;
    top: 0;
    background: #19191d;
    width: 100%;
    height: 100px;
    z-index: 1;
    overflow: hidden;
}

main .yane:after{
    position: absolute;
    content: "";
    left: 0;
    top: 90px;
    width: 100%;
    height: 10px;
    background: #252421;
}

.form_area{
  position: fixed;
  display: flex;
  justify-content: space-around;
  z-index: 100;
  top: 38vh;
  margin: auto;
  width: 100%;
  flex-wrap: wrap;
  flex: 1;
}

.search_container{
  position: relative;
  box-sizing: border-box;
  background: rgba(51, 51, 51, 0.46);
  margin: auto 50px;
  border: 1px solid #bbb;
  padding: 3px 5px;
  border-radius: 50px;
  height: 2.3em;
  width: 40%;
  min-width: 300px;
  overflow: hidden;
  font-size: 20px;
  color: #333;
  /* transform: translate(-50%, -50%); */
  box-shadow: 1px 1px 5px 1px #555;
}

.search_container input[type="text"] {
  border: none;
  height: 2.0em;
  background: rgba(0,0,0,0);
  width: 85%;
  margin-left: 15px;
  color: #fff;
}

.search_container input[type="text"]:focus {
  outline: 0;
}

.search_container input[type="submit"] {
  position: absolute;
  top: 0px;
  right: 5px;
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 1.3em;
  border: none;
  background: none;
  color: #fff;
  width: 2em;
  height: 1.75em;
  outline: none;
}

.icon_links{
  display: flex;
  margin: 140px auto 0 auto;
  width: 55%;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
}

.icon_links .link_cricles a{
    background: #555555ad;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon_links .link_cricles a:hover{
    background: #b8b8b8be;
}

.icon_links a img{
  max-width: 50px;
}

@media screen and (max-width: 420px){

}