@charset "UTF-8";
/* --------------------
    Basic Settings
-------------------- */
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #301934;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 2;
}
body.no-scroll {
  overflow: hidden;
}

a {
  color: #301934;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  vertical-align: bottom;
}

/* --------------------
    Layout
-------------------- */
.l-container {
  padding: clamp(50px, 6.94vw, 100px) clamp(20px, 4.17vw, 60px);
}
.l-container__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.l-container__inner--s {
  max-width: 960px;
  margin: 0 auto;
}
.l-container--half {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(50px, 6.94vw, 100px);
}
.l-container--oneToTwo {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .l-container--half {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-container--oneToTwo {
    grid-template-columns: 1fr 2fr;
  }
}

.l-header {
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  padding: 15px clamp(20px, 2.08vw, 30px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition-duration: 0.3s;
}
.l-header__logo {
  width: 150px;
}
.l-header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 45px;
}
.l-header__gnav .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}
.l-header.is-scrolled {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 250px;
    transition-duration: 0.3s;
  }
  .l-header__gnav .menu {
    flex-direction: row;
    justify-content: flex-end;
    gap: 45px;
  }
  .l-header.is-scrolled .l-header__logo {
    width: 200px;
  }
}

.l-footer {
  background-color: #301934;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  padding: 50px clamp(20px, 2.08vw, 30px);
}
.l-footer__logo {
  width: 150px;
}
.l-footer__info dd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.4rem;
  margin-top: 30px;
}
.l-footer__sitemap {
  border-top: solid 1px #fff;
  padding-top: 30px;
}
.l-footer__sitemap .menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: start;
  gap: 0.5em 30px;
}
.l-footer__sitemap .menu li:after {
  background-color: #fff;
}
.l-footer__sitemap .menu a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-footer {
    flex-direction: row;
    justify-content: space-between;
  }
  .l-footer__logo {
    width: 250px;
  }
  .l-footer__sitemap {
    border-top: 0;
    padding-top: 0;
  }
  .l-footer__sitemap .menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

