@charset "utf-8";

:root {
  --color-primary: #202020;
  --color-secondary: #333333;
  --color-tertiary: #f5f5f5;
  --color-background: #eeede8;
  --color-alternate1: #d9dec6;
  --color-alternate2: #d5e1e3;
  --color-border: #c7c7c7;
  --color-font: #333333;
  --color-gray: #999999;
  --color-blue: #4d84bc;
  --color-red: #c65f5f;

  --container: 960px;
  --wrapper: 640px;

  --header-pc: 99px;
  --header-sp: 66px;
  --logo-pc: 66px;
  --logo-sp: 44px;
}

body {
  background: var(--color-background);
  color: var(--color-font);
  font-family: "Open Sans", "YuGothic_Family", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(1.6rem, 0.4vw + 1.2rem, 1.8rem);
  font-weight: 400;
  font-feature-settings: "palt" 1;
  font-variant-east-asian: proportional-width;
  font-synthesis: none;
  line-height: normal;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-block-size: 100dvh;
  inline-size: 100%;
  overflow-x: clip;
  overflow-y: auto;
  position: relative;
  color-scheme: light;
  scrollbar-gutter: stable both-edges;
}

p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}

.sans-serif-fonts {
  font-family: "Montserrat",
    "YuGothic_Family",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif !important;
}

::selection {
  background-color: var(--color-primary);
  color: #fff;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus:not(:focus-visible) {
  text-decoration: none;
  outline: none;
}

:focus {
  outline: none;
}

li {
  list-style: none;
}

input[type="text"],
input[type="email"],
textarea {
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

input[type="submit"],
input[type="button"],
button {
  border-radius: 0;
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
  border: none;
}

input[type="search"]::-webkit-search-decoration {
  display: none;
}

main {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding-top: var(--header-pc);
}

em {
  font-style: normal;
  color: var(--color-blue);
}

b,
strong {
  font-weight: 700;
}

ul.slick-dots {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 22px;
}

ul.slick-dots li {
  overflow: hidden;
  position: relative;
  width: 11px !important;
  height: 11px !important;
  min-height: auto !important;
  border-radius: 50% !important;
  background: var(--color-gray) !important;
  padding: 0 !important;
  cursor: pointer !important;
}

ul.slick-dots li button {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50% !important;
  background: transparent !important;
  text-indent: -9999px !important;
}

ul.slick-dots li.slick-active {
  background: var(--color-blue) !important;
}

/* ハンバーガーメニューのスタイル */
.nav-toggle {
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 16.5px);
  right: 22px;
  width: 33px;
  height: 33px;
  background-color: transparent;
  display: none;
  z-index: 11;
}

.nav-toggle::after,
.nav-toggle::before {
  position: absolute;
  top: calc(50% - 1px);
  content: "";
  width: 33px;
  height: 2px;
  display: block;
  background: #ccc;
}

.nav-toggle::before {
  transform: translateY(-9px);
  box-shadow: 0 9px 0 #ccc;
  animation: nav-toggle-top 0.4s forwards;
}

.nav-toggle::after {
  transform: translateY(9px);
  animation: nav-toggle-bottom 0.4s forwards;
}

.nav-toggle.active::before {
  animation: nav-toggle-top-active 0.4s forwards;
}

.nav-toggle.active::after {
  animation: nav-toggle-bottom-active 0.4s forwards;
}

.nav-toggle.load::before,
.nav-toggle.load::after {
  animation: none;
}

/* アニメーション */
@keyframes nav-toggle-top {
  0% {
    box-shadow: none;
    transform: translateY(0px) rotate(45deg);
  }

  50% {
    box-shadow: none;
    transform: translateY(0px) rotate(0);
  }

  100% {
    transform: translateY(-9px) rotate(0);
  }
}

@keyframes nav-toggle-top-active {
  0% {
    transform: translateY(-9px) rotate(0);
  }

  50% {
    box-shadow: none;
    transform: translateY(0px) rotate(0);
    background: #ccc;
  }

  100% {
    box-shadow: none;
    transform: translateY(0px) rotate(45deg);
    background: #ccc;
  }
}

@keyframes nav-toggle-bottom {
  0% {
    box-shadow: none;
    transform: translateY(0px) rotate(-45deg);
  }

  50% {
    box-shadow: none;
    transform: translateY(0px) rotate(0);
  }

  100% {
    transform: translateY(9px) rotate(0);
  }
}

@keyframes nav-toggle-bottom-active {
  0% {
    transform: translateY(9px) rotate(0);
  }

  50% {
    box-shadow: none;
    transform: translateY(0px) rotate(0);
    background: #ccc;
  }

  100% {
    box-shadow: none;
    transform: translateY(0px) rotate(-45deg);
    background: #ccc;
  }
}

@keyframes nav-toggle-mobile {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}