/* ==========================
   RESET
========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'LINE Seed Sans JP', sans-serif;
  overflow-x: hidden;
  background: #fff;
  color: #333;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}


/* ==========================
   PC / SP
========================== */

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}


/* ==========================
   HEADER
========================== */

.header {
  background: #fff;
  padding: 10px 0;
}

.header__logo {
  width: 238px;
  margin: 0 auto;
}


/* ==========================
   FV
========================== */

.fv {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}


/* PC */

.fv-pc {
  display: flex;
  width: 100%;
  align-items: flex-start;
}

.fv-pc__left {
  position: relative;
  width: calc(859 / 1920 * 100%);
  flex-shrink: 0;
}

.fv-pc__right {
  width: calc(1061 / 1920 * 100%);
  flex-shrink: 0;
}

.fv-pc__image {
  display: block;
  width: 100%;
  height: auto;
}


/* PC BUTTON */

.fv-buttons--pc {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;

  width: 100%;
  z-index: 10;
}

.fv-buttons--pc a {
  display: block;
  width: 139px;
  flex-shrink: 0;
  transition: opacity .3s;
}

.fv-buttons--pc a:hover {
  opacity: .8;
}

.fv-buttons--pc img {
  width: 139px;
  height: auto;
}


/* SP */

.fv-sp {
  display: none;
}


/* ==========================
   EVENT SLIDER
========================== */

.event-slider {
  position: relative;

  display: flex;
  align-items: stretch;

  width: 100%;

  overflow: hidden;

  background: #ec8970;
}


/* 左固定テキスト */

.event-slider__lead {
  position: relative;
  z-index: 20;

  flex-shrink: 0;

  width: 220px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 20px;

  background: #ec8970;

  color: #fff;
  text-align: center;
}

.event-slider__lead p {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}


/* Swiper */

.eventSwiper {
  width: calc(100% - 220px);

  padding: 30px 0;

  overflow: visible;
}

.eventSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.eventSwiper .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}



/* ==========================
   EVENT CARD
========================== */

.event-card {
  position: relative;

  display: flex;
  align-items: center;

  width: 380px;
  min-height: 120px;

  padding: 12px;

  border-radius: 12px;

  color: #fff;

  box-shadow: 5px 6px 0 rgba(62, 56, 53, .65);
}


/* COLOR */

.event-card--orange {
  background: #ea5c2f;
}

.event-card--blue {
  background: #6ea6c4;
}

.event-card--yellow {
  background: #dfa753;
}

.event-card--green {
  background: #3c8778;
}


/* THUMB */

.event-card__thumb {
  flex-shrink: 0;

  width: 80px;
  height: 80px;

  overflow: hidden;

  border-radius: 8px;
  background: #fff;
}

.event-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}


/* TEXT */

.event-card__body {
  position: relative;

  flex: 1;

  padding-left: 16px;
  padding-right: 6px;
}

