@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --font-base: "Noto Sans JP", sans-serif;
  --font-biz: "BIZ UDPMincho", serif;
  --font-en: "Roboto", sans-serif;
  --font-lato: "Lato", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --base-font-size: 16px;
  --color-black:#000 ;
  --color-white:#FFF;
  --color-gray: #c8c8c8;
  --color-gray2: #787878;
  --color-gray3: #a0a0a0;
  --color-gray-light: #fafafa;
  --color-gray-light2: #f0f0f0;
  --color-green: #64be37;
  --color-yellow: #ffff50;
  --color-red: #d70000;
  --color-blue: #007FCD;
  --color-green-rgb: 100, 190, 55;
}

html {
  position: relative;
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw !important;
  }
}

body {
  font-feature-settings: "palt";
  font-family: var(--font-base);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-black);
  letter-spacing: 0.04em;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.is-menu-open {
  overflow: hidden;
}

* {
  min-inline-size: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  a:hover {
    opacity: 1;
  }
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

address {
  font-style: normal;
}

summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}

em {
  font-weight: 700;
  font-style: normal;
}

figure {
  margin: 0;
}

.js-animation {
  opacity: 0;
  transform: translateY(0.625rem);
}

.l-section {
  padding: 6rem 0;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 8rem 0;
  }
}
.l-section-small {
  padding: 4rem 0 6rem;
}
@media screen and (min-width: 768px) {
  .l-section-small {
    padding: 6rem 0 8rem;
  }
}
.l-section-inner {
  width: 100%;
  max-width: 61rem;
  padding-inline: 1.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-section-inner {
    max-width: 126rem;
    padding-inline: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .l-section-inner.small {
    max-width: 85.4rem;
  }
}

.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31.2rem;
  height: 4.8rem;
  color: #FFF;
  background-color: var(--color-green);
  border: 1px solid var(--color-green);
  border-radius: 0.4rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn {
    width: 100%;
    max-width: 31.2rem;
  }
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8rem;
  display: inline-block;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 1rem;
  margin-left: 1rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%23fff;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
  transition: background 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn:hover {
    background-color: #FFF;
    color: var(--color-green);
  }
  .c-btn:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
  }
}
.c-btn.-download {
  background-color: #FFF;
  color: var(--color-green);
  transition: opacity 0.3s ease;
}
.c-btn.-download::after {
  width: 1.8rem;
  height: 1.7rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='_レイヤー_2' data-name='レイヤー 2' viewBox='0 0 20 18.69'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%2364be37;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px%7D%3C/style%3E%3C/defs%3E%3Cg id='_レイヤー_1-2' data-name='レイヤー 1'%3E%3Cpath d='M6.26 9.79 10 13.52l3.74-3.73M10 1v12.12M19 13.89v3.8H1v-3.8' class='cls-1'/%3E%3C/g%3E%3C/svg%3E");
}
@media (any-hover: hover) {
  .c-btn.-download:hover {
    opacity: 0.7;
  }
}

.c-header {
  padding: 6rem 0 0;
}
.c-header .l-section-inner {
  display: grid;
  gap: 2rem 5rem;
}
@media screen and (min-width: 768px) {
  .c-header .l-section-inner {
    display: flex;
    justify-content: space-between;
  }
}
.c-header hgroup {
  flex-shrink: 0;
}
.c-header hgroup .c-title-en {
  text-transform: capitalize;
}
.c-header figure {
  width: 100%;
  max-width: 79.4rem;
  aspect-ratio: 794/300;
  border-radius: 1.2rem;
  overflow: hidden;
}
.c-header figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.2rem;
}

.c-hero {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-hero {
    padding-bottom: 0;
  }
}
.c-hero-inner {
  display: grid;
  gap: 4rem 0;
}
@media screen and (min-width: 768px) {
  .c-hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 0 10rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
  }
}
.c-hero-contents {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .c-hero-contents.en {
    max-width: 29.6rem;
  }
}
@media screen and (min-width: 1601px) {
  .c-hero-contents.en {
    max-width: 45rem;
  }
}
.c-hero-sub {
  display: block;
  color: var(--color-green);
  font-size: 1.6rem;
}
.c-hero-title {
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.375;
}
@media screen and (min-width: 768px) {
  .c-hero-title {
    font-size: 5.6rem;
  }
}
.c-hero-text {
  margin: 4rem 0 0;
  font-family: var(--font-biz);
  font-size: 1.6rem;
  line-height: 2.3333333333;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-hero-text {
    margin: 5rem 0 0;
    font-size: 1.8rem;
  }
}
.c-hero-text.en {
  font-family: var(--font-base);
  font-size: 1.6rem;
  line-height: 1.7;
}
.c-hero figure {
  width: calc(100% + 1.5rem);
  aspect-ratio: 994/600;
  border-radius: 1.2rem 0 0 1.2rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-hero figure {
    width: 99.4rem;
    border-radius: 2.4rem 0 0 2.4rem;
  }
}
.c-hero figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.2rem 0 0 1.2rem;
}
@media screen and (min-width: 768px) {
  .c-hero figure img {
    border-radius: 2.4rem 0 0 2.4rem;
  }
}

.c-icon {
  display: inline-block;
  transition: background 0.3s ease;
}
.c-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%/contain;
  transition: background 0.3s ease;
}
.c-icon.arrow-right {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-icon.arrow-right {
    width: 2rem;
    height: 2rem;
  }
}
.c-icon.arrow-right::before {
  background-color: var(--color-green);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.c-icon.arrow-right::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 0.8rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%23fff;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, -50%);
  transition: none;
}
@media screen and (min-width: 768px) {
  .c-icon.arrow-right::after {
    width: 0.5rem;
    height: 0.9rem;
  }
}
.c-icon.arrow-right.cl-green::before {
  background-color: #FFF;
}
.c-icon.arrow-right.cl-green::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
}
.c-icon.arrow-left {
  width: 1rem;
  height: 1rem;
}
.c-icon.arrow-left::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m5.07.71-3.66 3.66 3.66 3.65' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
}
.c-icon.arrow-down {
  width: 0.8rem;
  height: 0.8rem;
}
.c-icon.arrow-down::before {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 8.02 4.51'%3E%3Cpath d='M7.67.35 4.01 4.01.35.35' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-linejoin:round'/%3E%3C/svg%3E");
}
.c-icon.arrow-down.cl-green::before {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 8.02 4.51'%3E%3Cpath d='M7.67.35 4.01 4.01.35.35' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-linejoin:round'/%3E%3C/svg%3E");
}
.c-icon.search {
  width: 1.7rem;
  height: 1.7rem;
}
.c-icon.search::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 18.21 18.21'%3E%3Cg data-name='レイヤー 1'%3E%3Cpath d='M7 2c1.34 0 2.59.52 3.54 1.46C11.48 4.4 12 5.66 12 7s-.52 2.59-1.46 3.54C9.6 11.48 8.34 12 7 12s-2.59-.52-3.54-1.46C2.52 9.6 2 8.34 2 7s.52-2.59 1.46-3.54C4.4 2.52 5.66 2 7 2m0-2C5.21 0 3.42.68 2.05 2.05a7.007 7.007 0 0 0 0 9.9C3.42 13.32 5.21 14 7 14s3.58-.68 4.95-2.05a7.007 7.007 0 0 0 0-9.9A6.973 6.973 0 0 0 7 0Z' style='fill:%23fff'/%3E%3Cpath d='m12 12 5.5 5.5' style='fill:none;stroke:%23fff;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/g%3E%3C/svg%3E");
}

.c-link-back-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
  text-transform: capitalize;
}
@media (any-hover: hover) {
  .c-link-back-btn:hover {
    color: var(--color-green);
  }
}

.c-link-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-link-btn {
    font-size: 1.1rem;
  }
}
@media (any-hover: hover) {
  .c-link-btn:hover {
    color: var(--color-green);
  }
}

.c-scroll-down {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 6rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .c-scroll-down {
    gap: 1.5rem;
    margin: 8rem auto 0;
  }
}
.c-scroll-down-line {
  position: relative;
  width: 1px;
  height: 4rem;
  background-color: var(--color-gray2);
}
@media screen and (min-width: 768px) {
  .c-scroll-down-line {
    height: 6rem;
  }
}
.c-scroll-down-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  background-color: var(--color-green);
  animation: scrollLineMove 2s ease-in-out infinite;
}
@media screen and (min-width: 768px) {
  .c-scroll-down-line::before {
    height: 3rem;
  }
}
.c-scroll-down-text {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-gray2);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-scroll-down-text {
    font-size: 1.4rem;
  }
}

@keyframes scrollLineMove {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(2rem);
    opacity: 0;
    @media screen and (min-width: 768px) {
      transform: translateY(3rem);
    }
  }
}
@media screen and (max-width: 767px) {
  @keyframes scrollLineMove {
    0% {
      transform: translateY(0);
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      transform: translateY(2rem);
      opacity: 0;
    }
  }
}
@media screen and (min-width: 768px) {
  @keyframes scrollLineMove {
    0% {
      transform: translateY(0);
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      transform: translateY(3rem);
      opacity: 0;
    }
  }
}
.c-section-row + .c-section-row {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .c-section-row + .c-section-row {
    margin-top: 10rem;
  }
}
.c-section-row p {
  font-weight: 400;
}
.c-section-row > * + * {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .c-section-row > * + * {
    margin-top: 4rem;
  }
}
.c-section-row-title {
  padding: 0 0 1rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .c-section-row-title {
    font-size: 3.6rem;
  }
}
.c-section-row-title span {
  font-size: 1.4rem;
  padding-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-section-row-title span {
    font-size: 2.4rem;
  }
}
.c-section-row-title.en {
  text-transform: capitalize;
}
.c-section-row-text > * + * {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .c-section-row-text > * + * {
    margin-top: 3rem;
  }
}
.c-section-row-text h3 {
  padding-left: 0.8rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-green);
  border-left: 0.8rem solid var(--color-green);
}
@media screen and (min-width: 768px) {
  .c-section-row-text h3 {
    padding-left: 1.6rem;
    font-size: 2.8rem;
  }
}
.c-section-row-text h3 + p {
  margin-top: 2rem;
}
.c-section-row-president {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
@media screen and (min-width: 768px) {
  .c-section-row-president {
    align-items: flex-end;
    gap: 3rem;
  }
}
.c-section-row-president img {
  width: 20.7rem;
}
.c-section-row-president .role {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-section-row-president .role {
    font-size: 1.4rem;
  }
}
.c-section-row-president .name {
  display: block;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .c-section-row-president .name {
    font-size: 2.4rem;
  }
}
.c-section-row-president .en {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0 0;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .c-section-row-president .en {
    align-items: center;
    flex-direction: row;
  }
}
.c-section-row-president .en span {
  display: block;
  line-height: 1;
}
.c-section-row-president .en span:nth-child(1) {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-section-row-president .en span:nth-child(1) {
    font-size: 1.1rem;
  }
}
.c-section-row-president .en span:nth-child(2) {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .c-section-row-president .en span:nth-child(2) {
    font-size: 1.4rem;
  }
}
.c-section-row-glbox {
  padding: 2rem;
  font-size: 1.4rem;
  background-color: var(--color-gray-light);
}
@media screen and (min-width: 768px) {
  .c-section-row-glbox {
    padding: 3rem;
  }
}
.c-section-row-glbox > * + * {
  margin-top: 2rem;
}
.c-section-row-glbox-title {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.c-section-row-glbox .pl {
  padding-left: 2rem;
}
.c-section-row ol {
  list-style: decimal;
  margin: 2rem 0 0;
  padding-left: 2rem;
}
.c-section-row ol li {
  padding-left: 1rem;
  font-weight: 400;
}
.c-section-row .c-table {
  margin-top: 2rem;
}
.c-section-row .u-note {
  margin-top: 2rem;
}

.c-sticky .l-section-inner {
  display: grid;
  gap: 4rem 6rem;
}
@media screen and (min-width: 768px) {
  .c-sticky .l-section-inner {
    display: flex;
    gap: 0 6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sticky-link {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .c-sticky-link {
    flex-shrink: 0;
  }
}
.c-sticky-link-en {
  min-width: 34.8rem;
}
.c-sticky-link.en a {
  text-transform: capitalize;
}
.c-sticky-link ul {
  display: grid;
  gap: 2rem;
  min-width: 34.8rem;
  max-width: 34.8rem;
  padding: 4rem 3rem;
  background-color: #FFF;
  border-radius: 2.4rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1000px) {
  .c-sticky-link ul {
    min-width: 27rem;
    max-width: 27rem;
  }
}
@media screen and (min-width: 768px) {
  .c-sticky-link ul {
    position: sticky;
    top: 12rem;
  }
}
.c-sticky-link ul a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: color 0.3s ease;
}
.c-sticky-link ul a::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 1rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 4.51 8.02'%3E%3Cpath d='m.35.35 3.66 3.66L.35 7.67' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-linejoin:round'/%3E%3C/svg%3E");
  transition: background 0.3s ease;
}
.c-sticky-link ul a.is-active {
  color: var(--color-green);
}
.c-sticky-link ul a.is-active::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 4.51 8.02'%3E%3Cpath d='m.35.35 3.66 3.66L.35 7.67' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-linejoin:round'/%3E%3C/svg%3E");
}
@media (any-hover: hover) {
  .c-sticky-link ul a:hover {
    color: var(--color-green);
  }
  .c-sticky-link ul a:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 4.51 8.02'%3E%3Cpath d='m.35.35 3.66 3.66L.35 7.67' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-linejoin:round'/%3E%3C/svg%3E");
  }
}

