@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

header,
footer,
article,
section,
aside,
hgroup,
nav,
menu,
figure,
figcaption,
time {
  display: block;
}

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

/*----------------------------------------
	Custom Properties
----------------------------------------*/
:root {
  --main-color: #80254E;
  --text-color: #80254E;
  --background-color: #fff;
  --font-family-base: "Zen Old Mincho", serif;
  --font-family-jp: "Hina Mincho", serif;
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-en: "Roboto Condensed", sans-serif;
  --font-size-base-pc: 1.6rem;
  --font-size-base-sp: 1.5rem;
  --font-weight-thin: 100;
  --font-weight-extraLight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-extraBold: 800;
  --font-weight-black: 900;
  --ease-linear: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-inout-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-inout-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-inout-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-inout-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-inout-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-inout-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-inout-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-inout-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*----------------------------------------
	Common
----------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

html {
  height: 100%;
  font-size: 62.5%;
}

@media only screen and (min-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  html {
    font-size: calc(40% + 0.25vw);
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 375px) {
  html {
    font-size: 58%;
  }
}
body {
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: var(--font-size-base-pc);
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  position: relative;
  overflow-x: hidden;
}

body.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

.jp {
  font-family: var(--font-family-jp);
}

.en {
  font-family: var(--font-family-en);
}

a {
  color: var(--text-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
}

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

button {
  border: none;
}

label {
  white-space: nowrap;
}

input {
  border: none;
}

@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: var(--font-size-base-sp);
    letter-spacing: 0.01em;
  }
}
.l-header {
  width: 100vw;
  height: 160px;
  padding: 0 4%;
  background-color: #FEF8EB;
}

@media (min-width: 768px) and (max-width: 999px) {
  .l-header {
    height: 160px;
    background-color: inherit;
  }
}
@media (max-width: 767px) {
  .l-header {
    height: 100px;
    padding: 0 5%;
    background-color: inherit;
  }
}
.l-footer {
  overflow: hidden;
}

.l-main {
  overflow: hidden;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.container {
  width: 92%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .container {
    width: 84%;
  }
}
.c-button {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  font-family: var(--font-family-jp);
  font-size: 2.2rem;
  letter-spacing: 0.14em;
  line-height: 1.45;
  font-weight: var(--font-weight-medium);
  padding: 1.5rem 4rem 1.8rem 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 27rem;
  border-radius: 100px;
  position: relative;
  z-index: 0;
  text-decoration: none;
}

.c-button:hover {
  color: #fff;
  opacity: 0.75;
}

@media (max-width: 767px) {
  .c-button {
    font-size: 1.8rem;
    padding: 1.4rem 0rem 1.6rem 0rem;
    min-width: 22rem;
    letter-spacing: 0.01em;
  }
}
.c-link-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-link-outer::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/common/icon_link_outer.png) no-repeat center;
  background-size: contain;
  overflow: hidden;
  margin-left: 0.6rem;
}

.c-icon-circle-allow {
  width: 5rem;
  height: 5rem;
  position: relative;
  border: 1px solid var(--main-color);
  border-radius: 10rem;
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-icon-circle-allow .allow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 0.6rem;
  height: 1rem;
  overflow: hidden;
}
.c-icon-circle-allow .allow::before, .c-icon-circle-allow .allow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: 0.2s cubic-bezier(0.35, 0.1, 0.2, 1);
  transition: 0.2s cubic-bezier(0.35, 0.1, 0.2, 1);
}
.c-icon-circle-allow .allow::after {
  background-image: url(../img/common/icon_button_allow.svg);
}
.c-icon-circle-allow .allow::before {
  background-image: url(../img/common/icon_button_allow_w.svg);
  left: -100%;
}
.c-icon-circle-allow.white {
  border-color: #fff;
}
.c-icon-circle-allow.white .allow::after {
  background-image: url(../img/common/icon_button_allow_w.svg);
}
.c-icon-circle-allow.white .allow::before {
  background-image: url(../img/common/icon_button_allow.svg);
  left: -100%;
}

.hover .c-icon-circle-allow {
  background-color: var(--main-color);
}
.hover .c-icon-circle-allow .allow::before, .hover .c-icon-circle-allow .allow::after {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.hover .c-icon-circle-allow.white {
  background-color: #fff;
}

.input-text {
  width: 100%;
  padding: 1.8rem;
  border: none;
  font-size: var(--font-size-base-pc);
  line-height: 1.65;
}

.input-textarea {
  width: 100%;
  padding: 1.8rem;
  border: none;
  font-size: var(--font-size-base-pc);
}

.input-select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: none;
  vertical-align: middle;
  padding: 1.8rem 2.4rem 1.8rem 1.8rem;
  border: none;
  outline: 0;
  font-size: var(--font-size-base-pc);
  text-overflow: ellipsis;
  width: 100%;
  cursor: pointer;
  background: #fff url(../img/common/icon_select_arrow.svg) no-repeat right 12px center;
  background-size: 12px auto;
}

@media (max-width: 767px) {
  .input-select,
  .input-textarea,
  .input-text {
    font-size: var(--font-size-base-sp);
  }
  .c-link-outer::after {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.c-bread-crumb {
  font-size: 1.2rem;
}
.c-bread-crumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0;
  line-height: 1;
  overflow-x: auto;
  white-space: nowrap;
}
.c-bread-crumb ul li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  list-style: none;
}
.c-bread-crumb ul li:not(:first-child) a {
  padding-left: 2.4rem;
}
.c-bread-crumb ul li:not(:first-child):before {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  display: block;
  content: "";
  width: 1rem;
  height: 1px;
  border-bottom: 1px solid var(--text-color);
  -webkit-transform: rotate(-45deg) translate(0, -50%);
          transform: rotate(-45deg) translate(0, -50%);
}
.c-bread-crumb ul li a {
  text-decoration: none;
}
.c-bread-crumb ul li span {
  padding-left: 2.8rem;
}

.none-visual .c-bread-crumb {
  margin-bottom: 6.4rem;
}
.none-visual .c-bread-crumb .container {
  border-bottom: 1px solid #CDD6DD;
}

