@charset "utf-8";

/* ====== スムーズスクロール ====== */
html {
  scroll-behavior: smooth;
}

/* ====== リセットCSS ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
}

html,
body {
  height: 100%;
  font-size: 16px;
  font-family: system-ui, sans-serif;
  line-height: 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ====== 戻るボタン ====== */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 14px;
  bottom: 14px;
  /* background: #ffffff; */
  background: rgba(255, 255, 255, 0.8);
  border: solid 3px #53DA40;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9998;
  cursor: pointer;
}

.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #53DA40;
  border-right: 3px solid #53DA40;
  transform: translateY(20%) rotate(-45deg);
}


/* ====== SP版 非表示 ====== */
.pc_header_navi,
.pc_bottom_tel,
.index_hero_pc,
.pagetop_pc,
.event_hero_pc,
.pc {
  display: none;
}

/* ====== ヘッダー ====== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.title_logo {
  height: 40px;
  margin: 10px;
}

/* ====== ハンバーガー ====== */
.sp_header_navi {
  background-color: #53DA40;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/sp_menu.png');
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
  transition: all 0.5s;
}

.ham_close {
  background-color: #eeeeee;
  background-image: url('../img/sp_menu_close.png');
  border-radius: 0 0 0 8px;
  transition: all 0.5s;
}

.navi_close {
  position: relative;
  top: 0;
  right: 0;
  background-color: #53DA40;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/sp_menu.png');
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
  transition: all 0.5s;

  background-color: #eeeeee;
  background-image: url('../img/sp_menu_close.png');
  border-radius: 0 0 0 8px;
  transition: all 0.5s;

}

.navi_header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  height: 50px;
  margin-bottom: 10px;

}

.hamburger {
  z-index: 10;
  display: block;
  position: fixed;
  width: 100%;
  /* height: calc(100vh - 60px); */
  height: 100vh;
  background-color: #ffffff;
  background-image: url('../img/sp_navi_bottom_bg.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  /* top: 60px; */
  top: 0;
  right: -100%;
  opacity: 0.8;
  transition: all 0.5s;
}

.navi_open {
  right: 0;
  opacity: 1;
  transition: all 0.5s;
}

.hamburger section {
  padding: 0 5%;
}

.hamburger li {
  font-size: 20px;
  font-weight: bold;
  border-top: 1px solid #cccccc;
  background-image: url('../img/arrow.png');
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center right;
}

.hamburger li:last-child {
  border-bottom: 1px solid #cccccc;
}

.hamburger li a {
  display: block;
  padding: 12px 6px;
  color: #12b500;
}

.overflow {
  overflow-y: auto;
}

.off {
  overflow-y: hidden;
}

.navi_contact {
  margin-top: 14px;
  padding: 16px 18px 12px 0;
  color: #333333;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 12px;
}

.navi_contact h2 {
  padding: 0;
  font-size: 20px;
  color: #00ad1d;
}

.navi_contact h3 {
  font-size: 20px;
  color: #0046bf;
  text-align: left;
  margin-bottom: 10px;
}

.navi_contact a {
  display: block;
  color: #333333;
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 0px 0;
}

.navi_contact p {
  margin-bottom: 4px;
  line-height: 1.3;
}

.navi_tel {
  display: inline-block;
}

.navi_contact strong {
  font-size: 1.2rem;
}

#info,
#athletic,
#entrance_money,
#foods,
#access {
  display: block;
}

/* ====== モーダル ====== */

.thumbnail {
  cursor: pointer;
  transition: transform 0.3s;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  /* アニメーション用 */
  opacity: 0;
  transition: opacity 0.3s ease;
  justify-content: center;
  align-items: center;
}

/* 表示時に使うクラス */
.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  width: 90%;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}


/* ====== スライド ====== */
.swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 300px;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 300px;
  padding: 0 8px;
}

.swiper-pagination-bullet {
  /*ドットの色を変更*/
  background-color: #ffffff;
}

.swiper-pagination-bullet {
  /*透過度を変更*/
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  /*アクティブなドットの透過度を1にする*/
  opacity: 1;
}

.swiper-container {
  position: relative;
  padding-bottom: 20px;
}

.swiper-pagination {
  bottom: 0px !important;
}

.swiper-container {
  position: relative;
  overflow: hidden;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background: rgba(146, 236, 29, 0.9);
  border-radius: 50%;
  width: 34px;
  height: 34px;
}

.swiper-container .swiper-button-next {
  right: -3px;
}

