@charset "UTF-8";
/* CSS Document */
/*===============================================
 responsive element
===============================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP&display=swap");
.pc-inline {
  display: inline !important;
}

.pc-inline-block {
  display: inline-block !important;
}

.pc-block {
  display: block !important;
}

.sp-inline,
.sp-inline-block,
.sp-block {
  display: none !important;
}

@media only screen and (max-width: 1000px) {
  .pc-inline,
  .pc-inline-block,
  .pc-block {
    display: none !important;
  }
  .sp-inline {
    display: inline !important;
  }
  .sp-inline-block {
    display: inline-block !important;
  }
  .sp-block {
    display: block !important;
  }
}

/*===============================================
 reset
===============================================*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

section, article, aside, hgroup, header, footer, nav, dialog, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  font-size: 62.5%;
}

body {
  color: #595757;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  line-height: 1.6;
}

@media only screen and (max-width: 1000px) {
  body {
    font-size: 3.46667vw;
    line-height: 2.30769;
  }
}

/*===============================================
 header
===============================================*/
.header {
	border-bottom: 1px solid #595757;
	z-index: 9999;
	transition: .5s;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	background-color: #FFFFFF;
}
.header.fixed {
	transform: translateY(-100%);
}
.header__inner {
	padding: 25px 90px;
}

@media only screen and (max-width: 1000px) {
  .header__inner {
    padding: 3.255556vw 4.66667vw;
  }
}

.header__logo {
	width: 105px;
	position: relative;
	z-index: 9999;
}

@media only screen and (max-width: 1000px) {
  .header__logo {
    width: 14vw;
  }
}

.header__logo > a {
  display: block;
}

.header__logo > a > img {
  display: block;
}

.header__menu {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  border: 2px solid #595757;
  border-radius: 30px;
  cursor: pointer;
	z-index: 9999;
}

@media only screen and (max-width: 1000px) {
  .header__menu {
    right: 4vw;
    width: 8vw;
    height: 8vw;
    border-width: 1px;
  }
}

.header__menu .border {
  position: absolute;
  left: 21.5px;
  top: 27px;
  width: 14px;
  height: 2px;
  background-color: #595757;
}

@media only screen and (max-width: 1000px) {
  .header__menu .border {
    left: 2.86667vw;
    top: 3.6vw;
    width: 1.86667vw;
    height: 1px;
  }
}

.header__menu .border:nth-child(2) {
  transform: translateY(-6px);
}

@media only screen and (max-width: 1000px) {
  .header__menu .border:nth-child(2) {
    transform: translateY(-0.8vw);
  }
}

.header__menu .border:nth-child(3) {
  transform: translateY(6px);
}

@media only screen and (max-width: 1000px) {
  .header__menu .border:nth-child(3) {
    transform: translateY(0.8vw);
  }
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
	position: absolute;
	width: 20px;
	height: 16px;
	top: 20px;
	left: 50%;
	margin-left: -10px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 7px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.menu-trigger.active span:nth-of-type(3) {
  opacity: 0;
}
@media only screen and (max-width: 1000px) {
	 .menu-trigger {
		 top:22px;
	}
	.menu-trigger span {
		position: absolute;
		height: 1px;
	}
}
@media only screen and (max-width: 767px) {
  .menu-trigger {
		top:33%;
		width: 12px;
		height: 9px;
		margin-left: -6px;
	}
	.menu-trigger span {
		position: absolute;
		height: 1px;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 4px;
	}
	.menu-trigger.active span:nth-of-type(1) {
		transform: translateY(4px) rotate(-45deg);
	}
}
.header nav {
	position: fixed;
	top: 0;
	left: 0;
	transition: all 0.3s;
	transform: translate(100vw);
	z-index: 1000;
}
.header nav.open {
	transform: translate(0); 
}
.header nav .gNav {
	background-color: #FFFFFF;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header nav .gNav ul {
	width: 100%;
}
.header nav .gNav li a {
	width: 100%;
	border-bottom: 1px solid #747374;
	display: block;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	text-align: left;
	position: relative;
}
.header nav .gNav li a:after {
	content: "";
	position: absolute;
	right: 30px;
	background-image: url(../images/icon_gNav.png);
	background-size: 16px auto;
	background-repeat: no-repeat;
	width: 16px;
	height: 28px;
}
/*===============================================
 footer
===============================================*/
.footer {
  padding: 60px 0;
}

@media only screen and (max-width: 1000px) {
  .footer {
    padding: 5.33333vw 0;
  }
}

.footer__inner {
  max-width: 705px;
  margin: 0 auto;
}

@media only screen and (max-width: 1000px) {
  .footer__inner {
    width: 89.33333vw;
  }
}

.footer__logo {
  width: 116px;
  margin: 0 auto;
}

@media only screen and (max-width: 1000px) {
  .footer__logo {
    width: 14vw;
  }
}

.footer__breadcrumb {
  margin-top: 60px;
}

@media only screen and (max-width: 1000px) {
  .footer__breadcrumb {
    margin-top: 7.2vw;
  }
}

.footer__breadcrumb > ul {
  font-size: 1.9rem;
  line-height: 1;
}

@media only screen and (max-width: 1000px) {
  .footer__breadcrumb > ul {
    font-size: 2.4vw;
  }
}

.footer__breadcrumb > ul > li {
  display: inline;
}

.footer__breadcrumb > ul > li:before {
  content: ' ＞ ';
}

.footer__breadcrumb > ul > li:first-child:before {
  display: none;
}

.footer__copyright {
  margin-top: 40px;
}

@media only screen and (max-width: 1000px) {
  .footer__copyright {
    margin-top: 2.66667vw;
  }
}

.footer__copyright > p {
  font-size: 1.1rem;
  line-height: 1;
}

@media only screen and (max-width: 1000px) {
  .footer__copyright > p {
    font-size: 1.86667vw;
  }
}
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
}
#page-top a {
  width: 60px;
  height: 60px;
  display: block;
  background-image: url("../images/pageTop.png");
  background-size: 60px 60px;
  color: transparent;
  font-size: 0px;
}
@media only screen and (max-width: 1000px) {
	#page-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
	}
	#page-top a {
		width: 30px;
		height: 30px;
		display: block;
		background-image: url("../images/pageTop.png");
		background-size: 30px 30px;
		color: transparent;
		font-size: 0px;
	}
}
/*===============================================
 common
===============================================*/
.main {
	padding-top: 82px;
}
@media only screen and (max-width: 1000px) {
  .main {
		padding-top: 44px;
	}
}
@media only screen and (max-width: 768px) {
  .main {
		padding-top: 78px;
	}
}
@media only screen and (max-width: 414px) {
  .main {
		padding-top: 44px;
	}
}
@media only screen and (max-width: 375px) {
  .main {
		padding-top: 40px;
	}
}
@media only screen and (max-width: 320px) {
  .main {
		padding-top: 34px;
	}
}
img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .1s linear;
  cursor: default;
}

a[href] {
  cursor: pointer;
}

a[href]:hover {
  opacity: 0.7;
}

.alt {
  display: none;
}