/* SWIPER */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: left;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper_mv .swiper-slide img {
  margin-bottom: 8px;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-pagination {
  position: relative!important;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .swiper_mv .swiper-slide img {
    margin-bottom: 24px;
  }
}

/* ACCORDION */
.accordion dl {
  border-bottom: 1px solid #E9E9E9;
}
.accordion dt {
  cursor: pointer;
  padding: 16px 8px;
  border-top: 1px solid #E9E9E9;
  border-left: 1px solid #E9E9E9;
  border-right: 1px solid #E9E9E9;
}
.accordion dt:last-child {
  border-bottom: 1px solid #E9E9E9;
  border-left: 1px solid #E9E9E9;
  border-right: 1px solid #E9E9E9;
}
.accordion dt.open,
.accordion dt:hover {
  background-color: #26993A;
  color: #ffffff;
  border: none;
}
.accordion dd {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #3C9F4D;
  color: #ffffff;
  padding: 0 24px;
}
.accordion dd.open {

}
.accordion dt.open + dd {
  max-height: 1000px; /* 適切な値に調整してください */
  transition: max-height 0.3s ease; /* アコーディオンのアニメーションを追加 */
  padding: 16px 24px;
}
@media screen and (min-width: 768px) {
  .accordion dt {
    cursor: pointer;
    padding: 16px 24px;
    border-top: 1px solid #E9E9E9;
    border-left: 1px solid #E9E9E9;
    border-right: 1px solid #E9E9E9;
  }
}

/* STARS */
.star_1:before {
  content: "★";
  color: #FFE500;
}
.star_2:before {
  content: "★★";
  color: #FFE500;
}
.star_3:before {
  content: "★★★";
  color: #FFE500;
}
.star_4:before {
  content: "★★★★";
  color: #FFE500;
}
.star_5:before {
  content: "★★★★★";
  color: #FFE500;
}

.star_1:after {
  content: "★★★★";
  color: #BEBEBE;
}
.star_2:after {
  content: "★★★";
  color: #BEBEBE;
}
.star_3:after {
  content: "★★";
  color: #BEBEBE;
}
.star_4:after {
  content: "★";
  color: #BEBEBE;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.breadcrumb a,
.breadcrumb a:visited {
  color: #26993A;
  text-decoration: underline;
}

/* VIMEO */
.article_movie { 
  position: relative; 
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
} 

.article_movie iframe,
.article_movie object,
.article_movie embed { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article_thumbnail {
  margin: 24px 0;
}
@media screen and (min-width: 768px) {
  .article_movie { 
    position: relative; 
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    margin-bottom: 56px;
  } 
}

/* OUTLINE */
h2.wp-block-heading {
  font-size: 2.2rem;
  line-height: 2.8rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: #26993A;
}
@media screen and (min-width: 768px) {
  .article_movie { 
    font-size: 3.2rem;
    line-height: 4.0rem;
    margin-bottom: 32px;
  } 
}
h3.wp-block-heading {
  font-size: 2.2rem;
  line-height: 4.6rem;
  margin-bottom: 16px;
  font-weight: 700;
}

/* SEARCH RESULT */
.search-highlight {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #ffff66 60%);
}

/* HUMBERGER BUTTON */
.hamburger {
  display: block;
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  border: none;
  background-color: #26993A;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
  z-index: 1020;
}

.hamburger:focus {
  outline: none;
}

.hamburger__line {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger__line:first-child {
  transform-origin: left;
  top: 10px;
}

.hamburger__line:last-child {
  transform-origin: right;
  top: 25px;
}

.hamburger[aria-expanded="true"] .hamburger__line:first-child {
  transform: rotate(45deg);
  left: 11px;
}

.hamburger[aria-expanded="true"] .hamburger__line:last-child {
  transform: rotate(-45deg);
  top: 10px;
  left: 5px;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  background-color: transparent;
}

.hamburger[aria-expanded="true"] {
      position: absolute;
    right: 8px;
}

.overlay {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1.0);
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.button_div {
  text-align: center;
  border-radius: 4px;
}
.button_div input {
  display: block;
  background-color: #26993A;
  color: #ffffff;
  text-align: center;
  width: 100%;
  line-height: 40px;
  border-radius: 4px;
}

.search {
  width: 100%;
}