:root {
  --base-color: #fff;
  --main-color: #333;
  --accent-color: #004d91;
}

html {
  font-size: 0.7320644217vw;
}
@media (min-width: 1366px) {
  html {
    font-size: 62.5%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #41302d;
  line-height: 2;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

[class$=__heading] img {
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.8;
}

.l-inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .l-inner {
    padding: 0 0;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 2rem;
  background: #fff;
  z-index: 2;
}
@media (max-width: 768px) {
  .l-header {
    padding-left: 0;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .l-header__inner {
    padding: 0 0 0 3.2vw;
    flex-wrap: nowrap;
    gap: 2vw;
  }
}
.l-header__logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .l-header__logos {
    gap: 2.7vw;
  }
}
.l-header__tfm {
  display: block;
  width: 11.8rem;
}
@media (max-width: 768px) {
  .l-header__tfm {
    width: 17.3vw;
  }
}
.l-header__hokuto {
  display: block;
  width: 11.5rem;
}
@media (max-width: 768px) {
  .l-header__hokuto {
    width: 14.7vw;
  }
}
.l-header__nav {
  margin-left: auto;
}
@media (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  gap: 2.8rem;
  margin: 0;
  padding: 0;
}
.l-header__nav li a {
  font-size: 1.6rem;
  font-weight: 900;
  color: #000;
  letter-spacing: 0.05em;
}
.l-header__nav li a:hover {
  opacity: 1;
  color: #3c861a;
}
.l-header__btn {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .l-header__btn {
    display: none;
  }
}
.l-header__btn a {
  display: block;
  width: 14rem;
}
.l-header__hamburger {
  display: none;
}
@media (max-width: 768px) {
  .l-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.47vw;
    width: 10.7vw;
    height: 10.7vw;
    background: #3c861a;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    margin-left: auto;
  }
  .l-header__hamburger span {
    display: block;
    width: 5.3vw;
    height: 0.4vw;
    background: #ffffff;
    border-radius: 1px;
  }
}

.l-sp-menu {
  display: none;
}
@media (max-width: 768px) {
  .l-sp-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/bg_sand_menu.jpg") left top/50px repeat;
    z-index: 4;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .l-sp-menu.is-open {
    transform: translateX(0);
  }
}
.l-sp-menu__close {
  position: absolute;
  top: 5.3vw;
  right: 5.3vw;
  width: 8vw;
  height: 8vw;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.l-sp-menu__close::before, .l-sp-menu__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6vw;
  height: 2px;
  background: #3c861a;
  border-radius: 1px;
}
.l-sp-menu__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-sp-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-sp-menu__kv {
  padding-top: 13.3vw;
  text-align: center;
}
.l-sp-menu__kv img {
  display: block;
  width: 58.5vw;
  height: auto;
  margin: 0 auto;
}
.l-sp-menu__nav {
  padding: 5.3vw 8vw 0;
}
.l-sp-menu__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-sp-menu__nav a {
  display: block;
  padding: 4vw 0;
}
.l-sp-menu__nav a img {
  display: block;
  height: 5.3vw;
  width: auto;
}
.l-sp-menu__btn {
  display: block;
  margin: 6.7vw auto 0;
  width: 84.1vw;
}
.l-sp-menu__btn img {
  display: block;
  width: 100%;
  height: auto;
}

.c-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3.4rem;
  justify-content: center;
  margin: 0 auto 3rem;
}
@media (max-width: 768px) {
  .c-container {
    justify-content: start;
    gap: 2.4vw;
    padding: 0 2rem;
    margin: 0 auto 6.8vw;
  }
}

.c-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 2.2rem;
  overflow: hidden;
  width: 32rem;
  padding: 0.8rem 0.8rem 1.3rem;
  border: 2px dotted #3c861a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 769px) {
  .c-card:nth-child(4) {
    display: none;
  }
}
@media (max-width: 768px) {
  .c-card {
    width: calc(50% - 1.2vw);
  }
}
.c-card:hover {
  transform: translateY(-3px);
  opacity: 1;
}
.c-card__thumb {
  display: block;
  width: 100%;
  margin-bottom: 1.2rem;
  border-radius: 1.2rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__title {
  margin-bottom: 0.7rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3c861a;
  line-height: 1.5;
  text-align: left;
}
.c-card__body {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  color: #555555;
  line-height: 1.6;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.c-card__date {
  margin-top: auto;
  font-size: 1.6rem;
  color: #6aab5e;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
}
.c-card__date::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/time.png") center/contain no-repeat;
  flex-shrink: 0;
}

.c-btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 32rem;
  margin: 0 auto;
  padding: 1rem 0;
  background: #3c861a;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.04em;
  z-index: 2;
}
.c-btn::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.98rem;
  height: 1.47rem;
  background: url("../img/carret.svg") center/contain no-repeat;
}
.c-btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .c-btn {
    width: 72vw;
    max-width: 72vw;
    padding: 3vw 5.3vw;
    font-size: 3.7333vw;
  }
  .c-btn::after {
    right: 4vw;
    width: 1.6vw;
    height: 2.7vw;
  }
}

