@charset "UTF-8";
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, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  min-inline-size: 0;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

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

input, select {
  vertical-align: middle;
}

:root {
  --inner-padding: 15px;
  --inner-width: 1100px;
  --header-height: 70px;
  --font-size-base: 0.9375rem;
  --font-size-sm: 0.75rem;
  --font-size-md: 0.875rem;
  --font-size-lg: 1rem;
  --font-size-xl: 1.125rem;
  --font-size-xxl: 1.25rem;
  --font-size-xxxl: 1.5rem;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Josefin Sans", sans-serif;
  --color-white: #fff;
  --color-black: #333333;
  --color-gray: #E7E7E7;
  --color-green1: #39A200;
  --color-green2: #C6D4BF;
  --color-green3: #F1F4EF;
  --color-green4: #318B00;
  --color-red: #FF0300;
}
@media screen and (min-width: 768px) {
  :root {
    --inner-padding: 50px;
    --header-height: 100px;
    --font-size-sm: 0.8125rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.75rem;
    --font-size-xxxl: 2rem;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

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

html {
  font-size: 100%;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 375px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  color: var(--color-black);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  body {
    line-height: 2;
  }
}

.l-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  overflow-x: clip;
}

.l-main {
  flex: 1;
}

.l-container {
  position: relative;
  width: min(100% - var(--inner-padding) * 2, var(--inner-width));
  margin-inline: auto;
}

/*
footer
*/
.l-footer__copyright {
  padding: 20px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    padding: 30px 0;
  }
}

.l-footer__section {
  padding: 50px 0;
  background: var(--color-green1);
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .l-footer__section {
    padding: 100px 0;
  }
}

.l-footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .l-footer__container {
    grid-template-columns: fit-content(100%) 1fr;
  }
}

.l-footer__info {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__info {
    text-align: left;
  }
}
.l-footer__info-title {
  font-size: var(--font-size-xxl);
  font-weight: 500;
}
.l-footer__info-address {
  margin-top: 35px;
  font-style: normal;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .l-footer__info-address a:hover {
    text-decoration: underline;
  }
}

.l-footer__nav {
  display: none;
  gap: 100px;
  justify-content: flex-end;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    display: flex;
  }
}

.l-footer__nav-item-list:has(ul) li {
  padding-left: 1em;
  position: relative;
}
.l-footer__nav-item-list:has(ul) li::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(var(--font-size-base) * 2.5 / 2);
  left: 0;
  translate: 0 -50%;
  width: 4px;
  aspect-ratio: 1;
  background: var(--color-white);
  border-radius: 50%;
}

.l-footer__nav-item-list a {
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 1024px) {
  .l-footer__nav-item-list a:hover {
    opacity: 0.75;
  }
}

.c-button.c-button--white {
  --button-color: var(--color-white);
  --button-color-text: var(--color-green1);
  --button-color-border: var(--color-green1);
  --button-color-arrow: var(--color-green1);
}
@media screen and (min-width: 1024px) {
  .c-button.c-button--white:hover {
    --button-color: var(--color-green1);
    --button-color-text: var(--color-white);
    --button-color-arrow: var(--color-white);
  }
}

.c-button {
  --button-color: var(--color-green1);
  --button-color-text: var(--color-white);
  --button-color-border: var(--color-green1);
  --button-color-arrow: var(--color-white);
  --button-width: 300px;
  --button-height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  background: var(--button-color);
  color: var(--button-color-text);
  border: 1px solid var(--button-color-border);
  transition: 0.3s ease-out;
  width: min(100%, var(--button-width));
  height: var(--button-height);
}
@media screen and (min-width: 768px) {
  .c-button {
    --button-width: 340px;
    --button-height: 90px;
  }
}
.c-button-text {
  font-size: var(--font-size-md);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.c-button-arrow {
  width: 9.7058823529%;
  aspect-ratio: 1;
  background-color: var(--button-color-arrow);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 9.7058823529%;
  translate: 0 -50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-button-arrow::before {
  content: "";
  width: 0.35em;
  aspect-ratio: 1;
  display: block;
  border-top: 1px solid var(--button-color);
  border-right: 1px solid var(--button-color);
  rotate: 45deg;
  translate: -20% 0;
}
@media screen and (min-width: 1024px) {
  .c-button:hover {
    --button-color: var(--color-white);
    --button-color-text: var(--color-green1);
    --button-color-arrow: var(--color-green1);
  }
}

.c-pagenation {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-pagenation {
    margin-top: 100px;
  }
}
.c-pagenation .wp-pagenavi {
  position: relative;
  display: flex;
  justify-content: center;
}
.c-pagenation .page, .c-pagenation .current, .c-pagenation .last, .c-pagenation .first {
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-en);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .c-pagenation .page, .c-pagenation .current, .c-pagenation .last, .c-pagenation .first {
    width: 40px;
    height: 40px;
  }
}
.c-pagenation .extend, .c-pagenation .first {
  align-self: center;
}
.c-pagenation .current {
  background-color: var(--color-green1);
}
.c-pagenation .page, .c-pagenation .last, .c-pagenation .first {
  background-color: var(--color-black);
}

.previouspostslink,
.nextpostslink {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1.5px;
  background-color: var(--color-green1);
}
.previouspostslink::after,
.nextpostslink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: transparent;
  width: 100%;
  aspect-ratio: 1;
}
.previouspostslink::before,
.nextpostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 1.5px;
  background-color: var(--color-green1);
}

.previouspostslink {
  left: -10px;
  translate: -100% -50%;
}
.previouspostslink::before {
  left: 0;
  translate: 0 -50%;
  rotate: -34deg;
  transform-origin: 0 50%;
}

.nextpostslink {
  right: -10px;
  translate: 100% -50%;
}
.nextpostslink::before {
  right: 0;
  translate: 0 -50%;
  rotate: 34deg;
  transform-origin: 100% 50%;
}

/*
header
*/
.l-header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.l-header__inner {
  z-index: 101;
  position: relative;
  padding: 0 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 0 50px 0 40px;
  }
}

.l-header__logo svg {
  vertical-align: middle;
  width: 125px;
  height: auto;
}
@media screen and (min-width: 600px) {
  .l-header__logo svg {
    width: 168px;
  }
}
.l-header__logo svg path {
  --fill: #fff;
  fill: var(--fill);
  transition: fill 0.3s ease-out;
}
@media screen and (min-width: 1024px) {
  .l-header__logo:hover path {
    --fill: var(--color-green1);
  }
}