.swiper-container .swiper-button-prev {
  left: -3px;
}

.swiper-container .swiper-button-next::after,
.swiper-container .swiper-button-prev::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fff;
  font-size: 1rem;
}

.swiper-container .swiper-button-next::after {
  /* FontAwesomeの右矢印 */
  content: '\f054';
}

.swiper-container .swiper-button-prev::after {
  /* FontAwesomeの左矢印 */
  content: '\f053';  
}



/* ====== ボタン ====== */
.btn {
  display: block;
  margin: 0 auto;
  margin: 10px 15% 0 15%;
  background-color: #26c810;
  border: 3px solid #ffffff;
  font-size: 18px;
  font-weight: bold;
}

.btn:hover {
  background-color: #42ed2c;
  border: 3px solid #ffffff;
}

.btn a {
  color: #ffffff;
  display: block;
  padding: 14px 16px;
}

.btn a:hover {
  color: #ffffff;
}


/* ====== メイン ====== */
main h2 {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  margin: 30px 0 16px 0;
  padding: 10px 18px;
  border-radius: 12px;
  background-color: #ffffff;
}

main p {
  font-size: 16px;
}

.spacer {
  padding-left: 5%;
  padding-right: 5%;
}

.hero {
  position: relative;
}


.logo {
  position: absolute;
  width: 52%;
  top: -20px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  animation: shake 5s infinite;
  transform: rotate(5deg);
}

@keyframes shake {
  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(5deg);
  }
}

.index_hero {
  width: 100%;
}

.left {
  text-align: left;
}

.remarks {
  font-size: 0.9rem;
  font-weight: normal;
}

.photo {
  border-radius: 20px;
}


/* ====== ありのみコースとは ====== */
.about {
  color: #0d2f09;
  text-align: center;
  /* background-color: #C9DE55; */
  background-color: #d0f12e;
  background-image: url('../img/about_bg_sp.png');
  background-repeat: no-repeat;
  background-size: 120%;
  background-position: top center;
}

.about h2 {
  display: inline-block;
  font-size: 20px;
  color: #409a00;
  font-weight: bold;
  margin: 10px 0 12px 0;
  padding: 10px 16px;
  /* background-color: #fff763; */
  background-color: #fff763;
  border-radius: 12px;
}

.about h3 {
  font-size: 20px;
  font-weight: bold;
  color: #006d18;
  line-height: 1.8;
  margin: 0 0 10px 0;
}

.about p {
  font-size: 16px;
  color: #e75500;
  font-weight: bold;
  line-height: 1.8;
}

.about ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  justify-content: center;
  width: 100%;
  margin: 20px 0 0 0;
}

.about li {
  font-weight: bold;
  color: #ffffff;
  line-height: 1.3;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #ffffff;
}

.bg_green {
  background-color: #12b500;
}

.bg_yellow {
  background-color: #20d20c;
}

/* ====== 季節のイベント ====== */
.event {
  padding: 10px 0;
  text-align: center;
}

