@charset "UTF-8";
/*----------------------------------------
	共通部分
----------------------------------------*/
html {
  font-size: 10px;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
   -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #231815;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  display: block;
}
a {
  color: #231815;
  outline: none;
  text-decoration: none;
  transition: 0.3s;
  display: block;
}
/*
a:hover {
  opacity: 0.7;
}
*/
img {
  width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6,
dt,
th {
  font-weight: bold;
}
@supports (-webkit-touch-callout: none) {
  body {
    font-weight: 500;
    letter-spacing: 0.01em;
  }
}

button {
  color: #231815;
}
.font-red {
  color: #e8382f;
}
.highlight {
  background: linear-gradient(transparent 95%, #e8382f 0%);
  line-height: 1;
  display: inline;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 8;
}
body.active::before {
  opacity: 1;
  pointer-events: auto;
}

/*----------------------------------------
	l-container
----------------------------------------*/
.l-container {
  display: block;
}
/*----------------------------------------
	l-header
----------------------------------------*/
.l-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 26px 23px 44px;
  background-color: #e6e6e6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}
.l-header__logo {
  position: relative;
  z-index: 11;
  width: 276px;
  height: auto;
}
.l-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.l-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  max-width: 280px;
  background: #e6e6e6;
  padding: 105px 20px 50px;
  overflow-y: auto;
/*
  opacity: 0;
  visibility: hidden;
*/
  transition: all 0.3s ease-in-out;
  z-index: 10;
  transform: translateX(100%);
}
.l-header__nav ul {
  display: block;
}
.l-header__nav ul li {
  text-align: center;
}

.l-header__nav ul li a {
  display: block;
  padding: 20px 13px 11px 34px;
  border-bottom: 1.2px solid #f3a68c;
  position: relative;
  text-align: left;
}

.l-header__nav ul li a .nav-inner {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  color: #e8382f;
  position: relative;
  transition: transform 0.25s ease-out;
  
}

.l-header__nav ul li a .nav-inner::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #e8382f;
  border-bottom: 1.5px solid #e8382f;
  position: absolute;
  top: 37%;
  left: -26px;
  transform: rotate(-45deg);
}

.l-header__nav ul li a:hover .nav-inner {
  transform: translateX(5px);
}

.l-header__hum {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 11;
  box-sizing: border-box;
}
.l-header__hum div {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 25px;
  height: 20px;
}
.l-header__hum span {
  display: block;
  width: 100%;
  height: 2px;
  background: #e8382f;
  transition: 0.3s;
  transform-origin: center;
}
.l-header.active .l-header__nav {
  transform: translateX(0);
}

.l-header.active .l-header__hum span:nth-child(1) {
  transform: translateY(9px) rotate(-45deg);
}
.l-header.active .l-header__hum span:nth-child(2) {
  opacity: 0;
}
.l-header.active .l-header__hum span:nth-child(3) {
  transform: translateY(-9px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 25px 5vw;
  }
  .l-header__nav {
    width: 70%;
    max-width: none;
    height: 100vh;
    padding: 21vw 6vw 5vw;
  }
  .l-header__nav ul li a {
    padding: 4vw 5vw 3.6vw;
  }
  
  .l-header__nav ul li a .nav-inner::before {
    width: 10px;
    height: 10px;
    left: -18px;
  }
  .l-header__nav ul li a .nav-inner {
  font-size: 4.485vw;
  
}
  .l-header__hum {
    width: 25px;
    height: 20px;
    z-index: 11;
  }
  .l-header__hum div {
    width: 25px;
    height: 20px;
  }
  .l-header__hum span {
    height: 2px;
    background: #e8382f;
  }
}
/*----------------------------------------
	l-footer
----------------------------------------*/
.l-footer {
  padding: 40px 50px 25px;
}
.l-footer__logo {
  width: 186px;
  height: auto;
  margin: 0 auto 32px;
}
.l-footer__logo img {
  width: 100%;
  height: 100%;
}
.l-footer__copyright {
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 9vw 5vw 4vw;
  }
  .l-footer__logo {
    width: 37.2vw;
    margin: 0 auto 6.4vw;
  }
  .l-footer__copyright {
    font-size: 0.9rem;
  }
}

/*----------------------------------------
	page-top
----------------------------------------*/

.l-page-top {
  width: 65px;
    position: fixed;
    right: 40px;
    bottom: 25px;
    z-index: 5; 
}
.l-page-top a img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .l-page-top {
    	width: 12vw;
    right: 3vw;
    bottom:5vw;
  
}

  }






















