@charset "utf-8";
/* CSS Document */
/* ------------------------------------------------------------------------ */

/*  Reset

/* ------------------------------------------------------------------------ */

html {
	overflow-y: scroll;
	height: 100%;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
p,
blockquote {
	margin: 0;
	padding: 0;
}

fieldset {
	display: inline;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
}

body

/**/
table {
	line-height: 1.5;
}

q:before,
q:after {
	content: '';
}

object,
embed {
	vertical-align: top;
}

hr,
legend {
	display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
}

img,
abbr,
acronym,
fieldset {
	border: 0;
}

li {
	list-style-type: none;
}

img[usemap] {
	border: none;
	height: auto;
	max-width: 100%;
	width: auto;
}

img {
	border: 0;
	max-width: 100%;
}

i {
	padding: 5px 5px 2px 0;
}

p {
	word-break: break-all;
}

/* Flexible Images */
img {
	max-width: 100%;
	height: auto;
	width
	/***/
	: auto;
}

submit {
	-webkit-appearance: none;
}

/* ------------------------------------------------------------------------ */

/*  Basic Style

/* ------------------------------------------------------------------------ */

body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-size: 16px;
	line-height: 1.5;
	color: #444;
	-webkit-text-size-adjust: 100%;
	font-smoothing: auto;
}

body *,
body *:before,
body *:after {
	box-sizing: border-box;
}

#wrap {
	margin: 0 auto;
}

body>#wrap {
	height: auto;
}


/* Link
--------------------------------------------------------------------------- */

.opacity a:hover img {
	opacity: 0.85;
}

a:link {
	text-decoration: none;
	color: #00F;
}

a:visited {
	text-decoration: none;
	color: #941D55;
}



.pcStyle {
	display: block;
}

.spStyle {
	display: none;
}

@media screen and (max-width: 767px) {
	.pcStyle {
		display: none;
	}

	.spStyle {
		display: block;
	}
}

/* ------------------------------------------------------------------------ */

/* Hedaer

/* ------------------------------------------------------------------------ */

header {
	max-width: 1200px;
	width: 100%;
	margin-inline: auto;
	left: 0;
	right: 0;

	position: fixed;
	z-index: 999;
}

.nav-menu {
	display: none;
	/* 初期状態：非表示 */
	position: fixed;
	top: 0;
	right: -300px;
	/* 画面右端の外に隠す（幅に合わせて調整） */
	width: 100%;
	/* メニューの幅を固定 */
	height: fit-content;
	background-color: #0e1669;
	/* 背景を白に変更 */
	box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
	/* 影をつけて浮き上がらせる */
	transition: right 0.3s ease;
	z-index: 9999;
	padding: 45px;
}

/* アクティブ時に右からスライドイン */
.nav-menu.is-active {
	display: block;
	right: 0;
	/* 右端に表示 */
}

.nav-menu ul li a {
	color: #fff;
}

.nav-menu ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.menu-btn {
	width: 50px;
	height: 50px;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 99999;
}

/* 3本の線に共通するスタイル */
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
	display: block;
	width: 30px;
	height: 3px;
	background-color: #fff;
	position: absolute;
	left: 10px;
	transition: all 0.3s;
	/* 動きを滑らかに */
}

/* 真ん中の線 */
.menu-btn span {
	top: 24px;
}

/* 上の線 */
.menu-btn span::before {
	content: '';
	top: -8px;
	left: 0;
}

/* 下の線 */
.menu-btn span::after {
	content: '';
	top: 8px;
	left: 0;
}

/* --- アクティブ状態（三本線→バツ印に変える例） --- */
.menu-btn.is-active span {
	background-color: transparent;
	/* 真ん中の線を消す */
}

.menu-btn.is-active span::before {
	top: 0;
	transform: rotate(45deg);
	/* 上の線を傾ける */
}

.menu-btn.is-active span::after {
	top: 0;
	transform: rotate(-45deg);
	/* 下の線を傾ける */
}

/* ------------------------------------------------------------------------ */

/* Navigation

/* ------------------------------------------------------------------------ */

nav {}


/* ------------------------------------------------------------------------ */

/* Contents

/* ------------------------------------------------------------------------ */

#mainBlock {
	clear: both;
}

/* ------------------------------------------------------------------------ */

/* Footer

/* ------------------------------------------------------------------------ */

footer {
	clear: both;
}