@charset "UTF-8";
/*///// VARIABLES /////*/
/*///// FOUNDATION /////*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 500;
  padding: 0;
  margin: 0;
}

html {
  font-size: 10px;
  font-feature-settings: "palt" on, "pkna" on;
  scroll-behavior: smooth;
}

@media (min-width: 500px) {
  body {
    min-width: 1440px;
  }
}

p {
  font-size: 1.4rem;
  text-align: justify;
}
@media (min-width: 500px) {
  p {
    font-size: 1.6rem;
  }
}

a {
  color: #222;
  text-decoration: none;
}
a:hover, a:focus, a:active, a:visited {
  color: #222;
}

/*///// HEADER /////*/
.l-header {
  position: absolute;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.l-header__site {
  width: 40px;
}
@media (min-width: 500px) {
  .l-header__site {
    width: 60px;
  }
}

/*///// HERO /////*/
.p-hero {
  position: relative;
}

.slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}
@media (min-width: 500px) {
  .slider {
    height: 100vh;
  }
}
.slider-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 10;
  animation: slide 18s 0s infinite;
}
@media (min-width: 500px) {
  .slider-item {
    height: 100vh;
  }
}
.slider-item:nth-of-type(2) {
  animation-delay: 6s;
}
.slider-item:nth-of-type(3) {
  animation-delay: 12s;
}
.slider-item.item-01 {
  background-image: url("images/shikinen/hero-pc01.jpg");
}
.slider-item.item-02 {
  background-image: url("images/shikinen/hero-pc02.jpg");
}
.slider-item.item-03 {
  background-image: url("images/shikinen/hero-pc03.jpg");
}
.slider-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 4rem;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  z-index: 30;
}
@media (min-width: 500px) {
  .slider-copy {
    font-size: 6rem;
  }
}
.slider-copy__inner {
  background: #fff;
  padding: 8px 8px 4px 4px;
  color: #000;
  text-align: center;
  line-height: 120%;
  letter-spacing: 0.1em;
}

@keyframes slide {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  34% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale(1.1);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: block;
  transform: none;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.slideAnimeLeftRight {
  animation: revealClipY 1s ease forwards;
}

@keyframes revealClipY {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
.slideAnimeLeftRight:nth-child(1),
.slideAnimeLeftRight:nth-child(1) .slideAnimeRightLeft {
  animation-delay: 0.3s;
}

.slideAnimeLeftRight:nth-child(3),
.slideAnimeLeftRight:nth-child(3) .slideAnimeRightLeft {
  animation-delay: 1.3s;
}

.slideAnimeLeftRight:nth-child(5),
.slideAnimeLeftRight:nth-child(5) .slideAnimeRightLeft {
  animation-delay: 2.3s;
}

/*///// INFO /////*/
.p-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 10px 10px;
}
@media (min-width: 500px) {
  .p-info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 72px;
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 200;
  }
}
.p-info__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 500px) {
  .p-info__header {
    display: contents;
  }
}
.p-info__heading {
  color: #2F7096;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
@media (min-width: 500px) {
  .p-info__heading {
    padding: 0 1.6em;
  }
}
.p-info__link {
  color: #222;
  font-size: 1.4rem;
  text-decoration: none;
  background: #F5F8FA;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 20px;
}
@media (min-width: 500px) {
  .p-info__link {
    order: 2;
    font-size: 1.6rem;
    padding: 0 1.25em;
  }
}
.p-info__link:visited {
  color: #222;
}
.p-info__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 500px) {
  .p-info__list {
    order: 1;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
  }
}
.p-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
}
@media (min-width: 500px) {
  .p-info__item {
    width: 50%;
  }
}
.p-info__item a {
  display: contents;
}
.p-info__image {
  flex-shrink: 0;
}
.p-info__image img {
  width: 72px;
  height: 72px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-info__date {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.p-info__title {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.4rem;
  font-style: normal;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*///// INDEX /////*/
.p-index {
  border-top: 1px solid #CDC2A7;
  border-bottom: 1px solid #CDC2A7;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.p-index__list {
  font-size: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  padding: 2em 0;
}
@media (min-width: 500px) {
  .p-index__list {
    font-size: 1.6rem;
  }
}
.p-index__item {
  display: flex;
  align-items: center;
  gap: 1em;
}
.p-index__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #CDC2A7;
  border-radius: 50%;
}
.p-index__item a {
  color: #2F7096;
  display: contents;
}

/*///// INTRO /////*/
.p-intro {
  background: #F5F8FA url("images/shikinen/intro-bg-sp.png") no-repeat bottom center/500px;
  padding: 80px 0 100px;
}
@media (min-width: 500px) {
  .p-intro {
    background: #F5F8FA url("images/shikinen/intro-bg.png") no-repeat bottom center/contain;
    padding: 120px 0;
  }
}
.p-intro__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
}
@media (min-width: 500px) {
  .p-intro__inner {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 60px;
    max-width: 1440px;
    margin: 0 auto;
  }
}
.p-intro__heading {
  font-size: 2.4rem;
  writing-mode: vertical-rl;
  font-feature-settings: "vpal";
  letter-spacing: 0.1em;
  line-height: 1.6;
  white-space: nowrap;
  margin: 0;
}
@media (min-width: 500px) {
  .p-intro__heading {
    font-size: 3.2rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-intro__desc {
  font-size: 1.6rem;
  writing-mode: vertical-rl;
  font-feature-settings: "vpal";
  line-height: 2;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 500px) {
  .p-intro__desc {
    font-size: 2rem;
  }
}
.p-intro__image {
  position: absolute;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
.p-intro__image--01 {
  width: 78px;
  top: 48.0769230769%;
  left: -2.6666666667%;
}
@media (min-width: 500px) {
  .p-intro__image--01 {
    width: 156px;
    top: 37.8787878788%;
    left: -0.6944444444%;
  }
}
.p-intro__image--02 {
  width: 97px;
  animation-delay: -0.5s;
  top: 14.4230769231%;
  left: 5.3333333333%;
}
@media (min-width: 500px) {
  .p-intro__image--02 {
    width: 194px;
    top: -3.7878787879%;
    left: 12.5%;
  }
}
.p-intro__image--03 {
  width: 85px;
  animation-delay: -0.75s;
  top: 0;
  right: 8%;
}
@media (min-width: 500px) {
  .p-intro__image--03 {
    width: 170px;
    top: -1.5151515152%;
    right: 14.5833333333%;
  }
}
.p-intro__image--04 {
  width: 74px;
  animation-delay: -0.25s;
  top: 38.4615384615%;
  right: -1.6%;
}
@media (min-width: 500px) {
  .p-intro__image--04 {
    width: 148px;
    top: 22.7272727273%;
    right: -0.4166666667%;
  }
}

/*///// TAISAI /////*/
.p-taisai {
  overflow: hidden;
  padding: 80px 0;
}
@media (min-width: 500px) {
  .p-taisai {
    max-width: 1440px;
    padding: 100px 0 200px;
    margin: 0 auto;
  }
}
.p-taisai__heading {
  border-left: 6px solid #B5A77F;
  padding: 0 0 0 16px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 500px) {
  .p-taisai__heading {
    width: 100px;
    flex-direction: row-reverse;
    border-left: 0;
    border-top: 8px solid #B5A77F;
    padding: 20px 0 0 0;
  }
}
.p-taisai__heading-jp {
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 500px) {
  .p-taisai__heading-jp {
    font-size: 4.8rem;
    writing-mode: vertical-rl;
  }
}
.p-taisai__heading-en {
  color: #B5A77F;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
}
@media (min-width: 500px) {
  .p-taisai__heading-en {
    font-size: 1.6rem;
    white-space: nowrap;
    transform: rotate(90deg) translateX(calc(100% + 0.5em));
    transform-origin: top right;
  }
}
.p-taisai__box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 500px) {
  .p-taisai__box {
    flex-direction: row;
    gap: 0;
    position: relative;
  }
}
.p-taisai__box--01 {
  margin-bottom: 60px;
}
@media (min-width: 500px) {
  .p-taisai__box--01 {
    margin-bottom: 120px;
  }
}
.p-taisai__box--02 {
  margin-bottom: 60px;
}
@media (min-width: 500px) {
  .p-taisai__box--02 {
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 20px;
  }
}
.p-taisai__box--03 {
  align-items: center;
}
.p-taisai__textbox {
  z-index: 10;
}
.p-taisai__textbox--01 {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 20px;
}
@media (min-width: 500px) {
  .p-taisai__textbox--01 {
    width: 41.6666666667%;
    gap: 100px;
    padding: 0 5.5555555556% 0 8.3333333333%;
  }
}
.p-taisai__textbox--02 {
  padding: 0 20px;
}
@media (min-width: 500px) {
  .p-taisai__textbox--02 {
    width: 40.9722222222%;
    padding: 0 8.3333333333% 0 7.6388888889%;
  }
}
.p-taisai__textbox--03 {
  padding: 0 20px;
}
@media (min-width: 500px) {
  .p-taisai__textbox--03 {
    width: 44.4444444444%;
    padding: 0 8.3333333333%;
  }
}
@media (min-width: 500px) {
  .p-taisai__text {
    font-size: 1.8rem;
  }
}
.p-taisai__imagebox::before {
  content: "";
}
.p-taisai__imagebox--01 {
  aspect-ratio: 840/540;
  position: relative;
}
@media (min-width: 500px) {
  .p-taisai__imagebox--01 {
    width: 58.3333333333%;
  }
}
.p-taisai__imagebox--01::before {
  width: 81.4285714286%;
  aspect-ratio: 684/554;
  background: url("images/shikinen/taisai-bg01.png") no-repeat 0 0/contain;
  position: absolute;
  left: 9.5238095238%;
  bottom: -40.7407407407%;
}
.p-taisai__imagebox--02 {
  aspect-ratio: 850/560;
  position: relative;
}
@media (min-width: 500px) {
  .p-taisai__imagebox--02 {
    width: 59.0277777778%;
  }
}
.p-taisai__imagebox--02::before {
  width: 102.3529411765%;
  aspect-ratio: 870/826;
  background: url("images/shikinen/taisai-bg02.png") no-repeat 0 0/contain;
  position: absolute;
  left: 1.1764705882%;
  top: -14.6428571429%;
}
.p-taisai__imagebox--03 {
  width: 100%;
  aspect-ratio: 800/480;
  position: relative;
}
@media (min-width: 500px) {
  .p-taisai__imagebox--03 {
    width: 55.5555555556%;
  }
}
.p-taisai__imagebox--03::before {
  width: 41.75%;
  aspect-ratio: 334/386;
  background: url("images/shikinen/taisai-bg03.png") no-repeat 0 0/contain;
  position: absolute;
  right: 22.5%;
  bottom: -17.0833333333%;
}
.p-taisai__image {
  position: absolute;
  overflow: hidden;
}
.p-taisai__image--01 {
  width: 38.0952380952%;
  top: 0;
  left: 0;
}
.p-taisai__image--02 {
  width: 67.8571428571%;
  bottom: 0;
  right: 0;
}
.p-taisai__image--03 {
  width: 37.6470588235%;
  top: 0;
  right: 0;
}
.p-taisai__image--04 {
  width: 70.5882352941%;
  bottom: 0;
  left: 0;
}
.p-taisai__image--05 {
  width: 46%;
  bottom: 0;
  left: 0;
}
.p-taisai__image--06 {
  width: 65%;
  top: 0;
  right: 0;
}

/*///// JINKOSAI /////*/
.p-jinkosai {
  overflow: hidden;
  max-width: 1440px;
  padding: 80px 0;
  margin: 0 auto;
}
@media (min-width: 500px) {
  .p-jinkosai {
    padding: 120px 0 160px;
  }
}
.p-jinkosai__heading {
  border-left: 6px solid #6198B9;
  padding: 0 0 0 16px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 500px) {
  .p-jinkosai__heading {
    width: 100px;
    flex-direction: row-reverse;
    border-left: 0;
    border-top: 8px solid #6198B9;
    padding: 20px 0 0 0;
  }
}
.p-jinkosai__heading-jp {
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 500px) {
  .p-jinkosai__heading-jp {
    font-size: 4.8rem;
    writing-mode: vertical-rl;
  }
}
.p-jinkosai__heading-en {
  color: #6198B9;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
}
@media (min-width: 500px) {
  .p-jinkosai__heading-en {
    font-size: 1.6rem;
    white-space: nowrap;
    transform: rotate(90deg) translateX(calc(100% + 0.5em));
    transform-origin: top right;
  }
}
.p-jinkosai__box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}
@media (min-width: 500px) {
  .p-jinkosai__box {
    position: relative;
    gap: 0;
  }
}
@media (min-width: 500px) {
  .p-jinkosai__box--01 {
    flex-direction: row-reverse;
    margin-bottom: 140px;
  }
}
@media (min-width: 500px) {
  .p-jinkosai__box--02 {
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
  }
}
@media (min-width: 500px) {
  .p-jinkosai__box--03 {
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 0;
  }
}
.p-jinkosai__textbox {
  position: relative;
  z-index: 10;
}
.p-jinkosai__textbox--01 {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 20px;
}
@media (min-width: 500px) {
  .p-jinkosai__textbox--01 {
    align-items: flex-end;
    gap: 100px;
    width: 41.6666666667%;
    padding: 0 8.3333333333% 0 5.5555555556%;
  }
}
.p-jinkosai__textbox--02 {
  padding: 0 20px;
}
@media (min-width: 500px) {
  .p-jinkosai__textbox--02 {
    width: 40.9722222222%;
    padding: 0 8.3333333333% 0 7.6388888889%;
  }
}
.p-jinkosai__textbox--03 {
  padding: 0 20px;
}
@media (min-width: 500px) {
  .p-jinkosai__textbox--03 {
    width: 44.4444444444%;
    padding: 0 8.3333333333%;
  }
}
@media (min-width: 500px) {
  .p-jinkosai__text {
    font-size: 1.8rem;
  }
}
.p-jinkosai__imagebox {
  width: 100%;
}
.p-jinkosai__imagebox::before {
  content: "";
}
.p-jinkosai__imagebox--01 {
  aspect-ratio: 840/520;
  position: relative;
}
@media (min-width: 500px) {
  .p-jinkosai__imagebox--01 {
    width: 58.3333333333%;
  }
}
.p-jinkosai__imagebox--01::before {
  width: 100.7142857143%;
  aspect-ratio: 846/467;
  background: url("images/shikinen/jinkosai-bg01.png") no-repeat 0 0/contain;
  position: absolute;
  left: 16.6666666667%;
  top: -15.3846153846%;
}
.p-jinkosai__imagebox--02 {
  aspect-ratio: 850/540;
  position: relative;
}
@media (min-width: 500px) {
  .p-jinkosai__imagebox--02 {
    width: 59.0277777778%;
  }
}
.p-jinkosai__imagebox--02::before {
  width: 99.5294117647%;
  aspect-ratio: 846/603;
  background: url("images/shikinen/jinkosai-bg02.png") no-repeat 0 0/contain;
  position: absolute;
  left: -5.8823529412%;
  top: -12.962962963%;
}
.p-jinkosai__imagebox--03 {
  aspect-ratio: 800/470;
  position: relative;
}
@media (min-width: 500px) {
  .p-jinkosai__imagebox--03 {
    width: 55.5555555556%;
  }
}
.p-jinkosai__imagebox--03::before {
  width: 105.75%;
  aspect-ratio: 846/467;
  background: url("images/shikinen/jinkosai-bg03.png") no-repeat 0 0/contain;
  position: absolute;
  right: -10%;
  top: -27.6595744681%;
}
.p-jinkosai__image {
  position: absolute;
  overflow: hidden;
}
.p-jinkosai__image--01 {
  width: 67.8571428571%;
  bottom: 0;
  left: 0;
}
.p-jinkosai__image--02 {
  width: 38.0952380952%;
  top: 0;
  right: 0;
}
.p-jinkosai__image--03 {
  width: 70.5882352941%;
  bottom: 0;
  right: 0;
}
.p-jinkosai__image--04 {
  width: 37.6470588235%;
  top: 0;
  left: 0;
}
.p-jinkosai__image--05 {
  width: 65%;
  top: 0;
  left: 0;
}
.p-jinkosai__image--06 {
  width: 46%;
  bottom: 0;
  right: 0;
}

/*///// HIGHLIGHTS /////*/
.p-slider {
  color: #fff;
  background: #3E4F59;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 500px) {
  .p-slider {
    padding: 0;
  }
}
.p-slider__heading {
  display: flex;
  padding-left: 16px;
  flex-direction: column;
  align-items: flex-start;
  border-left: 6px solid #FFF;
  margin: 40px 20px;
}
@media (min-width: 500px) {
  .p-slider__heading {
    padding-left: 20px;
    width: calc(33.3333333333% - 120px);
    position: absolute;
    left: 60px;
    top: 100px;
    border-left: 8px solid #FFF;
    margin: 0;
  }
}
.p-slider__heading--rev {
  left: auto;
  right: 60px;
}
.p-slider__heading-jp {
  font-size: 3.2rem;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media (min-width: 500px) {
  .p-slider__heading-jp {
    font-size: 3.6rem;
  }
}
.p-slider__heading--en {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding-left: 8px;
}
@media (min-width: 500px) {
  .p-slider__heading--en {
    font-size: 1.6rem;
  }
}
.p-slider__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 500px) {
  .p-slider__item {
    flex-direction: row;
    gap: 0;
  }
}
@media (min-width: 500px) {
  .p-slider__item--rev {
    flex-direction: row-reverse;
  }
}
.p-slider__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
  flex: 1 0 0;
  align-self: stretch;
  padding: 0 20px;
}
@media (min-width: 500px) {
  .p-slider__text {
    width: 33.3333333333%;
    padding: 100px 60px 160px;
  }
}
@media (min-width: 500px) {
  .p-slider__media {
    width: 66.6666666667%;
  }
}
.p-slider__title {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin: 0;
}
.p-slider__utility {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
@media (min-width: 500px) {
  .p-slider__utility {
    width: calc(33.3333333333% - 120px);
    position: absolute;
    left: 60px;
    bottom: 80px;
    padding: 0;
  }
}
.p-slider__utility--rev {
  left: auto;
  right: 60px;
}
.p-slider__ctrl {
  display: flex;
  gap: 4px;
}
.p-slider__prev, .p-slider__next {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.p-slider__prev::after, .p-slider__next::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
.p-slider__prev {
  padding-left: 6px;
}
.p-slider__prev::after {
  transform: rotate(-45deg);
}
.p-slider__next {
  padding-right: 6px;
}
.p-slider__next::after {
  transform: rotate(135deg);
}
.p-slider__counter {
  font-size: 2rem;
}
@media (min-width: 500px) {
  .p-slider__counter {
    font-size: 2.4rem;
  }
}

/*///// SLIDER /////*/
.js-fadeSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.js-fadeSlider .p-slider__track {
  position: relative;
}

/* フェード用：重ねる */
.js-fadeSlider .p-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fade-duration, 350ms) ease;
}

/* アクティブだけ表示＆高さ確保 */
.js-fadeSlider .p-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/*///// CEREMONIES /////*/
.p-ceremonies {
  background: #F5F8FA;
  padding: 80px 0;
}
@media (min-width: 500px) {
  .p-ceremonies {
    padding: 120px 0;
  }
}
.p-ceremonies__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.p-ceremonies__heading {
  display: flex;
  padding-left: 20px;
  flex-direction: column;
  align-items: flex-start;
  border-left: 6px solid #6198B9;
  margin: 0 0 40px 20px;
}
@media (min-width: 500px) {
  .p-ceremonies__heading {
    padding-left: 24px;
    position: absolute;
    top: 40px;
    left: 0;
    border-left: 8px solid #6198B9;
    margin: 0;
  }
}
.p-ceremonies__heading-jp {
  font-size: 3.6rem;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media (min-width: 500px) {
  .p-ceremonies__heading-jp {
    font-size: 4.8rem;
  }
}
.p-ceremonies__heading--en {
  color: #6198B9;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding-left: 8px;
}
@media (min-width: 500px) {
  .p-ceremonies__heading--en {
    font-size: 1.6rem;
  }
}

.schedule-pageHead {
  background-image: url(../images/schedule/ttl-bg.jpg);
}
.schedule-daily_list {
  max-width: 90%;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(90deg, transparent 29px, #6198B9 29px, #6198B9 31px, transparent 31px);
}
@media (min-width: 500px) {
  .schedule-daily_list {
    max-width: 1200px;
    background: linear-gradient(90deg, transparent calc(50% - 1px), #6198B9 calc(50% - 1px), #6198B9 calc(50% + 1px), transparent calc(50% + 1px));
  }
}
@media (min-width: 500px) {
  .schedule-daily_img {
    width: calc(50% - 57px);
  }
}
.schedule-daily_img._01 {
  padding: 0 80px 30px;
}
@media (min-width: 500px) {
  .schedule-daily_img._01 {
    float: left;
    padding: 0 100px 60px;
  }
}
.schedule-daily_img._02 {
  padding: 0 80px;
}
@media (min-width: 500px) {
  .schedule-daily_img._02 {
    float: right;
    padding: 0 100px;
  }
}
.schedule-daily_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (min-width: 500px) {
  .schedule-daily_item {
    width: 50%;
    margin-bottom: 80px;
  }
}
.schedule-daily_item:last-child {
  margin-bottom: 0;
}
.schedule-daily_item ._clock {
  color: #6198B9;
  display: flex;
  width: 60px;
  height: 60px;
  padding-top: 4px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #6198B9;
  background: #FFF;
  z-index: 10;
}
@media (min-width: 500px) {
  .schedule-daily_item ._clock {
    width: 100px;
    height: 100px;
  }
}
.schedule-daily_item ._clock ._inner {
  display: flex;
  align-items: flex-start;
}
.schedule-daily_item ._clock ._month {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media (min-width: 500px) {
  .schedule-daily_item ._clock ._month {
    font-size: 2.8rem;
  }
}
.schedule-daily_item ._clock ._day {
  font-size: 2.4rem;
}
@media (min-width: 500px) {
  .schedule-daily_item ._clock ._day {
    font-size: 3.6rem;
  }
}
.schedule-daily_item ._img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #6198B9;
}
@media (min-width: 500px) {
  .schedule-daily_item ._img img {
    aspect-ratio: 510/340;
  }
}
@media (min-width: 500px) {
  .schedule-daily_item:nth-child(odd) {
    float: right;
  }
}
@media (min-width: 500px) {
  .schedule-daily_item:nth-child(odd) ._clock {
    margin-left: -50px;
  }
}
@media (min-width: 500px) {
  .schedule-daily_item:nth-child(even) {
    float: left;
    flex-direction: row-reverse;
  }
}
@media (min-width: 500px) {
  .schedule-daily_item:nth-child(even) ._content::before {
    left: auto;
    right: -100px;
  }
}
@media (min-width: 500px) {
  .schedule-daily_item:nth-child(even) ._clock {
    margin-right: -50px;
  }
}
@media (min-width: 500px) {
  .schedule-daily_item:nth-child(2) {
    margin-top: 320px;
  }
}
.schedule-daily_item ._content {
  position: relative;
  width: calc(100% - 80px);
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 500px) {
  .schedule-daily_item ._content {
    width: calc(100% - 100px);
    gap: 20px;
  }
}
.schedule-daily_item ._content::before {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #6198B9;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: -100px;
}
.schedule-daily_item ._content:first-child {
  margin-top: -240px;
}
.schedule-daily_item ._content ._time {
  position: absolute;
  top: -16px;
  left: 20px;
  display: block;
  height: 32px;
  line-height: 32px;
  font-weight: 700;
  padding: 0 30px;
  color: #fff;
  background-color: #6198B9;
  border-radius: 18px;
}
.schedule-daily_item ._content ._hdg {
  color: #6198B9;
  font-size: 2.4rem;
  text-align: center;
  margin: 0;
}
@media (min-width: 500px) {
  .schedule-daily_item ._content ._hdg {
    font-size: 3.2rem;
  }
}
.schedule-event_list {
  list-style-type: none;
  margin-left: 0;
}
.schedule-event_item:nth-child(odd) {
  background-color: #fff;
}
.schedule-event_item ._container {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.schedule-event_item ._month {
  width: 50px;
}
@media (min-width: 500px) {
  .schedule-event_item ._month {
    width: 84px;
  }
}
.schedule-event_item ._content {
  width: calc(100% - 100px);
  padding: 30px 0;
}
@media (min-width: 500px) {
  .schedule-event_item ._content {
    width: calc(100% - 120px);
    padding: 60px 0;
  }
}
@media (min-width: 500px) {
  .schedule-event_item ._block {
    display: flex;
    justify-content: space-between;
  }
}
.schedule-event_item ._block:not(:last-child) {
  margin-bottom: 40px;
}
.schedule-event_item ._block._rev {
  flex-direction: row-reverse;
}
.schedule-event_item ._text {
  position: relative;
}
@media (max-width: 500px) {
  .schedule-event_item ._text {
    margin-bottom: 20px;
  }
}
@media (min-width: 500px) {
  .schedule-event_item ._text {
    width: 52.8301886792%;
  }
}
.schedule-event_item ._hdg {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  background: linear-gradient(transparent 60%, #f6ddae 60%);
  margin-bottom: 1em;
}
@media (min-width: 500px) {
  .schedule-event_item ._hdg {
    font-size: 2.4rem;
  }
}
.schedule-event_item ._hdg._sub {
  font-size: 1.4rem;
  margin-top: 2em;
}
@media (min-width: 500px) {
  .schedule-event_item ._hdg._sub {
    font-size: 1.8rem;
  }
}
.schedule-event_item ._desc {
  margin-bottom: 1em;
}
.schedule-event_item ._list {
  list-style-type: none;
  margin-left: 0;
}
.schedule-event_item ._item {
  margin-bottom: 0.5em;
}
.schedule-event_item ._item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #6198B9;
  border-radius: 4px;
  margin: 0 8px 0 4px;
}
.schedule-event_item ._illus {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 500px) {
  .schedule-event_item ._illus {
    transform: scale(0.5);
    transform-origin: right bottom;
  }
}
@media (min-width: 500px) {
  .schedule-event_item ._img {
    width: 44.3396226415%;
  }
}

/*///// PROCESSION /////*/
.p-carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.p-carousel__item {
  flex-shrink: 0;
  display: flex;
  animation: loop-scroll 320s linear infinite;
}
.p-carousel__item img {
  width: 500px;
}
@media (min-width: 500px) {
  .p-carousel__item img {
    width: 1000px;
  }
}

@keyframes loop-scroll {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
/*///// ROUTEMAP /////*/
.p-routemap {
  display: flex;
  padding: 80px 0 20px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 500px) {
  .p-routemap {
    padding: 120px 0;
  }
}
.p-routemap__inner {
  display: flex;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.p-routemap__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
}
.p-routemap__heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  background: #6198B9;
}
@media (min-width: 500px) {
  .p-routemap__heading::after {
    width: 80px;
    height: 8px;
  }
}
.p-routemap__heading-jp {
  font-size: 3.6rem;
}
@media (min-width: 500px) {
  .p-routemap__heading-jp {
    font-size: 4.8rem;
  }
}
.p-routemap__heading-en {
  color: #6198B9;
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .p-routemap__heading-en {
    font-size: 1.6rem;
  }
}
.p-routemap__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.p-routemap__desc {
  text-align: center;
}
.p-routemap__link a {
  color: #6198B9;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 500px) {
  .p-routemap__link a {
    font-size: 2rem;
  }
}
.p-routemap__link a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #6198B9;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-routemap__link a::after {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background: #6198B9;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(45deg);
  transform-origin: right top;
}
.p-routemap__link-main {
  display: block;
}
.p-routemap__link-sub {
  display: block;
  font-size: 1.2rem;
}
@media (min-width: 500px) {
  .p-routemap__link-sub {
    font-size: 1.4rem;
  }
}

/*///// COMMEMORATIVE /////*/
.p-commemorative {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
}
@media (min-width: 500px) {
  .p-commemorative {
    padding: 120px 0;
  }
}
.p-commemorative__inner {
  display: flex;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.p-commemorative__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 500px) {
  .p-commemorative__heading {
    font-size: 3.6rem;
  }
}
.p-commemorative__heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  background: #B5A77F;
}
@media (min-width: 500px) {
  .p-commemorative__heading::after {
    width: 80px;
    height: 8px;
  }
}
.p-commemorative__desc {
  text-align: center;
}
.p-commemorative__box {
  display: flex;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.p-commemorative__subheading {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  align-self: stretch;
  margin-bottom: 1em;
}
.p-commemorative__subheading::before, .p-commemorative__subheading::after {
  content: "";
  display: block;
  height: 2px;
  flex: 1 0 0;
  background: #D9D9D9;
}
.p-commemorative__list {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px 10px;
  align-self: stretch;
  flex-wrap: wrap;
}
@media (min-width: 500px) {
  .p-commemorative__list {
    gap: 30px;
  }
}
.p-commemorative__item {
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 500px) {
  .p-commemorative__item {
    width: calc(33.3333333333% - 20px);
    gap: 20px;
  }
}
.p-commemorative__name {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin: 0;
}
@media (min-width: 500px) {
  .p-commemorative__name {
    font-size: 1.8rem;
  }
}

.p-links {
  display: flex;
  padding: 40px 20px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--Color-BG-Blue, #F5F8FA);
}
@media (min-width: 500px) {
  .p-links {
    padding: 60px 20px;
  }
}
.p-links__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 500px) {
  .p-links__inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
  }
}
.p-links__heading {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
@media (min-width: 500px) {
  .p-links__heading {
    font-size: 3.2rem;
  }
}
.p-links__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 500px) {
  .p-links__list {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.p-links__item {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 500px) {
  .p-links__item {
    font-size: 2rem;
    gap: 20px;
  }
}
.p-links__item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #6198B9;
}
@media (min-width: 500px) {
  .p-links__item::before {
    content: none;
  }
}
@media (min-width: 500px) {
  .p-links__item:not(:last-child)::after {
    content: "/";
  }
}

.l-footer {
  display: flex;
  padding-bottom: 20px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--Color-BG-Blue, #F5F8FA);
  border-bottom: 4px solid #2F7096;
}
.l-footer__copyright {
  color: #666;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

/*///// UTILITY /////*/
@media (min-width: 500px) {
  .u-only-sp {
    display: none;
  }
}

.u-only-pc {
  display: none;
}
@media (min-width: 500px) {
  .u-only-pc {
    display: contents;
  }
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*///// JS /////*/
.js-fadein {
  opacity: 0;
  transition: opacity 2s ease;
}

.js-fadein.is-appear {
  opacity: 1;
}

.js-slideup {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
  transition: transform 1s ease-out, opacity 1.6s ease-out;
}

.js-slideup.is-appear {
  opacity: 1;
  transform: translateY(0);
}

.js-image-clip img {
  transform: scale(1.2);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: transform 2s ease-out, clip-path 1.6s cubic-bezier(0.2, 1, 0.8, 1);
}

.js-image-clip.is-appear img {
  transform: scale(1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.js-split-text-up .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: all 1s ease-out;
}

.js-split-text-up.is-appear .char {
  opacity: 1;
  transform: translateY(0);
}

.js-heading-jp-anim .char {
  display: inline-block;
  opacity: 0;
  transition: all 1s ease-out;
  transform: translateX(100%);
}
@media (min-width: 500px) {
  .js-heading-jp-anim .char {
    transform: translateX(0);
    transform: translateY(100%);
  }
}

.js-heading-jp-anim.is-appear .char {
  opacity: 1;
  transform: translateX(0);
}
@media (min-width: 500px) {
  .js-heading-jp-anim.is-appear .char {
    transform: translateY(0);
  }
}

.js-heading-en-anim .char {
  display: inline-block;
  opacity: 0;
  transform: translateX(200%);
  transition: all 1s ease-out;
}

.js-heading-en-anim.is-appear .char {
  opacity: 1;
  transform: translateX(0);
}

.js-heading-jp-anim-02 .char {
  display: inline-block;
  opacity: 0;
  transition: all 1s ease-out;
  transform: translateX(100%);
}

.js-heading-jp-anim-02.is-appear .char {
  opacity: 1;
  transform: translateX(0);
}

.js-heading-en-anim-02 .char {
  display: inline-block;
  opacity: 0;
  transform: translateX(200%);
  transition: all 1s ease-out;
}

.js-heading-en-anim-02.is-appear .char {
  opacity: 1;
  transform: translateX(0);
}/*# sourceMappingURL=shikinen.css.map */