@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Oswald:wght@500;700&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  background: url("../images/bg.jpg");
}

.hoverable {
  transition: opacity 0.3s ease-out;
}
.hoverable:hover {
  opacity: 0.7;
  cursor: pointer;
}

.font-en {
  font-family: "Oswald", sans-serif;
}

.anchor-link {
  text-decoration: underline;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.mwform-checkbox-field label,
.mwform-radio-field label {
  cursor: pointer;
}

.container-fluid {
  padding-inline: 25px;
  margin-inline: auto;
}

.fukidashi::before, .fukidashi::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 24px;
  background: #fff;
  position: relative;
  top: 3px;
}
@media screen and (min-width: 768px) {
  .fukidashi::before, .fukidashi::after {
    height: 50px;
    width: 4px;
    top: 10px;
  }
}
.fukidashi::before {
  transform: rotate(-17deg);
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .fukidashi::before {
    margin-right: 20px;
  }
}
.fukidashi::after {
  transform: rotate(17deg);
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .fukidashi::after {
    margin-left: 20px;
  }
}

.site-header {
  background: url("../images/bg.jpg");
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 20px 20px 22px 20px;
}
@media screen and (min-width: 1024px) {
  .site-header {
    padding: 19px 20px;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 8;
  }
}
.site-header__logo {
  width: 140px;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .site-header__logo {
    width: 198px;
  }
}
.site-header__logo img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .site-navigation {
    display: flex;
  }
}

.site-navigation {
  display: none;
}
@media screen and (min-width: 768px) {
  .site-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }
}

.sp-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out 0s, visibility 0.3s ease-out 0s;
}
@media screen and (min-width: 768px) {
  .sp-menu {
    opacity: 0;
    visibility: hidden;
  }
}
.sp-menu.active {
  opacity: 1;
  visibility: visible;
}
.sp-menu .sp-navigation {
  width: 100%;
  background: #d89191;
}
.sp-menu__logo {
  padding: 20px;
}
.sp-menu__logo img {
  width: 140px;
}

.sp-navi__item {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
}
.sp-navi__item.has-child {
  padding: 20px 30px;
  border-bottom: 1px solid #ffffff;
}
.sp-navi__item-link {
  display: block;
  padding: 20px;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
}
.sp-navi__item-children {
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
}
.sp-navi__item-child-link {
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-top: 6px;
}
.sp-navi__item-child-link::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background: #fff;
  margin-right: 5px;
}

.nav-toggle {
  position: fixed;
  top: 24px;
  right: 20px;
  width: 38px;
  height: 24px;
  z-index: 11;
}
@media screen and (min-width: 1440px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle__bar {
  position: absolute;
  display: block;
  width: 38px;
  height: 2px;
  background: #d89191;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-out;
}
.nav-toggle__bar:nth-child(1) {
  top: calc(50% - 12px);
}
.nav-toggle__bar:nth-child(2) {
  top: calc(50% - 1px);
}
.nav-toggle__bar:nth-child(3) {
  top: calc(50% + 10px);
}
.nav-toggle.active .nav-toggle__bar:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(30deg);
}
.nav-toggle.active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .nav-toggle__bar:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-30deg);
}

.pc-navi {
  display: flex;
  align-items: center;
}
.pc-navi__item .pc-navi__item-link {
  padding: 8px 0;
}
.pc-navi__item--image {
  font-size: 11px;
  font-weight: 500;
  border-right: 1px solid #333;
}
.pc-navi__item--image .pc-navi__item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px 4px;
  text-decoration: none;
}
.pc-navi__item--image.tanpopo img {
  width: 106px;
  margin-top: 4px;
}
.pc-navi__item--image.ohisama img {
  width: 65px;
}
.pc-navi__item--image.yui img {
  width: auto;
  height: 40px;
  transform: translateY(3px);
}
.pc-navi__item--text .pc-navi__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 13px 16px;
  text-decoration: none;
}
.pc-navi__item--title {
  font-size: 13px;
  text-align: center;
  height: 40px;
  transform: translateY(3px);
}
.pc-navi__item.has-child {
  position: relative;
}
.pc-navi__item.has-child:hover .pc-navi__item-children {
  opacity: 1;
  visibility: visible;
}
.pc-navi__item-children {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out 0s, visibility 0.3s ease-out 0s;
  position: absolute;
  z-index: 10;
  left: -16px;
  width: 145px;
  background: #d89191;
}
.pc-navi__item-children:not(:first-child) li {
  border-top: 1px solid #fff;
}
.pc-navi__item-icon {
  margin-right: 10px;
}
.pc-navi__item--icon .pc-navi__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
  margin-right: 4px;
  text-decoration: none;
}
.pc-navi .pc-navi__item-child-link {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.footer {
  background: #d89191;
  padding: 50px 30px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 68px 0 48px;
    margin-top: 140px;
  }
}

