@charset "UTF-8";
.open-sans {
  font-family: "Open Sans", sans-serif;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/*
===============================================================================
共通部分
===============================================================================
*/
html {
  background-color: #f4efe9;
  width: 100%;
}

body {
  display: block;
}

body #wrapaer {
  display: block;
  background-color: #fff;
  width: 100%;
  height: auto;
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body #wrapaer {
    overflow-x: hidden;
  }
}

/*
===============================================================================
header
===============================================================================
*/
header {
  box-shadow: 0px 8px 8px -6px rgba(0, 0, 0, 0.1);
}
header:before {
  content: "";
  display: block;
  background-color: #f4efe9;
  height: 20px;
  border-bottom: #f44a01 solid 2px;
}
header .header-inner {
  display: flex;
  align-items: center;
  width: 90%;
  height: 70px;
  margin: 0 auto;
  background-color: #fff;
}
header .header-inner .logo {
  display: block;
  width: 135px;
}
header .header-inner .logo img {
  display: block;
  width: 100%;
  height: auto;
}
header .header-inner .site-title {
  font-size: 1.1875rem;
  font-size: clamp(1.05em, 1.130952381vw, 1.1875rem);
  color: #0d007b;
  font-weight: bold;
  margin-left: 1em;
}

/*
===============================================================================
footer
===============================================================================
*/
footer {
  display: block;
  margin-top: 80px;
}
footer .copy {
  display: block;
  text-align: center;
  font-size: 0.8em;
  padding: 1em 0;
}

/*
===============================================================================
TOP contents
===============================================================================
*/
#home .top-section {
  width: 90%;
  margin: 0 auto 80px;
}
#home .con-title {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
#home .con-title .en {
  font-size: 3rem;
  font-size: clamp(2.5em, 2.8571428571vw, 3rem);
  font-weight: bold;
  color: #e85e47;
  font-family: "Open Sans", sans-serif;
}
#home .con-title .title {
  font-feature-settings: "palt";
  font-size: 0.8rem;
}
@media screen and (max-width: 768px) {
  #home .con-title .title {
    font-size: 0.88em;
  }
}

#home #main-mv {
  text-align: center;
  margin: 0 auto 100px;
}
#home #main-mv #mv-img {
  display: block;
  width: 100%;
  max-width: 620px;
  margin: 40px auto 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 2s ease;
}
#home #main-mv #mv-img.show {
  opacity: 1;
  transform: scale(1);
}
#home #main-mv #mv-img img {
  display: block;
  width: 100%;
}
#home #main-mv .mv-title {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
#home #main-mv .mv-title img {
  width: 100%;
  display: block;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}
#home #main-mv .mv-title img.show {
  animation: revealFromLeft 1.2s ease forwards;
}

@keyframes revealFromLeft {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
#home #home-caption {
  text-align: center;
  position: relative;
  margin-bottom: 200px;
}
#home #home-caption > .text {
  position: relative;
  z-index: 9;
}
#home #home-caption .declaration {
  display: block;
  margin-bottom: 150px;
  position: relative;
}
#home #home-caption .declaration:before {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  margin: 20px auto;
  background-color: #d4d4d4;
}
#home #home-caption .declaration .declaration_title {
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  font-size: 2.1875rem;
  font-size: clamp(1.55em, 2.0833333333vw, 2.1875rem);
  font-weight: 800;
  display: block;
  margin-top: 0.5em;
  position: relative;
}
#home #home-caption .declaration:after {
  content: "";
  display: block;
  background: url(image/text-anniversary.png) no-repeat center center/100% auto;
  width: 50%;
  height: auto;
  aspect-ratio: 750/220;
  position: absolute;
  right: -5%;
  bottom: -60%;
}
@media screen and (max-width: 768px) {
  #home #home-caption .declaration:after {
    width: 70%;
    right: 15%;
    bottom: -55%;
  }
}
#home #home-caption .confetti01,
#home #home-caption .confetti02 {
  position: absolute;
  top: -25%;
  z-index: 1;
  opacity: 0;
}
#home #home-caption .confetti01 img,
#home #home-caption .confetti02 img {
  display: block;
  width: 100%;
  height: auto;
}
#home #home-caption .confetti01 {
  width: 40%;
  left: -180px;
}
#home #home-caption .confetti02 {
  width: 40%;
  right: -130px;
}
#home #home-caption .confetti01.show {
  animation: crackerLeft 1s cubic-bezier(0.2, 1.4, 0.4, 1) forwards;
}
#home #home-caption .confetti02.show {
  animation: crackerRight 1s cubic-bezier(0.2, 1.4, 0.4, 1) forwards;
}

