@charset "UTF-8";
/*
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 3.3.0
build: 3167
*/
html,
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset,
legend, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth;}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* normal */
@font-face {
    font-family :YuMincho,'Yu Mincho','BIZ UDPMincho',serif;
    src: url('../fonts/YuMincho.ttc') format('truetype');
  }

  @font-face {
    font-family: 'SatsukiGendaiMincho-M';
    src: url('../fonts/SatsukiGendaiMincho-M.ttf') format('truetype');
  }

fieldset, img {
    border: 0;
}

address, caption, cite, code, dfn, em, th, var {
    font-style: normal;
    font-weight: normal;
}


ul li {
    list-style: none;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
    font-variant: normal;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

input, textarea, select {
    *font-size: 100%;
}

legend {
    color: #3e3a39;
}

p {
    color: #3e3a39;
}

a :hover{
    opacity: 0.7;
    
}



#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: .6rem;
    z-index: 999;
}


#page-top a {
    background: #999999;
    text-decoration: none;
    color: #ffffff;
    width: 70px;
    height:25px;
    padding: 18px 0 30px;
    text-align: center;
    display: block;
	border-radius: 50%;
    font-size:1.0rem;
    line-height: 150%;
}
@media screen and (max-width: 640px) {
#page-top a {
    background: #999999;
    text-decoration: none;
    color: #ffffff;
    width: 50px;
    height: 5px;
    padding: 18px 0 30px;
    text-align: center;
    display: block;
    border-radius: 50%;
    font-size: 1.0rem;
    line-height: 90%;
}
}

#page-top p{
    display: table-cell;
    vertical-align: middle;
}

#page-top a:hover {
    text-decoration: none;
    background: #999999;
}

#page-before {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: .6rem;
    z-index: 998;
}


#page-before a {
    background: #0073BE;
    text-decoration: none;
    color: #fff;
    width: 100px;
    height:50px;
    padding: 30px 0 15px;
    text-align: center;
    display: block;
	border-radius: 50%;
}
#page-before a:hover {
    text-decoration: none;
    background: #dcdddd;
}




/* -----------section01----------- */




.sec__1 {
    max-width: 1920px;
    margin: 200px auto 0;

}

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

}
@media screen and (max-width: 640px) {
    .sec__1 {
        margin: 80px auto 0;
    }
}



/* -----------//section01----------- */


/* -----------動き----------- */

.fadein{  
    animation: fadeIn 4s ease 0s 1 normal;
    -webkit-animation: fadeIn 4s ease 0s 1 normal;

}

.main .animate.fadein {
    opacity: 1;
    bottom: 0;
}

.main .animate{
    position: relative;
    opacity: 0;
    bottom: -15px;
    transition: 2s;
}

@keyframes fadeIn { 
    0% {opacity: 0} 
    100% {opacity: 1} 
}

/* fadeUp */

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }

    
    
    /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
     
    .fadeup-item{
        opacity: 0;
    }

  
    
 
/* -----------//動き----------- */



/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -100%;
	width:50%;
    height: 100vh;/*ナビの高さ*/
    background:rgba(255,255,255,0.9);
    /*背景色（グラデーション）*/
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 50%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
    #g-nav,
    #g-nav.panelactive #g-nav-list{
        width:100%;
    }
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center;
}

#g-nav li a{
    color: #585858;
    text-decoration: none;
    padding: 24px 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1rem;
    transition: all .5s;
    font-size: 2.0rem;
}

#g-nav li a:hover{
    color:#ccc;
}



.sns_flex{
    display: flex;
    justify-content: space-between;
    width:50px;
    margin:100px auto 0;
}

.sns_flex img{
    width:10px;
}

/*===========================================================*/
/* 機能編 5-2-1	3本線が×に*/
/*===========================================================*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
	background-color: #999999;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

@media screen and (max-width: 1080px) {
.openbtn {
    top: 20px;
    width: 80px;
    height: 80px;
}
}

@media screen and (max-width: 680px) {
 .openbtn {
    top: 10px;
    width: 50px;
    height: 50px;
}
}


/* -----------video----------- */

video{
    z-index: 2;
}


/* 





  
  .wrap {
    position: relative;
    height: 60vh;
    width:120vh;
    margin:500px auto;
  }
  @media screen and (max-width: 1080px) {
    .wrap {
        position: relative;
        height: 50vh;
        width:70vh;
        margin:700px auto 700px;
      }
}
  @media screen and (max-width: 900px) {
    .wrap {
        position: relative;
        height: 40vh;
        width:100%;
        margin:400px auto;
      }
}
@media screen and (max-width: 680px) {
    .wrap {
        position: relative;
        height: 40vh;
        width:100%;
        margin:400px auto;
      }
}
  
  .video-bg {
    position: relative;
    height: 100%;
    background: #ffffff;
    overflow: hidden;
  }
  
  .video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
  }
  
  .video-bg iframe {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 60vw;
  }
  @media screen and (max-width: 1080px) {
    .video-bg iframe {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 50vw;
      }
}
@media screen and (max-width: 680px) {
    .video-bg iframe {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 60vw;
      }
}
@media screen and (max-width: 376px) {
    .video-bg iframe {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 70vw;
      }
}
@media screen and (max-width: 325px) {
    .video-bg iframe {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 60vw;
      }
}
  
  
.wrap p{
    font-size:1.3rem;
    text-align: right;  
}
@media screen and (max-width: 680px) {
    .wrap p{
        font-size:1.0rem;
        text-align: right;  
}
}



.wrap-text{
    width:80%;
    padding:30px 0 0 0;
}
@media screen and (max-width: 1080px) {
    .wrap-text{
        width:90%;
        padding:0;
    }
}
@media screen and (max-width: 900px) {
    .wrap-text{
        width:90%;
        padding:0 10px 0 0;
    }
}
@media screen and (max-width: 680px) {
    .wrap-text{
        width:90%;
        padding:20px 10px 0 0;
    }
}
@media screen and (max-width: 500px) {
    .wrap-text{
        width:90%;
        padding:0;
    }
}



  .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
  }
  
  .container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
  }
  
  .title {
    text-align: center;
    font-size: 2.5vw;
  }


/* -----------//video----------- */




/* -----------schroll trigger----------- */

/* ↓スライダーの矢印変更 ここから */
.slick-dots li button:before {
    font-size: 50px;
    line-height: 40px;
}

.slick-prev {
    left: 25px;
}

.slick-next{
    right:25px;
}

.slick-prev:before {
    content: '<';
}

.slick-next:before{
    content: '>';
}

.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 40px;
    line-height: 1;
    opacity: .75;
    color: #999999;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.slick-prev.slick-disabled,
.slick-next.slick-disabled {
    opacity: .3;
}
 
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 1;
}
/* ↑スライダーの矢印変更 ここまで */

@media screen and (max-width: 1080px) {
    .slick-prev {
        left: 15px;
    }

    .slick-next {
        right: 15px;
    }
}

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

    .slick-prev:before, .slick-next:before {
        font-size: 30px;
    }

    .slick-prev {
        left: -25px;
    }

    .slick-next {
        right: -25px;
    }


}

/* -----------footer----------- */

.footer{
    max-width:1000px;
    margin:0 auto;
}

.copywriter{
    font-family :YuMincho,'Yu Mincho','BIZ UDPMincho',serif;
    margin: 0 0 0 auto;
    font-size: 0.2rem;
    display: flex;
    justify-content: flex-end;

}




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





}
    





/* -----------//footer----------- */