.c-tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.c-tab .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.5rem;
  height: 4.8rem;
  padding: 1rem;
  border: 1px solid var(--color-gray);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-tab .tab {
    width: 24.8rem;
  }
}
.c-tab .tab.is-active {
  background-color: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}
@media (any-hover: hover) {
  .c-tab .tab:hover {
    background-color: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
  }
}
.c-tab.en .tab {
  text-transform: capitalize;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th, .c-table td {
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  border: 1px solid var(--color-gray);
}
.c-table th {
  text-align: left;
  background-color: var(--color-gray-light);
}
@media screen and (min-width: 768px) {
  .c-table th {
    width: 19.5rem;
  }
}
.c-table td ul li {
  margin-left: 1em;
  text-indent: -1em;
}
.c-table td ul li::before {
  content: "●";
}
.c-table td a {
  padding-left: 0.5rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .c-table td a:hover {
    text-decoration: none;
    color: var(--color-green);
  }
}
.c-table-scroll {
  padding-bottom: 0.5rem;
  overflow-x: auto;
}
.c-table-scroll .c-table {
  width: 79.4rem;
}
.c-table-scroll .c-table th, .c-table-scroll .c-table td {
  padding: 0.5rem 1rem;
}
.c-table-scroll .c-table th {
  color: #FFF;
  background-color: var(--color-green);
  text-align: center;
}
.c-table-scroll .c-table.small {
  width: auto;
}
@media screen and (max-width: 767px) {
  .c-table.sp-block tr:not(:first-child) th {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .c-table.sp-block th, .c-table.sp-block td {
    padding: 0.5rem 1.5rem;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-table.sp-block th {
    border-bottom: none;
  }
}
.c-table .map {
  margin: 2rem 0 0;
  aspect-ratio: 560/200;
}
.c-table .map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-title-ja {
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-title-ja {
    font-size: 3.6rem;
  }
}
.c-title-ja.en {
  text-transform: capitalize;
}
.c-title-en {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-green);
}
@media screen and (min-width: 768px) {
  .c-title-en {
    font-size: 1.5rem;
  }
}

.js-tab-panel .tab {
  cursor: pointer;
}
.js-tab-panel .panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.js-tab-panel .panel.is-show {
  display: block;
  opacity: 1;
}

.u-color-white {
  color: var(--color-white);
}

.u-color-black {
  color: var(--color-black);
}

.u-color-gray {
  color: var(--color-gray);
}

.u-color-red {
  color: var(--color-red);
}

.u-color-blue {
  color: var(--color-blue);
}

.u-color-green {
  color: var(--color-green);
}

.u-color-yellow {
  color: var(--color-yellow);
}

.u-color-orange {
  color: var(--color-orange);
}

.u-color-purple {
  color: var(--color-purple);
}

.u-color-pink {
  color: var(--color-pink);
}

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

@media screen and (max-width: 767px) {
  .u-hide-sp {
    display: none !important;
  }
}

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

@media screen and (max-width: 767px) {
  .u-show-sp {
    display: block !important;
  }
}

.u-show-br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-show-br-sp {
    display: inline-block !important;
  }
}

.u-show-br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-show-br-pc {
    display: inline-block !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pt0 {
    padding-top: 0 !important;
  }
}

/* font-family
---------------------------------------- */
/* text-align
---------------------------------------- */
.u-al-left {
  text-align: left !important;
}
.u-al-left.sp-center {
  text-align: center !important;
}
@media screen and (min-width: 768px) {
  .u-al-left.sp-center {
    text-align: left !important;
  }
}

.u-al-center {
  text-align: center !important;
}
.u-al-center.sp-left {
  text-align: left !important;
}
@media screen and (min-width: 768px) {
  .u-al-center.sp-left {
    text-align: center !important;
  }
}

.u-al-right {
  text-align: right !important;
}
.u-al-right.sp-left {
  text-align: left !important;
}
@media screen and (min-width: 768px) {
  .u-al-right.sp-left {
    text-align: right !important;
  }
}

/* letter spacing
---------------------------------------- */
@media screen and (max-width: 767px) {
  .u-ls-narrow-sp {
    letter-spacing: -0.05em;
  }
}

/* writing-mode
---------------------------------------- */
.u-wm-rl {
  writing-mode: vertical-rl !important;
}

/* font-weight
---------------------------------------- */
.u-fw-regular {
  font-weight: 400 !important;
}

.u-fw-medium {
  font-weight: 500 !important;
}

.u-fw-semib {
  font-weight: 600 !important;
}

.u-fw-bold {
  font-weight: 700 !important;
}

/* text margin
---------------------------------------- */
.u-no-margin {
  margin: 0;
}

.u-link {
  text-decoration: underline;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .u-link:hover {
    color: var(--color-green);
    text-decoration: none;
  }
}

.u-note {
  font-size: 1.4rem;
  color: var(--color-gray2);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--color-white);
}
.l-header-inner {
  max-width: 120rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin-inline: auto;
  padding: 2.5rem 3rem 2.5rem 1.5rem;
}
@media (min-width: 1181px) {
  .l-header-inner {
    padding: 2.5rem 1rem 2.5rem 1.8rem;
  }
}
.l-header-logo {
  width: 23.6rem;
}
@media (min-width: 1181px) {
  .l-header-logo {
    width: 33.6rem;
  }
}
.l-header-logo a {
  display: block;
  line-height: 1;
}
.l-header-logo img {
  width: 100%;
}
.l-header-nav {
  display: flex;
  margin-left: auto;
}
@media (max-width: 1180px) {
  .l-header-nav {
    display: none;
  }
}
.l-header-nav-btn {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
  position: relative;
}
@media (min-width: 1181px) {
  .l-header-nav-btn {
    display: none;
  }
}
.l-header-nav-btn span {
  display: block;
  width: 1.4rem;
  height: 0.2rem;
  background-color: var(--color-black);
  transition: all 0.3s ease;
  transform-origin: center;
}
.l-header-nav-btn span:not(:last-child) {
  margin-bottom: 0.4rem;
}
.l-header-nav-btn span:nth-child(2) {
  margin-left: auto;
}
.l-header-nav-btn.is-active span:first-child {
  transform: translateY(0.3rem) rotate(45deg);
}
.l-header-nav-btn.is-active span:nth-child(2) {
  transform: translateY(-0.3rem) rotate(-45deg);
  margin-left: 0;
}
.l-header-nav-list {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.l-header-nav-item {
  position: relative;
}
.l-header-nav-item > *:not(ul)::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 1rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 8.02 4.51'%3E%3Cpath d='M7.67.35 4.01 4.01.35.35' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-linejoin:round'/%3E%3C/svg%3E");
  transform: translateY(-0.2rem);
  transition: background 0.3s ease;
}
.l-header-nav-item a {
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .l-header-nav-item a:hover {
    color: var(--color-green);
  }
  .l-header-nav-item a:hover::after {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 8.02 4.51'%3E%3Cpath d='M7.67.35 4.01 4.01.35.35' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-linejoin:round'/%3E%3C/svg%3E");
  }
}
.l-header-nav-sub-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 18rem;
  width: -moz-max-content;
  width: max-content;
  max-width: 35rem;
  background-color: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 0.4rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  margin-top: 0.5rem;
}
@media (max-width: 1180px) {
  .l-header-nav-sub-list {
    display: none;
  }
}
.l-header-nav-item:nth-last-child(-n+2) .l-header-nav-sub-list {
  left: auto;
  right: 0;
}
.l-header-nav-sub-list li {
  list-style: none;
}
.l-header-nav-sub-list li a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  color: var(--color-black);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  white-space: nowrap;
}
.l-header-nav-sub-list li a:first-child {
  border-top-left-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
}
.l-header-nav-sub-list li a:last-child {
  border-bottom: none;
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
@media (any-hover: hover) {
  .l-header-nav-sub-list li a:hover {
    background-color: #f8f9fa;
    color: var(--color-green);
  }
}
.l-header-nav-sub-list li a:focus {
  outline: 2px solid var(--color-green);
  outline-offset: -2px;
  background-color: #f8f9fa;
}
.l-header-nav-sub-list li a::after {
  display: none;
}
.l-header-nav-sub-list li a span {
  font-size: 1.2rem;
}
.l-header-nav-sub-list.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-header-nav-btns {
  display: flex;
  gap: 0.8rem;
  margin-left: 4.4rem;
}
@media (max-width: 1180px) {
  .l-header-nav-contact {
    margin-inline: auto;
  }
}
@media (min-width: 1181px) {
  .l-header-nav-contact {
    width: 15.2rem;
  }
}
@media (min-width: 1181px) {
  .l-header-nav-contact::after {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }
}
.l-header-nav-select {
  min-width: 6.5rem;
  height: 4.8rem;
  text-align: center;
  border: 1px solid var(--color-gray);
  border-radius: 0.4rem;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 2.4rem 0 1rem;
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 8.02 4.51'%3E%3Cpath d='M7.67.35 4.01 4.01.35.35' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-linejoin:round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 0.8rem;
  font-size: inherit;
  line-height: 1;
  color: var(--color-black);
}
.l-header-nav-select::-webkit-appearance {
  -webkit-appearance: none;
}
.l-header-nav-select:focus {
  outline: 2px solid var(--color-green);
  outline-offset: -2px;
}
.l-header-nav-select option {
  color: var(--color-black);
  background-color: var(--color-white);
}
.l-header-nav-hamburger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0 1.5rem 4.5rem;
  background-color: #FFF;
  overflow-y: auto;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 1181px) {
  .l-header-nav-hamburger {
    display: none;
  }
}
.l-header-nav-hamburger.is-active {
  opacity: 1;
  visibility: visible;
}
.l-header-nav-hamburger-select {
  text-align: right;
}
.l-header-nav-hamburger-item:not(:last-child) {
  margin-bottom: 5rem;
}
.l-header-nav-hamburger-item > span {
  display: block;
  font-size: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-gray);
}
.l-header-nav-hamburger-item > span:not(.no-arrow) {
  position: relative;
}
.l-header-nav-hamburger-item > span:not(.no-arrow)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 1rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 4.51 8.02'%3E%3Cpath d='m.35.35 3.66 3.66L.35 7.67' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-linejoin:round'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
}
.l-header-nav-hamburger-item ul {
  margin-top: 2.5rem;
}
.l-header-nav-hamburger-item ul li {
  margin-bottom: 1rem;
}
.l-header-nav-hamburger-item ul li a {
  position: relative;
  display: block;
  font-size: 1.6rem;
}
.l-header-nav-hamburger-item ul li a::before {
  content: "・";
  margin-right: 0.8rem;
}
.l-header-nav-hamburger-item ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.5rem;
  height: 0.9rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
  transition: none;
}
.l-header-nav-hamburger-item ul li a span {
  font-size: 1.2rem;
  opacity: 0.7;
}
.l-header-nav-hamburger-item.is-open > a.no-arrow::after {
  transform: translateY(-50%) rotate(180deg);
}
.l-header-nav-hamburger-bottom {
  margin: 4rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.l-header-nav-hamburger-bottom a {
  font-size: 1.3rem;
}
.l-header-nav-hamburger-contact {
  margin: 4rem 0 0;
}

/* 採用ページ用 */
.l-header.recruit {
  background-color: var(--color-green);
}
.l-header.recruit .l-header-logo {
  width: 13rem;
}
@media screen and (min-width: 768px) {
  .l-header.recruit .l-header-logo {
    width: 18.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header.recruit .l-header-logo a {
    position: relative;
  }
  .l-header.recruit .l-header-logo a::after {
    content: "RECRUIT";
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translate(100%, -50%);
    font-size: 1.2rem;
    font-weight: 500;
    color: #FFF;
  }
}
@media (max-width: 1180px) {
  .l-header.recruit .l-header-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 4.8rem;
    height: 4.8rem;
    background-color: #FFF;
    border-radius: 0.4rem;
  }
  .l-header.recruit .l-header-nav-btn span:nth-child(2) {
    margin-left: 0;
  }
}
.l-header.recruit .l-header-nav-hamburger {
  padding: 4.5rem 1.5rem;
  background-color: var(--color-green);
  color: #FFF;
}
.l-header.recruit .l-header-nav-hamburger-item > span {
  border-color: #FFF;
}
.l-header.recruit .l-header-nav-hamburger-item ul li a::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%23FFF;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
}
.l-header.recruit .l-header-nav-item > *:not(ul)::after {
  display: none;
}
.l-header.recruit .l-header-nav-item a {
  color: var(--color-white);
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header.recruit .l-header-nav-item a:hover {
    color: var(--color-white);
    opacity: 0.8;
  }
}
.l-header.recruit .l-header-nav-item a[target=_blank] {
  position: relative;
  padding-right: 1.8rem;
}
@media screen and (min-width: 768px) {
  .l-header.recruit .l-header-nav-item a[target=_blank] {
    font-size: 1.3rem;
  }
}
.l-header.recruit .l-header-nav-item a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  transform: translateY(-50%);
  width: 0.9rem;
  height: 0.9rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='_レイヤー_2' data-name='レイヤー 2' viewBox='0 0 12 12'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23FFF;stroke-linejoin:round%7D%3C/style%3E%3C/defs%3E%3Cg id='_レイヤー_1-2' data-name='レイヤー 1'%3E%3Cpath d='M6.33.5h5.17v5.17M9.5 7.5v4h-9v-9h4M11.5.5l-7 7' class='cls-1'/%3E%3C/g%3E%3C/svg%3E");
  transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-header.recruit .l-header-nav-item a[target=_blank]::after {
    width: 1.1rem;
    height: 1.1rem;
  }
}
.l-header.recruit .l-header-nav-recruit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 3rem;
}
.l-header.recruit .recruit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 18.2rem;
  height: 4.8rem;
  border-radius: 0.4rem;
  background-color: var(--color-yellow);
  color: var(--color-black);
  transition: filter 0.3s ease, background-color 0.3s ease;
}
.l-header.recruit .recruit-btn::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.8rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 4.51 8.02'%3E%3Cpath d='m.35.35 3.66 3.66L.35 7.67' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-linejoin:round'/%3E%3C/svg%3E");
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-header.recruit .recruit-btn::after {
    width: 0.6rem;
    height: 1rem;
  }
}
@media (any-hover: hover) {
  .l-header.recruit .recruit-btn:hover {
    filter: brightness(0.85);
    background-color: var(--color-green);
  }
}
.l-header.recruit .l-header-nav-hamburger-contact {
  display: grid;
  gap: 2rem;
}
.l-header.recruit .l-header-nav-hamburger-contact .recruit-btn {
  width: 100%;
  height: 5.6rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-header.recruit .l-header-nav-hamburger-contact .recruit-btn {
    max-width: 30rem;
  }
}