@media (max-width: 767px) {
  .c-bread-crumb {
    font-size: 1rem;
  }
}
.c-hover-roll:hover .c-hover-roll__text > span {
  -webkit-animation: textRollAnime 0.3s cubic-bezier(0.2, 0.58, 0.3, 1) 0s 1 normal none;
          animation: textRollAnime 0.3s cubic-bezier(0.2, 0.58, 0.3, 1) 0s 1 normal none;
}

.c-hover-roll__text {
  display: block;
  height: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}
.c-hover-roll__text > span {
  display: block;
  width: 100%;
}
.c-hover-roll__text > span + span {
  left: 0;
  position: absolute;
  top: 100%;
}

@-webkit-keyframes textRollAnime {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes textRollAnime {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.p-header {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.p-header::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}
.p-header a {
  text-decoration: none;
}

.menu-open .p-header::after {
  opacity: 1;
  visibility: visible;
}

.p-header__logo {
  width: 42rem;
  height: 8.6rem;
  line-height: 1;
  z-index: 1;
}
.p-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/logo_horizon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -999px;
}

.p-header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 3rem;
  right: 4%;
  z-index: 2;
}

.p-header__navi {
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  width: 52rem;
  height: 100dvh;
  overflow-y: auto;
  background-color: #FEF8EB;
  padding: 16rem 4rem 4rem 4rem;
}
.p-header__navi .p-gnavi {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 4.8rem;
}
.p-header__navi .p-gnavi .item {
  padding: 0.4rem 0;
}
.p-header__navi .p-gnavi .item > span {
  font-size: 2.4rem;
}
.p-header__navi .p-gnavi__sub {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-header__navi .p-gnavi__sub .item {
  padding: 0.4rem 0;
}
.menu-open .p-header__navi {
  opacity: 1;
  pointer-events: initial !important;
  right: 0 !important;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0.3, 1);
          transition-timing-function: cubic-bezier(0, 1, 0.3, 1);
}

@media (max-width: 767px) {
  .p-header {
    letter-spacing: 0;
  }
  .p-header__logo {
    width: 23rem;
    height: 4.7rem;
  }
  .p-header__navi {
    width: 100vw;
    padding: 12rem 2.4rem 4rem 2.4rem;
  }
  .p-header__navi .p-gnavi .item > span {
    font-size: 2.2rem;
  }
  .p-header__buttons {
    top: 2rem;
  }
}
.p-footer {
  padding: 8rem 0;
  background-color: var(--main-color);
  color: #fff;
}
.p-footer a {
  color: #fff;
}
.p-footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1150px;
}

.p-footer__logo {
  width: 34rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-footer__logo .logo {
  width: 64%;
  max-width: 22rem;
}

.p-footer__content {
  width: calc(100% - 34rem);
}

.p-footer__navi .item {
  padding-right: 2rem;
  margin-right: 2rem;
}
.p-footer__navi .item:not(:last-of-type)::after {
  content: "";
  display: block;
  height: 2.4rem;
  width: 0;
  border-right: 1px solid #fff;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-footer__navi .item.hide {
  display: none !important;
}
.p-footer__navi .p-gnavi {
  margin-bottom: 4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-footer__navi .p-gnavi .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-footer__navi .p-gnavi .item {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  position: relative;
}
.p-footer__navi .p-gnavi__sub {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-footer__navi .p-gnavi__sub .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-footer__navi .p-gnavi__sub .item {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  position: relative;
  padding-right: 1.6rem;
  margin-right: 1.6rem;
}
.p-footer__navi .p-gnavi__sub .item:not(:last-of-type)::after {
  height: 1.8rem;
}

.p-footer__profile {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 4.8rem;
  padding-top: 4rem;
  line-height: 1.65;
}
.p-footer__profile .name {
  font-size: 2.2rem;
}
.p-footer__profile .name .label {
  font-size: 1.5rem;
  margin-right: 1rem;
}
.p-footer__profile .address {
  font-size: 1.5rem;
  margin-top: 1.2rem;
}
.p-footer__profile .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.6rem;
  font-size: 1.5rem;
}
.p-footer__profile .contact .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.6rem;
}

.p-footer__copyright {
  font-size: 1.2rem;
  line-height: 1.55;
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .p-footer {
    padding: 5.6rem 0;
  }
  .p-footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-footer__logo {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 4rem;
    padding-bottom: 4.8rem;
  }
  .p-footer__logo .logo {
    width: 60%;
    max-width: 24rem;
  }
  .p-footer__content {
    width: 100%;
  }
  .p-footer__navi .p-gnavi .item {
    width: 100%;
    font-size: 2rem;
    letter-spacing: 0.04em;
    padding-right: 0;
    margin-right: 0;
  }
  .p-footer__navi .p-gnavi .item:not(:last-of-type)::after {
    display: none;
  }
  .p-footer__navi .p-gnavi__sub .item {
    width: 100%;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    padding-right: 0;
    margin-right: 0;
  }
  .p-footer__navi .p-gnavi__sub .item:not(:last-of-type)::after {
    display: none;
  }
  .p-footer__profile .name {
    font-size: 1.8rem;
    line-height: 1.45;
  }
  .p-footer__profile .name .label {
    font-size: 1.8rem;
    margin-right: 0;
    display: block;
  }
  .p-footer__profile .address {
    font-size: 1.4rem;
    margin-top: 1.8rem;
  }
  .p-footer__profile .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.4rem;
  }
}
.p-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.p-loading__copy {
  margin-bottom: 2.4rem;
  letter-spacing: 0.4em;
}
.p-loading__copy.show span {
  opacity: 1;
}
.p-loading__copy span {
  font-size: 4rem;
  display: inline-block;
  opacity: 0;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}
