@charset "utf-8";

/* ===========================================================================
   1. 初期設定
=========================================================================== */

/* -------------------------------------------
   Base
------------------------------------------- */
body {
  font-family: "dnp-shuei-mgothic-std", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* -------------------------------------------
   Common - sec-title
------------------------------------------- */
.sec-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 33px;
  font-weight: bold;
  color: #7B5EA5;
  margin-bottom: 64px;
}
.sec-title img {
  width: 12px;
  height: auto;
}

/* -------------------------------------------
   Common - btn-arrow
------------------------------------------- */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: bold;
  color: #7B5EA5;
}
.btn-arrow img {
  width: 66px;
  height: auto;
}
.btn-wrap--center {
  text-align: center;
}
.btn-wrap--right {
  text-align: right;
}

/* -------------------------------------------
   Common - card
------------------------------------------- */
.card {
  position: relative;
  padding: 70px 40px 56px;
  margin: 0 auto 86px;
  line-height: 1.8;
  background: #fff;
  border-radius: 15px;
  width: 100%;
  max-width: 1000px;
}
.card .sec-title {
  margin-bottom: 44px;
  line-height: 1.4;
}

/* -------------------------------------------
   初期設定 - Responsive
------------------------------------------- */
@media screen and (max-width: 920px) {
  .btn-arrow img {
    width: 48px;
  }
}

@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 19px;
    gap: 8px;
    margin-bottom: 50px;
  }
  .sec-title img {
    width: 7px;
  }

  .btn-arrow {
    font-size: 17px;
    gap: 20px;
  }
  .btn-arrow img {
    width: 49px;
  }

  .btn-wrap--center {
    text-align: right;
  }
}


/* ===========================================================================
   2. Header
=========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.1));
  z-index: 99;
}
.header-inner {
  display: flex;
  align-items: flex-start;
}
.header-logo {
  position: relative;
  display: block;
  padding: 70px 56px 34px 100px;
  margin-right: -1px;
  background: #FFF;
  border-radius: 0 0 30px 30px;
  white-space: nowrap;
}
.header-logo::after {
  content: "";
  position: absolute;
  top: 117px;
  right: 1px;
  width: 23px;
  height: 24px;
  background: url(../images/header_parts_01.png) 0 0 / 100% 100% no-repeat;
  transform: translateX(100%);
}
.header-logo:hover {
  opacity: 1;
}
.header-logo__sub {
  font-size: 15px;
}
.header-logo__org {
  margin: 5px 0;
  font-size: 27px;
  line-height: 1;
}
.header-logo__name {
  font-size: 50px;
  line-height: 1;
}
.header-nav {
  position: relative;
  width: 100%;
  background: #FFF;
}
.header-nav__list {
  display: flex;
  height: 118px;
  padding: 46px 407px 32px 46px;
  align-items: center;
  justify-content: flex-end;
  gap: 0 30px;
}
.header-nav__list a {
  display: flex;
  padding: 8px 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  align-items: center;
  gap: 0 10px;
}
.header-contact__btn {
  position: absolute;
  top: 0;
  right: 100px;
  padding: 12px 66px;
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background: #7B5EA5;
  border-radius: 0 0 15px 15px;
}
.header-contact__btn span {
  display: block;
  margin-top: 8px;
}

/* -------------------------------------------
   Header - Responsive (1860px ~ 768px)
------------------------------------------- */
@media screen and (max-width: 1860px) and (min-width: 768px) {
  .header-logo {
    padding: 32px 30px 24px 60px;
  }
  .header-logo__sub {
    font-size: 12px;
  }
  .header-logo__org {
    font-size: 20px;
  }
  .header-logo__name {
    font-size: 36px;
  }
  .header-logo::after {
    top: 67px;
    width: 18px;
    height: 19px;
  }
  .header-nav__list {
    height: auto;
    padding: 20px 280px 18px 20px;
    gap: 0 20px;
  }
  .header-nav__list a {
    font-size: 15px;
    gap: 0 6px;
    padding: 6px 0;
    white-space: nowrap;
  }
  .header-nav__list a img {
    width: 12px;
    height: auto;
  }
  .header-contact__btn {
    right: 40px;
    padding: 12px 32px 16px;
    font-size: 16px;
  }
  .header-contact__btn img {
    width: 24px;
    height: auto;
  }
  .header-contact__btn span {
    margin-top: 4px;
  }
}
@media screen and (max-width: 1300px) and (min-width: 768px) {
  .header-logo {
    padding: 40px 20px 20px 40px;
  }
  .header-logo__sub {
    font-size: 11px;
  }
  .header-logo__org {
    font-size: 17px;
  }
  .header-logo__name {
    font-size: 28px;
  }
  .header-logo::after {
    top: 59px;
    width: 15px;
    height: 16px;
  }
  .header-nav__list {
    padding: 18px 220px 14px 14px;
    gap: 0 14px;
  }
  .header-nav__list a {
    font-size: 13px;
    gap: 0 4px;
    padding: 6px 0;
  }
  .header-nav__list a img {
    width: 10px;
  }
  .header-contact__btn {
    right: 20px;
    padding: 8px 28px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  .header-logo {
    padding: 30px 16px 16px 24px;
  }
  .header-logo__sub {
    font-size: 10px;
  }
  .header-logo__org {
    font-size: 14px;
  }
  .header-logo__name {
    font-size: 22px;
  }
  .header-logo::after {
    top: 50px;
    width: 12px;
    height: 13px;
  }
  .header-nav__list {
    padding: 14px 170px 10px 10px;
    gap: 0 10px;
  }
  .header-nav__list a {
    font-size: 12px;
    gap: 0 3px;
    padding: 6px 0;
  }
  .header-nav__list a img {
    width: 8px;
  }
  .header-contact__btn {
    right: 12px;
    padding: 6px 20px;
    font-size: 12px;
    border-radius: 0 0 10px 10px;
  }
}

/* -------------------------------------------
   Header - SP (920px以下 / ハンバーガー)
------------------------------------------- */
@media screen and (max-width: 920px) {
  .pc.header-nav {
    display: none;
  }
  .sp.header-nav {
    display: block;
  }
  .header-logo {
    padding: 22px 17px;
    border-radius: 0 0 15px 15px;
  }
  .header-logo::after {
    top: 8px;
    width: 26px;
    height: 26px;
  }
  .header-logo__sub {
    display: none;
  }
  .header-logo__org {
    margin: 0 0 5px;
    font-size: 10px;
  }
  .header-logo__name {
    font-size: 19px;
  }
  .header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background: #FFF;
  }

  /* Hamburger Button */
  .hamburger {
    position: absolute;
    top: 10px;
    right: 17px;
    width: 63px;
    height: 63px;
    background: #FFF;
    border-radius: 15px;
    z-index: 2;
  }
  .hamburger.active {
    background: #7B5EA5;
  }
  .hamburger span {
    position: absolute;
    top: 30px;
    left: 19px;
    width: 24px;
    height: 3px;
    background: #7B5EA5;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:first-child {
    top: 22px;
  }
  .hamburger span:last-child {
    top: 38px;
  }
  .hamburger.active span {
    background: #FFF;
  }
  .hamburger.active span:first-child {
    top: 30px;
    width: 40px;
    transform: rotate(40deg);
  }
  .hamburger.active span:nth-child(2) {
    height: 0;
    opacity: 0;
  }
  .hamburger.active span:last-child {
    top: 30px;
    width: 40px;
    transform: rotate(-40deg);
  }

  /* Hamburger Menu */
  .hamburger-menu {
    position: fixed;
    display: none;
    top: 15px;
    right: 17px;
    left: 17px;
    height: calc(100vh - 30px);
    padding: 60px 22px 22px;
    font-size: 15px;
    color: #FFF;
    background: #7B5EA5;
    border-radius: 15px;
    overflow-y: auto;
  }
  .hamburger-title {
    display: flex;
    margin-bottom: 22px;
    font-weight: bold;
    align-items: center;
    gap: 10px;
  }
  .hamburger-title.active {
    margin-bottom: 16px;
  }
  .hamburger-title::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background: url(../images/title_arw01.png) 50% 50% / 7px auto no-repeat;
  }
  .hamburger-title.active::before {
    transform: rotate(90deg);
  }
  .hamburger-menu__list nav {
    display: none;
  }
  .hamburger-menu__list nav ul {
    padding-left: 18px;
    margin-bottom: 22px;
  }
  .hamburger-menu__list nav ul li {
    margin-bottom: 4px;
  }
  .hamburger_btn {
    display: block;
    margin-bottom: 10px;
    text-align: center;
  }
  .hamburger_btn a {
    display: flex;
    max-width: 194px;
    height: 40px;
    margin: 0 auto 8px;
    font-size: 15px;
    gap: 3px;
    background: #FFCA1F;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
  }
  .hamburger_btn a span {
    display: block;
    width: 21px;
    font-size: 0;
  }
  .hamburger_tel_note {
    font-size: 10px;
  }
  .hamburger-sns {
    max-width: 56px;
    margin: 0 auto;
  }
}