.l-header__logo.js-scroll svg {
  transition: opacity 0.2s ease-out, fill 0.3s ease-out;
}
.l-header__logo.js-scroll svg path {
  --fill: #3e3a39;
}
.l-header__logo.js-scroll svg path:first-of-type, .l-header__logo.js-scroll svg path:last-of-type {
  --fill: #EB7039;
}
.l-header__logo.js-scroll svg path:nth-of-type(2) {
  --fill: #22AC38;
}
@media screen and (min-width: 1024px) {
  .l-header__logo.js-scroll:hover path {
    --fill: var(--color-green1);
  }
}

.l-header__nav-cover {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .l-header__nav-cover {
    gap: 25px;
  }
}

/*
pc
*/
.l-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .l-header__nav-lists {
    display: flex;
    align-items: center;
  }
}

.l-header__nav-list > a, .l-header__nav-list > div {
  cursor: pointer;
  color: var(--color-white);
  display: block;
  padding: 1.5em 1em;
  transition: color 0.4s ease-out;
}
.l-header__nav-list > a:hover, .l-header__nav-list > div:hover {
  color: var(--color-green1);
}
.l-header__nav-list a, .l-header__nav-list div {
  font-weight: 700;
}

.l-header__nav.js-scroll .l-header__nav-list > a, .l-header__nav.js-scroll .l-header__nav-list > div {
  color: var(--color-black);
}
@media screen and (min-width: 1024px) {
  .l-header__nav.js-scroll .l-header__nav-list > a:hover, .l-header__nav.js-scroll .l-header__nav-list > div:hover {
    color: var(--color-green1);
  }
}

.l-header__nav-list:has(ul) {
  position: relative;
}

.l-header__nav-list:has(ul):hover .l-header__nav-list-items {
  opacity: 1;
  visibility: visible;
}

.l-header__nav-list-items {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--color-green1);
  color: var(--color-black);
  min-width: 220px;
}
.l-header__nav-list-items li a {
  display: block;
  padding: 12px 33px;
  cursor: pointer;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__nav-list-items li a:hover {
  background-color: var(--color-green2);
  color: var(--color-green1);
}
.l-header__nav-list-items li a:hover::after {
  border-top: 1px solid var(--color-green1);
  border-right: 1px solid var(--color-green1);
}
.l-header__nav-list-items li a::after {
  content: "";
  display: block;
  width: 0.35em;
  aspect-ratio: 1;
  rotate: 45deg;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
}

.l-header__sp-nav {
  z-index: 99;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-green4);
  z-index: 100;
  min-height: 100dvh;
  height: 100%;
  translate: 100% 0;
  transition: translate 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .l-header__sp-nav {
    display: none;
  }
}

.l-header__sp-nav.is-active {
  translate: 0 0;
}

.l-header__sp-nav-lists {
  padding: 100px 0 100px;
  height: 100%;
}

.l-header__sp-nav-list-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.l-header__sp-nav-list-items a {
  padding: 10px 50px 10px 5em;
}
.l-header__sp-nav-list-items a::after {
  content: "";
  display: block;
  width: 0.35em;
  aspect-ratio: 1;
  rotate: 45deg;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
}

.l-header__sp-nav-list-items.is-active {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
}

.l-header__sp-nav-list button::after {
  transition: rotate 0.2s ease-out;
}
.l-header__sp-nav-list button.is-active::after {
  rotate: 135deg;
}

.l-header__sp-nav-list > button, .l-header__sp-nav-list > a {
  color: var(--color-white);
  background-color: transparent;
  border: none;
  padding: 10px 50px 10px 40px;
  width: 100%;
  font-size: 0.9375rem;
}
.l-header__sp-nav-list a, .l-header__sp-nav-list button {
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}
.l-header__sp-nav-list a::after, .l-header__sp-nav-list button::after {
  content: "";
  display: block;
  width: 0.35em;
  aspect-ratio: 1;
  rotate: 45deg;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
}

.l-header__shop-btn {
  background-color: var(--color-green1);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.2s ease-out;
}
@media screen and (min-width: 1024px) {
  .l-header__shop-btn {
    min-width: 200px;
    width: auto;
    height: auto;
    aspect-ratio: none;
    padding: 11px 0;
  }
}
.l-header__shop-btn-text {
  font-weight: 500;
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__shop-btn-text {
    display: block;
  }
}
.l-header__shop-btn img {
  width: 40%;
  aspect-ratio: 1;
  height: auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-header__shop-btn img {
    width: 10.9090909091%;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__shop-btn:hover {
    opacity: 0.8;
  }
}

.l-header__hamburger {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  background-color: var(--color-white);
  border: none;
}
@media screen and (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger span {
  --space: 5px;
  display: block;
  width: 40%;
  height: 1.5px;
  background-color: var(--color-green1);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.3s ease-out;
}
.l-header__hamburger span:nth-child(1) {
  top: calc(50% - var(--space));
}
.l-header__hamburger span:nth-child(2) {
  top: 50%;
}
.l-header__hamburger span:nth-child(3) {
  top: calc(50% + var(--space));
}

.l-header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  rotate: 45deg;
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
  top: 50%;
  rotate: -45deg;
}

/*
hero
*/
.p-top__hero {
  position: relative;
}
.p-top__hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(15px, 4vw);
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .p-top__hero-text {
    left: max(150px, 10.7142857143vw);
  }
}
.p-top__hero-bg {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 520px;
}
@media screen and (min-width: 768px) {
  .p-top__hero-bg {
    min-height: none;
  }
}
.p-top__hero-description {
  margin-top: 40px;
  color: var(--color-white);
  line-height: 1.8;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top__hero-description {
    margin-top: 18px;
    font-size: 1.5rem;
  }
}

.p-top__hero-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-top__hero-title-span {
  padding: 0.1785714286em 0.3571428571em;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.75rem;
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: 10px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-top__hero-title-span {
    padding: 0.3571428571em;
    font-size: 2.625rem;
  }
}
.p-top__hero-title-span span {
  color: var(--color-green1);
}

.p-top__hero-fv-deco {
  position: absolute;
  top: 100%;
  left: calc(50% + 50px);
  translate: -50% -50%;
  rotate: -7deg;
  width: 123.8771428571%;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-top__hero-fv-deco {
    left: calc(50% + 100px);
  }
}

/*
about
*/
.p-top__about {
  position: relative;
  margin-top: 50px;
  padding-bottom: 185px;
}
@media screen and (min-width: 768px) {
  .p-top__about {
    margin-top: 180px;
    padding-bottom: 310px;
  }
}

.p-top__about-bg {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.p-top__about-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-top__about-title {
    gap: 20px;
  }
}
.p-top__about-title img {
  display: inline-block;
  margin-right: 14px;
}
.p-top__about-title-en {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-family: var(--font-family-en);
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--color-green1);
}
.p-top__about-title-ja {
  font-size: var(--font-size-xxl);
  font-weight: 500;
}
.p-top__about-title-ja span {
  display: inline-block;
  margin-right: 0.2em;
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 1.6em;
}
@media screen and (min-width: 768px) {
  .p-top__about-title-ja span {
    font-size: 2.1428571429em;
  }
}