.p-kv {
  position: relative;
  z-index: 1;
  padding-top: 5.6rem;
}
@media (max-width: 768px) {
  .p-kv {
    padding-top: 10.7vw;
  }
}
.p-kv__inner {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.p-kv__inner a {
  display: block;
}
.p-kv__inner a:hover {
  opacity: 1;
}
.p-kv__inner img {
  width: 100%;
  height: auto;
  display: block;
}
.p-kv .sec-kv__img {
  width: 100%;
  height: auto;
  display: block;
}

.p-about {
  background: url("../img/bg_about_illust.png") center top/136.6rem auto no-repeat, url("../img/bg_about_abstract.png") center top/100% auto no-repeat, url("../img/bg_sand.jpg") left top/auto repeat;
  margin-top: -4.5rem;
  padding: 11.6rem 0 13.6rem;
  position: relative;
}
@media (max-width: 768px) {
  .p-about {
    margin-top: -4%;
    padding: 13.6% 0 38.4%;
    background: url("../img/bg_about_top_sp.png") center top/100% auto no-repeat, url("../img/bg_about_bottom_sp.png") center bottom/100% auto no-repeat, url("../img/bg_sand.jpg") left top/auto repeat;
  }
}
.p-about__heading {
  display: block;
  width: 28rem;
  max-width: 100%;
  margin: 0 auto 7.5rem;
}
@media (max-width: 768px) {
  .p-about__heading {
    width: 68%;
    margin: 0 auto 12.5333vw;
  }
}
.p-about__text {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
  color: #41302d;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .p-about__text {
    font-size: 3rem;
    margin-bottom: 18rem;
  }
}
.p-about__text .blue {
  color: #1490df;
  font-weight: 700;
}

.p-event__heading {
  display: block;
  width: 76.2rem;
  max-width: 100%;
  margin: 0 auto 7rem;
}
@media (max-width: 768px) {
  .p-event__heading {
    width: 85.8667vw;
    margin-bottom: 11.8667vw;
  }
}
.p-event__container {
  display: flex;
  flex-wrap: wrap;
  gap: 4.3rem 3rem;
  justify-content: center;
  width: 76.2rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-event__container {
    width: 79.0667%;
    align-items: center;
    flex-flow: column;
    gap: 11.7333vw;
  }
}
.p-event__card {
  background: #ffffff;
  width: calc(50% - 1.6rem);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px dotted #3c861a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 768px) {
  .p-event__card {
    width: 100%;
  }
}
.p-event__card:hover {
  transform: translateY(-3px);
}
.p-event__card::before {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 3.9rem;
  height: 3.1rem;
  background-image: url(../img/card_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  content: "";
}
@media (max-width: 768px) {
  .p-event__card::before {
    width: 8.2667vw;
    height: 6.5333vw;
  }
}
.p-event__card.--cs {
  height: 23.3rem;
}
.p-event__card.--cs p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-weight: 700;
  font-size: 3rem;
  background: #9fbfa7;
}
.p-event__card.--cs:hover {
  transform: translateY(0);
}
.p-event__card.--cs::before {
  display: none;
}
@media (max-width: 768px) {
  .p-event__card.--cs {
    height: 48vw;
  }
}
.p-event__info {
  position: absolute;
  top: -0.8rem;
  left: 0;
  width: 28.1rem;
  height: auto;
}
@media (max-width: 768px) {
  .p-event__info {
    top: -2.4vw;
    width: 59.3333vw;
  }
}
.p-event__banner {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-event__text {
  width: 100%;
  margin-top: auto;
  height: 4rem;
  color: #3c861a;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-event__text {
    height: 6.6667vw;
    font-size: 4.2667vw;
    line-height: 6.6667vw;
  }
}

.p-what {
  background: url("../img/bg_what_illust.png") center top no-repeat, #f1e8ba;
  padding: 6rem 2rem 0;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .p-what {
    padding: 9.2% 0;
    background: url("../img/bg_sand2.jpg") left top/auto repeat;
  }
}
.p-what::before {
  content: "";
  position: absolute;
  top: calc(1px - 12.7rem);
  left: 0;
  right: 0;
  height: 12.7rem;
  background: url("../img/bg_what_top.png") center top/100% 100% no-repeat;
}
@media (max-width: 768px) {
  .p-what::before {
    display: none;
  }
}
.p-what__heading {
  display: block;
  width: 31rem;
  max-width: 100%;
  margin: 0 auto 7rem;
}
@media (max-width: 768px) {
  .p-what__heading {
    width: 68.1333%;
    margin: 0 auto 12%;
  }
}
.p-what__text {
  font-size: 1.8rem;
  line-height: 2;
  color: #41302d;
  margin: 0 auto 5rem;
}
@media (max-width: 768px) {
  .p-what__text {
    font-size: 4vw;
    margin-bottom: 5.8667%;
    text-align: center;
  }
}
.p-what__btn {
  display: block;
  width: 38rem;
  max-width: 90%;
  margin: 0 auto;
}
.p-what__btn-text {
  display: none;
}
@media (max-width: 768px) {
  .p-what__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78vw;
    max-width: 78vw;
    padding: 3vw 5.3vw;
    background: #3c861a;
    color: #ffffff;
    font-size: 3.7333vw;
    font-weight: 700;
    border-radius: 100px;
    position: relative;
  }
  .p-what__btn::after {
    content: "";
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6vw;
    height: 2.7vw;
    background: url("../img/carret.svg") center/contain no-repeat;
  }
  .p-what__btn .p-what__btn-img {
    display: none;
  }
  .p-what__btn-text {
    display: block;
  }
}

.p-recipe {
  background: #f1e8ba;
  padding: 11rem 0 5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-recipe {
    padding: 5rem 0;
    background: url("../img/bg_sand2.jpg") left top/auto repeat;
  }
}
.p-recipe__heading {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 24.3rem;
  margin: 0 auto 2rem;
  background-image: url(../img/recipe_heading.png);
  background-size: 284.1rem;
  background-position: center top;
  background-repeat: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-recipe__heading {
    width: 99.4667vw;
    height: 55.4667vw;
    margin: 0 auto;
    background-image: url(../img/recipe_heading_sp.png);
    background-size: 100%;
  }
}
.p-recipe__text {
  font-size: 1.7rem;
  color: #41302d;
  margin: -8rem auto 0.8rem;
}
@media (max-width: 768px) {
  .p-recipe__text {
    font-size: 4vw;
    margin: 6vw auto 0;
  }
}
.p-recipe__note {
  font-size: 1.5rem;
  color: #41302d;
  margin-bottom: 3.2rem;
}
@media (max-width: 768px) {
  .p-recipe__note {
    font-size: 3.2373vw;
    margin-bottom: 7.4667vw;
  }
}
.p-recipe__slider {
  margin: 0 auto;
  padding-top: 58px;
  padding-bottom: 4rem;
  overflow-x: clip;
}
.p-recipe__slider .splide__track {
  overflow: visible;
}
.p-recipe__slider .splide__slide {
  width: 401px;
  padding: 0 35px;
  display: flex;
  align-items: stretch;
}
@media (max-width: 768px) {
  .p-recipe__slider .splide__slide {
    width: 69.2vw;
    padding: 0 4.93vw;
  }
}
@media (max-width: 768px) {
  .p-recipe__slider {
    padding-top: 9vw;
  }
}
.p-recipe__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 2rem;
  padding: 1rem 1rem 2.9rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(60, 134, 26, 0.1);
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .p-recipe__card {
    padding: 8px 8px 16px;
    border-radius: 12px;
  }
}
.p-recipe__card-badge {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 116px;
  height: auto;
}
@media (max-width: 768px) {
  .p-recipe__card-badge {
    width: 18vw;
  }
}
.p-recipe__card-photo {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .p-recipe__card-photo {
    border-radius: 6px;
    margin-bottom: 10px;
  }
}
.p-recipe__card-label {
  font-size: 16px;
  font-weight: 400;
  color: #3c861a;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-recipe__card-label {
    font-size: 3.3333vw;
    margin-bottom: 2.6667vw;
  }
}
.p-recipe__card-title {
  font-size: 25px;
  font-weight: 700;
  color: #3c861a;
  line-height: 1.4;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-recipe__card-title {
    font-size: 5.3333vw;
    margin-bottom: 7.3333vw;
  }
}
.p-recipe__card-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 266px;
  height: 44px;
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  background: #3c861a;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  margin-top: auto;
}
@media (max-width: 768px) {
  .p-recipe__card-btn {
    width: 55.6vw;
    height: 8.8vw;
    font-size: 4.2667vw;
  }
}