/* ===========================================================================
   3. Footer
=========================================================================== */
.footer {
  background: #7B5EA5;
  color: #fff;
}
.footer-main {
  padding-top: 60px;
  padding-bottom: 50px;
}
.footer-row {
  display: flex;
  gap: 50px;
  max-width: 1002px;
  margin: 0 auto;
}

/* Footer - 園情報 */
.footer-info {
  flex-shrink: 0;
  min-width: 280px;
  width: 50%;
}
.footer-info__org {
  font-size: 23px;
  font-weight: bold;
}
.footer-info__name {
  font-size: 33px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.4;
}
.footer-info__address {
  font-size: 16px;
  line-height: 1.8;
  font-style: normal;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.footer-info__tel,
.footer-info__fax {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-info__tel {
  margin-bottom: 38px;
}
.footer-info__tel .footer-info__label,
.footer-info__tel .footer-info__dash {
  margin-top: 5px;
}
.footer-info__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
}
.footer-info__label img {
  width: 12px;
  height: auto;
}
.footer-info__dash {
  font-size: 16px;
}
.footer-info__tel-right {
  display: flex;
  flex-direction: column;
}
.footer-info__number {
  font-size: 23px;
  font-weight: bold;
  color: #fff;
}
.footer-info__time {
  font-size: 16px;
}
.footer-info__fax {
  margin-bottom: 66px;
}

/* Footer - 黄色ボタン */
.footer-info__btns {
  display: flex;
  gap: 15px;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex: 1;
  max-width: 209px;
  padding: 20px 14px;
  background: #FFCA1F;
  border-radius: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.footer-btn img {
  width: 34px;
  height: auto;
}

/* Footer - ナビ */
.footer-nav {
  flex: 1;
  padding-top: 4px;
}
.footer-nav__row {
  display: flex;
  gap: 40px;
}
.footer-nav__row:nth-child(1) {
  margin-bottom: 37px;
}
.footer-nav__row:nth-child(2) {
  margin-bottom: 73px;
}
.footer-nav__row:nth-child(3) {
  margin-bottom: 56px;
}
.footer-nav__item {
  min-width: 130px;
}
.footer-nav__heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}
.footer-nav__heading img {
  width: 12px;
  height: auto;
}
.footer-nav__item ul {
  padding-left: 22px;
  margin-top: 25px;
}
.footer-nav__item ul li + li {
  margin-top: 13px;
}
.footer-nav__item ul li a {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
}

/* Footer - Copyright */
.footer-bottom {
  background: rgba(0,0,0,0.15);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copyright {
  font-size: 15px;
  color: #fff;
}

/* -------------------------------------------
   Footer - Responsive
------------------------------------------- */
@media screen and (max-width: 1080px) {
  .footer-row {
    flex-direction: column-reverse;
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer-main {
    padding: 62px 25px 64px;
  }
  .footer-row {
    flex-direction: column-reverse;
    gap: 60px;
  }
  .footer-info {
  flex-shrink: 0;
    width: 100%;
  }
  .footer-info__org {
    font-size: 15px;
  }
  .footer-info__name {
    font-size: 27px;
  }
  .footer-info__address {
    font-size: 10px;
  }
  .footer-info__label {
    font-size: 15px;
  }
  .footer-info__label img {
    width: 7px;
  }
  .footer-info__tel,
  .footer-info__fax {
    gap: 0;
  }
  .footer-info__dash {
    font-size: 12px;
    margin-left: 10px;
    margin-right: 14px;
  }
  .footer-info__number {
    font-size: 15px;
  }
  .footer-info__time {
    font-size: 10px;
  }
  .footer-info__tel {
    margin-bottom: 16px;
  }
  .footer-info__fax {
    margin-bottom: 32px;
  }
  .footer-btn {
    max-width: none;
    padding: 14px 10px;
    font-size: 10px;
    border-radius: 5px;
    line-height: 1.6;
    font-weight: 700;
    justify-content: flex-end;
  }
  .footer-btn span {
    min-width: 80px;
  }
  .footer-btn img {
    width: 22px;
  }
  .footer-nav {
    padding-top: 0;
  }
  .footer-nav__row {
    gap: 0;
    margin-bottom: 22px;
  }
  .footer-nav__row:nth-child(1),
  .footer-nav__row:nth-child(2),
  .footer-nav__row:nth-child(3) {
    margin-bottom: 22px;
  }
  .footer-nav__row:nth-child(2) {
    flex-wrap: wrap;
  }
  .footer-nav__row:nth-child(2) .footer-nav__item:first-child {
    margin-bottom: 22px;
  }
  .footer-nav__item {
    min-width: 50%;
  }
  .footer-nav__item ul {
    margin-top: 15px;
  }
  .footer-nav__item ul li + li {
    margin-top: 10px;
  }
  .footer-nav__heading {
    font-size: 15px;
  }
  .footer-nav__heading img {
    width: 7px;
  }
  .footer-nav__item ul li a {
    font-size: 15px;
  }
  .footer-nav__bottom {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-nav__bottom .footer-nav__row {
    display: contents;
  }
  .footer-nav__bottom .footer-nav__item {
    width: 50%;
    margin-bottom: 18px;
  }
  .footer-bottom {
    height: 24px;
  }
  .footer-copyright {
    font-size: 8px;
  }
}


/* ===========================================================================
   4. メインコンテンツ
=========================================================================== */

/* -------------------------------------------
   KV Slider
------------------------------------------- */
.sec-kv {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 106px;
  z-index: 1;
}
.kv-slider {
  width: 100%;
  overflow: inherit;
}
.kv-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.kv-slider .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: -50px;
  top: auto;
  right: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.kv-slider .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 0 !important;
  border-radius: 50%;
  background: #DEDEDE;
  opacity: 1;
}
.kv-slider .swiper-pagination-bullet-active {
  background: #7B5EA5;
}
.kv-slider .swiper-button-next,
.kv-slider .swiper-button-prev {
  display: none;
}
.fixed-instagram {
  position: absolute;
  display: flex;
  top: 0;
  right: 0;
  width: 106px;
  height: 100%;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------
   Front About
------------------------------------------- */
.sec-about {
  position: relative;
  padding: 188px 40px 200px;
}
.sec-about::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200%;
  background: url(../images/top_bg01.png) 50% 50% / auto 100% no-repeat;
}
.sec-about__inner {
  position: relative;
  max-width: 1000px;
  padding: 0 40px;
  margin: 0 auto;
  text-align: center;
  line-height: 2;
}
.sec-about__title {
  margin-bottom: 22px;
  font-size: 38px;
  color: #7B5EA5;
  line-height: 1.5;
}
.sec-about__dots {
  display: flex;
  margin-bottom: 32px;
  justify-content: center;
  gap: 30px;
}
.sec-about__dots span {
  display: block;
  width: 9px;
  height: 9px;
  background: #F7CD43;
  border-radius: 50%;
}
.sec-about__lead {
  margin-bottom: 62px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: bold;
  color: #7B5EA5;
}
.sec-about__sun {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
}
.sec-about__cloud1 {
  position: absolute;
  right: 0;
  bottom: -123px;
  transform: translateY(100%);
}
.sec-about__cloud2 {
  position: absolute;
  top: 60px;
  left: 0;
}

/* -------------------------------------------
   Feature
------------------------------------------- */
.sec-feature {
  padding: 80px 40px;
}
.sec-feature_inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* -------------------------------------------
   Front Main Content
------------------------------------------- */
.sec_front_main_content {
  padding: 90px 40px;
  background-color: #F7F5F9;
}

/* -------------------------------------------
   Diary (保育日記)
------------------------------------------- */
.diary-list {
  margin-bottom: 45px;
  list-style: none;
}
.diary-list__item {
  border-bottom: 1px solid #E0E0E0;
}
.diary-list__item a {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 24px 0;
}
.diary-list__thumb {
  flex-shrink: 0;
  width: 160px;
  max-width: 160px;
  border-radius: 15px;
  overflow: hidden;
}
.diary-list__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.diary-list__info {
  flex: 1;
}
.diary-list__date {
  font-size: 16px;
  line-height: 1;
  color: #7B5EA5;
  font-weight: bold;
  margin-bottom: 12px;
}
.diary-list__cat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
  color: #333;
  margin-bottom: 22px;
}
.diary-list__cat::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7B5EA5;
  flex-shrink: 0;
}
.diary-list__excerpt {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  max-width: 510px;
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}

/* -------------------------------------------
   Media (動画ルーム & アルバム)
------------------------------------------- */
.card__rwo {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
  justify-content: center;
}
.card__rwo .card {
  flex: 1;
}
.media-list {
  list-style: none;
  margin-bottom: 40px;
}
.media-list li {
  border-bottom: 1px solid #E0E0E0;
}
.media-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
}
.media-list__date {
  font-size: 16px;
  line-height: 1;
  color: #7B5EA5;
  font-weight: bold;
}
.media-list__cat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
  color: #333;
}
.media-list__cat::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7B5EA5;
  flex-shrink: 0;
}