/* 左クラッカー */
@keyframes crackerLeft {
  0% {
    opacity: 0;
    transform: translate(180px, 120px) rotate(35deg) scale(0.3);
  }
  60% {
    opacity: 1;
    transform: translate(-40px, -20px) rotate(-8deg) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}
/* 右クラッカー */
@keyframes crackerRight {
  0% {
    opacity: 0;
    transform: translate(-180px, 120px) rotate(-35deg) scale(0.3);
  }
  60% {
    opacity: 1;
    transform: translate(40px, -20px) rotate(8deg) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}
@media screen and (max-width: 768px) {
  #home #home-caption .confetti01 {
    width: 25%;
    top: -4rem;
    left: -5%;
  }
  #home #home-caption .confetti02 {
    width: 25%;
    top: -4rem;
    right: -5%;
  }
}
#home #news .news-wrap {
  width: 90%;
  margin: 0 auto 40px;
}
#home #news .news-wrap .slick-arrow {
  width: 30px;
  height: 50px;
}
#home #news .news-wrap .slick-arrow:before {
  display: none;
}
#home #news .news-wrap .slick-arrow {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
#home #news .news-wrap .slick-arrow.slick-prev {
  background-image: url(image/arrows-right.png);
  left: -35px;
}
#home #news .news-wrap .slick-arrow.slick-next {
  background-image: url(image/arrows-left.png);
  right: -35px;
}
@media screen and (max-width: 768px) {
  #home #news .news-wrap .slick-arrow {
    width: 20px;
  }
}
#home #news .news-wrap .news-box {
  display: block;
  margin: 0 10px;
}
#home #news .news-wrap .news-box figure {
  display: block;
  width: 100%;
  aspect-ratio: 293/180;
  overflow: hidden;
  border: #0d308c 2px solid;
}
#home #news .news-wrap .news-box figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#home #news .news-wrap .news-box .text {
  display: block;
  padding-top: 1em;
}
#home #news .news-wrap .news-box .text .tit {
  display: block;
  color: #0d308c;
  font-size: 1rem;
  line-height: 1.4;
  padding-bottom: 0.2em;
}
#home #news .news-wrap .news-box .text p {
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: justify;
}
#home #news .news-wrap .news-box .text::after {
  content: "›";
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-top: 2px;
  color: #fff;
  font-size: 1.5em;
  background-color: #0d308c;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 18px;
}
#home #news .banner {
  margin-top: 60px;
  display: block;
}

.goods-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  gap: 20px 20px;
}
.goods-list li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .goods-list li {
    width: calc((100% - 20px) / 2);
  }
}
.goods-list li figure {
  display: block;
  border: #ddd solid 1px;
}

.more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0d308c;
  border-radius: 50px;
  width: 240px;
  padding: 0.8em 2em;
}
.more-btn p {
  text-align: center;
  color: #fff;
  text-align: center;
  padding-right: 1em;
  position: relative;
}
.more-btn p::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#home #news .more-btn {
  margin: 0 auto;
}

/*
===============================================================================
下層
===============================================================================
*/
#page header {
  margin-bottom: 40px;
}
#page #container {
  min-height: 65vh;
}
#page .section-box {
  width: 90%;
  margin: 0 auto 80px;
}
#page .con-title {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
#page .con-title .en {
  font-size: 3rem;
  font-size: clamp(2.5em, 2.8571428571vw, 3rem);
  font-weight: bold;
  color: #e85e47;
  font-family: "Open Sans", sans-serif;
}
#page .con-title .title {
  font-feature-settings: "palt";
  font-size: 0.8rem;
}
@media screen and (max-width: 768px) {
  #page .con-title .title {
    font-size: 0.88em;
  }
}
#page .title-layout01 {
  display: block;
  font-size: 1.5em;
  border-bottom: #e85e47 solid 1px;
  font-weight: bold;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}