.event-card__title {
  margin: 0 0 5px;

  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.event-card__text {
  margin: 0;

  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.event-card__time {
  position: absolute;

  top: -5px;
  right: 0;

  margin: 0;

  font-size: 15px;
  font-weight: 700;
}


/* ==========================
   ABOUT
========================== */

.about {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.about picture,
.about img {
  display: block;
  width: 100%;
}

.about img {
  height: auto;
}


/* ==========================
   TICKER
========================== */

.ticker {
  width: 100%;

  overflow: hidden;

  background: #3c8778;
}

.ticker__wrap {
  display: flex;

  width: max-content;

  animation: ticker 60s linear infinite;
}

.ticker__content {
  display: flex;
  align-items: center;

  flex-shrink: 0;

  white-space: nowrap;

  padding: 18px 0;
}

.ticker__content span {
  margin-right: 60px;

  color: #fff;

  font-size: 28px;
  font-weight: 700;
}

@keyframes ticker {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}


/* ==========================
   PROGRAM SECTION
========================== */

.program-section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}


/* ==========================
   PROGRAM HEADING
========================== */

.program-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 60px 70px;

  color: #fff;
  text-align: center;
}

.program-section--prayer .program-heading {
  background: #ca6c35;
}

.program-section--goshuin .program-heading {
  background: #6ea6c4;
}

.program-section--gift .program-heading {
  background: #3c8778;
}


.program-heading__en {
  margin-bottom: 8px;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;

  letter-spacing: .03em;
}

.program-heading__title {
  margin-bottom: 26px;

  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
}

.program-heading__text {
  width: 100%;
  max-width: 540px;

  margin: 0 auto;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;

  text-align: left;
}


/* ==========================
   PROGRAM SWIPER
========================== */

.programSwiper {
  position: relative;

  width: 100%;

  padding-bottom: 50px;

  background: #fff;
}

.programSwiper .swiper-wrapper {
  align-items: stretch;
}

.programSwiper .swiper-slide {
  height: auto;
}


/* ==========================
   PROGRAM CARD
========================== */

.program-card {
  width: 100%;
  height: 100%;

    background:#fff;
    border:1px solid #e6e6e6;
}


/* VISUAL */

.program-card__visual {
  position: relative;

  width: 100%;
  height: 360px;

  background:
    #bbb
    url("../images/common/noimage.jpg")
    center center / cover
    no-repeat;
}
.program-card__visual--enmusubi {
  background-image: url("../images/common/enmusubi-kigan.jpg");
}

.program-card__visual--enmusubi-tokubetu {
  background-image: url("../images/common/enmusubi-tokubetu-kigan.jpg");
}

.program-card__visual--goshuin1 {
  background-image: url("../images/common/goshuin1.jpg");
}

/* 特大守『因幡の白うさぎ』 */
.program-card__visual--usagi {
  background-image: url("../images/common/usagi.jpg");
}


/* NUMBER */

.program-card__number{
    position:absolute;
    top:20px;
    right:20px;

    width:96px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;

    color:#fff;
    font-size:16px;
    font-weight:700;
}
.program-card__number--blue{
    background-image:url("../images/common/program1_back.png");
}

.program-card__number--yellow{
    background-image:url("../images/common/program2_back.png");
}

.program-card__number--orange{
    background-image:url("../images/common/program3_back.png");
}



/* ==========================
   PROGRAM BODY
========================== */

.program-card__body {
  width: 100%;
  max-width: 680px;

  margin: 0 auto;

  padding: 26px 32px 30px;

  color: #333;
}

.program-card__title {
  margin-bottom: 12px;

  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;

  text-align: center;
}

.program-card__text {
  margin-bottom: 14px;

  font-size: 13px;
  line-height: 1.7;
}

.program-card__info {
  font-size: 13px;
  line-height: 1.6;
}

.program-card__label {
  margin-top: 10px;
  margin-bottom: 3px;

  font-weight: 700;
}

.program-card__note {
  margin-top: 10px;

  font-size: 11px;
  line-height: 1.6;
}


/* ==========================
   PROGRAM BUTTON
========================== */

.program-card__buttons {
  display: flex;

  gap: 10px;

  margin-top: 14px;
}

.program-card__button {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 38px;

  padding: 6px 10px;

  border-radius: 4px;

  font-size: 12px;
  font-weight: 700;

  text-align: center;
  text-decoration: none;

  transition: opacity .3s;
}

.program-card__button:hover {
  opacity: .8;
}

.program-card__button--fill {
  background: #ef8068;
  color: #fff;
}

.program-card__button--outline {
  border: 1px solid #ef8068;

  background: #fff;

  color: #ef8068;
}


/* ==========================
   PROGRAM PAGINATION
========================== */

.programSwiper .swiper-pagination {
  bottom: 15px !important;
}

.programSwiper .swiper-pagination-bullet {
  width: auto;
  height: auto;

  margin: 0 8px !important;

  background: none;

  color: #aaa;

  opacity: 1;

  font-size: 13px;
  font-weight: 700;
}

.programSwiper .swiper-pagination-bullet-active {
  color: #ef6b4b;
}


/* ==========================
   PROGRAM PC
========================== */

@media screen and (min-width: 768px) {

  .program-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: stretch;
  }


  /* 特別祈願 */

  .program-section--prayer .programSwiper {
    order: 1;
  }

  .program-section--prayer .program-heading {
    order: 2;
  }


  /* 限定御朱印 */

  .program-section--goshuin .program-heading {
    order: 1;
  }

  .program-section--goshuin .programSwiper {
    order: 2;
  }


  /* 授与品 */

  .program-section--gift .programSwiper {
    order: 1;
  }

  .program-section--gift .program-heading {
    order: 2;
  }


  /* 高さを左右で揃える */

  .program-heading,
  .programSwiper {
    height: 100%;
  }

}


