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


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* mvIndex */
.mvIndex {
	width: 100%;
	height: 100vh;
	min-height: 700px;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url("/img/index/bg_mv.jpg");
	background-size: cover;
	background-position: center center;
}

.mvIndex__content {
	position: absolute;
}

.mvIndex__h1 {
	font-size: 20px;
	font-weight: 500;
	color: #FFF;
	text-align: center;
	line-height: 1.8;
}

.scrollDown {
	position: absolute;
	bottom: 5px;
	left: 50%;
}

.scrollDown span{
	position: absolute;
	left: -15px;
	top: -100px;
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
}

.scrollDown::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #FFF;
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
	0%{bottom: 45px;}
	100%{bottom: -5px;}
 }

@keyframes cirlemovehide {
	0%{opacity: 0}
	50%{opacity: 1;}
	80%{opacity: 0.9;}
	100%{opacity: 0;}
 }

.scrollDown::after{
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 50px;
	background: #FFF;
}



/* news */
.main__box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.main__box::before{
	content: "";
	display: block;
	width: 22%;
	order: 1;
}

.main__box::after{
	content: "";
	display: block;
	width: 22%;
}

.main__item {
	width: 22%;
	transition: .2s;
	margin-bottom: 60px;
}

.main__thumbnail {
	position: relative;
	display: block;
	transition: .2s;
	overflow: hidden;
	border-radius: 5px;
	margin-bottom: 15px;
}

.main__thumbnail::before {
	display: block;
	content: "";
	padding-top: 66%;
}

.main__thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .2s;
}

.main__mark {
	position: absolute;
	left: 0;
	top: 0;
	background-color: #D90000;
	color: #FFF;
	font-weight: 600;
	font-size: 16px;
	padding: 3px 12px;
	border-radius: 0 0 3px 0;
}

.main__link:hover .news__thumbnail img {
	-webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.main__h3 {
	font-weight: 600;
	margin-bottom: 5px;
	transition: .2s;
}

.main__link:hover .main__h3 {
	color: #034791;
}

.main__date {
	font-size: 16px;
	color: #AAA;
	margin-bottom: 10px;
}

.main__category p {
	margin-right: 3px;
	display: inline-block;
	font-size: 14px;
	color: #FFF;
	padding: 0 5px;
	border-radius: 3px;
}

.main__category .result {
	background-color: #034791;
	border: 1px solid #034791;
}

.main__category .information {
	background-color: #000;
	border: 1px solid #000;
}

.main__category .others {
	background-color: #FFF;
	border: 1px solid #222;
	color: #222;
}

.news__btn {
	margin-top: 50px;
}


/* about */
.about {
	background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),url("/img/about/mv.jpg");
	background-size: cover;
	background-position: center center;
}

.about__h2 {
	color: #FFF;
	margin-bottom: 40px;
}

.about__h2 span {
	color: #FFF;
}

.about__txt {
	color: #FFF;
	text-align: center;
}

.about__box {
	display: flex;
	justify-content: space-between;
	max-width: 600px;
	margin: 0 auto;
}

.about__item {
	width: 47%;
	max-width: 300px;
}

.about__btn {
	background-color: #FFF;
	width: 100%;
	margin-top: 50px;
}

.about__btn span {
	color: #222;
}

.about__btn:hover span {
	color: #FFF;
}



/* localNav */
.localNav {
	width: 100%;
	display: flex;
}

.localNav__item {
	width: 50%;
	background-size: cover;
	background-position: center center;
	padding: 150px 70px;
}

.localNav__item:first-child {
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url("/img/tackle/mv.jpg");
}

.localNav__item:last-child {
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url("/img/price/mv.jpg");
}

.localNav__h2 {
	color: #FFF;
	margin-bottom: 30px;
}

.localNav__h2 span {
	color: #FFF;
}

.localNav__txt {
	color: #FFF;
	text-align: center;
}

.localNav__btn {
	margin-top: 50px;
}



/* faq */
.faq__box {
	margin: 50px 0;
	border-top: 1px solid #DDD;
}

