@charset "utf-8";

/* =========================================================

 base

========================================================= */

/* -------------------------------------
 reset
------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

img {
	vertical-align: top;
}

html {
	line-height: 1.6;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption,
th,
td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}

q,
blockquote {
	quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
	content: "";
	content: none;
}

a img {
	border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

sup {
	position: relative;
	top: -0.5em;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	position: relative;
	bottom: 0;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

/* -------------------------------------
 swiper_reset
------------------------------------- */

.swiper {
	overflow: clip;
}

.swiper-button-next,
.swiper-button-prev {
	margin-top: 0;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

*:focus {
	outline: none;
}

html {
	font-size: 62.5%;
	overflow-x: clip;
}

body {
	overflow-x: clip;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
	line-height: 1;
	background-color: #fff;
	color: #000;
}

a {
	text-decoration: none;
	cursor: pointer;
}

img {
	width: 100%;
	height: auto;
}

/* =========================================================

 state

========================================================= */

.pc {
	display: block;
}

.sp {
	display: none;
}

.is_fade_in {
	animation-name: fadeIn;
	animation-duration: 3s;
}

.is_absolute_top {
	position: absolute !important;
	top: 0 !important;
}

.is_absolute_bottom {
	position: absolute !important;
	bottom: 0 !important;
}

.is_fixed {
	position: fixed !important;
}

.is_fixed_top {
	position: fixed !important;
	top: 0 !important;
}

.is_bg_fixed {
	background-attachment: fixed !important;
}

/* =========================================================

 module

========================================================= */

.m_title {
	margin: 0 auto 90px;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.12em;
}

/* =========================================================

 module

========================================================= */

.l_header .header_inner {
	margin: 0 auto;
	max-width: 1164px;
}

.l_header .header_inner .logo {
	margin: 60px auto 70px;
	width: 160px;
}

.l_footer .copyright {
	margin: 90px auto 30px;
	max-width: 1164px;
}

.l_footer .copyright p {
	text-align: center;
	font-size: 1.4rem;
}

@media screen and (max-width: 768px) {

.pc {
	display: none;
}

.sp {
	display: block;
}

.m_title {
	margin-bottom: 13.0208333333vw;
	font-size: 5.2083333333vw;
}

.l_header .header_inner .logo {
	margin: 6.5104166667vw auto;
	width: 20.8333333333vw;
}

.l_footer .copyright {
	margin: 13.0208333333vw auto 7.8125vw;
}

.l_footer .copyright p {
	font-size: 2.34375vw;
}

}

@keyframes fadeIn {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

