@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Zalando+Sans+SemiExpanded:ital,wght@0,200..900;1,200..900&display=swap");
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

/* ------------------------------------
// base
------------------------------------ */
html {
  font-size: 62.5%;
}

body {
  color: #7F6F5A;
  font-family: "IBM Plex Sans JP", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
a:link {
  color: #7F6F5A;
  text-decoration: none;
}
a:visited {
  color: #7F6F5A;
  text-decoration: none;
}
a:hover {
  color: #7F6F5A;
  text-decoration: none;
}
a:active {
  color: #7F6F5A;
  text-decoration: none;
}

a {
  transition: 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (min-width: 1023px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

/* // screen
----------------------------------- */
.sp {
  display: none !important;
}

.tb {
  display: none !important;
}

.md {
  display: none !important;
}

.pc {
  display: block !important;
}

.pconly {
  display: block !important;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: none !important;
  }

  .md {
    display: none !important;
  }

  .tb {
    display: block !important;
  }

  .pc {
    display: block !important;
  }

  .pconly {
    display: none !important;
  }
}
@media screen and (max-width: 1200px) {
  .sp {
    display: none !important;
  }

  .md {
    display: block !important;
  }

  .tb {
    display: block !important;
  }

  .pc {
    display: block !important;
  }

  .pconly {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }

  .tb {
    display: block !important;
  }

  .pc {
    display: none !important;
  }

  .pconly {
    display: none !important;
  }
}
/* ------------------------------------
// header
------------------------------------ */
#hdinner {
  background: #fff;
  padding: 3rem;
}
#hdinner .hd_logo a {
  display: block;
  height: 8.4rem;
}
#hdinner .hd_logo a img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  #hdinner {
    padding: 2rem;
  }
  #hdinner .hd_logo a {
    height: 6rem;
  }
}

/* ------------------------------------
// menu
------------------------------------ */
.hamburger {
  display: block;
  position: fixed;
  right: 3rem;
  top: 3rem;
  width: 8.4rem;
  height: 8.4rem;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}
.hamburger span {
  background: url("/lib/img/cmn/menu_open.png") no-repeat;
  background-size: 100% auto;
  display: block;
  height: 8.4rem;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.3s ease-in-out;
  width: 8.4rem;
}

#nav_area {
  display: none;
  opacity: 0;
  visibility: hidden;
}

/* menu active */
.active {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.active .hamburger {
  right: 4rem;
}
.active .hamburger span {
  background: url("/lib/img/cmn/menu_close.png") no-repeat;
  background-size: 100% auto;
}
.active .menu_main {
  background-color: #EAC842;
  text-align: center;
  padding: 6.4rem 2rem;
}
.active #nav_area {
  background-color: #F2F1EF;
  display: block;
  height: 100%;
  left: 0;
  opacity: 1;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  transition: all 0.5s;
  visibility: visible;
  width: 100%;
  z-index: 998;
}
.active #gnav ul li {
  letter-spacing: .2em;
  margin-bottom: 3em;
}
.active #gnav ul li span {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-size: 4rem;
  font-weight: 700;
}
.active #gnav ul li span + span {
  font-family: "IBM Plex Sans JP", sans-serif;
  display: block;
  font-size: 2.4rem;
  padding-top: 1.2em;
  position: relative;
}
.active #gnav ul li span + span:before {
  background: url("/lib/img/cmn/bg_line_01.png") no-repeat;
  background-size: 100% auto;
  content: "";
  height: .5rem;
  left: 50%;
  position: absolute;
  pointer-events: none;
  top: .3em;
  transform: translateX(-50%);
  width: 5rem;
}
.active #gnav ul li a {
  color: #664822;
  display: block;
}
.active .bnr_stamp {
  margin: 0 auto;
  width: 80%;
  max-width: 1000px;
}
.active .menu_ft {
  text-align: center;
  padding: 6.4rem 2rem;
}
.active .menu_ft h2 {
  line-height: 1;
  margin: 0 auto 2em;
  max-width: 39.2rem;
}
.active .menu_ft p {
  margin: 0 auto 2em;
  width: 18em;
}
.active .menu_ft p a {
  background: #7F6F5A;
  border-radius: 10px;
  border: 3px solid #FFF;
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 600;
  padding: .5em 3.5rem;
  position: relative;
}
.active .menu_ft p a:after {
  background: url("/lib/img/cmn/icon_arrow_01.png") no-repeat;
  background-size: 100% auto;
  content: "";
  height: 1.6rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
}
.active .menu_ft ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.active .menu_ft ul li {
  width: 5.4rem;
}

