/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Maru+Gothic&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New&family=Zen+Maru+Gothic&display=swap');


/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New&family=Zen+Maru+Gothic&display=swap');*/


/* Fonts */
:root {
  --default-font: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  --heading-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --nav-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --footer-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  --footer-font: "Poppins",  sans-serif;
  --nav-font: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;

  --title-font: "Poppins",  sans-serif;
  --breadcrumb-font: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;

  --test-font: "Montserrat",  sans-serif;

}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #3E3E3E;
  --heading-color: #32353a;
  --accent-color: #FF0C98; /* color-hanasaka と同じ */
  --surface-color: #ffffff;
  --contrast-color: #FF0C98;
}

/* Nav Menu Colors */
:root {
  --nav-color: #ff0c98; /* pink */
  --nav-hover-color: #FF0C98;
  --nav-mobile-background-color: #ffffff; /* white */
  --nav-dropdown-background-color: #ffffff; /* white */
  --nav-dropdown-color: #ff0c98; /* pink */
  --nav-dropdown-hover-color: #ff0c98; /* pink */
}

/* Other Colors */
:root {
  --color-hanasaka: #FF0C98;  /* hanasaka color */
  --color-white: #ffffff;
  --color-lightpink: #fffafc;
  --color-green: #008000;
}

/* Color Presets */

.light-background {
  background-color: var(--color-lightpink);
  z-index: 1;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-feature-settings: "palt";
  letter-spacing: 0.5px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  /*font-family: var(--heading-font);*/
  /*font-weight: 500;*/
}

p {
  font-size: clamp(0.938rem, 0.852rem + 0.36vw, 1.125rem);/*15-18*/
  line-height: 1.75;
  margin-bottom: 2rem;
}

li {
  list-style: none;
}



@media (min-width: 576px) {
  .w-80 {
    width: 80% !important;
  }
}

figure {
  margin-bottom: 2rem !important;
}


/* Vieww All */
.view-all {
  background: var(--color-white);
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--color-hanasaka);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  width: 100%;
}
.view-all i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}
.view-all:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 0%);
  padding-right: 19px;
  color: var(--color-white);
}
.view-all:hover i {
  margin-left: 10px;
}

@media (max-width: 576px) {
  .px-col {
    padding: 0 6.4vw;
  }
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
  color: var(--default-color);
  background-color: var(--background-color);
  /*padding: 20px 0;*/
  /*padding: 0 20px;*/
  /*padding: 15px 0;*/
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
}
@media (min-width: 1200px) {
  .header {
    padding: 0 20px;
  }
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 18px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);/*16-20*/
  margin: 0;
  font-weight: 600;
  color: var(--color-hanasaka);
  /*font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;*/
  font-family: var(--nav-font);
}

/*.header .logo span {
  font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
  font-family: 'Orbitron', sans-serif;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 400;
}*/

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  /*box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);*/
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0.5);
  --heading-color: #FF0C98;
  /*--nav-color: rgba(255, 12, 152, 0.5);*/
  --nav-color: #ff0c98;
  --nav-hover-color: #FF0C98;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #FF0C98;
  --nav-color: #ff0c98;
  --nav-hover-color: #FF0C98;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    /* 変更点: position: relative; と display: inline-block; を追加 */
    position: relative; /* aタグを下線の基準にする */
    display: inline-block; /* widthがコンテンツの幅に依存するようにする */
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 16px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li .social-links::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background-color: var(--accent-color);
    margin-left: 18px;
  }

  .navmenu li .social-links {
    margin-left: 18px;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li > a:before {
    content: "";
    position: absolute;
    height: 1px;
    bottom: 12px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu li:nth-child(7) > a:before,
  .navmenu li:nth-child(8) > a:before {
    content: none !important;
  }

  /*.navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }*/

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 85%;
    left: 50%; /* 左端を親要素の50%の位置に移動 */
    transform: translateX(-50%); /* 要素自身の幅の半分だけ左に戻し、中央に配置 */
  }

  .navmenu li:hover > a.contact,
  .navmenu a.contact.active,
  .navmenu a.contact.active:focus {
    color: var(--color-white) !important;
    background-color: var(--accent-color);
  }

  .navmenu li:hover > a.contact.active {
    color: var(--accent-color) !important;
    background-color: var(--color-white);
  }

  .navmenu li a.contact {
    border-radius: 50px;
    border: 1px solid var(--color-hanasaka);
    padding: 4px 12px !important;
    /*font-size: 14px;
    font-weight: 400;*/
    background-color: var(--color-white);
    margin-left: 10px;
  }

  .navmenu li i.bi-chevron-right {
    display: none;
  }


  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}