.l-header.en .l-header-nav-item {
  text-transform: capitalize;
}
.l-header.en .l-header-nav-item > *:not(ul)::after {
  display: none;
}
.l-header.en .l-header-nav-hamburger-item {
  text-transform: capitalize;
}

.p-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: var(--color-gray2);
}
.p-breadcrumb-list li:not(:first-child)::before {
  content: "／";
  margin-right: 0.2rem;
}
@media (any-hover: hover) {
  .p-breadcrumb-list a:hover {
    text-decoration: underline;
  }
}
.p-breadcrumb.en {
  text-transform: capitalize;
}

.p-catalog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.7rem;
  margin: 3rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-catalog-list {
    gap: 1.9rem;
    margin: 6rem 0 0;
  }
}
.p-catalog-list-row {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-catalog-list-row {
    margin-top: 6rem;
  }
}
.p-catalog-list-title {
  padding-bottom: 1rem;
  max-width: 120rem;
  margin-inline: auto;
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-catalog-list-title {
    font-size: 3.6rem;
  }
}
.p-catalog-list li {
  width: 16.4rem;
  min-height: 22.1rem;
  padding: 1.4rem;
  border-radius: 1.2rem;
  border: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-catalog-list li {
    width: 25.2rem;
    min-height: 34.1rem;
    padding: 2rem;
  }
}
.p-catalog-list li figure {
  width: 6.4rem;
  aspect-ratio: 99/140;
  margin-inline: auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-catalog-list li figure {
    width: 9.9rem;
  }
}
.p-catalog-list li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-catalog-list li h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-catalog-list li h3 {
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
  }
}
.p-catalog-list li p {
  font-size: 1rem;
  color: var(--color-gray2);
}
@media screen and (min-width: 768px) {
  .p-catalog-list li p {
    font-size: 1.4rem;
  }
}
.p-catalog-list li a {
  width: 100%;
  margin: 1rem 0 auto;
}
@media screen and (max-width: 767px) {
  .p-catalog-list li a {
    height: 3.1rem;
    font-size: 1rem;
  }
  .p-catalog-list li a::after {
    right: 1rem;
    width: 0.5rem;
    height: 0.9rem;
  }
}

.p-catalog .l-section-inner {
  max-width: 139.6rem;
}
@media screen and (max-width: 767px) {
  .p-catalog-tab .tab {
    width: 10.8rem;
  }
}

.p-company-link {
  display: grid;
  gap: 2rem 4rem;
}
@media screen and (min-width: 768px) {
  .p-company-link {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-company-link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7rem;
  padding: 3rem 3rem 3rem 7rem;
  background-color: var(--color-gray-light);
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 1.2rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-company-link a {
    height: 16.7rem;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1000px) {
  .p-company-link a {
    padding: 2rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company-link a {
    padding: 2rem 1.5rem;
  }
  .p-company-link a .c-icon.arrow-right {
    width: 2rem;
    height: 2rem;
  }
  .p-company-link a .c-icon.arrow-right::after {
    width: 0.5rem;
    height: 0.9rem;
  }
}
@media (any-hover: hover) {
  .p-company-link a:hover {
    border-color: var(--color-green);
  }
}

.p-company-tab {
  justify-content: flex-start;
}
.p-company-tab .tab {
  line-height: 1.3;
  width: 10.8rem;
}
@media screen and (min-width: 768px) {
  .p-company-tab .tab {
    width: 12.3rem;
  }
}
.p-company-tab .tab:nth-child(4), .p-company-tab .tab:nth-child(5) {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-company-tab .tab:nth-child(4), .p-company-tab .tab:nth-child(5) {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-company-tab.en .tab {
    width: 14rem;
  }
}

.p-contact {
  max-width: 79.4rem;
  margin: 2rem auto 0;
}
.p-contact-row + .p-contact-row {
  margin: 2rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-contact-row + .p-contact-row {
    margin: 4rem 0 0;
  }
}
.p-contact-row > * + * {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact-row.col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.p-contact-row.col > * + * {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-contact-row.col > * + * {
    margin-top: 0;
  }
}
.p-contact-row.col > div > * + * {
  margin-top: 1rem;
}
.p-contact-row.col p:last-child {
  display: none;
  margin-top: 0;
}
.p-contact-title {
  margin: 0 0 2rem;
  font-size: 2.4rem;
  font-weight: 500;
}
.p-contact .required,
.p-contact .any {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFF;
  border-radius: 0.4rem;
  margin-right: 1rem;
}
.p-contact .required {
  background-color: var(--color-red);
}
.p-contact .any {
  background-color: var(--color-gray);
}
.p-contact .radio-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: var(--color-gray-light);
}
@media screen and (min-width: 768px) {
  .p-contact .radio-list {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 3rem;
  }
}
.p-contact .radio-list label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.p-contact .checkbox-list {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background-color: var(--color-gray-light);
}
@media screen and (min-width: 768px) {
  .p-contact .checkbox-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem;
  }
}
.p-contact .checkbox-list label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.p-contact input[type=text],
.p-contact input[type=number],
.p-contact input[type=email],
.p-contact textarea,
.p-contact select {
  width: 100%;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--color-gray);
  border-radius: 0.4rem;
}
@media screen and (min-width: 768px) {
  .p-contact input[type=text],
  .p-contact input[type=number],
  .p-contact input[type=email],
  .p-contact textarea,
  .p-contact select {
    padding: 1rem 2rem;
  }
}
.p-contact input[type=radio] {
  position: relative;
  width: 2rem;
  height: 2rem;
  margin: 0;
  background-color: #FFF;
  border: 2px solid var(--color-gray);
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.p-contact input[type=radio]:checked {
  border-color: var(--color-green);
}
.p-contact input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-green);
}
.p-contact input[type=checkbox] {
  position: relative;
  width: 2rem;
  height: 2rem;
  margin: 0;
  background-color: #FFF;
  border: 2px solid var(--color-gray);
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.p-contact input[type=checkbox]:checked {
  border-color: var(--color-green);
}
.p-contact input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  width: 1rem;
  height: 0.7rem;
  border: solid var(--color-green);
  border-width: 0 0 0.2rem 0.2rem;
  transform: rotate(-45deg);
}
.p-contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 8.02 4.72'%3E%3Cpath d='M7.67.35 4.01 4.01.35.35' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-miterlimit:10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1rem auto;
  background-position: right 1.5rem center;
  cursor: pointer;
}
.p-contact .post-code {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.p-contact .post-code input {
  max-width: 18.5rem;
}

.p-contact-btn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.p-contact-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8rem;
  display: inline-block;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%23fff;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
.p-contact-btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34.5rem;
  height: 4.8rem;
  padding: 0;
  color: #FFF;
  background-color: var(--color-green);
  border: 1px solid var(--color-green);
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact-btn button {
    width: 31.2rem;
  }
}
@media (any-hover: hover) {
  .p-contact-btn:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
  }
  .p-contact-btn:hover button {
    color: var(--color-green);
    background-color: #FFF;
  }
}
.p-contact-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 6rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-contact-btn-wrap {
    margin: 8rem 0 0;
  }
}
.p-contact-btn.back-btn::after {
  top: 55%;
  left: 0;
  right: auto;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='M5.07 8.02 1.41 4.37 5.07.71' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
}
@media screen and (min-width: 768px) {
  .p-contact-btn.back-btn::after {
    left: 8rem;
  }
}
.p-contact-btn.back-btn button {
  background-color: #FFF;
  color: var(--color-black);
  border: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact-btn.back-btn button {
    justify-content: flex-start;
    padding-left: 2rem;
  }
}
@media (any-hover: hover) {
  .p-contact-btn.back-btn:hover button {
    opacity: 0.7;
  }
}

/* 「MW WP Form」スタイル調整 */
.p-contact .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.mw_wp_form_input .p-contact-btn:last-child, .mw_wp_form_input .p-contact-btn.back-btn {
  display: none;
}

