@charset "UTF-8";
.about {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.about__outline {
  display: inline-block;
  background: #FFFCB4;
  margin: 5px;
  padding: 2px 5px;
  font-size: 14px;
  font-size: 0.875rem;
}

.about__inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  margin: 15px 0;
}
@media screen and (min-width: 641px) {
  .about__inner {
    gap: 0;
    margin: 20px 0 15px;
  }
}

.about__card {
  width: 47.8%;
  padding: 15px 15px;
  border: 1px solid #C7C6C6;
}
@media screen and (min-width: 641px) {
  .about__card {
    width: 172px;
  }
}

.about__image {
  width: 95%;
  margin: 0 auto;
}
.about__image img {
  width: 100%;
}

.about__title {
  text-align: center;
  color: #0C5D90;
  padding-bottom: 12px;
  font-weight: bold;
}
.about__title span {
  border-bottom: 1px solid #0C5D90;
  padding-bottom: 3px;
}
@media screen and (min-width: 641px) {
  .about__title {
    padding-bottom: 18px;
  }
}

.about__text {
  line-height: 1.7em;
  margin: 15px 0 0;
  font-size: 14px;
  font-size: 0.875rem;
}

.accordion {
  width: 94%;
  margin: 10px auto;
}
@media screen and (min-width: 641px) {
  .accordion {
    width: 500px;
  }
}

.accordion__title {
  font-size: 12px;
  color: #0C5D90;
  text-align: center;
  padding-bottom: 20px;
}

.accordion__title--fa {
  color: #197902;
}

.accordion__content {
  display: none;
  margin: 10px 0px;
}

.accordion__text {
  color: #0C5D90;
  font-size: 12px;
  padding-bottom: 20px;
}
.accordion__text a,
.accordion__text a:link,
.accordion__text a:visited,
.accordion__text a:hover {
  color: #0C5D90;
  text-decoration: underline;
}

.accordion__text--fa {
  color: #197902;
}
.accordion__text--fa a,
.accordion__text--fa a:link,
.accordion__text--fa a:visited,
.accordion__text--fa a:hover {
  color: #197902;
  text-decoration: underline;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Noto Sans Japanese", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: white;
  color: #000;
}

body, p, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

a {
  color: #0B8ACE;
  text-decoration: none;
  cursor: pointer;
}

fieldset {
  border: none;
}

input[type=checkbox],
input[type=radio] {
  width: 20px;
  height: 20px;
  margin-right: 3px;
  vertical-align: middle;
  cursor: pointer;
}

select {
  cursor: pointer;
}

