@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');



/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/

html,body{
	height:100%;
}

html{
	font-size:62.5%;
	overflow-y: scroll;
}

body{
	-webkit-text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: 'Noto Sans JP', "メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",Arial,Verdana,sans-serif;
	text-align: left;
	color:#111;
}

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, form, input, textarea, select{
	font-size: 1.6rem;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
			box-sizing: border-box; }

table{
	border-spacing: 0;
}

input, textarea, select{
	vertical-align:middle;
	font-family: 'Noto Sans JP', "メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",Arial,Verdana,sans-serif;
	background-color: #fff;
}
button{
	background-color: transparent;
		border: none;
		cursor: pointer;
		outline: none;
		padding: 0;
		appearance: none;
}
input,select,button,textarea{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: none;
	border-radius: 0;
	padding: 0;
}
select::-ms-expand{
	display: none;
}
textarea{
	resize: none;
}
button,input[type="submit"],input[type="button"],select{
	cursor:pointer;
}
input[type="radio"]:checked{
	appearance: none;
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a{
	text-decoration: none;
	color: #111;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
}
@media screen and (min-width: 769px) {
	a:hover{
		opacity: 0.8;
	}

	a[href^="tel:"]{
		display: inline-block;
		pointer-events: none;
	}
}

body{
	min-width: 1200px;
}

.wrap{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.sp{
	display: none;
}

.en{
	font-family: 'Bebas Neue';
	/*font-family: 'Bebas Neue', cursive;*/
}

@media screen and (max-width: 768px) {
	body{
		min-width: initial;
	}

	h1, h2, h3, h4, h5, h6, p, address,
	ul, ol, li, dl, dt, dd,
	table, th, td, form, input, textarea, select{
		font-size: 1.4rem;
	}

	.wrap{
		width: 92%;
		max-width: initial;
	}
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
	.sp_ib{
		display: inline-block;
	}
}




/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
.gnav{
	display: flex;
	justify-content: space-between;
	background: #4A3B1D;
}

.gnav .left_nav{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: calc(50% + 100px);
	padding: 20px 35px 20px 0;
}

.gnav .gnav_btn + .gnav_btn{
	margin-left: 20px;
}

.gnav .gnav_btn a{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 35px 0 20px;
	background: #fff;
	border-radius: 100px;
	font-weight: bold;
	text-align: center;
	color: #000;
}
.gnav .gnav_btn a::before{
	position: absolute;
	right: 15px;
	top: 0;
	bottom: 5px;
	margin: auto;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-right: 3px solid #000;
	border-bottom: 3px solid #000;
	transform: rotate(45deg);
}
.gnav .gnav_btn.top a{
	padding: 0 20px;
	background: #fff;
}
.gnav .gnav_btn.top a::before{
	display: none;
}

.gnav .right_nav{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: calc(50% - 100px);
	padding: 20px 0 20px 35px;
	background: #4A3B1D;
}

.gnav .right_nav .txt{
	padding-right: 30px;
	margin-right: 30px;
	border-right: 1px solid #fff;
	font-size: 1.4rem;
	color: #fff;
	font-weight: bold;
	line-height: 1.4;
}

.sns_box{
	display: flex;
	align-items: center;
}

.sns_box .ico{
	width: 25px;
}
.sns_box .ico + .ico{
	margin-left: 30px;
}

.gnav .wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.gnav .wrap .left_nav{
	width: auto;
	padding: 0;
}

.gnav .logo,
.gnav .logo a{
	color: #fff;
	font-weight: 900;
	font-size: 4.0rem;
	line-height: 1;
	letter-spacing: 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: bold;
}


@media screen and (max-width: 768px) {
	.gnav{
		flex-direction: column;
	}

	.gnav .left_nav{
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		padding: 17px 5%;
	}

	.gnav .gnav_btn{
		width: 48%;
	}
	.gnav .gnav_btn + .gnav_btn{
		margin-left: 0;
	}

	.gnav .gnav_btn.top{
		width: 100%;
		margin-bottom: 10px;
	}

	.gnav .gnav_btn a{
		width: 100%;
		height: 35px;
		padding: 0 20px 0 5px;
		font-size: 1.3rem;
	}
	.gnav .gnav_btn a::before{
		right: 14px;
		bottom: 4px;
		width: 7px;
		height: 7px;
		border-width: 2px;
	}

	.gnav .right_nav{
		width: 100%;
		justify-content: center;
		padding: 8px 5%;
	}

	.gnav .right_nav .txt{
		padding-right: 15px;
		margin-right: 15px;
		font-size: 1.2rem;
	}

	.sns_box .ico{
		width: 23px;
	}

	.sns_box .ico + .ico{
		margin-left: 23px;
	}

	.gnav .wrap{
		flex-direction: column;
	}
	.gnav .wrap .left_nav{
		width: 100%;
		margin-top: 15px;
	}

	.gnav .logo,
	.gnav .logo a{
		font-size: 3.0rem;
	}
}



/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
.footer_wrap{
	padding: 35px 0;
	background: #191919;
}

.footer_wrap .wrap{
	display: flex;
	justify-content: space-between;
}

.footer_wrap .footer_ttl{
	margin-bottom: 5px;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.6;
	color: #fff;
}

.footer_wrap .txt{
	color: #fff;
}
.footer_wrap .txt a{
	color: #fff;
}

.footer_wrap .sns_box{
	margin-top: 10px;
}
.footer_wrap .sns_box .ico + .ico{
	margin-left: 25px;
}

.footer_wrap .img_box{
	flex-shrink: 0;
}

.footer_wrap .bnr{
	width: 480px;
}


@media screen and (max-width: 768px) {
	.footer_wrap{
		padding: 30px 0 35px;
	}

	.footer_wrap .wrap{
		width: 90%;
		flex-direction: column;
	}

	.footer_wrap .footer_ttl{
		font-size: 1.6rem;
	}

	.footer_wrap .img_box{
		margin-top: 25px;
	}

	.footer_wrap .bnr{
		width: 100%;
	}

	.footer_wrap .sns_box{
		justify-content: center;
		margin-top: 20px;
	}
}




/* ----------------------------------------------------------------------------------------------------
*  共通
* --------------------------------------------------------------------------------------------------*/
.txt{
	line-height: 1.8;
}

.bold{
	font-weight: bold;
}

.txt_up{
	text-transform: uppercase;
}
.txt_noup{
	text-transform: none;
}

.center{
	text-align: center;
}

.txt_yellow{
	color: #FDFD32;
}


@media screen and (max-width: 768px) {
	.img img{
		width: 100%;
	}
}



/* ------------------------------
	ttl
------------------------------ */
.en_ttl{
	font-size: 5.0rem;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.01em;
}


@media screen and (max-width: 768px) {
	.en_ttl{
		font-size: 3.0rem;
	}
}



/* ------------------------------
	btn
------------------------------ */
.btn a{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 320px;
	height: 80px;
	background: #4A3B1D;
	border-radius: 100px;
	border: 3px solid #4A3B1D;
	color: #fff;
	font-size: 2.0rem;
	line-height: 1.2;
	font-weight: bold;
	text-align: center;
}
.btn a::before{
	position: absolute;
	right: 27px;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-right: 3px solid #fff;
	border-top: 3px solid #fff;
	transform: rotate(45deg);
}

.btn.gray a{
	background-color: #888888;
	border-color: #BBBBBB;
}

.btn.center a{
	margin: 0 auto;
}

.btn.back a::before{
	left: 27px;
	right: auto;
	border-right: none;
	border-top: none;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
}


@media screen and (max-width: 768px) {
	.btn a{
		width: 210px;
		height: 50px;
		font-size: 1.3rem;
	}

	.btn a::before{
		right: 18px;
		width: 8px;
		height: 8px;
		border-width: 2px;
	}

	.btn.back a::before{
		left: 18px;
		right: auto;
		border-width: 2px;
	}
}



/* ------------------------------
	box
------------------------------ */
.flexWrapCenter {
	display: -webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-justify-content:center;
	justify-content:center;
}
.flexSpacearound {
	-webkit-justify-content:space-around;
	justify-content:space-around;
}
.flexSpacebetween {
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.flexStart {
	-webkit-justify-content:flex-start;
	justify-content:flex-start;
}

.flex{
	display: flex;
	justify-content: space-between;
}

.main_content{
	padding: 70px 0;
	background: #191919;
	/*background: url(../img/common/main_content_bg.png) repeat top left;*/
}

.sec_box + .sec_box{
	margin-top: 80px;
}

.sec_box{
	position: relative;
	width: calc(100% + 30px);
	padding-right: 30px;
	padding-bottom: 30px;
}
.sec_box::before{
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
	content: "";
	display: block;
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	background: url(../img/common/bg_orange.png) repeat right bottom;
}

.sec_box .inner{
	position: relative;
	z-index: 2;
	padding: 66px 50px 60px;
	background: #fff;
	/*border: 4px solid #FBA700;*/
}
/*.sec_box .inner::before{
	position: absolute;
	z-index: 1;
	left: -1px;
	top: -1px;
	content: "";
	border-top: 60px solid #FBA700;
	border-right: 60px solid transparent;
}*/

.sec_box .en_ttl{
	color: #FBA700;
}

.sec_box.green::before{
	background: url(../img/common/bg_green.png) repeat right bottom;
}
.sec_box.green .inner{
	border-color: #A9C300;
}
.sec_box.green .inner::before{
	border-color: #A9C300 transparent;
}
.sec_box.green .en_ttl{
	color: #A9C300;
}

.sec_box.red::before{
	background: url(../img/common/bg_red.png) repeat right bottom;
}
.sec_box.red .inner{
	border-color: #ED3A05;
}
.sec_box.red .inner::before{
	border-color: #ED3A05 transparent;
}
.sec_box.red .en_ttl{
	color: #ED3A05;
}

.sec_box.blue::before{
	background: url(../img/common/bg_blue.png) repeat right bottom;
}
.sec_box.blue .inner{
	border-color: #20A2E9;
}
.sec_box.blue .inner::before{
	border-color: #20A2E9 transparent;
}
.sec_box.blue .en_ttl{
	color: #20A2E9;
}

.sec_box.gray::before{
	background: url(../img/common/bg_gray.png) repeat right bottom;
}
.sec_box.gray .inner{
	/*border-color: #464646;*/
}
/*.sec_box.gray .inner::before{
	border-color: #464646 transparent;
}*/
.sec_box.gray .en_ttl {
	color: #9B7C39;
}

.youtube{
	position: relative;
	width: 100%;
	max-width: 780px;
	height: 440px;
	margin: 0 auto 0;
}
.youtube iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.sec_box .en_ttl + .txt.center{
	font-size: 1.8rem;
}


@media screen and (max-width: 768px){
	.main_content{
		padding: 35px 0 45px;
		overflow: hidden;
	}

	.sec_box{
		width: calc(100% + 15px);
		padding-right: 15px;
		padding-bottom: 15px;
	}
	.sec_box + .sec_box{
		margin-top: 20px;
	}

	.sec_box::before{
		width: 96%;
		height: 96%;
		width: calc(100% - 15px);
		height: calc(100% - 15px);
		background-size: 30px !important;
	}

	.sec_box .inner{
		padding: 25px 4% 15px;
		border-width: 3px;
	}

	.sec_box .inner::before{
		border-width: 35px;
	}

	.youtube{
		height: 0;
		padding-top: 56.5%;
	}

	.sec_box .en_ttl + .txt.center{
		font-size: 1.2rem;
	}
}



/* ------------------------------
	.music
------------------------------ */
.music{
	padding: 65px 0;
	background: #9B7C39;
	/*background: url(../img/common/bg_music.png) repeat center center;*/
}

.music .en_ttl{
	color: #fff;
	font-size: 6.0rem;
}

.music .en_ttl + .txt{
	font-weight: bold;
	font-size: 1.8rem;
}

.music .btn_box{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px auto 15px;
}

.music .btn + .btn{
	margin-left: 40px;
}

.music .btn a{
	width: 360px;
	height: 90px;
	background: url(../img/common/ico_music.png) no-repeat,
				url(../img/common/ico_dl.png) no-repeat;
	background-color: #4A3B1D;
	background-position: 35px center, calc(100% - 35px) center;
	background-size: 22px, 21px;
	font-size: 2.2rem;
}
.music .btn a::before{
	display: none;
}
.music .btn.gray a{
	background: url(../img/common/ico_docs.png) no-repeat,
				url(../img/common/ico_dl.png) no-repeat;
	background-color: #888888;
	background-position: 35px center, calc(100% - 35px) center;
	background-size: 19px, 21px;
}

.music .btn a .min{
	font-size: 1.6rem;
}


@media screen and (max-width: 768px){
	.music{
		padding: 30px 0;
	}

	.music .txt{
		font-size: 1.3rem;
	}

	.music .en_ttl{
		font-size: 3.5rem;
	}
	.music .en_ttl + .txt{
		font-size: 1.2rem;
	}

	.music .btn_box{
		flex-direction: column;
		margin-top: 15px;
		margin-bottom: 10px;
	}

	.music .btn a{
		width: 280px;
		height: 60px;
		font-size: 1.6rem;
		background-size: 16px, 15px;
		background-position: 25px center, calc(100% - 25px) center;
	}
	.music .btn a .min{
		font-size: 1.2rem;
	}
}




/* ------------------------------
	clearfix
------------------------------ */

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */

/* ------------------------------
Youtubeの埋め込み
------------------------------ */
/*.movie-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}*/
.movie-wrap {
	position: relative;
	width: 100%;
	max-width: 780px;
	height: 440px;
	margin: 0 auto 0;
}
.movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
@media screen and (max-width: 768px){
	.movie-wrap {
		position: relative;
		max-width: unset;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
	}
	.movie-wrap iframe {
		margin-bottom: 15px;
	}
}