@charset "UTF-8";
/* CSS Document */

/* Clearfix
---------------------------------*/
.clearfix {
  min-height: 1px;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clear { clear:both; }

.clearfix:after {
    visibility: hidden;
    display: block;
    content: " ";
    clear: both;
    height: 0;
    }
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
.font-zero{
	font-size:0;
}
/* font 
---------------------------------*/
/*
font_select{
font-family: proxima-nova, 'Noto Sans JP',sans-serif;
font-family: "Kozuka Gothic Pro", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
}
*/
/*-------------アニメーション--------------------*/
/* 遅延表示 */
.appear {
	transform-origin:center top;
	animation:show 1s both;
}
span.appear {display:block;}
.d1 {animation-delay:0.5s;}
.d2 {animation-delay:1.4s;}
.d3 {animation-delay:2.6s;}
.d4 {animation-delay:4s;}
.d6 {animation-delay:6s;}
.d8 {animation-delay:8s;}
.d10 {animation-delay:10s;}
.d12 {animation-delay:12s;}
@keyframes show {
	0% {
		transform:translate(0,60px);
		opacity:0;
		text-shadow:0 0 0 #000;
	}
	50% {
		text-shadow:0 0 0.5em #000;
	}
	100% {
		transform:translate(0,0);
		opacity:1;
		text-shadow:none;
	}
}
/* インアウトエフェクト */
.fadein{
    animation: fadeIn 4s ease 0s 1 normal;
    -webkit-animation: fadeIn 4s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.animation {
}
.fadeInUp {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInUp;
 animation-name: fadeInUp;
 visibility: visible !important;
}
@-webkit-keyframes fadeInUp {
 0% { opacity: 0; -webkit-transform: translateY(100px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInUp {
 0% { opacity: 0; -webkit-transform: translateY(100px); -ms-transform: translateY(100px); transform: translateY(100px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}

.fadeInDown {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInDown;
 animation-name: fadeInDown;
 visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(-30px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(-30px); -ms-transform: translateY(-30px); transform: translateY(-30px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}

.fadeInLeft {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration: 1s;
 -webkit-animation-name: fadeInLeft;
 animation-name: fadeInLeft;
 visibility: visible !important;
}
@-webkit-keyframes fadeInLeft {
 0% { opacity: 0; -webkit-transform: translateX(-500px); }
 100% { opacity: 1; -webkit-transform: translateX(0); }
}
@keyframes fadeInLeft{
 0% { opacity: 0; -webkit-transform: translateX(-500px); -ms-transform: translateX(-500px); transform: translateX(-500px); }
 100% { opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }
}

.fadeInRight {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration: 1s;
 -webkit-animation-name: fadeInRight;
 animation-name: fadeInRight;
 visibility: visible !important;
}
@-webkit-keyframes fadeInRight {
 0% { opacity: 0; -webkit-transform: translateY(-20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInRight {
 0% { opacity: 0; -webkit-transform: translateX(500px); -ms-transform: translateX(500px); transform: translateX(500px); }
 100% { opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }
}

/*-------------ムービー--------------------*/
.movie{
	margin:0 auto;
	width:100%;
	position:relative;
	margin-bottom: 8px;
}
.movie .button-play {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 78px;
  height: 78px;
  background-color: rgba(0,0,0,0.3);
  border-width: 2px;
  cursor: pointer;
  border-radius: 39px;
  -webkit-border-radius: 39px;
  -moz-border-radius: 39px;
  transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
}
.movie .button-play:before {
  content: "\e60a";
  font-family: 'glyphicon';
  font-size: 33px;
  font-size: 1.65rem;
  line-height: 75px;
}
.movie .button-play:hover{
color:#ff5a00;
border-color:#ff5a00;
}
/*-------------youtube--------------------*/
.movie-content-wrap {
	position: relative;
	width: 100%;
}
.movie-content-wrap .movie-thumb {
 position: absolute;
 width: 100%;
 height: 100%;
 background-position: center;
 background-size: cover;
 cursor: pointer;
}
.movie-content-wrap .movie-thumb:before {
 content:"";
 position:absolute;
 width:100px;
 height:100px;
 left:0;
 right:0;
 margin:auto;
 top:0;
 bottom:0;
 background-image: url(../images/btn_play.png);
 background-position: center;
 background-repeat: no-repeat;
 background-size: 90px;
 transition:0.5s;
}
.movie-content-wrap .movie-thumb:hover:before {
 background-image: url(../images/btn_play_on.png);
}
/*-------------------------
    標準フォーマット
--------------------------*/
#recommend.page_rp701 .mainimg {
    background: url(../images/main_back.jpg) no-repeat center top;
    background-size: cover;
    height: 742px;
    background-position: center;
    position: relative;
}
#recommend.page_rp701 .mainimg .date {position: absolute;left: 0;right: 0;margin: auto;width: 400px;bottom: 5px;}
.pankuzu {
    position: absolute;
    top: 765px;
    left: 5%;
    font-size: 13px;
    width: 38%;
    color: hsl(0deg 0% 100%);
}
.page_rp701 {
}
.page_rp701 .mainimg .wrap {width: 40%;padding-top: 185px;max-width: 390px;margin: 0 auto;}
.page_rp701 .mainimg .wrap .main_title {font-size: 45px;font-weight: 500;letter-spacing: 6px;line-height: 1.5;text-align: center;}



.lead_sec {background-image: url(../images/lead_back.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;position: relative;padding-top: 90px;padding-bottom: 100px;min-height: 900px;}
.lead_sec .wrap {margin: 0 auto;width: 90%;max-width: 1080px;text-align: center;}
.lead_sec .wrap .lead_box {text-align: center;}
.lead_sec .wrap .lead_box .name {font-size: 30px;font-weight: 600;line-height: 1.6;margin-bottom: 35px;}
.lead_sec .wrap .lead_box .comment {font-size: 17px;line-height: 2.0;font-weight: 500;}
.lead_sec .wrap .lead_box .comment .l_bold {background-color: hsl(42deg 100% 91%);color: #000;font-size: 20px;font-weight: 600;}
.period_sec {padding-top: 60px;padding-bottom: 60px;background-color: hsl(42deg 100% 91%);}
.period_sec .wrap {
    background-color: #fff;
    margin: 0 auto;
    width: 80%;
    padding: 5%;
    padding-top: 40px;
    border-radius: 10px;
    padding-bottom: 25px;
}
.period_sec .wrap .s_period {display: flex;flex-wrap: wrap;margin: 0 auto;max-width: 700px;margin-bottom: 9px;}
.period_sec .wrap .s_period .name {font-size: 17px;line-height: 1.5;font-weight: 500;width: 240px;}
.period_sec .wrap .s_period .date {width: calc(100% - 240px);font-size: 17px;font-weight: 600;line-height: 1.5;margin-top: -7px;}
.period_sec .wrap .s_period .date .l_bold {font-size: 25px;padding-left: 3px;padding-right: 3px;}

.sec_title_box {margin: 0 auto;width: 90%;text-align: center;position: relative;padding-bottom: 30px;}
.sec_title_box:before {
 content:
 "";
 position:
 absolute;
 width: 80px;
 height: 1px;
 background-color: #000;
 margin: auto;
 left: 0;
 right: 0;
 bottom: 0;
}
.sec_title_box .name {font-size: 35px;font-weight: 500;line-height: 1.5;font-family: proxima-nova, 'Noto Sans JP',sans-serif;}
.sec_title_box .sub {font-size: 14px;line-height: 1.5;}
.cmp_info_sec {
 padding-top: 90px;
 padding-bottom: 90px;
}
.cmp_info_sec .cmp_info_wrap {margin: 0 auto;width: 90%;max-width: 1080px;text-align: center;margin-top: 90px;}
.cmp_info_sec .cmp_info_wrap .left {width: 45%;display: inline-block;vertical-align: top;text-align: left;margin-right: 5%;}
.cmp_info_sec .cmp_info_wrap .s_info {margin-bottom: 25px;}
.cmp_info_sec .cmp_info_wrap .s_info .name {font-size: 16px;line-height: 1.5;font-weight: 600;margin-bottom: 10px;}
.cmp_info_sec .cmp_info_wrap .s_info .comment {font-size: 14px;line-height: 1.8;}
.cmp_info_sec .cmp_info_wrap .s_info .format {border: 1px solid;padding: 5%;margin-top: 20px;}
.cmp_info_sec .cmp_info_wrap .s_info .format .s_format {margin-bottom: 15px;}
.cmp_info_sec .cmp_info_wrap .s_info .format .s_format .f_name {font-size: 16px;font-weight: 500;line-height: 1.5;color: #515151;margin-bottom: 5px;}
.cmp_info_sec .cmp_info_wrap .s_info .format .s_format .f_comment {font-size: 14px;line-height: 1.5;color: #515151;}
.cmp_info_sec .cmp_info_wrap .s_info .format .s_format .f_comment a {
 color: #ff5a00;
}
.cmp_info_sec .cmp_info_wrap .right {width: 45%;display: inline-block;vertical-align: top;text-align: left;margin-left: 4%;}
.cmp_info_sec .cmp_info_wrap .right .s_info {
}
.cmp_info_sec .cmp_info_wrap .right .s_info .name {
}
.cmp_info_sec .cmp_info_wrap .right .s_info .comment {
}
.cmp_info_sec .cmp_info_wrap .right .s_info .comment.attention a {
 color: #ff5a00;
}
.cmp_info_sec .cmp_info_wrap .s_info .comment.attention {padding-left: 15px;position: relative;}
.cmp_info_sec .cmp_info_wrap .s_info .comment.attention:before {
 content:"・";
 position:absolute;
 left:0;
}
.cmp_info_sec .cmp_info_wrap .right .s_info .s_name {font-size: 14px;line-height: 1.5;font-weight: 500;margin-bottom: 5px;}
.cmp_info_sec .cmp_info_wrap .flow_box {margin: 0 auto;max-width: 960px;margin-top: 30px;}
.cmp_info_sec .cmp_info_wrap .flow_box .image {
}
.cmp_info_sec .cmp_info_wrap .btn_entry {
    margin: 0 auto;
    width: 90%;
    max-width: 600px;
    margin-top: 50px;
}
.cmp_info_sec .cmp_info_wrap .btn_entry a {display: block;background-color: hsl(21deg 100% 50%);font-size: 17px;font-weight: 600;color: hsl(0deg 0% 100%);line-height: 1.5;padding: 20px 40px;border-radius: 5px;position: relative;}
.cmp_info_sec .cmp_info_wrap .btn_entry a:before {
 content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../images/navi_link_wh.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px;
}
.cmp_info_sec .cmp_info_wrap .btn_entry a:hover {
}

.cmp_info_sec .degico_wrap {border: 1px solid #000;border-radius: 10px;padding: 5%;margin-top: 80px;padding-top: 60px;padding-bottom: 40px;}
.cmp_info_sec .degico_wrap .s_wrap {margin-bottom: 35px;text-align: left;}
.cmp_info_sec .degico_wrap .s_wrap .name {font-size: 17px;line-height: 1.5;font-weight: 500;border-bottom: 1px solid #000;padding-bottom: 5px;margin-bottom: 15px;}
.cmp_info_sec .degico_wrap .s_wrap .comment {font-size: 14px;line-height: 1.5;}
.cmp_info_sec .degico_wrap .s_wrap .comment a {color: hsl(21deg 100% 50%);}
.cmp_info_sec .degico_wrap .s_wrap .image {max-width: 700px;margin: 0 auto;margin-top: 19px;}
.cmp_info_sec .degico_wrap .s_wrap .list {padding-left: 17px;position: relative;margin-bottom: 5px;}
.cmp_info_sec .degico_wrap .s_wrap .list:before {
 content:
 "・";
 position:
 absolute;
 left: 0;
}
.cmp_info_sec .degico_wrap .s_wrap .attention {padding-left: 17px;position: relative;margin-bottom: 5px;}
.cmp_info_sec .degico_wrap .s_wrap .attention:before {
    content: "※";
    position: absolute;
    left: 0;
}

.link_sec {margin: 0 auto;width: 90%;margin-bottom: 60px;background-color: #000;}
.link_sec .btn_link {position: relative;}
.link_sec .btn_link:before {
 content:
 "";
 position:
 absolute;
 width:100%;
 height:100%;
 top:0;
 background-color:#000;
 background-image: url(../images/link_back.jpg);
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 transition:0.5s;
}
.link_sec .btn_link:hover:before {
 opacity:0.7;
}
.link_sec .btn_link a {display: block;padding-top: 170px;padding-bottom: 170px;position: relative;text-align: center;}
.link_sec .btn_link a:hover {
 opacity:1;
}
.link_sec .btn_link a:before {
 content:
 "";
 position:
 absolute;
 width:70px;
 height:70px;
 background-image:
 url(../images/navi_banner.png);
 right: 70px;
 background-position: center;
 background-repeat: no-repeat;
 background-size: 69px;
 top: 0;
 bottom: 0;
 margin: auto;
}
.link_sec .btn_link a img {margin: 0 auto;width: 70%;max-width: 415px;}



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

@media only screen and (max-width: 1025px) {
}
@media only screen and (min-width: 768px) {
 .sp{
 display: none;
 }
}
@media only screen and (max-width: 767px) {
.pc_tab{
 display: none;
}

#recommend.page_rp701 .mainimg {
    height: 515px;
    background-position: center;
    background: url(../images/main_back_sp.jpg) no-repeat center;
    background-size: cover;
}
#recommend.page_rp701 .mainimg .date {
    width: 70%;
    display: none;
}
.page_rp701 .mainimg .wrap {
    margin: 0 auto;
    width: 90%;
    left: 0;
    right: 0;
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    bottom: 15px;
}
.pankuzu {
    display:none;
}

.lead_sec {
    position: relative;
    background: none;
    padding-top: 45px;
    padding-bottom: 290px;
    min-height: 0;
}
.lead_sec:before {
 content:
 "";
 position:
 absolute;
 width: 100%;
 height: 250px;
 background-image: url(../images/lead_back_sp.jpg);
 bottom: 0;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
}


.lead_sec .wrap .lead_box .name {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}
.lead_sec .wrap .lead_box .comment {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
}
.lead_sec .wrap .lead_box .comment .l_bold {
    font-size: 17px;
}
.period_sec {
    padding-top: 40px;
    padding-bottom: 40px;
}
.period_sec .wrap {
    width: 90%;
    padding: 5%;
    padding-top: 40px;
    padding-bottom: 25px;
}
.period_sec .wrap .s_period {
    display: block;
    margin-bottom: 15px;
}
.period_sec .wrap .s_period .name {
    font-size: 17px;
    width: 100%;
}
.period_sec .wrap .s_period .date {
    width: 100%;
    font-size: 13px;
    margin-top: 0px;
}
.period_sec .wrap .s_period .date .l_bold {
    font-size: 17px;
    padding-left: 2px;
    padding-right: 2px;
}
.cmp_info_sec {
    padding-top: 60px;
    padding-bottom: 60px;
}
.sec_title_box .name {
    font-size: 30px;
}
.cmp_info_sec .cmp_info_wrap {
    margin-top: 60px;
}
.cmp_info_sec .cmp_info_wrap .left {
    width: 90%;
    display: block;
    margin: 0 auto;
    text-align: left;
}
.cmp_info_sec .cmp_info_wrap .right {
    width: 90%;
    display: block;
    margin: 0 auto;
    vertical-align: top;
    text-align: left;
}
 .cmp_info_sec .degico_wrap {
    padding: 5%;
    padding-top: 40px;
    padding-bottom: 5px;
}
.link_sec .btn_link a {
    padding-top: 50px;
    padding-bottom: 100px;
    position: relative;
    text-align: center;
}
.link_sec .btn_link a:before {
    background-size: 55px;
    top: inherit;
    left: 0;
    right: 0;
    bottom: 24px;
    margin: auto;
}
 
}