@charset "UTF-8";
/*------------------------
スタイルの初期化
------------------------*/
body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object,figure { margin:0; padding:0; }
html {
	font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	color: var(--txtcolor);
	line-height: 1.5;
	text-autospace:ideograph-alpha;
	font-feature-settings: 'palt';
	letter-spacing: .04em;
	position: relative;
	min-width: 1200px;
}
main {
	display: block;
}
a {
	text-decoration: none;
	color: var(--txtcolor);
	transition: all .3s ease 0s;
}
a img {
	border:0;
}
img{
	vertical-align:top;
	max-width: 100%;
}
ul, ol { list-style-type:none; }
sup { position: relative; vertical-align: baseline; top: -0.9em; font-size: 0.5em; }
hr { width: 100%;
margin: 20px 0;}
h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: normal;}
th, caption{ text-align: left; font-weight: normal; }
th,td { empty-cells:show; }

input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] { padding:0 2px; margin-right:0.4em; }
input[type="submit"] { display:inline; margin:0; }
input[type="radio"] { margin-right:0.1em; }
textarea { padding:2px; }
optgroup { font-style:normal; }
option { padding-right:10px; }
*:focus {
outline: none;
}
*{
	box-sizing: border-box;
}
:root {
	--txtcolor: #000;
	--btncolor: #a51c03;
	--accentcolor: #fff003;
	--bgcolor: #e5e5e5;
	--mygray: #9c9c9c;
}
.flex-box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.red {
	color: #e90010;
}
.mf {
	font-family: 'Cormorant', serif,'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN','Noto Sans JP';
}
/*ボタンデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	font-family: 'Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] ,
textarea {
	-webkit-appearance : none;
	appearance: none;
	border-radius:0;
	padding:8px;
	border:1px solid #dce1e4;
	width: 90%;
	box-sizing: border-box;
}
area{
	border:none;
	outline:none;
}
input, select, textarea {
	font-size: 1.6rem;
}
textarea {
	width: 90%;
	height: 10em;
}
select {
	text-overflow: "";
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff ;
	background-size: auto 4px;
	padding: 10px 48px 10px 10px;
	border: 1px solid #dce1e4;
	max-width: 12em;
}
select::-ms-expand {
	display: none;
}
::placeholder {
  color: var(--mygray);
}
/*チェックボックスのスタイル*/
input[type="checkbox"]{
	border: 1px solid var(--mygray);
	vertical-align: -6px;
	-webkit-appearance: none;
	position: relative;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	background: #fff;
	margin-right: 8px;
}
input[type="checkbox"]:checked {
	background: var(--accentcolor);
	border: 1px solid var(--mygray);
}
input[type="checkbox"]:checked:before {
	position: absolute;
	left: 4px;
	top: 13px;
	display: block;
	content: "";
	width: 5px;
	height: 2px;
	background: #fff;
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}
input[type="checkbox"]:checked:after {
	display: block;
	position: absolute;
	left: 8px;
	top: 13px;
	content: "";
	width: 10px;
	height: 2px;
	background: #fff;
	-webkit-transform: rotate(-53deg);
	-webkit-transform-origin: left center;
}
/*ラジオボタンのスタイル*/
input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	width: 17px;
	height: 17px;
	border: 1px solid transparent;
	position: relative;
	margin-right: 8px;
}
input[type="radio"]::before {
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid var(--mygray);
	border-radius: 50%;
}
input[type="radio"]::after {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: var(--mygray);
	border-radius: 50%;
}
input[type="radio"]:checked::after {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: var(--accentcolor);
	border-radius: 50%;
}
input[type="submit"] {
	width: 420px;
	background: var(--btncolor);
	color: #fff;
	padding: 20px;
	font-size: 1.8rem;
	text-align: center;
	font-family: 'Noto Sans JP';
	border-radius: 5px;
	transition: all .3s ease 0s;
}
input[type="submit"]:hover {
	color: var(--txtcolor);
	box-shadow: 2px 2px 8px rgba(0, 0, 0, .12);
}
table {
	width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
}
/*ボタンデザイン*/
.btn {
	text-align: right;
	position: relative;
}
.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 21px;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: var(--txtcolor);
	border-radius: 50vh;
	z-index: 1;
}
.btn a {
	display: inline-block;
	line-height: 1;
	font-size: 2.1rem;
	font-weight: bold;
	padding: 20px 80px 20px 0;
	position: relative;
}
.btn a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border: 1px solid var(--txtcolor);
	border-radius: 50vh;
}
.btn a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	width: 48px;
	height: 1px;
	background: var(--txtcolor);
	transition: all 0.3s ease-in-out;
}
.btn a:hover::after {
	width: 0;
}