/* -------------------------------------------
   Schedule (予定)
------------------------------------------- */
.card--schedule {
  position: relative;
}
.card--schedule .card {
  margin-bottom: 0;
}
.card--schedule .schedule-deco {
  position: absolute;
  left: -68px;
  bottom: -48px;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
  margin-bottom: 40px;
}
.schedule-col {
  flex: 1;
  max-width: 410px;
}
.schedule-list {
  list-style: none;
}
.schedule-list__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid #E0E0E0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
}
.schedule-list__item dt {
  width: 84px;
  color: #7B5EA5;
  white-space: nowrap;
}
.schedule-list__item dd {
  color: #333;
  font-weight: 400;
}

/* -------------------------------------------
   Banner
------------------------------------------- */
.sec-banner {
  padding: 60px 0;
}
.sec-banner__row {
  display: flex;
  gap: 24px;
  max-width: 1002px;
  margin: 0 auto;
}
.sec-banner__link {
  display: block;
  flex: 1;
}
.sec-banner__link img {
  width: 100%;
  height: auto;
}
.sec-banner__link:last-child {
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  border-radius: 4px;
}

/* -------------------------------------------
   Volunteer
------------------------------------------- */
.sec-volunteer {
  padding: 0 0 80px;
}
.sec-volunteer__box {
  max-width: 1002px;
  margin: 0 auto;
  padding: 40px;
  border: 5px solid #7b5da5;
  border-radius: 15px;
  background: rgba(255,255,255,0.39);
  text-align: center;
}
.sec-volunteer__title {
  font-size: 42px;
  font-weight: bold;
  color: #7B5EA5;
  margin-bottom: 30px;
}
.sec-volunteer__text {
  font-size: 16px;
  color: #333;
  line-height: 2;
}
.sec-volunteer__text + .sec-volunteer__text {
  margin-top: 4px;
}
.sec-volunteer .btn-wrap--center {
  margin-top: 35px;
}
.sec-volunteer .btn-arrow--bold {
  font-size: 20px;
  letter-spacing: 0.06em;
}

