@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 {
	width: 100%;
	min-width: 1200px;
	font-family: 'Playfair Display','Zen Kaku Gothic New','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	color: var(--txtcolor);
	letter-spacing: .08em;
	line-height: 1.6;
	text-autospace:ideograph-alpha;
	font-feature-settings: "palt";
	position: relative;
}
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 { display: none; }
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; }
textarea { padding:2px; }
optgroup { font-style:normal; }
option { padding-right:10px; }
input[name="mail"] {
	width: 90%!important;
}
*:focus {
outline: none;
}
*{
	box-sizing: border-box;
}
:root {
	--txtcolor: #000;
	--btncolor: #a10000;
}
.flex-box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.pc {
	display: block!important;
}
.pcib {
	display: inline-block!important;
}
.pcfl {
	display: flex!important;
}
.sp {
	display: none!important;
}
.spib {
	display: none!important;
}
.spfl {
	display: none!important;
}
.mf {
	font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
	font-weight: 900;
	font-style: normal;
}
.must {
	display: inline-block;
	background: var(--numcolor);
	padding: 6px;
	font-size: 1rem;
	color: #fff;
	line-height: 1;
	margin-left: .5em;
	vertical-align: 1px;
}
/*ボタンデフォルトスタイルをリセット */
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: 'Playfair Display','Zen Kaku Gothic New','メイリオ','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"] ,
input[type="url"],
textarea {
	-webkit-appearance: none;
	appearance: none;
	border-radius:0;
	padding:8px;
	border:1px solid var(--mygray);
	width: 90%;
	box-sizing: border-box;
}
area{
	border:none;
	outline:none;
}
input, select, textarea {
	font-size: 1.4rem;
}
textarea {
	width: 90%;
	height: 10em;
}
select {
	text-overflow: "";
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff url(/pc/img/common/arrow_d.svg) no-repeat right 10px center;
	background-size: auto 4px;
	padding: 8px 40px 8px 8px;
	border: 1px solid var(--mygray);
	max-width: 16em;
	color: var(--txtcolor);
}
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: 5px;
}
input[type="checkbox"]:checked {
	background: #fff;
	border: 1px solid var(--accentcolor);
}
input[type="checkbox"]:checked:before {
	content: '';
	position: absolute;
	left: 2px;
	top: 14px;
	display: block;
	width: 7px;
	height: 2px;
	background: var(--accentcolor);
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}
input[type="checkbox"]:checked:after {
	content: '';
	display: block;
	position: absolute;
	left: 8px;
	top: 14px;
	width: 12px;
	height: 2px;
	background: var(--accentcolor);
	-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: 5px;
}
input[type="radio"]::before {
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid var(--mygray);
	border-radius: 50%;
}
input[type="radio"]::after {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: var(--mygray);
	border-radius: 50%;
}
input[type="radio"]:checked::before {
	border: 1px solid var(--accentcolor);
}
input[type="radio"]:checked::after {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: var(--accentcolor);
	border-radius: 50%;
}
input[type="submit"] {
	display: block;
	width: 46%;
	margin: auto;
	font-size: 1.8rem;
	color: #fff;
	line-height: 1;
	font-family: 'Zen Kaku Gothic New','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	text-align: center;
	padding: 20px;
	background: var(--btncolor);
	border-radius: 50vw;
	transition: all .3s ease 0s;
}
input[type="submit"]:hover {
	background: var(--accentcolor);
}
table {
	width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
}
/*ボタンデザイン*/
/*------------------------
header
------------------------*/
header .inner {
	width: 1200px;
	padding: 20px 0 40px;
	margin: auto;
	justify-content: space-between;
}
header .inner .logo {
	width: 54px;
}
header .inner .sns-area {
	align-items: center;
}
header .inner .sns-area .head {
	display: block;
	width: fit-content;
	height: 7px;
	margin-right: 15px;
}
header .inner .sns-area .head img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
header .inner .sns-area li:not(:last-of-type) {
	margin-right: 20px;
}
header .inner .sns-area li a {
	display: block;
}
header .inner .sns-area li a:hover {
	transform: translateY(-2px);
}
header .inner .sns-area li a img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}
header .inner .sns-area .you a img {
	width: 38px;
}
/*------------------------
パンくず
------------------------*/
#breadcrumb {
	width: 1200px;
	margin: 0 auto 60px;
	overflow: hidden;
}
#breadcrumb li {
	float: left;
	font-size: 1.2rem;
	line-height: 1;
	padding-right: 4px;
}
#breadcrumb li:not(:first-of-type)::before {
	content: ' > ';
	color: #fff;
}
#breadcrumb li a {
	display: inline-block;
	color: #fff;
}
#breadcrumb li a::after {
	content: '';
	display: block;
	width: 0;
	transition: width 0.3s;
	border-bottom: 1px solid #fff;
	margin: auto;
}
#breadcrumb li a:hover {
	opacity: 1;
}
#breadcrumb li a:hover::after {
	width: 100%;
}
/*------------------------
背景
------------------------*/
.movie {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: -1;
}
video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.movie::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.78);
}
/*------------------------
エフェクト
------------------------*/
.fadein {
	opacity : 0;
	transform : translate(0, 30px);
	transition: all 800ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
/*------------------------
footer
------------------------*/
footer .inner {
	width: 1200px;
	margin: 0 auto 20px;
}
footer .inner .logo {
	width: 72px;
	margin: 0 auto 60px;
}
footer .inner .sns-area {
	justify-content: center;
	gap: 0 60px;
	margin-bottom: 60px;
}
footer .inner .sns-area .head {
	display: block;
	width: fit-content;
	height: 7px;
	margin-bottom: 15px;
}
.sns-area .head img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
footer .inner .sns-area li {
	margin-right: 30px;
}
footer .inner .sns-area li a {
	display: block;
}
footer .inner .sns-area li a:hover {
	transform: translateY(-2px);
}
footer .inner .sns-area li a img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}
footer .inner .sns-area .you a img {
	width: 38px;
}
footer .inner .copy {
	font-size: 1.4rem;
	text-align: center;
	color: #fff;
	line-height: 1;
}