@media screen and (max-width: 768px) {
  .hamburger {
    right: 2rem;
    top: 2rem;
    width: 6rem;
    height: 6rem;
  }
  .hamburger span {
    height: 6rem;
    width: 6rem;
  }

  .active #gnav ul li span {
    font-size: 2.4rem;
  }
  .active #gnav ul li span + span {
    font-size: 1.44rem;
  }
  .active #gnav ul li span + span:before {
    height: .3rem;
    width: 3rem;
  }
  .active .bnr_stamp {
    width: auto;
  }
  .active .menu_ft {
    padding: 3.84rem 2rem;
  }
  .active .menu_ft h2 {
    max-width: 23.5rem;
  }
  .active .menu_ft p {
    width: 60%;
  }
  .active .menu_ft p a {
    font-size: 1.6rem;
    padding: .5em 2.1rem;
  }
  .active .menu_ft p a:after {
    height: 1.2rem;
    width: 1.2rem;
  }
  .active .menu_ft ul {
    gap: 2rem;
  }
  .active .menu_ft ul li {
    width: 3.24rem;
  }
}
/* ------------------------------------
// main
------------------------------------ */
#main {
  padding: 6rem 0 0;
}

.hdtype01 {
  background: #FBF8E9 url("/lib/img/cmn/bg_h1.png") 0 0 repeat-x;
  background-size: auto 15.8rem;
  padding: 21rem 2rem 11rem;
  text-align: center;
}
.hdtype01 h1 {
  color: #7F6F5A;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.hdtype01 h1 span {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: .5em;
  position: relative;
}
.hdtype01 h1 span:before {
  background: url("/lib/img/cmn/icon_hd.png") no-repeat;
  background-size: 34px auto;
  content: "";
  height: 30px;
  left: -50px;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 34px;
}
.hdtype01 h1 strong {
  display: block;
  position: relative;
}
.hdtype01 h1 strong:before {
  background: url("/lib/img/cmn/bg_line_03.png") no-repeat;
  background-size: 110px auto;
  bottom: -.6em;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 110px;
}

@media screen and (max-width: 768px) {
  #main {
    padding: 4rem 0 0;
  }

  .hdtype01 {
    background: #FBF8E9 url("/lib/img/cmn/bg_h1_sp.png") 0 0 repeat-x;
    background-size: auto 10rem;
    padding: 13rem 2rem 6rem;
  }
  .hdtype01 h1 {
    font-size: 2.5rem;
  }
  .hdtype01 h1 span {
    font-size: 1.6rem;
  }
}
/* ------------------------------------
// footer
------------------------------------ */
#footer {
  background: #F2F1EF;
  text-align: center;
}
#footer .ft_main {
  padding: 8rem 2rem;
}
#footer .ft_main dl {
  margin: 0 auto;
  max-width: 48rem;
}
#footer .ft_main dl dd {
  display: block;
  margin: 0 auto;
  padding: 1.5em 0 2em;
  width: 77%;
}
#footer .ft_main dl + p {
  font-size: 1.4rem;
  margin-bottom: 3em;
}
#footer .ft_nav {
  background: #fff;
  border-radius: 10px;
  margin: 0 auto;
  max-width: 1000px;
  padding: 1em;
}
#footer .ft_nav ul {
  display: flex;
  gap: 1.5em;
  justify-content: center;
}
#footer .ft_nav ul li {
  font-weight: 500;
  padding-right: 1.5em;
  position: relative;
}
#footer .ft_nav ul li:before {
  background: url("/lib/img/cmn/bg_line_02.png") no-repeat;
  background-size: auto 2.2rem;
  content: "";
  height: 2.2rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: .2rem;
}
#footer .ft_nav ul li:last-child {
  padding-right: 0;
}
#footer .ft_nav ul li:last-child:before {
  display: none;
}
#footer .copy {
  background: #7F6F5A;
  padding: 2em 1em;
}
#footer .copy p {
  color: #fff;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}
#footer .pagetop {
  z-index: 5;
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  min-height: 0vw;
  min-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  width: 13.6rem;
}
#footer .pagetop.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  #footer .pagetop {
    width: 7rem;
    right: 1rem;
    bottom: 7rem;
  }
  #footer .ft_main {
    padding: 4.8rem 2rem;
  }
  #footer .ft_main dl {
    width: 60%;
  }
  #footer .ft_main dl dd {
    padding: .5em 0 2em;
  }
  #footer .ft_main dl + p {
    font-size: 2.4vw;
  }
  #footer .ft_nav ul {
    flex-wrap: wrap;
  }
  #footer .copy p {
    font-size: 2.1vw;
  }
}