/* -------------------------------------------
   メインコンテンツ - Responsive
------------------------------------------- */
@media screen and (min-width: 1921px) {
  .sec-about::before {
    background-size: 100% auto;
  }
}

@media screen and (max-width: 920px) {
  .fixed-instagram {
    display: none;
  }
  .sec-kv {
    padding: 8px 0 0 40px;
  }
  .kv-slider .swiper-pagination {
    left: -26px;
    margin: 0;
    gap: 16px;
  }
  .kv-slider .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
  .sec-about::before {
    height: 120%;
  }
  .sec-volunteer__box {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 767px) {
  .sec-kv {
    padding: 8px 10px;
  }
  .kv-slider .swiper-pagination {
    left: 16px;
    bottom: 20px;
    gap: 9px;
  }
  .kv-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .kv-slider .swiper-slide img {
    height: 634px;
    object-fit: cover;
    object-position: 0 50%;
  }
  .kv-slider .swiper-slide img.kv-pan {
    animation: kvPan 4s ease-in-out forwards;
  }
  @keyframes kvPan {
    0%   { object-position: 0 50%; }
    100% { object-position: 100% 50%; }
  }

  .sec-about {
    padding: 110px 24px 70px;
    overflow: hidden;
  }
  .sec-about::before {
    background-image: url(../images/top_bg01_sp.png);
    background-size: 100% 100%;
  }
  .sec-about__inner {
    max-width: 100%;
    padding: 0;
  }
  .sec-about__title {
    margin-bottom: 26px;
    font-size: 20px;
  }
  .sec-about__dots {
    margin-bottom: 27px;
    gap: 14px;
  }
  .sec-about__dots span {
    width: 6px;
    height: 6px;
  }
  .sec-about__lead {
    margin-bottom: 66px;
    font-size: 15px;
  }
  .sec-about__text {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.6px;
  }
  .sec-about__sun {
    top: -90px;
    right: 10px;
    width: 55px;
    transform: none;
  }
  .sec-about__cloud2 {
    top: auto;
    left: auto;
    bottom: 0;
    right: -38px;
    width: 90px;
    transform: translateY(100%);
  }
  .sec-about__cloud1 {
    right: auto;
    left: -42px;
    bottom: auto;
    top: 135px;
    width: 70px;
    transform: none;
  }

  .sec-feature {
    padding: 44px 10px;
  }
  .sec-feature__img {
    margin-bottom: 34px;
    text-align: center;
  }
  .sec-feature__img img {
    margin: 0 auto;
  }
  .sec-feature .sec-title {
    margin-left: 14px;
    margin-bottom: -14px;
  }

  .sec_front_main_content {
    padding: 52px 10px 95px;
  }

  .card {
    padding: 45px 15px 40px;
    margin-bottom: 25px;
  }
  .card .sec-title {
    margin-bottom: 30px;
  }

  .diary-list {
    margin-bottom: 42px;
  }
  .diary-list__item a {
    padding: 20px 0;
    gap: 12px;
  }
  .diary-list__thumb {
    width: 86px;
    height: 86px;
  }
  .diary-list__thumb img {
    width: 100%;
    height: 100%;
  }
  .diary-list__date {
    margin-bottom: 8px;
    font-size: 15px;
  }
  .diary-list__cat {
    margin-bottom: 12px;
    font-size: 15px;
    gap: 10px;
    align-items: flex-start;
  }
  .diary-list__cat::before {
    margin-top: 6px;
    width: 8px;
    height: 8px;
  }
  .diary-list__excerpt {
    line-height: 1;
    font-weight: 200;
  }

  .card__rwo {
    flex-wrap: wrap;
    gap: 0;
  }
  .card__rwo .card {
    width: 100%;
    flex: auto;
  }

  .media-list li a {
    display: block;
    padding: 24px 0;
  }
  .media-list__date {
    font-size: 15px;
    margin-bottom: 7px;
  }
  .media-list__cat {
    font-size: 15px;
    gap: 10px;
  }
  .media-list__cat::before {
    width: 8px;
    height: 8px;
  }

  .schedule-row {
    display: block;
    gap: 0;
  }
  .schedule-list__item {
    padding: 20px 0;
    font-size: 15px;
    gap: 28px;
  }
  .schedule-list__item dt {
    width: 80px;
  }
  .card--schedule .schedule-deco {
    left: -5px;
    bottom: -35px;
    width: 208px;
  }

  .sec-banner {
    padding: 72px 0 40px;
  }
  .sec-banner__row {
    flex-direction: column;
    gap: 18px;
  }

  .sec-volunteer {
    padding: 0 0 48px;
  }
  .sec-volunteer__box {
    padding: 56px 15px;
    border-width: 3px;
  }
  .sec-volunteer__title {
    margin-bottom: 27px;
    font-size: 30px;
    line-height: 1.1;
  }
  .sec-volunteer__text {
    font-size: 15px;
  }
  .sec-volunteer .btn-wrap--center {
    text-align: center;
  }
  .sec-volunteer .btn-arrow--bold {
    font-size: 17px;
  }
}

/* -------------------------------------------
   Infinite Slide
------------------------------------------- */
.infinite_slide {
  overflow: hidden;
}
.infinite_slide .swiper-wrapper {
  transition-timing-function: linear !important;
}
.infinite_slide .swiper-slide {
  width: auto;
  padding: 0 10px;
}
.infinite_slide .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* -------------------------------------------
   Frame Content Slide
------------------------------------------- */
.frame_content {
  position: relative;
  display: none;
}
@media screen and (max-width: 767px) {
  .frame_content {
    display: block;
    margin: 28px -15px 0;
  }
}
.frame_slide {
  overflow: hidden;
  border-radius: 8px;
}
.frame_slide .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.frame_slide .swiper-button-prev,
.frame_slide .swiper-button-next {
  width: 45px;
  height: 45px;
}
.frame_slide .swiper-button-prev::after,
.frame_slide .swiper-button-next::after {
  content: none;
}
.frame_slide .swiper-button-prev {
  left: 0;
  background: url(../images/btn_arw03.png) 50% 50% / contain no-repeat;
}
.frame_slide .swiper-button-next {
  right: 0;
  background: url(../images/btn_arw04.png) 50% 50% / contain no-repeat;
}
.frame_content .row-item {
  padding: 0 15px;
}

/* -------------------------------------------
   下層ページ
------------------------------------------- */
main.page {
  overflow: hidden;
}

.page-kv-inner {
  position: relative;
  display: flex;
  z-index: 2;
}
.page-kv-inner::before {
  content: "";
  position: absolute;
  right: calc(50% - 50px);
  bottom: 120px;
  width: 168px;
  height: 98px;
  background: url(../images/top_sec_parts02.png) 50% 50% / contain no-repeat;
  z-index: 1;
}
.page-kv-inner::after {
  content: "";
  position: absolute;
  top: 240px;
  right: 183px;
  width: 154px;
  height: 83px;
  background: url(../images/top_sec_parts01.png) 50% 50% / contain no-repeat;
  z-index: 1;
}
.page-kv-inner img {
  width: 50%;
  min-width: 50%;
  border-radius: 20px;
}
.page-kv-info {
  display: flex;
  width: 100%;
  padding: 80px 100px 0 0;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.page-kv-sns {
  display: flex;
  width: 107px;
  min-width: 107px;
  padding-bottom: 109px;
  align-items: flex-end;
  justify-content: center;
}
.page-kv-sns a {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}
.page-kv-sns img {
  width: 100%;
}
.page-kv-title {
  margin-bottom: 54px;
  font-size: 42px;
  line-height: 1.1;
  color: #7B5EA5;
}
.page-kv-title b {
  display: block;
  margin-bottom: 22px;
}
.page-tag {
  display: block;
  margin-bottom: 29px;
  font-size: 20px;
  line-height: 1.1;
  cursor: pointer;
}
.page-tag:last-child {
  margin-bottom: 0;
}
.page-tag.active {
  color: #7B5EA5;
}

.page-main-item {
  display: none;
}
.page-main-item.active {
  display: block;
}

.page-main-content {
  position: relative;
  padding: 120px 40px 14px;
  background: #F7F5F9;
  z-index: 1;
}
.page-main-content::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url(../images/page_bg.png) 50% 0 / 100% auto no-repeat;
  transform: translateY(-100%);
}

.inner-img__full {
  position: relative;
  margin: 0 -40px 80px;
}
.infinite_slide .swiper-slide img {
  max-height: 475px;
  object-fit: cover;
}
.about__ill1 {
  position: absolute;
  left: 202px;
  bottom: -38px;
  width: 140px;
  z-index: 1;
}
.about__ill2 {
  position: absolute;
  top: -40px;
  right: 210px;
  width: 100px;
  z-index: 1;
}

.float-txt {
  line-height: 1.8;
  overflow: hidden;
}
.float-txt img {
  width: 365px;
  margin: 0 0 48px 48px;
  float: right;
}

.table-line table {
  width: 100%;
  margin-bottom: 45px;
  text-align: left;
}
.table-line table th {
  width: 150px;
  padding: 24px 0;
  border-bottom: 1px solid #E2E2E2;
}
.table-line table td {
  border-bottom: 1px solid #E2E2E2;
}

.map iframe {
  width: 100%;
  height: 390px;
  border-radius: 15px;
}

.card.card-about-item3 {
  line-height: 2;
}

.daily-schedule__row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.daily-schedule__row .row-item {
  width: 33%;
  text-align: center;
}
.daily-schedule__row .row-item.row-item__time {
  transform: translateY(-30px);
}
.row-item__img {
  border-radius: 20px;
  overflow: hidden;
}
.label-round {
  margin: 0 0 26px;
}
.label-round p {
  display: inline-block;
  padding: 18px 32px;
  font-weight: bold;
  color: #FFF;
  line-height: 1.4;
  background: #7B5EA5;
  border-radius: 50px;
}
.daily-schedule-time + .label-round {
  margin-top: -60px;
}
.daily-schedule__item:nth-child(6) .row-item__time .label-round {
  width: 200%;
  margin-left: -50%;
}

.row-item .row-txt {
  max-width: 253px;
  margin: 0 auto;
}
.row-item .row-txt:not(:last-child) {
  margin-bottom: 40px;
}
.list-dots__horizontal {
  display: block;
  width: 0;
  height: 76px;
  margin: 30px auto 45px;
  border-right: 10px dotted #F7CD43;
}
.daily-schedule__item:nth-child(2) .row-txt,
.daily-schedule__item:nth-child(12) .row-txt,
.daily-schedule__item:nth-child(19) .row-txt {
  text-align: left;
}
.row-item__undermain .row-txt {
  text-align: center;
}
.row-txt__note {
  margin: 20px 0 40px;
  text-align: center;
  color: #898989;
}

.frame-list {
  display: flex;
  gap: 19px 15px;
}
.frame-list .row-item__img {
  width: calc((100% - 30px) / 3);
}

.card-about-item7::before {
  content: "";
  position: absolute;
  top: 640px;
  left: -111px;
  width: 1288px;
  height: calc(100% - 640px);
  background: url(../images/repeat_ill_cloud.png) 50% 0 / 100% auto repeat-y;
  z-index: 1;
  pointer-events: none;
}

.about__ill3 {
  position: absolute;
  top: 1910px;
  left: -60px;
  width: 198px;
}
.about__ill4 {
  position: absolute;
  top: 6470px;
  left: -62px;
  width: 103px;
}
.about__ill5 {
  position: absolute;
  bottom: 328px;
  right: -53px;
  width: 93px;
}

.step__item {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}
.step__item dt {
  display: flex;
  color: #7B5EA5;
  font-weight: 600;
  align-items: center;
}
.step__item dt::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin: 0 30px 0 36px;
  background: #E2E2E2;
}
.step__item dd {
  line-height: 1.7;
}

