@charset "UTF-8";
/* CSS Document */
body{
    width: 100%;
    height: 100%;
	margin:0;
    padding:0;
    font-size:16px;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	color: #333;
    background-color: #fff;
    min-width: 950px;
}
.btnOn{
    display: block;
}
.btnOff{
    display: none;
}
.btn_smp{
    position: fixed;
    top:0;
    right: 0;
    z-index: 1000;
    display: none;
}



#smpNavi{
	    display: none;
	    width: 100%;
	    height: 100%;
	     background-color: rgba(0,0,0,0.8);
	    position: fixed;
	    z-index: 900;
	    top:0px;
	    opacity: 0;
    }
    #smpNavi ul{
	    display: block;
	    width: 100%;
	    overflow: hidden;
	    list-style: none;
	    margin: 0;
	    padding: 25px 0 0 0;
    }
    #smpNavi ul li{
	    display: block;
	    width: 100%;
	    overflow: hidden;
	    border-bottom: solid #877b7b 1px;
	    font-size: 20px;
	    text-align: center;
	    color: #fff;
	    margin: 0;
	    padding: 10px 0;
    }
    #smpNavi ul li a{
	    color: #fff;
	    line-height: 0.3em;
	    padding: 0;
	    margin-bottom: -1em;
        text-decoration: none;
	}
	#smpNavi ul li  p{
		font-size: 50%;
		line-height: 0.8em !important;
		}



p{
	line-height: 2em;
    font-size: 16px;
}

.pc{
	display: block;
}
.sp{
	display: none !important;
}
h1,h2,h3,h4,h5{
    font-weight: normal;
    margin: 0;
    padding: 0;
}
.fl_l_50{
    float: left;
    width: 50%;
}
.fl_r_50{
    float: right;
    width: 50%;
}
.w_100{
    width: 100%;
}
/* ボタン */
.btn-animation-red {
  display: inline-block;
  width: 100px;
  text-align: center;
  background-color: #cc3333;
  border: 2px solid #cc3333;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 30px;
  position: relative;
    font-size: 12px;
}

.btn-animation-red span {
  position: relative;
  z-index: 1;
}

.btn-animation-red::before,
.btn-animation-red::after {
  content: "";
  display: block;
  background-color: #cc3333;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
    border-radius: 30px;
}
.btn-animation-red::before {
  left: 0;
}
.btn-animation-red::after {
  right: 0;
}

.btn-animation-red:hover:before,
.btn-animation-red:hover:after {
  width: 0;
  background-color: #fff;
}

.btn-animation-red:hover {
  color: #cc3333;
    background-color: #fff;
}

/*----------------------------------------------*/
header{
    width: calc(100% - 60px);
    overflow: hidden;
    margin: 0 auto;
    padding: 0 30px;
    height: 85px;
    position: relative;
    z-index: 100;
    border: none;
}
header h1{
    float: left;
    padding-top: 20px;
}
header nav{
    float: left;
    position: absolute;
    left:calc(50% - 150px);
    padding-top: 5px;
}
header nav a:link,
header nav a:visited{
    color: #333;
    text-decoration: none;
    font-size: 18px;
}
header nav a:hover{
    opacity: 0.5;
}
header nav ul{
    list-style: none;
    margin: 0;
    padding: 25px 0 0 0;
    
}
header nav ul li{
    float: left;
    padding-right: 40px;
}
header nav ul li:last-child{
    float: left;
    padding-right: 0;
}
header nav ul li a:link{
    color: #333;
    text-decoration: none;
    letter-spacing: 0.1em;
    padding-bottom: 0.2em;
}
#head_btn{
    float: right;
    margin-top: 30px;
}
#head_btn a{
    text-decoration: none;
    padding: 0.8em 2em;
    border-radius: 30px;
    
}
#head_btn a:hover{
    opacity: 0.8;
}

header nav ul li.activ a{
    color: #cc3333 !important;
    font-weight: bold;
    border-bottom: solid 2px #cc3333;
}


#head_btn a:first-child span{
  position: relative;
}
#head_btn a:first-child span::before{
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 4px;
  height: 4px;
  border-top: 1.5px solid #333;
  border-right: 1.5px solid #333;
  transform: rotate(45deg);
  margin-top: -5px;
}