.banner {
  display: inline-block;
  margin-bottom: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.banner:hover {
  transform: scale(1.02); 
}

.event img {
  display: inline-block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.event_none {
  width: 100%;
  border: 3px solid #ffce63;
  border-radius: 8px;
  margin-bottom: 12px;
  background-color: #fefff1;
  padding: 18px;
}

.event_none p {
  line-height: 1.4;
}

.other {
  width: fit-content;
  margin: 0 auto;
  text-align: left;
  margin-top: 10px;
  color: #0046bf;
}

.evt_btn {
  margin: 0 20% 20px 20%;
  background-color: #fc8106;
}

.evt_btn:hover {
  background-color: #fcb606;
}



/* ====== お知らせ ====== */
.info {
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 16px;
  /* background-color: #C9DE55; */
  background-color: #d0f12e;
  position: relative;
  background-image: url('../img/promise_pear.png');
  /* background-size: 28%; */
  background-size: 28%;
  background-repeat: repeat-x;
  background-position: top center;
}

.info_title {
  position: absolute;
  top: 85px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.info_img_01 {
  width: 110px;
  height: auto;
}

.info ul {
  background-color: #ffffff;
  border: 3px solid #68B032;
  padding: 26px 0px 8px 0px;
  border-radius: 12px;
}

.info li {
  margin: 0 20px;
  line-height: 1.3;
  border-bottom: 1px dotted #cccccc;
  padding: 10px 0;
}

.info li:last-child {
  border: none;
}

.info li a {
  color: #009619;
}

.important {
  color: #ff0000;
}


/* ====== 40種のポイントを巡ろう ====== */
.athletic {
  padding-top: 24px;
  padding-bottom: 1px;
  color: #0d2f09;
  text-align: center;
  background-image: url('../img/athletic_bg.png');
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
  /* background-color: #68B032; */
  background-color: #62bf24;
}

.athletic h2 {
  color: #109e00;
}

.athletic ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  padding: 0 10px;
}

.athletic li {
  /* width: calc(50% - 14px); */
  box-sizing: border-box;
}

.athletic li img {
  border: 4px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 0 2px #C9DE55;
  width: 100%;
}

.athletic_map {
  display: block;
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 6px solid #ffffff;
  border-radius: 18px;
  box-shadow: 0 0 0 2px #C9DE55;
}



/* ====== 園内での約束 ====== */
.promise {
  padding: 34px 36px 24px 36px;
  text-align: center;
  /* background-color: #68B032; */
  background-color: #62bf24;
  background-image: url('../img/promise_pear.png');
  background-size: 28%;
  background-repeat: repeat-x;
  background-position: top center;
}

.promise h2 {
  color: #fd6a00;
}

.promise section {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  background-color: #ffffff;
  background-image: url('../img/promise_list_bg_sp.png');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.promise_list {
  color: #ff4800;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}

.promise_attention {
  display: inline-block;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.3;
  padding: 8px;
  background-color: #ff8800;
  border-radius: 6px;
}

.promise_rabbit {
  position: absolute;
  top: -50px;
  left: -15px;
}

.promise_img_01 {
  width: 70px;
  height: auto;
}

.promise_kids {
  position: absolute;
  top: -55px;
  right: -10px;
}

.promise_img_02 {
  width: 60px;
  height: auto;
}



/* ====== ありのみ茶屋 ====== */
.foods {
  color: #333333;
  text-align: center;
  background-color: #FAF7DB;
  background-image: url('../img/foods_bg.png');
}

.foods h2 {
  color: #9b5300;
  background: none;
  margin: 20px 0 0 0;
  padding: 0;
}

.foods section {
  padding: 10px 8px 20px 8px;
  border-radius: 12px;
}

.foods p {
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 12px 0;
  color: #9b5300;
}

.photo {
  width: 100%;
  display: block;
}

.foods_illust {
  display: block;
  margin: 0 auto;
  margin-top: 12px;
  margin-bottom: 12px;
  width: 95%;
}

/* メニュー表 */
.foods dl {
  background-color: #ffffff;
  border: 3px solid #ffe37e;
  border-radius: 12px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 12px;
  padding: 22px 16px;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #9b5300;
  font-weight: bold;
}

.foods dt {
  text-align: left;
  width: 70%;
}

.foods dd {
  text-align: left;
  width: auto;
}


.menu {
  background-color: #fc8106;
  border: 3px solid #ffffff;
}

.menu:hover {
  background-color: #ffa448;
  border: 3px solid #ffffff;
}

.menu a {
  color: #ffffff;
}

.foods .remarks {
  font-size: 0.9rem;
}


/* ====== ご利用料金 ====== */
.entrance_money {
  padding-top: 50px;
  padding-bottom: 1px;
  color: #333333;
  text-align: center;
  background-image: url('../img/access_bg.png');
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
  /* background-color: #105FD6; */
  background-color: #0070f1;
}

.entrance_money h2 {
  color: #0091ff;
}

.entrance_money section {
  background-color: #ffffff;
  padding: 20px 20px 20px 20px;
  border-radius: 12px;
}

.regular,
.group {
  width: 100%;
  margin-bottom: 6px;
}

.group {
  margin-top: 10px;
}

.regular th {
  color: #ffffff;
  padding: 8px;
  background-color: #1c6fff;
}

.regular td {
  color: #333333;
  font-weight: bold;
  line-height: 1.3;
  width: 50%;
  height: 60px;
  padding: 8px;
  background-color: #eeeeee;
  border-bottom: 1px solid #dddddd;
}

.regular td:nth-child(even) {
  font-size: 1.6rem;
  color: #0054e6;
  ;
  background-color: #ffffff;
}

.group th {
  color: #ffffff;
  padding: 8px;
  background-color: #00bf29;
}

.group td {
  color: #333333;
  font-weight: bold;
  width: 50%;
  padding: 6px;
  background-color: #eeeeee;
  border-bottom: 1px solid #dddddd;
}

.group td:nth-child(even) {
  font-size: 1.2rem;
  color: #00bf29;
  ;
  background-color: #ffffff;
}

.hours h3 {
  margin: 20px 0 0 0;
  padding: 20px 0 0 0;
  font-size: 22px;
  border-top: 1px solid #cccccc;
}

.open {
  font-size: 26px;
  font-weight: bold;
  color: #0054e6;
  margin: 10px 0 10px 0;
}

.open span {
  color: #ff6600;
}

.hours p {
  line-height: 1.2;
}

.holidays {
  display: inline-block;
  border: 1px solid #cccccc;
  margin: 14px 0 0 0;
  padding: 10px 16px;
  border-radius: 6px;
}





/* ====== アクセス方法 ====== */
.access {
  padding-top: 50px;
  padding-bottom: 1px;
  color: #333333;
  text-align: center;
  /* background-color: #3eb92b; */
  background-color: #3eba23;
  background-image: url('../img/contact_bg.png');
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
}

.access h2 {
  color: #00ad1d;
}

.access section {
  background-color: #ffffff;
  padding: 20px 5% 20px 5%;
  border-radius: 12px;
}

.access_route {
  padding: 10px 6px;
}

.access h3 {
  font-size: 20px;
  color: #00ad1d;
  text-align: left;
  margin-bottom: 10px;
}

.access ul {
  text-align: left;
  margin-bottom: 30px;
  padding-left: 20px;
}

.access li {
  font-size: 1.2rem;
  margin-bottom: 4px;
  line-height: 1.5;
  list-style: disc;
}

.access li a {
  text-decoration: underline;
}

.access p {
  text-align: left;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.access iframe {
  display: block;
  margin-bottom: 14px;
  border-radius: 8px;
}

.map {
  background-color: #26c810;
  border: 1px solid #169106;
}

.map:hover {
  background-color: #42ed2c;
  border: 1px solid #26c810;
}

.map a {
  color: #ffffff;
}

.logo_bottom {
  display: block;
  width: 22%;
  margin: 0 auto;
  margin-bottom: 8px;
}


/* ====== お問い合わせ ====== */
.contact {
  padding: 30px 36px 46px 36px;
  color: #333333;
  text-align: center;
  background-color: #3eb92b;
}

.contact h2 {
  margin: 0;
  padding: 0 0 8px 0;
  font-size: 22px;
  color: #00ad1d;
}

.contact section {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
}

.contact h3 {
  font-size: 20px;
  color: #0046bf;
  text-align: left;
  margin-bottom: 10px;
}

.contact a {
  display: inline-block;
  color: #333333;
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 8px 0;
}


/* ====== フッター ====== */
footer {
  padding: 16px 16px 20px 16px;
  text-align: center;
  position: relative;
}

.footer_kids {
  position: absolute;
  top: -20px;
}

.footer_img_01 {
  width: 85%;
  margin: 0 auto;
}

address {
  font-size: 16px;
  font-style: normal;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.footer_title {
  font-weight: bold;
  font-size: 22px;
  color: #17ac00;
  line-height: 1.3;
  margin-bottom: 8px;
}

.footer_copy {
  color: #999999;
}



/* ====== 季節のイベント（単体ページ） ====== */
.event_all {
  color: #0d2f09;
  text-align: center;
  background-color: #C9DE55;
  padding-top: 20px;
  padding-bottom: 30px;
}

.event_all section {
  background-color: #ffffff;
  margin-bottom: 16px;
  padding: 20px;
  border-radius: 12px;
}

.event_all h2 {
  margin: 0 0 10px 0;
  padding: 0 0 0 0;
  font-size: 32px;
  color: #4ca805;
}

.event_all h3 {
  margin: 0 0 10px 0;
  padding: 0 0 0 0;
  font-size: 24px;
  color: #4ca805;
  line-height: 1.2;
}

.event_all h4 {
  font-size: 26px;
  /* color: #4ca805; */
  line-height: 1.2;
}

.event_all p {
  line-height: 1.3;
}

.period {
  background-color: #ffe37e;
  color: #ee7700;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 12px;
}

.evt,
.timtbl,
.rsv {
  margin-top: 14px;
  margin-bottom: 8px;
}
.evt th {
  background-color: #68B032;
}
.evt td:nth-child(even) {
  color: #429700;
}

.evt td:nth-child(even) span {
  font-size: 24px;
}

.timtbl th {
  background-color: #32b086;
}
.timtbl td {
  background-color: #ffffff;
  height: auto;
  padding: 8px;
  font-size: 20px;
}

.timtbl tr:nth-child(odd) td {
  background-color: #eeeeee;
  height: auto;
}

.rsv td {
  height: auto;
}

.event_contact {
  margin: 0 0 20px 0;
}













/* ====== PC版 ============================================================ */
@media screen and (min-width: 800px) {

  /* ====== 表示 ====== */
  .pc {
    display: inline;
  }

  .overflow {
    overflow-y: hidden;
  }

  body {
    overflow-y: auto;
  }


  /* ====== スライド ====== */
  .swiper-slide {
    padding: 0 60px;
  }

  .swiper-pagination {
    bottom: 10px !important;
  }

  .swiper-pagination-bullet {
    /*ドットのサイズを変更*/
    width: 12px;
    height: 12px;
  }

  .swiper-pagination-bullet {
    /*ドットの間隔を変更*/
    margin: 0 6px !important;
  }

  .swiper-container .swiper-button-next,
  .swiper-container .swiper-button-prev {
    width: 60px;
    height: 60px;
    top: 286px;
  }

  .swiper-container .swiper-button-next {
    right: 24px;
  }

  .swiper-container .swiper-button-prev {
    left: 24px;
  }

  .swiper-container .swiper-button-next::after,
  .swiper-container .swiper-button-prev::after {
    font-size: 1.4rem;
  }

  /* ホバー時に画像を拡大 */
  .swiper-slide li {
    transition: transform 0.3s ease;
  }
  .swiper-slide li img:hover {
    
    transform: scale(1.03);
  }


  /* ====== 戻るボタン ====== */
  .pagetop_pc {
    display: block;
    position: fixed;
    right: 50px;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 4px solid #53DA40;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .pagetop_pc a {
    display: block;
    color: #27ae15;
    font-size: 18px;
    font-weight: bold;
    line-height: 80px;
    height: 80px;
    width: 80px;
  }


  /* ====== 非表示 ====== */
  .sp,
  .sp_header_navi,
  .index_hero,
  .pagetop,
  .pagetop__arrow,
  #pagetop {
    display: none;
  }



  /* ====== ヘッダー ====== */

  header {
    justify-content: center;
    background-color: #ffffff;
    height: 80px;
  }

  .title_logo {
    width: auto;
    min-height: 60px;
    margin: 10px 10px 10px 0;
  }

  .pc_header_navi {
    margin: 0 14px 0 8px;
    display: flex;
    gap: 0 10px;
  }

  .pc_header_navi li {
    display: block;
    text-align: center;
    background: linear-gradient(to bottom, #00c147, #a4d100);
    border-radius: 12px;
    min-width: 150px;
  }

  .pc_header_navi li:hover {
    background: linear-gradient(to bottom, #18d000, #c4fa00);
  }

  .pc_header_navi li a {
    display: block flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-weight: bold;
    color: #ffffff;
    width: 100%;
    height: auto;
    height: 50px;
  }

  .pc_header_navi li a:hover {
    font-size: 18px;

  }


  /* ====== レイアウト ====== */
  .pc_back {
    background-image: url('../img/pc_main_bg.jpg');
    background-repeat: repeat-x;
    background-position: top;

  }

  main {
    width: 1000px;
    margin: 0 auto;
    margin-top: 60px;
    /* border: 8px solid #f5ff6b; */
    border: 8px solid #FFFF00;
    border-radius: 48px;
  }

  .logo {
    width: 36%;
    top: -60px;
  }

  .index_hero_pc {
    display: block;
    width: 100%;
    height: 450px;
    border-radius: 40px 40px 0 0;
  }

  /* ====== ありのみコースとは ====== */
  .about {
    background-image: url('../img/about_bg_pc.png');
    background-repeat: no-repeat;
    background-size: 120%;
    background-position: top center;
  }

  .about h2 {
    margin-top: 20px;
    font-size: 46px;
  }

  .about h3 {
    font-size: 28px;
  }

  .about p {
    font-size: 18px;
  }

  .about ul {
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 60px;
  }

  .about li {
    font-size: 20px;
    background: linear-gradient(to bottom, #18d000, #2bb800);
  }


  /* ====== 季節のイベント ====== */


  .banner {
    margin-bottom: 20px;
  }

  .event img {
    width: 700px;
    height: auto;
    border-radius: 8px;
  }

  .event_none {
    width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 36px;
  }

  .evt_btn {
    margin: 0 200px 20px 200px;
  }
  

  /* ====== お知らせ ====== */
  .info {
    padding: 100px 82px 16px 82px;
    background-size: 12%;

  }

  .info_title {
    top: 95px;
  }

  .info_img_01 {
    width: 130px;
    height: auto;
  }

  .info ul {
    padding: 30px 20px 20px 20px;
  }

  .info li {
    font-size: 18px;
    padding: 10px 0;
  }


  /* ====== 40種のポイントを巡ろう ====== */

  .athletic h2 {
    font-size: 36px;
  }

  .athletic ul {
    gap: 26px;
    margin-bottom: 24px;
    margin: 6px 0 24px 0;
  }


  /* ====== 園内での約束 ====== */

  .promise {
    background-size: 12%;
    padding: 40px 160px 30px 160px;
  }

  .promise h2 {
    font-size: 36px;
  }

  .promise section {
    padding: 40px 0 40px 0;
    background-image: url(../img/promise_list_bg_pc.png);
  }

  .promise_list {
    font-size: 24px;
    line-height: 1.5;

  }

  .promise_attention {
    font-size: 22px;
    margin-top: 10px;
    padding: 12px 16px;
  }

  .promise_img_01 {
    width: 120px;
    height: auto;
  }

  .promise_rabbit {
    top: -68px;
    right: -18px;
  }

  .promise_kids {
    top: -68px;
    right: -18px;
  }

  .promise_img_02 {
    width: 95px;
    height: auto;
  }


  /* ====== ありのみ茶屋 ====== */
  .foods h2 img {
    width: 500px;
  }

  .foods_illust {
    width: 640px;
  }

  /* メニュー表 */
  .foods dl {
    padding: 34px 0;
    gap: 24px;
    width: 600px;
    font-size: 20px;
  }

  .foods dt {
    text-align: left;
    width: 400px;
  }

  .photo {
    width: 600px;
    height: auto;
    margin: 0 auto;
  }

  .foods dd {
    text-align: left;
    width: 70px;
  }


  /* ====== ご利用料金 ====== */

  .entrance_money h2 {
    font-size: 36px;
  }

  .regular th {
    font-size: 24px;
    padding: 14px;
  }

  .regular td {
    font-size: 20px;
    height: 70px;
  }

  .regular td:nth-child(even) {
    font-size: 28px;
  }

  .group th {
    font-size: 24px;
    padding: 14px;
  }

  .group td {
    font-size: 20px;
    height: 60px;
  }

  .group td:nth-child(even) {
    font-size: 28px;
  }


  /* ====== アクセス方法 ====== */

  .access h2 {
    font-size: 36px;
  }

  .access iframe {
    height: 600px;
    display: block;
    margin-bottom: 14px;
    border-radius: 8px;
  }

  .access .btn {
    width: 300px;
    margin: 0 auto;
    padding: 14px;
  }

  .access .btn a {
    padding: 0;
  }





  /* ====== お問い合わせ ====== */
  .contact {
    padding: 30px 5% 46px 5%;
  }

  .pc_bottom_tel {
    display: block;
    color: #333333;
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 8px 0;
  }

  .contact {
    border-radius: 0 0 40px 40px;
  }

  /* ====== フッター ====== */
  footer {
    width: 400px;
    margin: 0 auto;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto auto;
  }

  .logo_bottom {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    width: 50px;
    height: auto;
    margin: 0 0 0 auto;
  }

  .footer_title {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    margin: 0;
    padding: 10px 0 8px 10px;
    text-align: left;
  }

  address {
    grid-column: 1 / 3;
    text-align: center;
    margin: 0;
    padding: 0 0 8px 0;
  }

  .footer_copy {
    grid-column: 1 / 3;
    margin-bottom: 16px;
  }





  /* ====== 季節のイベント（単体ページ） ====== */

  .event_hero_pc {
    display: block;
    width: 100%;
    border-radius: 40px 40px 0 0;
  }

  .event_all {
    padding-top: 30px;
  }

  .event_all:last-child {
    border-radius: 0 0 40px 40px;
  }

  .event_all section {
    padding: 60px;
  }

  .evt,
  .timtbl,
  .rsv {
    /* width: 600px; */
    margin: 0 auto;
    margin-top: 32px;
    margin-bottom: 10px;
  }

  .pc_flex {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    padding: 3px;
  }

  .pc_h {
    text-align: center;
    width: 50%;
  }

  .pc_h h2 {
    font-size: 50px;
  }

  .pc_img {
    width: 50%;
  }

  .pc_img img {
    border-radius: 8px;
  }

  .event_all iframe {
    height: 500px;
  }


}