.dot-list__cat li {
  display: flex;
  margin-bottom: 32px;
  gap: 20px;
  align-items: flex-start;
}
.dot-title {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.dot-list__cat li::before ,
.dot-title::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 8px;
  background: #7B5EA5;
  border-radius: 50%;
}

.event-years__list-item {
  display: flex;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #E2E2E2;
  gap: 36px;
}
.event-years__icon {
  min-width: 200px;
}
.event-years__frame {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 6px;
}
/* Swiper有りはframe側のgridを無効化、wrapper側で制御 */
.event-years__frame:has(.event-years__slide) {
  display: block;
}
.event-years__slide .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 6px;
}
.event-years__slide .swiper-slide {
  width: auto !important;
}
.event-years__slide .swiper-button-prev,
.event-years__slide .swiper-button-next {
  display: none;
}
/* SP: Swiper有効化 */
@media screen and (max-width: 767px) {
  .event-years__slide .swiper-wrapper {
    display: flex;
    gap: 0;
  }
  .event-years__slide .swiper-slide {
    width: 100% !important;
  }
  .event-years__slide .swiper-button-prev,
  .event-years__slide .swiper-button-next {
    display: flex;
    width: 45px;
    height: 45px;
  }
  .event-years__slide .swiper-button-prev::after,
  .event-years__slide .swiper-button-next::after {
    content: none;
  }
  .event-years__slide .swiper-button-prev {
    top: 41%;
    left: 0;
    background: url(../images/btn_arw03.png) 50% 50% / contain no-repeat;
  }
  .event-years__slide .swiper-button-next {
    top: 41%;
    right: 0;
    background: url(../images/btn_arw04.png) 50% 50% / contain no-repeat;
  }
}
.event-years__img-inner {
  position: relative;
  width: 100%;
  padding-top: 61.0778%; /* 204/334 */
  overflow: hidden;
  border-radius: 20px;
}
.event-years__img-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-years__name {
  margin-top: 15px;
  font-size: 17px;
  font-weight: bold;
}
.event-monthly__list li {
  padding: 22px 0;
  border-bottom: 1px solid #E2E2E2;
  cursor: pointer;
}
.event-monthly__month {
  display: block;
  margin-bottom: 64px;
  font-size: 33px;
  color: #7B5EA5;
  line-height: 1;
}
.event-monthly__detail p {
  margin-bottom: 2em;
}
.event-monthly__detail {
  padding-bottom: 80px;
  margin-bottom: 54px;
  border-bottom: 1px solid #E2E2E2;
}
.event-monthly__detail-control {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  color: #7B5EA5;
  align-items: center;
  justify-content: space-between;
}
.monthly_prev,
.monthly_next {
  display: flex;
  align-items: center;
  gap: 36px;
  cursor: pointer;
}
.monthly_prev span {
  transform: rotateY(180deg);
}
.monthly_prev span,
.monthly_next span {
  width: 64px;
}
.monthly_back {
  cursor: pointer;
}

