@charset "utf-8";

html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center, sup,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
  font-weight: normal;
	font-size: 100%;
	vertical-align: middle;
}

a, span{
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
  font-weight: normal;
	font-size: 100%;
}

article, aside, details, figcaption, figure, main,
footer, header, hgroup, menu, nav, section { display: block;}

blockquote, q { quotes: none;}

blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none;}
input, textarea{ margin: 0; padding: 0;}

ol, ul{ list-style:none;}
table{ border-collapse: collapse; border-spacing:0;}
caption, th{ text-align: left;}
a:focus { outline:none;}
.clearfix:after { content: "."; display: block; clear: both; height: 0; visibility: hidden;}

.clearfix { min-height: 1px;}
* html .clearfix { height: 1px; /*¥*//*/ height: auto; overflow: hidden; /**/}

.both{ clear:both;}
img { vertical-align:bottom; max-width: 100%;height: auto;}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/*----------------------------------------------------------------------------------------------
	base
----------------------------------------------------------------------------------------------*/
html {
  overflow-y: scroll;
  font-size:62.5%;
  padding:0;
  margin:0;
  width:100%;
  height:100%;
  -webkit-text-size-adjust: none;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
body {
  font-size: 16px;
	width:100%;
	overflow-x:hidden;/* はみ出し対策 */
	line-height:1.6;
  text-align: center;
  background: #000;
  color: #fff;
}
#wrap{ width:100%; height:100vh; position: relative;}
@media screen and (max-width: 767px) {
  #wrap{ padding: 0;}
  
}
a {
  -webkit-transition: .4s;
  transition: .4s;
}
a:link, a:visited {
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: .8;
}

/*----------------------------------------------------------------------------------------------
	common
----------------------------------------------------------------------------------------------*/
.mb05{ margin-bottom:5px;}
.mb10{ margin-bottom:10px;}
.mb15{ margin-bottom:15px;}
.mb20{ margin-bottom:20px;}
.mb25{ margin-bottom:25px;}
.mb30{ margin-bottom:30px;}
.mb35{ margin-bottom:35px;}
.mb40{ margin-bottom:40px;}

.fLeft{ float:left;}
.fRight{ float:right;}

.percent33{ width:33%;}
.percent34{ width:34%;}
.percent46{ width:46%;}
.percent50{ width:50%; margin-left:auto; margin-right:auto;}
.percent60{ width:60%; margin-left:auto; margin-right:auto;}
.percent64{ width:64%; margin-left:auto; margin-right:auto;}
.percent75{ width:75%; margin-left:auto; margin-right:auto;}
.percent84{ width:84%; margin-left:auto; margin-right:auto;}
.percent94{ width:94%; margin-left:auto; margin-right:auto;}


.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.flex--center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.fw-no {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.jc-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.jc-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.jc-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.jc-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.jc-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.jc-evenly {
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

@media screen and (max-width: 767px) {
    .jc-sp-center {
        -webkit-box-pack:center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .jc-sp-start {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .jc-sp-end {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .jc-sp-between {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .jc-sp-around {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .jc-sp-evenly {
        -webkit-box-pack: space-evenly;
        -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly
    }
}

.ai-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.ai-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.ai-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end
}

@media screen and (max-width: 767px) {
    .ai-sp-center {
        -webkit-box-align:center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .ai-sp-start {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .ai-sp-end {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

.fd-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.fd-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.fd-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.fd-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

@media screen and (max-width: 767px) {
    .fd-sp-row {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .fd-sp-row-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }

    .fd-sp-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .fd-sp-column-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}


.btn-set {
  padding: 30px 0;
}
.btn {
    display: inline-block;
    position: relative;
    width: 160px;
    padding: 7px 0;
    font-size: 14px;
    text-align: center;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in;
    background-color: rgba(255,255,255,0.00);
    color: #fff;
  border: 1px solid #fff;
}
.btn-01 {
  margin-right: 20px;
}

.btn:hover {
    opacity: .8;
}

.btn:before {
    content: '';
    position: absolute;
    top: calc(50% - 5px/2);
    right: 10px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

.btn:hover:before {
    right: 5px
}
.id_logo {
  padding: 15vh 0 4vh;
}
.f_copy {
  text-align: center;
  margin-top: 20px;
}

.sns {
  margin: 0 auto;
}
.sns li {
  text-align: left;
  font-size: 20px;
  margin: .5em;
  display: inline-block;
}
.sns li a {
  display: block;
  padding: .2em 0;
}
.sns [class^="icon-"]:before, .sns [class*=" icon-"]:before {
  margin-right: 0;
}
.f_copy small {
  font-size: 10px;
}

@media screen and (max-width: 767px) {
    .id_logo {
      padding: 7vh 0 3vh;
    }
    .f_copy {
      position: relative;
      left: inherit;
      bottom: inherit;
      transform: translateX(0);
      margin-bottom: 10px;
      padding-top: 10px;
    }
    .btn {
        font-size:calc(16px*0.8);
        width: 100%
    }
    .btn-01 {
      margin-right: 0;
      margin-bottom: 20px;
    }
}
img {
  width: 100%;
}
.top_img {
  margin: 0 auto;
}
.map {
  margin: 60px auto 30px;
}
.map iframe {
  width: 100%;
  height: 500px;
}