/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    /*margin-right: 10px;*/
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    /*inset: 60px 20px 20px 20px;*/
    inset: 60px 0 0 0;
    padding: 0 0 10px;
    margin: 0;
    /*border-radius: 6px;*/
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    /*box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);*/
  }

  .navmenu ul li:first-child {
    border-top: 1px solid #e5e5e5;
  }

  .navmenu ul li {
    border-bottom: 1px solid #e5e5e5;
  }

  .navmenu ul li:last-child {
    border-bottom: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    /*padding: 10px 20px;*/
    padding: 15px 20px;
    font-family: var(--nav-font);
    /*font-size: 17px;*/
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu .social-links {
    /*padding: 10px 20px;
    max-width: 180px;
    margin-right: auto;  
    margin-left: auto;*/
    padding-top: 10px;
  }

  .navmenu .social-links a,
  .navmenu .social-links a:focus {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    margin-right: 5px;
    margin-left: 5px;
  }
  .navmenu .social-links a i,
  .navmenu .social-links a:focus i {
    font-size: 14px;
    line-height: 0;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  /*.navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }*/

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    /*color: #fff;*/
    position: absolute;
    font-size: 32px;
    top: 15px;
    /*right: 15px;*/
    right: 5px;
    margin-right: 0;
    z-index: 9999;

    background-color: var(--color-white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    padding-top: 4px;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    /*background: rgba(33, 37, 41, 0.8);*/
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: rgba(254, 234, 245, 0.25);
  font-size: 14px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.index-page .footer {
  background-color: var(--background-color);
}



.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

/*.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}*/

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

/*.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}*/

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  /*background-color: color-mix(in srgb, var(--default-color), transparent 95%);*/
  font-family: var(--footer-font);
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: clamp(0.688rem, 0.602rem + 0.36vw, 0.875rem);/*11-14*/
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/*#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}*/

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--color-lightpink);
  position: relative;
}

/*.page-title h1 {
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 5px 0;
}*/

.page-title .heading {
  padding: 40px 0;
  /*border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);*/
}

.page-title .heading h1 {
  font-size: clamp(1.75rem, 1.466rem + 1.21vw, 2.375rem);/*28-38*/
}

.page-title nav {
  /*background-color: color-mix(in srgb, var(--default-color), transparent 95%);*/
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: clamp(0.75rem, 0.636rem + 0.48vw, 1rem);/*12-16*/
  font-family: var(--breadcrumb-font);
}
@media (max-width: 991px) {
  .page-title nav ol {
    padding-left: 0;
  }
}
.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 150px 0;
  /*scroll-margin-top: 60px;*/
  scroll-margin-top: 59px;
  overflow: clip;
}
/*@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 60px;
  }
}*/
@media (max-width: 576px) {
  section,
  .section {
    padding: 100px 0;
  }
  section#info,
  .info.section,
  section#about,
  .about.section {
    scroll-margin-top: -40px;
  }
  section#faq,
  .faq.section {
    scroll-margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}

@media (max-width: 762px) {
  .section-title {
    padding-bottom: 0;
  }
}

.index-page h2 {
  font-size: clamp(1.375rem, 1.091rem + 1.21vw, 2rem);/*22-32*/
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
}
@media (max-width: 991px) {
  .index-page h2 {
    text-align: center;
  }
}

.section-title h2::first-letter,
.index-page h2::first-letter,
.article-page .heading h1::first-letter {
  color: #e91e63;
  color: var(--color-hanasaka);
  /*font-weight: bold;*/
  /*font-size: 1.4em;*/
}



.index-page h3 {
}


/*.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}*/

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 80px 0;
  /*display: flex;
  align-items: center;
  justify-content: center;*/
}
@media (min-width: 821px) {
  .hero {
	min-height: clamp(35rem, 19.111rem + 30.97vw, 56.25rem);/*Values=560-900,Viewport=821-1919*/
    background-image: url(/event/nogyoshukakusai/assets/img/hero-bg-new.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-bottom: 3px solid #f7f7f7;
  }
}
@media (min-width: 1920px) {
  .hero {
    min-height: 100vh;
  }
}
@media (max-width: 820px) {
  .hero {
    background-image: url(/event/nogyoshukakusai/assets/img/hero-bg-sp.jpg);
	min-height: clamp(45rem, 7.309rem + 160.81vw, 84.5rem);/*Values=720-1352,Viewport=375-768*/
    background-size: contain;
    background-repeat: no-repeat;
	background-position: center 60px;
  }
}
/*@media (max-width: 576px) {
  .hero {
    min-height: 100vh;
  }
}*/

.hero .container {
  position: relative;
  z-index: 3;
  /*margin-top: -14rem;*/
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/*.hero img.hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100vw;
  height: 75vh;
  object-fit: cover;
  z-index: 1;
}*/

/*.hero {
  background: url("/event/nogyoshukakusai/assets/img/hero-bg-2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 75vh;
  position: relative;
}*/


.hero .in-logo {
  margin-bottom: 5rem;
}

.hero .in-logo img {
  /*max-width: 100px;*/
  max-width: 180px;
  margin: auto;
  /*opacity: 0.75;*/
}

/*.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}*/



.hero h2 {
  margin: 0;
  font-size: clamp(2.5rem, 1.591rem + 3.88vw, 4.5rem);/*40-72*/
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-weight: 500;
  color: var(--color-white);
  /*margin-bottom: 5rem;*/
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 5px 0 0 0;
  font-size: clamp(1.125rem, 1.068rem + 0.24vw, 1.25rem);/*18-20*/
}
@media (max-width: 575px) {
  .hero h2 {
    font-weight: 600;
    -webkit-text-stroke: 1px rgba(118, 172, 122, 0.5);
    text-stroke: 1px rgba(118, 172, 122, 0.5);
    paint-order: stroke;
  }
}

.hero .sign-up-form {
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  display: flex;
}

.hero .sign-up-form input[type=email] {
  background-color: transparent;
  border: 0;
  padding: 4px 10px;
  width: 100%;
}

.hero .sign-up-form input[type=email]:focus-visible {
  outline: none;
}

.hero .sign-up-form input[type=submit] {
  border: 0;
  box-shadow: none;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
  transition: 0.3s;
}

.hero .sign-up-form input[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}




/*--------------------------------------------------------------
# Notice Section
--------------------------------------------------------------*/
.notice {
  position: relative;
}

.notice::before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  background-image: url(../img/petal.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;
  right: 20px;
  transform: rotate(90deg);
  z-index: -1;
  opacity: 0.5;
}

.notice::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-image: url(../img/petal.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 10px;
  left: 20px;
  transform: rotate(90deg);
  z-index: -1;
  opacity: 0.5;
}



.notice .content h2 {
  font-weight: 500;
}

.notice .content p:last-child {
  margin-bottom: 0;
}

/*.notice .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.notice .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.notice .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.notice .icon-box p {
  margin-bottom: 0;
}

.notice .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.notice .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}*/


.news-list {
  /*list-style: none;*/ /* リストの黒点を削除 */
  padding: 0; /* デフォルトのpaddingを削除 */
  margin: 0; /* デフォルトのmarginを削除 */
}

.news-list li {
  padding: 2em 0.5em;
  position: relative; /* ::after疑似要素の基準にする */
  display: flex; /* @media以下でflex-direction: column; を使うため、ここで設定 */
  align-items: flex-start; /* 日付とタイトルの配置を調整 */
}

/* 最初の要素の上線 */
.news-list li:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px; /* 線の太さ */
  background-image: linear-gradient(to right, #D0D3CC 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
}

/* すべてのリスト項目に下線を追加 */
.news-list li::after { /* ここを修正しました */
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px; /* 線の太さ */
  background-image: linear-gradient(to right, #D0D3CC 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
}

.news-list .date {
  font-size: 14px;
  color: var(--accent-color);
  margin-right: 20px;
  min-width: 80px;
}

.news-list a {
  color: #333;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  /*white-space: nowrap;*/
  /* Flexboxの子要素として適切に振る舞うように調整 */
  flex-grow: 1;
}

.news-list a:hover .title,
.news-list a:focus .title {
  text-decoration: underline;
}

@media screen and (max-width: 480px) {
  .news-list {
    max-width: 100%;
    padding: 15px;
  }

  .news-list li {
    flex-direction: column;
    /* align-items: flex-start; はすでに設定済みなので不要 */
  }

  .news-list .date {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .news-list .title {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
  }
}




/*--------------------------------------------------------------
# ◎◎◎ Section
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.features .features-item .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item img {
  border: 6px solid var(--surface-color);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.features .features-item .features-img-bg {
  position: relative;
  min-height: 500px;
}

@media (max-width: 640px) {
  .features .features-item .features-img-bg {
    min-height: 300px;
  }
}

.features .features-item .features-img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features .features-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.features .features-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.features .features-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}




/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  position: relative;
}
@media (min-width: 1200px) {
  .faq {
	padding-bottom: 20rem;
  }
}

.faq::before {
  content: "";
  display: block;
  width: 180px;
  height: 180px;
  background-image: url(../img/petal.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;
  left: 20px;
  transform: rotate(90deg);
  z-index: -1;
  opacity: 0.5;
}

.faq::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-image: url(../img/petal.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 30px;
  right: 30px;
  transform: rotate(90deg);
  z-index: -1;
  opacity: 0.5;
}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq-container .faq-item {
  background-color: var(--color-white);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  /*box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);*/
  border: 1px solid rgba(255, 12, 152, 0.1);
  /*border-radius: 5px;*/
  overflow: hidden;
}

.faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-container .faq-item h3 {
  font-weight: 500;
  font-size: clamp(0.938rem, 0.909rem + 0.12vw, 1rem);15-16*/
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .faq-container .faq-item h3 {
    display: flex;
    flex-direction: column;  /* ←縦並びに */
    align-items: flex-start;
  }
}
@media (max-width: 440px) {
  .faq-container .faq-item h3 {
	margin: 0 20px 0 0;
  }
}

.faq-container .faq-item .visitor::before,
.faq-container .faq-item .exhibitor::before {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  /*border-radius: 4px;*/
  /*padding-right: 1.5em;
  padding-left: 1.5em;*/
  padding: 0.2em 1.5em;
  margin-right: 1.5em;
}
@media (max-width: 767px) {
  .faq-container .faq-item .visitor::before,
  .faq-container .faq-item .exhibitor::before {
    display: block;
    margin-bottom: 0.5em;
    width: fit-content;
  }
}

.faq-container .faq-item .exhibitor::before {
  content: "出店者";
  background-color: #4CAF50;
}
.faq-container .faq-item .visitor::before {
  content: "来場者";
  background-color: #FF9800;
}


.faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-container .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
  padding-top: 0;
  position: relative;
}


.faq-container .faq-active .faq-content {
  max-height: 200px;
  padding-top: 10px;
  position: relative;
}

.faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-container .faq-active .faq-circle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq-container .faq-item .faq-content p {
  font-size: clamp(0.938rem, 0.909rem + 0.12vw, 1rem);/*15-16*/
  margin-bottom: 0;
  padding: 10px 20px 0;
}

@media (max-width: 440px) {
  .faq-container .faq-item .faq-content p {
	padding: 10px 5px 0;
  }
}

/*.faq-container .faq-item .faq-content p::before {
  content: "A";
  font-size: 18px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--accent-color);
  position: absolute;
  top: 20px;
  left: 2px;
  line-height: 1.7;
}*/

.faq-container .faq-item .faq-circle {
  position: absolute;
  top: 24px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: var(--accent-color);
}

.faq-container .faq-item .faq-circle:hover {
  transform: rotate(90deg);
}








/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
}

.about::after {
  content: "";
  display: block;
  width: 160px;
  height: 160px;
  background-image: url(../img/petal.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transform: rotate(90deg);
  z-index: -1;
  opacity: 0.5;
}


.about .about-veg {
	background-image: url("../img/veg-tomato.jpg");
	background-repeat: no-repeat;
	/*background-position: -50px center;*/
	background-position: left center;
	background-size: 70%;
	padding-top: 100px;
	padding-bottom: 100px;
}
@media (max-width: 991px) {
  .about .about-veg {
	background-position: center;
	background-size: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.about .about-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  padding: clamp(2.5rem, 1.364rem + 4.85vw, 5rem);/*40-80*/
  background-color: var(--color-lightpink);
}

@media (max-width: 991px) {
  .about .about-item {
    margin: 80px 15px;
  }
  .about .about-item h3 {
    text-align: center;
  }
}




/*--------------------------------------------------------------
# Vegetable Action Section
--------------------------------------------------------------*/
.vegetable-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
  min-height: 400px;
  height: 100%;
}

.vegetable-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


/*--------------------------------------------------------------
# Info Section
--------------------------------------------------------------*/
.info {
  position: relative;
}

.info::before {
  content: "";
  display: block;
  width: 160px;
  height: 160px;
  background-image: url(../img/petal.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: 20px;
  transform: rotate(90deg);
  z-index: -1;
  opacity: 0.5;
}

.info .event-veg {
	background-image: url("../img/veg-rice.jpg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 70%;
	padding-top: 100px;
	padding-bottom: 100px;
}
@media (max-width: 991px) {
  .info .event-veg {
	background-position: center;
	background-size: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.event-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  /*padding: clamp(1.25rem, -0.455rem + 7.27vw, 5rem);*//*20-80*/
  padding: clamp(40px, 4.8485vw + 21.82px, 80px) clamp(20px, 7.2727vw + -7.27px, 80px);/*Y40-80, X20-80*/
  background-color: var(--color-lightpink);
}

@media (max-width: 991px) {
  .event-item {
    margin: 80px 15px;
  }
}


.event-item .event-list {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .event-item .event-list {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
	margin-bottom: 0;
  }
}
.event-item .event-list dt,
.event-item .event-list dd {
  padding: 5px 10px;
  margin: 0; 
}
.event-item .event-list dt {
  font-size: clamp(0.75rem, 0.665rem + 0.36vw, 0.938rem);/*12-15*/  
}
.event-item .event-list dd {
  font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);/*14-15*/
}

.event-item .event-list dt span {
  background-color: #fff;
  font-weight: 500;
  border: 1px solid #ddd;
  padding: 5px 10px;
  width: 100px;
  display: inline-block;
  text-align: center;
}



@media (max-width: 991px) {
  .event-item .event-list dt span {
    padding: 3px 10px;
    margin-bottom: 0;
    width: 80px;
  }
  .event-item .event-list dd {
    margin-bottom: 10px;
  }
}



/*--------------------------------------------------------------
# Event Page
--------------------------------------------------------------*/

.access-map {
  aspect-ratio: 16/9;
  position: relative;
  width: 100%;
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.access-map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.center-nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2rem 0 3rem;
}

@media (max-width: 1199px) {
  .center-nav-wrapper {
    padding: 0;
    justify-content: left;
  }
}

.center-nav-wrapper ul {
  gap: 1rem;
  padding-left: 0;
}
@media (max-width: 1199px) {
  .center-nav-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* 縦の間隔調整 */
    align-items: flex-start; /* 左寄せにしたい場合 */
  }
}

.center-nav-wrapper a:hover {
  color: var(--accent-color);
}

.nav-item-btn a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 1em 2em;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border: 2px solid var(--accent-color);
  color: var(--accent-color);
}
@media (max-width: 1399px) {
  .nav-item-btn a {
    padding: 0.7em 1em;
  }
}


@media (min-width: 1200px) {
  .nav-item-btn a.bi-chevron-right::before {
    display: none;
  }
}
@media (max-width: 1199px) {
  .nav-item-btn a {
    padding: 0;
    border: none;
  }
  .nav-item-btn a.bi-chevron-right::before {
    padding-right: .25rem;
    content: "\F285";
    font-size: 1.25rem;
  }
}

.nav-item-btn a:hover {
  /*background-color: var(--color-lightpink);*/
  color: var(--default-color);
}
@media (max-width: 1199px) {
  .nav-item-btn a:hover {
     background-color: var(--color-white);
  }
}

#info-daimaru,
#info-yanmar,
#info-toYanmar,
#info-SchoolsAndProduct {
  scroll-margin-top: 100px !important;
}


/*.info-toYanmar-list {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .info-toYanmar-list {
    padding-left: 0;
  }
}

.info-toYanmar-list li {
  margin-bottom: 0.5rem; 
}
@media (max-width: 767px) {
  .info-toYanmar-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0.5em;
  }
}
.info-toYanmar-list .list-num {
  margin-right: .25rem;
  font-style: italic;
  color: var(--accent-color);
  font-size: 1.15rem;
}

.info-toYanmar-list a {
  color: #3E3E3E;
  padding-left: 5px;
}

.info-toYanmar-list a:hover {
  color: var(--accent-color);
}

.info-toYanmar-list a::after {
  font-family: "bootstrap-icons";
  content: "\F138";
  display: inline-block;
  margin-left: 0.3em;
  color: var(--accent-color);
}*/





#map001,
#map002,
#map003,
#map004,
#map005,
#map006,
#map007,
#map008 {
  scroll-margin-top: 60px;
}
.info-toYanmar-num {
  position: relative;
  display: flex;
  /*justify-content: center;
  align-items: center;*/
  font-size: 20px;
  color: #000;
  margin: 50px 0;
}
@media (max-width: 767px) {
  .info-toYanmar-num {
    margin: 50px 0 10px;
  }
}