/* -------------------------------------------
   Pagination (circle)
------------------------------------------- */
/* -------------------------------------------
   Detail (single)
------------------------------------------- */
.detail__inner-control {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  color: #7B5EA5;
  align-items: center;
  justify-content: space-between;
}
.detail__inner-prev,
.detail__inner-next {
  display: flex;
  align-items: center;
  gap: 36px;
  cursor: pointer;
  color: #7B5EA5;
  text-decoration: none;
}
.detail__inner-prev.is-disabled,
.detail__inner-next.is-disabled {
  visibility: hidden;
}
.detail__inner-prev span {
  transform: rotateY(180deg);
}
.detail__inner-back {
  color: #7B5EA5;
  text-decoration: none;
}
.detail__album--frame {
  position: relative;
  width: 100%;
  padding-top: 74.6622%; /* 221/296 */
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}
.detail__album--frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  margin-bottom: 40px;
}
.detail__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.detail__date {
  margin-bottom: 22px;
  font-size: 33px;
  color: #7B5EA5;
  font-weight: bold;
  line-height: 1;
}
.post-detail_title {
  margin-bottom: 90px;
  font-size: 33px;
}
.detail__inner {
  padding-bottom: 150px;
  margin-bottom: 54px;
  border-bottom: 1px solid #E2E2E2;
}