@media screen and (min-width: 768px) {
  .footer-inner {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  align-items: flex-start;
  margin-bottom: auto;
  flex: 0 1 25%;
}
@media screen and (min-width: 768px) {
  .footer-nav:not(:first-child) {
    margin-left: 24px;
  }
}
.footer-nav__link {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  margin-bottom: 11px;
}
@media screen and (min-width: 768px) {
  .footer-nav__link {
    font-size: 15px;
    flex: 0 0 100%;
    margin-bottom: 13px;
  }
}
.footer-nav__link:first-child {
  flex: 0 0 100%;
  margin-bottom: 11px;
}
@media screen and (min-width: 768px) {
  .footer-nav__link:first-child {
    margin-bottom: 18px;
  }
}
.footer-nav__children {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
@media screen and (min-width: 768px) {
  .footer-nav__children {
    border-left: 1px solid #fff;
    padding-left: 17px;
  }
}
.footer-nav__children li {
  flex: 0 0 33.333%;
}
@media screen and (min-width: 768px) {
  .footer-nav__children li {
    flex: 0 0 50%;
  }
}
.footer-nav__child-link {
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 5px 0;
}
@media screen and (min-width: 768px) {
  .footer-nav__child-link {
    font-size: 12px;
  }
}
.footer-nav__child-link::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border: 3.5px solid transparent;
  border-left: 7px solid #fff;
  border-right: 0;
  margin-right: 8px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 46px auto 0;
}
.footer-logo a {
  display: block;
}
.footer-logo a img {
  width: 190px;
}
@media screen and (min-width: 768px) {
  .footer-logo a img {
    width: auto;
    height: 52px;
  }
}
@media screen and (min-width: 768px) {
  .footer-logo {
    max-width: 1000px;
    margin: 50px auto 0;
    gap: 40px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 9px;
  margin-top: 20px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .copyright {
    margin-top: 30px;
  }
}

.fixed-bnr {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  display: none;
  transition: none;
  width: 145px;
  height: 145px;
}
@media screen and (min-width: 768px) {
  .fixed-bnr {
    display: block;
  }
}

/*
* ページヘッダー
*/
.page-header {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  max-height: 162px;
  min-height: 120px;
}
@media screen and (min-width: 768px) {
  .page-header {
    min-height: 273px;
    max-height: 273px;
  }
}
.page-header.page-header--with-image {
  height: 162px;
}
@media screen and (min-width: 768px) {
  .page-header.page-header--with-image {
    height: 350px;
    max-height: 350px;
  }
}
.page-header__image {
  grid-column: 1;
  grid-row: 1;
  max-height: 162px;
}
@media screen and (min-width: 768px) {
  .page-header__image {
    max-height: 350px;
  }
}
.page-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header__inner {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-header__title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .page-header__title {
    font-size: 30px;
  }
}
.page-header__subtitle {
  font-size: 12px;
  font-weight: 700;
  color: #d89191;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .page-header__subtitle {
    font-size: 15px;
  }
}

/*
* 記事ページ
*/
article.type-news,
article.type-event {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  article.type-news,
  article.type-event {
    padding: 150px 0 110px;
  }
}
article.type-news .content-header__image,
article.type-event .content-header__image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
article.type-news .content-header__image img,
article.type-event .content-header__image img {
  margin: 0;
}
article.type-news .content-header__date,
article.type-event .content-header__date {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #85796f;
}
@media screen and (min-width: 768px) {
  article.type-news .content-header__date,
  article.type-event .content-header__date {
    font-size: 14px;
  }
}
article.type-news .content-header__title,
article.type-event .content-header__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 12px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  article.type-news .content-header__title,
  article.type-event .content-header__title {
    font-size: 17px;
  }
}
article.type-news p,
article.type-event p {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 2;
}
article.type-news figure,
article.type-event figure {
  border-radius: 10px;
  overflow: hidden;
}

/*
* ページネーション
*/
.pagination {
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .pagination {
    padding-bottom: 110px;
  }
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.pagination .nav-links a.page-numbers {
  transition: opacity 0.3s ease-out;
}
.pagination .nav-links a.page-numbers:hover {
  opacity: 0.7;
}
.pagination .nav-links .page-numbers {
  display: block;
  line-height: 1;
  font-size: 20px;
  font-weight: 500;
}
.pagination .nav-links .page-numbers.prev {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background: #d89191;
  position: relative;
  margin-top: 2px;
}
.pagination .nav-links .page-numbers.prev::after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 2px), -50%) scaleY(0.8) rotate(45deg);
}
.pagination .nav-links .page-numbers.next {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background: #d89191;
  position: relative;
  margin-top: 2px;
}
.pagination .nav-links .page-numbers.next::after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 2px), -50%) scaleY(0.8) rotate(-135deg);
}
.pagination .nav-links .current {
  color: #d89191;
}

