@charset "utf-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
body.fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
a:link,a:visited,a:hover,a:active{
    text-decoration: none;
    color:#fffffc;
}
img{max-width:100%;height:auto;}
.wrapper{
    background-color: #103511;
}
header{
    display:flex;
    justify-content:space-between;
    padding-top: 80px;
    padding-left: 6%;
}
.logo{
    margin-top:-20px;
}
nav{
    display:flex;
    justify-content: space-around;
}
ol{
  display: flex;
  list-style: none;
  font-family:"Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16;
}
.li-margin{
    margin-right:50px;
}
@media (max-width: 768px) {
  .hamburger-fade {
    display: flex !important; 
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }
  header nav {
    display: none;
  }

  .scroll-bottun {
    display: none !important;
  }
}
.first-nav{
  color: transparent;
  background: linear-gradient(to right, #E0B020 50%, #fffffc 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.5s;
  position: relative;
  display: inline-block;
}
.first-nav:hover {
  background-position: 0 100%;
}
.first-nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; 
  height: 1px; 
  width: 0;
  background-color: #E0B020; 
  transition: width 0.5s ease;
  border-radius: 2px; 
}
.first-nav:hover::after {
  width: 100%;
}
li{
  width: 130px;
  font-family:"Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16;
}
label,input,select,button{
  font-family:"Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
    font-size: 16;
}
p{
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16;
    color:#fffffc;
    line-height: 170%;
}
h1{
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 48px;
    color:#0e0e0f;
}
h2{
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    color:#0e0e0f;
}
h3{
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color:#0e0e0f;
}
h4{
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color:#0e0e0f;

}
main{
  background-color: #BDDC56;
}
footer{
    background-color: #000;
}
.footer-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top:55px;
    padding-bottom:25px ;
    padding-right:115px;
}
.footer-logo-box{
    margin-left: 115px;
}
.footer-bottom{
    display: flex;
    justify-content: space-between;
    padding:0px 115px;
    padding-bottom: 20px;
}
@media (max-width: 768px) {
  .footer-top,
  .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px;
  }
  .footer-logo-box {
      margin-left: 0;
      margin-bottom: 20px;
  }
  .footer-top ol {
      display: flex;
      flex-direction: column; 
      align-items: flex-end;
      list-style: none;
      margin-left: 10px;
      text-align: right;
      gap: 10px;
      width: 100%;
      max-width: 300px; 
  }
  .footer-top ol li {
    margin: 10px 0;
    white-space: nowrap;
    text-align: right;
    padding: 0; 
  }
  .SNS-box {
      margin-top: 10px;
  }
}
.btn-green{
  margin-top: 70px;
  margin-bottom: 40px;
  width: 60px;
  height: 60px;
  border: 1px solid #0e0e0f;
  transform: rotate(45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s, 0.5s;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.btn-text{
  margin-bottom: 2px;
  transform: rotate(-45deg);
  display: inline-block;
  white-space: nowrap;
}
.btn-green:hover{
  color: #fffffc;
  transform: scale(1.05) rotate(45deg);
}
.btn-green:hover h3{
}
.btn-green:hover .btn-text{
  animation: slideText 1s ease forwards;
}

@keyframes slideText{
  0% {
    transform:rotate(-45deg) translateX(0);
  }
  49% {
    transform: rotate(-45deg) translateX(50%); opacity: 0;
  }
  50% {
    transform: rotate(-45deg) translateX(-50%);
  }
  100% {
    transform: rotate(-45deg) translateX(0);
  }
}
.btn-yello{
  margin-top: 20px;
  margin-bottom: 40px;
  left: 30%;
  width: 60px;
  height: 60px;
  border: 1px solid #0e0e0f;
  transform: rotate(45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background-color: #fffffc;
}
.btn-yello:hover{
  background-color: #E0B020;
  color: #0e0e0f;
  transform: scale(1.05) rotate(45deg);
}
.btn-yello:hover .btn-text{
  animation: slideText 1s ease forwards;
}
.btn-green-reverse{
  margin-top: 60px;
  margin-bottom: 40px;
  width: 60px;
  height: 60px;
  border: 1px solid #0e0e0f;
  color: #0e0e0f;
  transform: rotate(45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s, color 0.5s;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.btn-green-text {
  margin-bottom: 2px;
  transform: rotate(-45deg);
  display: inline-block;
  white-space: nowrap;
}
.btn-green-reverse:hover {
  background-color: #103511;
  color: #fffffc;
}
.btn-green-reverse:hover h3{
  color: #fffffc;
}
.btn-green-reverse:hover .btn-green-text {
  animation: slideText-reverse 0.8s ease forwards;
}

@keyframes slideText-reverse {
  0% {
    transform:rotate(-45deg) translateX(0);
  }
  49% {
    transform: rotate(-45deg) translateX(-50%);opacity: 0;
  }
  50% {
    transform: rotate(-45deg) translateX(50%);
  }
  100% {
    transform: rotate(-45deg) translateX(0);
  }
}
.hamburger-fade {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 1000;
  width: 28px;
  height: 21px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.hamburger-fade.visible,
.hamburger-fade.scrolled,
.hamburger-fade.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.hamburger-fade__wrapper{
  position: relative;
  width: 35px;
  height: 31px;
  margin: 0 auto;
  cursor: pointer;
}
.hamburger-fade__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fffffc;
  border-radius: 2.5px;
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.page-contact .hamburger-fade__line,
.page-about .hamburger-fade__line,
.page-news .hamburger-fade__line,
.page-faq .hamburger-fade__line,
.page-advert .hamburger-fade__line,
.page-privacy .hamburger-fade__line,
.hamburger-fade.dark .hamburger-fade__line{
  background-color: #103511;
}
.hamburger-fade.active .hamburger-fade__line,.hamburger-fade.active.dark .hamburger-fade__line {
  background-color: #fffffc;
}
.hamburger-fade__line:nth-of-type(1) {top: 0;}
.hamburger-fade__line:nth-of-type(2) {top: 14px;}
.hamburger-fade__line:nth-of-type(3) {bottom: 0;}
.hamburger-fade__line:nth-of-type(1) {
  animation: btn07-bar01 .75s forwards;
}
.hamburger-fade__line:nth-of-type(2) {
  opacity: 1;
}
.hamburger-fade__line:nth-of-type(3) {
  animation: btn07-bar03 .75s forwards;
}
@keyframes btn07-bar01{
  0% { transform: translateY(14px) rotate(45deg); }
  50% { transform: translateY(14px) rotate(0); }
  100% { transform: translateY(0) rotate(0); }
}
@keyframes btn07-bar03{
  0% { transform: translateY(-14px) rotate(-45deg); }
  50% { transform: translateY(-14px) rotate(0); }
  100% { transform: translateY(0) rotate(0); }
}

.hamburger-fade.active .hamburger-fade__line:nth-of-type(1){
  animation: active-btn07-bar01 .75s forwards;
}
.hamburger-fade.active .hamburger-fade__line:nth-of-type(2){
  opacity: 0;
}
.hamburger-fade.active .hamburger-fade__line:nth-of-type(3){
  animation: active-btn07-bar03 .75s forwards;
}

.hamburger-fade:hover:not(.active) .hamburger-fade__line:nth-of-type(1) {
  top: -3px;
}
.hamburger-fade:hover:not(.active) .hamburger-fade__line:nth-of-type(2) {
  top: 14px;
}
.hamburger-fade:hover:not(.active) .hamburger-fade__line:nth-of-type(3) {
  bottom: -3px;
}
.hamburger-fade.active:hover {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}
.hamburger-fade__line {
  transition: all 0.3s ease;
}

@keyframes active-btn07-bar01{
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(14px) rotate(0); }
  100% { transform: translateY(14px) rotate(45deg); }
}
@keyframes active-btn07-bar03{
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(0); }
  100% { transform: translateY(-14px) rotate(-45deg); }
}
.nav-fade{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 900;
}
.nav-fade__bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #103511;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-fade.active{
  visibility: visible;
}
.nav-fade.active .nav-fade__bg{
  opacity: 1;
}
.nav-fade__wrapper{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.nav-fade__list{
  padding-right: 40%;
  list-style: none;
  display: flex;
  margin-top: -100px;
}
.nav-fade__item{
  position: relative;
  margin-bottom: 2vh;
  padding-left: 80px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  writing-mode: vertical-rl;
}
.hamtitle-img{
  background: url('../img/hamtitle.png') no-repeat ;
  text-indent: -9999px;
  white-space: nowrap;
  position: absolute;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 400px; 
  background-size: auto 400px;  
}
.nav-title-box{
  padding-bottom: 400px;
  margin-left: 5%;
}
.nav-fade__list a:link,.nav-fade__list a:visited,.nav-fade__list a:hover,.nav-fade__list a:active {text-decoration: none;color: #fffffc;}
.nav-fade.active .nav-fade__item {
  opacity: 1;
  transform: translateX(0);
}
.nav-fade.active .nav-fade__item:nth-child(1) { transition-delay: 0.5s;}
.nav-fade.active .nav-fade__item:nth-child(2) { transition-delay: 0.45s;}
.nav-fade.active .nav-fade__item:nth-child(3) { transition-delay: 0.4s;}
.nav-fade.active .nav-fade__item:nth-child(4) { transition-delay: 0.35s;}
.nav-fade.active .nav-fade__item:nth-child(5) { transition-delay: 0.3s;}
.nav-fade.active .nav-fade__item:nth-child(6) { transition-delay: 0.25s;}
.nav-fade.active .nav-fade__item:nth-child(7) { transition-delay: 0.2s;}
.nav-fade__number {
  position: absolute;
  left: 0;
  color: #666;
  font-size: 14px;
}
.nav-fade__link {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  overflow: hidden;
  color: #fffffc;
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
.nav-fade__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #E0B020;
  transform: translateY(-100%);
  opacity: 1;
  transition: transform 0.3s ease-in-out 0.3s, opacity 0.4s ease-in-out 0.3s;
}
.nav-fade__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fffffc;
  transform: translateY(0); 
  opacity: 1;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.nav-fade__link.hovering::before {
  transform: translateY(0);
  opacity: 1;
}
.nav-fade__link.hovering::after {
  transform: translateY(100%);
  opacity: 1;
}
.nav-fade__link.leaving::before {
  transform: translateY(-100%);
  opacity: 1;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.nav-fade__link.leaving::after {
  transform: translateY(100%);
  opacity: 1;
  transition: none;
}
.nav-fade__link.reentering::after {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s ease-in-out 0.1s, opacity 0.4s ease-in-out 0.1s;
}
@media (max-width: 930px) {
  .nav-fade__item {
    writing-mode: horizontal-tb;
    white-space: nowrap;
    padding-left: 0;
    text-align: right;
    width: max-content;
  }
  .nav-fade__list {
    flex-direction: column-reverse;
    align-items:end;
  }
  .nav-fade__link {
    font-size: 18px;
  }
  .hamtitle-img{
    background-image: url('../img/hamtitle.png');
    height: 300px; 
    background-size: auto 300px;
  }
  .nav-title-box{
    margin-bottom: 7%;
  }
}
.new-item-sec{
  padding-bottom: 40px;
  overflow-x: hidden;
  height:700px;
  background-image: url(../img/washi-green.png);
}
.swiper {
  width: auto; 
  overflow: visible;
  margin-top: 40px;
  
}
.swiper-wrapper {
  width: 100%;
}
.swiper-slide {
  display: flex;
  justify-content: space-around;
  background-color: #fffffc;
  background-image: url(../img/washi.png);
  overflow-x: hidden;
}
.swiper-slide img {
  object-fit: cover; 
}
.item-text-box01{
  margin-left: auto;
  margin-right: 0;
  padding-top: 50px;
  padding-right:50px;
  padding-bottom: 90px;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;
}
.item-text-box02{
  margin-left: auto;
  margin-right: 0;
  display: flex;
  width: 100%;
  writing-mode: vertical-rl;
  flex-flow: column;
}
.item-text-box03{
  margin-right: 40px;
}
.item-img-box{
  height: 500px;
  transition: 2s;
  position: relative;
  overflow: hidden; 
}
.item-img-box img{
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
}
.item-img-box:hover{
  opacity: 0.6;
}
.hover-item{
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #0e0e0f;
  transform: rotate(45deg) scale(0.8);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hover-item h4{
  color: #fffffc;
  font-size: 14px;
  transform: rotate(-45deg); 
}
.item-img-box:hover .hover-item {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
@media only screen and (max-width: 768px) {
  .fade-area {
    height: 300px;
  }
}
@media (max-width: 500px) {
   .item-text-box01 {
    display: none;
  }
  .swiper-slide {
    justify-content: center;
  }
}
.title-img{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 130px; 
  background: url('../img/title.png') no-repeat center/contain;
  background-size: auto 130px;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  transform: translate(-50%, -50%);
}
.topaboutJIN-img{
  background: url('../img/topaboutJIN.png') no-repeat center/contain;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 72px; 
  background-size: auto 72px;
}
.TOPITEM-img{
  background: url('../img/TOPITEM.png') no-repeat center/contain;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 72px; 
  background-size: auto 72px;
  margin-bottom: 60px;
  margin-top: 110px;
}
.TOPINFO-img{
  background: url('../img/TOPINFO.png') no-repeat left center;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 200px;
  height: 49px; 
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .title-img{
    background-image: url('../img/title.png');
    height: 80px; 
    background-size: auto 80px;
    
  }
  .topaboutJIN-img{
    background-image: url('../img/topaboutJIN.png');
    height: 50px; 
    background-size: auto 50px;
  }
  .TOPITEM-img{
    background-image: url('../img/TOPITEM.png');
    height: 50px; 
    background-size: auto 50px;
  }
  .TOPINFO-img{
    background-image: url('../img/TOPINFO.png');
    height: 35px; 
    background-size: auto 35px;
  }
  .hamtitle-img{
    background-image: url('../img/hamtitle.png');
    height: 300px; 
    background-size: auto 300px;
  }
}
.firstview{ 
  background-size: cover;
  background-position: center;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}
@keyframes zoomOutBg {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.fade-list.zooming {
  animation: zoomOutBg 8s ease forwards;
  transform-origin: center center;
}
.fade-area{
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  overflow: hidden;
}
.fade-list{
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}
.fade-list:nth-child(1) {
  background-image:url(../img/firstview01.webp);
}
.fade-list:nth-child(2) {
  background-image: url(../img/firstview02.webp);
}
.fade-list:nth-child(3) {
  background-image: url(../img/firstview03.webp);
}
.first-view-img{
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute;
}
.first-title{
    width: 100%;
    padding-top: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
}
.scroll-bottun{
  width:70px;
  height:70px;
  border: 1px solid #fffffc;
  transform: rotate(45deg);
  position: absolute;
  bottom: 45px;
  right: 45px;
  z-index: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.auto-arrow h2{
  color: #fffffc;
  font-size: 24px;
}
.scroll-bottun:hover{
  transform: scale(1.05)rotate(45deg);;
}
.auto-arrow {
  animation: slideFade 3.5s ease-in-out infinite;
}
@keyframes slideFade {
  0% { opacity: 0; transform: rotate(-45deg) translateY(-20px); }
  50% { opacity: 1; transform: rotate(-45deg) translateY(0); }
  100% { opacity: 0; transform: rotate(-45deg) translateY(20px); }
}
.brand-box{
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fffffc;
  overflow: hidden;
  box-sizing: border-box;
  padding: 120px 50px 160px 50px;
}
.brand-prof{
  margin-top: 50px;
  margin-bottom: -30px;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.brand-prof.visible {
  opacity: 1;
  transform: translateY(0);
}
.brand-prof h1{
  margin-bottom: 30px;
  white-space: nowrap;
}
.brand-prof h2{
  margin-top: 20px;
  white-space: nowrap;
  line-height: 1.3; 
}
.brand-view{
  width: 100%;
  min-height: 300px;
  max-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.brand-view img {
  height: auto;
  max-height: 500px;
  width: 100%;
  object-fit: none;
  background-color: #fffffc;
}
@media (max-width: 1024px) {
  .brand-box {
    padding: 80px 30px 100px 30px;
  }
}
@media (max-width: 768px) {
  .brand-box {
    padding: 50px 20px;
  }
  .brand-prof {
    margin-top: 20px;
    margin-bottom: 0;
    white-space: normal;
    text-align: center;
  }
  .brand-prof h1,
  .brand-prof h2 {
    white-space: normal;
    font-size: 14px !important;
  }
  .brand-view {
    min-height: auto;
    max-height: none;
  }
  .brand-view img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .btn-green{
    width: 40px;
    height: 40px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .btn-text{
    font-size: 12px;
  }
}
.SNS-box{
  display: flex;
  align-items: center;
  gap: 25px;
}
.SNS-box div{
  margin-top: 4px;
}
.ITEM-article{
  display: flex;
  padding:40px 10%;
  background-color:#214b22;
  background-image:
    url(../img/wagara-green.png);
}
.ITEM-left,.ITEM-right{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.ITEM-left.visible,.ITEM-right.visible {
  opacity: 1;
  transform: translateY(0);
}
.ITEM-left{
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .ITEM-left {
    flex-shrink: 1;
    overflow: hidden;
  }
  .ITEM-left img {
    height: 900px;
    width: 100%;
    object-fit: cover;
    display: block;
  }
}
.ITEM-right{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-flow: column;
  margin-left: 5%;
}
.ITEM-text{
  padding-bottom: 180px;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.ITEM-text h2{
  margin-bottom: 30px;
  color: #fffffc;
  font-size: 16px;
}

@media (max-width: 768px) {
  .ITEM-article {
    flex-direction: column;
    padding: 20px 5%;
  }
  .ITEM-left {
    display: none;
  }
  .ITEM-right {
    width: 100%;
    margin-left: 0;
  }
  .ITEM-text {
    padding-bottom: 40px;
  }
  .ITEM-text h2 {
    font-size: 14px;
    text-align: center;
  }
}
.space-top{
  height: 55px;
  background-color: #fffffc;
  background-image: url(../img/wagara-nami.png);
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-wrapper{
  display: flex;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 90px;
  background-color: #103511;
  background-image: url(../img/wagara-green.png);
  padding-left: 10%;
  padding-right: 10%;
  box-sizing: border-box;
  gap: 10%;
}

.news-box{
  margin-right: 0;
  padding-top: 40px;
  flex-shrink: 0;
  width: 220px; 
}
.news-box h1{
   margin-left: 0;
}
.news-text-box {
  position: relative;
  display:block;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
}

.news-text-box::after,
.news-text-box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px; 
  width: 100%;
  transform-origin: left;
}

.news-text-box::after {
  background: #fffffc;
  transform: scaleX(1);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.news-text-box::before {
  background: #E0B020;
  transform: scaleX(0);
  transition: transform 0.3s ease 0.3s;
  transform-origin: left;
}
.news-text-box:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}
.news-text-box:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.news-text-day{
  padding-bottom: 10px;
  font-size: 15px;
}
.news-text-box h2{
  color: #fffffc;
  font-size: 18px;
}
@media (max-width: 768px) {
  .news-wrapper {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 40px;
    padding-right: 5%;
    padding-left: 5%;
  }
  .news-box {
    margin-right: 0;
    padding-top: 20px;
    text-align: center;
  }
  .news-box h1 {
    margin-left: 0;
    font-size: 1.8rem;
  }
  .news-text-box {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
  }
  .news-text-box h2 {
    font-size: 1.1rem;
  }
  .news-text-day p {
    font-size: 0.9rem;
  }
}
.jin-section{width:650px;
  background-color:#103511;
  background-image: url(../img/wagara-green.png);
  margin: 0 auto;
  padding-top:10px;
}
.jin-section h2{text-align: center;
  color:#d0c655;
}
.jin-section .btn-yello,.jun-miryoku-02 .btn-yello{margin-left:60%;
  margin-top:40px;
}
.jin-midashi-box h2{text-align: center;
  color:#d0c655;
}
.jin-section p,.jin-kiyou p{line-height:170%;
}
.jin-miryoku-01{background-color: #103511;
  background-image: url(../img/wagara-green.png);
  width:600px;
  margin:40px auto;
  padding:20px;
}
.jun-miryoku-02{width:100%;
  margin:5% auto 5% auto;
  text-align: center;
}
.jun-miryoku-02 .btn-yello{margin:0 50%;
}

.jin-miryoku-02 img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.jun-miryoku-02 h2{color: #d0c655;
  text-align: center;
  margin-top:10%;
  margin-bottom:30px;
}
.jun-miryoku-02 p{text-align: center;
}

.jin-kiyou{width:100%;
  margin:10% auto;
  text-align: center;
}
.jin-kiyou img{margin-top:20px;
  margin-bottom:20px;
}
.jin-kiyou p{
  text-align: center;
  margin-top:20px;
}
.jin-kiyou h3{color:#d0c655;
  text-align: center;
}
.jin-to-product-btn{width:70%;
  height:100px;
  margin:20px auto;
  display: flex;
}
.jin-to-product-btn h3{color:#103511;
  text-align: center;
}
.jin-gainen{background-image: url(../img/wagara-green.png);
  width: 600px;
  margin:40px auto;
  justify-content:space-between;
}
.jin-gainen{text-align: center;
}
.jin-kakugen{background-image: url(../img/wagara-green.png);
  width:650px;
  padding:5px;
  margin:100px auto 0 auto;
}
.jin-kakugen h3{background-color: #214b22;
  text-align: center;
  color:#fffffc;
  font-size:16px;
}
.jin-kakugen-small{width:90%;
  margin:20px auto 30px auto;
  padding:5%;
  background-color: #103511;
}
.jin-kakugen-small h2{margin-top:10px;
  color:#fffffc;
  text-align: center;
}
.jin-kakugen-small h3{color:#fffffc;
  margin-top:20px;
  text-align: center;
}
.jin-kakugen-small p{margin-top:20px;
  text-align: center;
}
.jin-exprain-text01{
  color: #d0c655;
  font-size:14px;
  margin-top:20px;
}
.rongo-inyo-box{width:550px;
  display:flex;
  margin:5px auto 5px auto;
}
.rongo-inyo{ width:400px;
  margin:5px 0 150px auto;
}
.rongo-inyo p{font-size:10px;
  font-family: Arial, Helvetica, sans-serif;
  color:#103511
}
@media (max-width: 768px) {
  .jin-section,.jin-miryoku-01 ,.jin-kakugen ,.rongo-inyo-box{
    width: 90%;
    flex-direction: column;
    align-items: stretch;
  }
  .jin-kakugen span,.jin-kakugen-small span,.rongo-inyo ,.jin-gaiyou-span{display: inline-block;
    justify-content: center;
  }
  .jin-gaiyou-span{display: inline-block;
    justify-content: center;
  }
}
.product-h1 {
  width: 100%;    
  height: 300px;     
  padding-top: 20px;  
  display: flex;               
  justify-content: center;     
  align-items: center; 
}
.product-h1 h1{
  color: #fffffc;
  margin: 0;           
  }
.product-wrapper2{
  width: 100%;
  background-color: #103511;
  display: flex;
  justify-content: center;
}
  .product-search-container{
    height: 1000px;
    width: 300px;
  }
.is-hide {
  display: none;
  color: #fffffc;
  display: none;
}
  .product-img-box{
   display: flex;
 flex-wrap: wrap;
 gap: 20px;
 justify-content: center;
 max-width: 1100px;
 width: 100%;
 margin: 0 auto;
 box-sizing: border-box;
  }
.product-img {
 flex: 0 0 calc((100% - 40px) / 3);
 box-sizing: border-box;
}
  
.product-img img{
  max-width: 100%;
}
  .product-item-label{
    margin: 30px 0 5px 0;
    color: #fffffc;
    font-size: 16px;
  }
  .product-item-price{
    color: #fffffc;
    font-size: 16px;
    margin: 15px;
  }
.search-box {
  display: flex;
  flex-direction: column;
  align-items: center;  
  width: 300px;
  margin: 50px 0 0 0;
}
.search-box_label {
  color: #fffffc;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}
.search-box label {
  display: flex;
  align-items: center;    
  margin: 0.3em 0;
  color: #fffffc;
  cursor: pointer;
  gap: 10px;
}
.search-box input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  background-color: transparent;
  cursor: pointer;
  margin-right: 0.5em;  
  position: relative;
}
.search-box input[type="checkbox"]:checked {
  accent-color: rgb(255, 255, 255);
}
.search-box input[type="checkbox"]:checked::after {
  content: '✔'; 
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
.color-dot {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  border-radius: 50%;
  margin-right: 0.5em; 
  vertical-align: middle;
}
.black     { background-color: #000; }
.gray      { background-color: #888; }
.blue      { background-color: #007bff; }
.green     { background-color: #28a745; }
.vermilion { background-color: #e34234; } 
.brown     { background-color: #8b4513; }
.purple    { background-color: #800080; }
.product-img-box.few-items {
  justify-content: flex-start; 
}
.product-wrapper2 {
  display: flex;
  justify-content: flex-start; 
  gap: 20px; 
  background-color: #103511;
  width: 100%;
  box-sizing: border-box;
  padding: 10px; 
}
.product-search-container {
  flex-shrink: 0;
}
.product-img-container {
  flex-grow: 1;
  min-width: 0;
}
.product-img-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start; 
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .product-search-container {
    display: none;
  }
  .product-img-box {
    width: 100%;     
    justify-content: center; 
  }
  .product-img {
    margin: 0 2.5% 20px 2.5%; 
    width: 45%;
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .product-test {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
.product-page .product-wrapper2 {
  max-width: 100vw;  
  overflow-x: hidden; 
  box-sizing: border-box;
  padding-right: 0; 
}
.product-page .product-img-box {
  width: 100%; 
  max-width: 1100px; 
  box-sizing: border-box;
  justify-content: center; 
}
}
@media (max-width: 768px) {
  .product-page .product-img-box {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
  .product-page .product-img {
    margin-left: 0;
    margin-right: 0;
    width: 45%; 
  }
  .product-img img{
    gap: 10px;
  }
}
.product-detiel-wrapper {
  background-color: #103511;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}
.product-detail-header {
  width: 100%;
  height: 100px;
  background-color: #103511;
  margin-bottom: 40px;
}
.change-img {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.change-img__main {
  display: flex;
  justify-content: right;
  align-items: center;
}
.change-img__main img {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
}
.change-img__img-sub {
  width: 100%;
  max-width: 500px;
  margin-top: 1em;
  overflow-x: auto;
  box-sizing: border-box;
}
.change-img__list {
  display: flex;
  justify-content: center;
  gap: 2px;
  list-style: none;
  padding-left: 0;
  margin: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.change-img__item {
  padding: 0;
  margin: 0;
}
.change-img__item img {
  display: block;
  border: 2px solid transparent;
  width: 100px;
  height: auto;
}
.change-img__item:hover img,
.change-img__item:focus img {
  border: 2px solid #fffffc;
}
.product-detiel-image-box {
  display: flex;
  justify-content: flex-end;
  width: 500px;
  margin: 0 auto;
}
.product-detiel-box {
  width: 100%;
  margin-left: 30px;
  margin: 0 auto;
}
.product-detiel-btn:hover {
  background-color: #4e5e13;
  color: #000 !important;
}
.product-detail-btn {
  display: flex;
  margin-left: 50px;
  margin-top: 80px;
  gap: 10px;
}
.product-detail-btn h2 {
  margin: 80px 0 0 80px;
  font-size: 1rem;
}
.product-detiel-box-p {
  border: 1px solid #9BB643;
  width: 150px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 50px 0 0 0;
}
.product-detiel-box-p p {
  color: #9BB643;
}
.product-detiel-p .product-detiel-p-title {
  font-size: 28px !important;
  margin: 30px 0 30px 0;
}
.product-detiel-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(80px + 5vw);
  height: 40px;
  margin: 8px;
  background-color: #9BB643;
  color: #103511 !important;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(8px + 0.5vw);
}
.product-detiel-btn a {
  color: #103511 !important;
  text-decoration: none;
}
.product-detiel-btn-box {
  display: flex;
  justify-content: flex-start;
}
.product-detiel-p {
  display: block;
  text-align: left;
}
.product-detiel-p p {
  margin: 30px 0 30px 0;
}
.product-description {
  display: block;
  width: 100%;
  background-color: #103511;
  text-align: center;
}
.product-description h3 {
  text-align: center;
  margin: 130px 0 50px 0;
  color: #fffffc;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
.product-description h4 {
  width: 50%;
  margin: 0 auto;
  line-height: 1.8;
  text-align: left;
  color: #fffffc;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
.product-wrapper {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  background-color: #103511;
  display: flex;
  flex-flow: column;
}
.product-size-image {
  margin: 100px 0 100px 0;
  width: 500px;
  height: auto;
}
.product-test {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
  gap: 50px;
}
@media screen and (max-width: 900px) {
  .product-detiel-p {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .product-test {
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .product-detiel-box {
    justify-content: center;
    align-items: center;
  }
  .product-detiel-btn-box {
    justify-content: center;
  }
  .change-img__main img {
    max-width: 350px;
    width: 100%;
    height: auto;
  }
  .change-img__item img {
    max-width: 110px;
    height: auto;
  }
}
.product-detiel-box-p {
  margin-left: 30px;
}
@media screen and (max-width: 600px) {
  .change-img__list {
    flex-wrap: wrap;
  }
}
.info-wrapper{
  padding:0px 10%;
  padding-bottom: 80px;
}
.info-wrapper h1{
 color: #0e0e0f; 
}
.info-wrapper h2{
  font-size: 24px;
  color: #0e0e0f;
}
.info-wrapper p{
  color: #0e0e0f;
  line-height: 170%;
}
.info-wrapper .page-title{
  padding-top:250px;
  padding-bottom:60px;
  border-bottom: 1px solid #0e0e0f;
  
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.info-sub-title{
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #0e0e0f;
  margin-bottom: 60px;
}
.info-text-box{
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.info-top-box{
  margin-top: 100px;
  width: 265px;
  display: flex;
  justify-content: center;
  padding:32px 48px ;
  margin-bottom: 20px;
  border: 1px solid #103511;
  transition: 0.3s;
}
.info-title-img{
  background: url('../img/infotitle.png') no-repeat center/contain;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 72px; 
  background-size: auto 72px;
}
@media screen and (max-width: 768px) {
  .info-title-img{
    background-image: url('../img/infotitle.png');
    height: 50px; 
    background-size: auto 50px;
  }
} 
.faq-wrapper{
  padding:0px 15%;
  padding-bottom: 200px;
}
.faq-wrapper h1{
  color: #0e0e0f;
}
.faq-wrapper h2{
  font-size: 22px;
  color: #0e0e0f;
}
.faq-wrapper p{
  color: #0e0e0f;
  line-height: 170%;
}
.faq-wrapper .page-title{
  padding-top:250px;
  padding-bottom:60px;
  border-bottom: 1px solid #0e0e0f;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.faq-box{
  display: flex;
  flex-flow: column;
  align-items: center;
}
.faq-question{
  width: 100%;
  border-bottom: 1px solid #103511;
  padding-left: 40px;
}
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}
.faq-answer{
  padding-left:20px;
  padding-top: 20px;
  padding-bottom: 40px;
}
summary{
  padding: 40px 0px;
}
.faq-question summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding-right: 24px;
    margin-right: 30px;
}
.faq-question summary::-webkit-details-marker {
    display: none;
}
.faq-question summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.2s ease;
}
.faq-question details[open] summary::after {
    content: "−";
}
.form-row {
  display: flex;
  align-items: center;
  width: 100%;
  border-top: 1px solid #103511;
  padding:40px 40px;
  gap: 10px;
}
.form-row label{
  width: 220px;
  text-align: left;
  display: block;
  margin-right: 10%;
}
.form-row input,.form-row select{
  width: 400px;
  padding: 8px 12px;
  font-size: 1rem;
}
.form-row textarea{
  width: 400px;
  padding: 12px 12px;
}
.contact-wrapper{
  padding:0px 15%;
  padding-bottom: 70px;
}
.contact-wrapper p{
  color: #0e0e0f;
  line-height: 170%;
}
.contact-sub-title{
  padding: 40px;
}
.contact-wrapper span{
  color: rgb(224, 16, 16);
  margin-left: 3px;
}
.contact-wrapper .page-title{
  display:flex;
  flex-flow:column;
  justify-content: center;
  align-items: center;
}
.contact-wrapper .page-title h1{
  padding-top:250px;
  padding-bottom:60px;
  color: #0e0e0f;
}
.contact-check{
  display: flex;
  justify-content: center;
  border-top: 1px solid #103511;
  padding-top: 30px;
  gap: 10px;
}
.contact-check-box h2{
  color: #fffffc;
}
.contact-check button{
  margin-top: 70px;
  margin-bottom: 40px;
  width: 60px;
  height: 60px;
  border: 1px solid #0e0e0f;
  background-color: transparent;
  color: #fffffc;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s, color 0.5s;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  padding: 20px 40px;
}
.contact-text{
  color:#0e0e0f;
  margin-bottom: 2px;
  display: inline-block;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: bold;
  user-select: none;
}
.contact-check button:hover {
  background-color: #1c441d;
  border-color: #1c441d;
}
.contact-check button:hover h3{
  color: #fffffc;
}
.contact-title-img{
  background: url('../img/contacttitle.png') no-repeat center/contain;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 72px; 
  background-size: auto 72px;
}
.form-row.tel-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.form-row.tel-inputs label {
  flex: 0 0 150px;
  min-width: 120px;
  margin-bottom: 0;
}
.tel-input-group {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: 70px;
}
.tel-input-group input {
  min-width: 50px;
  max-width: 70px;
  padding: 8px 10px;
  box-sizing: border-box;
  height: 38px; 
  line-height: normal;
}
@media (max-width: 990px) {
  .form-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .contact-wrapper {
    padding: 0 5%;
  }
  .form-row label {
    width: auto;
    text-align: left;
    margin-bottom: 0.5rem;
    flex: 0 0 150px;
    min-width: 120px;
  }
  .form-row input[type="text"],
  .form-row input[type="email"],
  .form-row input[type="number"],
  .form-row select,
  .form-row textarea {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    font-size: 16px;
  }
  .contact-title-img{
    background-image: url('../img/contacttitle.png');
    height: 50px; 
    background-size: auto 50px;
  }
  .form-row textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  }
  .form-row.tel-inputs {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  }
  select {
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  }
  .tel-input-group {
  margin-left: 0px;
}
  .contact-check {
  display: flex;
  justify-content: center;
  border-top: 1px solid #103511;
  padding-top: 60px;
  padding-bottom: 100px;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-check button {
  padding: 20px 60px;
  font-size: 22px;
  background-color: #103511;
  color: #fffffc;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
}
}
@media screen and (max-width: 480px) {
  .contact-wrapper {
    padding: 0 3%;
  }
  .form-row.tel-inputs {
    flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .form-row.tel-inputs label {
    width: auto;
    margin-right: 0;
    white-space: normal;
  }
  .form-row.tel-inputs input {
    width: 100% !important;
  }
  .form-row.tel-inputs {
    flex-direction: column;
    align-items: flex-start;
  }
  .tel-input-group {
    display: flex;
    gap: 5px;
  }
  .tel-input-group input {
    max-width: 100%;
    flex: 1 1 100%;
    margin-bottom: 8px;
  }
}
.advert-wrapper{
  padding:0px 10%;
  padding-bottom: 80px;
}
.advert-wrapper .page-title{
  padding-top:250px;
  padding-bottom:60px;
  border-bottom: 1px solid #0e0e0f;
}

.advert-wrapper h1{
 color: #0e0e0f; 
}
.advert-wrapper h2{
  font-size: 24px;
  color: #fffffc;
}
.advert-wrapper p{
  color: #0e0e0f;
}
.advert-sub-title{
  padding-top: 32px;
  padding-bottom: 60px;
}
.advert-title-box{
  margin-top: 32px;
  width: 100%;
  display: flex;
  padding:32px 48px ;
  background-color: #103511;
  margin-bottom: 40px;
}
.advert-wrapper ol{
    display: flex;
    flex-flow: column;
    list-style:decimal;
    padding-left: 30px;
    margin-top: 25px;
    color: #0e0e0f;
}
.advert-wrapper li{
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #0e0e0f;
}
.advert-wrapper .p-box{
  padding-left: 10px;
  padding-top:0px;
  padding-bottom:10px;
}
.privacy-wrapper{
  padding:0px 10%;
  padding-bottom: 80px;
}
.privacy-wrapper h1{
 color: #0e0e0f; 
}
.privacy-wrapper h2{
  font-size: 24px;
  color: #fffffc;
}
.privacy-wrapper p{
  color: #0e0e0f;
}
.privacy-wrapper .page-title{
  padding-top:250px;
  padding-bottom:60px;
  border-bottom: 1px solid #0e0e0f;
}
.privacy-sub-title{
  padding-top: 32px;
  padding-bottom: 60px;
}
.privacy-title-box{
  margin-top: 32px;
  width: 100%;
  display: flex;
  padding:32px 48px ;
  background-color: #103511;
  margin-bottom: 20px;
}
.privacy-wrapper ol{
    display: flex;
    flex-flow: column;
    list-style:decimal;
    padding-left: 30px;
    margin-top: 25px;
    color: #0e0e0f;
}
.privacy-wrapper li{
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #0e0e0f;
}
.p-box{
  padding-left: 10px;
  padding-top:15px;
  padding-bottom:15px;
}
.from-box{
  padding-left: 30px;
}
.privacy-finish{
  text-align: right;
  margin-right: 100px;
}
.privacy-link-box{
  display:flex;
  justify-content: space-between;
}
.privacy-link{
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding-bottom: 10px;
  gap:10px;
}
.privacy-link a:hover{
  text-decoration: underline;
  color:#103511;
}