@charset "UTF-8";

:root {
  --font-hiragino: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "メイリオ", "Meiryo", sans-serif;
  --font-yu-gothic: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --font-noto-sans: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  --font-noto-serif: "Noto Serif JP", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-feature-settings: "palt";
  font-family: var(--font-noto-sans);
  color: #231815;
}

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

ul,
ol {
  list-style: none;
}

:where(a) {
  text-decoration: initial;
  color: inherit;
  transition: 0.2s ease;
}

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

.disabled {
  pointer-events: none;
}

:where(.common-head) {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 30px;
  background-color: #594636;
  text-align: center;
  color: #fff;
  font-size: 33px;
  line-height: 63px;
  letter-spacing: 0.06em;
}

/*--------------------------------
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: 280px;
}
.footer .copyright {
  text-align: center;
  font-size: 12px;
}

/*--------------------------------
Remark
---------------------------------*/
main .remark {
  padding: 170px 50px 42px;
}
main .remark p {
  margin-left: 1em;
  line-height: 1.6;
  text-indent: -1em;
  font-size: 22px;
}

/*--------------------------------
Slider
---------------------------------*/
.js-slider {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.js-slider.slick-initialized {
  opacity: 1;
}
.js-slider .slick-slide {
  width: 750px;
}
.js-slider .slick-dots {
  margin-top: 35px;
  text-align: center;
}
.js-slider .slick-dots li {
  display: inline-block;
  margin: 0 10px;
}
.js-slider .slick-dots li button {
  position: relative;
  text-indent: -9999px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 50%;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background-color: #ccc0aa;
}
.js-slider .slick-dots li.slick-active button {
  background-color: #ac853e;
}
.js-slider .slick-dots li:only-child {
  display: none;
}