/*
*　ボタン
*/
.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  max-width: 295px;
  width: 100%;
}
.link-btn--right-arrow {
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.link-btn--right-arrow::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #cf7878;
  border-right: 2px solid #cf7878;
  transform: translateY(-50%) scaleY(0.8) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
}
.link-btn--right-arrow-accent {
  background: #cf7878;
  color: #fff;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.link-btn--right-arrow-accent::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) scaleY(0.8) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
}
.link-btn--right-arrow-var {
  background: var(--main-color);
  color: #fff;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  max-width: 340px;
}
.link-btn--right-arrow-var::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) scaleY(0.8) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
}
.link-btn--sp-navi {
  max-width: 315px;
  margin-top: 40px;
  margin-bottom: 50px;
  font-size: 18px;
}
.link-btn--sp-navi img {
  display: inline-block;
  margin: 2px 9px 0 0;
}
.link-btn--pc-navi {
  width: 168px;
  padding: 8px 20px;
  border: 1px solid #604c3f;
  font-size: 13px;
  font-weight: 500;
  margin-left: 16px;
}
.link-btn--pc-navi img {
  width: 16px;
  display: inline-block;
  margin: 2px 9px 0 0;
}

.large-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d89191;
  border-radius: 50px;
  padding: 10px 20px;
  color: #ffffff;
  text-decoration: none;
  max-width: 494px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .large-btn {
    font-size: 25px;
    padding: 25px;
  }
}

.contact-section {
  position: relative;
  padding-top: 50px;
  overflow: hidden;
  border-top: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  .contact-section {
    padding-top: 100px;
  }
}
.contact-section.is-front {
  border-top: none;
}
@media screen and (min-width: 768px) {
  .contact-section.is-front {
    padding-top: 140px;
  }
}
.contact-section__deco-01 {
  position: absolute;
  top: 30px;
  left: calc(50% - 164px);
  width: 68px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .contact-section__deco-01 {
    top: 160px;
    left: calc(50% - 614px);
    width: 210px;
  }
  .contact-section__deco-01 img {
    width: 210px;
  }
}
.contact-section__deco-02 {
  position: absolute;
  left: calc(50% + 95px);
  width: 60px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .contact-section__deco-02 {
    top: 336px;
    left: calc(50% + 468px);
    width: 131px;
  }
  .contact-section__deco-02 img {
    width: 131px;
  }
}
.contact-section__inner {
  max-width: 325px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .contact-section__inner {
    max-width: 475px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-section__inner {
    max-width: 980px;
  }
}
.contact-section__header {
  text-align: center;
}
.contact-section__header-subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #85796f;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-section__header-subtitle {
    font-size: 18px;
  }
}
.contact-section__header-subtitle:after {
  content: none;
  display: block;
  width: 16px;
  height: 2px;
  background: #85796f;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
}
@media screen and (min-width: 768px) {
  .contact-section__header-subtitle:after {
    content: "";
  }
}
.contact-section__header-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #d89191;
}
@media screen and (min-width: 768px) {
  .contact-section__header-title {
    font-size: 40px;
    letter-spacing: 0.05em;
    margin-top: 10px;
  }
}
.contact-section__header-text {
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-top: 15px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .contact-section__header-text {
    font-size: 16px;
  }
}
.contact-section__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 21px;
}
@media screen and (min-width: 1024px) {
  .contact-section__body {
    margin-top: 38px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.contact-section__tanpopo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  padding: 20px 0;
}
@media screen and (min-width: 1024px) {
  .contact-section__tanpopo {
    flex: 1 1 calc(50% - 15px);
    min-height: 180px;
  }
}
.contact-section__ohisama {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  padding: 20px 0;
}
@media screen and (min-width: 1024px) {
  .contact-section__ohisama {
    flex: 1 1 calc(50% - 15px);
    min-height: 180px;
  }
}
.contact-section__yui {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  padding: 20px 0;
}
@media screen and (min-width: 1024px) {
  .contact-section__yui {
    flex: 1 1 calc(50% - 15px);
    min-height: 180px;
  }
}
.contact-section__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 30px 0;
  gap: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-section__mail {
    padding: 57px 0;
  }
}
@media screen and (min-width: 1024px) {
  .contact-section__mail {
    flex: 1 1 calc(50% - 15px);
    min-height: 180px;
    justify-content: flex-start;
    padding-left: 120px;
  }
}
.contact-section__mail-icon {
  margin-top: 2px;
}
.contact-section__mail-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .contact-section__mail-text {
    font-size: 20px;
  }
}
.contact-section__mail-image {
  position: absolute;
  top: 50%;
  left: calc(50% + 73px);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .contact-section__mail-image {
    left: calc(50% + 100px);
  }
  .contact-section__mail-image img {
    width: 97px;
  }
}

.js-animation {
  transition: all 1s ease;
}

.animation-hidden {
  opacity: 0;
  transform: translateY(20px);
}
