/* --------------------------------------------------
 * common
 * -------------------------------------------------- */

body{
	font-family: "Noto Sans JP", sans-serif;
	font-size:14px;
}

header,
main,
footer{
/*	overflow-x:hidden;*/
}

main{
	padding-top:76px;
}

.container{
	width:1280px;
	margin-right:auto;
	margin-left:auto;
	max-width:calc(100% - 1rem);

}


p{
	margin:0 0 1rem;
	line-height:1.6;
}

br.pc{
	display:inline;
}

br.sp{
	display:none;
}

@media screen and (max-width:992px){
	br.pc{
		display:none;
	}

	br.sp{
		display:inline;
	}
}

/* --------------------------------------------------
 * header
 * -------------------------------------------------- */


.site-header {
  position: relative;
  z-index: 1000;
  background: #fff;
position:fixed;
	width:100%;
}


.site-header__inner{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:1rem 0;
	transition:all 0.3s ease;

}

.site-header.is-scrolled .site-header__inner{
	padding:0.5rem 0;
}

.site-header__logo--wrapper{
	display:flex;
	flex-direction:row;
	justify-content:center;
	align-items:flex-end;
	gap:1rem;
}
	
a.site-header__logo{
	width:136px;
	display:block;
}

a.site-header__logo img{
	line-height:1;
}

.site-header__logo--wrapper span{
	font-size:0.85rem;
	line-height:1;
	font-weight:600;
	display:inline-block;
	text-align:left;
}

.site-header__logo--jpx{
	width:40px;
	margin-left:2.25rem;
}

.site-header__nav .site-header__menu{
	display:flex;
	gap:1.5rem;
}

.site-header__nav .site-header__menu li{

}

.site-header__nav .site-header__menu li a{
	font-weight:600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

@media screen and (max-width:992px){
	a.site-header__logo{
		width:88px;
	}
	.site-header__inner{
		padding-right:1rem;
		padding-left:1rem;
	}
}


/* =========================================
  Drawer Menu
========================================= */


.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}


.site-header__nav {
  margin-left: auto;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu a {
  color: #222;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.site-header__menu a:hover {
  color: #0f3f6f;
}

.site-header__toggle {
  display: none;
}

.site-header__overlay {
  display: none;
}

/* SP */
@media screen and (max-width: 1200px) {
  body.drawer-open {
    overflow: hidden;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .site-header__logo--wrapper {
    gap: 6px;
  }

  .site-header__logo--wrapper span {
    font-size: 10px;
    line-height: 1.1;
	  white-space:nowrap;
  }

  .site-header__logo--jpx {
	  margin-left:1.25rem;
	  width:32px;
  }

  .site-header__toggle {
    position: relative;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .site-header__toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 0 auto;
    background: #222;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  body.drawer-open .site-header__toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.drawer-open .site-header__toggle span:nth-child(2) {
    opacity: 0;
  }

  body.drawer-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    width: min(82vw, 360px);
    height: 100vh;
    height: 100dvh;
    margin-left: 0;
    padding: 88px 28px 40px;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }
	
	body.drawer-open .site-header__nav {
    transform: translateX(0);
  }
	.site-header__nav .site-header__menu {
		display: block;
  }

  .site-header__menu li {
    border-bottom: 1px solid #e5e8ec;
  }

  .site-header__menu a {
    display: block;
    padding: 18px 0;
    color: #222;
    font-size: 16px;
    line-height: 1.5;
  }

  .site-header__overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: block;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  body.drawer-open .site-header__overlay {
    opacity: 1;
    visibility: visible;
  }
}
/* =========================================
  Global Menu - Inquiry
========================================= */

.inquiry a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 140px;
  min-height: 44px;

  padding: 0 24px;

  background: #656565;
  color: #fff!important;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;

  border-radius: 2px;

  transition:
    background .3s,
    opacity .3s,
    transform .3s;
}

.inquiry a:hover {
  background: #3a3a3a;
  opacity: 1;
  transform: translateY(-1px);
}

/* SP */
@media (max-width: 767px) {

  .inquiry a {
    width: 100%;
    min-width: auto;
    min-height: 50px;

    justify-content: center;
  }

}

/* --------------------------------------------------
 * Footer
 * -------------------------------------------------- */


/* ==================================================
  Footer
================================================== */

.site-footer {
  background: #1f211d;
  color: #fff;
}

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

  padding:
    42px
    24px
    36px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* --------------------------------
  Brand
-------------------------------- */
.footer__brand {
  flex-shrink: 0;
}

.footer__logo {
  display: block;
  width: 150px;
  margin-bottom: 18px;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__address {
  margin: 0;

  color: rgba(255,255,255,.72);

  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* --------------------------------
  Navigation
-------------------------------- */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__menu,
.footer__sub {
  display: flex;
  flex-wrap: wrap;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer__menu {
  gap: 12px 24px;
}

.footer__sub {
  gap: 10px 18px;
	justify-content:flex-end;
}

.footer__menu a,
.footer__sub a {
  color: #fff;
  text-decoration: none;

  transition: opacity .3s;
}

.footer__menu a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer__sub a {
  color: rgba(255,255,255,.7);

  font-size: 11px;
  letter-spacing: 0.04em;
}

.footer__menu a:hover,
.footer__sub a:hover {
  opacity: .65;
}

/* --------------------------------
  Bottom
-------------------------------- */
.footer__bottom {
  padding: 18px 20px;

  background: #171917;

  text-align: center;
}

.footer__bottom small {
  color: rgba(255,255,255,.6);

  font-size: 11px;
  letter-spacing: 0.06em;
}

/* ==================================================
  SP
================================================== */

@media (max-width: 767px) {

  .footer__inner {
    padding:
      38px
      20px
      30px;

    display: block;
  }

  /* ------------------------------
    Brand
  ------------------------------ */
  .footer__brand {
    margin-bottom: 30px;
  }

  .footer__logo {
    width: 130px;
    margin-bottom: 14px;
  }

  .footer__address {
    font-size: 11px;
    line-height: 1.8;
  }

  /* ------------------------------
    Navigation
  ------------------------------ */
  .footer__nav {
    gap: 18px;
  }

  .footer__menu {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px 18px;
  }

  .footer__sub {
    flex-direction: column;
    gap: 10px;
  }

  .footer__menu a {
    font-size: 12px;
  }

  .footer__sub a {
    font-size: 11px;
  }

  /* ------------------------------
    Bottom
  ------------------------------ */
  .footer__bottom {
    padding: 16px 20px;
  }

  .footer__bottom small {
    font-size: 10px;
    line-height: 1.6;
  }

}