.faq__item {
	width: 100%;
	border-bottom: 1px solid #DDD;
	position: relative;
	padding: 25px 70px 25px 20px;
}

.faq__item-question {
	font-weight: 600;
	font-size: 18px;
}

.faq__item-answer {
	padding: 15px 20px;
	margin-top: 18px;
	display: none;
	background-color: #F7F7F7;
}

.faq__item:first-child .faq__item-answer {
	display: block;
}

.acco__btn {
	background-color: transparent;
	display: inline-block;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 12px;
	top: 20px;
}

.acco__btn:hover {
	cursor: pointer;
}

.acco__btn::before {
	content: "";
	display: block;
	width: 20px;
	height: 2px;
	background-color: #034791;
	position: absolute;
	top: 18px;
	left: 8px;
}

.acco__btn::after {
	content: "";
	display: block;
	width: 2px;
	height: 20px;
	background-color: #034791;
	position: absolute;
	top: 9px;
	left: 17px;
	transition: .2s;
}

.acco__btn--open::after {
	opacity: 0;
}

.faq__item:first-child .acco__btn::after {
	opacity: 0;
}

.faq__item:first-child .acco__btn--open::after {
	opacity: 1;
}





/******************************************************

タブレットの設定 960px~1199pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1199px){


	
	
}



/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

@media screen and (max-width: 959px){

/* mvIndex */
.mvIndex__h1 {
	font-size: 18px;
}

	
	

}



/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){

/* mvIndex */
.mvIndex,
.mvIndex__box {
	height: 350px;
	min-height: 350px;
}
	
.mvIndex__content {
	margin-top: 50px;
}

.mvIndex__img {
	display: block;
	width: 60px;
	height: auto;
	margin: 0 auto 15px auto;
}

.mvIndex__h1 {
	font-size: 13px;
	font-weight: 600;
	color: #FFF;
	text-align: center;
	line-height: 1.8;
}
	
.mvIndex__h1 span.pc {
	display: none;
}

.mvIndex__h1 span.sp {
	display: inline;
}

.scrollDown {
	display: none;
}
	
	
	
/* news */
.main__item {
	width: 48%;
	margin-bottom: 30px;
}

.main__thumbnail {
	border-radius: 3px;
	margin-bottom: 10px;
}

.main__mark {
	font-size: 14px;
	padding: 1px 5px;
}

.main__h3 {
	font-size: 16px;
}

.main__date {
	font-size: 14px;
	margin-bottom: 5px;
}

.main__category p {
	margin-right: 2px;
	font-size: 12px;
	padding: 0 3px;
}
	
.news__btn {
	margin-top: 20px;
}

	
	
/* about */
.about__h2 {
	color: #FFF;
	margin-bottom: 20px;
}
	
.about__box {
	display: block;
	margin-top: 25px;
}

.about__item {
	width: 100%;
	margin: 0 auto;
}

.about__btn {
	background-color: #FFF;
	width: 100%;
	max-width: 250px;
	margin-top: 15px;
}

.about__btn span {
	color: #222;
}
	
	
	
/* localNav */
.localNav {
	display: block;
}

.localNav__item {
	width: 100%;
	padding: 70px 30px;
}

.localNav__h2 {
	margin-bottom: 15px;
}

.localNav__btn {
	margin-top: 20px;
}
	
	
	
/* faq */
.faq__box {
	margin: 30px 0;
}

.faq__item {
	padding: 15px 10px;
}
	
.faq__item-question {
	font-size: 14px;
	padding-right: 25px;
}
	
.faq__item-answer {
	margin-top: 10px;
}

.acco__btn {
	width: 31px;
	height: 31px;
	position: absolute;
	right: 0px;
	top: 12px;
}

.acco__btn:hover {
	cursor: pointer;
}

.acco__btn::before {
	width: 17px;
	height: 1px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.acco__btn::after {
	width: 1px;
	height: 17px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transition: .2s;
}

.acco__btn--open::after {
	opacity: 0;
}
	
	
}