@charset "utf-8";
/* CSS Document */
:root{
	--link-color:#CC0033;
}
html{
    scroll-behavior: smooth;
	scrollbar-gutter: stable;
}
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "BIZ UDPGothic", sans-serif;
	font-size: clamp(0.875rem, 0.816rem + 0.29vw, 1rem);
    line-height: 1.6;
	color: #000;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
	background: #f0f0f0;
	position: relative;
}
body::before{
    content:"";
    display:block;
	position: absolute;
    z-index:-1;
    width:100%;
    height:300px;
	background: #000;
}
main {
    display: block;
	height: auto;	
}
button {
	background-color: transparent;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	padding: 0;
	font-family: inherit;
	font-size: 100%;
	&:focus-visible {
		outline:2px solid var(--link-color);
	}
}
a{
	color: var(--link-color);
	&:focus-visible {
		outline:2px solid var(--link-color);
	}
}
li{
	text-indent: -1em;
	padding-left: 1em;
}
header{
	padding: 1rem;
}
#logo{
	display: inline-block;
	& a{
		display: block;
	}
	& img{
		max-width: 100px;
	}
}
/*ダイアログここから*/
.dialog {
	width: fit-content;
	padding: 1rem;
	inset: 0;
    margin: auto;
	border: 0;
	color: #000;
	background: #fff;
	&::backdrop {
		background: rgba(0,0,0,0.50);
	}
}
.modal-button-wrap{
	display: flex;
	justify-content: center;
	margin-top: 1rem;
	gap:5rem;
}
.closeButton, .transButton{
	border-radius: 4px;
	padding: 0.5rem;
    color: #fff;
    font-size: 90%;
    font-weight: normal;
	text-decoration: none;
	width: 5rem;
	text-align: center;
}
.closeButton{
	background: #8A8A8A;
}
.transButton{
	background: #000;	
}
/*ダイアログここまで*/
h1{
	font-size: 130%;
	font-weight: bold;
	border-bottom: 1px dotted #7e7e7e;
	padding-bottom: 10px;
	margin-bottom: 1rem;
}
h2{
	color: #fff;
	background: #000;
	font-size: 120%;
	font-weight: bold;
	padding: 0.5rem;
	text-align: center;
}
.content{
	max-width: 980px;
	background: #fff;
	padding: 1rem;
	margin: 2rem auto;
}
.note{
	margin: 1rem 0;
	font-size: 90%;
	& li{
		list-style: none;
		&::before{
			content: "※"
		}
	}
}
.list{
	margin: 1rem 0;
	& li{
		list-style: none;
		&::before{
			content: "・"
		}
	}
}
.notice{
	margin: 0.5rem 0;
	& li{
		list-style: none;
		&::before{
			content: "※"
		}
	}
}

footer{
	background: #000;
	padding: 2rem 0;
}
.footer-nav{
	display: flex;
	justify-content: center;
	gap:2rem;
	max-width: 980px;
	margin: 0 auto;
	& a{
		display: inline-block;
		position: relative;
		text-decoration: none;
		color: #fff;
		font-size: 90%;
		padding-bottom: 0.7rem;
		&::after{
			content: "";
			position: absolute;
			bottom: 0;		
			left: 0;
			opacity: 0;
			height: 1px;
			width: 100%;
			background: #fff;
			border-radius: 80%;
			filter: blur(1px);	
			transform: scaleX(.4) translate3d(0,-8px,0);
			transition: all .4s cubic-bezier(.215,.61,.355,1);
			transform-origin: center bottom;
		}
	}
}
.footer-logo{
	text-align: center;
	& a{
		display: inline-block;
		padding: 1.5rem 0;
		& img{
			max-width: 150px;
		}
	}
}
.copy{
	font-family: din-condensed,sans-serif;
	color: #fff;
	text-align: center;
	font-size: 80%;
}
.red{
	color: #d70000;
}
.at{
	font-size: 85%;
}
.em{
	font-weight: bold;
}

/*PC用ここから*/
@media screen and (min-width:768px) {
.sp {
    display: none;
}
/*PC用ナビメニューここから*/
.menu{
	width: 100%;
	color: #fff;
	display: flex;
	padding: 1rem 0;
}
#header_nav{
	width: 100%;
	display: flex;
	gap:1rem;
	justify-content: center;
	background: #000;
}
#menu-btn-check {
    display: none;
}
.menu-bt{
	width: calc(100% / 10);
	text-align: center;
	align-self: center;
	text-indent: 0;
	font-size: 90%;
	display: block;
	color: #fff!important;
	font-weight: bold;
	word-break: keep-all;
}
/*PC用ナビメニューここまで*/
}

/*スマホ用ここから*/
@media screen and (max-width:767px) {
.PC {
    display: none;
}
#header_wrap{
	position: relative;
}
/*ハンバーガーメニューここから*/
.menu{
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	cursor: pointer;
	align-content: center;
}
.menu-btn {
	position: relative;
	width: 18px;
	height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #000;
	transition-duration: .3s;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 20px;
    border-radius: 2px;
    background-color: #ffffff;
    position: absolute;
	transition-duration: .3s;
}
.menu-btn span:before {
    bottom: 5px;
}
.menu-btn span:after {
    top: 5px;
}
#menu-btn-check {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  border: 0;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	position: fixed;
	z-index: 9999;
    transform: translateZ(0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
/*ハンバーガーメニューここまで*/
/*スマホ用ナビメニューここから*/
#header_nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
	background: #000;
	transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ #header_nav {
    left: 0;
}
#header_nav {
    padding: 3rem 0.7rem 0;
}
#header_nav button:not(.closeButton) {
	display: block;
    border-bottom: solid 1px #ffffff;
	color: #fff;
	position: relative;
	width: 100%;
	font-size: 15px;
	box-sizing: border-box;
	padding: 9px 15px 10px 0;
	&:last-child{
		border-bottom: none;
	}
	&::before{
		content: "";
		width: 7px;
		height: 7px;
		border-top: solid 2px #ffffff;
		border-right: solid 2px #ffffff;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 16px;
	}
}
/*スマホ用ナビメニューここまで*/
.guide-panel{
	gap: 0.5rem;
}
.guide-panel button{
	font-size: 100%;
}
.content{
	margin: 0;
}
.footer-nav{
	flex-wrap: wrap;
	gap:0;
	& a{
		width: calc(100% / 2);
		box-shadow: 0 0 0 1px #fff;
		text-align: center;
		padding: 1rem 0;
	}
}
}

@media (hover: hover) {
  /* リンクの場合 */
a:hover {
	text-decoration: none;	
}
#header_nav ul li a:hover, #header_nav ul li a:focus-visible{
	background: #9e9e9e;
}
  /* ボタンの場合 */
.closeButton:hover, .transButton:hover{
	text-decoration: none;
}
.closeButton:focus-visible, .transButton:focus-visible {
	outline:2px solid var(--link-color);
}
.footer-nav a:hover{
	text-decoration: none;
}
.footer-nav a:hover::after, .footer-nav a:focus-visible::after {
	transform: scaleX(0.8) translate3d(0, -8px, 0);
	opacity: 1;
}
}