@charset "UTF-8";

/*common*/
.red {
  color: #d9271d;
}
.yellow{
  color: #fff600;
}
.white{
  color: #fff;
}
.line{
  background:linear-gradient(transparent 50%, #faff81 50%);
}
.b_line{
  background:linear-gradient(transparent 0%, #002a68 0%);
  padding: 10px 5px;
  color: #fff;
}
.red_line{
  background:linear-gradient(transparent 0%, #e32b00 0%);
  padding: 10px 5px;
  color: #fff;
}
.y_line{
  background:linear-gradient(transparent 0%, #fff600 0%);
  padding: 10px 5px;
  color: #002a68;
}
.w_line{
  background:linear-gradient(transparent 0%, #fff 0%);
  padding: 10px 5px;
  color: #002a68;
}
.under{
  text-decoration: underline;
  text-underline-offset: 5px;
}
.center{
  text-align: center;
  margin: auto;
}
.right{
  text-align: right;
}
.f_m{
  font-family: 'Noto Serif JP', serif;
}
.fs{
  font-size: 0.8em;
}
.fm{
  font-size: 1.1em;
}
.fl{
  font-size: 1.3em;
}
.fl2{
  font-size: 1.4em;
}
.fl3{
  font-size: 2em;
}
.flex{
  display:flex;
  align-items: center;
}
.fleximg{margin-right: 3%;}
.whiteBox{
  background: #fff;
  padding: 4%;
  border: 1px solid #eee;
  filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.2));  
}


.btn{
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin:center;
}
@keyframes anime1 {
  from {
    transform: scale(0.9,0.9);
  }
  to {
    transform: scale(1,1);}
}


.btnBox { position: relative; overflow: hidden; margin: 0 auto }
.btnBox span { height: 100%; width: 30px; background: #fff; position: absolute; left: 0; opacity: 0; transform: rotate(45deg); animation: shine 3s ease-in-out infinite; -webkit-transform: rotate(45deg); -webkit-animation: shine 3s ease-in-out infinite }
@keyframes shine {
	0% { transform: scale(0) rotate(45deg); opacity: 0 }
	80% { transform: scale(0) rotate(45deg); opacity: 0.3 }
	81% { transform: scale(4) rotate(45deg); opacity: 0.5 }
	100% { transform: scale(50) rotate(45deg); opacity: 0 }
}
@-webkit-keyframes shine {
	0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0 }
	80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.3 }
	81% { -webkit-transform: scale(4) rotate(45deg); opacity: 0.5 }
	100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0 }
}
.cv_wrap .cv_txt{
  margin-bottom: 1%;
}
.cv_wrap{
  background: url(../img/cv_bg.png) no-repeat;
  background-size: cover;
  text-align:center;
  padding: 4% 2% 3%;
  color: #fff;
  line-height: 1.4;
  font-size: 0.8em;
}
.cv_wrap strong{
  color: #fffd2c;
}
.blinking{
  margin-bottom: 1%;
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-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;}
}
#main{
  overflow: hidden;
}

.cont_wrap{
  width: 900px;
  margin: auto;
}
.cont_wrap p{
  margin-bottom: 5%;
}
img.imgcenter{
  width: 100%;
}  

.bg{
  background: url(../img/bg2.png) no-repeat;
  background-size: cover;
}
/*pagetop*/
 div#pagetop{ 
  position:fixed; 
  bottom:100px;
  right:0px;
  z-index: 10;
 } 
#btnfix .pagetop{
  z-index: 100;
  position:fixed;
  bottom:10%;
  right: 0px !important;  
}
#btnfix .linkfix{
  position:fixed;
  bottom:0px;
  width: 100%;
  background: #db4524;
  text-align: center;
  display: flex;
  height: 80px;
  justify-content: center;
  align-items: center;
  align-items: center;
  border-bottom: 8px solid #a21d00;
  background-image: linear-gradient(180deg, rgba(250, 60, 30, 1), rgba(219, 69, 36, 1));
}
#btnfix .linkfix img{
  width: 60%;
}