.mw_wp_form_confirm .p-contact-row {
  display: grid;
  border: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .mw_wp_form_confirm .p-contact-row {
    grid-template-columns: 19.5rem 1fr;
  }
}
.mw_wp_form_confirm .p-contact-row.col {
  display: block;
}
.mw_wp_form_confirm .p-contact-row.col > div {
  display: grid;
  align-items: stretch;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .mw_wp_form_confirm .p-contact-row.col > div {
    grid-template-columns: 19.5rem 1fr;
  }
}
.mw_wp_form_confirm .p-contact-row.col > div:last-child {
  border-top: 1px solid var(--color-gray);
}
.mw_wp_form_confirm .p-contact-row.col > div > * {
  padding: 1rem 2rem;
}
.mw_wp_form_confirm .p-contact-row.col > div > * + * {
  margin-top: 0;
}
.mw_wp_form_confirm .p-contact-row > * {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 400;
}
.mw_wp_form_confirm .p-contact-row > * + * {
  margin-top: 0;
}
.mw_wp_form_confirm .p-contact-row P {
  background-color: var(--color-gray-light);
  border-right: 1px solid var(--color-gray);
}
.mw_wp_form_confirm .p-contact-row .required, .mw_wp_form_confirm .p-contact-row .any {
  display: none;
}
.mw_wp_form_confirm .p-contact-row .radio-list, .mw_wp_form_confirm .p-contact-row .checkbox-list {
  flex-direction: row;
  background-color: transparent;
  padding: 1rem 2rem;
}
.mw_wp_form_confirm .p-contact-row .u-note, .mw_wp_form_confirm .p-contact-row .u-al-right {
  display: none;
}
.mw_wp_form_confirm .p-contact-row .post-code {
  gap: 0;
}
.mw_wp_form_confirm .p-contact-row .post-code p {
  background-color: transparent;
  border-right: none;
}
.mw_wp_form_confirm .p-contact-row + .p-contact-row {
  margin-top: 0;
  border-top: none;
}

.p-en-product-tab.c-tab {
  text-transform: capitalize;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-en-product-tab.c-tab {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid var(--color-gray);
    border-radius: 0.4rem;
  }
  .p-en-product-tab.c-tab::after {
    content: "";
    position: absolute;
    top: 2.2rem;
    right: 1.2rem;
    width: 0.8rem;
    height: 0.8rem;
    background: no-repeat 50% 50%/contain;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 8.02 4.51'%3E%3Cpath d='M7.67.35 4.01 4.01.35.35' data-name='レイヤー 1' style='fill:none;stroke:%23ccc;stroke-linejoin:round'/%3E%3C/svg%3E");
    transition: transform 0.3s ease;
  }
  .p-en-product-tab.c-tab li.tab {
    position: relative;
    display: none;
    width: 100%;
    height: auto;
    padding: 1.2rem 1.6rem;
    background-color: #FFF;
    color: var(--color-black);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .p-en-product-tab.c-tab {
    justify-content: flex-start;
  }
  .p-en-product-tab.c-tab li.tab {
    width: 29.1rem;
    flex-wrap: wrap;
    padding: 0;
    letter-spacing: 0;
    line-height: 1.28;
    border-radius: 0.4rem;
  }
  .p-en-product-tab.c-tab li.tab:not(.is-active) {
    color: var(--color-green);
    border-color: var(--color-green);
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .p-en-product-tab.c-tab li.tab:hover {
    color: #FFF;
  }
}
@media screen and (min-width: 768px) {
  .p-en-product-tab.c-tab.agr li.tab:nth-child(5), .p-en-product-tab.c-tab.agr li.tab:nth-child(8) {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-en-product-tab.c-tab.ind li.tab:nth-child(2), .p-en-product-tab.c-tab.ind li.tab:nth-child(3), .p-en-product-tab.c-tab.ind li.tab:nth-child(5), .p-en-product-tab.c-tab.ind li.tab:nth-child(6), .p-en-product-tab.c-tab.ind li.tab:nth-child(8), .p-en-product-tab.c-tab.ind li.tab:nth-child(9), .p-en-product-tab.c-tab.ind li.tab:nth-child(10) {
    font-size: 1.4rem;
  }
}

.p-en-product-tab-panel.is-open .p-en-product-tab.c-tab::after {
  transform: rotate(180deg);
}
.p-en-product-tab-panel.is-open li.tab {
  border-bottom: 1px solid var(--color-gray);
}
.p-en-product-tab-panel.is-open li.tab:last-child {
  border-bottom: none;
}

.p-en-product-panel {
  margin: 4rem 0 0;
}
.p-en-product-panel-row + .p-en-product-panel-row {
  margin: 4rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-en-product-panel-row + .p-en-product-panel-row {
    margin: 6rem 0 0;
  }
}
.p-en-product-panel h2 {
  margin: 0 0 3rem;
  padding: 1.5rem 2rem;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--color-green);
  background-color: rgba(var(--color-green-rgb), 0.1);
}
@media screen and (min-width: 768px) {
  .p-en-product-panel h2 {
    margin: 0 0 4rem;
  }
}
.p-en-product-panel .col {
  display: grid;
  gap: 6rem;
}
@media screen and (min-width: 768px) {
  .p-en-product-panel .col {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 2rem;
  }
}
.p-en-product-panel .col + .col {
  position: relative;
  margin: 6rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-en-product-panel .col + .col {
    margin: 8rem 0 0;
  }
}
.p-en-product-panel .col + .col::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
}
@media screen and (min-width: 768px) {
  .p-en-product-panel .col + .col::before {
    top: -4rem;
  }
}
.p-en-product-panel .col li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-en-product-panel .col li + li::before {
    content: "";
    position: absolute;
    top: -3rem;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e6e6e6;
  }
}
@media screen and (min-width: 768px) {
  .p-en-product-panel .col .col-inner {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
  }
}
.p-en-product-panel figure {
  width: 25rem;
  aspect-ratio: 250/150;
  margin: 0 auto 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-en-product-panel figure {
    flex-shrink: 0;
    margin: 0;
  }
}
.p-en-product-panel figure img {
  width: auto;
  height: 100%;
}
.p-en-product-panel h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
  color: var(--color-green);
}
.p-en-product-panel .feature > span {
  display: block;
  margin: 1rem 0 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-en-product-panel .feature > span {
    font-size: 1.6rem;
  }
}
.p-en-product-panel .feature p {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-en-product-panel .feature p {
    font-size: 1.6rem;
  }
}
.p-en-product-panel .c-btn {
  margin: 2rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-en-product-panel .c-btn {
    max-width: 44rem;
    margin: 3rem auto 0;
  }
}

.p-history {
  display: grid;
  gap: 0.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .p-history {
    grid-template-columns: max-content 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-history {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .p-history.fig {
    grid-template-columns: max-content 1fr 16rem;
  }
}
.p-history-year {
  padding-right: 0.5rem;
}
.p-history p {
  font-weight: 400;
}
.p-history figure {
  width: 16rem;
  aspect-ratio: 160/120;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-history figure {
    margin-inline: auto;
  }
}
.p-history figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-link-contact {
  display: grid;
  margin: 6rem 0;
}
@media screen and (min-width: 768px) {
  .p-product-wrapper .p-link-contact {
    margin: 12rem 0 0;
  }
}

.p-lower-mv {
  padding: 1rem 0;
  background-color: var(--color-gray-light);
}
@media screen and (min-width: 768px) {
  .p-lower-mv {
    padding: 2rem 0;
  }
}
.p-lower-mv-title {
  padding: 0 0 3rem;
  margin: 2rem 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lower-mv-title {
    padding: 0 0 6rem;
  }
}
.p-lower-mv-title h1 {
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-lower-mv-title h1 {
    font-size: 3.6rem;
  }
}
.p-lower-mv-title p {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--color-green);
}
@media screen and (min-width: 768px) {
  .p-lower-mv-title p {
    font-size: 1.5rem;
  }
}
.p-lower-mv-en-title {
  margin: 2rem 0 0;
  padding: 0 0 2rem;
  color: var(--color-green);
  font-size: 2.4rem;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lower-mv-en-title {
    font-size: 3.6rem;
  }
}

.p-news-category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-news-category {
    justify-content: center;
  }
}
.p-news-category a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.8rem;
  height: 4.8rem;
  padding: 1rem;
  border: 1px solid var(--color-gray);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-news-category a {
    width: 20.8rem;
  }
}
.p-news-category a.is-active {
  background-color: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}
@media (any-hover: hover) {
  .p-news-category a:hover {
    background-color: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
  }
}

.p-news-detail {
  padding: 6rem 0 0;
}
.p-news-detail-inner {
  max-width: 79.4rem;
  margin-inline: auto;
}
.p-news-detail-header time {
  font-size: 1.4rem;
  color: var(--color-gray2);
}
.p-news-detail-header h1 {
  padding: 1rem 0;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-news-detail-header h1 {
    padding: 2rem 0 1rem;
    font-size: 3.6rem;
  }
}
.p-news-detail-contents {
  margin: 2rem 0 0;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-news-detail-contents {
    margin: 4rem 0 0;
  }
}
.p-news-detail-contents > * + * {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail-contents > * + * {
    margin-top: 4rem;
  }
}
.p-news-detail-contents .col {
  display: grid;
  gap: 2rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail-contents .col {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.8rem;
  }
}
.p-news-detail-contents .col figure {
  width: 100%;
}
.p-news-detail-contents .col figure img {
  width: 100%;
}
.p-news-detail-contents figure figcaption {
  font-size: 1.4rem;
}
.p-news-detail-contents .wp-block-columns {
  gap: 2rem;
}

.p-news-list {
  max-width: 79.4rem;
  margin: 14rem auto 0;
}

.p-organization {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-organization {
    gap: 1rem;
    font-size: 1.2rem;
  }
}
@media (min-width: 1041px) {
  .p-organization {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-organization {
    font-size: 1rem;
  }
}
.p-organization span {
  display: block;
}
.p-organization .row1 {
  grid-column: span 4/span 4;
}
.p-organization .row2 {
  grid-column: span 4/span 4;
  grid-row-start: 2;
}
.p-organization .col1 {
  grid-row-start: 3;
}
.p-organization .col1 > * + * {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-organization .col1 > * + * {
    margin-top: 1rem;
  }
}
.p-organization .col2 {
  grid-column: span 2/span 2;
  grid-row-start: 3;
}
.p-organization .col2 .col {
  display: flex;
  justify-content: space-between;
  gap: 0.2rem;
  margin: 0.8rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-organization .col2 .col {
    flex-wrap: wrap;
    gap: 1rem 0;
    margin: 1.5rem 0 0;
  }
}
.p-organization .col2 .col > div > div + div {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-organization .col2 .col > div > div + div {
    margin-top: 1rem;
  }
}
.p-organization .col2 .col > div ul {
  padding-left: 0.2rem;
}
@media screen and (min-width: 768px) {
  .p-organization .col2 .col > div ul {
    padding-left: 2rem;
  }
}
.p-organization .col3 {
  grid-column-start: 4;
  grid-row-start: 3;
}
.p-organization .col3 > * + * {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-organization .col3 > * + * {
    margin-top: 1rem;
  }
}
.p-organization .col3 > * > * + * {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-organization .col3 > * > * + * {
    margin-top: 1rem;
  }
}
.p-organization .gl1 {
  padding: 0.5rem;
  background-color: #bde3aa;
}
@media screen and (min-width: 768px) {
  .p-organization .gl1 {
    padding: 1rem 0.5rem;
  }
}
@media (min-width: 1041px) {
  .p-organization .gl1 {
    padding: 1rem 2rem;
  }
}
.p-organization .gl2 {
  padding: 0.5rem;
  background-color: #c8eadc;
}
@media screen and (min-width: 768px) {
  .p-organization .gl2 {
    padding: 1rem 0.5rem;
  }
}
@media (min-width: 1041px) {
  .p-organization .gl2 {
    padding: 1rem 2rem;
  }
}
.p-organization .wh1 {
  color: #4a7850;
  background-color: #FFF;
  padding: 0.2rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-organization .wh1 {
    padding: 0.5rem;
  }
}
@media (min-width: 1041px) {
  .p-organization .wh1 {
    padding: 0.5rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-organization .wh1 {
    font-size: 0.7rem;
  }
}
.p-organization ul {
  margin: 0.5rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-organization ul {
    margin: 1rem 0 0;
  }
}
.p-organization ul li {
  margin-top: 0.3rem;
  font-size: 0.7rem;
}
@media screen and (min-width: 768px) {
  .p-organization ul li {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}
@media (min-width: 1041px) {
  .p-organization ul li {
    font-size: 1.3rem;
  }
}
.p-organization ul li::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #FFF;
  border-radius: 50%;
  margin-right: 0.3rem;
}
@media screen and (min-width: 768px) {
  .p-organization ul li::before {
    margin-right: 0.8rem;
  }
}

.p-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 6rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-pagination {
    max-width: 31.5rem;
  }
}
.p-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  outline: 1px solid var(--color-gray);
  transition: outline 0.1s ease;
}
.p-pagination .page-numbers.current {
  color: var(--color-green);
  outline: 2px solid var(--color-green);
}
@media (any-hover: hover) {
  .p-pagination .page-numbers:hover {
    color: var(--color-green);
    outline: 2px solid var(--color-green);
  }
}
.p-pagination .page-numbers.prev, .p-pagination .page-numbers.next {
  outline: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-pagination .page-numbers.prev:hover, .p-pagination .page-numbers.next:hover {
    opacity: 0.7;
  }
}
.p-pagination .page-numbers.prev {
  margin-right: auto;
}
.p-pagination .page-numbers.prev::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m5.07.71-3.66 3.66 3.66 3.65' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
}
.p-pagination .page-numbers.prev.non-active {
  pointer-events: none;
}
.p-pagination .page-numbers.prev.non-active::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m5.07.71-3.66 3.66 3.66 3.65' data-name='レイヤー 1' style='fill:none;stroke:%23c8c8c8;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
}
.p-pagination .page-numbers.next {
  margin-left: auto;
}
.p-pagination .page-numbers.next::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
}
.p-pagination .page-numbers.next.non-active {
  pointer-events: none;
}
.p-pagination .page-numbers.next.non-active::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%23c8c8c8;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
}