.info-toYanmar-num::after {
  position: absolute;
  top: 30%;
  left: 5%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  /*color: rgba(255, 12, 152, 0.5);*/
  color: var(--accent-color);
  /*z-index: -1;*/
  white-space: nowrap;
  font-style: italic;
}
#map001 .info-toYanmar-num::after {
  content: '1';
}
#map002 .info-toYanmar-num::after {
  content: '2';
}
#map003 .info-toYanmar-num::after {
  content: '3';
}
#map004 .info-toYanmar-num::after {
  content: '4';
}
#map005 .info-toYanmar-num::after {
  content: '5';
}
#map006 .info-toYanmar-num::after {
  content: '6';
}
#map007 .info-toYanmar-num::after {
  content: '7';
}
#map008 .info-toYanmar-num::after {
  content: '8';
}
.info-toYanmar-num p {
  /*padding-left: 3.5em;*/
  padding-left: 3em;
  font-size: 1rem !important;
  line-height: 1.5;
}


/*.custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: var(--accent-color);
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

.custom-accordion .accordion-item .btn-link:before {
  content: "\f282";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--default-color);
}

.custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--default-color);
  top: 50%;
  transform: translateY(-50%);
}

.custom-accordion .accordion-item .accordion-body {
  padding: 20px;
  color: var(--default-color);
}

@media (max-width: 991px) {
  .custom-accordion .accordion-item .accordion-body {
    padding: 20px 10px;
  }
}

.custom-accordion .accordion-item i.bi {
  font-family: "bootstrap-icons" !important;
  content: "\F797";
  color: var(--accent-color);
}
.custom-accordion .accordion-item p {
  font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
}
@media (max-width: 991px) {
  .custom-accordion .accordion-item p {
    margin-bottom: 2rem;
  }
}

.custom-accordion .accordion-item p::before {
	content: attr(data-en);
	position: absolute;
	top: 0px;
	left: 0;
	color: rgba(5,62,98,0.2);
	font-size: 40px;
	text-transform: uppercase;
	z-index: 1;
}*/


.article-details .container i.bi {
  font-family: "bootstrap-icons" !important;
  content: "\F797";
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts {
  position: relative;
	/*margin-bottom: 12rem;*/
}
@media (max-width: 1199px) {
  .recent-posts {
	  margin-bottom: auto;
  }
}

.recent-posts::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background-image: url(../img/petal.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 30px;
  right: 5%;
  transform: rotate(90deg);
  z-index: -1;
  opacity: 0.5;
}

@media (max-width: 575px) {
  .recent-posts .posts-container {
    padding: 0 6vw;
  }
}

@media (max-width: 576px) {
  .recent-posts .posts-col {
    padding: 0 1.6%;
  }
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

.recent-posts .card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
}
.recent-posts .card-title {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.recent-posts .card-title a {
  color: var(--heading-color);
  transition: 0.3s;
}
.recent-posts .card-title a:hover {
  color: var(--accent-color);
}

.recent-posts .card-img-top {
  width: 100%;
  height: auto;
  border-radius: 0;
}

/*.recent-posts .post-img {
  height: 240px;
  overflow: hidden;
}*/


@media (min-width: 992px) {
  .recent-posts .post-img {
    height: 240px;
  }
}
.recent-posts .post-img {
  overflow: hidden;
}

.recent-posts .swiper-wrapper {
  transition-timing-function: ease-in-out !important;
}

.recent-posts .swiper-button-next,
.recent-posts .swiper-button-prev {
  width: 48px;
  height: 48px;
  background-color: var(--color-white);
  border-radius: 50%;
}

.recent-posts .swiper-button-next:after,
.recent-posts .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 20px;
  font-weight: bolder;
  text-transform: none!important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: var(--accent-color);
}
/*.recent-posts .swiper-button-prev:after,
.recent-posts .swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.recent-posts .swiper-button-next,
.recent-posts .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset,10px);
  left: auto;
}
.recent-posts .swiper-button-next:after,
.recent-posts .swiper-rtl .swiper-button-prev:after {
  content: 'next';
}*/

.recent-posts .swiper-pagination {
  display: none;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Article Page
--------------------------------------------------------------*/
.article-page .main {
  padding-top: 60px;
}
/*@media (max-width: 991px) {
  .article-page .main {
    padding-top: 3rem;
  }
}*/

.article-page .article-details:before {
  content: "";
  display: block;
  width: 180px;
  height: 180px;
  background-image: url(../img/petal.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: fixed;
  top: 180px;
  right: 2%;
  transform: rotate(45deg);
  z-index: -1;
  opacity: 0.5;
}

.article-page .article-details:after {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background-image: url(../img/petal.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: fixed;
  bottom: 15%;
  left: 2%;
  transform: rotate(90deg);
  z-index: -1;
  opacity: 0.5;
}

.article-page .heading h1 {
  font-size: clamp(1.375rem, 1.091rem + 1.21vw, 2rem);/*22-32*/
  font-family: var(--heading-font);
  font-weight: 400;
}


/*--------------------------------------------------------------
# Article Details Section
--------------------------------------------------------------*/
.article-details.section {
  padding: 0 0 150px;
}

.article-details .article {
  /*background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);*/
}

/*.article-details .post-img {
  margin-bottom: 20px;
  overflow: hidden;
}*/

.article-details .title {
  color: var(--heading-color);
  font-size: clamp(1.25rem, 1.023rem + 0.97vw, 1.75rem);/*20-28*/
  font-weight: 600;
  /*padding: 0;*/
  /*margin: 20px 0 32px !important;*/
  /*margin-bottom: 2rem;*/
  margin-bottom: 1rem;
}

.article-details .title-event {
  color: var(--heading-color);
  font-size: clamp(1.25rem, 1.023rem + 0.97vw, 1.75rem);/*20-28*/
  /*font-weight: 600;*/
  /*padding: 0;*/
  margin: 20px 0 32px !important;
  padding: 0.2rem 1rem;
  border-left: 4px solid var(--accent-color);
}
@media (max-width: 991px) {
  .article-details #info-toYanmar.title-event {
    margin: 20px 0 0 !important;
  }
}
.article-details .content {
  margin-top: 20px;
}

.article-details h3 {
  font-size: 20px;
  font-weight: bold;
  /*margin-top: 30px;*/
  margin-bottom: 2rem;
}

.article-details .event-item {
  margin-bottom: 5rem;
}
@media (max-width: 991px) {
  .article-details .event-item {
    margin: 0 0 3rem;
  }
}