/*------------------------
header
------------------------*/
header {
	background: #A21118;
}
header .inner {
	width: 1200px;
	margin: auto;
	justify-content: flex-start;
}
header .inner .contents-outer {
	flex: 1;
}
header .inner .logo {
	display: flex;
	align-items: center;
	background: var(--txtcolor);
	padding: 12px;
	width: 92px;
	margin-right: 20px;
}
header .inner .logo img{
	width: 100%;
	height: 100%;
}
header .inner .t-wrap {
	flex: 1;
	justify-content: space-between;
}

header .inner .t-wrap .h-name {
	padding-top: 20px;
}
header .inner .t-wrap .h-name .txt {
	font-weight: 500;
	line-height: 1;
	margin-bottom: 16px;
	display: inline-block;
	color: #fff;
}
header .inner .t-wrap .h-name .txt strong {
	display: block;
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 3px;
}
header .inner .g-nav ul li {
	position: relative;
}
header .inner .g-nav ul li a {
	display: block;
    line-height: 1;
    font-weight: bold;
    padding: 3px 20px;
    border-left: 1px solid #ffffff;
    position: relative;
    color: #fff;
}
header .inner .g-nav ul li:last-of-type a {
	border-right: 1px solid #ffffff;
}
header .inner .g-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -7px;
	left: 20px;
	width: calc(100% - 40px);
	height: 4px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}
header .inner .g-nav ul li a:hover::after {
	transform: scale(1, 1);
}
header .inner .g-nav ul .has-child ul {
	position: absolute;
	left: 0;
	top: 29px;
	z-index: 4;
	background: var(--bgcolor);
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
}
header .inner .g-nav ul .has-child:hover > ul,
header .inner .g-nav ul .has-child ul li:hover > ul,
header .inner .g-nav ul .has-child:active > ul,
header .inner .g-nav ul .has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}
header .inner .g-nav ul .has-child ul li a {
	text-align: center;
	line-height: 1;
	padding: 12px 0 10px;
	border-bottom: 1px solid rgba(255,255,255,.6);
	border-right: none;
	border-left: none;
    color: var(--txtcolor);
}
header .inner .g-nav ul .has-child ul li:last-child a {
	border-bottom:none;
}
header .inner .g-nav ul .has-child ul li a::after {
	content: none;
}
header .inner .g-nav ul .has-child ul li a:hover {
	background: var(--txtcolor);
    color: #fff;
}
/*@media screen and (max-width:768px){
	header .inner .left .h-name .g-nav {
		padding: 0;
	}
	header .inner .left .h-name .g-nav ul{
		display: block;
	}
	header .inner .left .h-name .g-nav li.has-child ul {
		position: relative;
		left:0;
		top:0;
		width:100%;
		visibility:visible;
		opacity:1;
		display: none;
		transition:none;
	}
	header .inner .left .h-name .g-nav ul li a{
		border-bottom:1px solid #ccc;
	}
}*/
header .inner .t-wrap .right{
	padding-top: 20px;
	align-items: center;
}
header .inner .t-wrap .online-shop{
	margin-right: 15px;
}
header .inner .t-wrap .online-shop a{
	padding: 6px 14px;
	border: 1px solid #d7d7d7;
	border-radius: 20px;
	font-size: 1.4rem;
	font-weight: bold;
	display: flex;
	color: #fff;
}

header .inner .t-wrap .online-shop span{
	display: flex;
	align-items: center;
	line-height: 1;
}
header .inner .t-wrap .online-shop a:hover {
	background: var(--btncolor);
	color: #fff;
}
header .inner .t-wrap .online-shop span:after{
	content: '';
	background: url(/pc/img/common/icn_window_w.svg) no-repeat;
	width: 11px;
	height: 11px;
	display: inline-block;
	margin-left: 3px;
	margin-top: -1px;
	background-size: contain;
	transition: all .3s ease 0s;
}
header .inner .t-wrap .online-shop a:hover span:after {
	content: '';
	background: url(/pc/img/common/icn_window_w.svg) no-repeat;
	background-size: contain;
}
header .inner .sns-area {
	align-items: center;
}
header .inner .sns-area span a {
	display: block;
	margin-right: 15px;
}
header .inner .sns-area span a img {
	width: 20px;
	height: 20px;
}