/* ==========================
   FOOTER
========================== */

.footer {
  background: #e85c2f;
}

.footer picture,
.footer img {
  display: block;
  width: 100%;
}
.footer__logo {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 30px 5px 20px;

}

.footer__logo img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .footer__logo img {
    max-width: 260px;
  }
}
.footer__copyright {
  padding: 20px 10px 30px;

  background: #e85c2f;

  color: #fff;

  text-align: center;

  font-size: 12px;
  font-weight: 400;
}


/* ==========================
   SP
========================== */

@media screen and (max-width: 767px) {

  /* COMMON */

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }


  /* HEADER */

  .header {
    padding: 8px 0;
  }

  .header__logo {
    width: 180px;
  }


  /* ==========================
     FV
  ========================== */

  .fv-pc {
    display: none;
  }

  .fv-sp {
    display: block;

    width: 100%;
  }

  .fv-sp__image {
    display: block;

    width: 100%;
    height: auto;
  }

  .fv-sp__bottom {
    position: relative;
  }

  .fv-buttons--sp {
    position: absolute;

    left: 50%;
    bottom: 4%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    width: 92%;

    z-index: 10;
  }

  .fv-buttons--sp a {
    flex: 1;
    max-width: 139px;
  }

  .fv-buttons--sp img {
    display: block;

    width: 100%;
    height: auto;
  }


  /* ==========================
     EVENT
  ========================== */

  .event-slider__lead {
    position: relative;
    z-index: 30;

    width: 160px;
    padding: 0 20px;

    background: #ec8970;
  }

  .event-slider__lead p {
    font-size: 16px;
    line-height: 1.5;
  }

  .eventSwiper {
    position: relative;
    z-index: 1;

    width: calc(100% - 160px);
    padding: 30px 0;

    overflow: hidden;
  }

  .event-card {
    width: 300px;
    min-height: 100px;

    padding: 10px;

    border-radius: 9px;
  }

  .event-card__thumb {
    width: 70px;
    height: 70px;

    border-radius: 6px;
  }

  .event-card__body {
    padding-left: 12px;
  }

  .event-card__title {
    font-size: 16px;
  }

  .event-card__text {
    font-size: 12px;
  }

  .event-card__time {
    font-size: 12px;
  }


  /* ==========================
     TICKER
  ========================== */

  .ticker__content {
    padding: 12px 0;
  }

  .ticker__content span {
    margin-right: 36px;

    font-size: 16px;
  }


  /* ==========================
     PROGRAM
  ========================== */

  .program-section {
    display: block;
  }

  .program-heading {
    min-height: 360px;

    padding: 60px 30px;
  }

  .program-heading__en {
    font-size: 15px;
  }

  .program-heading__title {
    margin-bottom: 26px;

    font-size: 24px;
  }

  .program-heading__text {
    max-width: 100%;

    font-size: 13px;
    line-height: 1.9;
  }


  /* VISUAL */

  .program-card__visual {
    height: 355px;
  }

  .program-card__number {
    top: 30px;
    right: 20px;

    width: 115px;
    height: 50px;

    font-size: 17px;
  }


  /* BODY */

  .program-card__body {
    max-width: none;

    padding: 32px 40px 44px;
  }

  .program-card__title {
    margin-bottom: 14px;

    font-size: 18px;
  }

  .program-card__text {
    margin-bottom: 18px;

    font-size: 13px;
    line-height: 1.8;
  }

  .program-card__info {
    font-size: 13px;
    line-height: 1.7;
  }

  .program-card__note {
    font-size: 11px;
  }


  /* BUTTON */

  .program-card__buttons {
    gap: 8px;

    margin-top: 16px;
  }

  .program-card__button {
    min-height: 40px;

    padding: 6px 8px;

    font-size: 11px;
  }


  /* PAGINATION */

  .programSwiper {
    padding-bottom: 65px;
  }

  .programSwiper .swiper-pagination {
    bottom: 20px !important;
  }


  /* ==========================
     FOOTER
  ========================== */

  .footer__copyright {
    padding: 16px 10px 24px;

    font-size: 10px;
    line-height: 1.6;
  }

}