.p-top__about-para {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-top__about-para {
    text-align: center;
    margin-top: 40px;
  }
}

.p-top__about-links {
  margin-top: 50px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-top__about-links {
    margin-top: 140px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.p-top__about-link {
  position: relative;
  margin-inline: auto;
  width: min(100%, 530px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 1024px) {
  .p-top__about-link:hover img {
    transform: scale(1.05);
    opacity: 0.95;
  }
}
.p-top__about-link img {
  z-index: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.p-top__about-link-text {
  z-index: 2;
  position: relative;
  background: var(--color-green1);
  color: var(--color-white);
  padding: 0.85em 1.5em 0.85em 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: var(--font-size-lg);
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-top__about-link-text {
    padding: 1.25em 1.5em 1.25em 2em;
  }
}

.p-top__about-link-arrow {
  width: 7.1698113208%;
  aspect-ratio: 1;
  background-color: var(--color-white);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top__about-link-arrow::before {
  content: "";
  display: block;
  width: 21.0526315789%;
  aspect-ratio: 1;
  border-top: 1px solid var(--color-green1);
  border-right: 1px solid var(--color-green1);
  rotate: 45deg;
  translate: -20% 0;
}

.p-top__about-decos {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-top__about-decos {
    margin-top: 0;
    display: contents;
  }
}

.p-top__about-deco {
  display: block;
  position: static;
}
@media screen and (min-width: 768px) {
  .p-top__about-deco {
    position: absolute;
    top: 0;
    height: auto;
  }
}

.p-top__about-deco--1 {
  margin-top: 70px;
  left: -220px;
  width: clamp(200px, 53.3333333333vw, 347px);
  aspect-ratio: 203/246;
}
@media screen and (min-width: 768px) {
  .p-top__about-deco--1 {
    margin-top: 0;
    width: min(24.7857142857%, 347px);
    aspect-ratio: 347/422;
  }
}

.p-top__about-deco--2 {
  top: 180px;
  right: -240px;
  width: clamp(200px, 53.3333333333vw, 429px);
  aspect-ratio: 260/194;
}
@media screen and (min-width: 768px) {
  .p-top__about-deco--2 {
    width: min(30.6428571429%, 429px);
    aspect-ratio: 429/321;
  }
}

/*
service
*/
.p-top__service {
  position: relative;
  background: var(--color-green3);
  padding: 50px 0 80px;
}
@media screen and (min-width: 768px) {
  .p-top__service {
    padding: 100px 0 150px;
  }
}

.p-top__service-header {
  text-align: center;
}
.p-top__service-header-para {
  margin-top: 30px;
  color: var(--color-black);
}
@media screen and (min-width: 768px) {
  .p-top__service-header-para {
    margin-top: 50px;
  }
}

.c-title {
  line-height: 1.5;
}
.c-title__label {
  color: var(--color-green1);
  font-size: var(--font-size-md);
  font-family: var(--font-family-en);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.c-title__heading {
  font-size: var(--font-size-xxxl);
  font-weight: 500;
  margin-bottom: 0.1875em;
}

.p-top__service-cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
@media screen and (min-width: 1200px) {
  .p-top__service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-top__service-card {
  width: min(100%, 340px);
  margin-inline: auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s;
}
.p-top__service-card-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 340/210;
  object-fit: cover;
  height: auto;
  background-color: aliceblue;
}
@media screen and (min-width: 768px) {
  .p-top__service-card-figure img {
    aspect-ratio: 340/240;
  }
}
.p-top__service-card-body {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-top__service-card-num {
  position: relative;
  color: var(--color-white);
  width: 2.8125rem;
}
.p-top__service-card-num img {
  margin-top: 6px;
  z-index: 1;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
}
.p-top__service-card-num::before {
  z-index: 2;
  content: attr(data-number);
  display: block;
  font-size: var(--font-size-lg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}
.p-top__service-card-title {
  font-size: var(--font-size-xxl);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-bottom: 0.5em;
  border-bottom: 1px dashed var(--color-green1);
}
.p-top__service-card-text {
  margin-top: 1.6em;
  color: var(--color-black);
}

.p-top__service-button.c-button {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 50%;
}

/*
news
*/
.p-top__news {
  margin-top: 145px;
}

.p-top__news-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-top__news-container {
    grid-template-columns: 1fr 72.7272727273%;
  }
}

.p-top__news-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top__news-title {
    text-align: left;
  }
}

.p-top__news-card:first-child a {
  border-top: 1px solid var(--color-gray);
}
.p-top__news-card-link {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--color-gray);
  color: var(--color-black);
  font-size: var(--font-size-md);
  transition: opacity 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .p-top__news-card-link {
    padding: 25px 0;
    gap: 60px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__news-card-link:hover {
    opacity: 0.8;
  }
}
.p-top__news-card-date {
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  font-weight: 400;
}

.p-top__news-button {
  margin-top: 30px;
  font-weight: 500;
  color: var(--color-black);
  padding-right: 2em;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top__news-button {
    margin-top: 60px;
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
}
.p-top__news-button::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  bottom: -1em;
  left: 0;
  scale: 0 1;
  transition: scale 0.3s ease-out;
  transform-origin: right;
}
.p-top__news-button-text {
  font-size: var(--font-size-md);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.p-top__news-button-arrow {
  width: 0.5em;
  aspect-ratio: 1;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  position: absolute;
  top: 50%;
  right: 0;
  translate: -50% -50%;
  transform: rotate(45deg);
}

@media screen and (min-width: 1024px) {
  .p-top__news-button:hover::after {
    scale: 1 1;
    transform-origin: left;
  }
}

/*
esg
*/
.p-top__esg {
  position: relative;
  margin-top: 60px;
  padding: 60px 0 60px;
}
@media screen and (min-width: 768px) {
  .p-top__esg {
    margin-top: 100px;
    padding: 120px 0 100px;
  }
}
.p-top__esg::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.p-top__esg-container {
  position: relative;
  z-index: 2;
}
.p-top__esg-bg {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top__esg-title, .p-top__esg-message, .p-top__esg-para {
  color: var(--color-white);
  text-align: center;
}
.p-top__esg-title {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  line-height: 1.5;
}
.p-top__esg-message {
  margin-top: 20px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-top__esg-message {
    margin-top: 50px;
    font-size: 2.625rem;
  }
}
.p-top__esg-para {
  margin-top: 30px;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-top__esg-button {
  margin-top: 35px;
  margin-inline: auto;
}

/*
info
*/
.p-top__info {
  margin-top: 100px;
}

.p-top__info-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.p-top__info-header img {
  display: block;
}

.p-top__info-title {
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-top__info-title {
    font-size: var(--font-size-xxl);
  }
}

.p-top__info-links {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 600px) {
  .p-top__info-links {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin-top: 70px;
  }
}

.p-top__info-link {
  --space: 30px;
  padding: var(--space);
  position: relative;
  aspect-ratio: 340/240;
  margin-inline: auto;
  width: min(100%, 400px);
}
@media screen and (min-width: 768px) {
  .p-top__info-link {
    aspect-ratio: 340/400;
  }
}
.p-top__info-link-arrow {
  z-index: 2;
  width: 17.3913043478%;
  aspect-ratio: 1;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  right: var(--space);
  bottom: var(--space);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top__info-link-arrow::before {
  content: "";
  width: 0.7em;
  aspect-ratio: 1;
  display: block;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  translate: -22% 0;
  rotate: 45deg;
}
.p-top__info-link-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity 0.2s ease-out;
  object-position: center 20%;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-top__info-link-img {
    object-position: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__info-link-img:hover {
    opacity: 0.8;
  }
}

.p-top__info-link-title {
  position: relative;
  z-index: 1;
  line-height: 1.5;
  color: #fff;
}
.p-top__info-link-title-en {
  font-size: var(--font-size-sm);
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  font-weight: 400;
  text-transform: uppercase;
}
.p-top__info-link-title-ja {
  font-size: var(--font-size-xxl);
  font-weight: 500;
  letter-spacing: 0.1em;
}

/*
contact
*/
.p-top__contact {
  margin-top: 60px;
  padding: 50px 0;
  background: var(--color-green3);
}
@media screen and (min-width: 768px) {
  .p-top__contact {
    margin-top: 120px;
    padding: 100px 0;
  }
}

.p-top__contact-header-title {
  text-align: center;
}
.p-top__contact-header-para {
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top__contact-header-para {
    margin-top: 40px;
  }
}

.p-top__contact-items {
  margin-top: 50px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .p-top__contact-items {
    gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

.p-top__contact-item {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px 40px;
  text-align: center;
  width: 100%;
  width: min(100%, 530px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top__contact-item {
    padding: 40px;
  }
}
.p-top__contact-item-img {
  width: 14.7058823529%;
  aspect-ratio: 1;
  display: block;
  margin-inline: auto;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-top__contact-item-img {
    width: 23.5294117647%;
  }
}
.p-top__contact-item-title {
  font-size: var(--font-size-lg);
  font-weight: 500;
  line-height: 1.8;
}
.p-top__contact-item-desc {
  margin-top: 7px;
}

.p-top__contact-item-tel {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.875rem;
  font-family: var(--font-family-en);
  font-weight: 400;
  line-height: 1;
  transition: opacity 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .p-top__contact-item-tel {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__contact-item-tel:hover {
    opacity: 0.8;
  }
}
.p-top__contact-item-tel img {
  display: block;
  width: 14px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-top__contact-item-tel img {
    width: 19.88px;
  }
}

.p-top__contact-item-link {
  margin-top: 20px;
  margin-inline: auto;
}

.p-hero {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1400/500;
  min-height: 200px;
}
.p-hero::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(12, 12, 12, 0.2);
  z-index: 3;
}

.p-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.p-hero__title {
  z-index: 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.4;
  color: var(--color-white);
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-hero__title {
    gap: 4px;
  }
}
.p-hero__title > div {
  text-align: center;
  translate: 0 30px;
}
.p-hero__title-en {
  font-size: 0.75rem;
  font-weight: 400;
  font-family: var(--font-family-en);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-hero__title-en {
    font-size: 0.875rem;
  }
}
.p-hero__title-ja {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-hero__title-ja {
    font-size: 2.25rem;
  }
}

.p-breadcrumbs {
  margin-top: 3.125rem;
  line-height: 1.5;
  font-size: 12px;
}
.p-breadcrumbs a {
  color: #000;
}
.p-breadcrumbs span:first-of-type {
  padding-right: 5px;
}
.p-breadcrumbs span:not(:first-of-type) {
  padding: 0 5px;
}

.p-thoughs__section {
  padding: 50px 0 0px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-thoughs__section {
    padding: 120px 0 230px;
  }
}

.p-thoughs__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-green1);
  line-height: 1;
  gap: 80px;
}

.p-thoughs__title-sub {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.8em 1.35em;
  border: 3px solid var(--color-green1);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-thoughs__title-sub {
    padding: 0.75em 2em;
    font-size: 1.5rem;
    border-radius: 15px;
  }
}
.p-thoughs__title-sub::before, .p-thoughs__title-sub::after {
  content: "";
  display: block;
  background-color: var(--color-green1);
  transform: translateX(-50%);
  rotate: -1deg;
}
.p-thoughs__title-sub::before {
  width: 3px;
  height: 2em;
  background-color: var(--color-green1);
  position: absolute;
  top: 100%;
  left: 55%;
}
.p-thoughs__title-sub::after {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-green1);
  position: absolute;
  top: calc(100% + 2em);
  left: calc(55% + 1px);
}

.p-thoughs__title-main {
  font-size: 3.75rem;
  font-weight: 400;
  font-family: var(--font-family-en);
}
@media screen and (min-width: 768px) {
  .p-thoughs__title-main {
    font-size: 7.5rem;
  }
}

.p-thoughs__para {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2.5;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-thoughs__para {
    text-align: center;
    font-size: 1.125rem;
  }
}

.p-thoughs__para--center {
  text-align: center;
}

.p-thoughs__para--mt90 {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-thoughs__para--mt90 {
    margin-top: 90px;
  }
}

.p-thoughs__para--mt80 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-thoughs__para--mt80 {
    margin-top: 80px;
  }
}

.p-thoughs__lists {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-thoughs__lists {
    gap: 10px;
  }
}

.p-thoughs__list {
  display: flex;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-thoughs__list {
    font-size: 1.25rem;
  }
}
.p-thoughs__list-title {
  color: var(--color-green1);
  min-width: 70px;
}
.p-thoughs__list-desc {
  flex: 1;
}

.p-thoughs__text {
  margin-top: 50px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-thoughs__text {
    margin-top: 100px;
    text-align: center;
  }
}
.p-thoughs__text h3 {
  font-size: var(--font-size-xxxl);
  font-weight: 700;
  line-height: 1.8;
}
.p-thoughs__text h3 span {
  color: var(--color-white);
  background-color: var(--color-green1);
}
.p-thoughs__text p {
  margin-top: 40px;
  width: min(100%, 600px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-thoughs__text p {
    margin-top: 60px;
  }
}

.p-thoughs__line {
  position: absolute;
  bottom: -120px;
  left: 50%;
  z-index: -1;
  width: 104.0207142857%;
  aspect-ratio: 1456.29/496.38;
  height: auto;
  translate: -50% 0;
  rotate: 1.33deg;
}

.p-thoughs__bg-wrapper {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-thoughs__bg-wrapper {
    display: contents;
  }
}

.p-thoughs__bg-wrapper--1 {
  margin-top: 45px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(100%, 375px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-thoughs__bg-wrapper--1 {
    margin-top: 0;
  }
}
.p-thoughs__bg-wrapper--1 picture:nth-child(1) {
  align-self: flex-end;
  translate: 40px 0;
}
.p-thoughs__bg-wrapper--1 picture:nth-child(2) {
  margin-top: -40px;
  align-self: flex-start;
  translate: -30px 0;
}
.p-thoughs__bg-wrapper--1 picture:nth-child(3) {
  margin-top: -40px;
  align-self: flex-end;
}

.p-thoughs__bg-wrapper--2 {
  margin-top: 30px;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 30px;
}

.p-thoughs__bg {
  width: 200px;
  aspect-ratio: 1;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-thoughs__bg {
    position: absolute;
    width: 30.4285714286%;
  }
}

.p-thoughs__bg--1 {
  top: 20px;
  right: -200px;
}

.p-thoughs__bg--2 {
  top: 250px;
  left: -200px;
}

.p-thoughs__bg--3 {
  top: 700px;
  right: -200px;
}

.p-thoughs__bg--4 {
  bottom: -110px;
  right: -180px;
}

.p-thoughs__bg--5 {
  margin-top: 70px;
  bottom: -200px;
  left: -160px;
}
@media screen and (min-width: 768px) {
  .p-thoughs__bg--5 {
    margin-top: 0;
  }
}

.c-title-page {
  font-size: var(--font-size-xxxl);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-story__section {
  margin-top: 100px;
}

.p-story__title {
  text-align: center;
}

.p-story__history-2col,
.p-story__history-1col {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .p-story__history-2col,
  .p-story__history-1col {
    margin-top: 100px;
  }
}

.p-story__history-1col {
  text-align: center;
}

.p-story__history-2col {
  --columns: 1fr;
  --aria: "text" "image";
  display: grid;
  gap: 60px;
  grid-template-columns: var(--columns);
  grid-template-areas: var(--aria);
}
@media screen and (min-width: 768px) {
  .p-story__history-2col {
    --columns: 1fr calc( 418 / 1100 * 100%);
    --aria: "text image";
  }
}

@media screen and (min-width: 768px) {
  .p-story__history-2col--reverse {
    --aria: "image text";
    --columns: calc( 418 / 1100 * 100%) 1fr;
  }
}

.p-story__history-text {
  grid-area: text;
  display: flex;
  flex-direction: column;
}

.p-story__history-year {
  font-size: 3.125rem;
  color: var(--color-green3);
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-story__history-year {
    font-size: 6.25rem;
  }
}

.p-story__history-title {
  font-size: var(--font-size-xxxl);
  font-weight: bold;
  line-height: 1.8;
}

.p-story__history-title--mt {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-story__history-title--mt {
    margin-top: 60px;
  }
}

.p-story__history-paragraph {
  margin-top: 30px;
}

.p-story__history-1col-paragraph {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-story__history-1col-paragraph {
    margin-top: 60px;
  }
}

.p-story__history-2col-figure {
  grid-area: image;
  aspect-ratio: 418/547;
  width: min(100%, 418px);
  margin-inline: auto;
}
.p-story__history-2col-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

.p-story__history-figure {
  margin-top: 70px;
  display: block;
  aspect-ratio: 600/345;
  margin-inline: auto;
  width: min(100%, 600px);
}
@media screen and (min-width: 768px) {
  .p-story__history-figure {
    margin-top: 100px;
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
}
.p-story__history-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

.p-story__history-1col-figure {
  margin-top: 30px;
  aspect-ratio: 600/345;
}
@media screen and (min-width: 768px) {
  .p-story__history-1col-figure {
    aspect-ratio: 1100/324;
  }
}
.p-story__history-1col-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

.p-esg__section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-esg__section {
    margin-top: 100px;
  }
}

.p-esg__header h2 {
  text-align: center;
}
.p-esg__header p {
  margin-top: 70px;
}

.p-esg__esg-top {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-esg__esg-top {
    margin-top: 100px;
    grid-template-columns: 1fr 38%;
    gap: 60px;
  }
}

.p-esg__esg-title {
  color: var(--color-green1);
  font-size: var(--font-size-xl);
  font-weight: 500;
  line-height: 1.8;
}

.p-esg__esg-list {
  margin-top: 8px;
}
.p-esg__esg-list li {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  text-transform: capitalize;
}
.p-esg__esg-list li strong {
  font-weight: 500;
}

.p-esg__esg-desc {
  margin-top: 20px;
}

.p-esg__esg-image img {
  margin-inline: auto;
  display: block;
  width: min(100%, 418px);
  height: auto;
}

/*
env
*/
.p-esg__env {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .p-esg__env {
    margin-top: 120px;
  }
}

.p-esg__env-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-esg__env-container {
    gap: 100px;
  }
}

.p-esg__env-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-esg__env-block {
    grid-template-columns: 1fr 38%;
    gap: 60px;
  }
}

.p-esg__env-text {
  max-width: 600px;
}

.p-esg__env-label {
  font-size: var(--font-size-sm);
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  line-height: 1;
}

.p-esg__env-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-esg__env-title {
    font-size: 2.25rem;
  }
}

.p-esg__env-lead {
  margin-top: 24px;
  font-size: var(--font-size-xl);
  font-weight: 500;
  line-height: 1.8;
}

.p-esg__env-desc {
  font-size: var(--font-size-md);
  margin-bottom: 18px;
  line-height: 2;
}

.p-esg__env-desc--mt15 {
  margin-top: 15px;
}

.p-esg__env-desc--mt24 {
  margin-top: 24px;
}

.p-esg__env-list {
  margin-top: 15px;
}
.p-esg__env-list li {
  font-size: var(--font-size-md);
  line-height: 1.8;
  font-weight: 700;
  padding-left: 1em;
  position: relative;
}
.p-esg__env-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9375rem;
  width: 4px;
  aspect-ratio: 1;
  display: block;
  background-color: var(--color-black);
  border-radius: 50%;
}

.p-esg__env-sdgs {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: min(100%, 430px);
}
.p-esg__env-sdgs img {
  display: block;
  width: 100%;
  height: auto;
}

.p-esg__env-image {
  position: relative;
}
.p-esg__env-image img {
  display: block;
  width: min(100%, 418px);
  height: auto;
  margin-inline: auto;
}

.p-service__section, .p-service__attemp {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-service__section, .p-service__attemp {
    margin-top: 100px;
  }
}

.p-service__header h2 {
  text-align: center;
}
.p-service__header p {
  margin-top: 50px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-service__header p {
    margin-top: 60px;
  }
}

.p-service__item {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-service__item {
    margin-top: 100px;
  }
}

.p-service__item-title {
  width: 100%;
  background-color: var(--color-green3);
  padding: 35px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
}
.p-service__item-title h3 {
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--color-green1);
}
@media screen and (min-width: 768px) {
  .p-service__item-title h3 {
    font-size: 1.75rem;
  }
}

.p-service__block {
  --column: 1fr;
  --area: "text" "image";
  margin-top: 60px;
  display: grid;
  grid-template-columns: var(--column);
  grid-template-areas: var(--area);
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-service__block {
    --column: 1fr calc(418 / 1100 * 100%);
    --area: "text image";
    gap: 60px;
  }
}

@media screen and (min-width: 768px) {
  .p-service__block--reverse {
    --area: "image text";
    --column: calc(418 / 1100 * 100%) 1fr;
  }
}

.p-service__block-text {
  display: flex;
  flex-direction: column;
  grid-area: text;
  gap: 32px;
}
.p-service__block-text h4 {
  font-size: var(--font-size-xxxl);
  font-weight: 700;
  line-height: 1.8;
}

.p-service__block-image {
  grid-area: image;
}
.p-service__block-image img {
  display: block;
  width: min(100%, 418px);
  height: auto;
  margin-inline: auto;
}

.p-service__attemp-title {
  text-align: center;
}

.p-service__attemp-figure {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-service__attemp-figure {
    margin-top: 70px;
  }
}
.p-service__attemp-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 600/262;
}
@media screen and (min-width: 768px) {
  .p-service__attemp-figure img {
    aspect-ratio: 1100/481;
  }
}

.p-service__attemp-para {
  margin-top: 60px;
}

.p-greeting__section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-greeting__section {
    margin-top: 100px;
  }
}

.p-greeting__figure {
  aspect-ratio: 600/345;
}
@media screen and (min-width: 768px) {
  .p-greeting__figure {
    aspect-ratio: 1100/400;
  }
}
.p-greeting__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  background-color: aliceblue;
}
@media screen and (min-width: 768px) {
  .p-greeting__figure img {
    border-radius: 50px;
  }
}

.p-greeting__title {
  margin-top: 60px;
}

.p-greeting__para {
  margin-top: 60px;
}

.p-greeting__name {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-greeting__name {
    margin-top: 80px;
  }
}
.p-greeting__name-position {
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: 1.8;
}
.p-greeting__name-main {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  line-height: 1.8;
}

.p-company__outline, .p-company__access, .p-company__group {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-company__outline, .p-company__access, .p-company__group {
    margin-top: 100px;
  }
}

.p-company__outline-lists {
  margin-top: 30px;
}

.p-company__outline-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 25px 0;
  border-top: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-company__outline-list {
    grid-template-columns: 130px 1fr;
    gap: 40px;
  }
}
.p-company__outline-list:last-child {
  border-bottom: 1px solid var(--color-gray);
}
.p-company__outline-list dt, .p-company__outline-list dd {
  line-height: 1.8;
}
.p-company__outline-list dt {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-company__outline-list dt {
    font-size: 1rem;
  }
}
.p-company__outline-list dd {
  --size: 0.875rem;
  font-size: var(--size);
}
@media screen and (min-width: 768px) {
  .p-company__outline-list dd {
    --size: 0.9375rem;
  }
}
.p-company__outline-list li {
  position: relative;
  padding-left: 1em;
}
.p-company__outline-list li::before {
  content: "";
  width: 3px;
  aspect-ratio: 1;
  background-color: var(--color-black);
  position: absolute;
  top: calc(var(--size) * 1.8 / 2);
  left: 0;
  translate: 0 -50%;
}

.p-company__gallarys {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-company__gallarys {
    margin-top: 80px;
  }
}

.p-company__gallary {
  margin-inline: auto;
  width: min(100%, 400px);
}
.p-company__gallary img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
}

.p-company__access-map {
  margin-top: 30px;
}
.p-company__access-map iframe {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
}
@media screen and (min-width: 768px) {
  .p-company__access-map iframe {
    aspect-ratio: 1100/570;
  }
}

.p-company__access-detail {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-company__access-detail {
    flex-direction: row;
    gap: 50px;
  }
}

.p-company__access-text {
  flex: 1;
}

.p-company__access-detail-name {
  color: var(--color-green1);
  font-size: var(--font-size-xl);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 24px;
}

.p-company__access-detail-list {
  display: grid;
  grid-template-columns: fit-content(100%) 1fr;
  gap: 5px;
}
.p-company__access-detail-list img {
  display: inline-block;
  width: 1.6em;
  aspect-ratio: 1;
  height: auto;
  vertical-align: middle;
}

.p-company__group-items {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
}
@media screen and (min-width: 768px) {
  .p-company__group-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-company__group-item {
  margin-inline: auto;
  width: min(100%, 400px);
  border: 1px solid var(--color-green1);
  aspect-ratio: 400/175;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-company__group-item {
    justify-content: flex-start;
    width: min(100%, 520px);
    aspect-ratio: 546/291;
    padding-top: min(4.5454545455vw, 70px);
  }
}
.p-company__group-item ul {
  margin-top: 24px;
}
.p-company__group-item h3 {
  font-size: var(--font-size-xl);
  color: var(--color-green1);
  font-weight: 500;
}
.p-company__group-item li {
  position: relative;
  padding-left: 1em;
}
.p-company__group-item li::before {
  content: "";
  width: 3px;
  aspect-ratio: 1;
  background-color: var(--color-black);
  border-radius: 50%;
  position: absolute;
  top: 0.9375rem;
  left: 0;
  translate: 0 -50%;
}

.p-network__section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-network__section {
    margin-top: 100px;
  }
}

.p-network__header h2 {
  text-align: center;
}
.p-network__header p {
  margin-top: 60px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-network__header p {
    text-align: center;
  }
}

.p-network__items {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-network__items {
    margin-top: 100px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-network__item {
  background-color: var(--color-green3);
  border-radius: 20px;
  padding: 20px;
  gap: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-network__item {
    padding: 40px;
  }
}
.p-network__item::after {
  content: "";
  width: 16.9811320755%;
  aspect-ratio: 110/50;
  display: block;
  background-color: var(--color-green3);
  position: absolute;
  left: 50%;
}
.p-network__item-figure {
  width: 100%;
  margin-bottom: 20px;
}
.p-network__item-figure img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.p-network__item-title {
  margin-bottom: 20px;
  text-align: center;
  font-size: var(--font-size-xl);
  font-weight: 500;
  line-height: 1.8;
}

.p-network__items--1 .p-network__item:nth-child(1)::after,
.p-network__items--1 .p-network__item:nth-child(2)::after {
  top: calc(100% - 1px);
  translate: -50% 0;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.p-network__items--2 .p-network__item:nth-child(1)::after,
.p-network__items--2 .p-network__item:nth-child(2)::after {
  top: 1px;
  translate: -50% -100%;
  -webkit-clip-path: polygon(50% 0%, 0 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0 100%, 100% 100%);
}

.p-network__flow {
  --gap: 23px;
  margin-top: 60px;
  display: flex;
  gap: var(--gap);
}
@media screen and (min-width: 768px) {
  .p-network__flow {
    --gap: 60px;
    margin-top: 100px;
    padding: 0 50px;
  }
}

.p-network__flow-item {
  width: calc(33.3333% - var(--gap) * 2 / 3);
  aspect-ratio: 1;
  border: 2px dashed var(--color-green1);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-network__flow-item {
    gap: 7px;
  }
}
.p-network__flow-item div {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-network__flow-item div {
    font-size: 1.5rem;
  }
}
.p-network__flow-item img {
  display: block;
  margin-inline: auto;
  width: auto;
  height: 24%;
}
.p-network__flow-item:not(:last-child) {
  position: relative;
}
.p-network__flow-item:not(:last-child)::after {
  content: "";
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  width: 5px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: calc(var(--gap) / 2 * -1 - 2px);
  background-color: var(--color-green1);
  translate: 50% -50%;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-network__flow-item:not(:last-child)::after {
    width: 12px;
    height: 20px;
  }
}

.p-article__section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-article__section {
    margin-top: 100px;
  }
}

.p-article__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-article__items {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 60px 30px;
  }
}

.p-article__item a {
  display: grid;
  grid-row: span 4;
  grid-template-rows: auto auto auto 1fr;
  row-gap: 20px;
  columns: 0px;
  max-width: 400px;
  margin-inline: auto;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1024px) {
  .p-article__item a:hover {
    opacity: 0.8;
  }
}

.p-article__item-figure img {
  display: block;
  width: 100%;
  object-fit: cover;
  background-color: aliceblue;
  border-radius: 20px;
}

.p-article__item-list {
  display: flex;
  gap: 25px;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

.p-article__item-category {
  color: var(--color-green1);
  font-weight: 700;
}

.p-article__item-title {
  font-size: var(--font-size-lg);
  font-weight: 500;
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-article__item-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.p-privacy__section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-privacy__section {
    margin-top: 100px;
  }
}

.p-privacy__section-block:not(:first-child) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-privacy__section-block:not(:first-child) {
    margin-top: 80px;
  }
}

.p-privacy__header h2 {
  text-align: center;
}
.p-privacy__header p {
  margin-top: 2em;
}

.p-privacy__items {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-privacy__items {
    margin-top: 60px;
  }
}

.p-privacy__item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-privacy__item:not(:first-child) {
    margin-top: 50px;
  }
}
.p-privacy__item-title {
  color: var(--color-green1);
  font-size: var(--font-size-xl);
  font-weight: 500;
  line-height: 1.8;
}
.p-privacy__item p {
  margin-top: 2em;
}
.p-privacy__item li {
  position: relative;
  padding-left: 1em;
}
.p-privacy__item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  font-size: 1em;
  translate: 0% -50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--color-black);
}
@media screen and (min-width: 768px) {
  .p-privacy__item li::before {
    top: 1em;
  }
}

