@charset "utf-8";

/* 
stylesheet common
202009
*/

html, body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  background: #fff;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  transition: .25s;
}

img {
  width: 100%;
}

@media only screen and (min-width: 801px) {
.br-sp {display: none; }
  }

/* coming soon */
a.cs, .cs a {
  color: #ccc;
  background: #999;
}

section {
  position: relative;
}

@media only screen and (max-width: 800px) {
  html, body {
    font-size: 14px;
  }
}


/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  box-sizing: border-box;
  z-index: 101;
}

header .btnSet {
  position: absolute;
  top: 24px;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
header .btnSet li {
  margin-right: 10px;
  width: 55px;
}

.btn_menu,
.btn_menu span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.btn_menu {
	position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 43px;
	cursor: pointer;
	z-index: 121;
}
.btn_menu .inbox {
  position: relative;
  width: 100%;
  height: 36px;
  margin: 33px auto;
}
.btn_menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #171c61;
}
.btn_menu span:nth-of-type(1) {
  top: 0;
}
.btn_menu span:nth-of-type(2) {
  top: 15px;
}
.btn_menu span:nth-of-type(3) {
  bottom: 0;
}
.btn_menu.active span {
  background-color: #000;
}
.btn_menu.active span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 50%;
  margin: -3px 0 0 0;
}
.btn_menu.active span:nth-of-type(2) {
  opacity: 0;
}
.btn_menu.active span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  margin: -3px 0 0 0;
}

.navPanel {
	position: absolute;
  top: 10px;
  left: -20px;
  width: 100%;
	z-index: 100;
  transition: .25s;
  visibility: hidden;
  opacity: 0;
  max-width: 640px;
  width: 100%;
  background: rgba(255,255,255,.96);
  z-index: 110;
  box-shadow: 0 2px 10px #ddd;
  padding: 80px 75px 70px 75px;
}
.navPanel.open {
  visibility: visible;
  opacity: 1;
}
.navPanel nav a {
	display: block;
	width: 100%;
	padding: 24px 0;
	box-sizing: border-box;
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size: 36px;
	line-height: 1em;
	text-align: center;
  border-top: 4px solid #eee;
  display: flex;
  align-items: center;
}
.navPanel nav a:first-of-type {
  border-top: none;
  padding-top: 0;
}
.navPanel nav a:last-of-type {
  padding-bottom: 0;
}
.navPanel nav a p {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1em;
  margin: 0 22px 0 0;
}
.navPanel nav a span {
  display: block;
  font-size: 15px;
  font-weight: 400;
}

@media only screen and (max-width: 800px) {
  header {
    height: 60px;
  }
  header .btnSet {
    top: 10px;
    right: 10px;
  }
  header .btnSet li {
    width: 40px;
  }
  .btn_menu {
    width: 60px;
    height: 60px;
  }
  .btn_menu .inbox {
    position: relative;
    width: 30px;
    height: 24px;
    margin: 15px auto;
  }
  .btn_menu span {
    height: 4px;
  }
  .btn_menu span:nth-of-type(2) {
    top: 10px;
  }
  .navPanel {
    top: 0;
    left: 0;
    padding: 12% 5% 5% 5%;
  }
  .navPanel .btn_close {
    top: 12px;
    left: 20px;
    width: 34px;
    height: 34px;
  }
  .navPanel .btn_close span {
    left: -2px;
    width: 30px;
    height: 3px;
    margin: -3px 0 0 0;
  }
  .navPanel nav a {
    padding: 3% 0;
    border-top: 2px solid #eee;
  }
  .navPanel nav a p {
    font-size: 20px;
    margin: 0 3% 0 0;
  }
  .navPanel nav a span {
    font-size: 13px;
  }
}

/* article */
article {
  position: relative;
}

header > .inner {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
section > .inner,
footer > .inner {
  position: relative;
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

@media only screen and (max-width: 800px) {
  article {
    padding: 70px 0 0;
  }
}


/* footer */
footer {
  position: relative;
  padding: 12px 0 68px;
  background: #fff;
  z-index: 2;
}
footer .links {
  display: flex;
  flex-wrap: wrap;
}
footer .links li:first-of-type {
  height: 1em;
  margin: 0 1em 0 0;
  padding: 0 1em 0 0;
  font-size: 13px;
  border-right: 1px solid #333;
}
footer .links li a {
  display: block;
  font-size: 13px;
  line-height: 1em;
  color: #333;
}
footer .links li a:hover {
  color: #777;
}
footer .copyright {
  position: relative;
  padding: 53px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}

@media only screen and (max-width: 800px) {
  footer .links {
    justify-content: center;
    padding: 40px 0 0 0;
  }
}


.pagetop {
  position: absolute;
  top: 0;
  right: 0;
  /*display: none;*/
  width: auto;
  height: 16px;
  padding: 0 0 0 22px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #333333;
  line-height: 16px;
  background: url("../img/common/footer_icon_arrow.png") left center no-repeat;
  background-size: 14px 9px;
  cursor: pointer;
  z-index: 10;
  letter-spacing: 3px;
}