@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@charset "UTF-8";
body,
input,
textarea,
select,
button {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga", "kern";
}
* {
    margin: 0;
    padding: 0;
    border: none;
    list-style: none;
}
html {
    background-color: #fff;
    margin: auto;
    height: 100%;
}
body {
    width: 1000px;
    margin: 0 auto;
}
a{
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
a:hover{
    text-decoration: none;
    opacity: .5;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"
}

img{
    width: 100%;
}


/*-----------------
    typography 
-----------------*/
body{
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.3em;
    color: #000;
    font-weight: 400;
}
h1{

}
h2{

}
h3{

}
p{
	
}

/*-----------------
    LAYOUT 
-----------------*/
.flex_r{        
    display:-ms-flexbox;
    display:-webkit-box;
    display:-moz-box;
    display:box;
    display:-webkit-flex;
    display: flex;
    -moz-box-orient:horizontal;
    -webkit-box-orient:horizontal;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-align: start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -moz-box-pack:justify;
    -ms-box-pack:justify;
    box-pack:justify;
    flex-pack:justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.flex_c{        
    display:-ms-flexbox;
    display:-webkit-box;
    display:-moz-box;
    display:box;
    display:-webkit-flex;
    display: flex;
    -moz-box-orient:vertical;
    -webkit-box-orient:vertical;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-align: start;
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-box-pack:justify;
    -ms-box-pack:justify;
    box-pack:justify;
    flex-pack:justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}


/*-----------------
	HEADER 
-----------------*/
.globalHeader{
    /* background: url(../img/bg_2.jpg) repeat; */
    width: 100vw;
    height: 55px;
    padding: 0 16px;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
}

.globalHeader:after {
    background: url(../img/bg_2.jpg) repeat;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.globalHeader:hover:after {
    opacity: 1;
}
.globalHeader h1{
    width: 320px;
}
.globalHeader .palonline{
    width: 180px;
}

.globalHeader .headSns a {
    width: 30px;
    height: 30px;
    margin: 0 8px 0 0;
    /* background: #fff; */
    display: block;
    /* border: 1px #fff solid; */
    text-align: center;
}

.globalHeader .headSns a svg {
    height: 20px;
    margin: 6px 0 0 0;
    fill: #fff;
}

/*-----------------
    FOOTER 
-----------------*/
footer{
    height: 420px;
    background: url(../img/bg_2.jpg) repeat;

}

.woodlander{
    padding-top: 72px;
    width: 480px;
}
.russet{
    width: 120px;
}
footer p{
    font-size: 12px;
    color: #fff;
    padding-bottom: 40px;
}


/*-----------------
    FIRST 
-----------------*/
.video_wrapper{
    position: absolute;
    left: 0;
    width: 100vw;
}
video{
    position: fixed;
    right: 0;
    bottom: 0;
    /* min-width: 100%; */
    /* min-height: 100%; */
    width: 100%;
    height: 100%;
    z-index: -999;
    -o-object-fit: cover;
    object-fit: cover;
}
.sp_video{
    display: none;
}
.vCenterFixed {
    position: fixed;
    right: 0;
    top: 25%;
    height: 50%;
    justify-content: center;
    width: 40px;
    z-index: 9999;
}
.vCenterFixed_inner{
    font-family: 'Oswald', sans-serif;
    transform: rotate(90deg);
    width: 180px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: bold;
}
.modal_open{
    cursor: pointer;
}
.modal_content{
    opacity: 0;
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vh;
    top: 0;
    justify-content: center;
    background-color: rgba(000,000,000,0.4);
    z-index: -1;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out; 
}
.show{
    opacity: 1;
    z-index: 999999;
}
.modal_content_inner{
    padding: 72px;
    color: #000;
    width: 800px;
    /* height: 300px; */
    background: #fff;
    opacity: 0;
    position: relative;
    top: -50vh;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

.modal_content_inner img {
    width: 32%;
    float: right;
    margin: 0 0 16px 40px;
}
.show .modal_content_inner{
    opacity: 1;
    top: 0;
}
.close{
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 20px;
    cursor: pointer;
}
.modal_content_inner h2{
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 16px;
}
.modal_content_inner p{
    font-size: 12px;
    line-height: 1.6em;
}

/*-----------------
    BASIC 
-----------------*/
.headImg{
    height: 667px;
    background-size: cover;
    background-position: 50% 100%;
}
.content_border{
    border: 5px solid #fff;
    width: 800px;
    margin: 0 auto;
}
.content{
    background: #fff;
    /* width: 750px; */
    margin: 24px;
    text-align: center;
    padding: 0 0 24px 0;
}

.content.intro {
    background: transparent;
    position: relative;
    top: 35vh;
    left: 0;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}

.content_outer{
    width: 100%;
    left: 0;
}
.content .num{
    display: block;
    font-size: 14px;
    padding-top: 24px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    letter-spacing: 0.06em;
    color: #BEA574;
}
.content h2{
    margin-top: 8px;
    font-size: 62px;
    line-height: 1em;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.06em;
}
.content h3{
    margin: 24px auto;
    font-weight: normal;
}
.content h3 br{ display:none;}

.content p{
    text-align: left;
    font-size: 12px;
    width: 672px;
    margin: 0 auto;
}
.link a{
    font-size: 10px;
    border: 1px solid #000000;
    width: 36%;
    padding: 8px;
    margin: 24px auto 40px;
    display: block;
}
.link a{
    color: #000000;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.sns *{
    color: #B5B5B6;
    width: 16px;
    font-size: 10px;
    display: inline;
    margin: 0 8px;
}

/*-----------------
    MAIN 
-----------------*/
.main{
    position: absolute;
    background: #fff;
    width: 1000px;
    top: 100vh;
}
.main .content_outer{
    position: relative;
    top: -90px;
}
.second{
    z-index: 999;
}

.second>p.intro {
    padding: 64px 120px;
    line-height: 2.4em;
    font-size: 13px;
    overflow: hidden;
    background: #fff url(../img/bg_2.jpg) repeat;
    color: #fff;
    text-shadow: 0 1px 1px #000,0 1px 1px #000,0 1px 1px #000,0 1px 1px #000,0 1px 1px #000;
}
.default{
    margin-top: -32px;
}

.last .link a{
    font-size: 14px;
    background: #BEA574;
    width: 356px;
    padding: 16px;
    margin: 48px auto;
    border: none;
}
.last .link a{
    color: #fff;
}
.sqImg{
    width: 880px;
    flex-wrap: wrap;
    margin: 0 auto;
}
.sqImg li{
    width: 280px;
    margin-bottom: 24px;
}

/*-----------------
    SLIDER 
-----------------*/
.slide li{
    border: 1px solid #C9CACA;
}

.slide>li>a>img {
    height: 100%;
    max-height: 277px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.bx-wrapper{
    position: relative;
}
.slide_wrapper{
    height: 280px;
    margin-top: 40px;
}
.slide_outer{
    width: 1000px;
    position: absolute;
    left: 0;
}
.bx-wrapper .bx-controls-direction a{
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    z-index: 9999;
    font-size: 48px;
    color: #DCDDDD;
}
.bx-prev{
    left: -48px;
}
.bx-next{
    right: -48px;
}



/*-----------------
	FOOTER
-----------------*/


.linkhover a{
display: block;
width: 270px;
height: 40px;
margin: 15px auto;
line-height: 40px;
text-transform: uppercase;
text-align: center;
position: relative;
cursor: pointer;
font-family: 'Josefin Sans', sans-serif;
letter-spacing: 0.1em;
font-weight: 600;
font-size: 10px;
}

.linkhover a svg {
position: absolute;
top: 0;
left: 0;
}
.linkhover a svg rect{
fill: none;
stroke: rgba(0, 0, 0, 0.5);
stroke-width: 1;
}

.linkhover a:hover svg rect{
stroke: rgba(0, 0, 0, 1);;
}

.linkhover a svg rect {
stroke-dasharray: 400, 0;
-webkit-transition: all 0.8s ease-in-out;
-moz-transition: all 0.8s ease-in-out;
-ms-transition: all 0.8s ease-in-out;
-o-transition: all 0.8s ease-in-out;
}
.linkhover a:hover svg rect {
stroke-width: 4;
stroke-dasharray:135,500;
stroke-dashoffset:-197%;
-webkit-transition: all 0.8s ease-in-out;
-moz-transition: all 0.8s ease-in-out;
-ms-transition: all 0.8s ease-in-out;
-o-transition: all 0.8s ease-in-out;
}


.lb {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.7);
    opacity: 0;
    transition: .3s opacity ease;
    z-index: -1;
    pointer-events: all;
}
.lb:hover {opacity: 0;}

.lb img {display: none;
    width: auto !important;
    max-height: 100%!important;
    transform: scale(.7);
    transition: .4s transform ease;
    pointer-events: none;
}

.lb:target {display: flex;
pointer-events: auto;
    opacity: 1;
    z-index: 9999999;
}

.lb:target img {display: block;
    transform: scale(1);
}

.lb::before,.lb::after {
    display: block;
    position: fixed;
    content: "";
    width: 24px;
    height:3px;
    top: 24px;
    right: 12px;
    background: #fff;
    border-radius: 4px;
}
.lb::before {
    transform: rotate(-315deg);
}
.lb::after {
    transform: rotate(315deg);
}

.arrow-up.icon {
  color: #fff;
  border: 1px solid #fff;
  width: 32px;
  height: 32px;
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: transparent;
}

.arrow-up.icon:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -3px 0 0 -6px;
  width: 12px;
  height: 12px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}




/*-----------------
	MEDIA QUERIES 
-----------------*/
@media screen and (min-width: 1900px){
}

@media screen and (max-width: 1000px){
.lb img {
    max-height:auto!important;
    max-width: 100%!important;
}

    .spflex_r{        
        display:-ms-flexbox;
        display:-webkit-box;
        display:-moz-box;
        display:box;
        display:-webkit-flex;
        display: flex;
        -moz-box-orient:horizontal;
        -webkit-box-orient:horizontal;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-align: start;
        -webkit-flex-direction: row;
        flex-direction: row;
        -moz-box-pack:justify;
        -ms-box-pack:justify;
        box-pack:justify;
        flex-pack:justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .spflex_c{        
        display:-ms-flexbox;
        display:-webkit-box;
        display:-moz-box;
        display:box;
        display:-webkit-flex;
        display: flex;
        -moz-box-orient:vertical;
        -webkit-box-orient:vertical;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-align: start;
        -webkit-flex-direction: column;
        flex-direction: column;
        -moz-box-pack:justify;
        -ms-box-pack:justify;
        box-pack:justify;
        flex-pack:justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    body{
        width: 100vw;
        overflow: hidden;
    }
    body,
    .globalHeader,
    .main,
    .slide_outer,
    .content p,
    .sqImg{
        width: 100%;
    }

.main {
    position: initial;
    margin-top: 0;
}
    .globalHeader{
        padding: 12px 16px 16px;
        background: url(../img/bg_2.jpg) repeat;
        height: auto;
        position: inherit;
        top: inherit;
        left: inherit;
    }
    .globalHeader .h1,
    .globalHeader .palonline{
        width: auto;
    }
    .globalHeader nav ul{
        justify-content: flex-end;
    }
    .globalHeader .palonline{
        width: 80%;
    }
    .headSns{
        display: none;
    }
    .sound_on{
        display: none;
    }
    .vCenterFixed_inner{
        width: 110px;
    }
    .modal_content_inner{
        width: 96%;
        height: auto;
        padding: 24px;
    }

.modal_content_inner img {
    width: 60%;
    display: block;
    margin: 16px auto;
    float: none;
}
    .sp_video{
        display: block;
    }
    .sp_video_icon{
        position: absolute;
        top: calc(50vw + 32px);
        left: calc(50% - 32px);
        z-index: 999;
    }
    .video_wrapper{
        position: initial;
        height: 100vw;
    }
    video {
        display: none;
        position: initial;
        width: auto;
        height: 100vw;
    }
    .headImg{
        height: 100vw;
        background-position: 50%;
    }
    .first .content_outer{
        top: 104vw;
        width: auto;
        height: auto;
        display: block;
    }
    .content_outer{
        top: 94vw;
        width: 100%;
        overflow: hidden;
    }
    .content_border{
        width: 96%;
    }
    .content{
        width: auto;
        margin: 8px;
    }
.content.intro {
    background: transparent;
    position:inherit;
    top:inherit;
    left:inherit;
}
    .content .num{
        padding-top: 16px;
    }
    .content h2{
        font-size: calc(24px + 1.2vw);
    }
    .content h3{
        font-size: calc(10px + 1.2vw);
        margin: 16px auto 8px;
        padding: 0 8px;
    }
    .content h3 br{ display:block;}
    .content p{
        font-size: calc(10px + 0.3vw);
        padding: 8px;
    }
    .bx-wrapper .bx-controls-direction a{
        display: none;
    }
    .slide_outer{
        width: 150%;
        left: -25%;
    }
    .slide li img {
        max-height: initial;
    }
.slide_wrapper{
    height:230px;
}

    .second{
        margin: 0;
    }

.second>p.intro {
    padding:40px 30px;
    line-height: inherit;
    font-size: 12px;
}

    .default {
        margin-top: -56px;
    }
    .main .content_outer{
        top: -64px;
    }
    .link a{
        width: 70%;
    }
    .last .link {
        width: 230px;
        padding: 8px;
        font-size: 12px;
    }
    .sqImg li{
        width: 30%;
    }
    footer{
        height: 332px;
    }
    footer .woodlander{
        width: 50%;
        padding-top: 40px;
    }
    footer p{
        font-size: 11px;
        padding-bottom: 16px;
    }
    footer .russet{
        width: 30%;
    }

.arrow-up.icon {
  border: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  width: 100vw;
  height: 40px;
  position: relative;
  bottom: auto;
  right: auto;
  background-color: transparent;
  margin: 0;
}

.arrow-up.icon:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -3px 0 0 -6px;
  width: 12px;
  height: 12px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}




}

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

}

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

}