.p-privacypolicy h1 {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-privacypolicy h1 {
    margin-bottom: 4rem;
    font-size: 3.6rem;
  }
}
.p-privacypolicy-row {
  margin: 2rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy-row {
    margin: 4rem 0 0;
  }
}
.p-privacypolicy-row h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy-row h2 {
    font-size: 2.4rem;
  }
}
.p-privacypolicy-row p {
  font-weight: 400;
}
.p-privacypolicy-row ul {
  margin: 1rem 0 0;
  padding-left: 2rem;
}
.p-privacypolicy-row ul li {
  list-style: disc;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-product-detail .c-link-btn {
    font-size: 1.4rem;
  }
  .p-product-detail .c-link-btn .c-icon.arrow-right {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.p-product-detail-inner {
  display: grid;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .p-product-detail-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-product-detail-title {
  font-size: 2.8rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-product-detail-title {
    font-size: 4.2rem;
  }
}
.p-product-detail-lead {
  margin: 1rem 0;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-product-detail-lead {
    margin: 1rem 0 3rem;
    font-size: 1.8rem;
  }
}
.p-product-detail-catalogs {
  display: grid;
  gap: 2rem;
}
.p-product-detail-future {
  margin: 3rem 0 0;
}
.p-product-detail-future-title {
  font-size: 1.4rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-product-detail-future-title {
    font-size: 1.8rem;
  }
}
.p-product-detail-future-text {
  margin: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-product-detail-future-text {
    font-size: 1.1rem;
  }
}
.p-product-detail-future-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
@media screen and (min-width: 768px) {
  .p-product-detail-future-images {
    gap: 2rem;
    margin: 4rem 0;
  }
}
.p-product-detail-future-images figure {
  aspect-ratio: 167/112;
  text-align: center;
  overflow: hidden;
}
.p-product-detail-future-images figure img {
  width: auto;
  height: 100%;
}
.p-product-detail-future .c-link-btn span::after {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='_レイヤー_2' data-name='レイヤー 2' viewBox='0 0 12 12'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23000;stroke-linejoin:round%7D%3C/style%3E%3C/defs%3E%3Cg id='_レイヤー_1-2' data-name='レイヤー 1'%3E%3Cpath d='M6.33.5h5.17v5.17M9.5 7.5v4h-9v-9h4M11.5.5l-7 7' class='cls-1'/%3E%3C/g%3E%3C/svg%3E");
  transition: background 0.3s ease;
}
@media (any-hover: hover) {
  .p-product-detail-future .c-link-btn:hover span::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='_レイヤー_2' data-name='レイヤー 2' viewBox='0 0 12 12'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%2364be37;stroke-linejoin:round%7D%3C/style%3E%3C/defs%3E%3Cg id='_レイヤー_1-2' data-name='レイヤー 1'%3E%3Cpath d='M6.33.5h5.17v5.17M9.5 7.5v4h-9v-9h4M11.5.5l-7 7' class='cls-1'/%3E%3C/g%3E%3C/svg%3E");
  }
}
.p-product-detail-images-main {
  width: 100%;
  aspect-ratio: 345/231;
  border: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-product-detail-images-main {
    aspect-ratio: 580/387;
  }
}
.p-product-detail-images-thumbnail {
  max-width: 27rem;
  margin: 2rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-product-detail-images-thumbnail {
    max-width: 92.0689655172%;
  }
}
.p-product-detail-images .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-product-detail-images .splide__slide img {
  width: auto;
  height: 100%;
  max-height: 38.7rem;
}
.p-product-detail-images .splide__track--nav > .splide__list > .splide__slide {
  border: 1px solid var(--color-gray);
}
.p-product-detail-images .splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 2px solid var(--color-green);
}

.p-product-lineup {
  background-color: var(--color-gray-light);
}
@media screen and (min-width: 768px) {
  .p-product-lineup-inner {
    max-width: 140rem;
  }
}
.p-product-lineup-title {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-product-lineup-title {
    font-size: 2.4rem;
  }
}
.p-product-lineup-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.7rem;
  margin: 4rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-product-lineup-list {
    gap: 2rem;
    margin: 5rem 0 0;
  }
}
@media (min-width: 901px) {
  .p-product-lineup-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-product-lineup-item {
  padding: 1.5rem 1rem;
  background-color: #FFF;
  outline: 0.06rem solid var(--color-gray);
  transition: outline 0.1s ease;
  border-radius: 0.8rem;
}
@media screen and (min-width: 768px) {
  .p-product-lineup-item {
    padding: 2rem;
    border-radius: 1.2rem;
  }
}
@media (min-width: 901px) {
  .p-product-lineup-item {
    width: 25.2rem;
  }
}
@media (any-hover: hover) {
  .p-product-lineup-item:hover {
    outline: 0.27rem solid var(--color-green);
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-product-lineup-item:hover {
    outline: 0.4rem solid var(--color-green);
  }
}
@media (any-hover: hover) {
  .p-product-lineup-item:hover .c-link-btn {
    color: initial;
  }
}
.p-product-lineup-item-img {
  display: block;
  height: 9.5rem;
  text-align: center;
}
.p-product-lineup-item-img img {
  width: auto;
  height: 100%;
}
.p-product-lineup-item-contents {
  margin: 1.5rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-product-lineup-item-contents {
    margin: 2rem 0 0;
  }
}
.p-product-lineup-item-text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-product-lineup-item-text {
    font-size: 1.8rem;
  }
}
.p-product-lineup-item-title {
  font-size: 1.2rem;
  font-weight: 500;
}
.p-product-lineup-btn {
  display: block;
  width: 18.5rem;
  height: 4.8rem;
  margin: 4rem auto 0;
  padding: 0;
  background-color: transparent;
  border: 1px solid var(--color-gray);
  border-radius: 0.4rem;
  text-align: center;
  cursor: pointer;
  transition: border 0.1s ease;
}
@media (any-hover: hover) {
  .p-product-lineup-btn:hover {
    border: 2px solid var(--color-green);
  }
}
@media screen and (min-width: 768px) {
  .p-product-lineup-btn {
    margin: 6rem auto 0;
  }
}
.p-product-lineup-back {
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-product-lineup-back .c-link-back-btn {
    justify-content: center;
  }
}

.p-product-list-head {
  display: grid;
  gap: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-product-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.p-product-list-head-text {
  font-weight: 400;
}
.p-product-list-head-reset {
  color: var(--color-gray2);
}
@media (any-hover: hover) {
  .p-product-list-head-reset:hover {
    text-decoration: underline;
  }
}
.p-product-list-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.7rem;
  margin: 3.5rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-product-list-list {
    gap: 2rem;
    margin: 3rem 0 0;
  }
}
@media (min-width: 901px) {
  .p-product-list-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-product-list-item {
  padding: 1.5rem 1rem;
  background-color: #FFF;
  outline: 0.06rem solid var(--color-gray);
  transition: outline 0.1s ease;
  border-radius: 0.8rem;
}
@media screen and (min-width: 768px) {
  .p-product-list-item {
    padding: 2rem;
    border-radius: 1.2rem;
  }
}
@media (min-width: 901px) {
  .p-product-list-item {
    width: 25rem;
  }
}
@media (any-hover: hover) {
  .p-product-list-item:hover {
    outline: 0.27rem solid var(--color-green);
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-product-list-item:hover {
    outline: 0.4rem solid var(--color-green);
  }
}
.p-product-list-item-img {
  display: block;
  aspect-ratio: 143/95;
  text-align: center;
  overflow: hidden;
}
.p-product-list-item-img img {
  width: auto;
  height: 100%;
}
.p-product-list-item-text {
  margin: 1.5rem 0 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-product-list-item-text {
    margin: 2rem 0 0;
    font-size: 1.8rem;
  }
}
.p-product-list-item-title {
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  font-size: 1.2rem;
  font-weight: 500;
  border-top: 0.06rem solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-product-list-item-title {
    margin: 1.5rem 0 0;
    padding: 1.5rem 0 0;
    font-size: 1.8rem;
  }
}
.p-product-list-no-results {
  margin: 5rem 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-product-list-no-results {
    margin: 10rem 0 0;
  }
}

.p-product-search {
  display: grid;
  gap: 2rem;
}
.p-product-search-input {
  padding: 2rem;
  background-color: #FFF;
  border-radius: 1.6rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .p-product-search-input {
    padding: 3rem;
    border-radius: 2.4rem;
  }
}
.p-product-search-input-form {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.p-product-search-input-input {
  width: 100%;
  height: 4.2rem;
  padding: 1rem 1.5rem;
  border-radius: 0.4rem;
  border: 0.02rem solid var(--color-gray);
}
.p-product-search-input-submit {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  padding: 0;
  border: none;
  background-color: var(--color-green);
  border-radius: 0.4rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-product-search-input-submit:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-product-search-detail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.p-product-search-detail-title {
  font-size: 1.8rem;
  text-align: center;
}
.p-product-search-detail-reset {
  padding: 0;
  font-size: 1.4rem;
  color: var(--color-gray2);
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-product-search-detail-reset {
    display: none;
  }
}
@media (any-hover: hover) {
  .p-product-search-detail-reset:hover {
    text-decoration: underline;
  }
}
.p-product-search-detail-spbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  margin: 1rem auto 0;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-product-search-detail-spbtn {
    display: none;
  }
}
.p-product-search-detail-spbtn.is-open {
  transform: rotate(180deg);
}
.p-product-search-detail-contents + .p-product-search-detail-contents {
  margin-top: 3rem;
}
.p-product-search-detail-contents-title {
  font-size: 1.8rem;
  color: var(--color-green);
  border-bottom: 1px solid var(--color-gray);
}
.p-product-search-detail-contents-wrapper {
  display: none;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-product-search-detail-contents-wrapper {
    display: block;
  }
}
.p-product-search-detail-contents-list {
  margin: 2rem 0 0;
}
.p-product-search-detail-contents-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.8rem;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.p-product-search-detail-contents-item:not(:last-child) {
  margin-bottom: 1rem;
}
.p-product-search-detail-contents-item.is-checked {
  background-color: rgba(var(--color-green-rgb), 0.1);
}
.p-product-search-detail-contents-item .checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 2px solid #c8c8c8;
  cursor: pointer;
}
.p-product-search-detail-contents-item .checkbox:checked {
  border: 2px solid var(--color-green);
  background-color: #FFF;
}
.p-product-search-detail-contents-item .checkbox:checked::after {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  width: 1.1rem;
  height: 0.7rem;
  border-bottom: 0.2rem solid var(--color-green);
  border-left: 0.2rem solid var(--color-green);
  transform: rotate(-45deg);
}
.p-product-search-detail-contents-submit {
  position: relative;
  width: 100%;
  height: 4.8rem;
  margin-bottom: 2rem;
}
.p-product-search-detail-contents-submit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8rem;
  display: inline-block;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 1rem;
  margin-left: 1rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%23fff;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
  transition: background 0.3s ease;
}
.p-product-search-detail-contents-submit input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #FFF;
  background-color: var(--color-green);
  border: 1px solid var(--color-green);
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (any-hover: hover) {
  .p-product-search-detail-contents-submit:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
  }
  .p-product-search-detail-contents-submit:hover input {
    background-color: #FFF;
    color: var(--color-green);
  }
}

.p-product-wrapper {
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-product-wrapper {
    padding-top: 4rem;
  }
}
.p-product-wrapper-col {
  display: grid;
  gap: 5.5rem;
}
@media screen and (min-width: 768px) {
  .p-product-wrapper-col {
    display: grid;
    grid-template-columns: max(30rem, 30.7936507937vw) 1fr;
    align-items: start;
    gap: 2rem;
  }
}
@media (min-width: 1261px) {
  .p-product-wrapper-col {
    grid-template-columns: 38.8rem 1fr;
  }
}

.p-qanda-lead {
  font-weight: 400;
}
.p-qanda-accordion {
  display: grid;
  gap: 2rem;
  margin: 4rem 0 0;
}
.p-qanda-accordion li {
  background-color: #FFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  border-radius: 1.2rem;
}
.p-qanda-accordion-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-qanda-accordion-title {
    padding: 3rem;
    font-size: 1.8rem;
  }
}
.p-qanda-accordion-title::before {
  content: "Q";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-family: var(--font-lato);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  background-color: var(--color-green);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-qanda-accordion-title::before {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}
.p-qanda-accordion-title::after {
  content: "";
  flex-shrink: 0;
  display: block;
  margin-left: auto;
  width: 1rem;
  height: 1rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 8.73 5.78'%3E%3Cpath d='M8.02.71 4.37 4.37.71.71' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
}
.p-qanda-accordion-title.open::after {
  transform: rotate(180deg);
}
.p-qanda-accordion-content {
  position: relative;
  padding: 1.5rem;
  font-weight: 400;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-qanda-accordion-content {
    padding: 3rem;
  }
}
.p-qanda-accordion-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 3rem);
  height: 1px;
  background-color: var(--color-gray);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-qanda-accordion-content::before {
    width: calc(100% - 6rem);
  }
}