#head_btn a:last-child span{
  position: relative;
}
#head_btn a:last-child span::before{
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 4px;
  height: 4px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}

#head_btn a:first-child{
    color: #333;
    background: -moz-linear-gradient(left, #fdf47b, #fff000);
    background: -webkit-linear-gradient(left, #fdf47b, #fff000);
    background: linear-gradient(to right, #fdf47b, #fff000);
    margin-right: 5px;
}

#head_btn a:last-child{
    color: #fff;
    background: -moz-linear-gradient(left, #ff6363, #bf2929);
    background: -webkit-linear-gradient(left, #ff6363, #bf2929);
    background: linear-gradient(to right, #ff6363, #bf2929);
}


#head_btn a.here{
    color: #333;
    background: -moz-linear-gradient(left, #bababa, #bababa);
    background: -webkit-linear-gradient(left, #bababa, #bababa);
    background: linear-gradient(to right, #bababa, #bababa);
    margin-right: 5px;
    pointer-events: none;
}



/*----------------------------------------------*/
/* main_v */
#main_v{
    width: 100%;
    height: 757px;
    overflow: hidden;
    margin: -85px auto;
    padding: 0;
    background: url(../img/top_main.jpg) no-repeat center center;
    position: relative;
    z-index: 0;
}

#main_v .catch{
    position: absolute;
    top:200px;
    right: 10%;
    z-index: 2;
}

.area {
    width: 100%;
    overflow: hidden;
}
/* 表示領域に合わせてサイズと余白を設定 */
.marquee {
    width: 3068px;
    padding-left: 0px;
    white-space: nowrap;

    animation-name: marquee;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes marquee {
    from    { transform: translate(0%); } 
    100%,to { transform: translate(-50%); }
}




#home{
	background: url(../img/bg_biglogo.png) no-repeat;
	position: relative;
	background-position: left 0 top 1501px;

}




/* contents01 */
#home #contents01{
    width: 100%;
    overflow: hidden;
    margin: -50px 0 0 0;
    padding: 0px 0 50px 0;
    position: relative;
    z-index: 2;
}
#home #contents01 .inner{
    margin: 0;
    padding: 0;
    color: #cc3333;
    text-align: center;
}
#home #contents01 .inner h2{
    margin: 0;
    padding: 0;
    font-size: 70px;
    font-family: 'Noto Sans', sans-serif;
}
/* contents02 */
#home #contents02{
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 50px 0 50px 0;
}
#home #contents02 .inner{
    margin: 0;
    padding: 0;
}

#home #contents02 .inner .fl_l_50{
    margin: 0;
    width: calc(50% - 10%) !important;
    overflow: hidden;
    padding-left: 5%;
    padding-right: 5%;
}
#home #contents02 .inner .fl_r_50 img{
    width: 100%;
    height: auto;
}

/* contents03 */
#home #contents03{
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 50px 0 50px 0;
    text-align: center;
}
#home #contents03 .inner{
    margin: 0;
    padding: 0;
}
/* contents04 */
#home #contents04{
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 300px 0 50px 0;
    background: url(../img/bg_photo_top.jpg) no-repeat;
    background-size: 100% auto;
}
#home #contents04 .inner{
    margin: 0;
    padding: 50px 0;
    
    background: #fff;
}
#home #contents04 .title_box{
    background-color: #fff;
    width: calc(60% - 10%);
    padding:100px 5%;
}
#home #contents04 .title_box img{
    float: left;
}
#home #contents04 .title_box p{
    float: right;
    font-size: 18px;
}