.p-privacy__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-privacy__content {
    margin-top: 60px;
  }
}
.p-privacy__content-title {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  font-weight: 500;
}

.p-privacy__content-links {
  margin-top: 20px;
}
.p-privacy__content-links a {
  color: var(--color-green1);
  text-decoration: underline;
  word-break: break-all;
}
@media screen and (min-width: 1024px) {
  .p-privacy__content-links a:hover {
    opacity: 0.8;
  }
}

.p-contact__section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-contact__section {
    margin-top: 100px;
  }
}

.p-contact__content:not(:first-child) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-contact__content:not(:first-child) {
    margin-top: 100px;
  }
}

.p-contact__header h2 {
  text-align: center;
}
.p-contact__header p {
  margin-top: 30px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 600px) {
  .p-contact__header p {
    text-align: center;
  }
}

.p-contact__tel-info {
  position: relative;
  margin-top: 80px;
  background-color: var(--color-green3);
  padding: 35px 30px 35px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-contact__tel-info {
    margin-top: 120px;
    padding: 68px 50px 50px;
    border-radius: 20px;
  }
}

.p-contact__tel-info-icon {
  width: min(21.3333333333%, 80px);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-green3);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-contact__tel-info-icon {
    width: 12.7272727273%;
  }
}
.p-contact__tel-info-icon img {
  display: block;
  width: 28.5714285714%;
  height: auto;
}

