@charset "utf-8";

/** Reset
---------------------------------------- */
html,body,div,span,p,blockquote,pre,applet,object,iframe,a,abbr,acronym,address,big,cite,code,h1,h2,h3,h4,h5,h6,dl,dt,dd,ol,ul,li,table,caption,tbody,tfoot,thead,tr,th,td,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,fieldset,form,label,legend,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
  display: block;
}
body{
  line-height: 1;
}
blockquote,q{
  quotes: none;
}
blockquote:before,blockquote:after,q:before,q:after{
  content: "";
  content: none;
}
table{
  border-collapse: collapse;
  border-spacing: 0;
}
a{
  outline: none;
}
html,body{
  width: 100%;
}
html{
  font-size: 62.5%;
}
body{
  -webkit-text-size-adjust: none;
  word-wrap: break-word;
}
iframe{
  max-width: 100%;
}
img{
  max-width: 100%;
  height: auto;
}



/** Effect - submenu
---------------------------------------- */

/** ふわっと表示 */
.submenu-effect01 li ul{
  transition: all .5s ease;
}

/** サブメニュー自体が下へ移動しながら表示 */
.submenu-effect02 li ul{
  opacity: 0;
  top: 50%;
  visibility: hidden;
  transition: .5s;
}
.submenu-effect02 li:hover ul{
  top: 100%;
  visibility: visible;
  opacity: 1;
}

/** 奥から手前にめくれてくる */
.submenu-effect03 > li{
perspective: 400px;
}
.submenu-effect03 li ul{
visibility: hidden;
transform: rotateX(-90deg);
transform-origin: 50% 0;
transition: .3s;
}
.submenu-effect03 li:hover ul{
visibility: visible;
transform: rotateX(0);
}


/** Effect - Button
---------------------------------------- */

/** スライドして塗りつぶす */
.btnEffect01 {
  border:solid 2px #101649;
  background-color: #FFF;
  color: #101649;
  background-size: 200% 100%;	
  background-image: -webkit-linear-gradient(left, transparent 50%, rgba(16, 23, 73, 1) 50%);	
  background-image: linear-gradient(to right, transparent 50%, rgba(16, 23, 73, 1) 50%);
  -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
  transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
}
.btnEffect01:hover {
  background-color: #101649;
  color: #FFF;
  background-position: -100% 100%;
}

/** 輝き */
.btnEffect02 {
  position: relative;
  color: #fff !important;
}
.btnEffect02:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -71px;
  opacity: .2;
  position: absolute;
  top: -63px;
  -webkit-transform: rotate(41deg);
  transform: rotate(41deg);
  -webkit-transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 1;
}
.btnEffect02:hover:after {
  left: 120%;
  -webkit-transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
}

/** ブルブル震える */
.btnEffect03:hover {
  animation: hoverShake 0.15s linear 3;
  opacity: 0.8;
}
@keyframes hoverShake {
  0% {transform: skew(0deg,0deg);}
  25% {transform: skew(1deg, 1deg);}
  75% {transform: skew(-1deg, -1deg);}
  100% {transform: skew(0deg,0deg);}
}


/** 塗りつぶしから上下のボーダーに変化 */
.btnEffect04{
  border:none;
  position:relative;
  cursor:pointer;
  transition:800ms ease all;
  outline:none;
}
.btnEffect04:hover{
  background:#fff;
  color:#101649;
}
.btnEffect04:before,.btnEffect04:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #101649;
  transition:400ms ease all;
}
.btnEffect04:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.btnEffect04:hover:before,.btnEffect04:hover:after{
  width:100%;
  transition:800ms ease all;
}

/** Effect
---------------------------------------- */

/** 透明に近づける */
.effect01{
  transition: all 0.3s ease 0s;
}
.effect01:hover {
  opacity: 0.6;
}

/** 拡大 */
.effect02{
  transition: all 0.6s ease 0s;
}
.effect02:hover {
  transform: scale(1.1, 1.1);
}

