@charset "UTF-8";

*, *::before, *::after {
	box-sizing: border-box;
	color: #000000;
}
html {
	height: 100%;
	font-size: 62.5%; /* 10px */
}
body {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	margin: auto;
	font-size: 14px;
	font-size: 1.4rem;
	position: relative;
	color: #000;
	background-color: #fff;
	font-family: 'Noto Serif JP', serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
	word-break: break-word;
	font-feature-settings: "palt";
	letter-spacing: 0.06em;
	z-index: 0;
	line-height: 1;
}
body * {
	z-index: 0;
}
img {
	width: 100%;
	height: auto;
}
a {
    text-decoration: none;
	pointer-events: auto;
}
/*a:hover {
    opacity: 0.5;
    transition: 0.5s;
}*/

header, footer, main {
    width: 100%;
}
article {
    width: 100%;
    height: auto;
    position: relative;
	padding: 50px 0;
}
article>section {
    max-width: 1200px;
	min-width: 1024px;
    width: 90%;
    margin: 0 auto;
	position: relative;
}

.left {
    float: left;
}
.right {
    float: right;
}
.flex {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
}
.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;	
}

.sky {
	color: #00a5e3 !important;
}
.red {
	color: #da0000 !important;
}
.white-bg {
	background: #ffffff;
}
.black-bg {
	background: #000000;
}
.gray-bg {
	background: #eeeeee;
}
.sky-bg {
	background: #B0DEEC;
}
.green-bg {
	background: #A5D3AB;
}
.check-bg {
	background: url(../img/check.png);
}

.big {
	color: inherit;
	font-size: 1.5em;
}
.small {
	color: inherit;
	font-size: 0.75em;
}
.thin {
	font-weight: 400;
}

/* mv scroll */
a.scroll {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  /* writing-mode: vertical-lr; */
}
a.scroll::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	  }
	  30% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	  }
	  70% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	  }
	  100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	  }
}


@media all and (-ms-high-contrast: none) {
}
.pc {
	display: inherit;
}
.sp, .tab {
	display: none !important;
}

/* loading --------------------------------------- */
section#loading {
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
}
section#loading>div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
section#loading>div img {
	width: 250px;
	animation: rolling 2s ease 0s infinite;
}

@keyframes rolling {
	0% {
		transform: rotateY(0deg);
	}
	100% {
		transform: rotateY(360deg);
	}
}

/* header --------------------------------------- */
header {
    height: 90px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9998;
}
header section {
    width: 100%;
	position: relative;	
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-left, .header-center, .header-right {
    height: 90px;
	position: relative;
	display: flex;
	align-items: center;
}
.header-left {
	display: flex;
    align-items: center;
}
.header-center {
/*	width: 50%;*/
	margin: 0 auto;
}
.header-right {
	float: right;
}
.header-left img {
	height: 90px;
	width: auto;
}
.header-left div p {
	padding-bottom: 5px;
    font-weight: bold;
    font-size: 10px;
}
.header-right>div {
	margin-right: 20px;
	display: flex;
}
.header-right>div img {
	height: 45px;
	width: auto;
	margin-left: 20px;
}
.header-right a.hd-button {
	width: 150px;
	margin-right: 25px;
}

a#openModal, a#closeModal {
	display: inherit;
    position: relative;
    width: 50px;
    z-index: 3;
    cursor: pointer;
	margin: 0 25px 0 50px;
}

/* modal */
.modalArea {
	display: none;
	position: fixed;
	z-index: 9999; /*サイトによってここの数値は調整 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.modalBg {
	width: 100%;
	height: 100%;
	background-color: rgba(30,30,30,0.9);
}
.modalWrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
	width: 90%;
}
#closeModal {
	position: absolute !important;
	top: 13px;
    right: 0px;
}

nav#menu {
	width:100%;
	padding: 100px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
nav#menu ul {
}
nav#menu ul li {
	color: #fff;
	display: list-item;
	text-align: center;
	font-size: 1.6rem;
    font-weight: bold;
    line-height: 2em;
    margin-left: 0;
    padding: 1em;
}


/* footer --------------------------------------- */
footer {
	position: relative;
	background: #AA1323;
	padding: 50px 0;
	z-index: 9998;
}
footer section {
	display: flex;
	justify-content: space-around;
}

.footer-left {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-right {
}
#copyright {
	text-align: center;
	font-size: 1.6rem;
	color: #fff;
	padding-top: 25px;
}

.footer-left img {
	width: 180px;
}
.footer-right ul li {
	color: #fff;
	line-height: 3em;
	font-size: 1.3rem;
}
.footer-right ul div {
	margin-top: 25px;
}
.footer-right ul div img {
	height: 30px;
	width: auto;
	margin-right: 15px;
}

@media screen and (max-width: 1024px){
	.tab {
		display: inherit;
	}
	article>section {
		max-width: unset;
		min-width: unset;
	}
}
@media screen and (max-width: 767px){
	.pc {
		display: none !important;
	}
	.sp {
		display: inherit !important;
	}
	article>section {
		max-width: unset;
		min-width: unset;
	}
	a.scroll {
		right: 5px;
	    bottom: 5px;
	    font-size: 1rem;
	    padding: 5px 5px 100px;
	}
	a.scroll::after {
		height: 90px;
	}

	header {
		width: 100vw !important;
		height: 70px;
	}
	.header-left, .header-center, .header-right {
		height: 70px;
	}
	.header-left img {
		height: 70px;
	}
	.header-right>div {
		margin-right: 10px;
	}
	.header-right>div img {
		height: 37px;
		width: auto;
		margin-left: 10px;
	}

	.modalArea {
		width: 100vw;
		height: 100vh;
	}
	.modalWrapper {
		width: 85%;
	}
	a#openModal, a#closeModal {
		width: 40px;
		margin: 15px 10px 0 0;
	}
	#closeModal {
		top: 0;
	}

	nav#menu {
		padding: 10px 10px 80px;
	}
	nav#menu ul li {
		font-size: 1.4rem;
		line-height: 1em;
	}

	footer {
		padding-bottom: 25px;
	}
	footer section {
		display: block;
	}
	.footer-left {
		margin-bottom: 50px;
	}
	.footer-right ul{
		text-align: center;
	}
	.footer-right ul div img[alt="Instagram"] {
		margin-right: 0;
	}
	#copyright {
		font-size: 1rem;
	}
}
@media screen and (max-width: 499px){
	br.tab {
	}
}