.p-loading__copy span:first-of-type {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
.p-loading__copy span:nth-of-type(2n) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.p-loading__copy span:nth-of-type(3n) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.p-loading__copy span:nth-of-type(4n) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.p-loading__copy span:nth-of-type(5n) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.p-loading__copy span:nth-of-type(6n) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.p-loading__copy span:nth-of-type(7n) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.p-loading__copy span:nth-of-type(8n) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.p-loading__copy span:nth-of-type(9n) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.p-loading__copy span:nth-of-type(10n) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.p-loading__copy span:nth-of-type(11n) {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.p-loading__copy span:nth-of-type(12n) {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
.p-loading__copy span:nth-of-type(13n) {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.p-loading__copy span:nth-of-type(14n) {
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}
.p-loading__copy span:nth-of-type(15n) {
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}
.p-loading__copy span:nth-of-type(16n) {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
.p-loading__copy span:nth-of-type(17n) {
  -webkit-transition-delay: 3.2s;
          transition-delay: 3.2s;
}
.p-loading__copy span:nth-of-type(18n) {
  -webkit-transition-delay: 3.4s;
          transition-delay: 3.4s;
}
.p-loading__copy span:nth-of-type(19n) {
  -webkit-transition-delay: 3.6s;
          transition-delay: 3.6s;
}
.p-loading__copy span:nth-of-type(20n) {
  -webkit-transition-delay: 3.8s;
          transition-delay: 3.8s;
}

.p-loading__logo {
  width: 40%;
  max-width: 60rem;
}
.p-loading__logo img {
  opacity: 0;
}
.p-loading__bar {
  position: relative;
  width: 90%;
  height: 1px;
  max-width: 20rem;
  margin: 0 auto;
  overflow: hidden;
}
.p-loading__bar span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
}
.p-loading__bar::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  -webkit-animation: loading-bar-anim 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0s infinite;
          animation: loading-bar-anim 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0s infinite;
}

@-webkit-keyframes loading-bar-anim {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
}

@keyframes loading-bar-anim {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
}
@media (max-width: 767px) {
  .p-loading__copy span {
    font-size: 2rem;
    letter-spacing: 0.2em;
  }
  .p-loading__logo {
    width: 65%;
  }
}
.p-menu-btn {
  width: 13.4rem;
  height: 8rem;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  background-image: url(../img/common/bg_menu_btn.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-menu-btn span {
  font-size: 1.7rem;
  letter-spacing: 0.2em;
  color: var(--main-color);
}

.menu-open .p-menu-btn {
  background-image: url(../img/common/bg_menu_btn_on.svg);
}
.menu-open .p-menu-btn span {
  color: #fff;
}

@media (max-width: 767px) {
  .p-menu-btn {
    width: 9rem;
    height: 5.2rem;
  }
  .p-menu-btn span {
    font-size: 1.2rem;
  }
}
.p-gnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-gnavi .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-gnavi a {
  text-decoration: none;
}

.p-gnavi__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-gnavi__sub .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-gnavi__sub a {
  text-decoration: none;
}

.p-gotop {
  color: #fff;
}

.p-gotop__button {
  cursor: pointer;
}
.p-gotop__button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-gotop__button span::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url(../img/common/icon_gotop.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 0.4rem;
}
.p-gotop__button span:hover {
  opacity: 0.65;
}

.page-top .l-header {
  background-color: inherit;
  height: 0;
}
.page-top .p-header__logo {
  display: none;
}

@media (max-width: 767px) {
  .page-top .l-header {
    background-color: inherit;
    height: 100px;
  }
  .page-top .p-header__logo {
    display: block;
  }
}
.page-contact .p-page-head {
  margin-bottom: 0;
}

.p-top-visual {
  width: 100vw;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-visual__heading {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 7.2%;
}
.p-top-visual__heading .logo {
  width: 70%;
}
.p-top-visual__heading .copy {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 4rem;
  margin-top: 13rem;
  letter-spacing: 0.2em;
}

.p-top-visual__content {
  width: 70%;
}

.p-top-visual__copy {
  width: 4.8vw;
  position: absolute;
  top: calc(50% - 2.4vw);
  right: calc(50% - 4.8vw);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.p-top-visual__blog {
  padding: 4rem 4% 4rem 0;
}
.p-top-visual__blog h3 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
}
.p-top-visual__blog ul {
  line-height: 1.45;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem 0;
}
.p-top-visual__blog ul li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-top-visual__blog ul li .date {
  position: relative;
  padding-right: 1.2rem;
  margin-right: 1.2rem;
}
.p-top-visual__blog ul li .date::after {
  content: "";
  display: block;
  height: 1.6rem;
  width: 0;
  border-right: 1px solid var(--main-color);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-top-visual__blog ul li .t-bold {
  font-weight: 600;
}
.p-top-visual__blog nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 1.6rem;
}
.p-top-visual__blog a {
  text-decoration: none;
}

@media (max-width: 767px) {
  .p-top-visual {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-visual__heading {
    width: 100%;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    padding-left: 8%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .p-top-visual__heading .logo {
    display: none;
  }
  .p-top-visual__heading .copy {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    text-orientation: initial;
    font-size: 3.6rem;
    letter-spacing: 0.06em;
    line-height: 1.45;
    margin-top: 0;
    margin-bottom: 0;
  }
  .p-top-visual__content {
    width: 100%;
  }
  .p-top-visual__blog {
    padding: 3.2rem 6% 3.2rem 6%;
  }
  .p-top-visual__blog h3 {
    letter-spacing: 0.1em;
  }
  .p-top-visual__blog ul {
    gap: 1.8rem 0;
  }
  .p-top-visual__blog ul li {
    white-space: initial;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .p-top-visual__blog ul li .date {
    display: block;
    opacity: 0.6;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 0.2rem;
  }
  .p-top-visual__blog ul li .date::after {
    display: none;
  }
  .p-top-visual__blog nav {
    margin-top: 2.4rem;
  }
}
.p-top-movie {
  position: relative;
  width: 100vw;
}

.p-top-movie__video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.p-top-movie__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-top-movie__link {
  position: absolute;
  right: 4%;
  bottom: 6%;
  background-color: #fff;
  text-decoration: none !important;
}
.p-top-movie__link .title {
  padding: 1.6rem;
  font-size: 2.2rem;
  line-height: 1.45;
  font-weight: var(--font-weight-semiBold);
}
.p-top-movie__link .guide {
  text-align: center;
  background-color: var(--main-color);
  color: #fff;
  font-family: var(--font-family-noto);
  font-weight: var(--font-weight-medium);
  font-size: 1.3rem;
  padding: 1rem;
}

@media (max-width: 767px) {
  .p-top-movie__link {
    display: block;
    width: 86%;
    border: 2px solid var(--main-color);
    position: relative;
    right: initial;
    bottom: initial;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.2rem;
  }
  .p-top-movie__link .title {
    font-size: 1.8rem;
    text-align: center;
    padding: 1.6rem 0 1.8rem 0;
    text-align: center;
  }
  .p-top-movie__link .guide {
    font-size: 1.5rem;
    padding: 0.3rem 0 0.5rem 0;
  }
}
.p-top-annouimo {
  padding: 8rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-annouimo__heading {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 4rem;
  letter-spacing: 0.18em;
  line-height: 1.85;
  font-weight: var(--font-weight-medium);
}

.p-top-annouimo__content {
  width: 55%;
  padding-right: 7%;
}
.p-top-annouimo__content p {
  text-align: justify;
}

.p-top-annouimo__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4rem;
  margin-top: 5.6rem;
}
.p-top-annouimo__images figure figcaption {
  font-size: 2rem;
  text-align: center;
  margin-top: 0.4rem;
}

@media (max-width: 767px) {
  .p-top-annouimo {
    padding: 5.6rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-annouimo__heading,
  .p-top-annouimo__content {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-annouimo__heading {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    text-orientation: initial;
    font-size: 2.4rem;
    letter-spacing: 0.02em;
    line-height: 1.45;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    margin-bottom: 2.4rem;
  }
  .p-top-annouimo__content {
    padding-right: 0;
  }
  .p-top-annouimo__images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem 0;
  }
  .p-top-annouimo__images figure figcaption {
    font-size: 1.6rem;
    margin-top: 0.2rem;
  }
}
.p-top-tanegashima {
  padding-top: 8%;
}

.p-top-tanegashima__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 7%;
}

.p-top-tanegashima__heading-image {
  width: 57%;
}

.p-top-tanegashima__heading-content {
  width: 36%;
  padding-right: 7%;
}
.p-top-tanegashima__heading-content h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-top-tanegashima__heading-content h2 span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 4rem;
  letter-spacing: 0.18em;
  line-height: 1.85;
  font-weight: var(--font-weight-medium);
}
.p-top-tanegashima__heading-content h2 span.copy-en {
  font-size: 1.6rem;
  margin-left: 1.6rem;
}
.p-top-tanegashima__heading-content picture {
  display: block;
  margin-top: 26%;
}

.p-top-tanegashima__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 7%;
}

.p-top-tanegashima__content-text {
  width: 57%;
  padding-left: 15%;
}
.p-top-tanegashima__content-text h3 {
  font-size: 2.8rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.14em;
  line-height: 1.55;
  margin-bottom: 2rem;
}
.p-top-tanegashima__content-text p {
  text-align: justify;
}

.p-top-tanegashima__content-image {
  width: 36%;
  padding-right: 7%;
  margin-top: 8rem;
}

@media (max-width: 767px) {
  .p-top-tanegashima {
    margin-bottom: 10rem;
  }
  .p-top-tanegashima__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-top-tanegashima__heading-image {
    width: 100%;
    margin: 3.2rem 0;
  }
  .p-top-tanegashima__heading-content {
    width: 84%;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-tanegashima__heading-content picture {
    display: none;
  }
  .p-top-tanegashima__heading-content h2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-tanegashima__heading-content h2 span {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    text-orientation: initial;
    font-size: 3.2rem;
    letter-spacing: 0.02em;
    line-height: 1.45;
  }
  .p-top-tanegashima__heading-content h2 span.copy-en {
    font-size: 1.7rem;
    letter-spacing: 0.1em;
    margin-left: 0;
    margin-bottom: 1rem;
  }
  .p-top-tanegashima__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-tanegashima__content-text {
    width: 100%;
    padding-left: 0;
  }
  .p-top-tanegashima__content-text h3 {
    font-size: 2.4rem;
    letter-spacing: 0.02em;
  }
  .p-top-tanegashima__content-image {
    width: 86%;
    padding-right: 0;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4.8rem;
  }
  .p-top-tanegashima__content-image-sp {
    width: 100%;
  }
}
.p-top-seedling {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 7%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-top-seedling__heading {
  width: 36%;
  padding-left: 7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-seedling__heading picture {
  display: block;
  margin-bottom: 12rem;
}
.p-top-seedling__heading h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 4rem;
  letter-spacing: 0.18em;
  line-height: 1.85;
  font-weight: var(--font-weight-medium);
}

.p-top-seedling__content {
  width: 57%;
  padding-top: 10%;
}
.p-top-seedling__content h3 {
  font-size: 2.8rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.14em;
  line-height: 1.55;
  margin-bottom: 2rem;
}
.p-top-seedling__content picture {
  display: block;
  margin-bottom: 5.6rem;
}
.p-top-seedling__content picture.p-top-seedling__content-spimage {
  display: none;
}
.p-top-seedling__content p {
  text-align: justify;
  padding-right: 25%;
}

.p-top-seedling__images {
  width: 86%;
  max-width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2%;
  padding: 6% 0 8% 0;
}
.p-top-seedling__images picture {
  display: block;
  width: 23.5%;
}

@media (max-width: 767px) {
  .p-top-seedling {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-seedling__heading {
    width: 84%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-seedling__heading picture {
    display: none;
    margin-bottom: 0;
  }
  .p-top-seedling__heading h2 {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    text-orientation: initial;
    font-size: 3.2rem;
    letter-spacing: 0.02em;
    line-height: 1.45;
  }
  .p-top-seedling__content {
    width: 100%;
    padding-top: 4rem;
  }
  .p-top-seedling__content picture {
    margin-bottom: 4rem;
  }
  .p-top-seedling__content picture.p-top-seedling__content-spimage {
    display: block;
  }
  .p-top-seedling__content .p-top-seedling__content-spimage,
  .p-top-seedling__content p,
  .p-top-seedling__content h3 {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-seedling__content h3 {
    font-size: 2.4rem;
    letter-spacing: 0.02em;
  }
  .p-top-seedling__content p {
    padding-right: initial;
  }
  .p-top-seedling__images {
    width: 84%;
    padding: 4rem 0 4rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem 0;
  }
  .p-top-seedling__images picture {
    width: 100%;
  }
}
.p-top-about {
  padding: 10rem 0 16rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-about__figure {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-top-about__figure img {
  width: 70%;
}

.p-top-about__content {
  width: 52%;
  padding-right: 7%;
}
.p-top-about__content h2 {
  font-size: 2.8rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.14em;
  line-height: 1.55;
  margin-bottom: 2rem;
}
.p-top-about__content p {
  text-align: justify;
}
.p-top-about__content nav {
  margin-top: 5.6rem;
}
.p-top-about__content nav a.c-button {
  width: 100%;
}

@media (max-width: 767px) {
  .p-top-about {
    padding: 4rem 0 8rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-about h2 {
    font-size: 2.4rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.02em;
    margin-bottom: 3.2rem;
    text-align: center;
  }
  .p-top-about__figure,
  .p-top-about__content {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-about__figure {
    margin-bottom: 3.2rem;
  }
  .p-top-about__figure img {
    width: 100%;
  }
  .p-top-about__content {
    padding-right: 0;
    margin-bottom: 4rem;
  }
  .p-top-about__content nav {
    margin-top: 4rem;
  }
  .p-top-about__content nav .c-button {
    font-size: 1.55rem;
  }
}
.p-top-farmers {
  background-color: #FEF8EB;
  padding: 8% 0;
}

.p-top-farmers__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10%;
}

.p-top-farmers__heading-image {
  width: 57%;
  padding-top: 10%;
}

.p-top-farmers__heading-text {
  width: 33%;
  padding-right: 7%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 4rem;
  letter-spacing: 0.18em;
  line-height: 1.85;
  font-weight: var(--font-weight-medium);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.p-top-farmers__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10%;
  margin-top: -24%;
}

.p-top-farmers__content-text {
  width: 57%;
  padding-left: 15%;
  margin-top: 35%;
}
.p-top-farmers__content-text h3 {
  font-size: 2.8rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.14em;
  line-height: 1.55;
  margin-bottom: 2rem;
}
.p-top-farmers__content-text nav {
  margin-top: 6.4rem;
}
.p-top-farmers__content-text nav .c-button {
  width: 100%;
}

.p-top-farmers__content-image {
  width: 33%;
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem 0;
}

@media (max-width: 767px) {
  .p-top-farmers {
    padding: 4rem 0 5.6rem 0;
  }
  .p-top-farmers__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-top-farmers__heading h2 {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    text-orientation: initial;
    font-size: 3.2rem;
    letter-spacing: 0.02em;
    line-height: 1.45;
  }
  .p-top-farmers__heading-image {
    width: 100%;
    padding-top: 4rem;
  }
  .p-top-farmers__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
  .p-top-farmers__content-text {
    width: 84%;
    padding-left: initial;
    margin-top: 4rem;
    margin-right: auto;
    margin-left: auto;
  }
  .p-top-farmers__content-text h3 {
    font-size: 2.4rem;
    letter-spacing: 0.02em;
  }
  .p-top-farmers__content-image {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4.8rem;
  }
  .p-top-farmers__content-navi-sp .c-button {
    width: 84%;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top-processor {
  background-color: #F5EEF1;
  padding: 8% 0;
}

.p-top-processor__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 0 10%;
}

.p-top-processor__heading-text {
  width: 33%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 4rem;
  letter-spacing: 0.18em;
  line-height: 1.85;
  font-weight: var(--font-weight-medium);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.p-top-processor__heading-image {
  width: 57%;
}

.p-top-processor__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 10%;
  margin-top: -4rem;
}

.p-top-processor__content-text {
  width: 57%;
}
.p-top-processor__content-text p {
  width: 90%;
  max-width: 58rem;
  margin-top: calc(4rem + 6%);
}
.p-top-processor__content-text nav {
  width: 90%;
  max-width: 58rem;
  margin-top: 6.4rem;
}
.p-top-processor__content-text nav .c-button {
  width: 100%;
}

.p-top-processor__content-subimage {
  margin-top: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4%;
  padding-right: 12%;
}
.p-top-processor__content-subimage picture {
  display: block;
  width: 30.66%;
}

.p-top-processor__content-image {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem 0;
}

@media (max-width: 767px) {
  .p-top-processor {
    padding: 4rem 0 5.6rem 0;
  }
  .p-top-processor__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-top-processor__heading-text {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    text-orientation: initial;
    font-size: 3.2rem;
    letter-spacing: 0.02em;
    line-height: 1.45;
  }
  .p-top-processor__heading-image {
    width: 100%;
    padding-top: 4rem;
  }
  .p-top-processor__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 84%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.2rem;
  }
  .p-top-processor__content-text {
    width: 100%;
  }
  .p-top-processor__content-text p {
    width: 100%;
    max-width: initial;
    margin-top: 0;
  }
  .p-top-processor__content-subimage {
    display: none;
  }
  .p-top-processor__content-image {
    width: 100%;
    margin-top: 4rem;
  }
  .p-top-processor__content-nav-sp {
    margin-top: 4rem;
  }
  .p-top-processor__content-nav-sp .c-button {
    width: 100%;
  }
}
.p-about-intro {
  text-align: center;
  padding: 10rem 0;
}
.p-about-intro h1 {
  font-size: 3.5rem;
  font-weight: var(--font-weight-regular);
  margin-bottom: 2.4rem;
}
.p-about-intro p {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 7.2rem;
}
.p-about-intro picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 64rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-about-intro {
    padding: 6.4rem 0;
  }
  .p-about-intro h1 {
    font-size: 2rem;
    line-height: 1.45;
    margin-bottom: 2.4rem;
  }
  .p-about-intro p {
    font-size: 1.4rem;
    margin-bottom: 5.6rem;
  }
  .p-about-intro picture {
    width: 100%;
  }
}
.p-about-attempt.container {
  max-width: 1150px;
}
.p-about-attempt .p-about-attempt__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 6%;
  padding-top: 6.4em;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--main-color);
}
.p-about-attempt .p-about-attempt__wrap.certification .content .group, .p-about-attempt .p-about-attempt__wrap.kgap .content .group {
  margin-bottom: 6.4rem;
}
.p-about-attempt .p-about-attempt__wrap > picture {
  display: block;
  width: 33%;
  max-width: 37rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-about-attempt .p-about-attempt__wrap > picture img {
  max-width: 210px;
  width: 56%;
}
.p-about-attempt .p-about-attempt__wrap .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about-attempt .p-about-attempt__wrap .content .group h2 {
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.6rem;
  font-weight: var(--font-weight-medium);
}
.p-about-attempt__certification-image {
  width: 100%;
  margin-top: 2.4rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.6%;
}
.p-about-attempt__certification-image picture {
  display: block;
  width: calc((100% - 4rem) / 3);
}

@media (max-width: 767px) {
  .p-about-attempt .p-about-attempt__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem 0;
    padding-top: 4em;
    padding-bottom: 4rem;
  }
  .p-about-attempt .p-about-attempt__wrap > picture {
    width: 80%;
    max-width: initial;
    margin-left: auto;
    margin-right: auto;
  }
  .p-about-attempt .p-about-attempt__wrap.certification .content .group, .p-about-attempt .p-about-attempt__wrap.kgap .content .group {
    margin-bottom: 4rem;
  }
  .p-about-attempt .p-about-attempt__wrap.certification .content .group:last-of-type, .p-about-attempt .p-about-attempt__wrap.kgap .content .group:last-of-type {
    margin-bottom: 0;
  }
  .p-about-attempt .p-about-attempt__wrap .content .group h2 {
    font-size: 2rem;
  }
  .p-about-attempt__certification-image {
    width: 100%;
    margin-top: initial;
    margin-bottom: initial;
    gap: 0 1rem;
  }
  .p-about-attempt__certification-image picture {
    width: calc((100% - 2rem) / 3);
  }
}
.p-about-charactor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 8rem;
  padding: 8.8rem 0;
}

.p-about-charactor__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4rem;
}
.p-about-charactor__image .item {
  width: calc(50% - 2rem);
  text-align: center;
}
.p-about-charactor__image .item img {
  height: 100%;
  width: auto;
}
.p-about-charactor__image .item .name {
  font-size: 2rem;
  margin-top: 2rem;
}
.p-about-charactor__image .item .summary {
  line-height: 1.45;
}

.p-about-charactor__content {
  width: 33%;
}
.p-about-charactor__content h2 {
  font-size: 2.8rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.8rem;
}
@media (max-width: 767px) {
  .p-about-charactor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem 0;
    padding: 4rem 0;
  }
  .p-about-charactor__image {
    width: 100%;
    gap: 0 2rem;
  }
  .p-about-charactor__image .item {
    width: calc(50% - 1rem);
  }
  .p-about-charactor__image .item .name {
    font-size: 1.6rem;
    margin-top: 0.8rem;
  }
  .p-about-charactor__image .item .summary {
    font-size: 1.3rem;
  }
  .p-about-charactor__image .item img {
    height: 11rem;
  }
  .p-about-charactor__content {
    width: 100%;
  }
  .p-about-charactor__content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.p-about-logo {
  background-color: hsl(41, 90%, 96%);
  padding: 10rem 0;
}
.p-about-logo .container {
  max-width: 1150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-about-logo__content {
  width: 40%;
}
.p-about-logo__content h2 {
  font-size: 3.2rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1em;
  line-height: 1.65;
  margin-bottom: 5.6rem;
}
.p-about-logo__content p {
  text-align: justify;
  letter-spacing: 0.06em;
}

.p-about-logo__figures {
  width: 48%;
}
.p-about-logo__figures figure {
  display: block;
  width: 90%;
}
.p-about-logo__figures figure:first-of-type {
  margin-top: 1rem;
}
.p-about-logo__figures figure:last-of-type {
  margin-top: 14rem;
}
@media (max-width: 767px) {
  .p-about-logo {
    padding: 6.4rem 0;
  }
  .p-about-logo .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.4rem 0;
  }
  .p-about-logo__content {
    width: 100%;
  }
  .p-about-logo__content h2 {
    font-size: 2.2rem;
    margin-bottom: 4rem;
  }
  .p-about-logo__figures {
    width: 100%;
  }
  .p-about-logo__figures figure {
    width: 100%;
  }
  .p-about-logo__figures figure:last-of-type {
    margin-top: 6.4rem;
  }
}
.p-about-monument .container {
  max-width: 1150px;
}

.p-about-monument__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 8rem;
  padding-top: 5.6em;
  padding-bottom: 12rem;
  border-top: 1px solid var(--main-color);
}
.p-about-monument__wrap .picture {
  width: 50%;
  max-width: 53rem;
}
.p-about-monument__wrap .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about-monument__wrap .content h2 {
  font-size: 2.8rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.8rem;
}
@media (max-width: 767px) {
  .p-about-monument__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0 4rem;
    padding-top: 4em;
    padding-bottom: 6rem;
  }
  .p-about-monument__wrap .content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .p-about-monument__wrap .picture {
    width: 100%;
    max-width: initial;
    margin-bottom: 2.4rem;
  }
}
.p-section-head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-bottom: 3.2rem;
  margin-bottom: 7.2rem;
}
.p-section-head::after {
  content: "";
  display: block;
  width: 13rem;
  height: 0.8rem;
  background-image: url(../img/common/img_section_head_line.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: 0;
}
.p-section-head h2 span {
  display: block;
}
.p-section-head h2 span.jp {
  font-size: 4.8rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
  font-weight: var(--font-weight-bold);
  color: var(--main-color);
  margin-bottom: 0.4rem;
}
.p-section-head h2 span.en {
  font-size: 1.6rem;
  font-weight: var(--font-weight-semiBold);
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .p-section-head {
    padding-bottom: 2.4rem;
    margin-bottom: 4.8rem;
  }
  .p-section-head::after {
    width: 8rem;
  }
  .p-section-head h2 span.jp {
    font-size: 2.4rem;
  }
  .p-section-head h2 span.en {
    font-size: 1rem;
  }
}
.p-page-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10rem 0 8rem 0;
  border-bottom: 1px solid var(--main-color);
  margin-bottom: 8rem;
}
.p-page-head h1 {
  font-size: 3.5rem;
  letter-spacing: 0.14em;
  line-height: 1;
  font-weight: var(--font-weight-medium);
  color: var(--main-color);
}

@media (max-width: 767px) {
  .p-page-head {
    margin-bottom: 5.6rem;
  }
  .p-page-head h1 {
    font-size: 2.6rem;
  }
}
.p-farmers-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem;
}
.p-farmers-list .item {
  position: relative;
  display: block;
  width: calc((100% - 3.2rem) / 3);
  padding: 3.2rem 1.6rem 1.6rem 1.6rem;
  border-radius: 1.4rem;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}
.p-farmers-list .item .photo {
  position: relative;
  display: block;
  width: 60%;
  margin: 0 auto 2.6rem auto;
  overflow: hidden;
  border-radius: 50%;
}
.p-farmers-list .item .photo::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-farmers-list .item .photo img {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.p-farmers-list .item .name {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.45;
}
.p-farmers-list .item .tel {
  font-size: 2rem;
  line-height: 1.45;
}
.p-farmers-list .item .variety,
.p-farmers-list .item .schedule {
  margin-bottom: 0.8rem;
}
.p-farmers-list .item .variety dt,
.p-farmers-list .item .schedule dt {
  background-color: #fff;
  position: relative;
  margin-bottom: 0.8rem;
}
.p-farmers-list .item .variety dt::before,
.p-farmers-list .item .schedule dt::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  border-bottom: 1px solid var(--main-color);
  position: absolute;
  top: 50%;
  left: 0;
}
.p-farmers-list .item .variety dt span,
.p-farmers-list .item .schedule dt span {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 0 1rem;
  font-size: 1.3rem;
  font-weight: var(--font-weight-semiBold);
  letter-spacing: 0.2em;
}
.p-farmers-list .item .variety dd,
.p-farmers-list .item .schedule dd {
  line-height: 1;
}
.p-farmers-list .item .variety {
  margin-top: 2.4rem;
}
.p-farmers-list .item .variety dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
}
.p-farmers-list .item .variety dd img {
  width: 30%;
}
.p-farmers-list .item .schedule dd {
  font-size: 2.4rem;
}
.p-farmers-list .item .navi {
  margin-top: 2.4rem;
}
.p-farmers-list .item .navi .c-button {
  width: 100%;
  border-radius: 0.8rem;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  padding: 1rem 0 1.4rem 0;
}
.p-farmers-list .item .navi span {
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 767px) {
  .p-farmers-list .item {
    width: 100%;
  }
}
.p-farmers-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 12rem;
  margin-bottom: 12rem;
  gap: 8rem;
}

.p-farmers-detail__photo {
  width: calc(50% - 4rem);
  position: relative;
}
.p-farmers-detail__photo picture {
  display: block;
}

.p-farmers-detail__content {
  width: calc(50% - 4rem);
}
.p-farmers-detail__content .name {
  font-size: 3rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.45;
  color: var(--main-color);
  margin-bottom: 2.4rem;
}
.p-farmers-detail__content .meta {
  color: #252525;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--font-weight-regular);
  line-height: 1.65;
}
.p-farmers-detail__content .meta dl dt {
  display: inline;
}
.p-farmers-detail__content .meta dl dd {
  display: inline;
}
.p-farmers-detail__content .wish,
.p-farmers-detail__content .personality {
  margin-top: 4rem;
}
.p-farmers-detail__content .wish h3,
.p-farmers-detail__content .personality h3 {
  font-size: 2.6rem;
  font-weight: var(--font-weight-medium);
  border-bottom: 1px solid var(--main-color);
  margin-bottom: 1.6rem;
  padding-bottom: 0.8rem;
}
.p-farmers-detail__content .wish p,
.p-farmers-detail__content .personality p {
  color: #252525;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--font-weight-regular);
}
.p-farmers-detail__content .sns-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.8rem;
  margin-top: 2.4rem;
}
.p-farmers-detail__content .sns-navi a {
  display: block;
  width: 4.2rem;
  height: 4.2rem;
}
.p-farmers-detail__content .furusato-navi {
  margin-top: 2.4rem;
}
.p-farmers-detail__content .furusato-navi .c-button {
  width: 100%;
  letter-spacing: 0.4em;
  font-weight: var(--font-weight-regular);
}
.p-farmers-detail__content .back-navi {
  margin-top: 6.4rem;
}
.p-farmers-detail__content .back-navi .c-button {
  width: 100%;
  letter-spacing: 0.4em;
  font-weight: var(--font-weight-regular);
  background-color: #fff;
  color: var(--main-color);
  width: 100%;
  max-width: 60rem;
  border: 1px solid var(--main-color);
  font-size: 2.4rem;
  letter-spacing: 0.4em;
}
.p-farmers-detail__content .back-navi .c-button:hover {
  background-color: var(--main-color);
  color: #fff;
  opacity: 1 !important;
}

@media (max-width: 767px) {
  .p-farmers-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: initial;
    gap: 4rem 0;
  }
  .p-farmers-detail__photo {
    width: 100%;
  }
  .p-farmers-detail__content {
    width: 100%;
  }
  .p-farmers-detail__content .name {
    font-size: 2.4rem;
  }
  .p-farmers-detail__content .wish h3,
  .p-farmers-detail__content .personality h3 {
    font-size: 2rem;
  }
  .p-farmers-detail__content .sns-navi a {
    width: 3.8rem;
    height: 3.8rem;
  }
  .p-farmers-detail__content .back-navi .c-button {
    font-size: 1.8rem;
  }
}
.p-farmers-index {
  position: relative;
  padding-bottom: 12rem;
}
.p-farmers-index::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-color: #FDEECC;
  position: absolute;
  top: 2rem;
  left: 0;
  z-index: -1;
}
.p-farmers-index h2 {
  background-color: var(--main-color);
  color: #fff;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.16em;
  line-height: 1;
  padding: 0.8rem 2rem 1.2rem 2.6rem;
  border-radius: 4rem;
  margin-bottom: 4rem;
}

.p-farmers-index__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8rem;
}
.p-farmers-index__navi .c-button {
  background-color: #fff;
  color: var(--main-color);
  width: 100%;
  max-width: 60rem;
  border: 1px solid var(--main-color);
  font-size: 2.4rem;
  letter-spacing: 0.4em;
}
.p-farmers-index__navi .c-button:hover {
  opacity: 1;
  background-color: var(--main-color);
  color: #fff;
}