@media screen and (min-width: 768px) {

  .programSwiper {
    padding-left: 0;
    padding-right: 0;
  }

  .programSwiper .swiper-slide {
    opacity: .35;
    transition: opacity .3s;
  }

  .programSwiper .swiper-slide-active {
    opacity: 1;
  }

}

/* ==========================
   PROGRAM SLIDER CONTROLS
========================== */

.program-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  z-index: 20;
}

.program-slider-controls .swiper-pagination {
  position: static !important;
  width: auto !important;

  display: flex;
  align-items: center;
  gap: 14px;
}

.program-slider-controls .swiper-pagination-bullet {
  margin: 0 !important;
}

.program-slider-arrow {
  position: static;

  width: 30px;
  height: 30px;

  margin: 0;

  border: 1px solid #ef6b4b;
  border-radius: 50%;

  background: #fff;

  color: #ef6b4b;

  cursor: pointer;
}

.program-slider-arrow::after {
  font-size: 12px;
  font-weight: 700;
}

.program-slider-controls .swiper-button-prev::after {
  content: '❮';
}

.program-slider-controls .swiper-button-next::after {
  content: '❯';
}

.program-slider-controls .swiper-button-prev::after,
.program-slider-controls .swiper-button-next::after {
  font-size: 18px;
  line-height: 1;
}

/* ==========================
   PROGRAM 追加要素
========================== */

.program-card__price {
  margin-bottom: 14px;

  font-size: 14px;
  font-weight: 700;

  text-align: center;
}

.program-card__subitem + .program-card__subitem {
  margin-top: 28px;
  padding-top: 28px;

  border-top: 1px solid #ddd;
}

.program-card__support-title {
  margin-bottom: 12px;

  font-size: 14px;
  font-weight: 700;

  text-align: center;

  color: #ef6b4b;
}

.program-card__support-info {
  margin-bottom: 16px;

  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;

  text-align: center;
}

.program-card__button--disabled {
  cursor: default;
  opacity: .5;
}


/* SP */

@media screen and (max-width: 767px) {

  .program-card__price {
    font-size: 13px;
  }

  .program-card__subitem + .program-card__subitem {
    margin-top: 22px;
    padding-top: 22px;
  }

  .program-card__support-title {
    font-size: 12px;
  }

  .program-card__support-info {
    font-size: 12px;
  }

}

/* ==========================
   ARTIST COLLABO
========================== */

.artist-collabo {
  width: 100%;
  background: #ffc85a;
  color: #b96d00;
}

.artist-collabo__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  box-sizing: border-box;
  text-align: center;
}


/* タイトル
-------------------------- */