/*header*/
header{
}
h1,h2{
  text-align: center;
  padding: 0 0 4% 0;
}
h1 img{
  width:100%;
}

.title {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  position: relative;
  padding: .5em .7em .4em;
  border-bottom: 3px solid #d9271d;
  margin-bottom: 3%;
}

.title::before,
.title::after {
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

.title::before {
    background-color: #d9271d;
}

.title::after {
    bottom: -11px;
    background-color: #fff;
}


.title2 {
    position: relative;
    color: #333333;
    -webkit-box-reflect: below -5px -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, .5));
    font-weight: bold;
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 14%;
    line-height: 1.4;
}
.title3{
  background: #d9271d;
  color: #fff;
  padding: 1%;
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
}

.title4 {
  position: relative;
  display: block;
  padding: 1%;
  max-width: 100%;
  background: #aa8002;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 3%;
  line-height: 1.3;
}

.title4:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #aa8002;
}

header .btn{
  padding: 0;
  text-align: center;
}
header .btn a{
  display: block;
  margin: auto 0;
}
.mv {
  /*width: 100%;*/
  position: relative;
}

/*intro*/
.intro h2.title2{
    margin-bottom: 14%;
    -webkit-box-reflect: below -1px -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, .3));
  }
.profileBox{
  background: #fff;
  padding: 4%;
  border: 1px solid #eee;
  border-top: #aa8002 5px solid;
  filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.2));  
}
/*cont*/
.cont{
  background: url(../img/bg5.jpg);
  background-size: cover;
}
.cont ul{
  margin: 7% auto auto;
}
.cont li{
  background: #fff;
  padding: 0 4% 1% 4%;
  margin-bottom: 10%;
  border-top: 4px solid #d9271d;
  border-radius: 2px;
  filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.3));
}
.cont h3{
  text-align: center;
  margin: -17px auto auto;
}
.cont h3 div{
  background: #d9271d;
  color: #fff;
  display: inline-block;
  padding: 0.5% 3%;
  margin: 0 auto 3%;
  font-weight: bold;
}
.cont h4{
  font-weight: bold;
  line-height: 1.4;
  padding-bottom: 2%;
  color: #d9271d;
  font-size: 1.1em;
}
.cont li .img{
  filter: none;
}
.profileBox{
  background: #fff;
  padding: 4%;
  border: 1px solid #eee;
  border-top: #aa8002 5px solid;
  filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.2));  
}


.check{
  /*border: 1px solid #999;*/
  padding: 4% 4% 2%;
  margin-bottom: 2%;
  background: #fff;
}
.check li{
  margin-bottom: 13px;
  background: url(../img/check.png) no-repeat left;
  background-size: 40px;
  padding: 5px 0 18px 60px;
  font-weight: bold;
  border-bottom: 1px solid #999;
  text-align: left;
}
.check li:last-child{
  margin-bottom: 0px;
  border: none;
}



/*voice*/
.voice{
}

.voice h2{
  text-align: center;
  margin-bottom: 4%;
}
.voice .voiceBox{margin: 0 auto 5% 0%;}
.voice .voiceBox li{
  background: url(../img/tip.png) no-repeat left top #fff;
  padding: 3% 4% 3%;
  text-align: left;
  margin-bottom: 4%;
  border-radius: 2px;
  filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.2));
  border:1px solid #eee;
}
.voice li dt{
  padding-bottom: 3%;
  margin-bottom: 3%;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #666;
}
.voice li dt img{
  display: block;
}
.voice li dt span{
  display: block;
  font-weight: normal;
  font-size: 1.7rem;
  color:#000;
  margin-top: 3%;
}
.voice li img{
  display: block;
  margin-right: 3%;
  filter: drop-shadow(5px 5px 0px rgba(0,0,0,0.2));
}

/*day*/
.dayBox{
  margin-bottom: 5%;
  border: 3px solid #d9271d;
  background: #fff;
}
.day04{
  text-align: center;
  padding: 3%;
  background: url(../img/bg4.png) no-repeat center;
}

