@charset "UTF-8";

/* -------------------------------- 

Primary style

-------------------------------- */
body {
  font-size: 16px;
  line-height: 1.6;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  color: #3d3536;
  word-break: break-all;
  margin: 0;
}
a {
  color: #00BBC5;
  text-decoration: none;
  transition: color .5s;
}
video {
  /* iPhone safariの枠線を消す */
  filter: drop-shadow(0px 0px rgba(0,0,0,0));
  /* PCのChromeの枠線を消す */
  outline: none;
  border: none;
}

/* -------------------------------- 

改行

-------------------------------- */
.br_pc {
  display: block;
}
.br_sp {
    display: none;
}
@media screen and (max-width:640px) {
  .br_pc {
    display: none;
  }
  .br_sp {
      display: block;
  }
}

/* -------------------------------- 

padding and margin

-------------------------------- */

/* padding */

.pd_00 {padding: 0px;}
.pd_05 {padding: 5px;}
.pd_10 {padding: 10px;}
.pd_15 {padding: 15px;}
.pd_20 {padding: 20px;}

.pd_top_00 {padding-top: 0px;}
.pd_top_05 {padding-top: 5px;}
.pd_top_10 {padding-top: 10px;}
.pd_top_15 {padding-top: 15px;}
.pd_top_20 {padding-top: 20px;}

.pd_btm_00 {padding-bottom: 0px;}
.pd_btm_05 {padding-bottom: 5px;}
.pd_btm_10 {padding-bottom: 10px;}
.pd_btm_15 {padding-bottom: 15px;}
.pd_btm_20 {padding-bottom: 20px;}

.pd_r_00 {padding-right: 0px;}
.pd_r_05 {padding-right: 5px;}
.pd_r_10 {padding-right: 10px;}
.pd_r_15 {padding-right: 15px;}
.pd_r_20 {padding-right: 20px;}

.pd_l_00 {padding-left: 0px;}
.pd_l_05 {padding-left: 5px;}
.pd_l_10 {padding-left: 10px;}
.pd_l_15 {padding-left: 15px;}
.pd_l_20 {padding-left: 20px;}

/* margin */

.mg_center {
  margin: 0 auto;
}

.mg_00 {margin: 0px;}
.mg_05 {margin: 5px;}
.mg_10 {margin: 10px;}
.mg_15 {margin: 15px;}
.mg_20 {margin: 20px;}

.mg_top_00 {margin-top: 0px;}
.mg_top_05 {margin-top: 5px;}
.mg_top_10 {margin-top: 10px;}
.mg_top_15 {margin-top: 15px;}
.mg_top_20 {margin-top: 20px;}
.mg_top_30 {margin-top: 30px;}
.mg_top_40 {margin-top: 40px;}
.mg_top_50 {margin-top: 50px;}
.mg_top_60 {margin-top: 60px;}
.mg_top_70 {margin-top: 70px;}

.mg_btm_00 {margin-bottom: 0px;}
.mg_btm_05 {margin-bottom: 5px;}
.mg_btm_10 {margin-bottom: 10px;}
.mg_btm_15 {margin-bottom: 15px;}
.mg_btm_20 {margin-bottom: 20px;}
.mg_btm_30 {margin-bottom: 30px;}
.mg_btm_40 {margin-bottom: 40px;}

.mg_r_00 {margin-right: 0px;}
.mg_r_05 {margin-right: 5px;}
.mg_r_10 {margin-right: 10px;}
.mg_r_15 {margin-right: 15px;}
.mg_r_20 {margin-right: 20px;}

.mg_l_00 {margin-left: 0px;}
.mg_l_05 {margin-left: 5px;}
.mg_l_10 {margin-left: 10px;}
.mg_l_15 {margin-left: 15px;}
.mg_l_20 {margin-left: 20px;}

/* -------------------------------- 

text design

-------------------------------- */
.t_red {
  color: #ff0000;
}
.t_white {
  color: #fff;
}
.t_bold {
  font-weight: bold;
}
.t_center {
  text-align: center;
}
.marker {
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition:background-size 1.5s;
}
.marker.on {
  background-size: 100% 100%;
}
.marker_bule {
  background-image: linear-gradient(90deg, rgb(91, 238, 211), rgb(128, 147, 233));
}
.marker_pink {
  background-image: linear-gradient(90deg, rgb(245, 134, 236), rgb(238, 136, 136));
}
.marker_green {
  background-image: linear-gradient(90deg, rgb(180, 219, 74), rgb(102, 219, 91));
}
.top_brand_name {
  border-left: solid 7px #000;
}

/* -------------------------------- 

Button

-------------------------------- */

.btn_black{
    width:180px;
    height:40px;
    line-height:40px;
}
.btn_black a{
    display:block;
    width:100%;
    height:100%;
    text-decoration: none;
    background:#7ae6eb;
    text-align:center;
    border:1px solid #FFFFFF;
    color:#3d3536;
    border-radius:50px;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    box-shadow:0px 0px 0px 4px #3cc3c9 ;
    transition: all 0.5s ease;
}
.btn_black a:hover{
    background:#FFFFFF;
    color:#000000;
    margin-left:0px;
    margin-top:0px;
    border:1px solid #FFFFFF;
    box-shadow:0px 0px 0px 4px #000000 ;
}

/* -------------------------------- 

Page

-------------------------------- */
.wrap{
	width: 90%;
	margin: 0 auto;
}
@media screen and (min-width: 640px) {
	.wrap{
		width: 960px;
	}
}
/* -------- FV -------- */
.fv_logo {
  width: 200px;
  padding: 10px;
}
.fv_logo_otherpage {
  width: 200px;
  padding: 10px;
}
.catch-copy {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
}
.kv{
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.kv .main-copy{
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: .2em;
}
.kv .sub-copy{
  color: #fff;
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 640px) {
    .fv_logo {
      width: 400px;
      padding: 10px;
    }
    .kv{
        min-width: 960px;
    }
	.kv .main-copy{
		font-size: 60px;
	}
	.kv .sub-copy{
        font-size: 30px;
        margin-top: 10px;
	}
}
.fv_video{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    background: url(../img/top_kv_ani.jpg) no-repeat center/cover;
}
.fv_video::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(16, 57, 75, .3);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.fv_video video{
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.fv_video_pc {
  display: none;
}
.fv_video_sp {
  display: block;
}
@media screen and (min-width: 640px) {
    .fv_video_pc {
      display: block;
    }
    .fv_video_sp {
      display: none;
    }
    .fv_video{
        min-width: 960px;
    }
}

/* ------- main ------- */
main{
	padding: 80px 0;
}
main.otherpage {
	padding: 0;
}
main.otherpage .cont_block {
	margin-top: 20px;
}
.cont_block:not(:first-child){
	margin-top: 60px;
}
.cont_block h2{
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}

/* ------- contents ------- */
.cont_tit_wrap {
  background-color: #000;
}
.cont_tit_name {
  margin:0;
  text-align: center;
  color: #fff;
  border: solid 1px #fff;
}

/* -------------------------------- 

News

-------------------------------- */
.news_data {
  text-decoration: underline;
}
.news_tit {
  border-left: solid 1px #3d3536;
}



/* -------------------------------- 

Footer

-------------------------------- */
footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  text-align: center;
  margin: 50px 0 0 0;
  padding: 20px 0;
}