@media (max-width: 767px) {
  .p-farmers-index__navi .c-button {
    font-size: 2rem;
  }
}
.p-farmers-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 8rem;
}

.p-farmers-navi__content {
  width: 50%;
}

.p-farmers-navi__catch {
  font-size: 3rem;
  font-weight: var(--font-weight-medium);
}

.p-farmers-navi__attention {
  margin-top: 4rem;
}

.p-farmers-navi__notes {
  margin-top: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.4rem 0;
}
.p-farmers-navi__notes .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.45;
  font-size: 1.5rem;
}
.p-farmers-navi__notes .item img {
  width: 7.2rem;
  margin-right: 1rem;
}

.p-farmers-navi__map {
  background-image: url(../img/farmers/bg_map_1.svg);
  background-position: left top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 50%;
  max-width: 600px;
  aspect-ratio: 600/800;
  position: relative;
}
.p-farmers-navi__map.nishi {
  background-image: url(../img/farmers/bg_map_1.svg);
}
.p-farmers-navi__map.nishi a.nishi {
  opacity: 1;
  background-color: var(--main-color);
  color: #fff;
}
.p-farmers-navi__map.naka {
  background-image: url(../img/farmers/bg_map_2.svg);
}
.p-farmers-navi__map.naka a.naka {
  opacity: 1;
  background-color: var(--main-color);
  color: #fff;
}
.p-farmers-navi__map.minami {
  background-image: url(../img/farmers/bg_map_3.svg);
}
.p-farmers-navi__map.minami a.minami {
  opacity: 1;
  background-color: var(--main-color);
  color: #fff;
}
.p-farmers-navi__map a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-size: 3rem;
  letter-spacing: 0.2em;
  border: 2px solid var(--main-color);
  background-color: #fff;
  color: var(--main-color);
  border-radius: 10rem;
  position: absolute;
  width: 37%;
  height: 8.5%;
  padding-bottom: 1%;
}
.p-farmers-navi__map a:hover {
  opacity: 1;
  background-color: var(--main-color);
  color: #fff;
}
.p-farmers-navi__map a.nishi {
  left: 14%;
  top: 11%;
}
.p-farmers-navi__map a.naka {
  left: 0;
  top: 49.5%;
}
.p-farmers-navi__map a.minami {
  left: 63.5%;
  top: 81.5%;
}

