@charset "UTF-8";
/* =====================================================
  1.0 - Foundation
===================================================== */
/* ===============================================
  関数の登録
=============================================== */
/*
  数値から単位を取り除く
----------------------------------------------- */
/*
  px→remの計算
----------------------------------------------- */
/*
  px→vwの計算
----------------------------------------------- */
/*
  文字列からワードを検索して置換する
----------------------------------------------- */
/*
  @font-faceの設定
----------------------------------------------- */
/*
  object-fit
----------------------------------------------- */
/* =====================================================
  1.0 - Foundation
===================================================== */
/*
  Reset
-----------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
}

address {
  font-style: normal;
}

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

svg {
  max-width: 100%;
  height: auto;
  fill: currentcolor;
  vertical-align: bottom;
}

input,
textarea {
  appearance: none;
  outline: 0;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

button {
  padding: 0;
  background: none;
  border: none;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
/*
  Base
-----------------------------------------------------*/
html *,
html *:before,
html *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

*,
:before,
:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  font-size: max(0.6px, 0.078125vw);
}
@media screen and (max-width: 767px) {
  html {
    font-size: max(0.55px, 0.1333333333vw);
  }
}

body {
  position: relative;
  height: 100%;
  height: 100vh;
  height: 100svh;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 300;
  font-size: 13px;
  font-family: "montserrat", "source-han-sans-japanese", "Hiragino Kaku Gothic ProN", "Yu Gothic", "yugothic", sans-serif;
  color: #333333;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  background: #e6e6e6;
  font-feature-settings: "palt";
  font-weight: 300;
}

a {
  color: #333333;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-tab {
  display: none;
}
@media screen and (max-width: 1023px) {
  .is-tab {
    display: block;
  }
}

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