/** モーフィング（回転して円形に） */
.effect03 {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.effect03:hover {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
	border-radius: 10%;
}


/** グレースケールからカラーに */
.effect04 {
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
.effect04:hover {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}


/** ぼかし */
.effect05{
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-filter: blur(20px);
	filter: blunnnnnnnr(20px);
}
.effect05:hover {
	-webkit-filter: blur(0px);
	filter: blur(0px);
}

/** 傾き */
.effect06{
  transform:rotate(0) scale(1);
  -webkit-transform:rotate(0) scale(1);
}
.effect06:hover{
  transition:all 0.6s ease;
  transform:rotate(45deg) scale(1.5);
  -webkit-transform:rotate(45deg) scale(1.5);
}

/** ふわふわ上下 */
.effect07:hover{
  animation: fuwafuwa 4s infinite;
}
@keyframes fuwafuwa {
  0% { transform:translateY(0px); }
  50% { transform:translateY(20px); }
  100% { transform:translateY(  0px); }
}

/** ブルブル震える */
.effect08:hover{
  display: inline-block;
  animation: hurueru .1s  infinite;
}
@keyframes hurueru {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(2px, 2px) rotateZ(1deg)}
  50% {transform: translate(0px, 2px) rotateZ(0deg)}
  75% {transform: translate(2px, 0px) rotateZ(-1deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}


/** Effect - Text
---------------------------------------- */

.textdisplay{
  position: relative;
  overflow: hidden;
}
.textdisplay img{
  display: block
}
.hovermask{
  position: absolute;
  top: 0;right: 0;left: 0;bottom: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  color: #fff;
  padding: 30px;
  display:-webkit-box;display:-moz-box;display:-webkit-flexbox;display:-moz-flexbox;display:-ms-flexbox;display:-webkit-flex;display:-moz-flex;display:flex;
  -webkit-align-items: center;-ms-flex-align: center;align-items: center;
  text-align: center;
  -webkit-box-sizing: border-box;-moz-box-sizing: border-box;-o-box-sizing: border-box;-ms-box-sizing: border-box;box-sizing: border-box;
}

/** ふわっと表示 */
.textdisplay:hover .tdeffect01{
  opacity: 1;
  transition:all 0.6s ease;
} 

/** 上からふわっと表示 */
.tdeffect02{
  padding-top: 0;
}
.textdisplay:hover .tdeffect02{
  opacity: 1;
  transition: all 0.6s ease;
  padding-top: 30px;
} 

/** 下からふわっと表示 */
.tdeffect03{
  padding-bottom: 0;
}
.textdisplay:hover .tdeffect03{
  opacity: 1;
  transition: all 0.6s ease;
  padding-bottom: 30px;
} 

/** 左からスライドして表示 */
.tdeffect04{
  left: -100%;
}
.textdisplay:hover .tdeffect04{
  opacity: 1;
  transition:all 0.6s ease;
  left: 0;
  width: 100%;
} 

/** 右からスライドして表示 */
.tdeffect05{
  left: 100%;
}
.textdisplay:hover .tdeffect05{
  opacity: 1;
  transition:all 0.6s ease;
  left: 0;
  width: 100%;
} 

/** 回転して表示 */
.tdeffect06 .txt{
  transform: rotate(90deg) scale(3);
}
.textdisplay:hover .tdeffect06{
  opacity: 1;
  transition:all 0.6s ease;
} 
.textdisplay:hover .tdeffect06 .txt{
  transform: rotate(360deg) scale(1);
  transition:all 0.6s ease;
} 


/** 背景固定
---------------------------------------- */
#fix_bg{
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
}

/** Page top move button
---------------------------------------- */
#pagetop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 98;
}
#pagetop a {
  background-color:#333;
  display: block;
  color: #fff;
  border-radius:10px;
  padding: 10px 20px;
  text-decoration: none;
}

