@charset "UTF-8";
/****************************
top > hero
******************************/
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 16px 20px;
  text-align: left;
}
.hero {
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
}
.hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: auto;
}
.hero-img__wrapper {
  position: relative;
  width: 100%;
  height: auto;
}
.hero-img__main-swiper {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.hero-img__main-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}
/* 鳥：常にふわふわ */
.hero-img__bird {
  position: absolute;
  top: 11%;
  left: -10%;
  width: 16%;
  z-index: 7;
  animation: floatBird 3s ease-in-out infinite;
}
/* クロス：止まりながらカクカク */
.hero-img__cross {
  position: absolute;
  bottom: -5%;
  right: 10%;
  width: 260px;
  z-index: 3;
  animation: crossSwingPause 3s steps(2, end) infinite;
}
/* カラー装飾 */
.hero-img__beige {
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 500px;
  z-index: 0;
}
.hero-img__orange {
  position: absolute;
  top: 11%;
  left: -100px;
  width: 340px;
  z-index: 5;
  transform: rotate(126deg);
}
.hero-img__green {
  position: absolute;
  top: 26%;
  left: -70px;
  width: 200px;
  z-index: 6;
  transform: rotate(10deg);
}
.hero-img__blue-wrapper {
  position: absolute;
  bottom: 0;
  left: -10%;
}
.hero-img__blue {
  width: 500px;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
  transform: rotate(-10deg);
}
/* ペイント：動いて止まって繰り返す */
.hero-img__paint {
  position: absolute;
  top: 50%;
  left: 0;
  width: 150px;
  z-index: 5;
  animation: swingPaintPause 3.8s steps(2, end) infinite;
}
/* 車：動いて止まって繰り返す */
.hero-img__car {
  position: absolute;
  bottom: 5%;
  left: -3%;
  width: 160px;
  z-index: 5;
  animation: swingCarPause 4s steps(2, end) infinite;
}
/* 木：それぞれ違う動き＋止まる */
.hero-img__tree1 {
  position: absolute;
  top: 30px;
  left: 22%;
  width: 200px;
  z-index: 6;
  animation: swingTree1Pause 3.5s steps(2, end) infinite;
}
.hero-img__tree2 {
  position: absolute;
  top: 10px;
  right: 110px;
  width: 110px;
  z-index: 5;
  animation: swingTree2Pause 4.2s steps(2, end) infinite;
}
.hero-img__tree3 {
  position: absolute;
  top: 80px;
  right: 50px;
  width: 60px;
  z-index: 5;
  animation: swingTree3Pause 3s steps(2, end) infinite;
}
.hero-img__tree4 {
  position: absolute;
  top: 100px;
  right: 90px;
  width: 60px;
  z-index: 6;
  animation: swingTree4Pause 4.6s steps(2, end) infinite;
}
/* テキスト */
.hero-text {
  position: absolute;
  z-index: 9;
  left: 8%;
  bottom: 5%;
  text-align: left;
}
.hero-text__catchphrase {
  filter: drop-shadow(2px 2px 0 rgba(255, 255, 255, 1));
}
.hero-text__title {
  font-size: var(--font_24);
  margin-top: 10px;
  line-height: 1.5;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 1);
}
@media (max-width: 1024px) {
  .hero-img__paint {
    display: none;
  }
  .hero-img__blue-wrapper {
    left: -14%;
  }
  /* テキスト */
  .hero-text {
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    width: 90%;
  }
}
@media (max-width: 768px) {
  /* 鳥 */
  .hero-img__bird {
    top: 12%;
    left: -8%;
    width: 30%;
  }
  /* クロス */
  .hero-img__cross {
    bottom: -8%;
    right: 10%;
    width: 160px;
  }
  /* ペイント */
  .hero-img__paint {
    display: block;
    top: 65%;
    left: 0;
    width: 32%;
  }
  /* 車 */
  .hero-img__car {
    bottom: 26%;
    left: -6%;
    width: 30%;
  }
  /* カラー装飾 */
  .hero-img__beige {
    bottom: -220px;
    right: -40%;
    width: 80%;
  }
  .hero-img__orange {
    top: 12%;
    left: -28%;
    width: 56%;
  }
  .hero-img__green {
    top: 26%;
    left: -22%;
    width: 36%;
  }
  .hero-img__blue-wrapper {
    left: -22%;
    bottom: 14%;
    width: 70%;
  }
  .hero-img__blue {
    width: 100%;
    bottom: 20%;
  }
  /* 木：それぞれ違う動き＋止まる */
  .hero-img__tree1 {
    top: 0;
    left: 30%;
    width: 50%;
  }
  .hero-img__tree2 {
    top: 37%;
    right: 6%;
    width: 30%;
  }
  .hero-img__tree3 {
    top: 48%;
    right: -15%;
    width: 20%;
  }
  .hero-img__tree4 {
    top: 53%;
    right: -3%;
    width: 25%;
  }
}
@media (max-width: 376px) {
  .hero-img__paint {
    display: none;
  }
}
/****************************
(アニメーション定義)
******************************/
/* 鳥：止まらずにふわふわ */
@keyframes floatBird {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/* クロス：カクカク＋止まる */
@keyframes crossSwingPause {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 車：カクカク＋止まる */
@keyframes swingCarPause {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  20% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 木々：個別に動いて止まる */
@keyframes swingTree1Pause {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(8deg);
  }
  20% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes swingTree2Pause {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-6deg);
  }
  20% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes swingTree3Pause {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(6deg);
  }
  20% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes swingTree4Pause {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-4deg);
  }
  20% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes swingPaintPause {
  0% {
    transform: rotate(0deg);
  }
  6% {
    transform: rotate(10deg);
  }
  12% {
    transform: rotate(0deg);
  }
  18% {
    transform: rotate(8deg);
  }
  24% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/****************************
top > about
******************************/
.about {
  padding-top: 60px;
}
.about-content {
  display: flex;
  column-gap: 60px;
  row-gap: 30px;
}
.about-text__block {
  width: 60%;
}

.about-catchphrase {
  font-size: var(--font_34);
  line-height: 1.5;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.about-text {
  margin-top: 10px;
}
@media (max-width: 1295px) {
  .about-content {
    flex-direction: column;
  }
  .about-text__block {
    width: 100%;
  }
  .about-image__block {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .about {
    padding-top: 0;
  }
}
@media (max-width: 420px) {
  .about-catchphrase {
    letter-spacing: -0.05em;
  }
}
/****************************
top > program
page > program
******************************/
.program {
  margin-top: 60px;
}
.program .inner {
  padding: 30px 0;
}
.c-center {
  background: var(--beige);
}
.c-top,
.c-under {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.c-top img,
.c-under img {
  display: block;
  width: 100%;
  height: auto;
}
.program-text {
  margin-top: 30px;
}
.c-title__program {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.program-btn {
  border: 2px solid var(--green);
  border-radius: 50px;
  padding: 10px 30px;
  color: var(--green);
  font-weight: bold;
  display: flex;
  align-items: center;
  column-gap: 20px;
  font-size: var(--font_20);
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 262px;
}
.program-btn:hover {
  background-color: var(--green);
  color: #fff;
}
.program-btn:hover .c-program__icon {
  filter: brightness(0) invert(1);
}
.program-btn__sp {
  display: none;
}
@media (max-width: 768px) {
  .program-btn__pc {
    display: none;
  }
  .program-btn__sp {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 30px;
  }
}
/****************************
page > hero
******************************/
.page-hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.page-hero__bg {
  width: 100%;
  height: auto;
  display: block;
}
.c-page-title {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--gray);
  z-index: 2;
  padding: 0 5%;
  width: 100%;
}
.hero-img__bicycle1 {
  position: absolute;
  z-index: 1;
  width: 100px;
  bottom: 5px;
  right: 25%;
  animation: swingTree4Pause 3.5s steps(2, end) infinite;
}
.hero-img__bicycle2 {
  position: absolute;
  z-index: 1;
  width: 100px;
  bottom: 5px;
  right: 12%;
  animation: swingTree4Pause 4s steps(2, end) infinite;
}
@media (max-width: 768px) {
  .hero-img__bicycle1,
  .hero-img__bicycle2 {
    width: 60px;
  }
  .hero-img__bicycle2 {
    right: 5%;
  }
}
/****************************
page > important notes
******************************/
.vote {
  margin-top: 100px;
}
.vote-text {
  margin-bottom: 30px;
}
.scroll-box {
  width: 100%;
  height: 805px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2rem;
  background: #f9f9f9;
  border: 1px solid #aeaeae;
  line-height: 1.6;
  word-wrap: break-word;
  text-align: left;
  font-size: var(--font_16);
}
.box-title {
  margin-top: 10px;
}
.box-text {
  margin-top: 5px;
}
.signature {
  margin-top: 30px;
  display: inline-block;
  font-size: var(--font_15);
  line-height: 1.8;
}
.box-list,
.box-detail-list {
  list-style: decimal;
  padding-left: 1.5em;
}
.box-item,
.box-detail-item {
  position: relative;
  line-height: 1.6;
  margin-top: 5px;
}
.box-detail-list {
  list-style: none;
  counter-reset: detail-counter;
  padding-left: 2em;
  padding-left: 0;
}
.box-detail-item {
  counter-increment: detail-counter;
  position: relative;
  padding-left: 2em;
}
.box-detail-item::before {
  content: "(" counter(detail-counter) ") ";
  position: absolute;
  left: 0;
}
/*table style*/
.box-table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 10px 0;
  font-size: var(--font_14);
}
.box-table th {
  padding: 5px;
  background: #dfede5;
  border: solid 1px #333;
  vertical-align: middle;
  min-width: 100px;
}
.box-table td {
  padding: 5px;
  vertical-align: middle;
  border: solid 1px #333;
}
.box-table2 td:first-child,
.box-table3 td:first-child {
  text-align: left;
}
/*スクロールバー*/
.scroll-box {
  scrollbar-width: thin;
  scrollbar-color: var(--orange) #f1f1f1;
}
.scroll-box::-webkit-scrollbar {
  width: 8px;
}
.scroll-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.scroll-box::-webkit-scrollbar-thumb {
  background-color: var(--orange);
  border-radius: 4px;
}
/*チェックマークボタン*/
.agreement {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  margin-top: 30px;
  margin-bottom: 60px;
  font-size: var(--font_16);
}
.agreement-text {
  text-align: center;
  font-size: var(--font_14);
  display: block;
  width: 100%;
}
.agreement-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.agreement-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.agree-button {
  display: inline-block;
  padding: 10px 80px;
  background-color: #acacac;
  color: #fff;
  border-radius: 4px;
  pointer-events: none; /* 初期は押せない */
  transition: background-color 0.3s;
  user-select: none;
}
.agree-button.enabled {
  background-color: var(--orange);
  pointer-events: auto; /* 押せる */
}
@media (max-width: 768px) {
  .vote {
    margin-top: 40px;
  }
  .vote-text {
    margin-bottom: 10px;
  }
  .scroll-box {
    padding: 1rem;
  }
  .box-detail-item {
    padding-left: 1.5em;
  }
  .box-table th {
    min-width: 50px;
  }
  .box-table2 th,
  .box-table3 th,
  .box-table2 td {
    text-align: left;
  }
}
/****************************
single page
******************************/
.article-container {
  margin-top: 100px;
}
.article-inner {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}
.article-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 10px;
}
.cat {
  border: 1px solid #333;
  padding: 5px 30px;
  font-size: var(--font_14);
  border-radius: 20px;
  font-weight: bold;
}
.content-title {
  font-size: var(--font_34);
  text-align: left;
}
/*受付中タグ*/
.program-status-tag-slider {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 30px;
  font-size: var(--font_16);
  font-weight: bold;
  color: #fff;
  z-index: 2;
  border-radius: 8px 0 8px 0;
}
.program-status-tag-slider.accept {
  background-color: var(--orange);
}
.program-status-tag-slider.closed {
  background-color: #4c4c4c;
}
/*画像スライダー(main)*/
.gallery-top {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  overflow: hidden;
}
.gallery-top .swiper-slide {
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.gallery-top .swiper-slide.swiper-slide-active {
  opacity: 1;
  z-index: 1;
}
/*画像スライダー(thumbs)*/
.gallery-thumbs .swiper-slide {
  width: auto;
  height: 100%;
  border-radius: 10px;
  opacity: 1;
  cursor: pointer;
}
.gallery-thumbs .swiper-slide img {
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 0.3;
}
.gallery-thumbs {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}
/*arrowボタンスタイル */
.gallery-top {
  position: relative;
}
.gallery-top .swiper-button-next,
.gallery-top .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(223, 104, 77, 1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.gallery-top .swiper-button-next,
.gallery-top .swiper-button-prev {
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.gallery-top .swiper-button-next:hover,
.gallery-top .swiper-button-prev:hover {
  transform: translateY(-50%) scale(1.1);
}
.gallery-top .swiper-button-next::after,
.gallery-top .swiper-button-prev::after {
  font-size: var(--font_14);
  font-weight: bold;
}
/*スクロールバー*/
.gallery-thumbs::-webkit-scrollbar {
  height: 8px;
}
.gallery-thumbs::-webkit-scrollbar-track {
  background: #f0f0f0; /* トラック部分の背景色 */
  border-radius: 4px;
}
.gallery-thumbs::-webkit-scrollbar-thumb {
  background-color: var(--orange);
  border-radius: 4px;
  border: 2px solid #f0f0f0;
}
/*プログラム概要*/
.program-description {
  margin-top: 30px;
  text-align: left;
}
/*プログラム詳細リスト*/
.program-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}
.program-detail-table tr {
  background-image: repeating-linear-gradient(
    to right,
    #7a7a7a,
    #7a7a7a 2px,
    transparent 4px,
    transparent 8px
  );
  background-position: bottom;
  background-size: 100% 1px;
  background-repeat: no-repeat;
}
.program-detail-table th,
.program-detail-table td {
  padding: 8px;
  vertical-align: top;
  text-align: left;
}
.program-detail-table th {
  width: 24%;
  text-align: left;
  position: relative;
  padding-left: 1.5em;
}
.program-detail-table th::before {
  content: "●";
  color: var(--orange);
  position: absolute;
  left: 0.5em;
  top: 0.8em;
  font-size: 0.8em;
}
/*備考*/
.program-remarks {
  text-align: left;
  margin-top: 16px;
}
/*タイムスケジュール(全体)*/
.c-center .article-inner {
  padding-bottom: 60px;
}
.c-top_schedule_wrap {
  position: relative;
  margin-top: 60px;
}
.time-schedule__mount1 {
  position: absolute;
  width: 120px;
  z-index: 2;
  top: 60px;
  right: 25%;
  animation: swingTree4Pause 4s steps(2, end) infinite;
}
.time-schedule__mount2 {
  position: absolute;
  width: 120px;
  z-index: 2;
  top: 80px;
  right: 12%;
  animation: swingTree3Pause 5s steps(2, end) infinite;
}
.time-schedule__people {
  position: absolute;
  width: 160px;
  z-index: 2;
  top: 120px;
  right: 20%;
  animation: swingTree4Pause 3s steps(2, end) infinite;
}
.reserve-btn {
  background: var(--orange);
  font-weight: bold;
  color: #fff;
  padding: 14px 0;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 340px;
  margin: 40px auto 0;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.reserve-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
/*タイムスケジュール*/
.time-schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  text-align: left;
  position: relative;
}
.time-schedule-table th,
.time-schedule-table td {
  padding: 8px;
  vertical-align: top;
  text-align: left;
}
.time-schedule-table th {
  text-align: left;
  color: var(--yellowgreen);
  width: 120px;
  position: relative;
}
.time-schedule-table td {
  position: relative;
  padding-left: 100px;
}
.time-schedule-table th::before {
  content: "";
  width: 15px;
  height: 100%;
  left: 140px;
  background: var(--gray);
  display: block;
  position: absolute;
  top: 0;
}
.time-schedule-table tr:first-child th::before {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.time-schedule-table tr:last-child th::before {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.time-schedule-table th::after {
  content: "";
  width: 15px;
  height: 15px;
  left: 140px;
  background: var(--yellowgreen);
  display: block;
  position: absolute;
  top: 1.3em;
  transform: translateY(-50%);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .article-container {
    margin-top: 30px;
  }
  .c-top_schedule_wrap .c-center {
    padding-top: 30px;
  }
  .schedule-inner {
    padding-top: 30px;
  }
  .time-schedule__mount1 {
    width: 60px;
    top: -30px;
    right: 15%;
  }
  .time-schedule__mount2 {
    width: 60px;
    top: -10px;
    right: 3%;
  }
  .time-schedule__people {
    width: 100px;
    top: 0;
    right: 10%;
  }
  .gallery-top .swiper-button-next,
  .gallery-top .swiper-button-prev {
    top: 60%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
  }
  .program-detail-table {
    margin-top: 10px;
  }
  .program-detail-table,
  .program-detail-table thead,
  .program-detail-table tbody,
  .program-detail-table tr,
  .program-detail-table th,
  .program-detail-table td {
    display: block;
    width: 100%;
  }
  .program-detail-table tr {
    margin-bottom: 10px;
  }
  .program-detail-table th {
    padding-left: 1.5em;
    position: relative;
    padding-bottom: 0;
  }
  .program-detail-table td {
    margin-top: 0;
    padding-top: 0;
    padding-left: 1.5em;
  }
  .time-schedule-table tr {
    display: flex;
    flex-direction: column;
  }
  .time-schedule-table th {
    padding: 0;
  }
  .time-schedule-table td {
    padding-left: 0;
  }
  .time-schedule-table th::before {
    display: none;
  }
  .time-schedule-table th::after {
    display: none;
  }
}
/*ツアーガイド紹介*/
.guide {
  padding-top: 30px;
}
.guide-info {
  margin-top: 30px;
  padding-bottom: 40px;
}
.guide-name {
  font-size: var(--font_20);
  text-align: left;
}
.guide-info strong {
  color: var(--green);
}
.guide-info p {
  margin-top: 10px;
}
.guide-info__content {
  display: flex;
  column-gap: 30px;
}
.guide-info__content img {
  width: 30%;
  object-fit: cover;
}
.guide-info__title {
  font-size: var(--font_24);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .guide-info__content {
    flex-direction: column;
  }
  .guide-info__content img {
    width: 100%;
    margin-bottom: 10px;
  }
}
/*ページ送りスタイル*/
.content-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  font-weight: bold;
}
.content-nav a {
  color: var(--green);
}
.back-list-wrap {
  font-weight: bold;
}
.back-list-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  margin-top: 5px;
  color: var(--green);
}
.back-list-wrap img {
  height: 26px;
}
@media (max-width: 768px) {
  .back-list-wrap img {
    height: 20px;
  }
}
/****************************
archive page
******************************/
#archive-program {
  margin-top: 60px;
  margin-bottom: 120px;
}
.archive-article-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.archive-category-nav ul {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  row-gap: 10px;
  flex-wrap: wrap;
}
.archive-category-nav ul li {
  background: var(--beige);
  border: 2px solid #333;
  border-radius: 50px;
  font-weight: bold;
  padding: 0;
}
.archive-category-nav ul li a {
  display: block;
  padding: 5px 20px;
  color: #333;
  border-radius: 50px;
  transition: 0.3s ease;
}
.archive-category-nav ul li a:hover {
  background: #333;
  color: #fff;
}
.archive-category-nav ul li a.is-active {
  background: #333;
  color: #fff;
}
.article-list {
  text-align: left;
}
.program_img {
  overflow: hidden;
  border-radius: 20px;
}
.program_img img {
  transition: transform 0.4s ease;
  display: block;
  border-radius: 20px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.article_item_link:hover .program_img img {
  transform: scale(1.05);
}
.program-category__container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;

  margin: 16px 0 10px;
  font-weight: bold;
}
.event-single_period {
  font-size: var(--font_24) !important;
}
.program-category {
  font-size: var(--font_13);
  border: 1px solid #333;
  border-radius: 20px;
  display: inline-block;
  padding: 2px 10px;
}
.event-period {
  font-size: var(--font_16);
  color: var(--green);
}
.detail-content {
  font-size: var(--font_15);
  line-height: 1.6;
}
/*受付中タグ*/
.program_img {
  position: relative;
}
.program-status-tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  z-index: 2;
  border-radius: 8px 0 8px 0;
}
.program-status-tag.accept {
  background-color: var(--orange);
}
.program-status-tag.closed {
  background-color: #4c4c4c;
}
@media (max-width: 768px) {
  #archive-program {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .archive-article-wrap {
    margin-top: 20px;
  }
  .archive-category-nav ul {
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
    justify-content: flex-start;
  }
  .archive-category-nav ul li a {
    font-size: var(--font_15);
    padding: 2px 10px;
  }
}
/****************************
pagination
******************************/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.pagination__list {
  display: flex;
}
.pagination__item,
.pagination__item--current {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border: 2px solid #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
}
.pagination__item a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 36px;
  text-align: center;
  color: inherit;
}
.pagination__item:hover {
  background: #f2f2f2;
}
.pagination__item--current {
  background-color: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.pagination__btn--first,
.pagination__btn--prev,
.pagination__btn--next,
.pagination__btn--last {
  margin: 0 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .pagination__item,
  .pagination__item--current {
    width: 30px;
    height: 30px;
    line-height: 0;
  }
  .pagination__item a {
    line-height: 25px;
  }
}
/*********************************
contact-form
**********************************/
#contact-form {
  margin-top: 60px;
  margin-bottom: 60px;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic",
    "Meiryo", sans-serif;
}
#contact-form .inner {
  max-width: 900px;
  text-align: left;
}
#contact-form .row {
  padding: 16px 10px !important;
  font-size: var(--font_18) !important;
}
#contact-form .name {
  font-weight: bold !important;
  font-size: var(--font_20) !important;
}
input,
textarea {
  font-size: var(--font_18) !important;
  padding: 10px !important;
}
textarea {
  height: 200px !important;
}
select {
  font-size: var(--font_18) !important;
  padding: 10px !important;
}
.book_now_button {
  padding: 16px 0 !important;
}
.pageContact-description {
  margin-bottom: 30px;
}
.smf-form--letter .smf-text-control__control {
  font-size: 1.6rem;
  padding: 14px 20px;
}
.smf-form .smf-textarea-control__control {
  font-size: 1.6rem;
  padding: 14px 20px;
}
.smf-form .smf-radio-button-control {
  align-items: center;
}
[data-screen="back"]
  .smf-progress-tracker__item--input
  .smf-progress-tracker__item__number,