.post-download__btn {
  display: flex;
  margin: -40px 0 50px;
  justify-content: center;
}
.download__btn {
  display: flex;
  padding: 20px 60px;
  font-size: 20px;
  line-height: 1.4;
  color: #FFF;
  font-weight: bold;
  background: #7B5EA5;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.download__btn img {
  width: 21px;
}
.detail__album--list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 20px;
}
.detail__album--img a {
  display: inline-flex;
  margin-top: 15px;
  color: #7B5EA5;
  align-items: center;
  gap: 6px;
}
.detail__album--img a img {
  width: 16px;
}

.form-items {
  display: flex;
  margin-bottom: 90px;
  gap: 50px;
}
.form-note {
  margin-bottom: 50px;
}
.form-note b {
  color: #7B5EA5;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"] {
  width: 273px;
  max-width: 100%;
  height: 43px;
  padding: 0 15px;
  background: #F8F8F8;
}
.form-dl dt {
  white-space: nowrap;
}
.form-submit-btn,
.center-btn {
  display: flex;
  justify-content: center;
}
.form-submit-btn .btn,
.center-btn .btn {
  display: flex;
  padding: 20px 60px;
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  line-height: 1.2;
  background: #7B5EA5;
  border-radius: 100px;
}

@media screen and (max-width: 767px) {
  .detail__inner-control {
    font-size: 16px;
  }
  .detail__inner-prev,
  .detail__inner-next {
    gap: 20px;
  }
  .detail__inner-prev span,
  .detail__inner-next span {
    width: 40px;
  }
  .detail__date {
    margin-bottom: 10px;
  }
  .post-detail_title {
    margin-bottom: 40px;
    font-size: 25px;
    line-height: 1.5;
  }
  .detail__inner {
    padding-bottom: 70px;
    margin-bottom: 30px;
  }

  .page-diary .diary-list__item a {
    display: block;
  }
  .page-diary .diary-list__thumb {
    width: 50%;
    height: 120px;
    margin-bottom: 12px;
  }
  .page-diary .diary-list__excerpt {
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    line-clamp: 2;
    line-height: 2;
  }

  .download__btn {
    padding: 16px 40px;
    margin: 30px 0 0;
    font-size: 16px;
  }
  .download__btn img {
    width: 18px;
  }
  .detail__album--list {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail__album--img a {
    margin-top: 8px;
  }

  .form-items {
    display: block;
  }
  .form-dl {
    margin-bottom: 30px;
  }
  .form-submit-btn .btn,
  .center-btn .btn {
    padding: 16px 60px 14px;
    font-size: 16px;
  }
}

/* -------------------------------------------
   Modal
------------------------------------------- */
.modal__content {
  display: none;
}
.modal__inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 80px 20px;
  overflow-y: auto;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.54);
}
.card.card__modal {
  padding: 42px 40px 72px;
  border-radius: 4px;
}
.modal__close {
  width: 54px;
  margin: 0 0 2px auto;
  cursor: pointer;
}
.modal__frame {
  display: block;
  max-width: 730px;
  margin: 0 auto 56px;
}
.modal__frame img {
  width: 100%;
  height: auto;
}
.card.card__modal .post-download__btn {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .card.card__modal {
    padding: 20px 15px 30px;
  }
  .modal__close {
    width: 32px;
    margin-bottom: 20px;
  }
  .modal__frame {
    margin-bottom: 10px;
  }
  .modal__inner .download__btn {
    margin-top: 10px;
  }
}

/* -------------------------------------------
   Pagination (circle)
------------------------------------------- */
.pagination-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}
.pagination-circle__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #E2E2E2;
  background: #fff;
  color: #333;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s;
}
.pagination-circle__item:hover {
  border-color: #7B5EA5;
  color: #7B5EA5;
}
.pagination-circle__item.is-active {
  background: #7B5EA5;
  border-color: #7B5EA5;
  color: #fff;
}
.pagination-circle__dots {
  font-size: 20px;
  color: #333;
}

.page-recruit .txt {
  margin-bottom: 70px;
}

/* -------------------------------------------
   下層ページ - Responsive
------------------------------------------- */
@media screen and (max-width: 1440px) {
  .page-kv-inner::before {
    width: 9%;
    bottom: 23%;
  }
  .page-kv-inner::after {
    top: 20%;
    right: 7%;
    width: 8%;
  }
}