#home #contents04 .inner ul{
    background: #fff;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: calc(100% - 10%);
}
#home #contents04 .inner ul li{
    width: 100%;
    height: 250px;
    background: #fff;
    box-shadow: 0 0 8px #e6e6e6;
    margin-top: 30px;
}
#home #contents04 .inner ul li a{
    color: #333;
    display: block;
}
#home #contents04 .inner ul li img{
    float: left;
}
#home #contents04 .inner ul li .li_linkbox{
    float: left;
    padding-left: 40px;
    padding-top: 30px;
}
.li_linkbox .boxtitle{
    color: #eb5252;
    font-size: 14px;
}
.li_linkbox h3{
    font-size: 24px;
    font-weight: normal;
}
#home #contents04 .inner ul li{
  position: relative;
}
#home #contents04 .inner ul li::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 4px;
  height: 4px;
  border-top: 1.5px solid #cc3333;
  border-right: 1.5px solid #cc3333;
  transform: rotate(45deg);
  margin-top: -5px;
}
#home #contents05 .inner ul{
    width: 100%;
    height: 360px;
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
#home #contents05 .inner ul a{
	display: block;
}
#home #contents05 .inner ul a:hover{
	opacity: 0.7;
}
#home #contents05 .inner ul li:first-child{
    background: url(../img/boss_photo.jpg) center center;
    width: 50%;
    height: 360px;
    float: left;
}
#home #contents05 .inner ul li:last-child{
    width: calc(50% - 120px);
    float: left;
    background: #cc3333;
    color: #fff;
    height: 360px;
    padding-left: 50px;
    padding-right: 70px;
    padding-top: 30px;
    position: relative;
}
#home #contents05 .inner ul li h3{
    font-size: 20px;
}
#home #contents05 .inner ul li.greeting::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 14px;
  height: 14px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}


#home #contents05 .inner ul li.greeting{
	position: relative;
}
.watanabe_sign{
	position: absolute;
	right: 80px;
}


#contact_link{
    width: 100%;
    background: #f1e7e7;
    text-align: center;
    
    display: block;
}
#contact_link a{
    display: block;
    height: 100%;
    padding: 80px 0;
}
#contact_link a:hover{
    opacity: 0.7;
    background: #e2d8d8;
}



/*------------下層ページ--------------*/

#under_contents p{
    color: #616161;
}


/*-------detail--------*/

#under_contents #detail .mv{
    width: 95%;
    height: 160px;
    display: block;
    overflow: hidden;
    background: url(../img/mv_detail.jpg) no-repeat top right;
    padding-left: 5%;
    padding-top: 150px;
}





#detail #contents01{
    text-align: center;
    margin-top: 80px;
    border-bottom: solid 1px #ccc;
    padding-bottom: 60px;
    
}
#detail #contents01 h2{
    color: #cc3333;
    font-size: 28px;
    margin-bottom: 1em;
}
#detail #contents01 h3{
    color: #333;
    font-size: 22px;
    margin-top: 1.5em;
}
#detail #contents02{
    padding: 80px 0;
}
#detail #contents02 .inner{
    width: 90%;
    padding: 0 5%;
}
#detail #contents02 ul{
    list-style: none;
    width: 900px;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
}
#detail #contents02 ul li{
    margin-bottom: 30px;
}
#detail #contents02 ul li:first-child{
    float: left;
    width: 423px;
    margin-right: 50px;
}
#detail #contents02 ul li:nth-child(2){
     float: left;
    width: 423px;
    margin: 0;
}
#detail #contents02 ul li:nth-child(3){
    clear: both;
    width: 100%;
}
#detail #contents02 ul li:nth-child(3) img{
    float: left;
    width: 319px;
    height: auto;
    
}
#detail #contents02 ul li:nth-child(3) p{
    float: right;
    width: 540px;
    
}
#detail #contents02 ul li h3{
    padding: 0.25em 0.5em;/*上下 左右の余白*/
    color: #494949;/*文字色*/
    background: transparent;/*背景透明に*/
    border-left: solid 5px #cc3333;/*左線*/
    margin-bottom: 1em;
    font-size: 22px;
}




/*-------detail--------*/


/*-------ovjective--------*/

#under_contents #ovjective .mv{
    width: 100%;
    height: 160px;
    display: block;
    overflow: hidden;
    background: url(../img/mv_ovjective.jpg) no-repeat top right;
    padding-left: 5%;
    padding-top: 150px;
}





#ovjective #contents01{
    text-align: left;
    margin-top: 80px;
    padding-bottom: 60px;
    
}
#ovjective #contents01 .inner{
    width: 80%;
    margin: 0 auto;
    
}

