@charset "UTF-8";
	
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}



body {
  font-family: 'Noto Sans JP', sans-serif;
}

p{
  line-height: 2;
  letter-spacing: 0.03em;
}









































body.page_top header {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

body.page_top span.sticky {
  height: 80px;
  width: 100%;
  position: fixed;
}

body.page_top span.skeleton {
  opacity: 0;
}




header .header {
  position: fixed;
  z-index: 100;
  width: 100%;
}



.header nav.gnav aside dl dt {
  position: relative;
  margin-top: 15px;
  font-size: 18px;
  color: #2e5681;
  padding: 5px;
  padding-bottom: 3px;
  padding-left: 7px;
  border-left: 4px solid #3B86E9;
  line-height: 1;
}

.header nav.gnav aside dl dt.gnav_top {
  margin-bottom: 10px;
}



div.menu dl {
  margin-bottom: 40px
}


dt a {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #000000;
}

.wrapper {
  position: relative;
  z-index: 0;
}



span.Soon {
  color: red;
}





.bg_img {

  text-indent: -9999px;
  vertical-align: bottom;
  background: url(../img/index/alter_trans_sp.png) no-repeat center 50%;
  background-size: cover;
  display: block;
  margin: auto;
  margin-bottom: 50px;
}

div.mainv figure.main_headSpace {
  margin-top: 150px;
}

header .heade {
  position: absolute;
  top: 30px;
  right: 130px;
  text-align: right;
}

header .header nav.gnav {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 1000px;
  overflow: hidden;
  display: none;
  width: 100%;
  z-index: 111;
}


header .header nav.gnav_pc {
  position: absolute;
  top: 30px;
  right: 130px;
  text-align: right;
}




.header nav.gnav_pc ul li {
  float: left;
  margin-left: 25px;
}

.sitelogo {
  position: relative;
  top: 15px;
  left: 30px;
}

body .header nav.gnav_pc ul li a {
  color: black;
}

ss .title_rogo {
  position: absolute;
  display: inline-block;
  top: 15px;
  left: 30px;
}


.mainv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: -25vh;
  z-index: -10;
}

------------------------------------- ------------------------------------ .gnavi {
  display: flex;
  flex-wrap: wrap;
  /*スマホ表示折り返し用なのでPCのみなら不要*/
  margin: 0 0 50px 0;
  list-style: none;
}

.sideNav_Sub {
  list-style: disc;
  padding-left: 35px;
}



.sideNav_Sub li::marker {
  font-size: 13px;
}

.gnavi dd a {
  display: block;
  text-decoration: none;
  color: #333;
}




ul.gnavi li a {
  position: relative;
  color: black;
}

ul.gnavi li.current a,
ul.gnavi li a:hover {
  color: #0481A2;
}

ul.gnavi li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 20%;
  width: 80%;
  height: 2px;
  background: #0481A2;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

.gnavi li.current a::after,
.gnavi li a:hover::after {
  transform: scale(1, 1);
}


------------------- #menuButton {

  width: 50px;
  height: 50px;

}

#menuButton {
  display: block;
  width: 80px;
  height: 80px;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 300;
  background: #3B86E9;
  opacity: 0.8;
}


#menuButton span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 25%;
  height: 3px;
  border-radius: 2px;
  background: #fff;
}


#menuButton span:nth-of-type(1) {
  top: 25px;
  width: 45%;
}

#menuButton span:nth-of-type(2) {
  top: 33px;
  width: 45%;
}

#menuButton span:nth-of-type(3) {
  top: 41px;
  width: 45%;
}


#menuButton.active span:nth-of-type(1) {
  top: 28px;
  left: 25px;
  transform: translateY(6px) rotate(-135deg);
  width: 40%;
}

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

#menuButton.active span:nth-of-type(3) {
  top: 40px;
  left: 25px;
  transform: translateY(-6px) rotate(135deg);
  width: 40%;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}