@charset "UTF-8";
/*----- common ------*/
html {
  font-size: 100%;
}
body {
  font-family: 'Noto Serif JP', serif;
  /* font-optical-sizing: auto; */
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #446622;
  letter-spacing: 0.04em;
  background: #fff;
  /* animation: fade-in 2s; */
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #446622;
}
a:hover,
a:active {
  color: #f37610;
  transition: 0.5s;
}

h1 {
  font-weight: normal;
}

.wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 600px) {
  .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
  }
}

/* .page-title {
  font-size: 1.5rem;
  text-align: center;
  margin: 150px auto 5rem;
  padding: 2rem 0 0.4rem;
  font-weight: normal;
} */

@media (min-width: 600px) {
  /* .page-title {
    font-size: 2rem;
  } */
}

/* top copy */
.copy {
  width: 100vw;
  height: 100svh;
}

.copy h2 {
  color: #446622;
  text-align: center;
  font-size: 0.8rem;
  margin: 0 auto;
  line-height: 100svh;
  translate: 0 40px;
  opacity: 0;
  animation: slide 4s linear forwards;
  text-shadow: 0 1px #eeeeee, 1px 2px #eeeeee, 2px 3px 4px #eeeeee;
}
.copy_large {
  font-size: 1.8rem;
}

@keyframes slide {
  30% {
    opacity: 0.3;
  }

  70% {
    opacity: 0.9;
  }

  100% {
    opacity: 1;
    translate: 0 -5px;
  }
}

@media (min-width: 600px) {
  .copy h2 {
    font-size: 1.7rem;
  }
  .copy_large {
    font-size: 2.3rem;
  }
}

#home {
  display: none;
}

/* header */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100px; */
  height: 70px;
  margin: 0 auto;
  padding: 5px 2%;
  display: flex;
  justify-content: space-between;
  background-color: rgb(255, 255, 255, 0.8);
  align-items: center;
  z-index: 30;
}
@media (min-width: 600px) {
  .page-header {
    height: 100px;
  }
}

/* @media (max-width: 920px) {
  .page-header {
    display: block;
    justify-content: flex-end;
  }
} */

.header_logo {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.index_logo {
  width: 50px;
}
.header_logo h1 {
  font-size: 1.5rem;
  font-weight: normal;
}

/* gnave desktop */
@media (min-width: 930px) {
  .btn {
    display: none;
  }
  .main-nav {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
  }
  .main-nav li {
    list-style-type: none;
    /* position: relative; */
    font-size: 1.1rem;
  }
  /* .sub-nav li {
    width: 130px;
    background-color: #fff;
  }
  .sub-nav {
    display: none;
    margin: 0px;
    position: absolute;
  } */
  /* .main-nav li:hover ul {
    display: block; /*
  }  */
}

/*　hamburger menu　sp */
@media (max-width: 929px) {
  .page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .gnav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100svh;
    background: #446622;
    opacity: 0.9;
    transition: all 0.3s;
    padding-top: 80px;
  }
  .gnav.slide {
    transform: translate3d(-100%, 0, 0);
  }
  .gnav ul {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 1.3rem;
  }
  .gnav li {
    text-align: left;
    height: 60px;
    line-height: 60px;
    padding-left: 100px;
  }
  .gnav_list {
    cursor: pointer;
    transition: all 0.4s ease-out;
  }
  .gnav_list:hover {
    background-color: #f0f9ee;
  }
  .gnav_list:hover a {
    color: #446622;
  }
  .gnav_list_2 {
    cursor: pointer;
    color: #f0f9ee;
    transition: all 0.4s ease-out;
  }
  .gnav_list_2:hover {
    background-color: #f0f9ee;
    color: #446622;
  }

  .gnav a {
    color: #f0f9ee;
    display: block;
  }
  .toggle {
    display: none;
  }

  .toggle + ul {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .toggle:checked + ul {
    height: auto;
    transition: all 0.5s ease-in;
  }

  .btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    display: grid;
    place-items: center;
    position: relative;
    cursor: pointer;
  }
  .btn span,
  .btn span::before,
  .btn span::after {
    content: '';
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: #446622;
    position: absolute;
    transition: all 0.4s ease-out;
    z-index: 40;
  }
  .btn span::before {
    bottom: 8px;
  }
  .btn span::after {
    top: 8px;
  }
  .btn.open span {
    transform: rotate(180deg);
    background: #f0f9ee;
    z-index: 40;
  }
  .btn.open span::before {
    bottom: 0;
    width: 18px;
    transform: rotate(45deg) translate(2px, 6px);
    background: #f0f9ee;
    z-index: 40;
  }
  .btn.open span::after {
    top: 0;
    width: 18px;
    transform: rotate(-45deg) translate(2px, -6px);
    background: #f0f9ee;
    z-index: 40;
  }
}

/*----- Contents ------*/
/* top */
/* cover */
.top_cover-img1 {
  margin-top: 70px;
  max-width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: bottom;
  background-image: url(../img/cover/cover_top_1.webp);
  transform-origin: center;
  /* animation: zoom 3s 0s ease-in-out forwards; */
  z-index: 0;
}

@media (min-width: 600px) {
  .top_cover-img1 {
    margin-top: 100px;
    max-width: 80vw;
    height: 90vh;
  }
}
.top_cover-img2 {
  position: relative;
  top: -50px;
  margin: 0 0 0 auto;
  width: 60vw;
  height: 200px; /* sp */
  background-size: cover;
  background-position: center;
  background-image: url(../img/cover/cover_top_2.webp);
  z-index: 1;
}
@media (min-width: 600px) {
  .top_cover-img2 {
    width: 30vw;
    height: 40vh;
    /* transform: scale(0.9);
    transform-origin: center;
    animation: zoom 5s 0s ease-in-out forwards; */
    z-index: 1;
  }
  /* ./back-ground animetion */
  /* @keyframes zoom {
    0% {
      transform: scale(0.9);
    }

    100% {
      transform: scale(1);
    }
  } */
}
.top_cover-img3 {
  width: 280px;
  height: auto;
  margin: 0 auto;
  /* background-size: cover; */
  /* background-position: center; */
  /* background-image: url(../img/vege/onion.webp); */
}

@media (min-width: 600px) {
  .top_cover-img3 {
    width: 350px;
  }
}

/* scroll-down top*/
.scroll_down {
  position: absolute;
  bottom: 0px;
  left: 10%;
}

.scroll_down a {
  position: absolute;
  left: 10px;
  bottom: 80px;
  color: #3e5e1e;
  font-size: 16px;
  /* font-family: 'Josefin Sans', sans-serif; */
  letter-spacing: 0.3em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .scroll_down a {
    color: #fff;
  }
}

.scroll_down:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #3e5e1e;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media (min-width: 600px) {
  .scroll_down:before {
    background: #fff;
  }
}

@keyframes circlemove {
  0% {
    bottom: 180px;
  }
  100% {
    bottom: 0px;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.scroll_down:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 1px;
  height: 180px;
  background: #3e5e1e;
}
@media (min-width: 600px) {
  .scroll_down:after {
    background: #fff;
  }
}

/* ---------▼▼▼　toppage copy */
.top_copy p {
  position: absolute;
  left: 10%;
  line-height: 300px;
  color: #446622;
  font-size: 1.5rem;
  text-align: left;
  padding: auto;
  margin: 0 auto;
  opacity: 0;
  animation: slide 5s linear forwards;
  translate: 0 10px;
  text-shadow: 0 1px #bbb, 1px 2px #bbb, 2px 3px 4px #bbb;
  z-index: 10;
}
@keyframes slide {
  30% {
    opacity: 0.3;
  }

  70% {
    opacity: 0.9;
  }

  100% {
    opacity: 1;
    translate: 0 -5px;
  }
}

/* main */
main {
  margin: 0 auto;
  background: #fff;
}

/* top */
/* ------------------------------------------------- */

.sub_title {
  font-size: 3rem;
  margin-top: 100px;
  margin-bottom: 0;
  padding: auto;
  text-align: left;
  font-weight: normal;
}
.sub_title_large {
  font-size: 5rem;
}

/* top_about */

@media (min-width: 920px) {
  .sub_about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 150px;
    margin: 50px auto;
    padding: 0 5%;
  }
  .sub_about_text {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 45vw;
  }
}
.more {
  text-align: right;
}
.sub_about_img1 {
  margin: 50px auto;
  width: 260px;
  height: 200px;
  object-fit: cover;
  text-align: center;
}