/*sec*/
.sec{
  /*background: url(../img/bg.png) repeat;*/
  padding: 5% 2%;
}
.bg1{  background: url(../img/bg.png) repeat;
}
.bg2{
  background: url(../img/bg2.png) no-repeat center bottom;
  background-size: cover;
}
.bg3{
  background-image: linear-gradient(357deg, rgba(243, 237, 230, 1), rgba(255, 255, 255, 1));
}
.bg4{
  background: url(../img/bg3.png) no-repeat center top;
  background-size: cover;
}
.bg5 .title:before,
.bg5 .title:after {
  height: 2px;
  background-image: -webkit-linear-gradient(315deg, #6f6019 0%, #c0c18f 40%, #c0c18f 60%, #6f6019 100%);
  background-image: linear-gradient(135deg, #6f6019 0%, #c0c18f 40%, #c0c18f 60%, #6f6019 100%);
}

/*profile*/
.profile{
  background: url(../img/bg.png);
}
.profile .cont_wrap{
  padding: 0 4% 5%;
}
.profile h2{
  margin-bottom: 3%;
  background: url(../img/cv_bg.jpg) no-repeat;
  background-size: cover;
  text-align: center;
}

/*footer*/
footer#footer{
  text-align: center;
  background: #000;
  padding: 1% 0;
  color:#fff;
}
footer#footer a{
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
}
footer#footer .copy {
  font-size: 1rem;
  margin-top: 4px;
}


@media screen and (max-width: 768px) {
/*common*/
 body{
   font-size: 1.4em;
 }
.cont_wrap{
  width: 100%;
}
.btn img{
}
.flex{
  display:block;
  padding:2%;  
}
.fleximg{
  margin: auto ;
}  
  
h1 img{
  width: 100%;
}    
.title{
  font-size: 1.2em;
  padding: 3% 1.5%;
  line-height: 1.3;
  letter-spacing: -0.01px;
  margin-bottom: 5%;
}
.title2{
  font-size: 1.2em;
}
.title4 {
  padding: 2% 1.5%;
  font-size: 1.1em;
}  
img.auto{
    width: auto;
  }  
#btnfix .linkfix{
  height: 50px;
}
.spimg img{
  width: 100%;
}   
#main section img{
  width: 100%;
}
#main section img.auto{
  width: auto;
}  
.cv_wrap .cv_txt{
  /*text-align: left;*/
}
.cv_wrap .cv_txt img{
  width: 85% !important;
  margin: auto;
  display: block;
}   
 .cv_wrap{
  padding: 5% 2%;
} 
.blinking{
  padding: 0 15%;
}  
/*mv*/
.mv {
  position: relative;
  width: 100%;
  margin: auto;
  /*padding-top: 56.25%;*/
}
  .sp_cont{
    padding: 0 2%;
  }

/*header*/
.fv{
  border-top:5px solid red;
  padding: 1% 2% 5%;
}
.fv img{
  width: 100%;
}  
.fv .logo{
  margin-left:0;
}
.fv .logo img{
  width: 40%;
}

/*storybtn*/
.storybtn{
  margin: 1% auto 3% auto;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap; 
}
.storybtn li{
	width: 50%;
}
    
  
.check{
  font-size: 0.9em;
}  
.check li{
  background-size: 25px !important;
  padding: 3px 0 10px 40px;
  line-height: 1.4;
  font-size: 1.1em;
}   

/*voice*/  
.voice li dt{
  font-size: 1.45rem;
  line-height: 1.4;
  letter-spacing: -0.2px;
}
.voice li dt img{
  width: 30% !important;
}
.voice li dt span{
  font-size: 1.2rem;
}
.voice li dd{
  font-size: 1em;
}


/*footer*/
footer#footer{
  padding: 2% 0;
}
footer#footer .copy {
  font-size: 0.61rem;
}

}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (orientation:portrait) {
 body{
   font-size: 1.8em;
 }
/*header*/

#btnfix{
  height: 80px;
}  


}