@import url('https://fonts.googleapis.com/css?family=Source+Serif+Pro');


/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}

body{
	font: 14px/1.9 'Source Serif Pro', serif;
	font-weight: 300;
	-webkit-text-size-adjust:100%;
	overflow-x: hidden;
	color: #000;
/*	background-color: #D8D3C1;
*/	background-color: #02172d;
}
/* 共通
------------------------------------------------------------*/

img{
	width: 100%;
	height: auto;
}
a{
	color: #0066ff;
	text-decoration: none;
}

a:hover, .active{
  _text-decoration: underline;
}

a:active, a:focus,input:active, input:focus{outline:0;}


.titleimg{
	width: auto;
	margin: 3% 0% 0% 0%;
	position: relative;
}
/*------------↓タブレット用------------------*/
@media screen and (max-width: 1024px) {
	.titleimg{
	margin: 5% 0% 0% 0%;
	}
}
/*------------↑タブレット用------------------*/
.titleimg {
	/* じわっと画像が表示される */
 	animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 5s ease 0s 1 normal;
}
 
/* じわっと画像が表示される ---------　一度追加していたら不要*/
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}
 
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.title{
	width: 40%;
	position: absolute;
	display: block;
	top:120px;
	right:15px;
 	animation: titleanime 3.5s ease ;
}
@keyframes titleanime { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {
		opacity: 0;
	} /* 始め */
	50%{
		opacity: 0;
	}
    100% {
		opacity: 1;
	} /* 終わり */
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

/* nav
------------------------------------------------------------*/
.inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
}
 
.inner:after {
  content:"";
  clear: both;
  display: block;
}
 
/*--------header-----------*/
 
#top-head {
  top: -100px;
  position: absolute;
  width: 100%;
  margin: 100px auto 0;
  padding: 25px 0 0;
  line-height: 1;
  z-index: 999;
}
 
#top-head a,
#top-head {
    color: #000000;
    text-decoration: none;
}
 
#top-head .inner {
    position: relative;
}
#top-head .logo {
    float: left;
    position: relative;
    font-size: 10px;
    height: 70px;
}
 
#top-head .logo a {
  position: absolute;
  width: 100%;
  height: 50px;
}
 
#global-nav ul {
    list-style: none;
    position: absolute;
    top: 30px;
    right: 0;
    font-size: 12px;
}
#global-nav ul li {
    float: left;
    padding:0 25px;
    border-left: 1px solid #000;
}
#global-nav ul li a {
    padding: 5px 5px;
    position: relative;
    display: inline-block;
}
 
#global-nav ul li a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 2px;
   -webkit-transform: scaleX(0);
   -ms-transform: scaleX(0);
   transform: scaleX(0);
   background-color: #fff;
   -webkit-transition: all .3s ease;
   transition: all .3s ease;
}
 
#global-nav ul li a:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
 
nav span{
    background:#666;
    height:2px;
    display:block;
    position:relative;
    width:50px;
    left:0;
}
 
 
/*--------固定化されたときのCSS-----------*/
 
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    background: #fff;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
 
#top-head.fixed .logo {
	position: relative;
	font-size: 13px;
    color: #000000;
}
 
#top-head.fixed .logo a {
  position: absolute;
  width: 90%;
  height: 30px;
}
#top-head.fixed .logo a img{
	padding-bottom: 20%
}
#top-head.fixed #global-nav ul li a {
    color: #000000;
    padding: 0 5px;
    padding-bottom: 5px;
}
 
/*-----------スマホのトグルボタンのCSS-------------*/
 
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #999;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}
 
/*---------gnav sp--------------*/

/*-----------スマホ-------------*/
@media screen and (max-width: 767px) {
    .head-inner {
      display: none;
    }
 
    .slick-next {
      right: 0;
    }
 
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        background: #fff;
        width: 100%;
        height: 40px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 13px;
        height: 56px;
        top: 15px;
        color: #333;
        font-size: 26px;
    }
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
        background: #999999;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: none;
        position: static;
        padding: 18px 0;
        color: #fff;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 18px 0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
}
 
/*------------タブレット用------------------*/
 
