@charset "UTF-8";
/*
Theme Name: sado-nighttour
*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", "sans-serif";
  color: #2b1f1f;
  font-size: 14px;
}

html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

ul {
  list-style: none;
}

h2 {
  font-weight: 400;
  font-family: "Noto Serif JP", "serif";
  line-height: 1.5;
  font-size: 3rem;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 0.5em;
  position: relative;
  padding-bottom: 0.5em;
}
h2::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1px;
  background: #2b1f1f;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
h2 span {
  font-size: 0.375em;
  font-family: "Noto Serif JP", "serif";
  display: block;
  line-height: 1;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  header .hm {
    width: 4rem;
    height: 3rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 100;
  }
  header .hm::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  header .hm::after {
    content: "";
    position: absolute;
    top: 2rem;
    left: 0;
    width: 50%;
    height: 2px;
    background: white;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  header .hm.open::before {
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
  }
  header .hm.open::after {
    -webkit-transform: rotate(-35deg);
            transform: rotate(-35deg);
    top: 1rem;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  header .menu.show {
    left: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  header .menu {
    position: fixed;
    background: #2a3669;
    top: 0;
    width: 100vw;
    left: -100vw;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
header .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 3em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  header .menu ul {
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
header .menu ul li a {
  color: white;
  padding: 0 1em;
  border-left: 1px solid white;
  text-decoration: none;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  header .menu ul li a {
    border: none;
    display: block;
    padding: 0.75em 0;
    text-align: center;
  }
}
header .menu ul li:first-child a {
  border-left: none;
}
header .menu ul li:last-child a {
  border-left: none;
  padding: 0.75em 2.5em;
  background: #ba2a2a;
  border-radius: 3em;
}
@media screen and (max-width: 1024px) {
  header .menu ul li:last-child a {
    margin-top: 0.75em;
  }
}

@media screen and (min-width: 1025px) {
  header.scrolled .menu ul {
    background: rgba(43, 31, 31, 0.3);
    padding: 1.5em 3em;
  }
}
@media screen and (max-width: 1024px) {
  header.scrolled .hm::before {
    background: #2b1f1f;
  }
  header.scrolled .hm::after {
    background: #2b1f1f;
  }
}
@media screen and (min-width: 1025px) {
  header.scrolled a {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  header.scrolled a:hover {
    opacity: 0.7;
  }
}

.cv {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cv p {
  color: white;
  font-weight: 600;
}
.cv::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(./img/img11.webp) no-repeat bottom center/cover;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  z-index: -2;
}

.btn {
  display: inline-block;
  background: #ba2a2a;
  color: white;
  padding: 0.75em 3em;
  border-radius: 5rem;
  text-decoration: none;
  font-weight: 600;
  margin: 2rem 0 0;
  font-size: 2.25rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border: solid 1px #ba2a2a;
}
@media screen and (max-width: 1024px) {
  .btn {
    display: block;
    font-size: 1.5rem;
    width: 80%;
    text-align: center;
    padding: 0.75em 0;
    margin: 2rem auto 0;
  }
}
@media screen and (min-width: 1025px) {
  .btn:hover {
    background: white;
    border: solid 1px #ba2a2a;
    color: #ba2a2a;
  }
}

.btn2 {
  display: inline-block;
  color: #2b1f1f;
  padding: 0.75em 3em;
  border: solid 1px #2b1f1f;
  text-decoration: none;
  margin: 3rem auto 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .btn2:hover {
    background: #2b1f1f;
    color: white;
  }
}

main.home .mv__inner {
  position: relative;
  width: 100%;
  height: 100vh;
}
main.home .mv__inner .swiper-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
main.home .mv__inner .swiper-container .swiper-slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 5s linear;
  transition: -webkit-transform 5s linear;
  transition: transform 5s linear;
  transition: transform 5s linear, -webkit-transform 5s linear;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
main.home .mv__inner .swiper-container .swiper-slide.swiper-slide-active img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
main.home .mv__inner-text {
  position: absolute;
  width: 24vw;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 1024px) {
  main.home .mv__inner-text {
    width: 50vw;
  }
}
main.home .mv .btn {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  z-index: 10;
}
main.home .about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f4f2ea;
}
@media screen and (max-width: 1024px) {
  main.home .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
main.home .about__text {
  padding: 5vw;
  position: relative;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main.home .about__text::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0%;
  width: 50%;
  height: 100%;
  background: url(./img/deco1.svg) no-repeat top right/contain;
}
main.home .about__text::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0%;
  width: 75%;
  height: 100%;
  background: url(./img/deco2.svg) no-repeat bottom left/contain;
}
@media screen and (max-width: 1024px) {
  main.home .about__text::after {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  main.home .about__text {
    padding: 5em 2em;
  }
}
main.home .about__text-inner {
  z-index: 5;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
  main.home .about__text-inner {
    padding-bottom: 5rem;
  }
}
main.home .about__text p.reception {
  font-size: 1.5vw;
  background: -webkit-gradient(linear, left top, right top, from(#435847), to(#8cba42));
  background: linear-gradient(to right, #435847, #8cba42);
  display: inline-block;
  color: #f4f2ea;
  padding: 0.75em 1em;
  font-family: "Noto Serif JP", "serif";
  font-weight: 600;
  border-radius: 0.25em;
}
@media screen and (max-width: 1024px) {
  main.home .about__text p.reception {
    font-size: 5vw;
  }
}
main.home .about__text p.reception span {
  font-size: 0.75em;
  color: #f4f2ea;
  font-family: "Noto Serif JP", "serif";
  font-weight: 600;
}
main.home .about__text h2 {
  font-size: 2.5vw;
  margin: 0.75em 0 0.5em;
  text-align: left;
  padding-bottom: 0;
}
main.home .about__text h2::after {
  display: none;
}
@media screen and (max-width: 1024px) {
  main.home .about__text h2 {
    font-size: 6vw;
  }
}
main.home .about__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
main.home .about__img .about__img-container1,
main.home .about__img .about__img-container2 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  main.home .about__img .about__img-container1,
  main.home .about__img .about__img-container2 {
    height: 66vh;
  }
}
main.home .about__img .about__img-container1 .swiper-wrapper,
main.home .about__img .about__img-container2 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
main.home .about__img .about__img-container1 .swiper-slide img,
main.home .about__img .about__img-container2 .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.home .outline {
  background: #2a3669;
  padding: 6em 0;
}
main.home .outline__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
  main.home .outline__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
main.home .outline__inner:nth-of-type(2) .outline__inner-text h2::before {
  background: linear-gradient(135deg, #6db249 0%, rgba(28, 60, 11, 0) 75%);
}
main.home .outline__inner:nth-of-type(3) .outline__inner-text h2::before {
  background: linear-gradient(135deg, #61d8e2 0%, rgba(29, 105, 111, 0) 75%);
}
main.home .outline__inner-text {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 5%;
}
@media screen and (max-width: 1024px) {
  main.home .outline__inner-text {
    padding: 0 10%;
    margin-bottom: 3rem;
  }
}
main.home .outline__inner-text h2,
main.home .outline__inner-text span,
main.home .outline__inner-text p {
  color: #f4f2ea;
}
main.home .outline__inner-text h2 {
  font-size: 5em;
  line-height: 1.25;
  margin-bottom: 0.25em;
  text-align: left;
  padding-bottom: 0;
  position: relative;
  z-index: 10;
}
main.home .outline__inner-text h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  height: 2em;
  background: linear-gradient(135deg, #de2424 0%, rgba(111, 18, 18, 0) 75%);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
main.home .outline__inner-text h2::after {
  display: none;
}
main.home .outline__inner-text h2 span {
  font-size: 0.375em;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  main.home .outline__inner-text h2 span {
    font-size: 0.25em;
  }
}
main.home .outline__inner-text p {
  font-size: 1em;
}
main.home .outline__inner-img {
  -ms-flex-preferred-size: 67%;
      flex-basis: 67%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  main.home .outline__inner-img {
    padding-left: 10%;
  }
}
main.home .outline__inner-img img {
  aspect-ratio: 1;
}
main.home .headline__desc {
  text-align: center;
  margin-bottom: 3rem;
}
main.home .schedule {
  padding: 6em 0 0;
}
main.home .schedule__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  main.home .schedule__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
main.home .schedule__inner-card {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  margin-bottom: 3rem;
}
main.home .schedule__inner-card h3 {
  font-size: 1.5rem;
  margin: 0.75em 0 0.5em;
}
main.home .schedule__inner-card img {
  aspect-ratio: 3/2;
}
main.home .spot {
  background: #f4f2ea;
  padding: 6em 0;
}
main.home .spot__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
main.home .spot__inner h3 {
  font-size: 2rem;
  margin: 0.75em 0 0.5em;
  font-weight: 400;
  font-family: "Noto Serif JP", "serif";
  position: relative;
  padding-left: 1.5em;
}
main.home .spot__inner h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 1em;
  height: 1em;
  background: #435847;
  border-radius: 0.25em;
}
main.home .spot__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3%;
  margin-bottom: 3rem;
}
main.home .spot__inner-container:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  main.home .spot__inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
main.home .spot__inner-card {
  -ms-flex-preferred-size: 22%;
      flex-basis: 22%;
}
main.home .spot__inner-card h4 {
  font-size: 1.25rem;
  margin: 0.75em 0 0.5em;
}
main.home .spot__inner-card img {
  aspect-ratio: 3/2;
}
main.home .faq {
  padding: 6em 0;
}
main.home .faq__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
main.home .faq__inner dl {
  margin-top: 3rem;
  border-bottom: 1px solid #2b1f1f;
}
main.home .faq__inner dl dt {
  padding: 1.25em 1.5em 1.25em 0;
  font-size: 1.25rem;
  position: relative;
  border-top: 1px solid #2b1f1f;
}
main.home .faq__inner dl dt::before {
  content: "Q.";
  margin-right: 0.5em;
}
main.home .faq__inner dl dt::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
main.home .faq__inner dl dt.open::after {
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}
main.home .faq__inner dl dt:hover {
  cursor: pointer;
}
main.home .faq__inner dl dd {
  padding: 1.25em;
  background: #f4f2ea;
  border-radius: 0.5em;
  display: none;
}
main.home .faq__inner dl dd h3 {
  font-size: 1.25rem;
  margin: 0.75em 0 0.5em;
  margin: 0 0 0.5em;
  color: #ba2a2a;
}
main.home .faq__inner dl dd h3::before {
  content: "A.";
  margin-right: 0.5em;
}
main.home .detail {
  padding: 6em 0;
  background: #f4f2ea;
}
main.home .detail__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  main.home .detail__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
main.home .detail__inner-calender {
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
  margin-bottom: 3rem;
}
main.home .detail__inner-calender .calendar .calendar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
}
main.home .detail__inner-calender .calendar .calendar-header h3 {
  text-align: center;
  font-size: 1.5rem;
  margin: 0;
  font-family: "Noto Serif JP", "serif";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main.home .detail__inner-calender .calendar .calendar-header .calendar-nav {
  width: 2.5rem;
  height: 2.5rem;
  background: #435847;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
main.home .detail__inner-calender .calendar .calendar-header .calendar-nav:hover {
  background: #ba2a2a;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
main.home .detail__inner-calender .calendar .calendar-header .calendar-nav.prev {
  margin-right: 1rem;
}
main.home .detail__inner-calender .calendar .calendar-header .calendar-nav.next {
  margin-left: 1rem;
}
main.home .detail__inner-calender .calendar .calendar-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
main.home .detail__inner-calender .calendar .calendar-table th {
  background: #435847;
  color: white;
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
  border: 1px solid #ddd;
}
main.home .detail__inner-calender .calendar .calendar-table td {
  padding: 0.25rem 0.75rem 2rem 0.25rem;
  text-align: left;
  border: 1px solid #ddd;
  min-height: 3rem;
  vertical-align: top;
  position: relative;
}
main.home .detail__inner-calender .calendar .calendar-table td.tour {
  background: #ba2a2a;
  color: white;
  font-weight: 600;
  position: relative;
}
main.home .detail__inner-calender .calendar .calendar-table td.tour:hover {
  opacity: 0.8;
  cursor: pointer;
}
main.home .detail__inner-calender .calendar .calendar-table td.tour::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  font-size: 0.75rem;
}
main.home .detail__inner-calender .calendar .calendar-table td.artsecond {
  background: #2a3669 !important;
}
main.home .detail__inner-calender .calendar .calendar-table td.goulmet1::before, main.home .detail__inner-calender .calendar .calendar-table td.goulmet1::after,
main.home .detail__inner-calender .calendar .calendar-table td.goulmet2::before,
main.home .detail__inner-calender .calendar .calendar-table td.goulmet2::after,
main.home .detail__inner-calender .calendar .calendar-table td.goulmet3::before,
main.home .detail__inner-calender .calendar .calendar-table td.goulmet3::after,
main.home .detail__inner-calender .calendar .calendar-table td.art1::before,
main.home .detail__inner-calender .calendar .calendar-table td.art1::after,
main.home .detail__inner-calender .calendar .calendar-table td.art2::before,
main.home .detail__inner-calender .calendar .calendar-table td.art2::after,
main.home .detail__inner-calender .calendar .calendar-table td.art3::before,
main.home .detail__inner-calender .calendar .calendar-table td.art3::after,
main.home .detail__inner-calender .calendar .calendar-table td.art4::before,
main.home .detail__inner-calender .calendar .calendar-table td.art4::after,
main.home .detail__inner-calender .calendar .calendar-table td.art5::before,
main.home .detail__inner-calender .calendar .calendar-table td.art5::after,
main.home .detail__inner-calender .calendar .calendar-table td.art6::before,
main.home .detail__inner-calender .calendar .calendar-table td.art6::after,
main.home .detail__inner-calender .calendar .calendar-table td.art7::before,
main.home .detail__inner-calender .calendar .calendar-table td.art7::after,
main.home .detail__inner-calender .calendar .calendar-table td.art8::before,
main.home .detail__inner-calender .calendar .calendar-table td.art8::after,
main.home .detail__inner-calender .calendar .calendar-table td.art9::before,
main.home .detail__inner-calender .calendar .calendar-table td.art9::after {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: #2b1f1f;
  width: 1.375rem;
  height: 1.375rem;
  background: #f4f2ea;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main.home .detail__inner-calender .calendar .calendar-table td.goulmet1::before,
main.home .detail__inner-calender .calendar .calendar-table td.goulmet2::before,
main.home .detail__inner-calender .calendar .calendar-table td.goulmet3::before {
  content: "";
  left: 0.25rem;
}
main.home .detail__inner-calender .calendar .calendar-table td.goulmet1::before {
  content: "京";
}
main.home .detail__inner-calender .calendar .calendar-table td.goulmet2::before {
  content: "蒼";
}
main.home .detail__inner-calender .calendar .calendar-table td.goulmet3::before {
  content: "持";
}
main.home .detail__inner-calender .calendar .calendar-table td.art1::after,
main.home .detail__inner-calender .calendar .calendar-table td.art2::after,
main.home .detail__inner-calender .calendar .calendar-table td.art3::after,
main.home .detail__inner-calender .calendar .calendar-table td.art4::after,
main.home .detail__inner-calender .calendar .calendar-table td.art5::after,
main.home .detail__inner-calender .calendar .calendar-table td.art6::after,
main.home .detail__inner-calender .calendar .calendar-table td.art7::after,
main.home .detail__inner-calender .calendar .calendar-table td.art8::after,
main.home .detail__inner-calender .calendar .calendar-table td.art9::after {
  left: 1.75rem;
}
main.home .detail__inner-calender .calendar .calendar-table td.art1::after {
  content: "鼓";
}
main.home .detail__inner-calender .calendar .calendar-table td.art2::after {
  content: "人";
}
main.home .detail__inner-calender .calendar .calendar-table td.art3::after {
  content: "能";
}
main.home .detail__inner-calender .calendar .calendar-table td.art4::after {
  content: "謡";
}
main.home .detail__inner-calender .calendar .calendar-table td.art5::after {
  content: "祭";
}
main.home .detail__inner-calender .calendar .calendar-table td.art6::after {
  content: "祭";
}
main.home .detail__inner-calender .calendar .calendar-table td.art7::after {
  content: "能";
}
main.home .detail__inner-calender .calendar .calendar-table td.art8::after {
  content: "踊";
}
main.home .detail__inner-calender .calendar .calendar-table td.art9::after {
  content: "能";
}
main.home .detail__inner-content {
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
}
main.home .detail__inner-content-outline p {
  margin-bottom: 1em;
  font-weight: 600;
}
main.home .detail__inner-content-outline p span {
  background: #2b1f1f;
  color: white;
  display: inline-block;
  width: 7em;
  text-align: center;
  padding: 0.25em 0em;
  border-radius: 0.25em;
  font-weight: 600;
  font-size: 0.875rem;
  margin-right: 1em;
}
main.home .detail__inner-content-item {
  gap: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main.home .detail__inner-content-item div {
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
  margin-bottom: 1.5rem;
}
main.home .detail__inner-content-item div h3 {
  font-size: 1.25rem;
  padding-left: 1.25em;
  position: relative;
  margin-bottom: 0.5em;
}
main.home .detail__inner-content-item div h3::before {
  content: "";
  display: block;
  position: absolute;
  width: 1em;
  height: 1em;
  background: #435847;
  border-radius: 0.25em;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
main.home .detail__inner-content-item div h4 {
  font-weight: 400;
}
main.home .detail__inner-content-item div img {
  aspect-ratio: 3/2;
  width: 100%;
}

footer {
  background: #2a3669;
  color: white;
  text-align: center;
  padding: 2em 0;
}
footer * {
  color: white;
}

.news {
  padding: 6em 0;
  background: #f4f2ea;
}
.news__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.news__inner ul {
  margin-top: 3rem;
  border-top: 1px solid #2b1f1f;
}
.news__inner ul li a {
  display: block;
  padding: 1.5em;
  text-decoration: none;
  border-bottom: 1px solid #2b1f1f;
}
.news__inner ul li a span {
  margin-right: 2em;
}
.news__inner ul li a h3 {
  font-size: 1.25rem;
  font-weight: 400;
}
.news__inner-btn {
  text-align: center;
}

@-webkit-keyframes beforeMove {
  0%, 100% {
    right: 0%;
  }
  50% {
    right: 3%;
  }
}

@keyframes beforeMove {
  0%, 100% {
    right: 0%;
  }
  50% {
    right: 3%;
  }
}
@-webkit-keyframes afterMove {
  0%, 100% {
    left: 0%;
  }
  50% {
    left: 3%;
  }
}
@keyframes afterMove {
  0%, 100% {
    left: 0%;
  }
  50% {
    left: 3%;
  }
}
@media screen and (min-width: 1025px) {
  body.single header .menu ul,
  body.archive header .menu ul {
    background: #2a3669;
    padding: 1.5em;
  }
}
body.single main.lower,
body.archive main.lower {
  min-height: 80vh;
}
@media screen and (min-width: 1025px) {
  body.single main.lower,
  body.archive main.lower {
    padding-top: 4rem;
  }
}
body.single main.lower h1,
body.archive main.lower h1 {
  padding: 10rem 5%;
  color: white;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-size: 2.5rem;
}
body.single main.lower h1 span,
body.archive main.lower h1 span {
  font-size: 1em;
  color: white;
}
body.single main.lower h1::before,
body.archive main.lower h1::before {
  content: "";
  z-index: -1;
  background: url(./img/img11.webp) no-repeat bottom center/cover;
  position: absolute;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body.single main.lower .lower__inner,
body.archive main.lower .lower__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 0;
}
body.single main.lower .lower__inner h2,
body.archive main.lower .lower__inner h2 {
  font-size: 2em;
  font-family: "Noto Serif JP", "serif";
  font-weight: 400;
  margin: 2em 0 1em;
  text-align: left;
  padding: 0 0 0.75em;
}
body.single main.lower .lower__inner h2:first-of-type,
body.archive main.lower .lower__inner h2:first-of-type {
  margin: 0 0 1em;
}
body.single main.lower .lower__inner h2::after,
body.archive main.lower .lower__inner h2::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1px;
  background: #2b1f1f;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0);
          transform: translate(0);
}
body.single main.lower .lower__inner h3,
body.archive main.lower .lower__inner h3 {
  font-size: 1.5em;
  font-family: "Noto Serif JP", "serif";
  font-weight: 400;
  margin: 1em 0 0.5em;
  position: relative;
  padding-left: 1.5em;
}
body.single main.lower .lower__inner h3::before,
body.archive main.lower .lower__inner h3::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: #435847;
  border-radius: 0.25em;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
body.single main.lower .lower__inner h4,
body.archive main.lower .lower__inner h4 {
  font-size: 1.25em;
  font-family: "Noto Serif JP", "serif";
  font-weight: 400;
  margin: 1em 0 0.5em;
  border-bottom: solid 1px #2b1f1f;
  padding-bottom: 0.5em;
}
body.single main.lower .lower__inner p,
body.archive main.lower .lower__inner p {
  margin-bottom: 1em;
}
body.single main.lower .lower__inner figure,
body.archive main.lower .lower__inner figure {
  margin: 2em 0;
}

main.archive {
  padding-bottom: 6rem;
}