/*
===============================================================================
おしらせ／イベント情報
===============================================================================
*/
#page .news-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  margin: 0 auto;
}
#page .news-wrap .news-box {
  display: block;
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  #page .news-wrap .news-box {
    width: calc((100% - 20px) / 2);
  }
}
#page .news-wrap .news-box figure {
  display: block;
  width: 100%;
  aspect-ratio: 293/180;
  overflow: hidden;
  border: #0d308c 2px solid;
}
#page .news-wrap .news-box figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#page .news-wrap .news-box .text {
  display: block;
  padding-top: 1em;
}
#page .news-wrap .news-box .text .tit {
  display: block;
  color: #0d308c;
  font-size: 1rem;
  line-height: 1.4;
  padding-bottom: 0.2em;
}
#page .news-wrap .news-box .text p {
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: justify;
}
#page .news-wrap .news-box .text::after {
  content: "›";
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-top: 2px;
  color: #fff;
  font-size: 1.5em;
  background-color: #0d308c;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 18px;
}

/*
===============================================================================
ポスター
===============================================================================
*/
.poster-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
}
.poster-gallery .box {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .poster-gallery .box {
    width: calc((100% - 20px) / 2);
  }
}
.poster-gallery .box figure {
  border: #ddd solid 1px;
}
.poster-gallery .box .text {
  font-size: 0.9em;
  text-align: center;
  margin-top: 0.3em;
  line-height: 1.6;
}
.poster-gallery .box .text small {
  display: block;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.modal_bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal_content img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .modal_content {
    max-width: 80vw;
    max-height: 80vh;
  }
  .modal_content img {
    max-width: 80vw;
    max-height: 80vh;
  }
}
.modal_close {
  position: absolute;
  right: -10px;
  top: -45px;
  font-size: 32px;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/*
===============================================================================
poster Post
===============================================================================
*/
.poster-post .poster-img {
  border: #ddd solid 1px;
  margin-bottom: 20px;
}
.poster-post .poster-caption {
  text-align: center;
  line-height: 1.8;
}
.poster-post .poster-caption > span {
  display: block;
}
.poster-post .poster-caption > span.p-name {
  font-size: 1.5em;
}

/*
===============================================================================
news Post
===============================================================================
*/
#container .post-box {
  display: table;
  width: 100%;
  margin: 0 auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

#container .post-box img,
#container .post-box iframe {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}

#container .post-box img.aligncenter {
  display: block;
  text-align: center;
  margin: 10px auto;
}

#container .post-box p {
  margin: 20px 0;
}

#container .post-box a {
  text-decoration: underline;
  color: #00317F;
}

#container .post-box h1,
#container .post-box h2,
#container .post-box h3,
#container .post-box h4,
#container .post-box h5,
#container .post-box h6 {
  font-style: auto;
  font-weight: auto;
  line-height: 140%;
}

#news #container .time {
  text-align: right;
  display: block;
  font-size: 14px;
  margin-top: -20px;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 40px;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 0.8em;
  line-height: 100%;
  font-size: 0.9em;
  border: 1px solid #0d308c;
}

.pagination .page-numbers.current {
  background: #0d308c;
  color: #fff;
}

.pagination .page-numbers.prev, .pagination .page-numbers.next {
  font-weight: bold;
}

.single-nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: #0d308c solid 1px;
}

.single-nav a {
  display: inline-block;
  padding: 0.5em 0.8em;
  line-height: 100%;
  margin: 0 0.5em;
  border: 1px solid #0d308c;
  background-color: #0d308c;
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
  transition: 0.3s;
}

.single-nav a:hover {
  background: #f5f5f5;
  color: #0d308c;
}