.p-recruit-education {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-education {
    gap: 1rem;
  }
}
.p-recruit-education > li {
  padding: 1.5rem;
  background-color: var(--color-gray-light);
  border-radius: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-education > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
  }
}
@media (min-width: 1101px) {
  .p-recruit-education > li {
    padding: 3rem 7rem;
  }
}
.p-recruit-education-item {
  display: flex;
  align-items: center;
  gap: 1rem 5.6rem;
}
@media screen and (max-width: 1000px) {
  .p-recruit-education-item {
    gap: 1rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-education-item {
    gap: 1rem 2rem;
    padding-left: 1rem;
  }
}
.p-recruit-education-item figure {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 5.2rem;
  overflow: hidden;
}
.p-recruit-education-item figure img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-recruit-education-item h3 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .p-recruit-education-item h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-education-item h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-education-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--color-gray);
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-education-list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0.2rem;
    flex-shrink: 0;
    min-height: 10.7rem;
    padding-left: 3rem;
    margin-left: 3rem;
    border-left: 1px solid var(--color-gray);
  }
}
.p-recruit-education-list li {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.p-recruit-education-list li::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 15.37 15'%3E%3Cg data-name='レイヤー 1'%3E%3Cpath d='M0 0h15v15H0z' style='fill:%23fff'/%3E%3Cpath d='M3.87 6.87 7.5 10.5l6.87-6.87' style='fill:none;stroke:%2364be37;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px'/%3E%3C/g%3E%3C/svg%3E");
  transition: background 0.3s ease;
  transform: translateY(0.2rem);
}

.p-recruit-event {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-event {
    gap: 1rem;
  }
}
.p-recruit-event li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem 0.5rem;
  padding: 1.5rem;
  background-color: var(--color-gray-light);
  border-radius: 1.2rem;
}
@media (min-width: 1201px) {
  .p-recruit-event li {
    flex-direction: row;
    padding: 3rem 4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-event-text {
    margin: 1.5rem 0 0;
  }
}
.p-recruit-event-text h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-recruit-event-text span {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-green);
}
.p-recruit-event-text p {
  margin: 1rem 0 0;
  font-size: 1.2rem;
}
.p-recruit-event-image {
  flex-shrink: 0;
  display: flex;
  gap: 1rem;
}
.p-recruit-event-image img {
  width: 20.2rem;
}

.p-recruit-interview {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-interview {
    gap: 2rem;
  }
}
.p-recruit-interview a {
  width: 16.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  border-radius: 1.2rem;
  background-color: #FFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-interview a {
    width: 25rem;
    padding: 2rem;
  }
}
@media (any-hover: hover) {
  .p-recruit-interview a:hover {
    border-color: var(--color-green);
  }
}
.p-recruit-interview-department {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-green);
}
@media screen and (min-width: 768px) {
  .p-recruit-interview-department {
    font-size: 1.8rem;
  }
}
.p-recruit-interview figure {
  width: 100%;
  margin: 1rem 0;
  aspect-ratio: 211/151;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-recruit-interview figure {
    margin: 2rem 0 1rem;
  }
}
.p-recruit-interview figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recruit-interview h3 {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit-interview h3 {
    font-size: 1.4rem;
  }
}

.p-recruit-link {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-link {
    gap: 1rem;
  }
}
.p-recruit-link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  min-height: 7rem;
  padding: 1.5rem;
  background-color: var(--color-gray-light);
  border-radius: 1.2rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-link a {
    min-height: 16.7rem;
    gap: 0;
    padding: 3rem;
  }
}
@media (min-width: 1101px) {
  .p-recruit-link a {
    padding: 3rem 3rem 3rem 7rem;
  }
}
@media (any-hover: hover) {
  .p-recruit-link a:hover {
    border-color: var(--color-green);
  }
}
.p-recruit-link a h3 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .p-recruit-link a h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-link a h3 {
    font-size: 1.6rem;
  }
}
.p-recruit-link a p {
  margin-top: 0.5rem;
  font-weight: 500;
  color: var(--color-green);
}
@media screen and (max-width: 767px) {
  .p-recruit-link a p {
    font-size: 1.2rem;
  }
}
.p-recruit-link a .c-icon.arrow-right {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-link a .c-icon.arrow-right {
    width: 2rem;
    height: 2rem;
  }
  .p-recruit-link a .c-icon.arrow-right::after {
    width: 0.5rem;
    height: 0.9rem;
  }
}

.p-recruit-news {
  display: grid;
  gap: 3rem;
  grid-area: list;
}
@media screen and (min-width: 768px) {
  .p-recruit-news {
    gap: 4rem;
  }
}
.p-recruit-news a {
  display: grid;
  gap: 1rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-news a {
    grid-template-areas: "date title";
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 3rem;
  }
}
.p-recruit-news a.no-link {
  pointer-events: none;
}
.p-recruit-news a.no-link h3::after {
  display: none;
}
@media (any-hover: hover) {
  .p-recruit-news a:hover h3 {
    color: var(--color-green);
  }
  .p-recruit-news a:hover h3::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 4.51 8.02'%3E%3Cpath d='m.35.35 3.66 3.66L.35 7.67' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-linejoin:round'/%3E%3C/svg%3E");
  }
}
.p-recruit-news a time {
  color: var(--color-gray2);
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-recruit-news a time {
    grid-area: date;
    font-size: 1.4rem;
  }
}
.p-recruit-news a h3 {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  padding-right: 3rem;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-news a h3 {
    grid-area: title;
    padding-right: 5rem;
  }
}
.p-recruit-news a h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 1rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 4.51 8.02'%3E%3Cpath d='m.35.35 3.66 3.66L.35 7.67' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-linejoin:round'/%3E%3C/svg%3E");
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-news a h3::after {
    right: 1.8rem;
  }
}
.p-recruit-news-btn {
  display: block;
  width: 18.5rem;
  height: 4.8rem;
  margin: 4rem auto 0;
  padding: 0;
  background-color: transparent;
  border: 1px solid var(--color-gray);
  border-radius: 0.4rem;
  text-align: center;
  cursor: pointer;
  transition: border 0.1s ease;
}
@media (any-hover: hover) {
  .p-recruit-news-btn:hover {
    border: 2px solid var(--color-green);
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-news-btn {
    margin: 6rem auto 0;
  }
}

.p-recruitment-list > div {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-recruitment-list > div {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
}
.p-recruitment-list dt {
  font-size: 2rem;
  color: var(--color-green);
}
.p-recruitment-list dd {
  margin: 1rem 0 0;
  font-weight: 400;
}
.p-recruitment-list dd ul li {
  margin-left: 1em;
  text-indent: -1em;
}
.p-recruitment-list dd ul li::before {
  content: "・";
  margin-right: 0.5rem;
}
.p-recruitment-list .table {
  padding-bottom: 0.5rem;
  overflow-x: auto;
}
.p-recruitment-list table {
  width: 79.2rem;
  border-collapse: collapse;
  table-layout: fixed;
}
.p-recruitment-list table th, .p-recruitment-list table td {
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  border: 1px solid var(--color-gray);
}
.p-recruitment-list table th {
  text-align: left;
  background-color: var(--color-gray-light);
}
.p-recruitment-list table td {
  text-align: center;
}
.p-recruitment-list table tr:nth-child(1) th:nth-of-type(n+3):nth-of-type(-n+6) {
  padding: 1rem 0.4rem;
}
.p-recruitment-list table tr:nth-child(1) th:not(:first-child) {
  text-align: center;
}

.p-recruitment-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 61rem;
  padding-inline: 1.5rem;
  margin: 0 auto 8rem;
}
@media screen and (min-width: 768px) {
  .p-recruitment-tab {
    max-width: 126rem;
    padding-right: 3rem;
    padding-left: 43.8rem;
  }
}
@media screen and (max-width: 1000px) {
  .p-recruitment-tab {
    padding-left: 35.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitment-tab {
    padding-inline: 1.5rem;
  }
}
.p-recruitment-tab .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24.8rem;
  height: 4.8rem;
  background-color: #FFF;
  border: 1px solid var(--color-gray);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.p-recruitment-tab .tab.is-active {
  background-color: var(--color-green);
  color: #FFF;
  border-color: var(--color-green);
}
@media (any-hover: hover) {
  .p-recruitment-tab .tab:hover {
    background-color: var(--color-green);
    color: #FFF;
    border-color: var(--color-green);
  }
}

.p-recruitment-panel .c-table a {
  padding-left: 0;
}

.p-session-list {
  display: grid;
  gap: 1rem;
}
.p-session-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-gray-light);
  border-radius: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-session-list li {
    padding: 1rem 1rem 1rem 3rem;
  }
}
.p-session-list li > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.p-session-list li .date, .p-session-list li .time {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .p-session-list li .date, .p-session-list li .time {
    font-size: 1.8rem;
  }
}
.p-session-list li .number {
  font-size: 1.2rem;
  color: var(--color-gray2);
}
@media screen and (min-width: 768px) {
  .p-session-list li .number {
    margin-inline: 1.5rem;
    font-size: 1.4rem;
  }
}
.p-session-list li .category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-session-list li .category {
    gap: 1rem;
  }
}
.p-session-list li .category p {
  padding: 0 0.7rem;
  font-size: 1.2rem;
  border: 2px solid var(--color-green);
}
@media screen and (min-width: 768px) {
  .p-session-list li .category p {
    padding: 0 1rem;
    font-size: 1.4rem;
  }
}
.p-session-list li .category p.on {
  color: #FFF;
  background-color: var(--color-green);
}
.p-session-list li .category p.off {
  color: var(--color-green);
  background-color: #FFF;
}
.p-session-list li .status {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.5rem;
  height: 4.3rem;
  font-weight: 700;
  background-color: #FFF;
  color: var(--color-green);
  border: 2px solid var(--color-green);
  border-radius: 0.8rem;
}
@media screen and (min-width: 768px) {
  .p-session-list li .status {
    margin-left: auto;
  }
}
.p-session-list li.end::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.2rem;
  background-color: #FFF;
  opacity: 0.8;
}
.p-session-list li.end .status {
  color: var(--color-gray3);
  border-color: var(--color-gray3);
}