img {
  display: block;
  vertical-align: bottom;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.bg {
  min-height: 350px;
  height: 500px;
}

.terms-link {
  text-align: right;
}

.terms-link--center {
  text-align: center;
}

.sample-title {
  text-align: center;
  color: #325a35;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
  padding: 0;
}

.cover {
  display: none;
  position: fixed;
  height: 100vh;
  bottom: 0;
  margin: auto;
  background: rgba(53, 65, 80, 0.7);
  top: 0;
  width: 100%;
  z-index: 10;
  left: 0;
  right: 0;
  animation: fadeIn 0.5s ease 0s 1 normal;
}
@media screen and (min-width: 641px) {
  .cover {
    background: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.display-sp {
  diisplay: block;
}
@media screen and (min-width: 641px) {
  .display-sp {
    display: none;
  }
}

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

.error_message, .mw_wp_form .error {
  display: inline-block !important;
  color: red !important;
  font-weight: bold !important;
  padding: 10px !important;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 639px) {
  .error_message, .mw_wp_form .error {
    padding: 15px 0 !important;
  }
}

.slick-slide div {
  margin: 0 5px;
}

.mwform-checkbox-field-text {
  font-size: 14px;
  font-size: 0.875rem;
}

.button {
  width: 100%;
  text-align: center;
  padding: 10px 0 30px;
}
@media screen and (min-width: 641px) {
  .button {
    width: 400px;
    margin: 0 auto;
  }
}

.button__entry {
  display: inline-block;
  width: 90%;
  margin: 0 auto;
  background: #FAE648;
  box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.0588235294);
  border: 1px solid #C3C3C3;
  border-radius: 6px;
  padding: 15px 0 15px 40px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  color: #013758;
  transition: 0.6s;
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (min-width: 641px) {
  .button__entry {
    padding: 15px 0 15px 35px;
  }
}
.button__entry:hover, .button__entry:visited {
  color: #013758;
}
.button__entry:hover {
  background: #fff9cd;
}
.button__entry:before {
  content: "";
  position: absolute;
  left: 21%;
  top: 40%;
  width: 14px;
  height: 12px;
  background: url(/images/blue-arrow-right.svg) no-repeat right center;
  background-size: contain;
}

.button__entry--submit {
  width: 100%;
  padding: 15px 0 15px;
}

@media screen and (max-width: 639px) {
  .button__entry--houjin-select {
    width: 90%;
    margin: 0 5%;
  }
}

.button__area {
  margin: 20px 0;
}
@media screen and (min-width: 641px) {
  .button__area {
    width: 400px;
    margin: 20px auto;
  }
}

.contents {
  width: 100%;
}

.contents__inner {
  width: 92%;
  margin: 25px auto;
}
@media screen and (min-width: 641px) {
  .contents__inner {
    width: 750px;
    margin: 40px auto;
  }
}

@media screen and (min-width: 641px) {
  .contents__inner--gift {
    width: 100%;
  }
  .contents__inner--gift table.gift__table {
    display: flex;
    justify-content: center;
    border: none;
  }
  .contents__inner--gift table.gift__table td {
    width: 230px;
  }
}

.contents__inner--event {
  width: 92%;
  margin: 25px auto;
}
@media screen and (min-width: 641px) {
  .contents__inner--event {
    width: 800px;
    margin: 20px auto 50px;
  }
}

.contents__heading {
  width: 100%;
  background: #0C5D90;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 641px) {
  .contents__heading {
    padding: 20px 0;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.contents__heading--fa {
  background: #197902;
}

.contents__subheading {
  text-align: center;
  line-height: 1.7em;
  font-size: 18px;
  font-size: 1.125rem;
}

.contents__seminar-title {
  width: 100%;
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.6em;
  color: #0c5d90;
  font-size: 16px;
  font-size: 1rem;
}

.contents__seminar {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.contents__seminar img {
  width: 35%;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .contents__seminar img {
    width: 55%;
  }
}

.complete {
  width: 94%;
  margin: 30px auto;
  background: #fff;
}
@media screen and (min-width: 641px) {
  .complete {
    width: 740px;
  }
}

.complete__heading-wrapper {
  text-align: center;
  margin: 40px 0;
}

.complete__heading-wrapper--notice {
  margin: 20px 0;
}

.complete__heading {
  display: inline-block;
  color: #0C5D90;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
}
.complete__heading::before {
  display: inline-block;
  position: absolute;
  content: "";
  bottom: -10px;
  left: 50%;
  width: 100%;
  height: 1px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  background-color: #0C5D90;
}
@media screen and (min-width: 641px) {
  .complete__heading {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.complete__text {
  margin: 20px 0;
  line-height: 1.7em;
  font-size: 14px;
  font-size: 0.875rem;
}

.complete__text--small {
  font-size: 12px;
  font-size: 0.75rem;
}

.complete__text--contact {
  text-align: center;
  margin-top: 0;
}

.complete__notice {
  font-size: 16px;
  font-size: 1rem;
}
.complete__notice span {
  background: linear-gradient(transparent 60%, #FFFE03 60%);
}

.complete__card {
  width: 100%;
  border: 1px solid #707070;
  border-radius: 5px;
  margin-bottom: 20px;
}

.complete__card__inner {
  padding: 0 5%;
}
@media screen and (min-width: 641px) {
  .complete__card__inner {
    padding: 0 20px;
  }
}

.complete__card-title {
  text-align: center;
  background: #fffee0;
  padding: 10px 0;
  border-bottom: 1px solid #707070;
  border-radius: 5px 5px 0 0;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 641px) {
  .complete__card-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.complete__list {
  list-style-type: decimal;
  padding-left: 15px;
}
.complete__list li {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}

.complete__red {
  color: red;
}

.complete__link {
  display: inline-block;
  padding: 10px 0 0;
  text-decoration: underline;
}

.event {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: center;
}
.event p {
  line-height: 1.7em;
  font-size: 14px;
  font-size: 0.875rem;
}
.event p span {
  font-weight: bold;
  display: inline-block;
  margin: 5px 0;
}
.event p strong {
  color: red;
  text-decoration: underline;
  margin: 15px 0;
  display: block;
  font-size: 16px;
  font-size: 1rem;
}

p.notice {
  font-size: 12px;
  font-size: 0.75rem;
}

.event__title {
  color: #333;
  text-align: center;
  margin: 0 0 30px;
  width: 100%;
}
@media screen and (max-width: 639px) {
  .event__title {
    margin: 0 0 10px;
  }
}

.event__heading {
  text-align: center;
  margin: 0 0 15px 0;
  color: #0c5d90;
  font-size: 22px;
  font-size: 1.375rem;
}

.event__image {
  width: 35%;
}
.event__image img {
  width: 100%;
}
.event__image .event__image__wagyu {
  position: relative;
}
@media screen and (max-width: 639px) {
  .event__image .event__image__wagyu {
    width: 75%;
    margin: 0 auto 20px;
  }
}
.event__image .event__image__wagyu figcaption {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 5px 10px;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 639px) {
  .event__image {
    width: 50%;
    margin: 0 auto 25px;
  }
}
@media screen and (max-width: 639px) {
  .event__image.event__image__max {
    width: 100%;
  }
}

.event__image--talk {
  width: 40%;
}
@media screen and (max-width: 639px) {
  .event__image--talk {
    width: 80%;
  }
}

.event__info {
  width: 60%;
}
@media screen and (max-width: 639px) {
  .event__info {
    width: 100%;
  }
}

.event-banner {
  position: fixed;
  bottom: 13%;
  right: 10px;
  max-width: 100%;
  width: 230px;
  background: yellow;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  border: 1px solid #bababa;
  text-decoration: underline;
  color: #0b8ace;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 639px) {
  .event-banner {
    width: 52%;
    right: 25%;
    padding: 15px 25px;
    bottom: 3%;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.event-banner.js_close {
  display: none;
}
.event-banner.event-banner--talk-event {
  width: auto;
  padding: 10px 40px 10px 20px;
}
@media screen and (max-width: 639px) {
  .event-banner.event-banner--talk-event {
    padding: 15px 40px 15px 25px;
  }
}

.event-banner_img {
  display: block;
  transition: 0.3s;
}
.event-banner_img:hover {
  opacity: 0.6;
}

.event-banner__close {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 6%;
  top: 35%;
  cursor: pointer;
}
.event-banner__close span:nth-of-type(1) {
  position: absolute;
  top: 7px;
  right: 0;
  width: 15px;
  height: 2px;
  background-color: #000;
  transform: rotate(45deg);
}
.event-banner__close span:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 7px;
  width: 2px;
  height: 16px;
  background-color: #000;
  transform: rotate(45deg);
}

.exhibitor {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .exhibitor {
    width: 86%;
  }
}

.exhibitor__list {
  position: relative;
}

.exhibitor__item {
  text-align: center;
  background: #E5FFFB;
  margin-bottom: 15px;
  padding: 5px;
  color: #0C5D90;
}

.exhibitor__name {
  line-height: 1.7em;
  font-size: 16px;
  font-size: 1rem;
}

.exhibitor__thumbnail {
  width: 100%;
}
.exhibitor__thumbnail img {
  width: 100%;
  height: auto;
}

.exhibitor__prev {
  position: absolute;
  left: -15%;
  top: 38%;
}
@media screen and (min-width: 641px) {
  .exhibitor__prev {
    left: -10%;
    cursor: pointer;
  }
}

.exhibitor__next {
  position: absolute;
  right: -15%;
  top: 38%;
}
@media screen and (min-width: 641px) {
  .exhibitor__next {
    right: -10%;
    cursor: pointer;
  }
}

.exhibitor__heading {
  text-align: center;
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  color: #0C5D90;
  font-size: 16px;
  font-size: 1rem;
}
.exhibitor__heading::before, .exhibitor__heading::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #666;
}
.exhibitor__heading::before {
  margin-right: 23px;
}
.exhibitor__heading::after {
  margin-left: 20px;
}
@media screen and (min-width: 641px) {
  .exhibitor__heading {
    margin: 0 0 25px;
  }
}

.exhibitor__heading--fa {
  color: #197902;
}

.entry-form {
  margin: 30px 0 0;
}
@media screen and (min-width: 641px) {
  .entry-form {
    width: 480px;
    margin: 30px auto 0;
  }
}
.entry-form th, .entry-form td {
  display: block;
  width: 100%;
}
.entry-form th {
  text-align: left;
  font-weight: bold;
  color: black;
  padding: 0 10px;
  font-size: 13px;
  font-size: 0.8125rem;
}
.entry-form th span {
  background: #fdfed7;
  color: black;
  font-weight: normal;
  border-radius: 10px;
  text-align: center;
  padding: 2px 5px;
  margin: 0 0 0 5px;
  font-size: 12px;
  font-size: 0.75rem;
}
.entry-form td {
  padding: 5px 10px;
  font-size: 16px;
  font-size: 1rem;
}
.entry-form select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.entry-form__input, .entry-form__select {
  width: 100%;
  padding: 15px;
  background: #F0F9FF;
  border-radius: 5px;
  border: 1px solid black;
  margin: 0 0 10px 0;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
}
.entry-form__select-area {
  position: relative;
}
.entry-form__select-area:after {
  position: absolute;
  right: 10px;
  top: 15px;
  content: "▼";
  color: black;
  font-size: 12px;
  font-size: 0.75rem;
}
.entry-form__terms-text, .entry-form__memo {
  text-align: center;
  color: black;
  font-size: 12px;
  font-size: 0.75rem;
}
.entry-form__terms-text a:link, .entry-form__terms-text a:visited, .entry-form__terms-text a:hover, .entry-form__memo a:link, .entry-form__memo a:visited, .entry-form__memo a:hover {
  color: black;
  text-decoration: underline;
}
.entry-form__terms-text {
  margin: 0 0 8px 0;
}

@media screen and (max-width: 639px) {
  .entry-form--houjin {
    width: 100%;
  }
}

.form {
  margin: 30px 0 0;
}
@media screen and (min-width: 641px) {
  .form {
    width: 480px;
    margin: 30px auto 0;
  }
}
.form th, .form td {
  display: block;
  width: 100%;
}
.form th {
  text-align: left;
  font-weight: bold;
  color: black;
  padding: 0 10px;
  font-size: 13px;
  font-size: 0.8125rem;
}
.form th span {
  background: white;
  color: black;
  font-weight: normal;
  border-radius: 10px;
  text-align: center;
  padding: 2px 5px;
  margin: 0 5px 0 0;
  font-size: 12px;
  font-size: 0.75rem;
}
.form td {
  padding: 5px 10px;
  font-size: 16px;
  font-size: 1rem;
}
.form__input, .form__select {
  width: 100%;
  padding: 15px;
  background: #F0F9FF;
  border-radius: 5px;
  border: 1px solid black;
  margin: 0 0 10px 0;
}
.form__select--white {
  background: #fff;
}
.form__select-area {
  position: relative;
}
.form__select-area:after {
  position: absolute;
  right: 10px;
  top: 10px;
  content: "▼";
  color: black;
  font-size: 12px;
  font-size: 0.75rem;
}
.form__terms-text, .form__memo {
  text-align: center;
  color: black;
  font-size: 12px;
  font-size: 0.75rem;
}
.form__terms-text a:link, .form__terms-text a:visited, .form__terms-text a:hover, .form__memo a:link, .form__memo a:visited, .form__memo a:hover {
  color: black;
  text-decoration: underline;
}
.form__terms-text {
  margin: 0 0 8px 0;
}

.form__text-notice {
  margin: 0 0 10px;
  padding-left: 1em;
  color: #333;
  font-size: 12px;
  font-size: 0.75rem;
}

.form__houjin-title {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #197902;
  color: #197902;
  padding-bottom: 5px;
  margin: 20px 0;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 641px) {
  .form__houjin-title {
    width: 480px;
    margin: 20px auto;
  }
}

.footer {
  background: #CDE1EC;
}

.footer--fa {
  background: #C7EFB1;
}

.footer__inner {
  display: flex;
  justify-content: space-around;
  padding: 20px 15px 15px;
  color: #0C5D90;
}
@media screen and (min-width: 641px) {
  .footer__inner {
    width: 420px;
    margin: 0 auto;
  }
}

.footer__inner--fa {
  color: #197902;
}

a:link.footer__link,
a:visited.footer__link,
a:hover.footer__link {
  display: block;
  color: #0C5D90;
  font-size: 12px;
}

a:link.footer__link--fa,
a:visited.footer__link--fa,
a:hover.footer__link--fa {
  color: #197902;
}

.footer__contact-text {
  padding: 0 15px;
  color: #0C5D90;
  text-align: center;
  font-size: 12px;
}

.footer__contact-text--fa {
  color: #197902;
}

.footer__tel a:link,
.footer__tel a:visited,
.footer__tel a:hover {
  display: block;
  text-align: center;
  color: #0C5D90;
  font-weight: bold;
  margin: 5px;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 641px) {
  .footer__tel a:link,
  .footer__tel a:visited,
  .footer__tel a:hover {
    display: none;
  }
}

.footer__tel--pc {
  display: none;
}
@media screen and (min-width: 641px) {
  .footer__tel--pc {
    display: block;
    text-align: center;
    font-size: 20px;
    margin: 5px;
    color: #0C5D90;
    font-weight: bold;
  }
}

.footer__tel--fa {
  color: #197902;
}
.footer__tel--fa a:link,
.footer__tel--fa a:visited,
.footer__tel--fa a:hover {
  color: #197902;
}

.footer__reception-time {
  text-align: center;
  font-size: 12px;
  color: #0C5D90;
  padding-bottom: 10px;
}

.footer__reception-time--fa {
  color: #197902;
}

.footer__copyright {
  color: #0C5D90;
  font-size: 12px;
  text-align: center;
  padding: 5px 5px 10px;
}
.footer__copyright--livestock {
  background: #26503b;
}

.footer__copyright--fa {
  color: #197902;
}

.footer__infomation {
  width: 63%;
  margin: 0 auto;
  padding: 10px 0 0;
  border-top: 1px solid #0C5D90;
  border-bottom: 1px solid #0C5D90;
}
@media screen and (min-width: 641px) {
  .footer__infomation {
    width: 420px;
  }
}

.footer__infomation--fa {
  border-top: 1px solid #197902;
  border-bottom: 1px solid #197902;
}

.footer__gotop {
  position: fixed;
  right: 5%;
  bottom: 5%;
  width: 70px;
}
.footer__gotop img {
  width: 100%;
}

.gift {
  width: 100%;
}

.gift__amazon-image {
  width: 50%;
  margin: 10px auto 10px;
}
.gift__amazon-image img {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .gift__amazon-image {
    width: 180px;
  }
}

.gift__present {
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}
.gift__present span {
  color: red;
  padding: 0 5px;
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 641px) {
  .gift__present {
    margin-bottom: 10px;
    letter-spacing: 0.02em;
  }
}

span.gift__present--brake {
  color: red;
  text-decoration: line-through;
  font-size: 14px;
  font-size: 0.875rem;
}
span.gift__present--brake span {
  padding: 0;
  font-size: 18px;
  font-size: 1.125rem;
}

.gift__text-brake-s {
  text-decoration: line-through;
}

.gift__card {
  width: 100%;
  border: 1px solid #707070;
  border-radius: 5px;
  margin-bottom: 15px;
}
@media screen and (min-width: 641px) {
  .gift__card {
    width: 240px;
    margin-bottom: 0;
  }
}

.gift__title {
  text-align: center;
  background: #FFFEE0;
  padding: 5px 0;
  border-bottom: 1px solid #707070;
  border-radius: 5px 5px 0 0;
  font-size: 18px;
  font-size: 1.125rem;
}

.gift__title--table {
  background: #E5FFFB;
  border-bottom: 1px solid #c7c6c6;
  text-align: center;
  font-weight: bold;
  padding: 5px;
  font-size: 15px;
  font-size: 0.9375rem;
}

.gift__inner {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 15px;
}
@media screen and (min-width: 641px) {
  .gift__inner {
    display: block;
  }
}

.gift__icon {
  width: 22%;
}
.gift__icon img {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .gift__icon {
    width: 64px;
    margin: 5px auto 15px;
  }
}

.gift__text {
  width: 70%;
  margin-left: 7%;
  font-size: 16px;
  font-size: 1rem;
}
.gift__text strong {
  color: red;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 641px) {
  .gift__text {
    width: 90%;
    margin: 0 auto;
  }
}

.gift__text-small {
  font-size: 14px;
  font-size: 0.875rem;
}

.gift__text-notice {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 641px) {
  .gift__text-notice {
    text-align: left;
  }
}

.gift__add-info {
  padding: 15px;
  border-top: 1px dotted #707070;
}

.gift__friends-link {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 641px) {
  .gift__wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
}

.gift__target-group {
  width: 100%;
  text-align: center;
  margin: 0px 0 20px;
  line-height: 1.5em;
  display: inline-block;
  font-size: 13px;
  font-size: 0.8125rem;
}
.gift__target-group span {
  background: linear-gradient(transparent 0%, #FFFE03 0%);
}
@media screen and (min-width: 641px) {
  .gift__target-group br {
    display: none;
  }
}

.gift__text-notice {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
}

.gift__text-notice--small {
  line-height: 1.5em;
  font-weight: normal;
  margin-top: 20px;
  font-size: 12px;
  font-size: 0.75rem;
}

.gift__table {
  border: 1px solid #c7c6c6;
  border-collapse: collapse;
  border-radius: 10px;
  margin-bottom: 30px;
}
.gift__table th, .gift__table td {
  border: 1px solid #c7c6c6;
  border-collapse: collapse;
  vertical-align: top;
}
@media screen and (max-width: 639px) {
  .gift__table tr {
    width: 100%;
    display: block;
  }
}
.gift__table th {
  width: 100%;
}
@media screen and (max-width: 639px) {
  .gift__table th {
    display: block;
  }
}
.gift__table td {
  width: 33.3%;
}
@media screen and (max-width: 639px) {
  .gift__table td {
    width: 100%;
    display: block;
  }
}

.gift__table-heading {
  background: #FFFEE0;
  padding: 10px;
  font-size: 18px;
  font-size: 1.125rem;
}

.gift__link-notice {
  text-align: center;
  margin: 20px 0;
  font-weight: bold;
  color: green;
  text-decoration: underline;
}

.gift__br {
  display: none;
}
@media screen and (max-width: 639px) {
  .gift__br {
    display: block;
  }
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.header--houjin-select {
  justify-content: center;
}

.header__logo {
  width: 40%;
}
.header__logo img {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .header__logo {
    width: 200px;
  }
}

.header__logo--houjin-select {
  width: 60%;
}
@media screen and (min-width: 641px) {
  .header__logo--houjin-select {
    width: 250px;
  }
}

.header__link {
  font-size: 14px;
  font-size: 0.875rem;
}
.header__link a {
  text-decoration: underline;
}

.hero {
  background: #CDE1EC;
}
@media screen and (min-width: 641px) {
  .hero {
    background: #CDE1EC url(../images/welcome-pc-back.jpg) repeat-x center bottom;
  }
}
.hero h2.hero__notice {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
}
.hero h2.hero__notice span {
  background: linear-gradient(transparent 30%, #fff407 50%);
}

.hero--fa {
  background: #C7EFB1;
}
@media screen and (min-width: 641px) {
  .hero--fa {
    background: #C7EFB1 url(../images/welcome-pc-fa-back.jpg) repeat-x center bottom;
  }
}

.hero--houjin-select {
  background: #C7EFB1;
}

.hero__title {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}
.hero__title img {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .hero__title {
    display: none;
  }
}

.hero__title--houjin-select {
  width: 75%;
}
@media screen and (min-width: 641px) {
  .hero__title--houjin-select {
    display: none;
  }
}

.hero__title--houjin-select--pc {
  display: none;
}
@media screen and (min-width: 641px) {
  .hero__title--houjin-select--pc {
    display: block;
    width: 420px;
    padding: 30px 0 25px;
  }
}

.hero__title--pc {
  display: none;
}
@media screen and (min-width: 641px) {
  .hero__title--pc {
    display: block;
    width: 460px;
    padding: 30px 0 25px;
  }
}

@media screen and (min-width: 641px) {
  .hero__title--fa-pc {
    width: 480px;
  }
}

.hero__infomation {
  text-align: center;
}
.hero__infomation span {
  display: inline-block;
  background: #fff;
  border-radius: 5px;
  font-weight: bold;
  padding: 5px 15px 3px;
  line-height: 1.2em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 641px) {
  .hero__infomation span {
    font-size: 16px;
    font-size: 1rem;
  }
}

.hero__infomation--houjin--select {
  background: #fff;
  width: 90%;
  margin: 0 auto 10px;
  padding: 10px 0;
  line-height: 1.5em;
}
.hero__infomation--houjin--select span {
  line-height: 1.5em;
  font-size: 16px;
  font-size: 1rem;
}
.hero__infomation--houjin--select span.present {
  font-weight: normal;
}
.hero__infomation--houjin--select span.present strong {
  color: red;
}
@media screen and (min-width: 641px) {
  .hero__infomation--houjin--select {
    width: 460px;
  }
}

.hero__image {
  width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  position: relative;
}
.hero__image img {
  width: 75%;
  margin: auto;
}
.hero__image img.hero__image--fa-pc-talk {
  width: 100%;
}
.hero__image .hero__image--fa-pc-talk--wagyu {
  position: absolute;
  top: 0;
  right: 95px;
  width: 200px;
  height: auto;
}
.hero__image .hero__image--fa-pc-talk--wagyu figure {
  position: relative;
}
.hero__image .hero__image--fa-pc-talk--wagyu figure img {
  width: 100%;
}
.hero__image .hero__image--fa-pc-talk--wagyu figure figcaption {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 5px 10px;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
}
.hero__image .hero__image--fa-sp-talk--wagyu {
  padding: 20px 2em;
}
.hero__image .hero__image--fa-sp-talk--wagyu figure {
  position: relative;
}
.hero__image .hero__image--fa-sp-talk--wagyu figure img {
  width: 75%;
}
.hero__image .hero__image--fa-sp-talk--wagyu figure figcaption {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 5px 10px;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
}
.hero__image.hero__image--sp .hero__image__baloon .hero__image__baloon__inner {
  background: #ffffff;
  border-radius: 10px;
  width: 90%;
  margin: auto;
  padding: 20px 20px 10px;
}
.hero__image.hero__image--sp .hero__image__baloon .hero__image__baloon__inner .hero__image__baloon__title {
  text-align: center;
  font-size: 0.9rem;
}
.hero__image.hero__image--sp .hero__image__baloon .hero__image__baloon__inner .hero__image__baloon__title strong {
  font-size: 1.2rem;
}
.hero__image.hero__image--sp .hero__image__baloon .hero__image__baloon__company {
  margin: 0.5em auto;
  line-height: 1.45;
  font-size: 1.15rem;
  font-weight: bold;
}
.hero__image.hero__image--sp .hero__image__baloon .hero__image__baloon__text {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  font-weight: bold;
  color: #0C5D90;
  margin: 10px auto;
}
.hero__image.hero__image--sp .hero__image__baloon .hero__image__baloon__parts {
  position: absolute;
  bottom: 30px;
  left: -48px;
  width: 50px;
  height: auto;
}
.hero__image.hero__image--sp .hero__image__big-animal .hero__image__big-animal__inner {
  background: #ffffff;
  border-radius: 10px;
  width: 90%;
  margin: auto;
  padding: 5px 20px;
  font-weight: bold;
}
.hero__image.hero__image--sp .hero__image__big-animal .hero__image__big-animal__inner .hero__image__big-animal__title {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  margin: 4px auto;
  border-bottom: 2px solid red;
  color: red;
}
.hero__image.hero__image--sp .hero__image__big-animal .hero__image__big-animal__inner .hero__image__big-animal__company {
  margin: 4px auto;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
}
.hero__image.hero__image--sp .hero__image__big-animal .hero__image__big-animal__inner .hero__image__big-animal__text {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  color: #0C5D90;
  margin: 4px auto;
}
.hero__image.hero__image--pc .hero__image__baloon {
  background: #FFFFFF;
  padding: 20px 30px 10px;
  border-radius: 10px;
  position: absolute;
  bottom: 50%;
  right: -42%;
  transform: translateY(50%);
}
.hero__image.hero__image--pc .hero__image__baloon .hero__image__baloon__inner .hero__image__baloon__title {
  text-align: center;
  font-size: 1rem;
}
.hero__image.hero__image--pc .hero__image__baloon .hero__image__baloon__inner .hero__image__baloon__title strong {
  font-size: 1.2rem;
}
.hero__image.hero__image--pc .hero__image__baloon .hero__image__baloon__company {
  margin: 0.65em auto;
  line-height: 1.65;
  font-size: 1.2rem;
  font-weight: bold;
}
.hero__image.hero__image--pc .hero__image__baloon .hero__image__baloon__text {
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  font-weight: bold;
  color: #0C5D90;
  margin: 10px auto;
}
.hero__image.hero__image--pc .hero__image__baloon .hero__image__baloon__parts {
  position: absolute;
  bottom: 30px;
  left: -48px;
  width: 50px;
  height: auto;
}
.hero__image.hero__image--pc .hero__image__big-animal {
  position: absolute;
  bottom: 50%;
  right: -20%;
  transform: translateY(50%);
  background: #FFFFFF;
  padding: 16px 30px;
  border-radius: 10px;
  font-weight: bold;
}
.hero__image.hero__image--pc .hero__image__big-animal .hero__image__big-animal__inner {
  position: relative;
}
.hero__image.hero__image--pc .hero__image__big-animal .hero__image__big-animal__inner .hero__image__big-animal__title {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  margin: 6px auto 10px;
  border-bottom: 2px solid red;
  color: red;
}
.hero__image.hero__image--pc .hero__image__big-animal .hero__image__big-animal__inner .hero__image__big-animal__company {
  margin: 16px auto;
  font-size: 18px;
  font-size: 1.125rem;
}
.hero__image.hero__image--pc .hero__image__big-animal .hero__image__big-animal__inner .hero__image__big-animal__text {
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  color: #0C5D90;
  margin: 10px auto;
}
.hero__image.hero__image--pc .hero__image__big-animal .hero__image__big-animal__inner .hero__image__big-animal__baloon {
  position: absolute;
  bottom: 30px;
  left: -67px;
  width: 50px;
  height: auto;
}
@media screen and (min-width: 641px) {
  .hero__image {
    display: none;
  }
}

.hero__image--fa {
  padding: 0 0 15px;
}

.hero__image--pc {
  display: none;
}
@media screen and (min-width: 641px) {
  .hero__image--pc {
    display: block;
    width: 640px;
    padding: 5px 0 15px;
  }
}

.hero__image--youtuber {
  position: relative;
  padding: 15px 0;
}
.hero__image--youtuber img {
  width: 90%;
}
@media screen and (min-width: 641px) {
  .hero__image--youtuber img {
    width: 100%;
  }
}

.hero__youtuber-link {
  position: absolute;
  right: 40px;
  bottom: 28px;
  display: inline-block;
  background: white;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 641px) {
  .hero__youtuber-link {
    right: 148px;
    bottom: 20px;
  }
}

.hero__add-text {
  width: 60%;
  margin: 0 auto;
}
.hero__add-text img {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .hero__add-text {
    width: 200px;
  }
}

.hero__gift {
  width: 100%;
  text-align: center;
  padding: 15px 0 0;
  color: red;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}
.hero__gift strong {
  color: black;
  font-size: 15px;
  font-size: 0.9375rem;
}
.hero__gift span {
  padding: 0 5px;
  border-bottom: 1px solid red;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 641px) {
  .hero__gift {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .hero__gift span {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.hero__gift span.hero__brake-area, .hero__gift span.hero__gift-brake {
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 641px) {
  .hero__gift span.hero__brake-area, .hero__gift span.hero__gift-brake {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.hero__gift span.hero__gift-brake {
  text-decoration: line-through;
}

.houjin-select__list {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .houjin-select__list {
    width: 460px;
    margin: 0 auto;
  }
}
.houjin-select__list .houjin-select__items {
  background: #578EB7;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 7px 0;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
}
.houjin-select__list .houjin-select__items:last-child {
  margin-bottom: 0;
}
.houjin-select__list .houjin-select__items:last-child::before {
  content: none;
}
.houjin-select__list .houjin-select__items span {
  font-size: 14px;
  font-size: 0.875rem;
}
.houjin-select__list .houjin-select__items::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 26px 0 26px 18px;
  border-color: transparent transparent transparent #578eb7;
  position: absolute;
  top: 92%;
  left: 47%;
  margin-top: -6px;
  transform: rotate(90deg);
}

.houjin-select__wrapper {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .houjin-select__wrapper {
    width: 990px;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
}

.houjin-select__table {
  width: 100%;
  border: 1px solid #595959;
  border-collapse: collapse;
  margin: 15px 0;
}
@media screen and (min-width: 641px) {
  .houjin-select__table {
    width: 320px;
    margin: 0;
  }
}
.houjin-select__table td, .houjin-select__table th {
  border: 1px solid #595959;
  border-collapse: collapse;
  text-align: left;
  padding: 5px;
  font-size: 14px;
  font-size: 0.875rem;
}
.houjin-select__table th {
  width: 20%;
  background: #E8FFD6;
  font-weight: normal;
}
@media screen and (min-width: 641px) {
  .houjin-select__table th {
    width: 30%;
  }
}
.houjin-select__table td {
  width: 70%;
}
.houjin-select__table td a {
  display: inline;
  font-size: 12px;
  font-size: 0.75rem;
}

.table {
  width: 100%;
  margin: 20px 0;
  font-size: 14px;
  font-size: 0.875rem;
}
.table td {
  border: 1px solid #A09E9E;
  border-collapse: collapse;
  padding: 12px;
}
@media screen and (min-width: 641px) {
  .table td {
    padding: 12px 12px 12px 50px;
  }
}
.table th {
  border: 1px solid #A09E9E;
  border-collapse: collapse;
  padding: 12px;
  width: 20%;
  text-align: left;
  font-weight: normal;
  background: #E5FFFB;
}
@media screen and (min-width: 641px) {
  .table th {
    width: 12%;
  }
}

@media screen and (max-width: 639px) {
  .table__head--seminar {
    width: 25% !important;
  }
}

.voice {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .voice {
    display: flex;
    justify-content: space-between;
  }
}

.voice__card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #C7CACC;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 15px;
}
@media screen and (min-width: 641px) {
  .voice__card {
    width: 238px;
    display: block;
    margin-bottom: 0;
  }
}

.voice__avatar {
  width: 22%;
}
.voice__avatar img {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .voice__avatar {
    width: 75px;
    margin: 0 auto 15px;
  }
}

.voice__text {
  width: 70%;
  margin-left: 7%;
  line-height: 1.7em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 641px) {
  .voice__text {
    width: 100%;
    margin: 0;
  }
}

.voice__info {
  text-align: center;
  padding-top: 10px;
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (max-width: 639px) {
  .voice__info--fa {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

.howto {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.howto__outline {
  display: inline-block;
  background: #FFFCB4;
  margin: 5px;
  padding: 2px 5px;
  font-size: 14px;
  font-size: 0.875rem;
}

.howto__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  margin: 15px 0;
}
@media screen and (min-width: 641px) {
  .howto__inner {
    row-gap: 20px;
    margin: 20px 0 15px;
  }
}

.howto__card {
  width: 100%;
  border: 1px solid #C7C6C6;
  margin: 0 auto;
  display: flex;
  align-items: center;
  max-height: 150px;
}
@media screen and (min-width: 641px) {
  .howto__card {
    width: 750px;
  }
}

.howto__image-pc {
  display: block;
  width: 40%;
}
@media screen and (max-width: 639px) {
  .howto__image-pc {
    display: none;
  }
}
.howto__image-pc img {
  width: 100%;
}

.howto__image-sp {
  display: block;
  width: 30%;
  margin-left: 10px;
}
@media screen and (min-width: 641px) {
  .howto__image-sp {
    display: none;
  }
}
.howto__image-sp img {
  width: 100%;
}

.howto__title {
  text-align: center;
  color: #0C5D90;
  padding-bottom: 12px;
  font-weight: bold;
}
.howto__title span {
  border-bottom: 1px solid #0C5D90;
  padding-bottom: 3px;
}
@media screen and (min-width: 641px) {
  .howto__title {
    padding-bottom: 18px;
  }
}

.howto__title--area {
  width: 80%;
  color: #0C5D90;
  padding: 8px;
  margin: 13px 0;
}
@media screen and (min-width: 641px) {
  .howto__title--area {
    width: 100%;
    margin: 5px 0 0 30px;
  }
}

.howto__title-step {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}
.howto__title-step span {
  background: #0C5D90;
  color: white;
  margin-right: 10px;
  padding: 7px;
  border-radius: 50%;
}

.howto__text {
  line-height: 1.7em;
  margin: 15px 0 0;
  font-size: 14px;
  font-size: 0.875rem;
}

.howto__text-small {
  line-height: 1.5em;
  font-weight: normal;
  margin-top: 5px;
  font-size: 12px;
  font-size: 0.75rem;
}

.br-pc {
  display: none;
}
@media screen and (min-width: 641px) {
  .br-pc {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
}

.new__hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../images/new/hero_bg.jpg") center/cover;
}
@media screen and (max-width: 639px) {
  .new__hero {
    min-height: 50vh;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) {
  .new__hero {
    min-height: 64vh;
  }
}
@media screen and (min-width: 376px) and (max-width: 390px) {
  .new__hero {
    min-height: 52vh;
  }
}
@media screen and (min-width: 391px) and (max-width: 414px) {
  .new__hero {
    min-height: 62vh;
  }
}

.new__hero-inner {
  margin: 0;
  position: absolute;
  top: calc(50% - 0.5em);
  width: 100%;
  text-align: center;
  line-height: 1;
  font-size: 8vw;
  text-shadow: 10px 10px 0 #fff;
}

.new__header {
  position: fixed;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 639px) {
  .new__header {
    display: none;
  }
}

.new__header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 996px;
  margin: 10px auto 0;
  padding: 10px;
  background: white;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.new__header-text {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 639px) {
  .new__header-text {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.new__logo {
  width: 200px;
}
@media screen and (max-width: 639px) {
  .new__logo {
    width: 100%;
    padding-left: 14px;
  }
}
.new__logo img {
  width: 100%;
}
@media screen and (max-width: 639px) {
  .new__logo img {
    width: 200px;
  }
}

a.new__festa-link:link,
a.new__festa-link:visited,
a.new__festa-link:hover {
  display: block;
  background: #EFEFEF;
  padding: 10px;
  border-radius: 5px;
}

.new__header-bottom {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 996px;
  margin: 0 auto;
  background: #07ad1a;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.new__header-bottom a:link, .new__header-bottom a:visited, .new__header-bottom a:hover {
  display: block;
  color: white;
  font-weight: bold;
  padding: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
.new__header-bottom--blue {
  background: #357ec1;
}

.new__navigation {
  position: fixed;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  z-index: 10;
  padding: 10px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
@media screen and (min-width: 641px) {
  .new__navigation {
    display: none;
  }
}

.new__hamburger-menu {
  width: 70px;
  height: 70px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}

.new__hamburger-bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #242424;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}

.new__hamburger-bar:first-child {
  top: 23px;
}

.new__hamburger-bar:nth-child(2) {
  top: 33px;
}

.new__hamburger-bar:last-child {
  top: 43px;
}

.new__hamburger-menu--open .new__hamburger-bar {
  top: 50%;
}

.new__hamburger-menu--open .new__hamburger-bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.new__hamburger-menu--open .new__hamburger-bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.new__hamburger-menu--open .new__hamburger-bar:nth-child(2) {
  display: none;
}

.new__navigation-link-area {
  display: none;
  background: #242424;
  position: absolute;
  top: 70px;
  width: 100%;
  z-index: 9999;
}

.new__navigation-list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.new__navigation-item {
  border-bottom: solid 1px #474747;
}

.new__navigation-item:first-child {
  border-top: solid 1px #474747;
}

.new__navigation-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 24px 0;
  transition: 0.5s;
}

@media (hover: hover) and (pointer: fine) {
  .new__navigation-link:hover {
    background: #333;
  }
}
.new__hero-information {
  position: absolute;
  top: 180px;
  background: white;
  width: 33%;
  border-radius: 8px;
  font-weight: bold;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
}
@media screen and (max-width: 639px) {
  .new__hero-information {
    top: 80px;
    width: 60%;
  }
}

.new__hero-qualification {
  display: inline-block;
  text-align: left;
  border: 1px solid black;
  padding: 6px 15px;
  margin: 15px auto 0;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 639px) {
  .new__hero-qualification {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) {
  .new__hero-qualification {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.new__hero-date {
  text-align: center;
  padding: 25px 0 20px;
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 639px) {
  .new__hero-date {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) {
  .new__hero-date {
    padding: 16px 0 10px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 376px) and (max-width: 390px) {
  .new__hero-date {
    padding: 20px 0 10px;
  }
}

.new__hero-time {
  text-align: center;
  padding: 0 0 15px;
  border-bottom: 1px solid black;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 639px) {
  .new__hero-time {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) {
  .new__hero-time {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 376px) and (max-width: 390px) {
  .new__hero-time {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.new__hero-venue {
  text-align: center;
  padding: 15px 0;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .new__hero-venue {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) {
  .new__hero-venue {
    font-size: 16px;
    font-size: 1rem;
  }
}

.new__entry-button {
  display: block;
  width: 200px;
  height: 60px;
  line-height: 60px;
  position: relative;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-weight: bold;
  transition: 0.5s;
  background: linear-gradient(#2bdc28, #039814 50px, #039814 250px, #2bdc28);
  background-size: 200px 300px;
  border-radius: 36px;
  margin: 0 auto 15px;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .new__entry-button {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) {
  .new__entry-button {
    width: 164px;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) {
  .new__entry-button {
    width: 174px;
  }
}
.new__entry-button--blue {
  background: linear-gradient(#347ec1, #0c5394 50px, #0c5394 250px, #347ec1);
}

.new__entry-button:hover {
  background-position: 0 100%;
}

.new__bg-gray {
  background: #F9F9F9;
}

.new__bg-green {
  background: #F6FFF5;
}

.new__bg-blue {
  background: #dff0ff;
}

.new__inner {
  position: relative;
  width: 996px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 639px) {
  .new__inner {
    width: 90%;
  }
}
.new__inner--hero {
  padding: 0;
}

.new__heading {
  position: relative;
  text-align: center;
  margin: 0 0 60px;
  font-size: 39px;
  font-size: 2.4375rem;
}
@media screen and (max-width: 639px) {
  .new__heading {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.new__heading:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  width: 114px;
  height: 6px;
  background: #07ad1a;
  border-radius: 5px;
}
.new__heading--blue:after {
  background: #357ec1;
}

.new__text {
  text-align: left;
  padding: 0 25px 10px;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 639px) {
  .new__text {
    padding: 0 10px 10px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.new__text span {
  display: block;
  margin-top: 5px;
  color: #ffd976;
  font-size: 13px;
  font-size: 0.8125rem;
}
.new__text--sub-text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 639px) {
  .new__text--sub-text {
    text-align: left;
    font-size: 16px;
    font-size: 1rem;
  }
}
.new__text--white {
  color: white;
}
@media screen and (max-width: 639px) {
  .new__text--gift {
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.new__text--event {
  font-weight: bold;
}
@media screen and (max-width: 639px) {
  .new__text--event {
    text-align: center;
  }
}
@media screen and (min-width: 641px) {
  .new__text--event br {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .new__text--event br {
    display: block;
  }
}
.new__text--event-note {
  text-align: center;
  padding: 0 0 20px;
  font-size: 12px;
  font-size: 0.75rem;
}

.new__point {
  width: 800px;
  margin: 0 auto;
  padding: 30px 0;
}
@media screen and (max-width: 639px) {
  .new__point {
    width: 100%;
  }
}
.new__point li {
  display: flex;
  padding: 0 0 15px;
}
.new__point-num {
  width: 110px;
  background: #07ad1a;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media screen and (max-width: 639px) {
  .new__point-num {
    width: 22%;
    position: relative;
  }
}
.new__point-num img {
  width: 100%;
}
@media screen and (max-width: 639px) {
  .new__point-num img {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.new__point-num--blue {
  background: #357ec1;
}
.new__point-inner {
  display: flex;
  align-items: center;
  width: 690px;
  background: white;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media screen and (max-width: 639px) {
  .new__point-inner {
    display: block;
    width: 78%;
  }
}
.new__point-inner h3 {
  font-weight: bold;
  padding: 0 0 0 15px;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .new__point-inner h3 {
    padding: 10px 10px 15px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.new__point-inner .new__point-text {
  padding: 0 15px 0 0;
}
@media screen and (max-width: 639px) {
  .new__point-inner .new__point-text {
    padding: 10px;
  }
}
.new__point-inner h3,
.new__point-inner .new__point-text {
  width: 50%;
}
@media screen and (max-width: 639px) {
  .new__point-inner h3,
  .new__point-inner .new__point-text {
    width: 100%;
  }
}

.new__gift-info {
  background: #07ad1a;
  width: 750px;
  color: white;
  text-align: center;
  margin: 0 auto;
  padding: 30px 0 20px;
}
@media screen and (max-width: 639px) {
  .new__gift-info {
    width: 100%;
    padding: 20px 15px 15px;
  }
}
.new__gift-info--blue {
  background: #357ec1;
}
.new__gift-info img {
  width: 30%;
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .new__gift-info img {
    width: 50%;
  }
}
.new__gift-info h3 {
  color: white;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .new__gift-info h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 641px) {
  .new__gift-info h3 br {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .new__gift-info h3 br {
    display: block;
  }
}
.new__gift-info h3 span {
  display: inline-block;
  color: #FFD976;
  padding: 0 10px;
}

.new__gift-table {
  width: 750px;
  margin: 0 auto;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
}
@media screen and (max-width: 639px) {
  .new__gift-table {
    width: 100%;
  }
}
.new__gift-table th {
  font-weight: bold;
  width: 165px;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 639px) {
  .new__gift-table th {
    width: 110px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.new__gift-table th, .new__gift-table td {
  padding: 15px;
  border-bottom: 1px solid black;
  border-right: 1px solid black;
}

@media screen and (max-width: 639px) {
  .new__gift-text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.new__gift-price {
  text-align: center;
  color: #f93300;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 639px) {
  .new__gift-price {
    font-size: 16px;
    font-size: 1rem;
  }
}

.new__event {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0 20px;
}
@media screen and (max-width: 639px) {
  .new__event {
    display: block;
  }
}

.new__event-table {
  width: 530px;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
  margin: 0 30px 0 0;
}
@media screen and (max-width: 639px) {
  .new__event-table {
    width: 100%;
    margin: 0 0 10px;
  }
}
.new__event-table th {
  border-top: 1px solid black;
  background: white;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 639px) {
  .new__event-table th {
    text-align: left;
    font-size: 16px;
    font-size: 1rem;
  }
}
.new__event-table th span {
  color: white;
  background: black;
  border-radius: 20px;
  padding: 10px 24px;
  margin: 0 5px 0 0;
}
@media screen and (max-width: 639px) {
  .new__event-table th span {
    padding: 10px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.new__event-table th, .new__event-table td {
  border-bottom: 1px solid black;
  border-right: 1px solid black;
  padding: 15px;
}

.new__event-heading {
  width: 72px;
  background: #F4F4F4;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 639px) {
  .new__event-heading {
    width: 60px;
  }
}

.new__event-body {
  background: white;
  font-size: 14px;
  font-size: 0.875rem;
}

.new__event-photo {
  width: 290px;
}
@media screen and (max-width: 639px) {
  .new__event-photo {
    width: 100%;
  }
}
.new__event-photo img {
  width: 100%;
}

.new__pickup {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 639px) {
  .new__pickup {
    display: block;
  }
}
.new__pickup li {
  width: 434px;
}
@media screen and (max-width: 639px) {
  .new__pickup li {
    width: 100%;
  }
}
.new__pickup li:nth-child(odd) {
  margin: 0 10px 0 0;
}
@media screen and (max-width: 639px) {
  .new__pickup li:nth-child(odd) {
    margin: 0 0 10px;
  }
}
.new__pickup li:nth-child(even) {
  margin: 0 0 0 10px;
}
@media screen and (max-width: 639px) {
  .new__pickup li:nth-child(even) {
    margin: 0 0 10px;
  }
}
.new__pickup li h3 {
  padding: 0 0 18px;
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 639px) {
  .new__pickup li h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.new__pickup-inner {
  background: white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 20px;
}
.new__pickup-flex {
  padding: 0 0 10px;
  text-align: center;
}
.new__pickup-thumbnail {
  width: 40%;
  margin: 0 auto 10px;
}
.new__pickup-thumbnail img {
  width: 100%;
}
.new__pickup-address {
  font-size: 14px;
  font-size: 0.875rem;
}
.new__pickup-pr {
  padding: 0 0 13px;
  font-size: 16px;
  font-size: 1rem;
}
.new__pickup-link {
  background: #07ad1a;
  text-align: right;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  margin: 0 0 20px;
}
.new__pickup-link a:link, .new__pickup-link a:visited, .new__pickup-link a:hover {
  display: block;
  font-weight: bold;
  color: white;
  padding: 10px;
}
.new__pickup-link-blue {
  background: #357ec1;
}

.new__company-table tr {
  border-bottom: 1px solid black;
}
.new__company-table th, .new__company-table td {
  width: 50%;
  text-align: left;
}
@media screen and (max-width: 639px) {
  .new__company-table th, .new__company-table td {
    width: 100%;
    display: block;
  }
}
.new__company-table th a:link, .new__company-table th a:visited, .new__company-table th a:hover {
  display: block;
  padding: 15px;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}
.new__company-table td {
  padding: 15px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 639px) {
  .new__company-table td {
    padding: 0 15px 15px;
  }
}

.new__date {
  width: 600px;
  text-align: center;
  border-bottom: 1px solid black;
  margin: 0 auto;
  padding: 0 0 30px;
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 639px) {
  .new__date {
    width: 100%;
    padding: 0 0 20px;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.new__date span {
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 639px) {
  .new__date span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 641px) {
  .new__date br {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .new__date br {
    display: block;
  }
}

.new__venue {
  font-weight: bold;
  text-align: center;
  padding: 30px 0 0;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .new__venue {
    padding: 20px 0 0;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.new__info {
  width: 460px;
  margin: 50px auto;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 639px) {
  .new__info {
    width: 100%;
    margin: 35px auto;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.new__info-heading {
  width: 25%;
}
@media screen and (max-width: 639px) {
  .new__info-heading {
    width: 23%;
  }
}

.new__info-body {
  width: 75%;
}
@media screen and (max-width: 639px) {
  .new__info-body {
    width: 77%;
  }
}

.new__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin: 30px auto 0;
}
.new__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.new__address {
  text-align: center;
  padding: 0 0 15px;
  font-size: 14px;
  font-size: 0.875rem;
}

.new__access-list {
  width: 300px;
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 639px) {
  .new__access-list {
    width: 100%;
  }
}

.new__coming-soon {
  text-align: center;
  background: white;
  padding: 20px;
}

body.farm {
  --color-common: #2AA346;
  --color-dark: #0A8324;
  --color-light: #EEF8F0;
  --color-ribbon: #1A9336;
}

body.animal {
  --color-common: #357EC1;
  --color-dark: #055EA1;
  --color-light: #EEF4FA;
  --color-ribbon: #256EB1;
}

body {
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 639px) {
  body {
    font-size: 14px;
  }
}

section {
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--color-common);
  transition: all 0.5s ease;
}
a:hover {
  color: var(--color-dark);
}

.bg__foot {
  background: url("../images/event_new/footprint.webp") center top/488px no-repeat;
}
.bg__foot-right {
  background-position: calc(50% + 600px) -50px;
}
.bg__foot-left {
  background-position: calc(50% - 600px) -80px;
}

.form__btn {
  width: 400px;
  height: 80px;
  background-color: #FFEB03;
  border: none;
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  margin: 0 auto;
}
.form__btn:hover {
  background-color: #FFC627;
}
@media screen and (max-width: 639px) {
  .form__btn {
    width: 100%;
    font-size: 18px;
    height: 64px;
  }
}
.form__btn svg {
  width: 20px;
  margin-right: 8px;
}
.form__btn--nav {
  width: initial;
  height: initial;
  font-size: 14px;
  padding: 2px 16px;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 960px) {
  .form__btn--nav {
    width: 100%;
    height: 64px;
    color: var(--color-dark) !important;
    font-size: 16px;
  }
}
.form__btn--nav svg {
  width: 14px;
}
.form__btn--sp {
  display: none;
}
@media (max-width: 960px) {
  .form__btn--sp {
    width: 64px;
    height: 64px;
    background-color: #FFEB03;
    color: var(--color-dark);
    position: absolute;
    top: 0;
    right: 64px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .form__btn--sp svg {
    width: 18px;
  }
}
.form__btn--eve {
  margin-bottom: 80px;
}

.event__l-container {
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .event__l-container {
    width: 90%;
  }
}

.event__header {
  background-color: #fff;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.08);
  height: 110px;
  position: fixed;
  z-index: 999;
  width: 100%;
}
@media (max-width: 960px) {
  .event__header {
    height: 64px;
  }
}
.event__header .event__l-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
@media (max-width: 960px) {
  .event__header .event__l-container {
    height: 64px;
  }
}
@media screen and (max-width: 639px) {
  .event__header .event__l-container {
    width: 96%;
  }
}
.event__logo {
  font-size: 12px;
}
@media (max-width: 960px) {
  .event__logo {
    font-size: 10px;
  }
}
.event__logo img {
  width: 220px;
  margin: 8px 0 5px;
}
@media (max-width: 960px) {
  .event__logo img {
    width: 140px;
  }
}
@media screen and (max-width: 639px) {
  .event__logo img {
    margin: 0;
  }
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: none;
  }
  .nav-toggle-label {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 64px;
    height: 64px;
    cursor: pointer;
    z-index: 200;
    background-color: #EEF4FA;
  }
  .nav-toggle-label span {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: #212121;
    transition: background 0.3s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .nav-toggle-label span::before, .nav-toggle-label span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #212121;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
  }
  .nav-toggle-label span::before {
    top: -8px;
  }
  .nav-toggle-label span::after {
    top: 8px;
  }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--color-common);
    color: #fff;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 100;
  }
  .nav a {
    color: #fff;
  }
  .nav-toggle:checked ~ .nav {
    transform: translateY(0);
  }
  .nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
  }
  .nav-toggle:checked + .nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }
  .nav-toggle:checked + .nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
  }
}
.event__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  font-size: 32px;
  font-weight: 700;
  height: 240px;
  color: #212121;
}
@media screen and (max-width: 639px) {
  .event__heading {
    font-size: 22px;
    height: 112px;
  }
}
.event__heading-sub {
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 639px) {
  .event__heading-sub {
    font-size: 12px;
  }
}
.event__heading-bg {
  font-size: 160px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: rgba(0, 0, 0, 0.04);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 639px) {
  .event__heading-bg {
    font-size: 80px;
  }
}
.event__heading--lv3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .event__heading--lv3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.event__nav_box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
  gap: 4px;
}
.event__nav_link_client {
  color: #212121;
  text-decoration: underline;
}
@media (max-width: 960px) {
  .event__nav_link_client {
    display: none;
  }
}
.event__nav_list {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .event__nav_list {
    flex-direction: column;
    width: 80%;
    margin: 80px auto 40px;
    align-items: flex-start;
    gap: 15px;
  }
  .event__nav_list li {
    border-bottom: dashed 1px #fff;
    padding-bottom: 15px;
    width: 100%;
  }
}
.event__nav_item_client {
  display: none;
}
@media (max-width: 960px) {
  .event__nav_item_client {
    display: block;
  }
}

#keyvisual {
  height: 560px;
  background: url("../images/event_new/key_bg.webp") center right/cover;
  overflow: visible;
  padding-top: 80px;
}
@media screen and (max-width: 639px) {
  #keyvisual {
    background: url("../images/event_new/key_bg_sp.webp") center right/cover;
    height: 544px;
    padding-top: 64px;
  }
}

.key__pc_none {
  display: none;
}
@media screen and (max-width: 639px) {
  .key__pc_none {
    display: block;
  }
}
.key__heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.6;
  padding: 40px 0 10px;
}
@media screen and (max-width: 639px) {
  .key__heading {
    font-size: 22px;
    padding: 30px 0 10px;
  }
}
.key__heading span.key__heading-sub {
  display: flex;
  align-items: flex-end;
  padding: 4px 16px;
  width: fit-content;
  background-color: var(--color-light);
  border: solid 1px var(--color-dark);
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 700;
  position: relative;
  font-size: 14px;
}
@media screen and (max-width: 639px) {
  .key__heading span.key__heading-sub {
    font-size: 16px;
  }
}
.key__heading span.key__heading-sub::before {
  content: "";
  border: 5px solid transparent;
  border-top: 8px solid var(--color-dark);
  margin-left: -8px;
  top: 100%;
  left: 40px;
  position: absolute;
}
.key__heading span.key__heading-sub::after {
  content: "";
  border: 5px solid transparent;
  border-top: 8px solid var(--color-light);
  margin-left: -8px;
  margin-top: -2px;
  top: 100%;
  left: 40px;
  position: absolute;
}
@media screen and (max-width: 639px) {
  .key__heading span.key__heading-sub {
    font-size: 12px;
  }
}
.key__text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 639px) {
  .key__text {
    font-size: 14px;
  }
}
.key__info {
  background-color: var(--color-common);
  color: #fff;
  padding: 30px;
  width: fit-content;
  position: relative;
  border-radius: 4px;
}
@media screen and (max-width: 639px) {
  .key__info {
    padding: 30px 20px 20px;
    position: absolute;
    bottom: -120px;
    left: 20px;
    width: calc(100% - 20px);
    border-raius: 4px 0 4px 0;
  }
}
.key__info-location {
  font-size: 24px;
  font-weight: 700;
  display: flex;
}
.key__info-location img {
  height: 50px;
  margin-right: 8px;
}
@media screen and (max-width: 639px) {
  .key__info-location {
    font-size: 20px;
  }
}
.key__info-date {
  font-size: 48px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 639px) {
  .key__info-date {
    font-size: 40px;
  }
}
.key__info-date span {
  font-size: 32px;
}
@media screen and (max-width: 639px) {
  .key__info-date span {
    font-size: 24px;
  }
}
.key__gift {
  position: absolute;
  right: -20px;
  top: -20px;
  background-color: #E55552;
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(15deg);
}
@media screen and (max-width: 639px) {
  .key__gift {
    width: 90px;
    height: 90px;
    right: 20px;
    font-size: 20px;
  }
}
.key__gift span {
  font-size: 10px;
}
@media screen and (max-width: 639px) {
  .key__gift span {
    font-size: 8px;
  }
}
.key__gift::before {
  content: "";
  display: block;
  background-image: url("../images/event_new/key_gift.webp");
  background-size: cover;
  background-position: center;
  width: 80px;
  height: 84px;
  position: absolute;
  left: -60px;
  bottom: -10px;
  transform: rotate(-15deg);
}

#guidelines {
  padding-top: 60px;
}
@media screen and (max-width: 639px) {
  #guidelines {
    padding-top: 140px;
  }
}

.guide__list {
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 639px) {
  .guide__list {
    gap: 15px;
  }
}
.guide__list-item {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .guide__list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.guide__list-label {
  background-color: var(--color-common);
  font-weight: 700;
  color: #fff;
  width: 140px;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .guide__list-label {
    width: 100px;
    padding: 0 10px;
  }
}
.guide__list-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 639px) {
  .guide__list-text {
    font-size: 16px;
  }
}
.guide__list-text-small {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 639px) {
  .guide__list-text-small {
    font-size: 14px;
  }
}

#access {
  padding-bottom: 100px;
}
@media screen and (max-width: 639px) {
  #access {
    padding-bottom: 50px;
  }
}

.access__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 639px) {
  .access__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.access__list {
  display: grid;
}
.access__list li {
  border-bottom: dashed 1px #999;
  padding: 20px 0;
}
@media screen and (max-width: 639px) {
  .access__list li {
    padding: 10px 0;
  }
}
.access__detail {
  display: flex;
  gap: 20px;
  align-items: center;
}
.access__googlemap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.access__googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#about {
  margin-bottom: 20px;
}
@media screen and (max-width: 639px) {
  #about {
    margin-bottom: 10px;
  }
}

.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 40px;
  margin: 90px 0 80px;
}
@media screen and (max-width: 639px) {
  .about__list {
    grid-template-columns: 1fr;
    gap: 60px;
    margin: 70px 0 40px;
  }
}
.about__item {
  border: solid 4px var(--color-common);
  border-radius: 8px;
  background-color: var(--color-light);
  padding: 40px 30px 30px;
}
@media screen and (max-width: 639px) {
  .about__item {
    border: solid 3px var(--color-common);
    border-radius: 4px;
    padding: 30px 20px 20px;
  }
}
.about__icon {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: var(--color-common);
  margin: -80px auto 0;
}
.about__heading {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 639px) {
  .about__heading {
    font-size: 18px;
  }
}
.about__point {
  background-color: var(--color-dark);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 0 8px;
  display: flex;
  align-items: center;
  width: fit-content;
  position: relative;
  height: 25px;
}
.about__point::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 10px;
  border: 4px solid transparent;
  border-top: 8px solid var(--color-dark);
}
.about__point-num {
  font-size: 18px;
  margin-left: 0.25em;
}
.about__img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 639px) {
  .about__img {
    gap: 10px;
    margin-bottom: 40px;
  }
}
.about__img img {
  width: 100%;
}

#gift {
  padding-bottom: 100px;
  overflow: visible;
}
@media screen and (max-width: 639px) {
  #gift {
    padding-bottom: 50px;
    overflow: hidden;
    padding-top: 24px;
  }
}

.gift__container {
  border: solid 4px var(--color-common);
  border-radius: 8px;
  margin-top: -28px;
}
@media screen and (max-width: 639px) {
  .gift__container {
    border: solid 3px var(--color-common);
    border-radius: 4px;
    margin-top: -16px;
  }
}
.gift__heading {
  display: flex;
  width: fit-content;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  z-index: 3;
}
.gift__heading::before {
  content: "";
  position: absolute;
  width: 50px;
  bottom: -10px;
  left: -55px;
  z-index: -2;
  border: 35px solid var(--color-ribbon);
  border-left-color: transparent;
}
@media screen and (max-width: 639px) {
  .gift__heading::before {
    left: -35px;
    border: 24px solid var(--color-ribbon);
    border-left-color: transparent;
  }
}
.gift__heading::after {
  content: "";
  position: absolute;
  width: 50px;
  bottom: -10px;
  right: -55px;
  z-index: -2;
  border: 35px solid var(--color-ribbon);
  border-right-color: transparent;
}
@media screen and (max-width: 639px) {
  .gift__heading::after {
    right: -35px;
    border: 24px solid var(--color-ribbon);
    border-right-color: transparent;
  }
}
.gift__heading h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 15px 80px;
  line-height: 45px;
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
  background: var(--color-common);
}
@media screen and (max-width: 639px) {
  .gift__heading h2 {
    font-size: 24px;
    padding: 4px 16px;
  }
}
.gift__heading h2::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 15px var(--color-dark);
}
.gift__heading h2::after {
  position: absolute;
  content: "";
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-left: solid 15px var(--color-dark);
}
.gift__heading-box {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.gift__heading-box::before {
  content: "";
  display: block;
  background-image: url("../images/event_new/gift01.webp");
  background-size: cover;
  background-position: center;
  width: 66px;
  height: 152px;
  position: absolute;
  left: -160px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 639px) {
  .gift__heading-box::before {
    width: 44px;
    height: 102px;
    left: -90px;
  }
}
.gift__heading-box::after {
  content: "";
  display: block;
  background-image: url("../images/event_new/gift02.webp");
  background-size: cover;
  background-position: center;
  width: 146px;
  height: 120px;
  position: absolute;
  right: -240px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 639px) {
  .gift__heading-box::after {
    width: 98px;
    height: 82px;
    right: -140px;
  }
}
.gift__info {
  padding: 50px;
  margin: 0 auto;
  width: fit-content;
}
@media screen and (max-width: 639px) {
  .gift__info {
    padding: 40px 20px 30px;
  }
}
.gift__heading-area {
  margin-bottom: 25px;
}
.gift__heading--lv3 {
  font-size: 24px;
  font-weight: 700;
  color: #E55552;
  line-height: 1.4;
}
@media screen and (max-width: 639px) {
  .gift__heading--lv3 {
    font-size: 14px;
  }
}
.gift__heading--lv3 span {
  font-size: 40px;
}
@media screen and (max-width: 639px) {
  .gift__heading--lv3 span {
    font-size: 24px;
  }
}
.gift__note {
  font-weight: 700;
}
.gift__note-list {
  margin-bottom: 15px;
}
.gift__remark {
  font-size: 12px;
}
.gift__detail {
  background-color: var(--color-common);
  color: #fff;
  padding: 60px 50px;
}
@media screen and (max-width: 639px) {
  .gift__detail {
    padding: 30px 20px;
  }
}
.gift__list {
  display: grid;
  gap: 20px;
  width: fit-content;
  margin: 0 auto 50px;
}
@media screen and (max-width: 639px) {
  .gift__list {
    margin: 0 auto 30px;
  }
}
.gift__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 639px) {
  .gift__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.gift__label {
  background-color: #fff;
  color: var(--color-dark);
  width: 160px;
  text-align: center;
  padding: 10px;
  font-weight: 700;
}
@media screen and (max-width: 639px) {
  .gift__label {
    padding: 0 10px;
  }
}
.gift__txt {
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 639px) {
  .gift__txt {
    font-size: 14px;
  }
}
.gift__txt-emphasis {
  font-size: 24px;
  color: #FFEB03;
  margin-left: 10px;
}
@media screen and (max-width: 639px) {
  .gift__txt-emphasis {
    font-size: 20px;
    margin-left: 0;
  }
}
.gift__txt-small {
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  .gift__txt-small {
    font-size: 12px;
  }
}
.gift__item-remark {
  font-size: 14px;
  font-weight: 400;
}
.gift__item-remark a {
  color: #fff;
  transition: all 0.5s ease;
  text-decoration: underline;
}
.gift__item-remark a:hover {
  color: rgba(255, 255, 255, 0.8);
}

#companies {
  margin-bottom: 20px;
}

.companies__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  font-weight: bold;
  margin-bottom: 80px;
  color: var(--color-common);
}
@media screen and (max-width: 639px) {
  .companies__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.companies__pr {
  font-size: 12px;
  font-weight: 400;
}
.companies__location {
  display: flex;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
}
.companies__location span {
  background-color: var(--color-common);
  color: #fff;
  padding: 0 8px;
  line-height: 1.6;
}
.companies__name {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
}
.companies__name img {
  height: 20px;
}
.companies__target {
  display: flex;
  align-items: center;
  gap: 10px;
  border: solid 1px #212121;
  width: fit-content;
  margin-bottom: 40px;
  padding: 5px 10px;
}
@media screen and (max-width: 639px) {
  .companies__target {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.companies__target li {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 639px) {
  .companies__target li {
    width: calc(33.3333333333% - 10px);
    white-space: nowrap;
    letter-spacing: -0.05em;
  }
}
.companies__target li img {
  height: 20px;
  width: 22px;
  object-fit: contain;
}
.companies__target-animal {
  gap: 16px;
}

.event__list {
  position: relative;
}
.event__item {
  position: relative;
  margin-bottom: 2rem;
  border: solid 2px var(--color-common);
  border-radius: 8px;
}
@media screen and (max-width: 639px) {
  .event__item {
    border-radius: 4px;
  }
}
.event__inner {
  display: flex;
}
@media screen and (max-width: 639px) {
  .event__inner {
    display: block;
  }
}
.event__type {
  background-color: var(--color-common);
  border-radius: 50%;
  color: #fff;
  position: absolute;
  width: 90px;
  height: 90px;
  text-align: center;
  align-content: center;
  position: absolute;
  right: -2rem;
  top: -1rem;
}
@media screen and (max-width: 639px) {
  .event__type {
    right: -1rem;
  }
}
.event__img {
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  width: 60%;
}
@media screen and (max-width: 639px) {
  .event__img {
    border-radius: 8px 8px 0 0;
    width: 100%;
  }
}
.event__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event__content {
  padding: 2rem;
  width: 1020px;
}
@media screen and (max-width: 639px) {
  .event__content {
    width: auto;
  }
}
.event__name {
  font-size: 1.6rem;
}
@media screen and (max-width: 639px) {
  .event__name {
    font-size: 1.2rem;
  }
}
.event__seminar {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 639px) {
  .event__seminar {
    display: block;
  }
}
.event__lecturer {
  border-bottom: solid 2px var(--color-common);
  display: inline-block;
}
.event__details {
  background-color: #F5F5F5;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.pickup__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 639px) {
  .pickup__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.pickup__item {
  padding: 30px;
  background-color: var(--color-light);
  border: solid 2px var(--color-common);
  border-radius: 8px;
}
@media screen and (max-width: 639px) {
  .pickup__item {
    padding: 20px;
  }
}
.pickup__detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .pickup__detail {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.pickup__info {
  display: flex;
  flex-direction: column;
}
.pickup__img img {
  height: 135px;
  width: auto;
  margin: 0 auto;
}
.pickup____heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pickup__link {
  background-color: var(--color-common);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 15px;
  transition: all 0.5s ease;
  width: fit-content;
  margin-top: auto;
}
.pickup__link:hover {
  background-color: var(--color-dark);
  color: #fff;
}
@media screen and (max-width: 639px) {
  .pickup__link {
    padding: 4px 15px;
    margin-top: 10px;
  }
}

#form {
  background-color: var(--color-common);
  font-size: 16px;
  color: #fff;
  padding-bottom: 80px;
}
#form a {
  color: #fff;
  text-decoration: underline;
}
#form .event__heading {
  text-align: center;
  color: #fff;
}
#form .event__heading-bg {
  color: rgba(255, 255, 255, 0.1);
}

.entry-form {
  margin: 0;
}
@media screen and (min-width: 641px) {
  .entry-form {
    width: 460px;
    margin: 30px auto 0;
  }
}

.entry-form th span {
  background: #E55552;
  color: #fff;
  padding: 0 10px;
  margin-right: 10px;
  font-size: 14px;
  border-radius: 0;
}

.entry-form th {
  font-size: 16px;
  color: #fff;
}

.form__input, .form__select {
  border: solid 2px var(--color-dark);
  background-color: #fff;
  font-size: 16px;
  margin-bottom: 30px;
}

.mw_wp_form .vertical-item {
  color: #fff;
}

.form__terms-text, .form__memo {
  color: #fff;
}

.complete {
  background-color: var(--color-dark);
  padding: 30px;
  border-radius: 8px;
}

.form__select-area:after {
  color: var(--color-dark);
}

.complete__heading-wrapper {
  margin: 0;
}

.complete__heading {
  color: #FFEB03;
  margin-bottom: 20px;
}
.complete__heading::before {
  background-color: #FFEB03;
}

.complete__notice span {
  background: linear-gradient(transparent 60%, #E55552 60%);
}

.complete__card-title {
  background-color: #E55552;
  border-bottom: none;
}

.complete__card {
  border: 2px solid #E55552;
  background-color: #EE9290;
}

.footer__event--farm {
  background-color: #212121;
  color: #fff;
}
.footer__event-info {
  display: flex;
  align-items: center;
  gap: 80px;
  width: fit-content;
  margin: 0 auto;
  padding: 40px 0;
}
@media screen and (max-width: 639px) {
  .footer__event-info {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
}
.footer__event-logo {
  width: 240px;
}
@media screen and (max-width: 639px) {
  .footer__event-logo {
    width: 200px;
  }
}
.footer__event-text {
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  .footer__event-text {
    font-size: 14px;
  }
}
.footer__event-tel {
  font-size: 32px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 639px) {
  .footer__event-tel {
    font-size: 24px;
  }
}
.footer__event-tel span {
  font-size: 14px;
  font-weight: 400;
  margin-left: 20px;
}
@media screen and (max-width: 639px) {
  .footer__event-tel span {
    font-size: 12px;
    display: block;
    margin-left: 0;
  }
}
.footer__event-menu {
  display: flex;
  justify-content: space-between;
  border-top: solid 1px #999;
  padding: 30px 0;
}
@media screen and (max-width: 639px) {
  .footer__event-menu {
    flex-direction: column-reverse;
    align-items: center;
    padding: 15px 0;
  }
}
.footer__event-copyright {
  font-size: 14px;
}
@media screen and (max-width: 639px) {
  .footer__event-copyright {
    font-size: 12px;
  }
}
.footer__event-list {
  display: flex;
  gap: 20px;
}
.footer__event-link {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 639px) {
  .footer__event-link {
    font-size: 12px;
  }
}
.footer__event-link:hover {
  opacity: 0.8;
}

/*# sourceMappingURL=style.css.map */