/*------------------------
パンくず
------------------------*/
#breadcrumb {
	width: 1200px;
	margin: 0 auto 80px;
	font-size: 0;
}
#breadcrumb li {
	display: inline-block;
	padding-right: 20px;
}
#breadcrumb li a {
	display: block;
	padding-right: 2px;
	font-size: 1.4rem;
	line-height: 1;
	color: #fff;
	position: relative;
}
#breadcrumb li:not(:last-of-type) a::after {
	content: '';
	width: 6px;
	height: 6px;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: -10px;
	margin: auto;
}
#breadcrumb li a:hover {
	color: var(--mygray);
}
/*------------------------
後続タイトル周り
------------------------*/
.page-ttl {
	padding: 20px 0 110px;
	background: url(/pc/img/common/bg_page-ttl.jpg?20231021) no-repeat center;
	background-size: cover;
	margin-bottom: 60px;
}
.page-ttl h1 {
	width: 1200px;
	margin: auto;
	font-size: 5.2rem;
	font-weight: bold;
	color: #fff;
	letter-spacing: .1em;
	text-shadow: 3px 3px 3px rgba(0, 0, 0, .75);
}
/*------------------------
pagetop
------------------------*/
.page-top {
	width: 1200px;
	margin: -40px auto 0;
	text-align: right;
	height: 80px;
}
.page-top .inner {
	display: inline-block;
	width: 80px;
	height: 80px;
}
.page-top .inner a {
	display: block;
	width: 100%;
	height: 100%;
	background: url(/pc/img/common/bg_pagetop.svg) no-repeat 100%/cover;
	position: relative;
	transition: all .5s ease 0s;
}
.page-top .inner a::after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: translate(-50%,-50%) rotate(45deg);
	top: calc(50% + 2px);
	left: 50%;
}
.page-top .inner a:hover {
	transform: rotateZ(360deg);
}
/*------------------------
footer
------------------------*/
footer {
	margin-top: -40px;
	background: url(/pc/img/common/bg_black.jpg) 100%/cover;
	background-position: center;
	padding-top:  60px;
}
footer .inner {
	width: 1200px;
	margin: auto;
	padding-bottom: 100px;
}
footer .inner > .flex-box{
	width: 100%;
	justify-content: space-between;
}
footer .inner .left .logo-area {
	margin-bottom: 30px;
}
footer .inner .left .logo-area .logo {
	display: block;
	background: var(--txtcolor);
	padding: 10px;
	width: 87px;
	margin-right: 20px;
}
footer .inner .left .logo-area .txt {
	padding-top: 20px;
	color: #fff;
	line-height: 1;
	font-weight: 500;
}
footer .inner .left .logo-area .txt strong {
	display: block;
	font-size: 3rem;
	margin-bottom: 2px;
}
footer .inner .left .sns-area {
	align-items: center;
	margin-bottom: 50px;
}
footer .inner .left .sns-area span a {
	display: block;
	margin-right: 15px;
}
footer .inner .left .sns-area span a img {
	width: 20px;
	height: 20px;
}
footer .inner .right{
	display: flex;
	align-items: flex-start;
}

footer .inner .fanclub {
	background: rgba(255,255,255,.54);
	border: 2px solid #fff;
	padding: 15px 20px 20px;
	text-align: center;
}
footer .inner .fanclub .ashi {
	  width: 63px;
	  margin: 0 auto 10px;
	  transform: rotate(-10deg);
}
footer .inner .fanclub h2 {
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1;
	padding-bottom: 14px;
	border-bottom: 2px dashed var(--txtcolor);
	margin-bottom: 14px;
}
footer .inner .fanclub .l-btn a {
	display: block;
	padding: 10px;
	background: var(--txtcolor);
	font-weight: bold;
	line-height: 1;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 3px;
}
footer .inner .fanclub .j-btn a {
	display: block;
	padding: 10px;
	background: var(--btncolor);
	font-weight: bold;
	line-height: 1;
	color: #fff;
	letter-spacing: .1em;
}
footer .inner .fanclub a:hover {
	background: var(--mygray);
}
/*バナー*/
footer .inner .online-shop {
	border: 1px solid  #fff;
	margin-right: 15px;
	width: 202px;
}
footer .inner .online-shop a:hover {
	opacity:.7;
}

footer .inner .f-nav ul li a {
	display: block;
	font-weight: bold;
	color: #fff;
	line-height: 1;
	padding: 2px 10px;
	position: relative;
}
footer .inner .f-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: calc(100% - 20px);
	height: 1px;
	background: #fff;
	opacity: 0;
	transition: .3s;
}
footer .inner .f-nav ul li a:hover::after {
	bottom: 0;
	opacity: 1;
}
footer .inner .f-nav ul li:first-of-type a {
	padding: 2px 10px 2px 0;
}
footer .inner .f-nav ul li:first-of-type a::after {
	left: 0;
	width: calc(100% - 10px);
}



footer .copy {
	background: var(--txtcolor);
	padding: 15px;
	font-size: 1.3rem;
	text-align: center;
	color: #fff;
}
footer .copy span {
	display: block;
}

/* 追従バナー */
#schedule-banner{
	position: fixed;
	bottom: 20px;
	right: 0px;
	width: 70px;
	z-index: 10;
}
#schedule-banner .close {
	display: inline-block;
}
#schedule-banner .close a {
	font-size: 20px;
	background: var(--txtcolor);
	color: #fff;
	padding: -2px 3px;
	width: 30px;
	height: 30px;
	text-align: center;
	border-radius: 50%;
	margin-left: 40px;
	margin-bottom: 8px;
	display: block;
}
#schedule-banner a{
	display: block;
}
#schedule-banner a:hover{
	opacity: .8;
}