.p-sitemap-wrap {
  display: grid;
  gap: 6rem 5rem;
}
@media screen and (min-width: 768px) {
  .p-sitemap-wrap {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: min-content;
  }
}
@media screen and (min-width: 768px) {
  .p-sitemap-row.company {
    grid-column-start: 1;
    grid-row-start: 2;
  }
  .p-sitemap-row.product {
    grid-column: span 2/span 2;
    grid-row: span 4/span 4;
    grid-column-start: 2;
    grid-row-start: 1;
  }
  .p-sitemap-row.technology {
    grid-row-start: 3;
  }
  .p-sitemap-row.recruit {
    grid-row-start: 4;
  }
  .p-sitemap-row.contact {
    grid-row-start: 5;
  }
  .p-sitemap-row.news {
    grid-column-start: 1;
    grid-row-start: 6;
  }
  .p-sitemap-row.privacypolicy {
    grid-column-start: 2;
    grid-row-start: 5;
  }
  .p-sitemap-row.sitemap {
    grid-column-start: 2;
    grid-row-start: 6;
  }
  .p-sitemap-row.english {
    grid-column-start: 3;
    grid-row-start: 5;
  }
}
.p-sitemap-row a {
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-sitemap-row a:hover {
    color: var(--color-green);
  }
}
.p-sitemap-row > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--color-gray);
}
.p-sitemap-row > a::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
}
.p-sitemap-row > a h2 {
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-sitemap-row > a h2 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sitemap-product {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 5rem;
  }
}
.p-sitemap-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
}
.p-sitemap-list + .p-sitemap-list {
  margin: 1rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-sitemap-list + .p-sitemap-list {
    margin: 2rem 0 0;
  }
}
.p-sitemap-list li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.p-sitemap-list li a::before {
  content: "・";
}
.p-sitemap-list li a::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 1rem;
  margin-left: auto;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 4.51 8.02'%3E%3Cpath d='m.35.35 3.66 3.66L.35 7.67' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-linejoin:round'/%3E%3C/svg%3E");
}