.artist-collabo__title {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.artist-collabo__title span {
  display: block;
}


/* 本文
-------------------------- */

.artist-collabo__text {
  margin-top: 55px;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
}

.artist-collabo__text p {
  margin: 0;
}

.artist-collabo__text p + p {
  margin-top: 42px;
}

.artist-collabo__image {
  width: 100%;
  max-width: 600px;
  margin: 45px auto;
}

.artist-collabo__image img {
  display: block;
  width: 100%;
  height: auto;
}
/* ==========================
   SP
========================== */

@media screen and (max-width: 767px) {

  .artist-collabo__inner {
    padding: 65px 25px 70px;
  }

  .artist-collabo__title {
    font-size: 23px;
    line-height: 1.65;
    letter-spacing: 0;
  }

  .artist-collabo__title span {
    margin-bottom: 3px;
  }

  .artist-collabo__text {
    margin-top: 42px;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0;
  }

  .artist-collabo__text p + p {
    margin-top: 35px;
  }
  .artist-collabo__text p {
    text-align: left;
  }
  .artist-collabo__image {
    margin: 30px auto;
  }
}

/* ==========================
   INFORMATION
========================== */

.information{
    background:#f8e7cf;
    padding:80px 20px 100px;
}

.information__inner{
    max-width:900px;
    margin:0 auto;
}

.information__item{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:140px;

    margin-bottom:18px;

    background:#fff;

    color:#333;
    text-decoration:none;

    transition:.3s;
}

.information__item:hover{
    opacity:.75;
}

.information__item span{
    font-size:22px;
    font-weight:700;
    text-align:center;
}

.information__banner{
    margin-top:50px;
}

.information__banner img{
    display:block;
    width:100%;
    height:auto;
}

@media screen and (max-width:767px){

    .information{
        padding:50px 20px 70px;
    }

    .information__inner{
        max-width:260px;
    }

    .information__item{
        height:110px;
        margin-bottom:12px;
    }

    .information__item span{
        font-size:16px;
    }

    .information__banner{
        margin-top:28px;
    }

}

/* ==========================
   MOVIE
========================== */


.archive-movie{
  width:100%;
  max-width:500px;
  margin:0 auto;
}

.archive-movie video{
  display:block;
  width:100%;
  height:auto;
}


/* SP */

@media screen and (max-width:767px){


  .archive-movie{
    max-width:320px;
  }

}

/* ==========================
   ACCESS
========================== */

.access-section{
  background:#f8e7cf;
  padding:80px 20px;
}

.access-section__inner{
  width:100%;
  max-width:900px;
  margin:0 auto;
}

.access-section__title{
  margin-bottom:40px;
  text-align:center;
  font-size:32px;
  font-weight:700;
}

.access-info{
  margin-bottom:40px;
  padding:35px 40px;
  background:#fff;
  text-align:center;
}

.access-info__name{
  margin-bottom:18px;
  font-size:24px;
  font-weight:700;
}

.access-info__text{
  font-size:16px;
  line-height:1.9;
}

.access-info__text + .access-info__text{
  margin-top:14px;
}

.access-map iframe{
  display:block;
  width:100%;
  height:450px;
}

.access-map__button{
  display:block;
  width:100%;
  max-width:320px;
  margin:30px auto 0;
  padding:15px 20px;

  background:#333;
  color:#fff;

  text-align:center;
  text-decoration:none;
  font-weight:700;
}

@media screen and (max-width:767px){

  .access-section{
    padding:50px 20px;
  }

  .access-section__title{
    margin-bottom:25px;
    font-size:24px;
  }

  .access-info{
    margin-bottom:30px;
    padding:25px 20px;
  }

  .access-info__name{
    font-size:20px;
  }

  .access-info__text{
    font-size:14px;
  }

  .access-map iframe{
    height:350px;
  }

  .access-map__button{
    max-width:280px;
    margin-top:20px;
    font-size:14px;
  }

}

/* ==========================
   昨年度の様子
========================== */

.archive-section {
  width: 100%;
  padding: 80px 20px;
  background:#f8e7cf;
}

.archive-section__title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

.archive-movie {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.archive-movie video {
  display: block;
  width: 100%;
  height: auto;
}


/* SP */
@media screen and (max-width: 767px) {

  .archive-section {
    padding: 50px 20px;
  }

  .archive-section__title {
    margin-bottom: 25px;
    font-size: 22px;
  }

}