.p-contact__tel-info-top {
  display: flex;
  align-items: center;
  gap: 5px;
}
.p-contact__tel-info-top a {
  display: block;
  color: var(--color-green1);
  font-family: var(--font-family-en);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.75rem;
  line-height: 1.4;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-contact__tel-info-top a {
    font-size: 3.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-contact__tel-info-top a:hover {
    opacity: 0.8;
  }
}
.p-contact__tel-info-top img {
  display: block;
  width: 20px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__tel-info-top img {
    width: 40px;
  }
}

.p-contact__forms {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-contact__forms {
    margin-top: 120px;
  }
}

.p-contact__form-lists-green {
  position: relative;
  width: 100%;
  border-radius: 10px;
  padding: 40px 15px 50px;
  background-color: var(--color-green3);
}
@media screen and (min-width: 768px) {
  .p-contact__form-lists-green {
    padding: 90px 35px 90px;
    border-radius: 20px;
  }
}

.p-contact__form-icon {
  width: min(21.3333333333%, 80px);
  aspect-ratio: 1;
  background-color: var(--color-green3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (min-width: 768px) {
  .p-contact__form-icon {
    width: 12.7272727273%;
  }
}
.p-contact__form-icon img {
  display: block;
  width: 37.8571428571%;
  height: auto;
}

.p-contact__form-lists-data {
  margin-inline: auto;
  width: min(100%, 840px);
}

/*
フォームはここから
*/
.p-contact__form-lists-data-item {
  --vertical: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-lists-data-item {
    flex-direction: row;
    align-items: var(--vertical);
    gap: 40px;
  }
}
.p-contact__form-lists-data-item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-lists-data-item:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__form-lists-data-item:last-child {
    --vertical: flex-start;
  }
}
.p-contact__form-lists-data-item dt {
  font-size: var(--font-size-md);
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__form-lists-data-item dt {
    width: 190px;
  }
}
.p-contact__form-lists-data-item dt.u-text-must::after {
  content: "（必須）";
  color: var(--color-red);
  font-size: 0.8125em;
  display: inline-block;
  margin-left: 7px;
}
.p-contact__form-lists-data-item dd {
  flex: 1;
}
.p-contact__form-lists-data-item input, .p-contact__form-lists-data-item textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid var(--color-gray);
  padding: 0.5em 0.8125em;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-contact__form-lists-data-item input, .p-contact__form-lists-data-item textarea {
    font-size: 0.9375rem;
  }
}
.p-contact__form-lists-data-item input:placeholder, .p-contact__form-lists-data-item textarea:placeholder {
  color: var(--color-gray);
}
.p-contact__form-lists-data-item textarea {
  min-height: 150px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-lists-data-item textarea {
    min-height: 200px;
  }
}

/*
プライバシー
*/
.p-contact__privacy {
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__privacy {
    margin-top: 100px;
  }
}
.p-contact__privacy input {
  width: 1.375em;
  aspect-ratio: 1;
  margin: 0 10px 0 0;
}
.p-contact__privacy a {
  text-decoration: underline;
  transition: color 0.3s ease-out;
}
@media screen and (min-width: 1024px) {
  .p-contact__privacy a:hover {
    color: var(--color-green1);
  }
}

/*
送信ボタン
*/
.p-contact__submit {
  margin-top: 40px;
  cursor: not-allowed;
}
.p-contact__submit:has(button.enabled) {
  cursor: pointer;
}
.p-contact__submit button {
  margin-inline: auto;
  opacity: 0.6;
  --width: 300px;
  --height: 60px;
  --bgcolor: var(--color-green1);
  --color: var(--color-white);
  width: min(100%, var(--width));
  height: var(--height);
  pointer-events: none;
  cursor: pointer;
  color: var(--color);
  background-color: var(--bgcolor);
  border: 1px solid var(--color-green1);
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-contact__submit button {
    --width: 416px;
    --height: 90px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-contact__submit button:hover {
    --bgcolor: var(--color-white);
    --color: var(--color-green1);
  }
}
.p-contact__submit button.enabled {
  pointer-events: auto;
  opacity: 1;
}

.wpcf7-not-valid-tip {
  margin-top: 4px;
}

.p-single__section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-single__section {
    margin-top: 100px;
  }
}

.p-single__header-title {
  font-size: var(--font-size-xxxl);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.p-single__header-list {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.p-single__header-list-date {
  font-size: var(--font-size-sm);
  font-family: var(--font-family-en);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-single__header-list-category {
  font-size: var(--font-size-sm);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-green1);
}

.p-single__figure {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-single__figure {
    margin-top: 80px;
  }
}
.p-single__figure img {
  display: block;
  width: min(100%, 600px);
  aspect-ratio: 600/450;
  object-fit: cover;
  height: auto;
  margin-inline: auto;
  border-radius: 10px;
  background-color: aliceblue;
}

.p-single__content {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-single__content {
    margin-top: 80px;
  }
}

.p-single__content h2, .p-single__content h3, .p-single__content h4 {
  margin-top: 1.5em;
  margin-bottom: 1.25em;
  line-height: 1.8;
  font-weight: 500;
}
.p-single__content p {
  margin-top: 1.25em;
  margin-bottom: 1.5em;
}
.p-single__content h2 {
  font-size: var(--font-size-xxl);
  color: var(--color-green1);
}
.p-single__content h3 {
  font-size: var(--font-size-lg);
}
.p-single__content h4 {
  font-family: var(--font-family-md);
}
.p-single__content a {
  text-decoration: underline;
  color: var(--color-green1);
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 1024px) {
  .p-single__content a:hover {
    opacity: 0.8;
  }
}

.wp-block-columns {
  margin-top: 30px;
  margin-bottom: 30px;
}

.p-single__page {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-single__page {
    margin-top: 80px;
    gap: 25px;
  }
}
.p-single__page-prev, .p-single__page-next {
  display: flex;
  align-items: center;
}

.p-single__page-button {
  width: min(100%, 200px);
  height: 70px;
  border-radius: 100px;
  background-color: var(--color-green1);
  color: var(--color-white);
  border: 1px solid var(--color-green1);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .p-single__page-button {
    width: min(100%, 340px);
    height: 90px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-single__page-button:hover {
    background-color: var(--color-white);
    color: var(--color-green1);
  }
}

.p-single__page-prev,
.p-single__page-next {
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-single__page-prev,
  .p-single__page-next {
    font-size: 1.125rem;
  }
}

.p-single__page-prev::before, .p-single__page-prev::after {
  --space: 20px;
  --width: 20px;
  display: block;
  height: 1.5px;
  background-color: var(--color-green1);
  position: absolute;
  top: 50%;
  transform-origin: left center;
}
@media screen and (min-width: 600px) {
  .p-single__page-prev::before, .p-single__page-prev::after {
    --width: 42px;
    content: "";
  }
}
.p-single__page-prev::before {
  width: var(--width);
  left: calc(var(--space) * -1);
  translate: -100% -50%;
}
.p-single__page-prev::after {
  rotate: -35deg;
  width: 8px;
  left: calc(-1 * var(--width) - var(--space));
  translate: 0% -50%;
}
@media screen and (min-width: 600px) {
  .p-single__page-prev::after {
    width: 13px;
  }
}

.p-single__page-next::before, .p-single__page-next::after {
  --space: 20px;
  --width: 20px;
  display: block;
  height: 1.5px;
  background-color: var(--color-green1);
  position: absolute;
  top: 50%;
  transform-origin: right center;
}
@media screen and (min-width: 600px) {
  .p-single__page-next::before, .p-single__page-next::after {
    --width: 42px;
    content: "";
  }
}
.p-single__page-next::before {
  width: var(--width);
  right: calc(var(--space) * -1);
  translate: 100% -50%;
}
.p-single__page-next::after {
  rotate: 35deg;
  width: 8px;
  right: calc(-1 * var(--width) - var(--space));
  translate: 0% -50%;
}
@media screen and (min-width: 600px) {
  .p-single__page-next::after {
    width: 13px;
  }
}

.p-default__section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-default__section {
    margin-top: 100px;
  }
}

.p-default__header h2 {
  text-align: center;
}
.p-default__header p {
  margin-top: 40px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-default__header p {
    margin-top: 60px;
    text-align: center;
  }
}

.p-default__button {
  display: block;
  margin-top: 40px;
  color: var(--color-green1);
  text-decoration: underline;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-default__button {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .p-default__button:hover {
    opacity: 0.8;
  }
}

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

.u-only-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */