#twemojiOptions {
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  background: #fff;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #222;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  opacity: 0;
}
body.loaded {
  animation: fadeIn 0.8s ease forwards;
}
body:not(.loaded) .headerNav {
  display: none;
}

*, *:before, *:after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
  font-weight: 500;
}
@media (min-width: 560px) {
  body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure {
    letter-spacing: 0.05em;
  }
}

ul, ol {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
  outline: none;
}

main {
  display: block;
}

.inner {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .inner {
    width: min(90%, 1400px);
  }
}

.en {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
}

.contTopSec {
  padding: 10px 0 50px;
}
@media (min-width: 560px) {
  .contTopSec {
    padding: 30px 0 80px;
  }
}
@media (min-width: 1024px) {
  .contTopSec {
    padding: 70px 0 120px;
  }
}
@media (min-width: 1260px) {
  .contTopSec {
    padding: 100px 0 150px;
  }
}

.sec {
  padding: 50px 0;
}
@media (min-width: 560px) {
  .sec {
    padding: 80px 0;
  }
}
@media (min-width: 1024px) {
  .sec {
    padding: 120px 0;
  }
}
@media (min-width: 1260px) {
  .sec {
    padding: 150px 0;
  }
}

.secTop {
  padding-top: 40px;
}
@media (min-width: 560px) {
  .secTop {
    padding-top: 80px;
  }
}
@media (min-width: 1024px) {
  .secTop {
    padding-top: 120px;
  }
}
@media (min-width: 1260px) {
  .secTop {
    padding-top: 150px;
  }
}

.secTtl {
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  color: rgb(40, 101, 57);
  text-align: center;
}
@media (min-width: 560px) {
  .secTtl {
    font-size: clamp(4rem, 5vw, 5.2rem);
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .secTtl {
    margin-bottom: 80px;
  }
}
.secTtl span {
  display: block;
  font-size: 1.6rem;
  color: #222;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
@media (min-width: 560px) {
  .secTtl span {
    font-size: clamp(1.8rem, 1.8vw, 2.3rem);
  }
}

.boothTtl {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .boothTtl {
    font-size: clamp(2.2rem, 2.8vw, 3.2rem);
    margin-bottom: 30px;
  }
}

.boothSummary {
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  line-height: 2.2;
  text-align: justify;
}

.boothInfo {
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  line-height: 1.5;
  text-align: justify;
  margin-top: 20px;
}

.btnWrap {
  text-align: center;
}
.btnWrap .btn {
  display: inline-block;
}

.btn {
  position: relative;
}
.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 27px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background: #7EA88C;
  background: linear-gradient(180deg, rgba(126, 168, 140, 0.9) 0%, rgba(180, 190, 185, 0.9) 100%);
  transform: translateY(-50%) scale(1);
  transform-origin: center center;
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
@media (min-width: 768px) {
  .btn:after {
    right: 17px;
    width: 70px;
    height: 70px;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    right: -30px;
  }
}
.btn span {
  display: block;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  padding-right: 120px;
  z-index: 1;
  color: rgb(40, 101, 57);
}
.btn span:before, .btn span:after {
  content: "";
  position: absolute;
  top: 50%;
  transition: 0.3s;
}
.btn span:before {
  width: 50px;
  height: 1.8px;
  background: rgb(40, 101, 57);
  transform: translateY(-50%);
  left: calc(100% - 100px);
}
.btn span:after {
  width: 10px;
  height: 10px;
  left: calc(100% - 61px);
  border-top: 1.8px solid rgb(40, 101, 57);
  transform: translateY(-28%) rotate(20deg);
}
.btn:hover:after {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}
.btn:hover span {
  color: rgb(40, 101, 57);
}
@media (min-width: 768px) {
  .btn:hover span:before {
    width: 100px;
  }
}
@media (min-width: 768px) {
  .btn:hover span:after {
    left: calc(100% - 11px);
  }
}

.exLink {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.1;
}
.exLink:hover span {
  border-color: transparent;
}
.exLink span {
  color: rgb(40, 101, 57);
  border-bottom: 1px solid rgb(40, 101, 57);
  padding-bottom: clamp(3px, 0.5vw, 5px);
  transition: 0.3s;
}
.exLink img {
  max-width: 18px;
  padding-bottom: 5px;
  width: 4%;
}

.pc {
  display: block;
}
@media (min-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: block;
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.fadeIn {
  opacity: 0;
}
.fadeIn.is-visible {
  animation: fadeIn 0.8s ease forwards;
}
.fadeIn.up.is-visible {
  animation: fadeUp 0.8s ease forwards;
}
.fadeIn.left.is-visible {
  animation: fadeLeft 0.8s ease forwards;
}
.fadeIn.right.is-visible {
  animation: fadeRight 0.8s ease forwards;
}

.newsCont time {
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  line-height: 1;
  min-width: 5em;
  white-space: nowrap;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .newsCont time {
    font-size: clamp(1.4rem, 1.6vw, 1.8rem);
    margin-top: 3px;
    margin-right: 20px;
  }
}
.newsCont .tag {
  display: block;
  min-width: 4em;
  color: #fff;
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 3px;
  padding: 3px 6px 4px;
  white-space: nowrap;
  margin-right: 50px;
}
.newsCont .tag.event {
  background: #b13e3a;
}
.newsCont .tag.news {
  background: #4467a1;
}
@media (min-width: 768px) {
  .newsCont .tag {
    min-width: 4.5em;
    border-radius: 5px;
    padding: 5px 10px 7px;
  }
}

.newsList {
  border-top: 1px solid #ccc;
  margin: 0 auto 0 0;
}
.newsList li {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .newsList li {
    flex-wrap: nowrap;
    padding: 25px;
  }
}
.newsList li a {
  width: 100%;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  line-height: 1.7;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .newsList li a {
    flex: 1;
    margin-top: 0;
  }
}
.newsList li a:hover {
  color: rgb(40, 101, 57);
}

.ithList li:not(:last-child) {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .ithList li:not(:last-child) {
    margin-bottom: 100px;
  }
}
.ithList li .ithWrap {
  display: flex;
  gap: 24px;
}
@media (min-width: 768px) {
  .ithList li .ithWrap {
    gap: 6vw;
  }
}
@media (min-width: 1480px) {
  .ithList li .ithWrap {
    gap: 140px;
  }
}
.ithList li .ithWrap .txt {
  flex: 1;
  display: flex;
  align-items: center;
}
.ithList li .ithWrap .txt .boothSummary {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .ithList li .ithWrap .txt .boothSummary {
    margin-bottom: 40px;
  }
}
.ithList li .ithWrap .txt .btn {
  display: inline-block;
}
@media (min-width: 768px) {
  .ithList li .ithWrap .img {
    width: 45%;
  }
}
.ithList li:nth-child(odd) .ithWrap {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .ithList li:nth-child(odd) .ithWrap {
    flex-direction: row;
  }
}
.ithList li:nth-child(even) .ithWrap {
  flex-direction: column;
}
@media (min-width: 768px) {
  .ithList li:nth-child(even) .ithWrap {
    flex-direction: row;
  }
}

header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
}
header.is-scroll {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}
header.is-scroll .inner {
  padding: 5px 0;
}
@media (min-width: 768px) {
  header.is-scroll .inner {
    padding: 10px 0;
  }
}
header.is-scroll .inner .logo {
  width: 16%;
  min-width: 200px;
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
header .inner .logo {
  width: 22%;
  min-width: 260px;
}
@media (min-width: 560px) {
  header .inner .logo {
    width: 18%;
  }
}
@media (min-width: 1260px) {
  header .inner .logo {
    width: 22%;
    min-width: 260px;
  }
}
header .inner .headerNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100dvh;
  transition: 0.4s;
  z-index: 1000;
}
@media (min-width: 560px) {
  header .inner .headerNav {
    width: 55%;
  }
}
@media (min-width: 768px) {
  header .inner .headerNav {
    width: 45%;
  }
}
@media (min-width: 1024px) {
  header .inner .headerNav {
    position: static;
    width: auto;
    height: auto;
    background: none;
  }
}
header .inner .headerNav:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 10px;
}
header .inner .headerNav:hover .subMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}
header .inner .headerNav.active {
  background: #fff;
  right: 0;
  box-shadow: 0 -20px 20px rgba(0, 0, 0, 0.05);
}
header .inner .headerNav.active ul li.subMenuWrap {
  text-align: center;
}
header .inner .headerNav.active ul li.subMenuWrap:after {
  display: none;
}
header .inner .headerNav.active ul li.subMenuWrap .subMenu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
  background: none;
  box-shadow: none;
}
header .inner .headerNav.active ul li.subMenuWrap .subMenu li:last-child a {
  padding-bottom: 20px;
}
header .inner .headerNav.active ul li.subMenuWrap .subMenu li a {
  font-size: 1.8rem;
  padding: 15px 30px;
}
@media (min-width: 560px) {
  header .inner .headerNav.active ul li.subMenuWrap .subMenu li a {
    font-size: clamp(1.6rem, 1.6vw, 2.1rem);
    padding: 10px 30px;
  }
}
header .inner .headerNav.active ul li.contactBtn a {
  padding: 15px 45px 15px 30px;
}
header .inner .headerNav.active ul li a {
  font-size: 2.4rem;
}
@media (min-width: 1024px) {
  header .inner .headerNav.active ul li a {
    font-size: clamp(1.8rem, 1.8vw, 2.3rem);
  }
}
header .inner .headerNav > ul {
  display: flex;
  align-items: center;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}
@media (min-width: 1024px) {
  header .inner .headerNav > ul {
    flex-direction: row;
    height: auto;
    justify-content: flex-end;
    gap: 1.2vw;
  }
}
@media (min-width: 1480px) {
  header .inner .headerNav > ul {
    gap: 30px;
  }
}
header .inner .headerNav > ul li.subMenuWrap {
  position: relative;
}
header .inner .headerNav > ul li.subMenuWrap:hover .subMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}
header .inner .headerNav > ul li.subMenuWrap:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 50px;
}
header .inner .headerNav > ul li.subMenuWrap .subMenu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
header .inner .headerNav > ul li.subMenuWrap .subMenu:hover {
  opacity: 1;
  visibility: visible;
}
header .inner .headerNav > ul li.subMenuWrap .subMenu li:first-child a {
  padding-top: 30px;
}
header .inner .headerNav > ul li.subMenuWrap .subMenu li:last-child a {
  padding-bottom: 30px;
}
header .inner .headerNav > ul li.subMenuWrap .subMenu li a {
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  display: block;
  padding: 10px 30px;
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (min-width: 768px) {
  header .inner .headerNav > ul li.subMenuWrap .subMenu li a {
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  }
}
header .inner .headerNav > ul li a {
  color: #003704;
  line-height: 1;
  padding: 10px;
}
@media (min-width: 1024px) {
  header .inner .headerNav > ul li a {
    font-size: clamp(1.6rem, 1.8vw, 2rem);
    letter-spacing: 0.01em;
    padding: 10px 5px;
  }
}
@media (min-width: 1480px) {
  header .inner .headerNav > ul li a {
    letter-spacing: 0.05em;
    padding: 10px;
  }
}
header .inner .headerNav > ul li a:hover {
  color: rgb(40, 101, 57);
}
header .inner .headerNav > ul li.contactBtn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(40, 101, 57);
  position: relative;
  color: #fff;
  border-radius: 100px;
  padding-left: 20px;
  padding-right: 40px;
  font-size: 2.2rem;
}
@media (min-width: 1024px) {
  header .inner .headerNav > ul li.contactBtn .btn {
    font-size: clamp(1.5rem, 1.7vw, 1.9rem);
  }
}
header .inner .headerNav > ul li.contactBtn .btn:hover {
  opacity: 0.8;
}
header .inner .headerNav > ul li.contactBtn .btn:before, header .inner .headerNav > ul li.contactBtn .btn:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
}
header .inner .headerNav > ul li.contactBtn .btn:before {
  width: 8px;
  height: 8px;
  border-top: 1.6px solid #fff;
  border-right: 1.6px solid #fff;
  margin-top: -4px;
  transform: rotate(45deg);
}
header .inner .headerNav > ul li.contactBtn .btn:after {
  width: 14px;
  height: 1.6px;
  background: #fff;
  opacity: 1;
  transform: translate(0, -50%);
}
header .hamburger {
  display: block;
  padding: 0;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
@media (min-width: 1024px) {
  header .hamburger {
    display: none;
  }
}
header .hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px auto;
  background: #000;
  transition: 0.3s;
}
header .hamburger.active {
  right: 0;
}
header .hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-4px, -4px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(4px, 4px);
  }
}
#contents {
  scroll-margin-top: 60px;
}
@media (min-width: 768px) {
  #contents {
    scroll-margin-top: 68px;
  }
}

#contents {
  position: relative;
}
#contents .contBg01, #contents .contBg02 {
  position: relative;
}
#contents .contBg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
#contents .contBg span {
  position: fixed;
  top: 0;
  width: 80vw;
  height: 100vh;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#contents .contBg span:nth-child(1) {
  left: 0;
}
#contents .contBg span:nth-child(2) {
  right: 0;
}
#contents .contBg01 .contBg span {
  min-width: 800px;
  background-image: url(../images/bg01.svg);
}
@media (min-width: 1260px) {
  #contents .contBg01 .contBg span {
    min-width: 1000px;
  }
}
#contents .contBg01 .contBg span:nth-child(1) {
  background-position: 0 -80%;
  transform: translate(-30%, 0);
  left: 0;
}
@media (min-width: 768px) {
  #contents .contBg01 .contBg span:nth-child(1) {
    background-position: 0 0;
  }
}
@media (min-width: 1260px) {
  #contents .contBg01 .contBg span:nth-child(1) {
    background-position: 0 80%;
  }
}
#contents .contBg01 .contBg span:nth-child(2) {
  background-position: -40% 120%;
  transform: scale(-1, 1) translate(-30%, 30%);
  top: auto;
  bottom: 0;
  right: 0;
}
@media (min-width: 768px) {
  #contents .contBg01 .contBg span:nth-child(2) {
    background-position: -40% 0;
  }
}
@media (min-width: 1260px) {
  #contents .contBg01 .contBg span:nth-child(2) {
    background-position: -40% -40%;
  }
}
#contents .contBg02 {
  background: #fff;
}
#contents .contBg02 .contBg {
  z-index: 1;
}
#contents .contBg02 .contBg span {
  min-width: 1300px;
  background-image: url(../images/bg02.svg);
  background-position: 0 0;
  background-size: 100% auto;
  position: absolute;
  opacity: 0.4;
  height: 35%;
  width: 200%;
  top: auto;
}
@media (min-width: 768px) {
  #contents .contBg02 .contBg span {
    width: 140%;
  }
}
#contents .contBg02 .contBg span:nth-child(1) {
  top: -15%;
  left: -100%;
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  #contents .contBg02 .contBg span:nth-child(1) {
    top: -5%;
    left: -60%;
  }
}
@media (min-width: 834px) {
  #contents .contBg02 .contBg span:nth-child(1) {
    left: -40%;
  }
}
@media (min-width: 1480px) {
  #contents .contBg02 .contBg span:nth-child(1) {
    top: 0;
  }
}
#contents .contBg02 .contBg span:nth-child(2) {
  bottom: -15%;
  right: -100%;
}
@media (min-width: 768px) {
  #contents .contBg02 .contBg span:nth-child(2) {
    bottom: -5%;
    right: -60%;
  }
}
@media (min-width: 834px) {
  #contents .contBg02 .contBg span:nth-child(2) {
    right: -40%;
  }
}
@media (min-width: 1480px) {
  #contents .contBg02 .contBg span:nth-child(2) {
    bottom: 0;
  }
}
#contents .contBg02 .contBg span:nth-child(3) {
  top: 50%;
  right: 0;
}
@media (min-width: 768px) {
  #contents .contBg02 .contBg span:nth-child(3) {
    display: none;
  }
}
#contents .contBg02 .contentsWrap {
  z-index: 2;
}
#contents .contentsWrap {
  position: relative;
  z-index: 1;
}

#footer {
  background: rgb(40, 101, 57);
  color: #fff;
  padding: 50px 0;
}
#footer .logoWrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  #footer .logoWrap {
    align-items: center;
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 834px) {
  #footer .logoWrap {
    gap: 60px;
  }
}
#footer .logoWrap .logo {
  width: 76%;
  margin: 0 auto;
}
@media (min-width: 560px) {
  #footer .logoWrap .logo {
    width: 60%;
  }
}
@media (min-width: 768px) {
  #footer .logoWrap .logo {
    width: 40%;
    margin: 0;
  }
}
@media (min-width: 834px) {
  #footer .logoWrap .logo {
    width: 22%;
    min-width: 260px;
  }
}
#footer .logoWrap .addWrap {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  #footer .logoWrap .addWrap {
    text-align: left;
  }
}
#footer .logoWrap .addWrap .add {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  #footer .logoWrap .addWrap .add {
    justify-content: flex-start;
  }
}
#footer .logoWrap .addWrap .add.add01 {
  flex-direction: column;
}
@media (min-width: 1024px) {
  #footer .logoWrap .addWrap .add.add01 {
    gap: 30px;
    flex-direction: row;
  }
}
#footer .logoWrap .addWrap .add.add02 {
  gap: 20px;
}
#footer .logoWrap .addWrap .add .name {
  font-size: 2rem;
}
@media (min-width: 768px) {
  #footer .logoWrap .addWrap .add .name {
    font-size: 1.6rem;
  }
}
#footer .logoWrap .addWrap .add .address {
  font-weight: 400;
}
#footer .logoWrap .addWrap .add .tel, #footer .logoWrap .addWrap .add .fax, #footer .logoWrap .addWrap .add .mail {
  font-weight: 400;
}
#footer .footerNav {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 0.5px solid #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  #footer .footerNav {
    text-align: left;
  }
}
@media (min-width: 834px) {
  #footer .footerNav {
    gap: 0;
    flex-direction: row;
    justify-content: space-between;
    flex-direction: column;
  }
}
@media (min-width: 1260px) {
  #footer .footerNav {
    flex-direction: row;
  }
}
#footer .footerNav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  #footer .footerNav ul {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
}
@media (min-width: 1260px) {
  #footer .footerNav ul {
    justify-content: flex-start;
  }
}
#footer .footerNav ul li {
  position: relative;
}
@media (min-width: 768px) {
  #footer .footerNav ul li:not(:last-child) {
    padding-right: 25px;
    margin-right: 25px;
  }
  #footer .footerNav ul li:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 20px;
    margin-top: -10px;
    background: #fff;
  }
}
#footer .footerNav ul li a {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1;
  display: block;
  padding: 10px 0;
  text-align: center;
  white-space: nowrap;
  font-weight: 400;
}
@media (min-width: 768px) {
  #footer .footerNav ul li a {
    font-size: clamp(1.6rem, 1.8vw, 2rem);
    padding: 0;
  }
}
#footer .footerNav ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
}
#footer .footerNav .copyright {
  text-align: center;
}
@media (min-width: 834px) {
  #footer .footerNav .copyright {
    margin-top: 20px;
  }
}
@media (min-width: 1260px) {
  #footer .footerNav .copyright {
    margin-top: 0;
    text-align: right;
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* category, detail common */
@media (min-width: 768px) {
  .contSection .inner {
    width: min(90%, 1200px);
  }
}
.contSection #fv_cont {
  max-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .contSection #fv_cont {
    max-height: 500px;
  }
}
.contSection .secTtl {
  font-size: clamp(3rem, 3.6vw, 3.8rem);
}
.contSection .secTtl span {
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  margin-top: 5px;
  color: rgba(34, 34, 34, 0.5);
}
.contSection .linkBtn {
  margin-top: 60px;
  margin-left: 2em;
}
@media (min-width: 768px) {
  .contSection .linkBtn {
    margin-top: 120px;
    margin-left: 5em;
  }
}

.breadcrumb {
  padding: 20px;
  font-size: clamp(1.3rem, 1.3vw, 1.4rem);
  overflow-x: scroll;
  overflow-x: auto;
  overflow-y: hidden;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
}
.breadcrumb ol li {
  position: relative;
  padding-right: 20px;
  margin-right: 15px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.breadcrumb ol li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
}
.breadcrumb ol li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.breadcrumb ol li a {
  color: rgb(40, 101, 57);
  padding-right: 0;
  margin-right: 0;
  transition: 0.1s;
  border-bottom: 1px solid rgb(40, 101, 57);
}
.breadcrumb ol li a:hover {
  border-color: transparent;
}