@charset "UTF-8";
/*----------------------------------------
 * FOUNDATION
----------------------------------------*/
:root {
  --main-color: #B68EB7;
  --bg-color: #EFEEE4;
  --bg1-color: rgba(229, 227, 210, 0.27);
  --bg2-color: #C7D5DA;
  --bg3-color: #DDD9BB;
  --font-color: rgb(112, 112, 112);
  --olive: #8E886C;
  --peru: #BF9B77;
  --green: #658362;
  --blue: #87ADBA;
  --blue2: #7E99B9;
  --red: #C45353;
  --khaki: #B2AE8C;
  --yellow: #ffff00;
  --white: #FFFFFF;
  --black: #000000;

  /* size */
  --sp-size: calc(100vw / 375);
  --pc-size: calc(100vw / 1920);
}

/* font */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap');

/* リセット */
body,
h1,
h2,
h3,
p,
figure,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  color: var(--font-color);
  font-family: "Noto Sans JP", ”ヒラギノ角ゴ Pro W3″, “Hiragino Kaku Gothic Pro”, “メイリオ”, Meiryo, Osaka, “ＭＳ Ｐゴシック”, “MS PGothic”, sans-serif;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%!important;/*Chrome,Safari*/
  -ms-text-size-adjust: 100%;/*EgdeMobile*/
  -moz-text-size-adjust: 100%;/*firefox*/
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}

/*----------------------------------------
 * HEADER
----------------------------------------*/
.header {
  position: fixed;
  width: 100%;
  background-color: var(--bg-color);
  z-index: 999;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 70px;
  padding: 0 18px;
  
}
.header-logo img {
  width: 152px;
}
.header-btn {
  width: 24px;
  height: 26px;
  padding: 0;
  background: none;
  border: 0;
  z-index: 999;
}
.header-btn span {
  position: relative;
  display: block;
  height: 3px;
  border-radius: 4px;
  background-color: var(--black);
  transition: .3s;
}
.header-btn span::before,
.header-btn span::after {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--black);
  transition: .3s;
}
.header-btn span::before {
  top: -10px;
}
.header-btn span::after {
  bottom: -10px;
}

.is-openMenu .header-btn span {
  background-color: transparent;
}
.is-openMenu .header-btn span::before {
  top: 0;
  background-color: var(--white);
  transform: rotate(45deg);
}
.is-openMenu .header-btn span::after {
  top: 0;
  background-color: var(--white);
  transform: rotate(-45deg);
}
.is-openMenu .header-gnav {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991px) {
  .header-gnav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 0 20px 120px;
    color: var(--white);
    font-size: 12px;
    opacity: 0;
    transform: translateX(120%);
    transition: .3s;
  }
  .header-gnavList {
    padding: 60px 40px;
    background-color: var(--main-color);
  }
  .header-gnavList li {
    padding: 22px 8px;
    border-bottom: 2px dotted var(--white);
  }
  .header-gnavList a:hover {
    color: var(--yellow);
  }
}

@media (min-width: 992px) {
  .header {
    position: static;
  }
  .header-inner {
    max-width: 1560px;
    height: 140px;
  }
  .header-logo img {
    width: 347px;
  }
  .header-btn {
    display: none;
  }
  .header-gnavList {
    display: flex;
    gap: 2.6em;
    margin-top: 70px;
    font-size: 17px;
  }
  .header-gnavList a {
    transition: all .5s;
  }
  .header-gnavList a:hover {
    opacity: 0.6;
  }
}

/*----------------------------------------
 * MAIN
----------------------------------------*/
/* SIDE LABEL */
.side-label {
  position: fixed;
  top: 70px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 126px;
  padding-top: 6px;
  background-color: var(--main-color);
  color: var(--white);
  font-size: 15px;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
  z-index: 999;
}
.is-openMenu .side-label {
  display: none;
}

@media (min-width: 992px) {
  /* SIDE LABEL */
  .side-label {
    top: 140px;
    width: 60px;
    height: 240px;
    font-size: 28px;
  }
  .side-label a:hover {
    color: var(--yellow);
  }
}

/*----------------------------------------
 * FOOTER
----------------------------------------*/
.footer {
  background-color: var(--bg-color);
}
.footer-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 30px 0;
}
.footer-menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  font-size: clamp(0.75rem, 0.523rem + 0.97vw, 1.25rem);
}
.footer-menu-left,
.footer-menu-right {
  width: 47%;
}
.footer-menu-list li {
  padding: 16px 8px;
  border-bottom: 2px dotted var(--font-color);
}
.footer-sns {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.footer-sns a {
  margin: 0 8px 28px;
}
.footer-sns a:hover {
  opacity: 0.7;
}
.footer-logo {
  text-align: center;
}
.footer-copy {
  padding: 11px;
  text-align: center;
  font-size: 9px;
}

@media (min-width: 992px) {
  .footer-menu {
    margin-bottom: 60px;
  }
  .footer-menu-left,
  .footer-menu-right {
    width: 40%;
  }
  .footer-sns {
    margin-bottom: 20px;
  }
  .footer-sns a {
    margin: 0 24px 28px;
  }
  .footer-sns img {
    width: 40px;
  }
  .footer-logo {
    display: block;
    margin: 0 auto;
    width: 318px;
  }
  .footer-logo img {
    margin-bottom: 16px;
    width: 100%;
  }
  .footer-copy {
    padding-bottom: 80px;
    font-size: 15px;
  }
}



/*----------------------------------------
 * UTILITY
----------------------------------------*/
.sp {
  display: block!important;
}
.pc {
  display: none!important;
}

.mt60 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .sp {
    display: none!important;
  }
  .pc {
    display: block!important;
  }
}

/*----------------------------------------
 * ANIME
----------------------------------------*/
.fadeIn {
  /* padding: 24px 0; */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s, transform .8s;
}
.fadeIn.appear {
  opacity: 1;
  transform: none;
}

/*----------------------------------------
 * 404
----------------------------------------*/
.box404-inner {
  display: flex;
  flex-direction: column;
  min-height: 70vh;
  padding: 120px;
}
.box404-inner p {
  margin-bottom: 24px;
  font-size: 18px;
  text-align: center;
}
.btn01-wrap {
  margin-bottom: 60px;
}
.btn01-wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 54px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--font-color);
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.btn01-wrap a:hover {
  background-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 2px rgba(0,0,0,.3);
  opacity: 0.7;
}

@media (min-width: 992px) {
  .btn01-wrap a {
    width: 477px;
    height: 95px;
    font-size: 25px;
  }
}