/* --------------------
    Component
-------------------- */
.c-sec-title {
  color: #301934;
  font-size: clamp(3.2rem, 3.61vw, 5.2rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
  padding-left: 1em;
  position: relative;
}
.c-sec-title:before {
  background-color: #301934;
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 5px;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.c-sec-title--white {
  color: #fff;
}
.c-sec-title--white::before {
  background-color: #fff;
}
.c-sec-title--small {
  font-size: 1.4rem;
  display: block;
  position: absolute;
  top: -2em;
}
@media screen and (min-width: 768px) {
  .c-sec-title {
    margin-bottom: 50px;
  }
}

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.c-btn:after {
  background-color: #301934;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: left;
  transition-duration: 0.3s;
}
@media (hover: none) {
  .c-btn:active:after {
    transform: scale(1, 1);
  }
}
@media (hover: hover) {
  .c-btn:hover:after {
    transform: scale(1, 1);
  }
}
.c-btn__arrow {
  width: 15px;
  margin-top: 3px;
}
.c-btn--red {
  background-color: #DF1514;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  line-height: 2.5;
  text-align: center;
  display: inline-block;
  width: 140px;
}

.c-list__news {
  margin-bottom: 30px;
}
.c-list__news li {
  padding: 30px 0;
  border-bottom: solid 1px #301934;
}
.c-list__news li:first-child {
  padding-top: 0;
}
.c-list__news-link {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.c-list__news-date {
  font-size: 1.4rem;
  font-weight: 400;
}
.c-list__news-tit {
  line-height: 1.75;
}
.c-list__disc {
  list-style: inside;
}

.c-post {
  background-color: #F5F1EA;
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .c-post {
    padding-top: 150px;
  }
}

.c-nav-pankuzu {
  margin-bottom: 80px;
}
.c-nav-pankuzu__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-nav-pankuzu__inner li {
  color: #7A685C;
  font-size: 1.4rem;
  margin-right: 0.5em;
}
.c-nav-pankuzu__inner li:last-child {
  margin-right: 0;
}
.c-nav-pankuzu__inner li:not(:last-child):after {
  content: "＞";
  display: inline-block;
  margin-left: 0.5em;
}
.c-nav-pankuzu__link {
  color: #7A685C;
}
.c-nav-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  margin-top: -0.5em;
}
.c-nav-pager .page-numbers {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 2px solid #DF1514;
  border-radius: 50%;
  color: #DF1514;
  transition: 0.3s;
  margin: 0 5px;
}
.c-nav-pager .page-numbers:hover, .c-nav-pager .page-numbers.current {
  color: #FFF;
  background: #DF1514;
}
.c-nav-pager .page-numbers.prev, .c-nav-pager .page-numbers.next {
  background-color: initial;
  border: none;
}
.c-nav-pager .page-numbers.prev::before, .c-nav-pager .page-numbers.next::before {
  content: "";
  width: 1em;
  height: 1em;
  border-bottom: 1px solid #DF1514;
  transition: 0.3s;
}
.c-nav-pager .page-numbers.prev:hover::before, .c-nav-pager .page-numbers.next:hover::before {
  opacity: 0.6;
}
.c-nav-pager .page-numbers.prev::before {
  border-left: 1px solid #DF1514;
  transform: rotate(45deg) skew(-10deg, -10deg);
  margin-left: 0.25em;
}
.c-nav-pager .page-numbers.next::before {
  border-right: 1px solid #DF1514;
  transform: rotate(-45deg) skew(10deg, 10deg);
  margin-right: 0.25em;
}
.c-nav-pager .page-numbers.dots {
  background-color: initial;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  color: #000;
}
.c-nav-pager .page-numbers.dots:hover {
  background: none;
}
.c-nav-link a {
  font-weight: 700;
}

.c-menu--button {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.c-menu--button__line, .c-menu--button::before, .c-menu--button::after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #DF1514;
  transition: transform 0.3s, opacity 0.3s;
}
.c-menu--button::after {
  width: 20px;
}
.c-menu--button.is-opened .c-menu--button__line {
  opacity: 0;
}
.c-menu--button.is-opened::before {
  transform: translateY(10px) rotate(135deg);
}
.c-menu--button.is-opened::after {
  transform: translateY(-10px) rotate(-135deg);
}
.c-menu--button.is-opened .c-menu__inner {
  display: block;
  opacity: 1;
}
.c-menu--button-close {
  width: 30px;
  height: 30px;
}
.c-menu--button-close span {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-menu--button-close span::before, .c-menu--button-close span::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #DF1514;
  transition: transform 0.3s, opacity 0.3s;
  position: absolute;
}
.c-menu--button-close span::before {
  transform: rotate(135deg);
}
.c-menu--button-close span::after {
  transform: rotate(-135deg);
}
.c-menu__inner {
  background-color: #7A685C;
  color: #fff;
  width: 100vw;
  height: 100dvh;
  padding: 15px 20px;
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.c-menu__inner.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.c-menu__inner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-menu__inner .c-btn--red {
  align-self: center;
}
.c-menu__contents {
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 20px;
  height: 100%;
}
.c-menu__list {
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
}
.c-menu__list a {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 50px;
}
.c-menu__list a:after {
  background-color: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
}
.c-menu__list-line {
  background-color: #fff;
  display: block;
  width: 100%;
  height: 2px;
  flex: 1;
}

/* --------------------
    Utility
-------------------- */
.u-hover-opacity--80 {
  transition-duration: 0.3s;
}
@media (hover: none) {
  .u-hover-opacity--80:active {
    opacity: 0.8;
  }
}
@media (hover: hover) {
  .u-hover-opacity--80:hover {
    opacity: 0.8;
  }
}
.u-hover-opacity--60 {
  transition-duration: 0.3s;
}
@media (hover: none) {
  .u-hover-opacity--60:active {
    opacity: 0.6;
  }
}
@media (hover: hover) {
  .u-hover-opacity--60:hover {
    opacity: 0.6;
  }
}
.u-hover-underline {
  position: relative;
}
.u-hover-underline:after {
  background-color: #301934;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: left;
  transition-duration: 0.3s;
}
@media (hover: none) {
  .u-hover-underline:active:after {
    transform: scale(1, 1);
  }
}
@media (hover: hover) {
  .u-hover-underline:hover:after {
    transform: scale(1, 1);
  }
}

.u-only-sp {
  display: block;
}
.u-only-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none;
  }
  .u-only-pc {
    display: block;
  }
}

.u-visibility-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.u-nolink {
  pointer-events: none;
  opacity: 0.5;
}