#ovjective #contents01 .titles{
    padding: 0.1em 0.5em 0.1em 1em;/*上下 左右の余白*/
    color: #494949;/*文字色*/
    background: transparent;/*背景透明に*/
    border-left: solid 5px #cc3333;/*左線*/
    margin-bottom: 1em;
    font-size: 22px;
}
#ovjective #contents01 .titles p{
    margin: 0;
    padding: 0.25em;
}
#ovjective #contents01 .titles h2{
    color: #cc3333;
    font-size: 24px;
}
#ovjective .inner span{
    font-size: 90%;
    color: #616161;
    
}
.hr{
    width: 100%;
    height: 3px;
    border-bottom: solid #ccc 1px;
    margin: 60px 0;
}

/*-------ovjective--------*/

#under_contents #recommend .mv{
    width: 100%;
    height: 160px;
    display: block;
    overflow: hidden;
    background: url(../img/mv_recommend.jpg) no-repeat top right;
    padding-left: 5%;
    padding-top: 150px;
}

#recommend #contents01{
    text-align: left;
    margin-top: 80px;
    padding-bottom: 60px;
    
}
#recommend #contents01 .inner{
    width: 80%;
    margin: 0 auto;
}

#recommend #contents01 .inner .titles{
    text-align: center;
    margin-bottom: 30px;
}
#recommend #contents01 .inner .titles h2{
    font-size: 28px;
    color: #cc3333;
    margin: 0;
    padding: 0 0 0em 0;
}
#recommend #contents01 .inner .titles p{
    font-size: 20px;
    color: #333333;
    margin: 0;
    padding: 0;
}
#recommend #contents01 .inner img{
    width: 100%;
    height: auto;
}

/*-------information--------*/

#under_contents #information .mv{
    width: 95%;
    height: 160px;
    display: block;
    overflow: hidden;
    background: url(../img/mv_about.jpg) no-repeat top right;
    padding-left: 5%;
    padding-top: 150px;
}

#information #contents01{
    text-align: left;
    margin-top: 80px;
    padding-bottom: 60px;
    
}
#information #contents01 .inner{
    width: 80%;
    margin: 0 auto;
}

#information #contents01 .inner .titles{
    text-align: center;
    margin-bottom: 30px;
}



#information #contents01 .inner dl{
  width: 100%;
  overflow: hidden;
  border: 1px solid #ccc;
  border-top: none;
  background: #f2f2f2;
    margin-bottom: 60px;
}
#information #contents01 .inner dt{
  width: 30%;
  float: left;
  padding: 10px;
  border-top: 1px solid #ccc;
  box-sizing: border-box;
}
#information #contents01 .inner dd{
  margin-left: 30%;
  padding: 10px;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  background: #fff;
}
#information #contents01 .inner dd:after{
  display: block;
  content: "";
  clear: both;
}
@media screen and (max-width: 320px) {
  #information #contents01 .inner dt{
    width: 100%;
    float: none;
  }
  #information #contents01 .inner dd{
    margin-left: auto;
    border-left: none;
  }
}

#information #contents01 .inner .greeting ul{
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#information #contents01 .inner .greeting ul li{
    float: left;
}
#information #contents01 .inner .greeting ul li:first-child{
    float: left;
    margin-right: 20px;
}
#information #contents01 .inner .greeting ul li:last-child{
    float: left;
}
.read_line{
    font-size: 14px;
    line-height: 1.4em;
}
.greeting_guide{
    border-bottom: solid 1px #ccc;
    padding-bottom: 50px;
    margin-bottom: 50px;
}



/*-------contact--------*/

#under_contents #contact .mv{
    width: 100%;
    height: 160px;
    display: block;
    overflow: hidden;
    background: url(../img/mv_contact.jpg) no-repeat top right;
    padding-left: 5%;
    padding-top: 150px;
}

#contact #contents01{
    text-align: left;
    margin-top: 80px;
    padding-bottom: 60px;
    border-bottom: solid #ccc 1px;
    
}
.thanks{
	width: 100%;
	text-align: center;
}


/*------------インナーサイズ--------------*/
#contents01 .inner,
#contents02 .inner{
}
#contents03 .inner,
#contents04 .inner{
}

/*----------------------------------------------*/
/* footer */
footer{
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 50px 0;
    text-align: center;
}
footer p a{
    margin-right: 1.5em;
    text-decoration: none;
    color: #333;
}
footer p a:hover{
    color: #b1a6a6;
}
footer p a:last-child{
    margin-right: 0;
    
}
.copyright{
    font-size: 11px;
}