[data-screen="complete"]
  .smf-progress-tracker__item--complete
  .smf-progress-tracker__item__number,
[data-screen="confirm"]
  .smf-progress-tracker__item--confirm
  .smf-progress-tracker__item__number,
[data-screen="input"]
  .smf-progress-tracker__item--input
  .smf-progress-tracker__item__number,
[data-screen="invalid"]
  .smf-progress-tracker__item--input
  .smf-progress-tracker__item__number {
  background-color: var(--blue);
}
.smf-progress-tracker__item__number {
  width: 40px;
  height: 40px;
}
.smf-progress-tracker__item:after,
.smf-progress-tracker__item:before {
  top: 20px;
}
.smf-form--letter .smf-item {
  text-align: left;
  padding: 20px 0;
}
.has-vivid-red-color {
  border: 1px solid var(--red);
  font-size: var(--font_12);
  padding: 3px 10px;
  font-style: normal;
}
.smf-radio-buttons-control__control {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 5px;
}
.smf-item__label {
  font-weight: bold;
}
.smf-item__description {
  font-size: var(--font_14);
}
.field-text-privacy a {
  display: inline;
  border-bottom: 1px solid #3366cc;
  color: #3366cc;
  font-weight: bold;
}
.field-group-privacy {
  display: flex;
  justify-content: center;
}
.smf-label {
  text-align: center;
}
.field-group-privacy .smf-checkbox-control__label {
  display: none;
}
.smf-action .smf-button-control__control[data-action="confirm"],
.smf-action .smf-button-control__control[data-action="complete"] {
  background: var(--blue);
  color: white;
  font-size: var(--font_16);
  border-radius: 30px;
  border: none;
  padding: 10px 80px;
}
.smf-action .smf-button-control__control[data-action="back"] {
  border-radius: 30px;
  padding: 10px 40px;
  margin-bottom: 1em;
}
.field-checkbox-privacy .smf-placeholder {
  display: flex;
  column-gap: 10px;
}
.field-checkbox-privacy .smf-error-messages {
  margin-top: 0;
}
body .is-layout-flex {
  flex-wrap: wrap;
  justify-content: center;
}
.smf-placeholder[data-name="policy"] .smf-error-messages {
  display: block; /* 横並びの中でも改行して表示 */
  color: #ff0000; /* 赤色に */
  margin-top: 4px; /* チェックボックスとの間隔 */
  font-size: 0.9em; /* 少し小さめに */
  width: 100%; /* 親幅いっぱい */
}
/*reCAPTHAマーク設定*/
.grecaptcha-badge {
  visibility: hidden;
}
.recaptcha {
  font-size: var(--font_14);
  padding-top: 10px;
  text-align: center;
}
.recaptcha a {
  color: #3366cc;
}