.modal {
  position: relative;
  width: 100%;
  max-width: 888px;
  margin: 0 auto;
  padding: 40px 30px 35px;
  box-sizing: border-box;
  border: 1px solid #3c861a;
  z-index: 3;
}
.modal::before {
  position: absolute;
  inset: 0;
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  margin: auto;
  border: 2px dotted #3c861a;
  content: "";
  pointer-events: none;
}
@media (max-width: 768px) {
  .modal {
    padding: 30px 20px 35px;
    border: 1.5px solid #3c861a;
  }
  .modal::before {
    display: none;
  }
}

.modal_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
  background: url("../img/border_slant.png") center bottom/933px no-repeat;
}
@media (max-width: 768px) {
  .modal_heading {
    flex-flow: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 30px;
    background-size: 600px;
    margin-bottom: 10px;
  }
}

.modal_name {
  position: relative;
  color: #3c861a;
  font-weight: 700;
  font-size: 21px;
}
@media (max-width: 768px) {
  .modal_name {
    font-size: 18px;
  }
}

.modal_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  padding: 0 19px;
  color: #3c861a;
  font-weight: 600;
  font-size: 16px;
  border-radius: 17px;
  border: 2px solid #3c861a;
}
@media (max-width: 768px) {
  .modal_ttl {
    height: 24px;
    padding: 0 12px;
    font-size: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
  }
}

.modal_inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: wrap;
  padding-top: 25px;
  z-index: 2;
}
@media (max-width: 768px) {
  .modal_inner {
    display: block;
  }
}

.modal_ph {
  flex: 1 1 auto;
  display: block;
  width: 43%;
  max-width: 360px;
  margin-right: 3%;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .modal_ph {
    width: 100%;
    margin: 0 auto 20px;
  }
}

.modal_table {
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  width: 52.78%;
  margin: 0 auto 25px;
}
.modal_table > ul {
  width: 48%;
  list-style: none;
}
.modal_table > ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
  color: #3c861a;
  font-size: 14px;
  line-height: 1.45;
  border-bottom: 1px solid #3c861a;
}
.modal_table > ul li span {
  margin-left: auto;
}
@media (max-width: 768px) {
  .modal_table > ul li {
    font-size: 12px;
    padding: 4px 0;
  }
}
@media (max-width: 768px) {
  .modal_table {
    width: 100%;
  }
}

.modal_tableTtl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .modal_tableTtl {
    margin-bottom: 8px;
  }
}

.modal_number {
  color: #3c861a;
}

.modal_txt {
  width: 100%;
  margin: 0 auto 25px;
  color: #3c861a;
  font-size: 16px;
  line-height: 1.625;
}
@media (max-width: 768px) {
  .modal_txt {
    font-size: 14px;
  }
}

.modal_link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 274px;
  height: 44px;
  margin: 0 auto 14px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 22px;
  background: #f3893a;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 768px) {
  .modal_link {
    width: 290px;
    max-width: 100%;
    margin: 0 auto 15px;
  }
}

.js-modaal-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 274px;
  height: 44px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 22px;
  background: #3c861a;
  cursor: pointer;
}
@media (max-width: 768px) {
  .js-modaal-close {
    width: 290px;
    max-width: 100%;
  }
}

.modaal-outer-wrapper {
  table-layout: fixed;
}

.modaal-container {
  width: 100%;
  max-width: 888px;
}

.modaal-content-container {
  padding: 0;
}

.modaal-overlay {
  background: hsla(107, 40%, 25%, 0.7) !important;
}

@media (max-width: 400px) {
  .modaal-inner-wrapper {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
.l-lowsec {
  background: url("../img/bg_speciall.jpg") center top/cover no-repeat, url("../img/bg_sand.jpg") left top repeat;
}
@media (max-width: 768px) {
  .l-lowsec {
    background: url("../img/bg_speciall_sp.jpg") center top/cover no-repeat, url("../img/bg_sand.jpg") left top repeat;
  }
}

.p-special {
  padding: 20rem 2rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .p-special {
    padding: 27.8667% 0 0;
  }
}
.p-special__heading {
  display: block;
  width: 55rem;
  max-width: 100%;
  margin: 0 auto -3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-special__heading {
    width: 68.8vw;
    margin-bottom: -8.2667vw;
  }
}
.p-special__inner {
  background: #ffffff;
  border-radius: 2rem;
  max-width: 85rem;
  margin: 0 auto;
  padding: 6rem 0 9rem;
}
@media (max-width: 768px) {
  .p-special__inner {
    padding: 17.6vw 0 12.9333vw;
    width: 84.6667vw;
  }
}
.p-special__time {
  display: block;
  width: 65.1rem;
  max-width: 100%;
  margin: 0 auto 4rem;
}
@media (max-width: 768px) {
  .p-special__time {
    width: 69.8667vw;
  }
}
.p-special__text {
  width: 70rem;
  margin: 0 auto 5.5rem;
  font-size: 1.8rem;
  line-height: 2;
  color: #41302d;
}
@media (max-width: 768px) {
  .p-special__text {
    width: 69.3333vw;
    font-size: 4vw;
    line-height: 1.9;
    text-align: left;
  }
}
.p-special__container {
  max-width: 84rem;
  margin: 0 auto;
}
.p-special__mc {
  display: flex;
  justify-content: center;
  gap: 6.7rem;
  margin-bottom: 4.5rem;
}
@media (max-width: 768px) {
  .p-special__mc {
    gap: 4.4vw;
    margin-bottom: 8.2667vw;
  }
}
.p-special__guest {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .p-special__guest {
    gap: 8.2667vw 4.4vw;
    flex-wrap: wrap;
  }
}
.p-special__card {
  text-align: center;
  width: 21.6rem;
}
@media (max-width: 768px) {
  .p-special__card {
    width: 34.1333vw;
  }
}
.p-special__photo {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 2.2rem;
  border: 0.2rem solid #3c861a;
}
.p-special__photo.--cs {
  border: none;
}
.p-special__name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #41302d;
  line-height: 1.5;
  white-space: nowrap;
}

.p-present {
  padding: 7rem 2rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .p-present {
    padding: 16vw 0 0;
  }
}
.p-present__heading {
  display: block;
  width: 55rem;
  max-width: 100%;
  margin: 0 auto -3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-present__heading {
    width: 68.8vw;
    margin-bottom: -8.2667vw;
  }
}
.p-present__inner {
  background: #ffffff;
  border-radius: 2rem;
  max-width: 85rem;
  margin: 0 auto;
  padding: 6rem 0 8.5rem;
}
@media (max-width: 768px) {
  .p-present__inner {
    width: 84.6667vw;
    padding: 3.7333vw 2.6667vw 15.4667vw;
  }
}
.p-present__theme {
  display: block;
  width: 67.5rem;
  max-width: 100%;
  margin: 0 auto 2rem;
}
@media (max-width: 768px) {
  .p-present__theme {
    width: 58.6rem;
    margin: 11.0667vw auto 7.3333vw;
  }
}
.p-present__text {
  width: 70rem;
  margin: 0 auto 3rem;
  font-size: 1.8rem;
  line-height: 2;
  color: #41302d;
}
@media (max-width: 768px) {
  .p-present__text {
    width: 69.3333vw;
    font-size: 4vw;
    line-height: 1.9;
    text-align: left;
  }
}
.p-present__main {
  display: block;
  width: 68.6rem;
  max-width: 100%;
  margin: 0 auto 1.6rem;
}
@media (max-width: 768px) {
  .p-present__main {
    width: 71.0667vw;
  }
}
.p-present__deadline {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1490df;
  margin: 0 auto 3.2rem;
  padding: 0.2rem 2.5rem 0.4rem;
  letter-spacing: 0.06em;
  line-height: 1;
  border: 0.2rem solid #1490df;
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .p-present__deadline {
    font-size: 2.8rem;
    padding: 1.1rem 4.3rem 1.4rem;
    border: 0.25rem solid #1490df;
    margin: 0 auto 7rem;
  }
}
.p-present__image {
  display: block;
  width: 60.7rem;
  margin: 0 auto 5rem;
}
@media (max-width: 768px) {
  .p-present__image {
    width: 53.5rem;
  }
}
.p-present__btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: 65.6rem;
  margin: 0 auto;
  padding: 0.7rem 4rem;
  background: #3c861a;
  color: #ffffff;
  font-size: 3.3rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.p-present__btn::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 2.1rem;
  background: url("../img/carret.svg") center/contain no-repeat;
}
.p-present__btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .p-present__btn {
    width: 72vw;
    max-width: 72vw;
    padding: 3vw 5.3vw;
    font-size: 3.7333vw;
  }
  .p-present__btn::after {
    right: 4vw;
    width: 1.6vw;
    height: 2.7vw;
  }
}