/** BlinkingIcon
---------------------------------------- */
.blinking {
  -webkit-animation: blink 0.7s ease-in-out infinite alternate;
  -moz-animation: blink 0.7s ease-in-out infinite alternate;
  animation: blink 0.7s ease-in-out infinite alternate;
  color: #ffffff;
  background-color: #f00;
  font-size:10px;font-size:1.0rem;
  margin-right: 6px;
  padding: 2px 4px;
  display: inline-block;
  border-radius:3px;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: middle;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



.headersp_menubtn {
  line-height: 1;
  font-size: 1.2rem;
  text-align: center
}

.hamburger_btn {
  width: 40px;
  height: 34px;
  cursor: pointer;
  z-index: 10;
  position: relative;
  display: block;
  letter-spacing: normal
}

.hamburger_btn .bhline1 {
  top: 0
}

.hamburger_btn .bhline2 {
  top: 12px
}

.hamburger_btn .bhline3 {
  top: 24px
}

.hamburger_btn .bhline1,
.bhline2,
.bhline3 {
  width: 40px;
  height: 2px;
  background-color: #5a5a5a;
  position: absolute;
  transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -webkit-transition: all .5s ease-out;
  -ms-transition: all .5s ease-out
}

.hamburger_btn .menuclick1 {
  top: 14px;
  width: 40px;
  -moz-transform: rotate(215deg);
  -webkit-transform: rotate(215deg);
  -o-transform: rotate(215deg);
  -ms-transform: rotate(215deg);
  transform: rotate(215deg)
}

.hamburger_btn .menuclick2 {
  opacity: 0
}

.hamburger_btn .menuclick3 {
  width: 40px;
  top: 14px;
  -moz-transform: rotate(-215deg);
  -webkit-transform: rotate(-215deg);
  -o-transform: rotate(-215deg);
  -ms-transform: rotate(-215deg);
  transform: rotate(-215deg)
}

#menuTitleOpen {
  width: 40px;
  margin: 10px auto;
  text-align: center
}

#menuTitleClose {
  width: 40px;
  margin: 10px auto;
  text-align: center;
  display: none
}

.img-menu-btn {
  cursor: pointer;
  background: url(../images/icon_menu.png) no-repeat center center;
  width: 48px;
  height: 48px;
  border: solid 1px #dfdfdf;
  background-size: 50px 50px;
  display: inline-block
}

.imgCloseBtn {
  background: url(../images/icon_menuclose.png) no-repeat center center;
  width: 48px;
  height: 48px;
  background-size: 50px 50px
}

.textMenuBtn {
  cursor: pointer
}

@media screen and (max-width:500px) {
  .fade {
    display: none
  }

  .fullview {
    position: fixed;
    z-index: 10;
    display: none;
    top: 0;
    overflow-y: scroll;
    width: 100%;
    height: 100%
  }

  .verticalslide {
    display: none
  }

  .verticalslide #menu-scroll {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
  }

  .lateralSlideRight {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
    overflow: hidden;
    -moz-transform: translateX(340px);
    -ms-transform: translateX(340px);
    -webkit-transform: translateX(340px);
    transform: translateX(340px);
    -moz-transition: -moz-transform 200ms ease;
    -o-transition: -o-transform 200ms ease;
    -webkit-transition: -webkit-transform 200ms ease;
    transition: transform 200ms ease;
    width: 320px;
    height: 100%;
    min-width: 320px;
    box-shadow: 1px 1px 4px #8c8c8c;
    background-color: #fff
  }

  .lateralSlideRight.open {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  .lateralSlideRight #menu-scroll {
    box-sizing: border-box;
    position: relative;
    width: 340px;
    height: 100%;
    overflow-y: scroll;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
  }

  .lateralSlideLeft {
    width: 320px;
    height: 100%;
    min-width: 320px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    overflow: hidden;
    -moz-transform: translateX(0);
    -ms-transform: translateX(340px);
    -webkit-transform: translateX(340px);
    transform: translateX(-340px);
    -moz-transition: -moz-transform 200ms ease;
    -o-transition: -o-transform 200ms ease;
    -webkit-transition: -webkit-transform 200ms ease;
    transition: transform 200ms ease;
    box-shadow: 1px 1px 4px #8c8c8c;
    background-color: #fff
  }

  .lateralSlideLeft.open {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  .lateralSlideLeft #menu-scroll {
    box-sizing: border-box;
    width: 320px;
    height: 100%;
    overflow-y: scroll;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
  }
}





