@charset "utf-8";
/*--------------------------------
 common
---------------------------------*/
:root {
  --primary-color: #000;
  --text-color: #fff;
  --bg-color: #f2ece4;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 100%;
  }
}

body {
/*  font-family: '"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ P ゴシック", sans-serif';*/
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ P ゴシック", sans-serif;
  font-feature-settings: "palt";
}

body.drawer-active {
  overflow: hidden;
}

.all-container {
  position: relative;
}

main {
  width: 750px;
  margin-block: 164px 0;
  margin-inline: auto;
  overflow: hidden;
}

.w-full {
  width: 100%;
  visibility: visible;
}

.w-fit {
  width: fit-content;
}

.mx-auto {
  margin-inline: auto;
}

a {
  display: block;
  transition: all 0.2s;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media (width <= 750px) {
  a[href^="tel:"] {
    pointer-events: revert;
  }
}

address {
  font-style: normal;
}

button {
  display: block;
}

[disabled] {
  pointer-events: none;
}

/*--------------------------------
 header
---------------------------------*/
.header {
  width: 100%;
  padding: 13px 0;
  text-align: center;
  border-bottom: 1px solid #000;
  z-index: 1000;
  transition: top 0.8s;
}

.header .header__logo {
  width: 280px;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
}

.header .header__logo img {
  width: 100%;
}

.header .inner {
  position: relative;
  width: 750px;
  margin: 0 auto;
}

/*--------------------------------
 footer
---------------------------------*/
footer{
  width: 100%;
  padding: 30px 0 38px;
  border-top: 1px solid #000000;
  text-align: center;
  line-height: 1.6;
}
footer .pagetop {
  margin: 0 0 30px;
}
footer .footer-logo {
  width: 228px;
  margin: 0 auto;
}
footer .footer-logo img {
  width: 100%;
}
footer .footer-address {
  margin-top: 11px;
  font-size: 1.4rem;
}
footer .footer-contact {
  margin-top: 5px;
  font-size: 1.2rem;
}
footer .footer-contact a {
  display: inline-block;
  text-decoration: underline;
  color: inherit;
}
footer .copyright{
  margin-top: 17px;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  footer{
    padding: 6.4vw 0;
  }
  footer .pagetop {
    width: 10vw;
    margin: 0 auto 6.4vw;
  }
  footer .pagetop img {
    width: 100%;
  }
  footer .footer-logo {
    width: 41.6vw;
  }
  footer .footer-logo img {
    width: 100%;
  }
  footer .footer-address {
    margin-top: 2.93vw;
    font-size: 3.2vw;
  }
  footer .footer-contact {
    margin-top: 1.33vw;
    font-size: 3.2vw;
  }
  footer .copyright{
    margin-top: 6.93vw;
    font-size: 2.67vw;
  }
}

/*--------------------------------
 remark
---------------------------------*/
.remark {
  padding: 60px 50px;
}

.remark p {
  margin-left: 1em;
  line-height: 1.5;
  text-indent: -1em;
  font-size: 24px;
  font-feature-settings: "palt";
}

.remark p + p {
  margin-top: 0.2em;
}

/*--------------------------------
 accordion
---------------------------------*/
.accordion-wrapper.is-open .accordion-contents {
  grid-template-rows: 1fr;
}

.accordion-contents {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-out;
}

.accordion-inner {
  overflow: hidden;
}