@media screen and (max-width: 1200px) {
  .page-kv-sns {
    width: 58px;
    min-width: 58px;
  }
  .page-kv-info {
    padding: 60px 20px 10px;
  }
  .page-kv-title {
    margin-bottom: 32px;
    font-size: 28px;
  }
  .sec-about__dots {
    gap: 20px;
  }

  .page-tag {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .page-main-content {
    padding: 80px 40px 14px;
  }
  .float-txt img {
    width: 280px;
    margin: 0 0 32px 32px;
  }
  .about__ill1 {
    left: 6%;
    bottom: -20px;
    width: 80px;
  }
  .about__ill2 {
    top: -30px;
    right: 4%;
    width: 64px;
  }

  .dot-list__cat li {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 767px) {
  .page-kv-inner {
    display: block;
    padding: 8px 10px 0;
  }
  .page-kv-inner::before,
  .page-kv-inner::after {
    content: none;
  }
  .page-kv-inner img {
    width: 100%;
    min-width: 100%;
  }

  .page-kv-info {
    padding: 43px 10px 0;
  }
  .page-kv-title {
    margin-bottom: 24px;
    font-size: 25px;
  }
  .page-kv-title b {
    margin-bottom: 24px;
  }
  .page-tag {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .page-kv-sns {
    display: none;
  }

  .page-main-content::before {
    height: 148px;
    background-image: url(../images/page_bg_sp.png);
  }
  .page-main-content {
    padding: 60px 10px;
  }

  .float-txt img {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 30px;
    float: unset;
  }
  .table-line table {
    margin-bottom: 24px;
  }
  .table-line table th {
    display: block;
    width: 100%;
    padding: 24px 0 15px;
    line-height: 1.4;
    border: none;
  }
  .table-line table td {
    display: block;
    width: 100%;
    padding: 0 0 24px;
    line-height: 1.4;
  }

  .map iframe {
    height: 320px;
  }

  .inner-img__full {
    margin: 67px -10px 117px;
  }
  .about__ill1 {
    left: 10px;
    bottom: -40px;
    width: 93px;
  }
  .about__ill2 {
    top: -42px;
    right: 10px;
    width: 60px;
  }

  .daily-schedule__row .row-item {
    display: none;
  }
  .daily-schedule__row .row-item.row-item__time {
    display: block;
    width: 100%;
    transform: none;
  }
  .daily-schedule-time {
    max-width: 267px;
    margin: 0 auto;
  }

  .list-dots__horizontal {
    margin: 30px auto 20px;
  }
  .row-item__undermain .row-txt {
    text-align: left;
    line-height: 1.5;
  }
  .row-txt__note {
    margin: 12px 0 0;
    text-align: left;
    line-height: 1.5;
  }
  .frame-list {
    display: none;
  }
  .card-about-item7::before {
    top: 3588px;
    left: -18px;
    right: -18px;
    width: auto;
    height: calc(100% - 3588px);
  }
  .about__ill3 {
    top: 20.2%;
    left: 20px;
    width: 98px;
  }
  .about__ill4 {
    top: 66.5%;
    left: 0;
    width: 66px;
  }
  .about__ill5 {
    bottom: 2.3%;
    right: 20px;
    width: 63px;
  }

  .step__item dt::after {
    width: 24px;
    margin: 0 10px;
  }
  .step__item dd {
    line-height: 1.6;
  }

  .dot-list__cat li {
    margin-bottom: 30px;
  }

  .event-years__list-item {
    display: block;
    padding-bottom: 36px;
    margin-bottom: 50px;
  }
  .event-years__icon {
    width: 152px;
    height: 152px;
    text-align: center;
    margin: 0 auto 26px;
  }
  .event-years__frame {
    display: block;
  }
  .event-years__img {
    padding: 0 15px;
  }
  .event-monthly__detail-control {
    font-size: 16px;
  }
  .monthly_prev,
  .monthly_next {
    gap: 20px;
  }
  .monthly_prev span,
  .monthly_next span {
    width: 40px;
  }
  .event-monthly__detail {
    padding-bottom: 64px;
    margin-bottom: 40px;
  }

  .page-recruit .txt {
    margin-bottom: 60px;
  }
}

.detail__inner p {
  display: inline-block;
  margin-bottom: 1em;
}
.detail__inner p img {
  max-width: 400px;
}
.lunch-item {
  margin-bottom: 14px;
}
.detail__inner-prev span,
.detail__inner-next span {
  max-width: 64px;
}

@media screen and (max-width: 767px) {
  .detail__inner-prev span,
  .detail__inner-next span {
    max-width: 40px;
  }
}
/* Contact Form */
.page-contact .form-items {
  display: block;
}
.page-contact .form-items .form-dl {
  width: 100%;
}
.page-contact .form-items .form-dl th {
  padding: 14px 0;
}
.page-contact .form-items .form-dl th .required {
  margin-left: -10px;
  font-size: 12px;
  color: #ff4949;
}
.page-contact .form-items .form-dl td {
  padding: 8px 24px;
}
textarea {
  width: 100%;
  max-width: 560px;
  height: 240px;
  padding: 0 15px;
  background: #F8F8F8;
}
.page-contact .form-submit-btn .btn-back {
  margin-right: 20px;
  background: #414141;
}
.page-contact .mw_wp_form .error {
  font-size: 12px;
  color: #ff4949;
}

@media screen and (max-width: 767px) {
  .page-contact .form-items {
    margin-bottom: 40px;
  }
  .page-contact .form-items .form-dl th,
  .page-contact .form-items .form-dl td {
    display: block;
    width: 100%;
  }
  .page-contact .form-items .form-dl td {
    padding: 0;
  }
  .page-contact .form-submit-btn {
    display: block;
    margin-bottom: 40px;
    text-align: center;
  }
  .page-contact .form-submit-btn .btn {
    margin: 0 auto;
  }
}
