@charset "utf-8";
/*--------------------------------
 common
---------------------------------*/
html {
   scroll-behavior: smooth; 
}

body {
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', '游ゴシック Medium', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, sans-serif;
  font-feature-settings: "palt";
}

main {
  width: 750px;
  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.3s;
}

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

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

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 {
  padding: 45px 0 50px;
  text-align: center;
  position: relative;
  border-top: 1px solid black;
  line-height: 1;
}

.footer .logo {
  padding: 0 0 10px;
}

.footer .logo span {
  display: block;
  width: 66px;
  margin: 0 auto 55px;
  cursor: pointer;
}

.footer .logo a {
  display: inline-block;
  width: 360px;
}

.footer .copyright {
  text-align: center;
  font-size: 12px;
}

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

.remark p {
  margin-left: 1em;
  line-height: 1.5;
  text-indent: -1em;
  font-size: 22px;
  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;
}