.p-campaign {
  padding: 6rem 2rem 5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-campaign {
    padding: 23.7333vw 0 0;
  }
}
.p-campaign__heading {
  display: block;
  width: 55rem;
  max-width: 100%;
  margin: 0 auto -3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-campaign__heading {
    width: 68.8vw;
    margin-bottom: -8.2667vw;
  }
}
.p-campaign__inner {
  background: #ffffff;
  border-radius: 2rem;
  max-width: 85rem;
  margin: 0 auto;
  padding: 6rem 4rem 6rem;
}
@media (max-width: 768px) {
  .p-campaign__inner {
    width: 84.6667vw;
    padding: 14vw 2.6667vw 10.5333vw;
  }
}
.p-campaign__banner {
  display: block;
  width: 72rem;
  max-width: 100%;
  margin: 0 auto 2.4rem;
}
@media (max-width: 768px) {
  .p-campaign__banner {
    width: 90%;
  }
}
.p-campaign__text {
  margin: 0 auto 5.5rem;
  font-size: 1.8rem;
  line-height: 2;
  color: #41302d;
  text-align: center;
}
@media (max-width: 768px) {
  .p-campaign__text {
    width: 69.3333vw;
    font-size: 4vw;
    line-height: 1.9;
  }
}
.p-campaign__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65.6rem;
  max-width: 90%;
  margin: 0 auto;
  padding: 0.7rem 4rem;
  background: #3c861a;
  color: #ffffff;
  font-size: 3.3rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.04em;
  position: relative;
}
.p-campaign__btn::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 2rem;
  background: url("../img/carret.svg") center/contain no-repeat;
}
.p-campaign__btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .p-campaign__btn {
    width: 72vw;
    max-width: 72vw;
    padding: 3vw 5.3vw;
    font-size: 3.7333vw;
  }
  .p-campaign__btn::after {
    right: 4vw;
    width: 1.6vw;
    height: 2.7vw;
  }
}

.p-info {
  padding: 6rem 2rem 14rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-info {
    padding: 24.4vw 0 11.2vw;
  }
}
.p-info__heading {
  display: block;
  width: 55rem;
  max-width: 100%;
  margin: 0 auto -3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-info__heading {
    width: 68.8vw;
    margin-bottom: -8.2667vw;
  }
}
.p-info__inner {
  background: #ffffff;
  border-radius: 2rem;
  max-width: 90rem;
  margin: 0 auto 6rem;
  padding: 6rem 4rem 3.2rem;
}
@media (max-width: 768px) {
  .p-info__inner {
    width: 84.6667vw;
    margin: 0 auto 11.7333vw;
    padding: 14.6667vw 7.3333vw 12.6667vw;
  }
}
.p-info__period {
  display: block;
  width: 68rem;
  max-width: 100%;
  margin: 0 auto 2.4rem;
}
@media (max-width: 768px) {
  .p-info__period {
    width: 64.5333vw;
    margin: 0 auto 6.4vw;
  }
}
.p-info__boxFlex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .p-info__boxFlex {
    gap: 5.5vw;
    flex-direction: column-reverse;
  }
}
.p-info__stations {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex: 1;
}
.p-info__stations li {
  font-size: 1.8rem;
  line-height: 1.8;
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .p-info__stations li {
    align-items: start;
    padding: 1.6vw 0;
    font-size: 4vw;
    line-height: 1.2;
  }
}
.p-info__stations .station {
  display: inline-block;
  background: #1490df;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0.5rem 0.8rem 0.7rem;
  line-height: 1;
  letter-spacing: 0.04em;
  width: 12.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-info__stations .station {
    font-size: 3.436vw;
    width: 22.1333vw;
    padding: 1.0667vw 0;
  }
}
.p-info__personality {
  width: 17rem;
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-info__personality {
    width: 44.1333vw;
  }
}
.p-info__note {
  font-size: 1.4rem;
  color: #555555;
  text-align: left;
  margin-top: 2rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-info__note {
    font-size: 3.4667vw;
  }
}
.p-info__text {
  font-size: 1.8rem;
  line-height: 2;
  color: #41302d;
  margin: 0 auto 6rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-info__text {
    font-size: 4vw;
    line-height: 1.9;
    margin: 0 auto 10.2667vw;
    text-align: center;
  }
}
.p-info__text .u-blue {
  color: #1490df;
  font-weight: 700;
}

.l-footer {
  position: relative;
  margin: -16rem auto 0;
  text-align: center;
}
@media (max-width: 768px) {
  .l-footer {
    display: block;
    margin: 0 auto;
  }
}
.l-footer__upper {
  padding: 23.2rem 0 12rem;
  width: 100%;
  background: url("../img/bg_footer.png") center top/cover no-repeat;
}
@media (max-width: 768px) {
  .l-footer__upper {
    padding: 19.0667vw 0 16.9333vw;
    background: url("../img/bg_footer_sp.png") center top/cover no-repeat;
  }
}
.l-footer__tfm {
  display: block;
  width: 13rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-footer__tfm {
    width: 22.4vw;
  }
}
.l-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin: 3.2rem 0 0;
}
@media (max-width: 768px) {
  .l-footer__sns {
    margin: 4.4vw auto 0;
    gap: 4.5333vw;
  }
}
.l-footer__sns a {
  display: block;
  width: 5.2rem;
}
@media (max-width: 768px) {
  .l-footer__sns a {
    width: 8.9333vw;
  }
}
@media (max-width: 1000px) {
  .l-footer__common--pc {
    display: none;
  }
}
@media (min-width: 1001px) {
  .l-footer__common--sp {
    display: none;
  }
}
.l-footer__copy {
  font-size: 1.1rem;
  color: #ffffff;
  background: #3c861a;
  margin-top: 5rem;
  width: 100%;
  padding: 1rem 2rem;
}
@media (max-width: 1000px) {
  .l-footer__copy {
    margin-top: 0;
  }
}

.item {
  position: relative;
  margin-top: -3rem;
  padding: 14rem 0 13rem;
  background: url("../img/bg_report_top.png") center top/100% auto no-repeat, url("../img/bg_report_bottom.png") center bottom/100% auto no-repeat, url("../img/bg_sand.jpg") left top/auto repeat;
}
@media (max-width: 768px) {
  .item {
    margin-top: -4vw;
    padding: 15.4444vw 0;
  }
}
.item_heading {
  margin: 0 auto;
  text-align: center;
  position: relative;
  width: 70rem;
  z-index: 2;
}
@media (max-width: 768px) {
  .item_heading {
    width: 71.2vw;
  }
  .item_heading img {
    width: 75vw;
  }
}
.item_article {
  position: relative;
  width: 98%;
  max-width: 96.8rem;
  margin: 6rem auto 4rem;
  padding: 6rem 3rem;
  box-sizing: border-box;
  background: #ffffff;
  border: 2px dashed #3c861a;
}
@media (max-width: 768px) {
  .item_article {
    width: 90vw;
    margin: 5vw auto;
    padding: 4rem 2rem;
    background: none;
    border: none;
  }
}
.item_inner:not(:first-child) {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .item_inner:not(:first-child) {
    margin-top: 6rem;
  }
}
@media (max-width: 768px) {
  .item_wave {
    width: 36vw;
    height: 27vw;
  }
}
.item_ttl {
  margin: 0 auto;
  padding-bottom: 5rem;
  color: #3c861a;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
  background: url("../img/border_slant.png") center bottom/90.6rem no-repeat;
}
@media (max-width: 768px) {
  .item_ttl {
    text-align: left;
    font-size: min(22px, 5.5vw);
    padding-bottom: 3rem;
    background-size: 60rem;
  }
}
.item_date {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2rem;
  color: #3c861a;
  font-weight: 500;
}
.item_date::before {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.9rem;
  background: url("../img/time.svg") no-repeat center/1.4rem;
  content: "";
}
@media (max-width: 768px) {
  .item_date::before {
    width: 1em;
    height: 1em;
    background-size: 1em;
  }
}
.item_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 2.5rem auto 0;
}
@media (max-width: 768px) {
  .item_container {
    display: block;
  }
}
.item_thumb {
  flex: 0 0 40rem;
  max-width: 40rem;
  margin-right: 2.5rem;
  padding: 0.8rem;
  box-sizing: border-box;
  border: 1px solid #ccc;
}
.item_thumb img {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .item_thumb {
    flex: none;
    width: 100%;
    max-width: 55rem;
    margin: 1.5rem auto 0;
    padding: 1.1rem;
  }
}
.item_txt {
  flex: 1 1 auto;
  line-height: 1.85;
  font-size: 16px;
}
@media (max-width: 768px) {
  .item_txt {
    margin: 2.8rem auto 0;
  }
}
.item_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32rem;
  height: 6.5rem;
  max-width: 100%;
  margin: 4rem auto 5rem;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background: #3c861a;
  border-radius: 3.25rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.item_btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .item_btn {
    width: 72vw;
    max-width: 72vw;
    height: auto;
    padding: 3vw 5.3vw;
    font-size: 3.7333vw;
    margin: 4.8rem auto 0;
    border-radius: 100px;
    position: relative;
  }
  .item_btn::after {
    content: "";
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6vw;
    height: 2.7vw;
    background: url("../img/carret.svg") center/contain no-repeat;
  }
}

