@charset "UTF-8";
/*----------
reset
----------*/
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, input, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: pointer;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  line-break: after-white-space;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* =========================
  Breakpoints
========================= */
/* =========================
  Font Family
========================= */
@font-face {
  font-family: "ClashDisplay";
  src: url("../fonts/ClashDisplay-Extralight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay";
  src: url("../fonts/ClashDisplay-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay";
  src: url("../fonts/ClashDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay";
  src: url("../fonts/ClashDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay";
  src: url("../fonts/ClashDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay";
  src: url("../fonts/ClashDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
/* =========================
  Color
========================= */
html {
  font-size: 0.5952380952vw; /* PC用の1rem定義 */
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw; /* SP用の1rem定義 */
  }
}

input,
textarea,
select,
button {
  font-size: min(1rem, 16px); /* 最小16pxを確保 */
}

* {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  background-color: #fff;
  color: #333333;
  font-size: clamp(12px, 1.6rem, 16px);
  line-height: 1.8;
  font-weight: 400;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

/* ブラウザ対応 */
a {
  color: inherit;
  text-decoration: none;
}

button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
}

/* リンクスタイル */
a {
  display: block;
  word-break: break-all;
  word-wrap: break-word;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

/* 画像スタイル */
img {
  display: block;
}

/* フォント */
.jp {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.en {
  font-family: "ClashDisplay", sans-serif;
}

/* PC・SP 表示切り替え*/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

/* セクション */
.l-inner {
  width: min(148rem, 100%);
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .l-inner {
    width: 35.5rem;
  }
}
/* h2 */
.c-section-heading {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .c-section-heading {
    margin-bottom: 4rem;
  }
}
.c-section-heading .c-section-heading__en {
  font-family: "ClashDisplay", sans-serif;
  font-size: 3.2rem;
  line-height: 3.9rem;
  padding-left: 2.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-section-heading .c-section-heading__en {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .c-section-heading .c-section-heading__en {
    font-size: 2rem;
  }
}
.c-section-heading .c-section-heading__en::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.4rem;
  background-color: #016837;
  position: absolute;
  top: 1.25rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-section-heading .c-section-heading__en::before {
    top: 0.8rem;
  }
}
.c-section-heading .c-section-heading__title {
  font-size: 7.2rem;
  line-height: 7.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-section-heading .c-section-heading__title {
    font-size: 4rem;
    line-height: 5.8rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .c-section-heading .c-section-heading__title {
    font-size: 3.2rem;
  }
}

/* ボタン */
.c-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 27.2rem;
  height: 6.8rem;
  border-radius: 100rem;
  color: #016837;
  font-size: clamp(12px, 2.4rem, 24px);
  line-height: 3rem;
  font-weight: 500;
  border: 0.1rem solid #016837;
  padding: 0 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-btn {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .c-btn {
    width: 22rem;
    height: 5.8rem;
    font-size: 2rem;
    padding: 0 2.2rem;
  }
}
.c-btn::after {
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  background: url("../images/common/btn_arrow.svg") no-repeat center/contain;
  transition: transform 0.3s;
}
.c-btn:hover::after {
  transform: translateX(6px);
}
@media screen and (max-width: 768px) {
  .c-btn:hover::after {
    transform: none;
  }
}

/*----------
header
----------*/
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 11.1rem;
  padding: 0 4rem 0 8rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 6.3rem;
    padding: 0 0 0 1rem;
  }
}
.l-header.is-scrolled {
  background-color: #fff;
}
.l-header .l-header__logo {
  width: 32.6rem;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__logo {
    width: 22.8rem;
  }
}
.l-header .l-header__logo:hover {
  opacity: 1;
}
.l-header .l-header__inner {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__inner {
    display: none;
  }
}
.l-header .l-header__inner .l-header__gnav {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-right: 4rem;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__inner .l-header__gnav {
    flex-direction: column;
    gap: 2rem;
    margin-right: 0;
  }
}
.l-header .l-header__inner .l-header__gnav li a {
  display: flex;
  gap: 0.4rem;
}
.l-header .l-header__inner .l-header__gnav li a span {
  color: #000;
  font-size: clamp(12px, 1.8rem, 18px);
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__inner .l-header__gnav li a span {
    font-size: 1.6rem;
  }
}
.l-header .l-header__inner .l-header__gnav li a img {
  width: 1.03rem;
}
.l-header .l-header__inner .l-header__link-recruit {
  display: grid;
  place-items: center;
  width: 15.2rem;
  height: 11.1rem;
  background-color: #FF6602;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__inner .l-header__link-recruit {
    width: 90%;
    height: 8rem;
    margin: 3rem auto 0;
  }
}
.l-header .l-header__inner .l-header__link-recruit span {
  color: #fff;
  font-size: clamp(12px, 1.8rem, 18px);
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__inner .l-header__link-recruit span {
    font-size: 1.6rem;
  }
}
.l-header .l-header__inner .l-header__link-contact {
  display: grid;
  place-items: center;
  width: 16.8rem;
  height: 11.1rem;
  background-color: #016837;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__inner .l-header__link-contact {
    width: 90%;
    height: 8rem;
    margin: 2rem auto 0;
  }
}
.l-header .l-header__inner .l-header__link-contact span {
  color: #fff;
  font-size: clamp(12px, 1.8rem, 18px);
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__inner .l-header__link-contact span {
    font-size: 1.6rem;
  }
}
.l-header {
  /* SP表示 */
}
@media screen and (max-width: 768px) {
  .l-header .l-header__hamburger {
    display: grid;
    place-content: center;
    gap: 0.8rem;
    width: 6.3rem;
    height: 6.3rem;
    background-color: #016837;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
  }
  .l-header .l-header__hamburger span {
    display: block;
    height: 0.2rem;
    width: 2.6rem;
    background: #fff;
    border-radius: 0.2rem;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .l-header {
    /* 開いたときに×に変える */
  }
  .l-header.is-open .l-header__hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(0.8rem, 0.8rem);
  }
  .l-header.is-open .l-header__hamburger span:nth-child(2) {
    opacity: 0;
  }
  .l-header.is-open .l-header__hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(0.6rem, -0.6rem);
  }
  .l-header.is-open .l-header__inner {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: #fff;
    padding: 9rem 2rem;
    z-index: 999;
    transition: right 0.3s ease, opacity 0.3s ease;
    right: 0;
    opacity: 1;
  }
  .l-header .l-header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
  }
  .l-header.is-open .l-header__overlay {
    display: block;
  }
}

/* pdfモーダル */
.c-pdf-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.c-pdf-modal.is-open {
  display: flex;
}

.c-pdf-modal__inner {
  width: 80%;
  height: 80%;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-pdf-modal__inner {
    width: 90%;
    height: 50%;
  }
}

.c-pdf-modal iframe {
  width: 100%;
  height: 100%;
}

.c-pdf-modal__close {
  position: absolute;
  top: -7rem;
  right: 0;
  font-size: 5rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-pdf-modal__close {
    top: -6rem;
    font-size: 4rem;
  }
}

/*----------
footer
----------*/
.l-footer {
  display: flex;
  align-items: end;
  gap: 16rem;
  padding: 10rem;
}
@media screen and (max-width: 768px) {
  .l-footer {
    flex-direction: column;
    align-items: start;
    gap: 4rem;
    padding: 8rem 1.9rem 4rem 2rem;
  }
}
.l-footer .l-footer__inner {
  display: grid;
  gap: 2.4rem;
}
.l-footer .l-footer__inner .l-footer__logo img {
  width: 32.6rem;
}
.l-footer .l-footer__inner .l-footer__txt {
  color: #000;
}
.l-footer .l-footer__inner .l-footer__company-info {
  color: #000;
}
.l-footer .l-footer__inner .l-footer__company-info a {
  display: inline-block;
}
.l-footer .l-footer__nav {
  display: grid;
  gap: 4rem;
}
.l-footer .l-footer__nav li {
  padding-left: 3.2rem;
  position: relative;
}
.l-footer .l-footer__nav li::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.4rem;
  background-color: #016837;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.l-footer .l-footer__nav li a span {
  color: #000;
  font-size: clamp(12px, 1.8rem, 18px);
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer__nav li a span {
    font-size: 1.8rem;
  }
}

/*----------
top
----------*/
.p-top .p-top__mv {
  margin-top: -11.1rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__mv {
    margin-top: -6.3rem;
  }
}
.p-top .p-top__mv {
  /*
  .p-top__mv-img img {
    width: 100%;
  }
  */
}
.p-top .p-top__mv .p-top__mv-slider {
  width: 100%;
  height: 101.2rem;
  overflow: hidden;
  clip-path: ellipse(100% 100% at 50% 0%);
}
@media screen and (max-width: 768px) {
  .p-top .p-top__mv .p-top__mv-slider {
    height: 65.1rem;
    clip-path: ellipse(130% 100% at 50% 0%);
  }
}
.p-top .p-top__mv .p-top__mv-slider .p-top__mv-slide {
  width: 100%;
  height: 101.2rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__mv .p-top__mv-slider .p-top__mv-slide {
    height: 65.1rem;
  }
}
.p-top .p-top__mv .p-top__mv-slider .p-top__mv-slide img, .p-top .p-top__mv .p-top__mv-slider .p-top__mv-slide picture {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__mv .p-top__mv-slider .p-top__mv-slide img.is-position-left, .p-top .p-top__mv .p-top__mv-slider .p-top__mv-slide picture.is-position-left {
    -o-object-position: 20% center;
       object-position: 20% center;
  }
}
.p-top .p-top__mv .p-top__mv-wrapper {
  display: grid;
  gap: 4.5rem;
  position: absolute;
  top: 34.7rem;
  left: 10rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__mv .p-top__mv-wrapper {
    gap: 3.7rem;
    top: 30.3rem;
    left: 0;
  }
}
.p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-catch {
  display: grid;
  gap: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-catch {
    gap: 1.5rem;
  }
}
.p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-catch .mv-catch__01, .p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-catch .mv-catch__02 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 7.8rem;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(to right, #ffffff 0%, #DAFFED 95%, transparent 95%);
}
@media screen and (max-width: 768px) {
  .p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-catch .mv-catch__01, .p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-catch .mv-catch__02 {
    font-size: 3.2rem;
    background: linear-gradient(to right, #ffffff 0%, #DAFFED 98%, transparent 98%);
  }
}
.p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-catch .mv-catch__01 {
  color: #000;
  padding: 1.1rem 0 1.7rem 1.3rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-catch .mv-catch__01 {
    padding: 0.8rem 0 0.9rem 0.8rem;
  }
}
.p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-catch .mv-catch__02 {
  color: #016837;
  padding: 1.4rem 0 1.4rem 1.3rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-catch .mv-catch__02 {
    padding: 0.8rem 0 0.9rem 0.8rem;
  }
}
.p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-txt {
  display: grid;
  gap: 1.4rem;
  margin-left: 1.3rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-txt {
    gap: 0.7rem;
    margin-left: 0.8rem;
  }
}
.p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-txt p {
  color: #fff;
  font-size: clamp(12px, 2.4rem, 24px);
  line-height: 1;
  font-weight: 700;
  text-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .p-top .p-top__mv .p-top__mv-wrapper .p-top__mv-txt p {
    font-size: 1.6rem;
  }
}
.p-top .p-top__mv .p-top__scroll {
  position: absolute;
  bottom: 1.8rem;
  right: 8.9rem;
  transform: translateX(-50%);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__mv .p-top__scroll {
    display: none;
  }
}
.p-top .p-top__mv .p-top__scroll-text {
  display: block;
  width: 3.9rem;
  height: 8.6rem;
  color: #FF6602;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 500;
  writing-mode: vertical-rl;
  margin-bottom: 1rem;
}
.p-top .p-top__mv .p-top__scroll-line {
  display: block;
  width: 0.3rem;
  height: 24.1rem;
  background: linear-gradient(to bottom, #FF6602 0%, #FF6602 70%, #ffffff 100%);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.p-top .p-top__mv .p-top__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% {
    top: -30%;
  }
  100% {
    top: 100%;
  }
}
.p-top .p-top__movie {
  padding: 12rem 0 8rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__movie {
    padding: 4rem 0 4.5rem;
  }
}
.p-top .p-top__movie video {
  display: block;
  width: 106rem;
  height: auto;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__movie video {
    width: 100%;
  }
}
.p-top .p-top__topics {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__topics {
    padding: 4rem 0;
  }
}
.p-top .p-top__topics .p-top__topics-list {
  display: flex;
  gap: 8rem;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__topics .p-top__topics-list {
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
  }
}
.p-top .p-top__topics .p-top__topics-list .p-top__topics-item a {
  display: grid;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__topics .p-top__topics-list .p-top__topics-item a {
    grid-template-columns: 10rem 1fr;
    gap: 1rem 1.6rem;
  }
}
.p-top .p-top__topics .p-top__topics-list .p-top__topics-item a .p-top__topics-img {
  width: 44rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__topics .p-top__topics-list .p-top__topics-item a .p-top__topics-img {
    width: 100%;
    grid-row: 1/3;
  }
}
.p-top .p-top__topics .p-top__topics-list .p-top__topics-item a .p-top__topics-img img {
  width: 44rem;
  height: auto;
  aspect-ratio: 440/311.67;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__topics .p-top__topics-list .p-top__topics-item a .p-top__topics-img img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.p-top .p-top__topics .p-top__topics-list .p-top__topics-item a .p-top__topics-meta {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.p-top .p-top__topics .p-top__topics-list .p-top__topics-item a .p-top__topics-meta .p-top__topics-date {
  color: #000;
  font-size: clamp(10px, 1.6rem, 16px);
}
@media screen and (max-width: 768px) {
  .p-top .p-top__topics .p-top__topics-list .p-top__topics-item a .p-top__topics-meta .p-top__topics-date {
    font-size: 1.6rem;
  }
}
.p-top .p-top__topics .p-top__topics-list .p-top__topics-item a .p-top__topics-meta .p-top__topics-cate {
  display: grid;
  place-content: center;
  color: #fff;
  font-size: clamp(10px, 1.4rem, 14px);
  line-height: 1.7rem;
  background-color: #016837;
  padding: 0.333rem 0.5rem 0.567rem 0.6rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__topics .p-top__topics-list .p-top__topics-item a .p-top__topics-meta .p-top__topics-cate {
    font-size: 1.4rem;
  }
}
.p-top .p-top__topics .p-top__topics-list .p-top__topics-item a .p-top__topics-ttl {
  font-size: clamp(12px, 2.4rem, 24px);
  line-height: 3.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__topics .p-top__topics-list .p-top__topics-item a .p-top__topics-ttl {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.p-top .p-top__topics .c-btn {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__topics .c-btn {
    margin: 0 auto;
  }
}
.p-top .p-top__strength {
  padding: 8rem 0 12rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__strength {
    padding: 4rem 0 8rem;
  }
}
.p-top .p-top__strength .p-top__strength-contents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__strength .p-top__strength-contents {
    grid-template-columns: 1fr;
  }
}
.p-top .p-top__strength .p-top__strength-contents .p-top__strength-item {
  display: grid;
  align-content: baseline;
  gap: 3.2rem;
  background-color: #016837;
  border-radius: 2rem;
  padding: 4rem 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__strength .p-top__strength-contents .p-top__strength-item {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__strength .p-top__strength-contents .p-top__strength-item {
    gap: 1.6rem;
  }
}
.p-top .p-top__strength .p-top__strength-contents .p-top__strength-item:nth-of-type(2) .p-top__strength-img {
  -o-object-position: left;
     object-position: left;
}
.p-top .p-top__strength .p-top__strength-contents .p-top__strength-item .p-top__strength-img {
  width: 23.7rem;
  height: 23.7rem;
  border-radius: 50rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.p-top .p-top__strength .p-top__strength-contents .p-top__strength-item .p-top__strength-h3 {
  color: #fff;
  font-size: clamp(12px, 2.4rem, 24px);
  line-height: 3.5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__strength .p-top__strength-contents .p-top__strength-item .p-top__strength-h3 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__strength .p-top__strength-contents .p-top__strength-item .p-top__strength-h3 {
    font-size: 1.7rem;
  }
}
.p-top .p-top__strength .p-top__strength-contents .p-top__strength-item p {
  color: #fff;
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__strength .p-top__strength-contents .p-top__strength-item p {
    font-size: 1.4rem;
  }
}
.p-top .p-top__service {
  background-color: #EEEEEE;
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__service {
    padding: 4rem 0 8rem;
  }
}
.p-top .p-top__service .p-top__service-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__service .p-top__service-contents {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__service .p-top__service-contents {
    gap: 2rem;
  }
}
.p-top .p-top__service .p-top__service-contents .p-top__service-item {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 46.5rem;
  height: 31rem;
  padding: 22.5rem 2.4rem 1.7rem;
  border-radius: 2rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__service .p-top__service-contents .p-top__service-item {
    max-width: 500px;
    width: 100%;
    height: 25rem;
    padding: 18.145rem 1.935rem 1.371rem 1.9rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__service .p-top__service-contents .p-top__service-item {
    height: auto;
    padding: 10rem 1.935rem 1.371rem 1.9rem;
    aspect-ratio: 375/250;
  }
}
.p-top .p-top__service .p-top__service-contents .p-top__service-item::before {
  content: "";
  inset: 0;
  background: rgba(1, 104, 55, 0.6);
  border-radius: 2rem;
  position: absolute;
  z-index: 0;
}
.p-top .p-top__service .p-top__service-contents .p-top__service-item:first-of-type {
  background-image: url("../images/top/top_service_bg01.png");
}
.p-top .p-top__service .p-top__service-contents .p-top__service-item:nth-of-type(2) {
  background-image: url("../images/top/top_service_bg03.png");
}
.p-top .p-top__service .p-top__service-contents .p-top__service-item:nth-of-type(3) {
  background-image: url("../images/top/top_service_bg02.png");
}
.p-top .p-top__service .p-top__service-contents .p-top__service-item:nth-of-type(4) {
  background-image: url("../images/top/top_service_bg04.png");
}
.p-top .p-top__service .p-top__service-contents .p-top__service-item:nth-of-type(5) {
  background-image: url("../images/top/top_service_bg05.png");
}
.p-top .p-top__service .p-top__service-contents .p-top__service-item:hover .c-btn__wh::after {
  transform: translateX(6px);
}
@media screen and (max-width: 768px) {
  .p-top .p-top__service .p-top__service-contents .p-top__service-item:hover .c-btn__wh::after {
    transform: none;
  }
}
.p-top .p-top__service .p-top__service-contents .p-top__service-item .p-top__service-ttl {
  color: #fff;
  font-size: 3.2rem;
  line-height: 4.6rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__service .p-top__service-contents .p-top__service-item .p-top__service-ttl {
    font-size: 2.4rem;
    line-height: 5.484rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__service .p-top__service-contents .p-top__service-item .p-top__service-ttl {
    font-size: 2rem;
    line-height: 4.5rem;
  }
}
.p-top .p-top__service .p-top__service-contents .p-top__service-item .p-top__service-btn {
  position: relative;
  z-index: 1;
}
.p-top .p-top__service .p-top__service-contents .p-top__service-item .p-top__service-btn .c-btn__wh {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6.8rem;
  border-radius: 100rem;
  border: 0.1rem solid #fff;
  padding: 0 3.8rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__service .p-top__service-contents .p-top__service-item .p-top__service-btn .c-btn__wh {
    height: 5.484rem;
    padding: 0 2.984rem 0 3.065rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__service .p-top__service-contents .p-top__service-item .p-top__service-btn .c-btn__wh {
    height: 4.5rem;
    padding: 0 2rem 0 2.4rem;
  }
}
.p-top .p-top__service .p-top__service-contents .p-top__service-item .p-top__service-btn .c-btn__wh::after {
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  background: url("../images/common/btn_arrow_wh.svg") no-repeat center/contain;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__service .p-top__service-contents .p-top__service-item .p-top__service-btn .c-btn__wh::after {
    width: 1.532rem;
    height: 1.532rem;
  }
}
.p-top .p-top__step {
  padding: 12rem 0 8rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__step {
    padding: 8rem 0;
  }
}
.p-top .p-top__step .c-section-heading {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__step .c-section-heading {
    width: 35.5rem;
    margin-bottom: 4rem;
    margin-inline: auto;
  }
}
.p-top .p-top__step .p-top__step-contents {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 6.4rem;
  margin-top: -0.3rem;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__step .p-top__step-contents {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__step .p-top__step-contents {
    gap: 4rem;
  }
}
.p-top .p-top__step .p-top__step-contents .p-top__step-img {
  width: 77.6rem;
  height: 54.1rem;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__step .p-top__step-contents .p-top__step-img {
    width: 100%;
    height: 26.2rem;
  }
}
.p-top .p-top__step .p-top__step-contents .p-top__step-list {
  width: 64rem;
  display: grid;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__step .p-top__step-contents .p-top__step-list {
    width: 35.5rem;
    margin-inline: auto;
  }
}
.p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  border-radius: 2rem;
  padding: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.6rem;
  }
}
.p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item:first-of-type {
  background-color: rgba(1, 104, 55, 0.1);
}
.p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item:nth-of-type(2) {
  background-color: rgba(1, 104, 55, 0.2);
}
.p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item:nth-of-type(3) {
  background-color: rgba(1, 104, 55, 0.3);
}
.p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item:nth-of-type(4) {
  background-color: rgba(1, 104, 55, 0.4);
}
.p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item .step-ttl__number {
  display: grid;
  place-content: center;
  width: 4rem;
  height: 4rem;
  color: #fff;
  font-size: clamp(10px, 1.829rem, 18.29px);
  line-height: 2.8rem;
  font-weight: 600;
  background-color: #016837;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item .step-ttl__number {
    font-size: 1.829rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item .step-ttl__number {
    width: 3rem;
    height: 3rem;
    font-size: 1.4rem;
  }
}
.p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item .p-top__step-txtarea {
  display: grid;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item .p-top__step-txtarea {
    width: 26.7rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item .p-top__step-txtarea {
    width: 17rem;
    gap: 1rem;
  }
}
.p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item .p-top__step-txtarea .p-top__step-ttl {
  font-size: clamp(12px, 2.4rem, 24px);
  line-height: 3.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item .p-top__step-txtarea .p-top__step-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__step .p-top__step-contents .p-top__step-list .p-top__step-item .p-top__step-txtarea .p-top__step-ttl {
    font-size: 1.6rem;
  }
}
.p-top .p-top__step .c-btn {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__step .c-btn {
    margin: 0 auto;
  }
}
.p-top .p-top__recruit {
  padding: 8.733rem 0 19.767rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__recruit {
    padding: 5.2rem 0 6.1rem;
  }
}
.p-top .p-top__recruit .l-inner {
  padding: 15.7rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__recruit .l-inner {
    padding: 2.8rem 0 36.6rem;
  }
}
.p-top .p-top__recruit .l-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 247.2rem;
  height: 97.5rem;
  background: #FFD5B9;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__recruit .l-inner::before {
    width: 115.7rem;
    height: 85.7rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__recruit .l-inner::before {
    height: 78rem;
  }
}
.p-top .p-top__recruit .l-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 247.2rem;
  height: 97.5rem;
  background: url("../images/top/top_recruit_bg_pc.png") no-repeat center/contain;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__recruit .l-inner::after {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: 22.7rem;
    background: url("../images/top/top_recruit_bg_sp.png") no-repeat center/contain;
    top: 53.1rem;
    left: 0;
    transform: none;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__recruit .l-inner::after {
    top: 47rem;
  }
}
.p-top .p-top__recruit .c-section-heading {
  position: relative;
  z-index: 1;
}
.p-top .p-top__recruit .c-section-heading .c-section-heading__en::before {
  background-color: #FF6602;
}
.p-top .p-top__recruit .p-top__recruit-contents {
  display: grid;
  gap: 6.4rem;
  width: 61rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__recruit .p-top__recruit-contents {
    gap: 4rem;
    width: 100%;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__recruit .p-top__recruit-contents {
    gap: 2rem;
  }
}
.p-top .p-top__recruit .p-top__recruit-contents .p-top__recruit-catch {
  font-size: 4.8rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__recruit .p-top__recruit-contents .p-top__recruit-catch {
    font-size: 2.8rem;
    line-height: 1.8;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__recruit .p-top__recruit-contents .p-top__recruit-catch {
    font-size: 2.2rem;
  }
}
.p-top .p-top__recruit .p-top__recruit-contents .p-top__recruit-txt {
  font-size: clamp(12px, 2.4rem, 24px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__recruit .p-top__recruit-contents .p-top__recruit-txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__recruit .p-top__recruit-contents .p-top__recruit-txt {
    font-size: 1.4rem;
  }
}
.p-top .p-top__recruit .p-top__recruit-contents .p-top__recruit-btn .c-btn {
  color: #FF6602;
  border: 0.1rem solid #FF6602;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__recruit .p-top__recruit-contents .p-top__recruit-btn .c-btn {
    margin: 0 auto;
  }
}
.p-top .p-top__recruit .p-top__recruit-contents .p-top__recruit-btn .c-btn::after {
  background: url("../images/common/btn_arrow_or.svg") no-repeat center/contain;
}
.p-top .p-top__contact {
  padding: 10rem 0;
  background-color: #016837;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__contact {
    width: 35.5rem;
    margin: 0 auto;
    padding: 4rem 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top .p-top__contact .l-inner {
    padding: 0 1rem;
  }
}
.p-top .p-top__contact .c-section-heading {
  margin-bottom: 0;
}
.p-top .p-top__contact .c-section-heading .c-section-heading__en {
  color: #fff;
}
.p-top .p-top__contact .c-section-heading .c-section-heading__en::before {
  background-color: #fff;
}
.p-top .p-top__contact .c-section-heading .c-section-heading__title {
  color: #fff;
}
.p-top .p-top__contact .p-top__contact-contents {
  display: flex;
  justify-content: center;
  align-items: end;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__contact .p-top__contact-contents {
    flex-direction: column;
  }
}
.p-top .p-top__contact .p-top__contact-contents .p-top__contact-txtarea {
  display: grid;
  gap: 6.4rem;
  width: 94.4rem;
  border-right: 0.1rem solid #fff;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__contact .p-top__contact-contents .p-top__contact-txtarea {
    gap: 4rem;
    width: 100%;
    border-right: none;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__contact .p-top__contact-contents .p-top__contact-txtarea {
    gap: 2rem;
  }
}
.p-top .p-top__contact .p-top__contact-contents .p-top__contact-txtarea .p-top__contact-catch {
  color: #fff;
  font-size: 4.8rem;
  line-height: 7.7rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__contact .p-top__contact-contents .p-top__contact-txtarea .p-top__contact-catch {
    font-size: 2.8rem;
    line-height: 4.5rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__contact .p-top__contact-contents .p-top__contact-txtarea .p-top__contact-catch {
    font-size: 2.2rem;
  }
}
.p-top .p-top__contact .p-top__contact-contents .p-top__contact-txtarea .p-top__contact-txt {
  color: #fff;
  font-size: clamp(12px, 2.4rem, 24px);
  line-height: 3.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__contact .p-top__contact-contents .p-top__contact-txtarea .p-top__contact-txt {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__contact .p-top__contact-contents .p-top__contact-txtarea .p-top__contact-txt {
    font-size: 1.4rem;
  }
}
.p-top .p-top__contact .p-top__contact-contents .p-top__contact-linkarea {
  display: grid;
  gap: 4rem;
  width: 40.6rem;
  padding-left: 8rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__contact .p-top__contact-contents .p-top__contact-linkarea {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__contact .p-top__contact-contents .p-top__contact-linkarea {
    gap: 2rem;
  }
}
.p-top .p-top__contact .p-top__contact-contents .p-top__contact-linkarea .p-top__contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
  width: 32.6rem;
  height: 6.8rem;
  border-radius: 100rem;
  color: #fff;
  font-size: clamp(12px, 2.4rem, 24px);
  line-height: 3.5rem;
  font-weight: 500;
  border: 0.1rem solid #fff;
  padding: 0 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__contact .p-top__contact-contents .p-top__contact-linkarea .p-top__contact-btn {
    font-size: 2.4rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .p-top .p-top__contact .p-top__contact-contents .p-top__contact-linkarea .p-top__contact-btn {
    font-size: 2rem;
  }
}
.p-top .p-top__contact .p-top__contact-contents .p-top__contact-linkarea .p-top__contact-btn .contact-btn__icon {
  width: 3.613rem;
  height: 3.613rem;
}

/*----------
top
----------*/
.p-comingsoon {
  padding: 10rem 0;
}
.p-comingsoon .c-section-heading__title, .p-comingsoon p {
  text-align: center;
}
.p-comingsoon p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-comingsoon p {
    font-size: 1.4rem;
  }
}
/*# sourceMappingURL=style.css.map */