@media screen and (max-width: 1024px) {
  .head-inner {
    display: none;
  }
 
  .slick-next {
    right: 0;
  }
 
  #top-head,
  .inner {
      width: 100%;
      padding: 0;
  }
  #top-head {
      top: 0;
      position: fixed;
      margin-top: 0;
  }
  /* Fixed reset */
  #top-head.fixed {
      padding-top: 0;
      background: transparent;
  }
  #mobile-head {
      background-color: rgba(255,255,255,0);
      width: 100%;
      height: 52px;
      z-index: 999;
      position: relative;
  }
  #top-head.fixed .logo,
  #top-head .logo {
      position: absolute;
      left: 13px;
      height: 50px;
      top: -3px;
      color: #333;
      font-size: 25px;
  }

  #global-nav {
      position: absolute;
      /* 開いてないときは画面外に配置 */
      top: -482px;
      background-color: rgba(0,0,0,0.6);
	  width: 100%;
      text-align: center;
      padding: 0px 0;
      -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
  }
  #global-nav ul {
      list-style: none;
      position: static;
      right: 0;
      bottom: 0;
      font-size: 14px;
  }
  #global-nav ul li {
      float: none;
      position: static;
      padding: 5px 0;
      color: #fff;
  }
  #top-head #global-nav ul li a,
  #top-head.fixed #global-nav ul li a {
      width: 100%;
      display: block;
      color: #fff;
      padding: 18px 0;
  }
  #nav-toggle {
      display: block;
      right: 25px;
      top: 20px;
  }
  /* #nav-toggle 切り替えアニメーション */
  .open #nav-toggle span:nth-child(1) {
      top: 11px;
      -webkit-transform: rotate(315deg);
      -moz-transform: rotate(315deg);
      transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
      width: 0;
      left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
      top: 11px;
      -webkit-transform: rotate(-315deg);
      -moz-transform: rotate(-315deg);
      transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
      /* #global-nav top + #mobile-head height */
      -moz-transform: translateY(556px);
      -webkit-transform: translateY(556px);
      transform: translateY(556px);
  }
}
/*navのホバーエフェクト--------------------------------------*/
li a {
  position: relative;
  display: inline-block;
  transition: 0.5s;
}
li a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  border-bottom: solid 1px #535353;
  transition: 0.5s;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

li a:hover::after {
  width: 100%;
}
/*navのホバーエフェクト--------------------------------------*/
/* nav↑
------------------------------------------------------------*/

/*ポップアップ↓*/
h4{
	color: #8E817F;
	font-size: 1.5em;
}
.pimg img{
	width: 45%;
}
.modal-content p{
	color: #8E817F;
}
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 600px;
  padding: 30px 30px 15px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  text-align: left
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}

/*ポップアップ↑*/




.text1{
	color: #0C0C0C;
	text-align: center;
	margin: 1%;
	font-size: 1.9vw;
}
@media screen and (max-width: 767px) {
	.text1{
		color: #353642;
		text-align: center;
		margin: 11%;
		font-size: 3.5vw;
	}
}
.maillik{
	width: 90%;
	margin: auto;
}
.maillik img{
	opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.maillik:hover img{
	opacity: .4;
}


.maillik2{
	width: 50%;
	margin: auto;
}
.maillik2 img{
	opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.maillik2:hover img{
	opacity: .4;
}


.point0{
	margin-top: 0%;
}
.point{
	margin-top: 0%;
}

/* SEC05 PROFILE
------------------------------------------------------------*/




#sec05{
	padding-top: 30px;
	background-color: #01172D;
	font-size: 1.3em;
	color: #fff;
}
#sec05 dl{
	line-height: 1.2;
}

#sec05 dt{
	clear: left;
	float: left;
	display: block;
	width: 25%;
	margin-right: 10%;
	margin-bottom: 2%;
	text-align: right;
	line-height: 1.6em;
}

#sec05 dd{
	width: 60%;
	float: left;
	text-align: left;
	line-height: 1.6em;
}

#sec05 header{
	display: none;
}



/* フッター
------------------------------------------------------------*/
#footer{
	width: 100%;
	clear: both;
	text-align: center;
	font-size: 10px;
	margin-top: 2%;
}