.p-technology-classroom-row + .p-technology-classroom-row {
  margin: 6rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-technology-classroom-row + .p-technology-classroom-row {
    margin: 10rem 0 0;
  }
}
.p-technology-classroom-row h2 {
  margin: 0 0 2rem;
  padding: 0 0 1rem;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-technology-classroom-row h2 {
    margin: 0 0 3rem;
    font-size: 3.6rem;
  }
}
.p-technology-classroom-row h3 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 1rem;
}
@media screen and (min-width: 768px) {
  .p-technology-classroom-row h3 {
    font-size: 2.4rem;
  }
}
.p-technology-classroom-row > * + * {
  margin: 2rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-technology-classroom-row > * + * {
    margin: 3rem 0 0;
  }
}
.p-technology-classroom-row p {
  font-weight: 400;
}
.p-technology-classroom-row p.indent {
  margin-top: 1rem;
  margin-left: 1.4em;
  text-indent: -1.4em;
}
.p-technology-classroom-row > figure {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid var(--color-gray);
}
.p-technology-classroom-row > figure.non-border {
  border: none;
}
.p-technology-classroom-row ul {
  display: grid;
  gap: 1rem;
  margin-left: 1.6rem;
}
.p-technology-classroom-row ul li {
  list-style: disc;
  font-weight: 400;
}
.p-technology-classroom-row ol {
  display: grid;
  gap: 1rem;
  margin-left: 1.6rem;
}
.p-technology-classroom-row ol li {
  list-style: decimal;
  font-weight: 400;
}
.p-technology-classroom-row ol li > ol, .p-technology-classroom-row ol li > ul {
  margin-top: 1rem;
}
.p-technology-classroom-row ol ul li {
  list-style: disc;
}
.p-technology-classroom-row .gray-box {
  padding: 2rem;
  margin: 1rem 0 0;
  background-color: var(--color-gray-light);
}
.p-technology-classroom-row .gray-box h4 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-technology-classroom-row .gray-box h4 {
    margin: 0 0 2rem;
    font-size: 2rem;
  }
}
.p-technology-classroom-row .col {
  display: flex;
  gap: 0 1rem;
}
@media screen and (min-width: 768px) {
  .p-technology-classroom-row .col {
    gap: 0 2rem;
  }
}
.p-technology-classroom-row .col figure {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-technology-classroom-row .col.sp-row {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }
  .p-technology-classroom-row .col.sp-row figure {
    text-align: center;
  }
}
.p-technology-classroom-row .image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.p-technology-classroom .image-text {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
}
.p-technology-classroom.classroom08 .c-table {
  width: 77.8rem;
}
.p-technology-classroom.classroom08 .c-table.right ul {
  display: initial;
}
.p-technology-classroom.classroom08 .c-table.right ul li {
  margin-left: 2rem;
  text-indent: initial;
}
.p-technology-classroom.classroom08 .c-table.right ul li::before {
  display: none;
}
.p-technology-classroom.classroom08 .image-col {
  align-items: flex-end;
  gap: 2rem 5rem;
  margin: 2rem 0 0;
}
.p-technology-classroom.classroom08 .image-col .yoko {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
.p-technology-classroom.classroom08 .image-col.en {
  text-align: center;
}
.p-technology-classroom.classroom08 .image-col.en p {
  text-align: left;
}

.p-technology-classroom.en h2, .p-technology-classroom.en h3, .p-technology-classroom.en h4 {
  text-transform: capitalize;
}

.p-technology-slide {
  margin: 3rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-technology-slide {
    margin: 4rem 0 0;
  }
}
.p-technology-slide .splide__slide {
  padding: 1rem;
}
.p-technology-slide .splide__arrow {
  background-color: transparent;
  opacity: 1;
}
.p-technology-slide .splide__arrow:disabled {
  opacity: 0.3;
}
.p-technology-slide .splide__arrow::before {
  content: "";
  display: block;
  width: 1rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 12.04 22.66'%3E%3Cpath d='M11.68 22.3.71 11.33 11.68.35' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-miterlimit:10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-technology-slide .splide__arrow svg {
  display: none;
}
.p-technology-slide .splide__arrow.splide__arrow--prev {
  left: -2rem;
}
@media screen and (min-width: 768px) {
  .p-technology-slide .splide__arrow.splide__arrow--prev {
    left: -3rem;
  }
}
.p-technology-slide .splide__arrow.splide__arrow--next {
  right: -2rem;
}
@media screen and (min-width: 768px) {
  .p-technology-slide .splide__arrow.splide__arrow--next {
    right: -3rem;
  }
}
.p-technology-slide .splide__arrow.splide__arrow--next::before {
  transform: rotate(180deg);
}
.p-technology-slide a {
  display: block;
  height: 100%;
  padding: 2rem;
  border-radius: 1.2rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
@media (any-hover: hover) {
  .p-technology-slide a:hover {
    border-color: var(--color-green);
  }
}
.p-technology-slide a h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 3rem 0 0;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-technology-slide a h2 {
    font-size: 2rem;
    padding-inline: 1rem;
  }
}
.p-technology-slide a h2 .small {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-technology-slide a h2 .small {
    font-size: 1.6rem;
  }
}
.p-technology-slide a .c-icon.arrow-right {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-technology-slide a .c-icon.arrow-right {
    width: 2rem;
    height: 2rem;
  }
  .p-technology-slide a .c-icon.arrow-right::after {
    width: 0.5rem;
    height: 0.9rem;
  }
}

.p-technology-slide.en {
  text-transform: capitalize;
}
.p-technology-slide.en a h2 {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .p-technology-slide.en a h2 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .p-technology-tab.en .tab {
    padding: 1rem 0.5rem;
    font-size: 1.2rem;
  }
}

.p-technology-panel {
  margin: 4rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-technology-panel {
    margin: 8rem 0 0;
  }
}
.p-technology-panel ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.8rem;
}
@media screen and (max-width: 1000px) {
  .p-technology-panel ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-technology-panel ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-technology-panel ul a {
  display: block;
  height: 100%;
  padding: 2rem;
  border-radius: 1.2rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
@media (any-hover: hover) {
  .p-technology-panel ul a:hover {
    border-color: var(--color-green);
  }
}
.p-technology-panel ul a h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 3rem 0 0;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-technology-panel ul a h2 {
    padding-inline: 1rem;
    font-size: 2rem;
  }
}
.p-technology-panel ul a h2 .small {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-technology-panel ul a h2 .small {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-technology-panel ul a .c-icon.arrow-right {
    width: 2rem;
    height: 2rem;
  }
  .p-technology-panel ul a .c-icon.arrow-right::after {
    width: 0.5rem;
    height: 0.9rem;
  }
}

.p-technology-panel.en ul a h2 {
  font-size: 1.4rem;
  text-transform: capitalize;
}

.p-top-mv {
  position: relative;
}
.p-top-mv-image {
  position: relative;
}
.p-top-mv-inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: 75vw;
  height: 100%;
  transform: translateX(-50%);
}
.p-top-mv-title {
  position: absolute;
  top: 10.375vw;
  left: 14.375vw;
  font-size: 5vw;
  font-weight: 900;
  line-height: 1.375;
  color: #FFF;
  text-shadow: 7px 7px 7px rgba(0, 0, 0, 0.5);
}
.p-top-company {
  padding-top: 6rem;
}
.p-top-company-text {
  font-family: var(--font-biz);
  font-size: 1.6rem;
  line-height: 1.9285714286;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-company-text {
    font-size: clamp(2.2rem, 2.8vw, 2.8rem);
  }
}
.p-top-company-btn {
  margin: 4rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-top-company-btn {
    margin: 8rem auto 0;
  }
}
.p-top-company-btn .c-btn {
  margin-inline: auto;
}
.p-top-company .c-scroll-down {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .p-top-company .c-scroll-down {
    margin-top: 8rem;
  }
}
.p-top-news {
  background-color: var(--color-gray-light);
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding: 4rem 0 3rem;
  }
}
.p-top-news-inner {
  display: grid;
  grid-template-areas: "title" "list" "btn";
  align-items: end;
  gap: 5rem;
}
@media screen and (min-width: 768px) {
  .p-top-news-inner {
    grid-template-areas: "title list" "btn list";
    grid-template-columns: 15rem 1fr;
    grid-template-rows: min-content 1fr;
    align-items: start;
    gap: 3rem 26rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .p-top-news-inner {
    gap: 3rem 16.25vw;
  }
}
@media screen and (max-width: 1000px) {
  .p-top-news-inner {
    gap: 3rem 9.375vw;
  }
}
.p-top-news .c-title {
  grid-area: title;
}
@media screen and (max-width: 767px) {
  .p-top-news .c-title {
    text-align: center;
  }
}
.p-top-news-list {
  display: grid;
  gap: 3rem;
  grid-area: list;
}
@media screen and (min-width: 768px) {
  .p-top-news-list {
    gap: 4rem;
  }
}
.p-top-news-item {
  display: grid;
  grid-template-areas: "date category" "title title";
  grid-template-columns: max-content 1fr;
  grid-template-rows: min-content 1fr;
  align-items: center;
  gap: 1rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-news-item {
    grid-template-areas: "date category title";
    grid-template-columns: max-content auto 1fr;
    gap: 3rem;
  }
}
@media (any-hover: hover) {
  .p-top-news-item:hover .p-top-news-item-title {
    color: var(--color-green);
  }
  .p-top-news-item:hover .p-top-news-item-title::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 4.51 8.02'%3E%3Cpath d='m.35.35 3.66 3.66L.35 7.67' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-linejoin:round'/%3E%3C/svg%3E");
  }
}
.p-top-news-item-date {
  grid-area: date;
  color: var(--color-gray2);
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-top-news-item-date {
    font-size: 1.4rem;
  }
}
.p-top-news-item-category {
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
  color: var(--color-green);
  background-color: #FFF;
  border: 1px solid var(--color-green);
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .p-top-news-item-category {
    padding: 0.2rem 1rem;
    font-size: 1.4rem;
  }
}
.p-top-news-item-category-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  grid-area: category;
}
.p-top-news-item-category-new {
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
  color: var(--color-red);
  background-color: #FFF;
  border: 1px solid var(--color-red);
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .p-top-news-item-category-new {
    padding: 0.2rem 1rem;
    font-size: 1.4rem;
  }
}
.p-top-news-item-title {
  grid-area: title;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  padding-right: 3rem;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-top-news-item-title {
    padding-right: 5rem;
  }
}
.p-top-news-item-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 1rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 4.51 8.02'%3E%3Cpath d='m.35.35 3.66 3.66L.35 7.67' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-linejoin:round'/%3E%3C/svg%3E");
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-top-news-item-title::after {
    right: 1.8rem;
  }
}
.p-top-news-btn {
  grid-area: btn;
}
@media screen and (max-width: 767px) {
  .p-top-news-btn {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news-btn .c-link-btn {
    justify-content: flex-end;
  }
}
.p-top-product-inner {
  position: relative;
  max-width: 192rem;
  margin-inline: auto;
  z-index: 1;
}
.p-top-product-header {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-top-product-header {
    align-items: flex-end;
    justify-content: space-between;
  }
}
.p-top-product-header .c-title {
  text-align: center;
}
.p-top-product-header-btn {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-product-header-btn {
    display: flex;
    align-items: center;
  }
}
.p-top-product-contents {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-product-contents {
    width: 48.3333333333%;
  }
}
@media (min-width: 1081px) and (max-width: 1260px) {
  .p-top-product-contents {
    width: 39.6825396825vw;
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .p-top-product-contents {
    width: 58rem;
    margin-inline: auto;
  }
}
.p-top-product-contents a {
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-top-product-contents a:hover {
    color: var(--color-green);
  }
  .p-top-product-contents a:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 4.51 8.02'%3E%3Cpath d='m.35.35 3.66 3.66L.35 7.67' data-name='レイヤー 1' style='fill:none;stroke:%2364be37;stroke-linejoin:round'/%3E%3C/svg%3E");
  }
}
.p-top-product-image {
  position: relative;
  width: 100%;
  max-width: 36rem;
  aspect-ratio: 1/1;
  margin: 2rem 0 0 auto;
  border-radius: 30rem 0 0 30rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-product-image {
    aspect-ratio: 800/600;
    margin: 3rem 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .p-top-product-image {
    max-width: 58rem;
    margin-inline: auto;
  }
}
@media (min-width: 1081px) {
  .p-top-product-image {
    position: absolute;
    top: 6rem;
    right: 0;
    max-width: none;
    width: clamp(63rem, 50vw, 80rem);
    height: clamp(47.2rem, 37.5vw, 60rem);
    margin: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 1601px) {
  .p-top-product-image {
    width: 80rem;
    height: 60rem;
  }
}
@media (max-width: 1080px) {
  .p-top-product-image.is-pc {
    display: none;
  }
}
@media (min-width: 1081px) {
  .p-top-product-image.is-sp {
    display: none;
  }
}
.p-top-product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30rem 0 0 30rem;
  transition: transform 0.3s ease;
  transform: scale(1);
}
.p-top-product-image-text {
  position: absolute;
  bottom: -1rem;
  right: 0;
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-top-product-image-text {
    bottom: -1.8rem;
    font-size: 12rem;
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .p-top-product-image-text {
    bottom: -1.2rem;
    font-size: 7rem;
  }
}
.p-top-product-image-sp {
  position: relative;
  width: 100%;
  max-width: 36rem;
  aspect-ratio: 1/1;
  margin: 2rem 0 0 auto;
  border-radius: 30rem 0 0 30rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-product-image-sp {
    display: none;
  }
}
.p-top-product-image-sp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30rem 0 0 30rem;
}
.p-top-product-image-sp-text {
  position: absolute;
  bottom: -1rem;
  right: 0;
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
}
.p-top-product-list {
  margin: 3rem 0 0;
}
.p-top-product-item {
  border-bottom: 1px solid var(--color-gray);
}
.p-top-product-item-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-product-item-inner {
    gap: 4rem;
  }
}
.p-top-product-item:first-child {
  border-top: 1px solid var(--color-gray);
}
.p-top-product-item a {
  position: relative;
}
.p-top-product-item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  transform: translateY(-50%);
  width: 0.4rem;
  height: 0.8rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 4.51 8.02'%3E%3Cpath d='m.35.35 3.66 3.66L.35 7.67' data-name='レイヤー 1' style='fill:none;stroke:%23000;stroke-linejoin:round'/%3E%3C/svg%3E");
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-top-product-item a::after {
    width: 0.6rem;
    height: 1rem;
  }
}
.p-top-product-item-number {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 4.8rem;
  line-height: 1.5;
  color: var(--color-green);
}
@media screen and (min-width: 768px) {
  .p-top-product-item-number {
    font-size: 6.4rem;
  }
}
.p-top-product-item-content {
  width: 100%;
}
.p-top-product-item-content > a {
  display: block;
  width: 100%;
  padding-right: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-product-item-content > a {
    padding-right: 5rem;
  }
}
.p-top-product-item-content > a::after {
  top: auto;
  right: 0;
  bottom: 0.2rem;
}
@media screen and (min-width: 768px) {
  .p-top-product-item-content > a::after {
    right: 1.8rem;
  }
}
.p-top-product-item-title {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-top-product-item-title {
    font-size: 2.4rem;
  }
}
.p-top-product-item-title span {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-top-product-item-title span {
    font-size: 1.4rem;
  }
}
.p-top-product-item-text {
  color: var(--color-gray2);
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-top-product-item-text {
    font-size: 1.4rem;
  }
}
.p-top-product-item-col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1rem 0 0;
}
.p-top-product-item-col a {
  font-size: 1.1rem;
  padding-right: 1.3rem;
}
@media screen and (min-width: 768px) {
  .p-top-product-item-col a {
    font-size: 1.4rem;
    padding-right: 1.8rem;
  }
}
.p-top-product-item-col a[target=_blank]::after {
  width: 0.9rem;
  height: 0.9rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='_レイヤー_2' data-name='レイヤー 2' viewBox='0 0 12 12'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23000;stroke-linejoin:round%7D%3C/style%3E%3C/defs%3E%3Cg id='_レイヤー_1-2' data-name='レイヤー 1'%3E%3Cpath d='M6.33.5h5.17v5.17M9.5 7.5v4h-9v-9h4M11.5.5l-7 7' class='cls-1'/%3E%3C/g%3E%3C/svg%3E");
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-top-product-item-col a[target=_blank]::after {
    width: 1.1rem;
    height: 1.1rem;
  }
}
@media (any-hover: hover) {
  .p-top-product-item-col a[target=_blank]:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='_レイヤー_2' data-name='レイヤー 2' viewBox='0 0 12 12'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%2364be37;stroke-linejoin:round%7D%3C/style%3E%3C/defs%3E%3Cg id='_レイヤー_1-2' data-name='レイヤー 1'%3E%3Cpath d='M6.33.5h5.17v5.17M9.5 7.5v4h-9v-9h4M11.5.5l-7 7' class='cls-1'/%3E%3C/g%3E%3C/svg%3E");
  }
}
@media screen and (max-width: 767px) {
  .p-top-product .c-link-btn {
    margin: 2rem 0 0;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .p-top-link {
    padding-top: 0;
  }
}
.p-top-link-row {
  display: grid;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top-link-row {
    gap: 4rem;
  }
}
.p-top-link-btn {
  position: relative;
  display: block;
  min-height: 18rem;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-top-link-btn {
    min-height: 26rem;
    border-radius: 2.4rem;
  }
}
@media (any-hover: hover) {
  .p-top-link-btn:hover {
    opacity: 0.7 !important;
  }
}
.p-top-link-btn.contact .p-top-link-btn-title,
.p-top-link-btn.contact .p-top-link-btn-text {
  color: #FFF;
}
.p-top-link-btn picture,
.p-top-link-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  border-radius: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-top-link-btn picture,
  .p-top-link-btn img {
    border-radius: 2.4rem;
  }
}
.p-top-link-btn-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 3rem 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-link-btn-inner {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 4rem;
    padding: 0 8rem 0 7rem;
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .p-top-link-btn-inner {
    padding: 0 4rem 0 3rem;
  }
}
.p-top-link-btn-title {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-top-link-btn-title {
    font-size: 3.6rem;
  }
}
.p-top-link-btn-title .c-icon {
  margin-left: 1rem;
}
.p-top-link-btn-text {
  margin: 1rem 0 0;
  color: var(--color-green);
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-top-link-btn-text {
    margin: 0;
    font-size: 1.6rem;
  }
}
.p-top-link-btn-en {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-top-link-btn-en {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-top-link-btn-en {
    font-size: 5.4rem;
  }
}

.l-main.en .p-top-company-text {
  font-family: var(--font-base);
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .l-main.en .p-top-company-text {
    font-size: 2.8rem;
  }
}

.p-top-english-col {
  display: grid;
  gap: 3rem 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-english-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top-english-col > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.p-top-english .image {
  position: relative;
}
.p-top-english .image img {
  width: 100%;
  aspect-ratio: 580/260;
  border-radius: 1.2rem;
}
.p-top-english h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  font-family: var(--font-roboto);
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  color: #FFF;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 10px #000;
}
@media screen and (min-width: 768px) {
  .p-top-english h2 {
    font-size: 3.6rem;
  }
}
.p-top-english-link {
  display: block;
  margin: 4rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-top-english-link img {
    aspect-ratio: 1200/260 !important;
  }
}

.p-top-english-contact {
  background-color: var(--color-gray-light);
}
.p-top-english-contact h2 {
  color: var(--color-green);
  font-size: 3.6rem;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
}
.p-top-english-contact .text {
  margin: 2rem 0 0;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-top-english-contact .text {
    text-align: center;
  }
}

.l-footer {
  padding: 4rem 0;
  color: #FFF;
  background-color: var(--color-green);
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 8rem 0;
  }
}
.l-footer a {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer a:hover {
    opacity: 0.7;
  }
}
.l-footer-inner {
  display: grid;
  gap: 5rem;
}
@media screen and (min-width: 768px) {
  .l-footer-inner {
    display: flex;
    gap: 3rem 8rem;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .l-footer-inner {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-info {
    order: 2;
    text-align: center;
  }
}
.l-footer-logo {
  display: block;
  width: 18.6rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-footer-logo {
    margin-inline: auto;
  }
}
.l-footer-company {
  margin: 3rem 0 0;
  font-size: 1.6rem;
}
.l-footer-address {
  font-size: 1.4rem;
}
.l-footer-copyright {
  margin: 3rem 0 0;
}
.l-footer-copyright small {
  display: block;
  font-size: 1.1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer-copyright small {
    font-size: 1.2rem;
    text-align: left;
  }
}
.l-footer-nav {
  display: flex;
  gap: 5rem;
}
@media (max-width: 1280px) {
  .l-footer-nav {
    display: grid;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-nav-list {
    min-width: 36.9rem;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .l-footer-nav-list {
    min-width: 31rem;
  }
}
.l-footer-nav-item + .l-footer-nav-item {
  margin: 5rem 0 0;
}
.l-footer-nav-item > span {
  display: block;
  padding-bottom: 1rem;
  font-size: 1.8rem;
  border-bottom: 1px solid #FFF;
}
.l-footer-nav-item > span:not(.no-arrow) {
  position: relative;
}
.l-footer-nav-item > span:not(.no-arrow)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.5rem;
  height: 0.9rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%23fff;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
  transition: none;
}
.l-footer-nav-item ul {
  display: grid;
  gap: 1rem;
  margin: 3rem 0 0;
}
.l-footer-nav-item ul a {
  position: relative;
  display: block;
  font-size: 1.6rem;
}
.l-footer-nav-item ul a::before {
  content: "・";
  margin-right: 0.8rem;
}
.l-footer-nav-item ul a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.5rem;
  height: 0.9rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー 2' viewBox='0 0 5.78 8.73'%3E%3Cpath d='m.71.71 3.66 3.66L.71 8.02' data-name='レイヤー 1' style='fill:none;stroke:%23fff;stroke-miterlimit:10;stroke-width:2px'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
  transition: none;
}
.l-footer-nav-item ul a span {
  font-size: 1.2rem;
}
.l-footer-bottom {
  margin: 5rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .l-footer-bottom {
    justify-content: flex-end;
  }
}
.l-footer-bottom a {
  font-size: 1.3rem;
}

.l-footer.en {
  padding: 1rem 0;
}
.l-footer.en .l-footer-copyright {
  margin: 0;
}
.l-footer.en .l-footer-copyright small {
  text-align: center;
}
/*# sourceMappingURL=style.css.map */