/* swiper */
.swiper {
  width: 90vw;
  margin: 200px auto 0;
}
.swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiper img {
  aspect-ratio: 1/2.3;
}

/* top_news */
.sub_news_cards {
  display: grid;
  gap: 2rem 1.5rem;
  margin: 0 auto;
}

@media (min-width: 599px) {
  .sub_news_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px) {
  .sub_news_cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .sub_news_cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.sub_news_card {
  background: #fff;
  border-radius: 10px;
  margin: 20px auto;
  width: 280px;
  box-shadow: 0 2px 5px #ccc;
  position: relative;
}
.manin::after {
  position: absolute;
  content: url(../img/manin.png);
  top: -150px;
  /* left: 2px; */
  rotate: 30deg;
  transform: scale(0.5);
}
.close_red {
  color: #ea403a;
  font-weight: bold;
}

.sub_news_card:hover {
  transform: translateY(-7px);
  box-shadow: 0 7px 34px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.5s;
}

.sub_news_card_img {
  border-radius: 10px 10px 0 0;
  width: 280px;
  height: 250px;
  object-fit: cover;
}

.sub_news_card_content {
  padding: 8px 20px 20px;
}
.sub_news_card_title {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
}
.sub_news_card_text {
  color: #446622;
  font-size: 1.2rem;
  margin-bottom: 0.2em;
  height: 200px;
}

/* sub_page common */
.title_texts {
  margin: 100px auto 0;
  height: calc((100svh - 100px) * 0.5);
}
.title_text {
  height: calc((100svh - 100px) * 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title h2 {
  margin: 0 auto;
  color: #446622;
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
  line-height: 3rem;
  width: 100%;
}
.title_large {
  font-size: 5rem;
}
.title h3 {
  color: #446622;
  font-size: 1rem;
  text-align: center;
  margin: 10px auto 0;
}
.title-cover {
  max-width: 100%;
  /* height: 50vh; */
  height: calc((100svh - 100px) * 0.5);
  background-size: cover;
}
.title_vege {
  margin: 50px auto;
  width: 70vw;
  height: 70vw;
}

@media (min-width: 600px) {
  .title {
    display: flex;
    flex-direction: row;
  }
  .title_texts {
    width: 40vw;
    height: calc((100svh - 100px) * 0.65);
  }

  .title_text {
    /* height: 50vh; */
    height: calc((100svh - 100px) * 0.65);
  }

  .title-cover {
    margin-top: 100px;
    width: 60vw;
    /* height: 50vh; */
    height: calc((100svh - 100px) * 0.65);
    background-size: cover;
  }
  .title_vege {
    margin: 0 0 0 auto;
    padding-right: 50px;
    height: calc((100svh - 100px) * 0.45);
    width: calc((100svh - 100px) * 0.45);
    max-width: 30vw;
    max-height: 30vw;
  }
}
/* scroll-down sub_page*/
.scroll_down_sub {
  position: absolute;
  bottom: 0px;
  left: 10%;
}

.scroll_down_sub a {
  position: absolute;
  left: 10px;
  bottom: 100px;
  color: #fff;
  font-size: 16px;
  /* font-family: 'Josefin Sans', sans-serif; */
  letter-spacing: 0.3em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}
.news20250401_scroll a {
  color: #446622;
  bottom: 110px;
}

@media (min-width: 600px) {
  .scroll_down_sub a {
    color: #446622;
  }
}

.scroll_down_sub:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation: circlemove2 1.6s ease-in-out infinite, cirlemovehide2 1.6s ease-out infinite;
}
.news20250401_scroll:before {
  background: #446622;
}

@media (min-width: 600px) {
  .scroll_down_sub:before {
    background: #446622;
  }
}

@keyframes circlemove2 {
  0% {
    bottom: 210px;
  }
  100% {
    bottom: 0px;
  }
}

@keyframes cirlemovehide2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.scroll_down_sub:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 1px;
  /* height: 210px; */
  height: 200px;
  background: #fff;
}
.news20250401_scroll:after {
  background: #446622;
  height: 210px;
}

@media (min-width: 600px) {
  .scroll_down_sub:after {
    background: #446622;
  }
}

.bottom_vege {
  margin: 50px auto;
  width: 70vw;
  height: auto;
}

@media (min-width: 600px) {
  .bottom_vege {
    margin: 0 0 0 auto;
    padding-right: 50px;
    width: 30vw;
    height: auto;
    max-width: 400px;
  }
}

/* about */
/* ------------------------------------------------- */

.about_cover {
  background-image: url(../img/cover/cover_about_1.webp);
}
.about_texts {
  margin: 100px auto 0;
}
.about_text {
  margin-bottom: 100px;
}

.about_contents {
  display: grid;
  gap: 2rem 1.5rem;
  margin: 50px auto;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
}

.about_content {
  text-align: center;
  margin: 80px 0;
}

.about_content_photo img {
  width: 50vw;
  height: 50vw;
  max-width: 200px;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 7px 34px rgba(50, 50, 93, 0.3), 0 3px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
  .about_contents {
    grid-template-columns: repeat(2, 1fr);
  }
  .about_content {
    text-align: center;
  }
  .about_content_photo img {
    width: 30vw;
    height: 30vw;
    max-width: 350px;
    max-height: 350px;
  }
}
.about_contents p {
  text-align: center;
}
.about_img {
  width: 60vw;
  height: auto;
  margin: 30px auto;
  text-align: center;
}
@media (min-width: 600px) {
  .about_img {
    width: 30vw;
    height: auto;
    margin: 50px auto;
    max-width: 300px;
  }
}
.about_staff {
  margin: 100px auto;
}
.about_staff h3 {
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
}

.about_staff_photo {
  width: 80vw;
  margin: 50px auto;
}
.about_staff_photo img {
  width: 350px;
  height: auto;
  margin-bottom: 20px;
  box-shadow: 0 7px 34px rgba(50, 50, 93, 0.3), 0 3px 6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 600px) {
  .about_staff_photo {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 50px auto;
  }
}
.about_staff_text {
  text-align: left;
  margin-left: 20px;
  font-size: 1.2rem;
}

/* news */
/* ------------------------------------------------- */
.news_cover {
  background-image: url(../img/cover/cover_news_1.webp);
  background-position: center;
}

/* contact */
/* ------------------------------------------------- */
.contact_cover {
  background-image: url(../img/cover/cover_contact_1.webp);
  background-position: center;
}

.contact_text {
  margin: 50px auto;
}

/* kinchan */
/* ------------------------------------------------- */
.kinchan_cover {
  background-image: url(../img/cover/cover_kinchan_1.webp);
  background-position: right;
}

.kinchan_comingsoon {
  text-align: center;
  font-size: 3rem;
  margin: 100px auto;
}
/* present_campaign 20250401*/
/* ------------------------------------------------- */
.news20250401_cover {
  margin-top: 80px;
  width: 100vw;
  height: 600px;
  background-image: url(../img/cover/cover_news20250401.webp);
  background-position: top;
  background-size: contain;
}
.news20250401_title {
  padding: 100px 0;
}
.news20250401_cover h2 {
  text-align: center;
  color: #446622;
  font-size: 2rem;
  font-weight: normal;
}
@media (min-width: 600px) {
  .news20250401_title {
    padding: 300px 0;
  }
  .news20250401_cover h2 {
    font-size: 3rem;
  }
}
.news20250401_img {
  width: 45vw;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .news20250401_img {
    width: 20vw;
  }
}
.news20250401_text {
  margin: 50px auto;
}
.news20250401_quiz {
  width: 80%;
  background-color: #f3f9ee;
  margin: 50px auto;
  padding: 20px 5px;
}

@media (min-width: 600px) {
  .news20250401_quiz {
    padding: 20px 50px;
  }
}

.quiz_large {
  font-family: sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #ea403a;
}
.news20250401_quiz p {
  font-family: sans-serif;
  text-align: center;
  line-height: 3rem;
}

/* foam */

.contact div {
  padding-bottom: 1.6rem;
}

.contact > p:last-of-type {
  margin-bottom: 1rem;
  padding: 0; /* confirm page */
  background: none; /* confirm page */
}

.contact label,
.select_radio_lavel {
  display: block;
  /* width: 220px; */
  padding: 0.5rem 0;
  z-index: 0;
}
.select_radio {
  display: block;
  margin: 0 auto;
}
.select_radio label:hover {
  color: rgb(233, 126, 4);
}
.contact input[type='text'],
.contact input[type='email'],
.contact select,
.contact textarea {
  width: 100%;
  /* max-width: 28em; */
  padding: 0.4rem 0.8rem;
  color: #303030;
  border: 1px solid #89a55b;
}
@media (min-width: 600px) {
  .contact input[type='text'] {
    width: 20em;
  }
}
.contact textarea {
  height: 15em;
  vertical-align: top;
  border-radius: 0; /* iOS対応 */
}
input:focus,
select:focus,
textarea:focus {
  background-color: #e6f0f0;
}

.contact button[type='submit'] {
  background: #446622;
  color: #f0f9ee;
  padding: 0.6rem 2rem;
  margin: 2rem 0;
  border-radius: 7px;
}
button[type='submit']:hover {
  background-color: #59af03;
  color: #f0f9ee;
}

/* error message */
span.caution {
  display: block;
  color: #ea403a;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
}
/* confirm・page thanks page */
.confirm p,
.thanks p:last-child {
  background-color: rgb(232, 240, 254);
  padding: 0.4rem 1rem;
}
.confirm div.btn {
  padding-bottom: 0;
  border: none;
}
.thanks p {
  margin-bottom: 1rem;
}

/* back btn */
.confirm button[name='btn_back'] {
  background-color: #bbb;
  margin-right: 0.6rem;
}
.confirm button[name='btn_back']:hover {
  background-color: #aaa;
}

@media (min-width: 600px) {
  .select_radio label {
    display: inline-block;
    padding: 0 50px;
  }

  .contact_form {
    margin: 0 10%;
  }
}

/*　▼ event、pagetop btn/
/* ------------------------------------------------- */

/* event btn */
.event_btn {
  width: 50px;
  height: 180px;
  border-radius: 25px 0 0 25px;
  background: #fbab2a;
  color: #f0f9ee;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  cursor: pointer;
  position: fixed;
  right: -100px;
  bottom: 200px;
  transition: transform 1s linear;
  margin: auto;
}
.event_btn:hover {
  background: #f77206;
}
.event_btn a:hover {
  color: #f0f9ee;
}

/* pagetop btn */
.page-top {
  width: 50px;
  height: 55px;
  border-radius: 50% 0 0 50%;
  border: none;
  background: #89a55b;
  color: #f0f9ee;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  cursor: pointer;
  position: fixed;
  /* right: 0%; */
  right: -100px;
  bottom: 80px;
  transition: transform 1s linear;
}
.page-top:hover {
  background: #59af03;
  color: #f0f9ee;
}
/* side-btn common */
.side_btn.slidein {
  transform: translateX(-100px);
}

/* ▲ event、pagetop btn */

/* footer */
/* ------------------------------------------------- */

.footer {
  background-color: #f3f9ee;
  margin-top: 150px;
  color: #446622;
  max-width: 100%;
}
.footer i {
  color: #446622;
  font-size: 1.2rem;
}
.footer a {
  color: #446622;
}
.footer_add {
  text-align: center;
  padding: 45px 0;
  font-size: 0.9rem;
  max-width: 100%;
}
@media (min-width: 600px) {
  .footer_add {
    padding: 45px 140px;
  }
  .footer_add {
    text-align: left;
    padding: 45px 140px;
    font-size: 0.9rem;
    max-width: 100%;
  }
}
.copyright {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 45px auto;
  font-size: 0.8rem;
  max-width: 100%;
  padding-bottom: 45px;
}
.copyright img {
  width: 50px;
}