@media screen and (max-width: 960px) {
  .pageContact-description {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .smf-form--letter .smf-item {
    padding: 10px 0;
  }
  .recaptcha {
    text-align: left;
  }
}
/****************************
予約可能program一覧
******************************/
.reserve-inner {
  max-width: 1040px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.reserve-list__description {
  margin-bottom: 60px;
}
.reserve-list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  text-align: left;
}
.reserve-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 60px;
}
.reserve-content {
  font-size: var(--font_20);
  margin-top: 10px;
  width: 100%;
}
.form-link {
  margin: 30px 0 0 0;
  padding: 10px 0;
  max-width: 300px;
  font-size: var(--font_16);
}
.reserve-thumb {
  aspect-ratio: 3 / 2;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .reserve-list__description {
    margin-bottom: 20px;
  }
  .reserve-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .reserve-thumb {
    max-width: none;
    min-width: 300px;
  }
  .form-link {
    margin: 10px auto 0;
  }
}
/****************************
program予約ページ
******************************/
.page-template-page-program {
  background: #fff;
  text-align: center;
}
.page-template-page-program p {
  text-align: center;
}
.program-title {
  font-size: var(--font_34);
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .program-title {
    text-align: left;
  }
}
/*********************************
privacy-policy
**********************************/
#privacy-policy {
  margin-top: 60px;
  margin-bottom: 60px;
  text-align: left;
}
.policy-description {
  margin-bottom: 30px;
}
#privacy-policy h3 {
  margin: 20px 0 10px;
  color: var(--green);
}
#privacy-policy ul {
  list-style-type: disc;
  padding-left: 1.5em;
}
@media screen and (max-width: 768px) {
  #privacy-policy {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #privacy-policy h3 {
    margin: 10px 0 5px;
  }
}
/****************************
not found
******************************/
.error-message {
  text-align: center;
  padding: 60px 0;
}
.notfound-link {
  color: var(--green);
  border-bottom: 1px solid var(--green);
}
@media screen and (max-width: 768px) {
  .error-message {
    text-align: left;
    padding: 40px 0;
  }
}