/* =====================================================
  2.0 - Layout
===================================================== */
/* =====================================================
  1.0 - Foundation
===================================================== */
/*
----------------------------------------------- */
.l-container {
  margin: 0 60rem;
}
@media screen and (max-width: 767px) {
  .l-container {
    margin: 0 40rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.l-header {
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 59.5px;
  z-index: 10;
  transition: background-color 0.5s cubic-bezier(0.33, 1, 0.85, 1);
}
@media screen and (max-width: 1110px) {
  .l-header {
    height: auto;
    padding: 10px;
  }
}
.l-header.open {
  background-color: transparent;
}
.l-header__logo {
  max-width: 129px;
  width: 100%;
  margin-left: 12px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1110px) {
  .l-header__logo {
    margin-left: 0;
    width: 100%;
    max-width: 97px;
  }
}
.l-header__logo a {
  display: flex;
  align-items: center;
}
.l-header__logo a p {
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.05em;
  padding-left: 11px;
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .l-header__logo a p {
    font-size: 12px;
    margin-left: 8px;
  }
}
.l-header__main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .l-header__main {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100vh;
    height: 100svh;
    display: block;
    top: 0;
    left: 0;
    transition: 0.5s cubic-bezier(0.33, 1, 0.85, 1);
  }
  .l-header__main.open {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 1110px) {
  .l-header__main nav {
    overflow-y: auto;
  }
}
.l-header__nav {
  display: flex;
  gap: 0 30rem;
  margin-right: 30rem;
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    gap: clamp(10px, 10.8vw, 30px);
    flex-direction: column;
    margin-right: 0;
    max-width: fit-content;
    width: 100%;
    margin: 140rem auto 0;
    height: 71vh;
    height: 71svh;
  }
}
.l-header__nav-item {
  text-align: center;
  font-size: clamp(10px, 1.40625vw, 14px);
  padding: 10px 0;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-item {
    font-size: 50rem;
    font-size: clamp(14px, 6.6666666667vw, 32px);
    text-align: left;
    padding: 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-item:last-child {
    padding-bottom: 50px;
  }
}
.l-header__nav-item:hover a {
  color: #f15a24;
}
.l-header__nav-item:hover .l-header__nav-item-child a {
  color: #ffffff;
}
.l-header__nav-item span {
  display: block;
  font-size: clamp(8px, 1.40625vw, 10px);
}
@media screen and (max-width: 1023px) {
  .l-header__nav-item span {
    font-size: clamp(12px, 3.7333333333vw, 18px);
  }
}
.l-header__nav-item a {
  color: #fff;
  display: block;
  transition: 0.2s;
}
.l-header__nav-item:hover .l-header__nav-item-child {
  opacity: 1;
  visibility: visible;
}
.l-header__entry {
  background: #7cbe35;
  max-width: 140px;
  width: 100%;
  height: 100%;
  font-size: 18px;
  transition: 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-header__entry {
    background: #fff;
    border: 1px solid #f15a24;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    height: auto;
    width: 87%;
    max-width: 100%;
    font-size: clamp(20px, 3.7333333333vw, 28px);
  }
}
.l-header__entry:hover {
  background: #f15a24;
}
.l-header__entry a {
  padding: 14px 15px 13px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .l-header__entry a {
    color: #f15a24;
  }
}
.l-header__entry a span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.l-header__entry-sp {
  display: none;
}
@media screen and (max-width: 1110px) {
  .l-header__entry-sp {
    display: block;
    font-size: 16px;
    width: 120px;
    background: #7cbe35;
    height: 54.4px;
    position: absolute;
    right: 78px;
    padding: 0 10px;
    display: flex;
  }
  .l-header__entry-sp.close {
    display: none;
  }
  .l-header__entry-sp a {
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .l-header__entry-sp a span {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__entry-sp {
    height: 51px;
    right: 55px;
    width: 100px;
    font-size: 13px;
  }
}
.l-header__bk {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s cubic-bezier(0.33, 1, 0.85, 1);
}
@media screen and (max-width: 1023px) {
  .l-header__bk {
    background-color: rgba(241, 90, 36, 0.7);
  }
}
.l-header__bk.open {
  opacity: 1;
  visibility: visible;
}
.l-header__button {
  display: none;
  position: absolute;
  right: 27rem;
  width: 47px;
}
@media screen and (max-width: 1110px) {
  .l-header__button {
    display: block;
    width: 47px;
    right: 13.5px;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .l-header__button {
    width: 47rem;
  }
}
.l-header__button span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin-top: 6px;
}
@media screen and (max-width: 1023px) {
  .l-header__button span {
    height: 2rem;
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__button span {
    margin-top: 4px;
  }
}
.l-header__button span:first-child {
  margin-top: 0;
}
.l-header__button.close span {
  transition: 0.3s;
}
.l-header__button.close span:nth-child(1) {
  transform: rotate(45deg);
  top: 5px;
}
.l-header__button.close span:nth-child(2) {
  display: none;
}
.l-header__button.close span:nth-child(3) {
  transform: rotate(-45deg);
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.l-footer {
  position: relative;
  width: 100%;
  background: #333333;
  padding: 46px 0 15rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 70rem 0 35rem;
  }
}
.l-footer.top {
  background: #f15a24;
}
.l-footer__main {
  max-width: 1053px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__main {
    flex-direction: column;
  }
}
.l-footer__logo {
  width: 13.200379867%;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 167rem;
  }
}
.l-footer__text {
  width: 45.584045584%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer__text {
    max-width: fit-content;
    width: 100%;
    margin: 60rem 0 0 -70rem;
  }
}
.l-footer__text dt {
  font-size: clamp(12px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .l-footer__text dt {
    font-size: 36rem;
  }
}
.l-footer__text dd {
  font-size: clamp(10px, 1.09375vw, 14px);
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .l-footer__text dd {
    font-size: 24rem;
  }
}
.l-footer__button {
  width: 30.3893637227%;
  background: #fff;
  border-radius: 40rem;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .l-footer__button {
    border-radius: 50rem;
  }
}
.l-footer__button:hover {
  background: #7cbe35;
}
.l-footer__button:hover a {
  color: #fff;
}
.l-footer__button a {
  font-size: clamp(12px, 1.5625vw, 20px);
  padding: clamp(5px, 0.859375vw, 11px) clamp(10px, 1.953125vw, 25px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer__button a {
    font-size: 32rem;
    padding: 15rem 35rem;
  }
}
.l-footer__button a img {
  width: clamp(28px, 2.734375vw, 35px);
  height: auto;
}
.l-footer__button a span {
  font-size: clamp(8px, 1.5625vw, 20px);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .l-footer__button a span {
    font-size: 28rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__button {
    width: 481rem;
    margin-top: 50rem;
  }
}
.l-footer__copy {
  color: #fff;
  font-size: 10px;
  margin-top: 60rem;
  margin-left: 28px;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 15rem;
    margin-left: 57rem;
  }
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
/* =====================================================
  1.0 - Foundation
===================================================== */
.hover {
  transition: 0.3s;
}
.hover:hover {
  opacity: 0.9;
}

.observer-up {
  transform: translateY(100rem);
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
  opacity: 0;
  will-change: transform, opacity;
}
.observer-up[observer=true] {
  transform: translateY(0);
  opacity: 1;
}

.observer-up02 {
  transform: translateY(40%);
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
  opacity: 0;
  will-change: transform, opacity;
}
.observer-up02[observer=true] {
  transform: translateY(-50%);
  opacity: 1;
}
.observer-up02--top[observer=true] {
  transform: translateY(0%);
}

.observer-wrapper .observer-up-2, .observer-wrapper .observer-up-3 {
  transform: translateY(100rem);
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
  opacity: 0;
  will-change: transform, opacity;
}
.observer-wrapper[observer=true] .observer-up {
  transform: translateY(0%);
  opacity: 1;
  z-index: 1;
  transition-delay: 0.2s;
}
.observer-wrapper[observer=true] .observer-up-2 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.observer-wrapper[observer=true] .observer-up-3 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1s;
}

.observer-fade {
  display: block;
  opacity: 0;
  transform: translateY(100rem) scale(0.8);
  transition: opacity 0.3s ease, transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.observer-fade.p-top__topic-tab {
  transition-delay: 0.4s;
}
.observer-fade.p-top__business-item:nth-child(1) {
  transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .observer-fade.p-top__business-item:nth-child(1) {
    transition-delay: 0s;
  }
}
.observer-fade.p-top__business-item:nth-child(2) {
  transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .observer-fade.p-top__business-item:nth-child(2) {
    transition-delay: 0s;
  }
}
.observer-fade.p-top__business-item:nth-child(3) {
  transition-delay: 0.7s;
}
@media screen and (max-width: 767px) {
  .observer-fade.p-top__business-item:nth-child(3) {
    transition-delay: 0s;
  }
}
.observer-fade.p-top__recruit-item:nth-child(2) {
  transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .observer-fade.p-top__recruit-item:nth-child(2) {
    transition-delay: 0s;
  }
}
.observer-fade[observer=true] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-title {
  position: relative;
  z-index: 1;
  border-radius: 0 60rem 60rem 0;
  color: #fff;
  background: #333;
  width: max-content;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 118rem;
  font-size: 30rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0 55rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 34rem;
    height: 128rem;
  }
}
.c-title--about {
  min-width: 403rem;
}
.c-title--graduate {
  font-size: 24rem;
  padding-bottom: 0;
}
.c-title--person {
  font-size: 24rem;
  padding-bottom: 0;
  top: -58rem;
}
.c-title span {
  display: block;
  font-size: 18rem;
}
@media screen and (max-width: 767px) {
  .c-title span {
    font-size: 20rem;
  }
}
.c-title--jp span {
  font-size: 20rem;
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .c-title--jp span {
    font-size: 25rem;
    margin-top: 9rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-title-line {
  margin-bottom: 64rem;
}
.c-title-line--mb-small {
  margin-bottom: 40rem;
}
@media screen and (max-width: 767px) {
  .c-title-line--mb-small {
    margin-bottom: 50rem;
  }
}
.c-title-line h2 {
  font-size: 24rem;
  letter-spacing: 0.05em;
  border-bottom: 0.5rem solid #333333;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-title-line h2 {
    font-size: 34rem;
    margin-bottom: 40rem;
  }
}
.c-title-line p {
  margin-top: 24rem;
  font-size: 18rem;
}
@media screen and (max-width: 767px) {
  .c-title-line p {
    margin-top: 20rem;
    font-size: 24rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-kv {
  position: relative;
  z-index: 1;
  margin-bottom: 55rem;
}
@media screen and (max-width: 767px) {
  .c-kv {
    margin-top: 51px;
  }
}
.c-kv img {
  opacity: 0;
}
.c-kv img.active {
  animation: fadeIn 2.5s cubic-bezier(0.33, 1, 0.85, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-kv__bk {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(241, 90, 36, 0.6);
  width: 43.984375%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-kv__bk {
    width: 60%;
    background-color: rgba(241, 90, 36, 0.7);
  }
}
.c-kv__title {
  position: absolute;
  top: 92rem;
  left: 57rem;
  z-index: 1;
  color: #fff;
  font-size: 60rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .c-kv__title {
    top: 110rem;
  }
}
@media screen and (max-width: 767px) {
  .c-kv__title {
    top: 50rem;
    left: 30rem;
    font-size: 50rem;
    line-height: 1.2;
  }
}
.c-kv__title span {
  display: block;
  font-size: 20rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .c-kv__title span {
    margin-top: 13rem;
  }
}
.c-kv__detail {
  color: #fff;
  position: absolute;
  z-index: 1;
  bottom: 96rem;
  left: 57rem;
}
@media screen and (max-width: 767px) {
  .c-kv__detail {
    left: 30rem;
    bottom: 30rem;
  }
}
.c-kv__detail-title {
  font-size: 36rem;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-kv__detail-title {
    font-size: 28rem;
  }
}
.c-kv__detail-text {
  font-size: 20rem;
  margin-top: 10rem;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-button {
  position: relative;
  z-index: 1;
  width: 91.25%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 27rem 30rem;
}
@media screen and (max-width: 767px) {
  .c-button {
    gap: 27rem 5rem;
    width: 95%;
  }
}
.c-button li {
  border-radius: 40rem;
  text-align: center;
  background: #333333;
  width: calc((100% - 60rem) / 3);
  font-size: 18rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button li {
    width: calc((100% - 10rem) / 3);
  }
}
.c-button li.active {
  background: #f15a24;
  pointer-events: none;
}
.c-button li.disabled {
  pointer-events: none;
  background: #929292;
}
.c-button li.disabled a {
  color: #cacaca;
}
.c-button li:hover {
  background: #f15a24;
}
.c-button li a {
  display: block;
  padding: 25rem 0;
  color: #fff;
}
.c-button--small li {
  width: calc((100% - 90rem) / 4);
}
@media screen and (max-width: 767px) {
  .c-button--small li {
    width: calc((100% - 5rem) / 2);
  }
}
.c-button + .c-button {
  margin-top: 27rem;
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-button--entry li {
    width: calc((100% - 5rem) / 2);
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-page-header__border {
  position: absolute;
  height: 100%;
  background: #333;
  width: 12rem;
  height: 100%;
  top: 0;
  left: 0;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-page-header__border[observer=true] {
  transform: scaleY(1);
}
.c-page-header__box {
  position: relative;
  background: #f15a24;
  width: 790rem;
  border-radius: 0 0 56rem 0;
  color: #fff;
  padding-top: calc(44px + 50rem);
  padding-left: 50rem;
  padding-right: 20rem;
  padding-bottom: 58rem;
}
@media screen and (max-width: 767px) {
  .c-page-header__box {
    width: 90%;
    height: auto;
    padding: calc(32px + 80rem) 20rem 65rem 40rem;
    border-radius: 0 0 70rem 0;
  }
}
.c-page-header__title--en {
  font-size: 60rem;
  line-height: 1.2em;
  margin-bottom: 0.3em;
  font-weight: 400;
}
.c-page-header__title--en--post {
  font-size: 42rem;
}
.c-page-header__title--ja {
  font-size: 20rem;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-data__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24rem;
}
@media screen and (max-width: 767px) {
  .c-data__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16rem;
  }
}
.c-data__grid--2col {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .c-data__grid--2col {
    grid-template-columns: 1fr;
  }
}
.c-data__grid--2col .c-data__item {
  padding-bottom: 30rem;
}
.c-data__grid--3col {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36rem;
}
@media screen and (max-width: 767px) {
  .c-data__grid--3col {
    grid-template-columns: 1fr 1fr;
    gap: 24rem;
  }
}
.c-data__grid--1fr-2fr {
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 767px) {
  .c-data__grid--1fr-2fr {
    grid-template-columns: 1fr;
    gap: 24rem;
  }
}
.c-data__grid--welfare {
  gap: 24rem 14rem;
}
.c-data__item {
  background: #fff;
  border-radius: 28rem;
  padding: 30rem 14rem 20rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24rem;
  min-height: 188rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-data__item {
    min-height: 188rem;
    border-radius: 24rem;
  }
}
.c-data__item--data {
  padding: 30rem 14rem 42rem;
  gap: 20rem;
}
.c-data__item--training {
  border-radius: 51rem;
  min-height: auto;
  padding: 24rem 14rem 30rem;
  gap: 22rem;
}
@media screen and (max-width: 767px) {
  .c-data__item--training {
    min-height: auto;
    padding: 30rem;
    gap: 22rem;
    border-radius: 60rem;
  }
}
@media screen and (max-width: 767px) {
  .c-data__item--training p {
    text-align: left;
  }
}
.c-data__item--welfare {
  padding: 30rem 5rem;
  border-radius: 51rem;
}
@media screen and (max-width: 767px) {
  .c-data__item--welfare {
    min-height: auto;
    padding: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .c-data__item--welfare p {
    text-align: left;
  }
}
.c-data__item__icon {
  background: #666;
  width: 82rem;
  height: 82rem;
  border-radius: 41rem;
  padding: 0;
  position: absolute;
  top: 16rem;
  left: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-data__item__icon {
    width: 100rem;
    height: 100rem;
    border-radius: 50rem;
  }
}
.c-data__item__icon img {
  object-fit: contain;
  max-width: 60%;
  max-height: 60%;
}
.c-data__item__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10rem;
}
.c-data__item h3 {
  font-size: 24rem;
  line-height: 1.2em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-data__item h3 {
    font-size: 28rem;
  }
}
.c-data__item p {
  font-size: 16rem;
}
@media screen and (max-width: 767px) {
  .c-data__item p {
    font-size: 20rem;
  }
}
.c-data__item__data {
  display: block;
  font-size: 60rem;
  line-height: 0.8em;
  color: #00be7d;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.c-data__item__data__unit {
  font-size: 20rem;
  color: #333;
  display: block;
  margin-top: 16rem;
  line-height: 1em;
}
.c-data__item__notice {
  font-size: 12rem;
  text-align: center;
  display: block;
  position: absolute;
  bottom: 10rem;
  transform: translateX(-50%);
  left: 50%;
}
@media screen and (max-width: 767px) {
  .c-data__item__notice {
    font-size: 16rem;
  }
}
.c-data__item__cat {
  font-size: 16rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
@media screen and (max-width: 767px) {
  .c-data__item__cat {
    font-size: 21rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-table {
  font-family: "source-han-sans-japanese", "Hiragino Kaku Gothic ProN", "Yu Gothic", "yugothic", sans-serif;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .c-table {
    max-width: none;
  }
}
.c-table__title {
  font-size: 30rem;
  font-weight: 400;
  margin-bottom: 1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-table__title {
    font-size: 34rem;
  }
}
.c-table__text {
  font-size: 20rem;
}
.c-table table {
  display: block;
}
.c-table table tbody {
  display: grid;
  gap: 28rem;
}
.c-table table tr {
  display: grid;
  gap: 50rem;
  grid-template-columns: 313rem 1fr;
}
@media screen and (max-width: 767px) {
  .c-table table tr {
    grid-template-columns: 1fr;
    gap: 10rem;
  }
}
.c-table table tr th {
  font-weight: 400;
  color: #fff;
  border-radius: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20rem;
  padding: 20rem;
}
@media screen and (max-width: 767px) {
  .c-table table tr th {
    font-size: 24rem;
  }
}
.c-table table tr td {
  font-size: 14rem;
}
@media screen and (max-width: 767px) {
  .c-table table tr td {
    font-size: 20rem;
    background: #fff;
    border-radius: 14rem;
    padding: 20rem;
  }
}
.c-table--odd-green table tr:nth-child(odd) th {
  background: #00be7d;
}
.c-table--odd-green table tr:nth-child(even) th {
  background: #333;
}
.c-table--even-green table tr:nth-child(even) th {
  background: #00be7d;
}
.c-table--even-green table tr:nth-child(odd) th {
  background: #333;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-entry__main {
  margin-top: 65rem;
}
.c-entry__sec {
  margin-top: 50rem;
}
.c-entry__title {
  font-size: 24rem;
  border-bottom: 1px solid #333;
  width: 91.25%;
  margin: 0 auto 56rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .c-entry__title {
    font-size: 32rem;
  }
}
.c-entry__obi {
  width: 100%;
  height: 113rem;
  background: #fff;
}
.c-entry__obi--gray {
  background: #e6e6e6;
}
.c-entry__mynavi {
  max-width: 472px;
  width: 100%;
}

.c-entry-item {
  position: relative;
}
.c-entry-item__bg01 {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -100rem;
  width: 396rem;
  height: 280rem;
  background: #f15a24;
}
.c-entry-item__bg02 {
  position: absolute;
  z-index: -1;
  top: 100rem;
  right: 0;
  width: 340rem;
  height: 754rem;
  background: #999999;
}
.c-entry-item__bg03 {
  position: absolute;
  z-index: -1;
  top: 100rem;
  left: 0;
  width: 386rem;
  height: 754rem;
  background: #fff;
}
.c-entry-item__bg04 {
  position: absolute;
  z-index: -1;
  bottom: 0rem;
  right: 0;
  width: 252rem;
  height: 618rem;
  background: #00be7d;
}
.c-entry-item__bg05 {
  position: absolute;
  z-index: -1;
  top: 350rem;
  right: 0;
  width: 431rem;
  height: 618rem;
  background: #f15a24;
}
.c-entry-item__bg06 {
  position: absolute;
  z-index: -1;
  bottom: -80rem;
  left: 0;
  width: 386rem;
  height: 697rem;
  background: #999999;
}
.c-entry-item__inner {
  width: 89.84375%;
  margin-left: 4.140625%;
}
.c-entry-item__title {
  display: inline-block;
  background: #00be7d;
  color: #fff;
  font-size: 18rem;
  padding: 41rem 28rem 40rem;
  border-radius: 20rem;
  letter-spacing: 0.05em;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-entry-item__title {
    font-size: 24rem;
  }
}
.c-entry-item__main {
  display: flex;
  align-items: flex-start;
  position: relative;
  top: -50rem;
}
@media screen and (max-width: 767px) {
  .c-entry-item__main {
    flex-direction: column;
  }
}
.c-entry-item__text {
  position: relative;
  left: 36rem;
  margin-top: 20rem;
  border-radius: 30rem;
  padding: 54rem 69rem 50rem 38rem;
  background: #333333;
  color: #fff;
  width: 55.652173913%;
}
@media screen and (max-width: 767px) {
  .c-entry-item__text {
    width: 100%;
    left: 0;
    padding: 70rem 40rem 94rem;
  }
}
.c-entry-item__text p {
  font-size: 14rem;
}
@media screen and (max-width: 767px) {
  .c-entry-item__text p {
    font-size: 22rem;
  }
}
.c-entry-item__text p a {
  color: #fff;
}
.c-entry-item__text p a:hover {
  text-decoration: underline;
}
.c-entry-item__detail {
  position: relative;
  z-index: 1;
  width: 44.1739130435%;
  background: #fff;
  padding: 20rem 0 45rem;
  border-radius: 30rem;
}
@media screen and (max-width: 767px) {
  .c-entry-item__detail {
    width: 93%;
    top: -53rem;
    margin-left: auto;
  }
}
.c-entry-item__detail--position {
  padding: 20rem 0 28rem;
}
.c-entry-item__detail-inner {
  width: 76.1811023622%;
  margin-left: 67rem;
}
@media screen and (max-width: 767px) {
  .c-entry-item__detail-inner {
    width: 85%;
    margin: 0 auto;
  }
}
.c-entry-item__detail-inner--position {
  width: 78.7401574803%;
  margin-left: 50rem;
}
@media screen and (max-width: 767px) {
  .c-entry-item__detail-inner--position {
    width: 85%;
    margin-left: 0;
    margin: 0 auto;
  }
}
.c-entry-item__detail-title {
  font-size: 18rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-entry-item__detail-title {
    font-size: 24rem;
  }
}
.c-entry-item__detail-list {
  display: flex;
  gap: 28rem;
  margin-top: 20rem;
}
.c-entry-item li {
  width: calc((100% - 84rem) / 4);
}
.c-entry-item li dl {
  text-align: center;
  margin-top: 8rem;
}
.c-entry-item li dl dt {
  font-size: 18rem;
  padding-bottom: 8rem;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .c-entry-item li dl dt {
    font-size: 20rem;
  }
}
.c-entry-item li dl dd {
  padding-top: 8rem;
  font-size: 14rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-entry-item li dl dd {
    font-size: 16rem;
  }
}
.c-entry-item__detail-buttons {
  margin-top: 17rem;
}
.c-entry-item__detail-buttons li {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-entry-item__detail-buttons li {
    width: 100%;
  }
}
.c-entry-item__detail-buttons li.disabled {
  pointer-events: none;
}
.c-entry-item__detail-buttons li.disabled a {
  background: #929292;
  color: #cacaca;
}
.c-entry-item__detail-buttons li a {
  padding: 10rem 10rem 11rem 17rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #333;
  color: #fff;
  font-size: 18rem;
  transition: 0.3s;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-entry-item__detail-buttons li a {
    font-size: 22rem;
  }
}
.c-entry-item__detail-buttons li a:hover {
  background: #f15a24;
}
.c-entry-item__detail-buttons li a span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  margin-top: -2rem;
}
.c-entry-item__detail-buttons li + li {
  margin-top: 10rem;
}
.c-entry-item__detail-button {
  width: 100%;
  border-radius: 30rem;
  overflow: hidden;
  margin-top: 30rem;
}
.c-entry-item__detail-button a {
  display: flex;
  justify-content: space-between;
  background: #f15a24;
  color: #fff;
  font-size: 20rem;
  padding: 40rem 27rem 35rem 30rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-entry-item__detail-button a {
    font-size: 24rem;
    padding: 45rem 27rem 40rem 30rem;
  }
}
.c-entry-item__detail-button a:hover {
  background: #333;
}
.c-entry-item__detail-button a span {
  font-size: 16rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
@media screen and (max-width: 767px) {
  .c-entry-item__detail-button a span {
    font-size: 20rem;
  }
}

.c-entry-lowerpage__inner {
  position: relative;
  width: 91.09375%;
  margin: 0 auto;
}
.c-entry-lowerpage__bg {
  position: absolute;
  right: 0;
  background: #7cbe35;
  width: 313rem;
  height: 825rem;
  top: 100rem;
}
@media screen and (max-width: 767px) {
  .c-entry-lowerpage__bg {
    top: 200rem;
  }
}
.c-entry-lowerpage__bg02 {
  position: absolute;
  top: 600rem;
  left: 0;
  background: #fff;
  width: 313rem;
  height: 825rem;
}
@media screen and (max-width: 767px) {
  .c-entry-lowerpage__bg02 {
    top: 1000rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-movie {
  display: flex;
  gap: 0 67rem;
}
@media screen and (max-width: 767px) {
  .c-movie {
    gap: 0 8%;
  }
}
.c-movie--center {
  justify-content: center;
}
.c-movie__item {
  width: 37.3857404022%;
}
@media screen and (max-width: 767px) {
  .c-movie__item {
    width: 46%;
  }
}
.c-movie__item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}
.c-movie__item-detail {
  position: relative;
  background: #f15a24;
  color: #fff;
  width: 206rem;
  font-size: 12rem;
  padding: 14rem 16rem 22rem;
  border-radius: 15rem;
  margin-top: -30rem;
  margin-left: -30rem;
}
@media screen and (max-width: 767px) {
  .c-movie__item-detail {
    width: 260rem;
    margin-top: -10rem;
    font-size: 18rem;
    margin-left: -20rem;
  }
}
.c-movie + .c-movie {
  margin-top: 34rem;
}
@media screen and (max-width: 767px) {
  .c-movie + .c-movie {
    margin-top: 40rem;
  }
}
.c-movie:nth-child(even) {
  justify-content: flex-end;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-footer-link {
  position: relative;
  z-index: 1;
  background: #00be7d;
  padding: 85rem 30rem;
}
.c-footer-link__list {
  display: flex;
  gap: 37rem;
  max-width: fit-content;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-footer-link__list {
    flex-direction: column;
    max-width: 100%;
  }
}
.c-footer-link__list li {
  width: 347rem;
  border-radius: 30rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-footer-link__list li {
    width: 90%;
    margin: 0 auto;
  }
}
.c-footer-link__list li a {
  background: #333;
  transition: 0.3s;
  height: 142rem;
  color: #fff;
  font-size: 20rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30rem;
}
@media screen and (max-width: 767px) {
  .c-footer-link__list li a {
    font-size: 24rem;
    padding: 0 40rem;
  }
}
.c-footer-link__list li a:hover {
  background: #f15a24;
}
.c-footer-link__list li a span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/*
  3.2 - Project
-----------------------------------------------------*/
/* =====================================================
  1.0 - Foundation
===================================================== */
.p-top {
  background: #e6e6e6;
  overflow: hidden;
}
.p-top__kv {
  position: relative;
  z-index: 1;
  background: #999;
}
@media screen and (max-width: 767px) {
  .p-top__kv {
    height: 100vh;
  }
}
.p-top__kv-img {
  display: block;
  width: 100%;
  margin-left: auto;
  position: relative;
  z-index: 0;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-top__kv-img {
    width: 100%;
  }
}
.p-top__kv-img img {
  height: 100vh;
  object-fit: cover;
}
.p-top__kv-img.active {
  animation: fadeIn 3.5s cubic-bezier(0.33, 1, 0.85, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-top__kv-bk {
  position: absolute;
  background-color: rgba(241, 90, 36, 0.7);
  height: 100%;
  width: 36.40625%;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-top__kv-bk {
    height: 500rem;
    width: 100%;
    top: auto;
    bottom: 0;
  }
}
.p-top__kv-detail {
  position: absolute;
  bottom: 74rem;
  left: 53rem;
  z-index: 2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top__kv-detail {
    left: 24rem;
    bottom: 55rem;
  }
}
.p-top__kv-detail h2 {
  width: 312rem;
}
@media screen and (max-width: 767px) {
  .p-top__kv-detail dl {
    margin-top: -23rem;
  }
}
.p-top__kv-detail dt {
  font-size: 28rem;
}
@media screen and (max-width: 767px) {
  .p-top__kv-detail dt {
    font-size: 34rem;
  }
}
.p-top__kv-detail dd {
  margin-top: 25rem;
  font-size: 20rem;
}
@media screen and (max-width: 767px) {
  .p-top__kv-detail dd {
    font-size: 24rem;
    margin-top: 20rem;
  }
}
.p-top__menu {
  padding: 133rem 0 112rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__menu {
    padding: 97rem 0 103rem;
  }
}
.p-top__menu-inner {
  width: 79.375%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top__menu-inner {
    width: 92.1333333333%;
  }
}
.p-top__menu-bg {
  position: absolute;
  background: #f15a24;
  width: 251rem;
  height: 754rem;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top__menu-bg {
    width: 205rem;
    height: 614rem;
  }
}
.p-top__menu-bg02 {
  position: absolute;
  background: #7cbe35;
  width: 605rem;
  height: 825rem;
  bottom: 71rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-top__menu-bg02 {
    width: 305rem;
    bottom: 308rem;
  }
}
.p-top__menu-bg03 {
  position: absolute;
  background: #fff;
  width: 480rem;
  height: 457rem;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top__menu-bg03 {
    width: 312rem;
    height: 307rem;
    bottom: -96rem;
  }
}
.p-top__business {
  position: relative;
  z-index: 1;
  background: #00be7d;
  padding: 56rem 28rem 56rem 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top__business {
    flex-direction: column;
    padding: 61rem 0 85rem;
  }
}
.p-top__business-title {
  width: 22.734375%;
}
@media screen and (max-width: 767px) {
  .p-top__business-title {
    width: 100%;
  }
}
.p-top__business-title h2 {
  background: #f15a24;
  color: #fff;
  font-size: 28rem;
  line-height: 1.4;
  border-radius: 0 40rem 40rem 0;
  padding: 7rem 0 8rem 28rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-top__business-title h2 {
    width: 439rem;
    font-size: 42rem;
    padding: 11rem 0 13rem 54rem;
    border-radius: 0 70rem 70rem 0;
  }
}
.p-top__business-title h2 span {
  font-size: 14rem;
  display: block;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__business-title h2 span {
    font-size: 21rem;
  }
}
.p-top__business-title p {
  color: #fff;
  font-size: 14rem;
  padding-left: 28rem;
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .p-top__business-title p {
    font-size: 21rem;
    padding-left: 54rem;
    margin-top: 25rem;
  }
}
.p-top__business-list {
  display: flex;
  width: 72.34375%;
  gap: 0 13rem;
}
@media screen and (max-width: 767px) {
  .p-top__business-list {
    flex-direction: column;
    width: 92.4%;
    margin: 48rem auto 0;
  }
}
.p-top__business-item {
  position: relative;
  width: calc((100% - 26rem) / 2);
  border-radius: 8%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top__business-item {
    width: 100%;
    border-radius: 40rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__business-item + .p-top__business-item {
    margin-top: 43rem;
  }
}
.p-top__business-item p {
  color: #fff;
}
.p-top__business-item p:first-child {
  font-size: 30rem;
  position: absolute;
  top: 20rem;
  left: 20rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .p-top__business-item p:first-child {
    font-size: 45rem;
    left: 33rem;
    top: 30rem;
  }
}
.p-top__business-item p:nth-child(2) {
  position: absolute;
  bottom: 28rem;
  left: 20rem;
}
@media screen and (max-width: 767px) {
  .p-top__business-item p:nth-child(2) {
    font-size: 21rem;
    left: 33rem;
    bottom: 33rem;
  }
}
.p-top__office-kv {
  position: relative;
  z-index: 1;
}
.p-top__office-kv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(241, 90, 36, 0.4);
}
.p-top__recruit {
  position: relative;
  padding: 61rem 0 85rem;
}
@media screen and (max-width: 767px) {
  .p-top__recruit {
    padding: 59rem 0 113rem;
  }
}
.p-top__recruit-title {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-title {
    width: 100%;
  }
}
.p-top__recruit-title h2 {
  background: #f15a24;
  color: #fff;
  font-size: 28rem;
  line-height: 1.4;
  border-radius: 0 40rem 40rem 0;
  padding: 7rem 0 8rem 28rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-title h2 {
    width: 670rem;
    font-size: 42rem;
    padding: 11rem 0 13rem 54rem;
    border-radius: 0 70rem 70rem 0;
  }
}
.p-top__recruit-title h2 span {
  font-size: 14rem;
  display: block;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-title h2 span {
    font-size: 21rem;
  }
}
.p-top__recruit-title p {
  color: #fff;
  font-size: 14rem;
  padding-left: 28rem;
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-title p {
    font-size: 21rem;
    padding-left: 54rem;
    margin-top: 25rem;
  }
}
.p-top__recruit-bg {
  position: absolute;
  background: #fff;
  width: 467rem;
  height: 429rem;
  top: 100rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-bg {
    width: 273rem;
    height: 820rem;
  }
}
.p-top__recruit-bg--foot {
  top: auto;
  bottom: -100rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-bg--foot {
    bottom: 41rem;
  }
}
.p-top__recruit-links {
  width: 52.1875%;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-links {
    width: 92.4%;
  }
}
.p-top__recruit-links {
  width: 65.703125%;
  margin: 50rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-links {
    width: 92.4%;
  }
}
.p-top__recruit-list {
  display: flex;
  gap: 0 28rem;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-list {
    flex-direction: column;
    gap: 42rem;
  }
}
.p-top__recruit-list + .p-top__recruit-list {
  margin-top: 30rem;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-list + .p-top__recruit-list {
    margin-top: 42rem;
  }
}
.p-top__recruit-list:last-child {
  justify-content: flex-end;
}
.p-top__recruit-item {
  position: relative;
  width: 38.049940547%;
  border-radius: 8%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-item {
    width: 100%;
    border-radius: 40rem;
  }
}
.p-top__recruit-item dl {
  position: absolute;
  top: 17rem;
  left: 20rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-item dl {
    left: 33rem;
    top: 30rem;
  }
}
.p-top__recruit-item dl dt {
  font-size: 30rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-item dl dt {
    font-size: 45rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
  }
}
.p-top__recruit-item dl dd {
  font-size: 18rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-item dl dd {
    font-size: 21rem;
    margin-top: 1px;
    line-height: 1.7;
  }
}

.c-menu-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 28rem;
}
@media screen and (max-width: 767px) {
  .c-menu-list {
    gap: 0 30rem;
  }
}
.c-menu-list__item {
  position: relative;
  width: calc((100% - 56rem) / 3);
  border-radius: 8%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-menu-list__item {
    width: calc((100% - 30rem) / 2);
  }
}
.c-menu-list__item:nth-child(2) {
  margin-top: 85rem;
}
.c-menu-list__item:nth-child(3) {
  margin-top: 170rem;
}
@media screen and (max-width: 767px) {
  .c-menu-list__item:nth-child(3) {
    margin-top: -10rem;
  }
}
.c-menu-list__item:nth-child(4) {
  margin-top: -33rem;
}
@media screen and (max-width: 767px) {
  .c-menu-list__item:nth-child(4) {
    margin-top: 71rem;
  }
}
.c-menu-list__item:nth-child(5) {
  margin-top: 52rem;
}
@media screen and (max-width: 767px) {
  .c-menu-list__item:nth-child(5) {
    margin-top: -43rem;
  }
}
.c-menu-list__item:nth-child(6) {
  margin-top: 134rem;
}
@media screen and (max-width: 767px) {
  .c-menu-list__item:nth-child(6) {
    margin-top: 48rem;
  }
}
.c-menu-list__item a {
  display: block;
}
.c-menu-list__item-title {
  position: absolute;
  font-size: 40rem;
  top: 0;
  color: #fff;
  line-height: 1.3;
  left: -1rem;
  top: 12rem;
  letter-spacing: 0;
}
.c-menu-list__item-text {
  position: absolute;
  font-size: 16rem;
  color: #fff;
  bottom: 20rem;
  left: 30rem;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-about__bg {
  position: absolute;
  left: 0;
  background: #f15a24;
  width: 251rem;
  height: 753rem;
  top: -232rem;
}
@media screen and (max-width: 767px) {
  .p-about__bg {
    top: -292rem;
  }
}
.p-about__bg02 {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  width: 371rem;
  height: 366rem;
}
@media screen and (max-width: 767px) {
  .p-about__bg02 {
    opacity: 0;
  }
}
.p-about__bg03 {
  position: absolute;
  top: 451rem;
  right: 0;
  background: #00be7d;
  width: 605rem;
  height: 605rem;
}
.p-about__bg04 {
  position: absolute;
  top: 0rem;
  right: 0;
  background: #fff;
  width: 221rem;
  height: 496rem;
}
@media screen and (max-width: 767px) {
  .p-about__bg04 {
    opacity: 0;
  }
}
.p-about__bg05 {
  position: absolute;
  bottom: 200rem;
  right: 0;
  background: #f15a24;
  width: 464rem;
  height: 457rem;
}
@media screen and (max-width: 767px) {
  .p-about__bg05 {
    bottom: auto;
    top: 300rem;
  }
}
.p-about__bg06 {
  position: absolute;
  bottom: 100rem;
  left: 0;
  background: #7cbe35;
  width: 251rem;
  height: 753rem;
}
.p-about__main {
  position: relative;
  margin-top: 155rem;
  padding-bottom: 55rem;
}
@media screen and (max-width: 767px) {
  .p-about__main {
    margin-top: 115rem;
    padding-bottom: 120rem;
  }
}
.p-about__inner {
  position: relative;
  width: 91.09375%;
  margin: 0 auto;
}
.p-about__desc {
  border-radius: 40rem;
  position: relative;
  top: -16rem;
  background: #fff;
  padding: 55rem 45rem;
  width: 67.8387650086%;
}
@media screen and (max-width: 767px) {
  .p-about__desc {
    width: 100%;
    top: -26rem;
    padding: 80rem 45rem;
  }
}
.p-about__desc dl {
  display: flex;
  justify-content: space-between;
  font-size: 14rem;
}
@media screen and (max-width: 767px) {
  .p-about__desc dl {
    font-size: 22rem;
  }
}
.p-about__desc dl dt {
  width: 23%;
}
@media screen and (max-width: 767px) {
  .p-about__desc dl dt {
    width: 25%;
  }
}
.p-about__desc dl dd {
  width: 76%;
}
@media screen and (max-width: 767px) {
  .p-about__desc dl dd {
    width: 74%;
  }
}
.p-about__desc dl dd ul {
  padding-left: 1em;
}
.p-about__desc dl dd li::before {
  content: "-"; /* 先頭にハイフンを表示 */
  display: inline-block;
  width: 1em; /* ハイフン分の幅を確保 */
  margin-left: -1em;
}
.p-about__desc dl dd a {
  text-decoration: underline;
}
.p-about__desc dl + dl {
  margin-top: 58rem;
}
.p-about__desc--history dl + dl {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-about__desc--history dl + dl {
    margin-top: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__desc--history dt {
    font-size: 20rem;
    letter-spacing: 0;
    margin-top: 3rem;
  }
}
.p-about__section {
  position: relative;
  margin-top: -80rem;
  padding-top: 80rem;
}
@media screen and (max-width: 767px) {
  .p-about__section {
    margin-top: -90rem;
    padding-top: 90rem;
  }
}
.p-about__section + .p-about__section {
  margin-top: 60rem;
}
.p-about__section--message {
  margin-top: 161rem;
}
@media screen and (max-width: 767px) {
  .p-about__section--message {
    margin-top: 50rem;
  }
}
.p-about__button {
  position: relative;
  z-index: 1;
  width: 439rem;
  margin-left: auto;
  background: #00be7d;
  border-radius: 30rem;
  margin-top: -90rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__button {
    margin-top: -70rem;
  }
}
.p-about__button a {
  padding: 33rem 37rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.p-about__button a span {
  font-size: 20rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.p-about__button a p {
  font-size: 28rem;
  line-height: 1.5;
}
.p-about__button a p span {
  font-size: 20rem;
  margin-top: 5rem;
  display: block;
  text-decoration: none;
}
.p-about__message {
  position: relative;
}
.p-about__message-text {
  border-radius: 40rem;
  width: 57.2898799314%;
  background: #999999;
  padding: 92rem 162rem 52rem 52rem;
  font-size: 20rem;
  margin-top: -47rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-about__message-text {
    width: 100%;
    padding: 92rem 52rem 75rem;
    font-size: 24rem;
  }
}
.p-about__video {
  position: absolute;
  bottom: 35rem;
  right: 0;
  width: 640rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-about__video {
    position: static;
    width: 100%;
    margin-top: -30rem;
  }
}
.p-about__video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-message__body {
  position: relative;
  padding-bottom: 107rem;
}
@media screen and (max-width: 767px) {
  .p-message__body {
    padding-bottom: 120rem;
  }
}
.p-message__bg {
  position: absolute;
  top: 100rem;
  right: 0;
  background: #7cbe35;
  width: 311rem;
  height: 890rem;
}
@media screen and (max-width: 767px) {
  .p-message__bg {
    display: none;
  }
}
.p-message__bg02 {
  position: absolute;
  top: 340rem;
  left: 0;
  background: #f15a24;
  width: 768rem;
  height: 568rem;
}
@media screen and (max-width: 767px) {
  .p-message__bg02 {
    display: none;
  }
}
.p-message__main {
  position: relative;
  width: 91.09375%;
  margin: 0 auto 55rem;
}
.p-message__lead {
  font-size: 30rem;
  font-weight: 300;
  margin-bottom: 40rem;
}
@media screen and (max-width: 767px) {
  .p-message__lead {
    font-size: 34rem;
    margin-bottom: 35rem;
  }
}
.p-message__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-message__content {
    flex-direction: column;
  }
}
.p-message__content + .p-message__content {
  margin-top: 70rem;
}
@media screen and (max-width: 767px) {
  .p-message__content + .p-message__content {
    margin-top: 80rem;
  }
}
.p-message__content-text {
  width: 58.7478559177%;
}
@media screen and (max-width: 767px) {
  .p-message__content-text {
    width: 100%;
  }
}
.p-message__content-text p {
  font-size: 14rem;
}
@media screen and (max-width: 767px) {
  .p-message__content-text p {
    font-size: 22rem;
  }
}
.p-message__content-text p.lead {
  font-size: 18rem;
  margin-bottom: 20rem;
}
.p-message__content-text p.text {
  margin-bottom: 45rem;
}
.p-message__content-image {
  border-radius: 30rem;
  width: 36.5351629503%;
}
@media screen and (max-width: 767px) {
  .p-message__content-image {
    width: 100%;
    margin-top: 30rem;
  }
}
.p-message__entry-button {
  width: 320rem;
  margin-top: 49rem;
}
.p-message__activity {
  z-index: 1;
  position: relative;
  padding-top: 85rem;
}
.p-message__activity__title {
  background: #333;
  padding: 40rem 50rem;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 60rem 60rem 0;
}
.p-message__activity__title h2 {
  font-size: 24rem;
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-message__activity__title h2 {
    font-size: 36rem;
  }
}
.p-message__activity__body {
  background: #fff;
  width: 1045rem;
  margin: 0 0 0 auto;
  padding: 60rem 50rem;
}
@media screen and (max-width: 767px) {
  .p-message__activity__body {
    padding: 100rem 50rem 60rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__activity__body {
    width: 100%;
  }
}
.p-message__activity__items {
  display: grid;
  gap: 18rem;
}
@media screen and (max-width: 767px) {
  .p-message__activity__items {
    gap: 40rem;
  }
}
.p-message__activity__item {
  display: flex;
  align-items: center;
  gap: 26rem;
}
@media screen and (max-width: 767px) {
  .p-message__activity__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-message__activity__item__image {
  width: 242rem;
}
@media screen and (max-width: 767px) {
  .p-message__activity__item__image {
    width: 100%;
  }
}
.p-message__activity__item__date {
  background: #333;
  color: #fff;
  width: 120rem;
  line-height: 43rem;
  text-align: center;
  font-size: 14rem;
}
@media screen and (max-width: 767px) {
  .p-message__activity__item__date {
    font-size: 26rem;
    width: 220rem;
    line-height: 64rem;
  }
}
.p-message__activity__item__text {
  font-family: "source-han-sans-japanese", "Hiragino Kaku Gothic ProN", "Yu Gothic", "yugothic", sans-serif;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-message__activity__item__text {
    width: 100%;
  }
}
.p-message__activity__item__text h3 {
  font-weight: 300;
  border-bottom: 1px solid #333333;
  font-size: 14rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-message__activity__item__text h3 {
    font-size: 30rem;
    line-height: 1.6;
    padding-bottom: 8rem;
  }
}
.p-message__activity__item__text p {
  font-size: 14rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-message__activity__item__text p {
    font-size: 26rem;
  }
}
.p-message__activity__item__description {
  width: 325rem;
  font-family: "source-han-sans-japanese", "Hiragino Kaku Gothic ProN", "Yu Gothic", "yugothic", sans-serif;
  font-size: 14rem;
}
@media screen and (max-width: 767px) {
  .p-message__activity__item__description {
    width: 100%;
    font-size: 24rem;
  }
}
.p-message__activity--media {
  margin-top: 77rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-message__activity--media .p-message__activity__item__text {
    flex: 100%;
  }
}
.p-message__activity--media .p-message__activity__item__text p {
  font-size: 12rem;
  line-height: 1.7;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-message__activity--media .p-message__activity__item__text p {
    font-size: 24rem;
  }
}
.p-message__post {
  position: relative;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-business-field__main {
  position: relative;
  padding-top: 140rem;
  padding-bottom: 85rem;
  display: grid;
  gap: 44rem;
}
@media screen and (max-width: 767px) {
  .p-business-field__main {
    padding-top: 120rem;
    gap: 60rem;
  }
}
.p-business-field__inner {
  position: relative;
  width: 91.09375%;
  margin: 0 auto;
}
.p-business-field__box {
  display: grid;
  grid-template-columns: 300rem 1fr 1fr;
  border-radius: 28rem;
  overflow: hidden;
  background: #333;
  color: #fff;
  min-height: 363rem;
}
@media screen and (max-width: 767px) {
  .p-business-field__box {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.p-business-field__box--green {
  background: #00be7d;
}
.p-business-field__box--orange {
  background: #f15a24;
}
.p-business-field__box__image {
  width: 300rem;
  height: 100%;
  grid-area: 1/1/3/2;
}
@media screen and (max-width: 767px) {
  .p-business-field__box__image {
    grid-area: 1/1/2/2;
    width: 100%;
    height: 400rem;
    position: relative;
    z-index: 0;
  }
}
.p-business-field__box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-business-field__box__title {
  padding: 28rem;
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 767px) {
  .p-business-field__box__title {
    grid-area: 1/1/2/2;
    position: relative;
    z-index: 1;
    padding: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.p-business-field__box__title h2 {
  font-size: 36rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .p-business-field__box__title h2 {
    font-size: 45rem;
  }
}
.p-business-field__box__title span {
  margin-top: 20rem;
  display: block;
  font-size: 14rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-business-field__box__title span {
    font-size: 21rem;
  }
}
.p-business-field__box__logolist {
  width: 462rem;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
  flex-wrap: nowrap;
  gap: 16rem;
  grid-area: 1/3/2/4;
  padding: 30rem 30rem 0 0;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-business-field__box__logolist {
    grid-area: 2/1/3/2;
    padding: 30rem 30rem 0;
    width: 100%;
  }
}
.p-business-field__box__logo {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60rem;
  padding: 16rem;
}
@media screen and (max-width: 767px) {
  .p-business-field__box__logo {
    height: 80rem;
    padding: 24rem;
  }
}
.p-business-field__box__bottom {
  grid-area: 2/2/3/4;
  padding: 0 28rem 28rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-business-field__box__bottom {
    grid-area: 3/1/4/2;
    flex-direction: column;
    padding: 30rem;
    align-items: flex-start;
  }
}
.p-business-field__box__description p {
  font-size: 14rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-business-field__box__description p {
    font-size: 21rem;
  }
}
.p-business-field__box__link {
  background: #fff;
  transition: 0.3s;
  height: 105rem;
  color: #333;
  font-size: 20rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30rem;
  border-radius: 28rem;
  width: 400rem;
}
.p-business-field__box__link:hover {
  background: #333;
  color: #fff;
}
.p-business-field__box__link--to-green:hover {
  background: #00be7d;
}
@media screen and (max-width: 767px) {
  .p-business-field__box__link {
    width: 100%;
    margin-top: 30rem;
    font-size: 24rem;
    height: 120rem;
  }
}
.p-business-field__box__link span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-data__main {
  position: relative;
  padding-bottom: 180rem;
  display: grid;
  gap: 80rem;
}
@media screen and (max-width: 767px) {
  .p-data__main {
    padding-bottom: 120rem;
    gap: 60rem;
  }
}
.p-data__inner {
  position: relative;
  width: 91.09375%;
  margin: 0 auto;
}
.p-data .c-data__grid--2col {
  margin-top: 24rem;
}
@media screen and (max-width: 767px) {
  .p-data .c-data__grid--2col {
    margin-top: 16rem;
  }
}
.p-data .p-data__item--table {
  padding: 30rem;
  margin-top: 60rem;
  gap: 20rem;
  width: 100%;
}
.p-data .p-data__item--table--career {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table--career {
    width: 100%;
  }
}
.p-data .p-data__item--table--country {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table--country {
    width: 100%;
  }
}
.p-data .p-data__item--table--country h3 span {
  float: right;
  font-size: 14rem;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table--country h3 span {
    font-size: 20rem;
  }
}
.p-data .p-data__item--table h3 {
  text-align: left;
}
.p-data .p-data__item--table__table {
  font-size: 20rem;
}
.p-data .p-data__item--table__table--career {
  width: 700rem;
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table__table--career {
    width: 100%;
  }
}
.p-data .p-data__item--table__table--country {
  width: 700rem;
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table__table--country {
    width: 100%;
  }
}
.p-data .p-data__item--table__table--country td img {
  width: 34rem;
  vertical-align: middle;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table__table--country td img {
    width: 40rem;
  }
}
.p-data .p-data__item--table__table--country td:nth-child(1) {
  width: 60rem;
  padding: 0.8em 0em 0.8em 1em;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table__table--country td:nth-child(1) {
    width: 80rem;
  }
}
.p-data .p-data__item--table__table--double-th td.sub-label {
  text-align: center;
  display: none;
  background: #4d4d4d !important;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table__table--double-th td.sub-label {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table__table--double-th tr:nth-child(even) th {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table__table--double-th th, .p-data .p-data__item--table__table--double-th td {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table__table--double-th th {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table__table--double-th td {
    padding: 0.2em 1em !important;
  }
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table__table--double-th td:last-child {
    padding: 0.2em 1em 1em !important;
  }
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table__table--double-th .sub-sub-label {
    padding: 1em 1em 0.2em !important;
  }
}
.p-data .p-data__item--table__table--thcolor tr:nth-child(odd) th {
  background: #00be7d;
  color: #fff;
}
.p-data .p-data__item--table__table--thcolor tr:nth-child(even) th {
  background: #4d4d4d;
  color: #fff;
}
.p-data .p-data__item--table__table--thcolor td {
  padding: 0.8em 1.5em;
}
.p-data .p-data__item--table__table tr:nth-child(odd) td {
  background: #e6e6e6;
}
.p-data .p-data__item--table__table tr:nth-child(even) td {
  background: #f2f2f2;
}
.p-data .p-data__item--table__table th {
  padding: 0.8em 0.5em;
}
.p-data .p-data__item--table__table th {
  width: 284rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-data .p-data__item--table__table th {
    width: 180rem;
  }
}
.p-data .p-data__item--table__table td {
  text-align: left;
}
.p-data .c-data__grid--1fr-2fr {
  margin-top: 60rem;
}
.p-data .c-data__grid--1fr-2fr .c-data__item {
  padding: 30rem 30rem 30rem;
  min-height: auto;
  gap: 36rem;
}
.p-data .c-data__grid--1fr-2fr .c-data__item__data__unit {
  position: absolute;
  right: -12rem;
  transform: translateX(100%);
  bottom: 0;
}
.p-data__point {
  border-radius: 28rem;
  width: 100%;
  background: #fff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-data__point {
    width: 100%;
  }
}
.p-data__point h3 {
  text-align: left;
}
.p-data__point ul {
  padding: 0;
  display: block;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0 1em;
}
.p-data__point ul li {
  font-size: 16rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-data__point ul li {
    font-size: 20rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-training-welfare__bg {
  position: absolute;
  left: 0;
  background: #f15a24;
  width: 340rem;
  height: 380rem;
  top: 600rem;
}
@media screen and (max-width: 767px) {
  .p-training-welfare__bg {
    top: 800rem;
  }
}
.p-training-welfare__bg02 {
  position: absolute;
  top: 1000rem;
  right: 0;
  background: #00be7d;
  width: 340rem;
  height: 380rem;
}
@media screen and (max-width: 767px) {
  .p-training-welfare__bg02 {
    top: 2000rem;
  }
}
.p-training-welfare__bg03 {
  position: absolute;
  top: 2000rem;
  right: 0;
  background: #999;
  width: 396rem;
  height: 754rem;
}
@media screen and (max-width: 767px) {
  .p-training-welfare__bg03 {
    top: 3500rem;
  }
}
.p-training-welfare__bg04 {
  position: absolute;
  top: 3500rem;
  right: 0;
  background: #f15a24;
  width: 252rem;
  height: 618rem;
}
@media screen and (max-width: 767px) {
  .p-training-welfare__bg04 {
    top: 5000rem;
  }
}
.p-training-welfare__bg05 {
  position: absolute;
  top: 1000rem;
  left: 0;
  background: #00be7d;
  width: 340rem;
  height: 380rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-training-welfare__bg05 {
    top: 7000rem;
    opacity: 1;
  }
}
.p-training-welfare__main {
  position: relative;
  padding-bottom: 180rem;
  display: grid;
  gap: 80rem;
}
@media screen and (max-width: 767px) {
  .p-training-welfare__main {
    padding-bottom: 120rem;
    gap: 100rem;
  }
}
.p-training-welfare__inner {
  position: relative;
  width: 91.09375%;
  margin: 0 auto;
}
.p-training-welfare__welfare {
  display: grid;
  gap: 80rem;
}
.p-training-welfare__welfare__cat {
  display: flex;
  align-items: center;
  margin-bottom: 20rem;
}
.p-training-welfare__welfare__cat__icon {
  background: #e6e6e6;
  border: 1rem solid #666;
  width: 64rem;
  height: 64rem;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-training-welfare__welfare__cat__icon {
    width: 100rem;
    height: 100rem;
  }
}
.p-training-welfare__welfare__cat__icon img {
  object-fit: contain;
  max-width: 80%;
  max-height: 80%;
}
.p-training-welfare__welfare__cat h3 {
  position: relative;
  z-index: 0;
  background: #666;
  color: #fff;
  font-size: 20rem;
  font-weight: 400;
  line-height: 1.7em;
  padding: 0 1.2em 0 1.5em;
  border-radius: 0 1em 1em 0;
  margin-left: -1em;
}
@media screen and (max-width: 767px) {
  .p-training-welfare__welfare__cat h3 {
    font-size: 28rem;
  }
}
.p-training-welfare__welfare .c-data__item h3 {
  font-size: 20rem;
  width: fit-content;
  margin: 0 auto;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
@media screen and (max-width: 767px) {
  .p-training-welfare__welfare .c-data__item h3 {
    font-size: 24rem;
  }
}
.p-training-welfare__welfare .c-data__item p {
  font-size: 14rem;
}
@media screen and (max-width: 767px) {
  .p-training-welfare__welfare .c-data__item p {
    font-size: 20rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-active-seniors__main {
  position: relative;
  display: grid;
  gap: 80rem;
  margin-top: 120rem;
}
@media screen and (max-width: 767px) {
  .p-active-seniors__main {
    gap: 60rem;
  }
}
.p-active-seniors__inner {
  position: relative;
  width: 91.09375%;
  margin: 0 auto;
}
.p-active-seniors__section {
  position: relative;
  max-width: 1085rem;
}
.p-active-seniors__section:not(:last-child) {
  margin-bottom: 40rem;
}
.p-active-seniors__text {
  padding: 20rem 30rem;
  border-radius: 28rem;
  color: #fff;
  background: #00be7d;
  width: 90%;
  max-width: 623rem;
  min-height: 271rem;
}
@media screen and (max-width: 767px) {
  .p-active-seniors__text {
    padding-bottom: 100rem;
    min-height: auto;
  }
}
.p-active-seniors__text--bk {
  background: #333;
}
.p-active-seniors__text h2 {
  font-family: "source-han-sans-japanese", "Hiragino Kaku Gothic ProN", "Yu Gothic", "yugothic", sans-serif;
  font-size: 30rem;
  font-weight: 400;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.p-active-seniors__text p {
  font-size: 14rem;
}
@media screen and (max-width: 767px) {
  .p-active-seniors__text p {
    font-size: 21rem;
  }
}
.p-active-seniors__image {
  border-radius: 28rem;
  overflow: hidden;
  aspect-ratio: 546/357;
  width: 546rem;
  margin: -36rem 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-active-seniors__image {
    max-width: 500rem;
    margin: -60rem 0 0 auto;
  }
}
.p-active-seniors__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-requirements__main {
  margin-top: 80rem;
  position: relative;
}
.p-requirements__tables {
  display: grid;
  gap: 60rem;
}
@media screen and (max-width: 767px) {
  .p-requirements__tables {
    gap: 100rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-person__main {
  margin-top: 122rem;
}
.p-person__inner {
  position: relative;
  width: 85.46875%;
  margin: -37rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-person__inner {
    width: 88%;
    margin: -20rem auto 0;
  }
}
.p-person__sec {
  margin-top: -120rem;
  padding-top: 120rem;
}
@media screen and (max-width: 767px) {
  .p-person__sec {
    margin-top: -160rem;
    padding-top: 160rem;
  }
}
.p-person__sec-inner {
  background: #999999;
  padding-bottom: 41rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-person__sec-inner {
    padding-bottom: 65rem;
  }
}
.p-person__sec-inner--gray {
  background: none;
  margin-top: 108rem;
  padding-bottom: 131rem;
}
.p-person__bk01 {
  position: absolute;
  width: 274rem;
  height: 280rem;
  background: #7cbe35;
  right: 0;
  bottom: 80rem;
}
.p-person__bk02 {
  position: absolute;
  width: 311rem;
  height: 386rem;
  background: #fff;
  left: 0;
  top: 342rem;
}
.p-person__bk03 {
  position: absolute;
  width: 311rem;
  height: 386rem;
  background: #00be7d;
  right: 0;
  bottom: 0;
}
.p-person__bk04 {
  position: absolute;
  width: 661rem;
  height: 286rem;
  background: #fff;
  right: 0;
  bottom: -50rem;
}
@media screen and (max-width: 767px) {
  .p-person__bk04 {
    width: 441rem;
    height: 216rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-archive__body {
  width: 91.484375%;
  margin: 0 auto;
}
.p-archive__body--company {
  width: 68.984375%;
  margin-left: 4.375%;
}
@media screen and (max-width: 767px) {
  .p-archive__body--company {
    width: 91.484375%;
  }
}
.p-archive__head {
  position: relative;
}
.p-archive__coming-soon {
  font-size: 38rem;
  margin-top: 50rem;
  text-align: center;
  font-weight: 300;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-archive__head-lead {
  font-size: 20rem;
}
.p-archive__main {
  display: flex;
  flex-wrap: wrap;
  gap: 36rem 16rem;
  margin-top: 56rem;
  margin-bottom: 76rem;
}
.p-archive__nav {
  width: 100%;
  background: #333333;
  color: #fff;
  padding: 15rem 30rem 14rem;
  margin-top: 70rem;
}
@media screen and (max-width: 767px) {
  .p-archive__nav {
    padding: 20rem 30rem 21rem;
  }
}
.p-archive__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30rem 121rem;
}
@media screen and (max-width: 767px) {
  .p-archive__nav-list {
    gap: 40rem;
  }
}
.p-archive__nav-item {
  font-size: 14rem;
}
@media screen and (max-width: 767px) {
  .p-archive__nav-item {
    font-size: 18rem;
  }
}
.p-archive__nav-item a {
  position: relative;
  color: #fff;
}
.p-archive__nav-item a span {
  display: contents;
  margin-right: 4rem;
}
.p-archive__nav-item a.active {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-archive__select {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30rem;
  gap: 0 23rem;
  position: relative;
  z-index: 2;
}
.p-archive__select-text {
  font-size: 14rem;
}
@media screen and (max-width: 767px) {
  .p-archive__select-text {
    font-size: 20rem;
  }
}
.p-archive__select-target {
  background: #333;
  color: #fff;
  width: 15.7984628523%;
  padding: 14rem 0 17rem 29rem;
  cursor: pointer;
  position: relative;
  font-family: "source-han-sans-japanese", "Hiragino Kaku Gothic ProN", "Yu Gothic", "yugothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-archive__select-target {
    width: 35%;
  }
}
.p-archive__select-target--company {
  width: 20.9513023783%;
}
@media screen and (max-width: 767px) {
  .p-archive__select-target--company {
    width: 35%;
  }
}
.p-archive__select-target::before {
  content: "";
  width: 10rem;
  height: 10rem;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(135deg);
  position: absolute;
  top: -5rem;
  right: 16rem;
  bottom: 0;
  margin: auto;
}
.p-archive__select-target-item {
  font-size: 14rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-archive__select-target-item {
    font-size: 20rem;
  }
}
.p-archive__select-target-item:first-child {
  display: block;
}
.p-archive__select-nav {
  position: absolute;
  width: 15.7984628523%;
  top: 0;
  right: 0;
  height: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .p-archive__select-nav {
    width: 35%;
  }
}
.p-archive__select-nav.active {
  visibility: visible;
  height: 266rem;
}
.p-archive__select-nav::after {
  content: "";
  background: #fff;
  width: 100%;
  height: 26rem;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.p-archive__select-nav::before {
  content: "";
  width: 10rem;
  height: 10rem;
  border: 0;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  transform: rotate(135deg);
  position: absolute;
  top: auto;
  right: 50%;
  left: 50%;
  bottom: 12rem;
  margin: auto;
  z-index: 2;
}

.p-select-year {
  background: #fff;
  font-size: 14rem;
  padding: 12rem 0 30rem;
  font-family: "source-han-sans-japanese", "Hiragino Kaku Gothic ProN", "Yu Gothic", "yugothic", sans-serif;
  overflow-y: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-select-year {
    font-size: 20rem;
  }
}
.p-select-year__item a {
  display: block;
  padding-left: 30rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-select-year__item a {
    padding-bottom: 8rem;
  }
}
.p-select-year__item.active a::before {
  content: "";
  display: block;
  position: absolute;
  top: 9rem;
  left: 8rem;
  width: 14rem;
  height: 6rem;
  border-left: 1.5px solid #333;
  border-bottom: 1.5px solid #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-55deg);
}
.p-select-year__item + .p-select-year__item {
  margin-top: 6rem;
}

.c-post-card {
  width: calc((100% - 48rem) / 4);
  background: #333333;
}
@media screen and (max-width: 767px) {
  .c-post-card {
    width: calc((100% - 16rem) / 2);
  }
}
.c-post-card--company {
  width: calc((100% - 32rem) / 3);
}
@media screen and (max-width: 767px) {
  .c-post-card--company {
    width: calc((100% - 16rem) / 2);
  }
}
.c-post-card:hover .c-post-card__thumbnail {
  filter: grayscale(0);
}
.c-post-card__detail {
  background: #333333;
  color: #fff;
}
.c-post-card__thumbnail {
  aspect-ratio: 4/3;
  overflow: hidden;
  filter: grayscale(1);
  transition: 0.2s;
}
.c-post-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-post-card__detail-cate {
  position: relative;
  top: -3px;
  font-size: 7px;
  display: inline-block;
  padding: 4.5px 21.5px 5.5px;
}
@media screen and (max-width: 767px) {
  .c-post-card__detail-cate {
    font-size: 8px;
  }
}
.c-post-card__detail-cate.press, .c-post-card__detail-cate.dummy {
  background: #ff7bac;
}
.c-post-card__detail-cate.event {
  background: #7cbe35;
}
.c-post-card__detail-cate.award {
  background: #f7931e;
}
.c-post-card__detail-cate.webinar {
  background: #29abe2;
}
.c-post-card__detail-cate.product {
  background: #00a99d;
}
.c-post-card__detail-cate.info {
  background: #666;
}
.c-post-card__detail-text {
  font-size: 10px;
  padding: 8px 13px 11px;
}
@media screen and (max-width: 767px) {
  .c-post-card__detail-text {
    font-size: 11px;
    padding: 8px 13px 15px;
  }
}
.c-post-card__detail-text dt {
  margin-bottom: 5px;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-post__main {
  position: relative;
  margin-top: 120rem;
  padding-bottom: 100rem;
}
.p-post__bg {
  position: absolute;
  background: #00be7d;
  width: 313rem;
  height: 825rem;
  right: 0;
  top: 100rem;
}
@media screen and (max-width: 767px) {
  .p-post__bg {
    width: 210rem;
    height: 495rem;
    top: 300rem;
  }
}
.p-post__inner {
  position: relative;
  width: 91.09375%;
  margin: 0 auto;
}
.p-post__detail {
  width: 63.5506003431%;
}
@media screen and (max-width: 767px) {
  .p-post__detail {
    width: 100%;
  }
}
.p-post__detail article h2 {
  font-size: 18rem;
  margin-bottom: 23rem;
}
@media screen and (max-width: 767px) {
  .p-post__detail article h2 {
    font-size: 26rem;
  }
}
.p-post__detail article p {
  font-size: 14rem;
  margin-bottom: 30rem;
}
@media screen and (max-width: 767px) {
  .p-post__detail article p {
    font-size: 22rem;
  }
}
.p-post__detail article img {
  width: 73.8191632928%;
  margin-bottom: 18rem;
}
@media screen and (max-width: 767px) {
  .p-post__detail article img {
    width: 80%;
  }
}
.p-post__detail article a {
  text-decoration: underline;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-office__main {
  margin-top: 70rem;
  margin-bottom: 105rem;
}
.p-office__inner {
  width: 91.328125%;
  margin: 0 auto;
}
.p-office__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50rem 59rem;
}
@media screen and (max-width: 767px) {
  .p-office__list {
    gap: 45rem 40rem;
  }
}
.p-office__item {
  cursor: pointer;
  width: calc((100% - 118rem) / 3);
}
@media screen and (max-width: 767px) {
  .p-office__item {
    width: calc((100% - 40rem) / 2);
  }
}
.p-office__item figure {
  border-radius: 25rem;
  overflow: hidden;
}
.p-office__item p {
  font-size: 20rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-office__item p {
    font-size: 22rem;
    margin-top: 8rem;
  }
}

.c-modal {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.c-modal__bk {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.c-modal figure {
  position: absolute;
  max-width: 980px;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-modal figure button {
  position: absolute;
  right: -50px;
  top: -60px;
  width: 50px;
}
@media screen and (max-width: 767px) {
  .c-modal figure button {
    right: -20px;
    top: -50px;
    width: 35px;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-entry__main {
  position: relative;
  width: 91.09375%;
  margin: 70rem auto 0;
}
.p-entry__links {
  background: #999;
  border-radius: 28rem;
  padding: 56rem;
}
@media screen and (max-width: 767px) {
  .p-entry__links {
    padding: 36rem 30rem;
    border-radius: 0;
    margin: 0 calc(50% - 50vw);
  }
}
.p-entry__links li {
  background-color: #333333;
  border-radius: 28rem;
  padding: 28rem 28rem 28rem 102rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-entry__links li {
    flex-direction: column;
    padding-left: 28rem;
    border-radius: 20rem;
  }
}
.p-entry__links li:not(:first-child) {
  margin-top: 28rem;
}
.p-entry__links h2 {
  color: #fff;
  font-size: clamp(18px, 2.421875vw, 31px);
  font-weight: 700;
}
.p-entry__links a {
  background: #fff;
  font-size: 24rem;
  padding: 13rem 30rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s;
  width: 39.6103896104%;
}
@media screen and (max-width: 767px) {
  .p-entry__links a {
    font-size: 32rem;
    padding: 15rem 35rem;
    width: 100%;
    margin-top: 24rem;
  }
}
.p-entry__links a:hover {
  background: #333333;
  color: #fff;
}
.p-entry__links a img {
  width: 40rem;
  height: auto;
}
.p-entry__links a span {
  font-size: 23rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  margin-left: 18rem;
}
@media screen and (max-width: 767px) {
  .p-entry__links a span {
    font-size: 28rem;
  }
}
.p-entry__privacy {
  background-color: #fff;
  border-radius: 28rem;
  height: 540rem;
  margin-top: 92rem;
  overflow-y: scroll;
  padding: 44rem 56rem;
}
@media screen and (max-width: 767px) {
  .p-entry__privacy {
    height: 600rem;
    padding: 30rem 20rem;
    border-radius: 20rem;
  }
}
.p-entry__privacy h2 {
  font-size: 31rem;
  font-weight: normal;
}
.p-entry__privacy h3 {
  font-size: 16rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-entry__privacy h3 {
    font-size: 22rem;
  }
}
.p-entry__privacy p {
  font-size: 16rem;
}
@media screen and (max-width: 767px) {
  .p-entry__privacy p {
    font-size: 22rem;
  }
}
.p-entry__privacy h3:not(:first-child) {
  margin-top: 26rem;
}
.p-entry__privacy h2 + p {
  margin-top: 15rem;
}
.p-entry__privacy h3 + p {
  margin-top: 5rem;
}
.p-entry__acceptance {
  background: #fff;
  border-radius: 14rem;
  padding: 28rem 56rem;
  width: fit-content;
  margin: 50rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-entry__acceptance {
    padding: 20rem 30rem;
    width: 100%;
  }
}
.p-entry__acceptance input[type=checkbox] {
  margin: 0;
  height: 0;
  width: 0;
}
.p-entry__acceptance label {
  cursor: pointer;
}
.p-entry__acceptance .wpcf7-list-item {
  margin: 0;
}
.p-entry__acceptance .wpcf7-list-item-label {
  position: relative;
  font-size: 16rem;
}
@media screen and (max-width: 767px) {
  .p-entry__acceptance .wpcf7-list-item-label {
    font-size: 22rem;
  }
}
.p-entry__acceptance .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 30rem;
  height: 30rem;
  background-color: #fff;
  border: 1px solid #333333;
  margin-right: 18rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-entry__acceptance .wpcf7-list-item-label::before {
    width: 40rem;
    height: 40rem;
  }
}
.p-entry__acceptance .wpcf7-list-item-label::after {
  content: "";
  display: inline-block;
  width: 20rem;
  height: 10rem;
  border-bottom: 3px solid #333333;
  border-left: 3px solid #333333;
  position: absolute;
  top: 6rem;
  left: 6rem;
  transform: rotate(-45deg);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-entry__acceptance .wpcf7-list-item-label::after {
    width: 24rem;
    height: 15rem;
    top: 8rem;
    left: 9rem;
  }
}
.p-entry__acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-entry__form {
  background-color: #00be7d;
  width: 100vw;
  margin: 56rem calc(50% - 50vw) 0;
  padding: 48rem 0 58rem;
}
.p-entry__form__group {
  margin: 0 auto;
  width: 62.109375%;
}
@media screen and (max-width: 767px) {
  .p-entry__form__group {
    width: 91%;
  }
}
.p-entry__form__line {
  display: flex;
  margin-top: 5rem;
  max-width: 880rem;
}
@media screen and (max-width: 767px) {
  .p-entry__form__line {
    flex-direction: column;
    margin-top: 20rem;
  }
}
.p-entry__form__label {
  background-color: #333333;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  grid-template-rows: 1fr;
  min-height: 74rem;
  padding: 14rem 14rem 14rem 27rem;
  width: 239rem;
  font-size: 16rem;
  border-radius: 14rem 0 0 14rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-entry__form__label {
    font-size: 22rem;
    width: 100%;
    border-radius: 14rem 14rem 0 0;
  }
}
.p-entry__form__input {
  flex-grow: 1;
}
.p-entry__form__input .wpcf7-form-control-wrap {
  display: block;
  height: 100%;
}
.p-entry__form__input input,
.p-entry__form__input textarea {
  border: none;
  background-color: #fff;
  display: block;
  font-size: 16rem;
  padding: 22rem 27rem;
  width: 100%;
  border-radius: 0 14rem 14rem 0;
}
@media screen and (max-width: 767px) {
  .p-entry__form__input input,
  .p-entry__form__input textarea {
    font-size: 30rem;
    border-radius: 0 0 14rem 14rem;
  }
}
.p-entry__form__input input[type=email],
.p-entry__form__input input[type=text],
.p-entry__form__input input[type=tel],
.p-entry__form__input input[type=file] {
  height: 74rem;
}
@media screen and (max-width: 767px) {
  .p-entry__form__input input[type=file] {
    height: auto;
  }
}
.p-entry__form__input textarea {
  line-height: 1.4;
  height: 200rem;
}
@media screen and (max-width: 767px) {
  .p-entry__form__input textarea {
    height: 240rem;
  }
}
.p-entry__form__input select {
  width: 100%;
  height: 74rem;
  background-color: #fff;
  border: none;
  font-size: 16rem;
  padding: 22rem 27rem;
  border-radius: 0 14rem 14rem 0;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-entry__form__input select {
    font-size: 30rem;
    border-radius: 0 0 14rem 14rem;
  }
}
.p-entry__form__input .wpcf7-not-valid-tip {
  margin-left: 27rem;
  margin-top: -24rem;
}
@media screen and (max-width: 767px) {
  .p-entry__form__input .wpcf7-not-valid-tip {
    margin: -14rem 0 0;
    background: #fff;
    padding: 10rem 27rem;
    border-radius: 0 0 14rem 14rem;
  }
}
.p-entry__form__submit {
  font-size: 20rem;
  margin: 58rem auto 0;
  position: relative;
  width: 460rem;
}
@media screen and (max-width: 767px) {
  .p-entry__form__submit {
    font-size: 30rem;
  }
}
.p-entry__form__submit .wpcf7-submit {
  background-color: #333333;
  color: #fff;
  display: block;
  font-size: 20rem;
  font-family: "source-han-sans-japanese", "Hiragino Kaku Gothic ProN", "Yu Gothic", "yugothic", sans-serif;
  padding: 29rem;
  border: none;
  border-radius: 14rem;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
  width: 100%;
}
.p-entry__form__submit .wpcf7-submit:hover {
  background-color: #333333;
}
@media screen and (max-width: 767px) {
  .p-entry__form__submit .wpcf7-submit {
    font-size: 30rem;
  }
}
.p-entry__form__submit .arrow {
  position: absolute;
  color: #fff;
  pointer-events: none;
  right: 30rem;
  top: 42rem;
  transform: translateY(-50%);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 0.5px;
}
@media screen and (max-width: 767px) {
  .p-entry__form__submit .arrow {
    top: 50rem;
  }
}
.p-entry__form__submit .wpcf7-spinner {
  position: absolute;
  left: 100%;
  top: calc(50% - 12px);
}
.p-entry .wpcf7 form .wpcf7-response-output {
  font-size: 16rem;
  margin-bottom: 2em;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .p-entry .wpcf7 form .wpcf7-response-output {
    font-size: 22rem;
  }
}

/*
  3.3 - Utility
-----------------------------------------------------*/
/* ===============================================
  関数の登録
=============================================== */
/*
  数値から単位を取り除く
----------------------------------------------- */
/*
  px→remの計算
----------------------------------------------- */
/*
  px→vwの計算
----------------------------------------------- */
/*
  文字列からワードを検索して置換する
----------------------------------------------- */
/*
  @font-faceの設定
----------------------------------------------- */
/*
  object-fit
----------------------------------------------- */
/*
  Break
*/
.isPc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .isPc {
    display: block;
  }
}

.isSp {
  display: block;
}
@media screen and (min-width: 1024px) {
  .isSp {
    display: none !important;
    background-color: #fff;
    font-size: 12px;
  }
}

/*# sourceMappingURL=common.css.map */