@media (max-width: 768px) {
  .pickup {
    padding-top: 15.4444vw;
  }
}
.pickup_heading {
  width: 15.5rem;
  margin: 0 auto 3rem;
}
.pickup_heading img {
  width: 100%;
}
@media (max-width: 768px) {
  .pickup_heading {
    width: 35.1111vw;
    max-width: 20rem;
  }
}
.pickup_container {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 1.7rem;
  margin: 0 auto 6rem;
}
@media (max-width: 768px) {
  .pickup_container {
    justify-content: flex-start;
    flex-flow: wrap;
    -moz-column-gap: 2%;
         column-gap: 2%;
    row-gap: 2vw;
    width: 100%;
    margin: 5vw auto 0;
  }
}
.pickup_box {
  position: relative;
  max-width: 20.9rem;
  padding-bottom: calc(1em + 1rem);
  text-decoration: none;
  color: #41302d;
  transition: opacity 0.2s;
}
.pickup_box:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .pickup_box {
    width: 49%;
    max-width: unset;
    background: #ffffff;
    box-sizing: border-box;
    padding: 0.7rem 0.7rem calc(1.5rem + 12px);
    border: 1px dotted #3c861a;
    border-radius: 6px;
  }
}
.pickup_thumb {
  max-width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .pickup_thumb {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.pickup_ttl {
  margin: 1rem auto;
  font-size: 17px;
  line-height: 1.4;
  color: #3c861a;
  font-weight: 700;
  font-feature-settings: "palt";
}
@media (max-width: 768px) {
  .pickup_ttl {
    margin: 0 0 1rem;
    font-size: 14px;
  }
}
.pickup_txt {
  display: none;
}
@media (max-width: 768px) {
  .pickup_txt {
    display: block;
    margin-bottom: 3rem;
    font-size: 12px;
    line-height: 1.3;
  }
}
.pickup_date {
  position: absolute;
  bottom: 0;
  padding: 0 0 0.1rem 2rem;
  color: #3c861a;
  font-size: 15px;
  line-height: 1;
  background: url("../img/time.svg") no-repeat left center/1.5rem;
}
@media (max-width: 768px) {
  .pickup_date {
    left: 1rem;
    bottom: 1.5rem;
    padding: 0 0 2px 16px;
    font-size: 12px;
    background-size: 12px;
  }
}
.pickup_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.8rem;
  list-style-type: none;
  padding: 0;
}
.pickup_list li {
  width: calc(50% - 0.9rem);
  padding: 1rem 0 1rem 2rem;
  font-size: 15px;
  line-height: 1.6;
  box-sizing: border-box;
  border-bottom: 1px dashed #999;
  background: url("../img/blog_icon.svg") no-repeat center left/1.3rem;
}
.pickup_list li a {
  display: block;
  color: #3c861a;
}
@media (max-width: 768px) {
  .pickup_list {
    margin: 4rem auto 5vw;
  }
  .pickup_list li {
    width: 100%;
    padding: 1rem 0 1rem 20px;
    font-size: 13px;
    background-size: 13px;
  }
}

.pageswitch {
  margin: 50px 0;
  text-align: center;
  width: 100%;
  position: relative;
}
.pageswitch .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  font-size: 14px;
  vertical-align: middle;
}
.pageswitch strong.num {
  background: #ffffff;
  border: 1px solid #3c861a;
  color: #3c861a;
  font-weight: 700;
}
.pageswitch a {
  color: #3c861a;
  text-decoration: none;
}
.pageswitch a.num {
  background: #3c861a;
  border: 1px solid #3c861a;
  color: #ffffff;
}
.pageswitch a[title="Previous page"] {
  display: inline-block;
  height: 33px;
  line-height: 33px;
  vertical-align: middle;
  padding-left: 20px;
  text-indent: -1000em;
  background: transparent url("../img/arw_prev.png") no-repeat left center/13px 23px;
}
.pageswitch a[title="Next page"] {
  display: inline-block;
  height: 33px;
  line-height: 33px;
  vertical-align: middle;
  padding-right: 20px;
  text-indent: -1000em;
  background: transparent url("../img/arw_next.png") no-repeat right center/13px 23px;
}
@media (max-width: 768px) {
  .pageswitch {
    margin: 0 auto 8vw;
  }
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.u-blue {
  color: #1490df;
  font-weight: 700;
}

.u-small {
  font-size: 0.8em;
}

.page-top {
  z-index: 2;
}

.item_btn {
  position: relative;
  z-index: 2;
}