@media (max-width: 767px) {
  .p-farmers-navi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-farmers-navi__content {
    width: 100%;
  }
  .p-farmers-navi__catch {
    font-size: 2rem;
  }
  .p-farmers-navi__attention {
    margin-top: 3.2rem;
    font-size: 1.4rem;
  }
  .p-farmers-navi__notes {
    margin-top: 4rem;
  }
  .p-farmers-navi__notes .item {
    font-size: 1.2rem;
  }
  .p-farmers-navi__notes .item img {
    width: 4.8rem;
  }
  .p-farmers-navi__map {
    width: 100%;
    margin-top: 6rem;
  }
  .p-farmers-navi__map a {
    font-size: 1.8rem;
  }
  .p-farmers-index h2 {
    font-size: 2.4rem;
  }
}
.p-processors-list {
  padding-bottom: 12rem;
}
.p-processors-list h2 {
  margin-bottom: 4rem;
  font-weight: var(--font-weight-medium);
  font-size: 1.8rem;
}
.p-processors-list ul {
  color: #252525;
}
.p-processors-list ul li {
  font-size: 1.8rem;
  line-height: 2.4;
  color: var(--main-color);
}
.p-processors-list ul li a {
  text-decoration: underline;
  color: var(--main-color);
}

@media (max-width: 767px) {
  .p-processors-list h2 {
    font-size: 1.6rem;
    line-height: 1.65;
  }
  .p-processors-list ul li {
    font-size: 1.4rem;
    line-height: 1.55;
    margin-bottom: 1.6rem;
  }
}
.p-contact {
  margin-bottom: 14rem;
}
.p-contact .item {
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1px solid var(--main-color);
  padding: 4rem 0;
  word-break: break-all;
}
.p-contact .item h2 {
  font-size: 2.5rem;
  line-height: 1.45;
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.6rem;
}
.p-contact .item .meta {
  color: #252525;
  font-weight: var(--font-weight-regular);
}
@media (max-width: 767px) {
  .p-contact .item h2 {
    font-size: 1.6rem;
  }
  .p-contact .item .meta {
    font-size: 1.4rem;
  }
}
.p-404 {
  text-align: center;
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.p-404 h1 {
  line-height: 1;
  margin: 0 auto 8rem auto;
  font-weight: var(--font-weight-medium);
}

.p-404 h1 span {
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.p-404 h1 span:first-of-type {
  font-size: 12rem;
  margin-bottom: 2rem;
  color: var(--color-green);
}

.p-404-content p {
  line-height: 2;
}

.p-404-back-navi {
  margin-top: 4rem;
}

.p-404-back-navi a {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  .p-404 {
    padding-bottom: 10rem;
  }
  .p-404 h1 {
    margin: 0 auto 6.4rem auto;
  }
  .p-404 h1 span {
    font-size: 2rem;
  }
  .p-404 h1 span:first-of-type {
    font-size: 10rem;
    margin-bottom: 1rem;
  }
}
.fadeIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1), -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}

.fadeIn.inview {
  opacity: 1;
}

.fadeUpIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.fadeUpIn.inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.maskIn {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.maskIn.inview {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.blurIn {
  -webkit-animation-name: blurInAnime;
          animation-name: blurInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

@-webkit-keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.show-tablet-inline,
.show-tablet,
.show-mobile-inline,
.show-mobile {
  display: none;
}

.hide-tablet,
.hide-mobile {
  display: block;
}

.hide-tablet-inline,
.hide-mobile-inline {
  display: inline-block;
}

@media (min-width: 768px) and (max-width: 999px) {
  .show-tablet {
    display: block;
  }
  .show-tablet-inline {
    display: inline-block;
  }
  .hide-tablet {
    display: none;
  }
}
@media (max-width: 767px) {
  .show-mobile {
    display: block;
  }
  .show-mobile-inline {
    display: inline-block;
  }
  .hide-mobile {
    display: none;
  }
  .hide-mobile-inline {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */