@charset "UTF-8";
/*!
global > font
------------------------------
*/
@font-face {
  font-family: "Nimbus Sans JP";
  src: url("../fonts/nimbus-sans-bold.otf") format("opentype");
}

:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-sub: "Nimbus Sans", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-hamburger: 100;
  --z-index-header: 30;
  --z-index-default: 1;
  --z-index-negative: -1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

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

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

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/*!
foundation > base
------------------------------
*/
html {
  font-size: calc(100vw / 375);
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: calc(100vw / 1440);
  }
}

body {
  line-height: calc(24 / 16);
  font-size: 16rem;
  color: #4B5563;
  font-family: var(--font-family-base);
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-d-block {
  display: block;
}

/*!
component > button
------------------------------
*/
.c-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  font-weight: 600;
  color: #16A34A;
  padding: 12rem 32rem;
  border-radius: 100vh;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .c-button:hover,
  .c-button:focus {
    background-color: #F3F4F6;
  }
}

.c-button--ghost {
  border: 2rem solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
}

@media (any-hover: hover) {
  .c-button--ghost:hover,
  .c-button--ghost:focus {
    background-color: #FFFFFF;
    color: #111827;
  }
}

.c-button--arrow {
  gap: 8rem;
  background-color: #16A34A;
  color: #FFFFFF;
}

.c-button--arrow::after {
  content: '';
  display: inline-block;
  width: 20rem;
  height: 20rem;
  background-image: url('../img/icon_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (any-hover: hover) {
  .c-button--arrow:hover,
  .c-button--arrow:focus {
    background-color: #15803D;
  }
}

.c-button02 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #16A34A;
  font-weight: 600;
  color: #FFFFFF;
  padding-block: 12rem;
  border-radius: 8rem;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .c-button02:hover,
  .c-button02:focus {
    background-color: #15803D;
  }
}

.c-button02--gradation {
  padding-block: 16rem;
  font-size: 18rem;
  font-weight: 600;
  line-height: calc(28 / 18);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, #15803D 0%, #1D4ED8 100%);
  z-index: 1;
}

.c-button02--gradation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #16A34A 0%, #2563EB 100%);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}

@media (any-hover: hover) {
  .c-button02--gradation:hover::before,
  .c-button02--gradation:focus::before {
    opacity: 0;
  }
}

.c-button02--submit {
  width: 100%;
  gap: 8rem;
  padding-block: 16rem;
}

.c-button02--submit::before {
  content: '';
  display: inline-block;
  width: 20rem;
  height: 20rem;
  background-image: url(../img/icon_paper_airplane.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*!
component > hamburger
------------------------------
*/
.c-hamburger {
  position: fixed;
  top: 16rem;
  right: 16rem;
  z-index: var(--z-index-hamburger);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24rem;
  height: 24rem;
  cursor: pointer;
  transition: all 0.3s;
}

.c-hamburger__line {
  position: relative;
  width: 16rem;
  height: 2rem;
  border-radius: 100vh;
  background-color: #374151;
  transition: all 0.3s;
}

.c-hamburger__line::before,
.c-hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 16rem;
  height: 2rem;
  background-color: #374151;
  transition: all 0.3s;
}

.c-hamburger__line::before {
  top: -6rem;
}

.c-hamburger__line::after {
  bottom: -6rem;
}

@media (any-hover: hover) {
  .c-hamburger:hover .c-hamburger__line,
  .c-hamburger:focus .c-hamburger__line,
  .c-hamburger:hover .c-hamburger__line::before,
  .c-hamburger:focus .c-hamburger__line::before,
  .c-hamburger:hover .c-hamburger__line::after,
  .c-hamburger:focus .c-hamburger__line::after {
    background-color: #16A34A;
  }
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line {
  background: transparent;
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

/*!
component > c-gnav
------------------------------
*/
.c-gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding: 64rem 16rem;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: var(--z-index-header);
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .c-gnav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    overflow-y: visible;
    opacity: 1;
    visibility: visible;
  }
}

.c-gnav__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .c-gnav__list {
    flex-direction: row;
    gap: 32rem;
  }
}

.c-gnav__link {
  display: block;
  font-size: 20rem;
  font-weight: 500;
  line-height: calc(28 / 20);
  color: #374151;
  padding: 12rem 0;
  border-bottom: 1rem solid #D1D5DB;
  text-align: center;
}

@media (min-width: 768px) {
  .c-gnav__link {
    font-size: 16rem;
    line-height: calc(24 / 16);
    padding: 0;
    border: none;
    text-align: left;
    transition: all 0.3s;
  }
}

@media (any-hover: hover) {
  .c-gnav__link:hover,
  .c-gnav__link:focus {
    color: #16A34A;
  }
}

/*!
component > title
------------------------------
*/
.c-title-level2 {
  font-size: 30rem;
  font-weight: 700;
  line-height: calc(36 / 30);
  text-align: center;
  color: #111827;
}

@media (min-width: 768px) {
  .c-title-level2 {
    font-size: 36rem;
    line-height: calc(40 / 36);
  }
}

/*!
component > lead
------------------------------
*/
.c-lead {
  font-size: 20rem;
  line-height: calc(28 / 20);
  text-align: center;
}

/*!
component > label
------------------------------
*/
.c-label {
  display: inline-block;
  font-size: 14rem;
  font-weight: 500;
  line-height: calc(20 / 14);
  color: #166534;
  background-color: #DCFCE7;
  padding: 4rem 12rem;
  border-radius: 100vh;
}

/*!
component > form
------------------------------
*/
.c-form-text {
  border: 1rem solid #D1D5DB;
  background-color: #FFFFFF;
  border-radius: 8rem;
  padding: 13rem 16rem 14rem;
  font-size: 16rem;
  line-height: calc(24 / 16);
  outline: none;
  width: 100%;
  color: #000;
}

.c-form-text--font-sub {
  font-family: var(--font-family-sub);
}

.c-form-text::placeholder {
  color: #9CA3AF;
}

.c-form-text:focus {
  border: 1rem solid #16A34A;
}

.c-form-text--textarea {
  field-sizing: content;
  min-height: 122rem;
}

.c-form-text--select {
  background-color: #EFEFEF;
  padding: 12rem 32rem 12rem 20rem;
  line-height: 1;
}

/*!
layout > container
------------------------------
*/
.l-container {
  padding-inline: 16rem;
}

@media (min-width: 768px) {
  .l-container {
    padding-inline: 112rem;
  }
}

/*!
layout > section
------------------------------
*/
.l-section {
  padding-block: 80rem;
}

/*!
layout > header
------------------------------
*/
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-header);
  background-color: #fff;
  height: 64rem;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}

.l-header__logo {
  flex-shrink: 0;
}

.l-header__logo-link {
  display: flex;
  align-items: center;
  gap: 8rem;
  font-size: 20rem;
  font-weight: 700;
  line-height: calc(28 / 20);
  color: #111827;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-header__logo-link:hover,
  .l-header__logo-link:focus {
    opacity: 0.7;
  }
}

.l-header__logo-img {
  width: 32rem;
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  background-color: #111827;
  color: #9CA3AF;
  padding-block: 48rem;
}

.l-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .l-footer__inner {
    grid-template-columns: calc((100% - 32rem * 3) / 4) 1fr;
  }
}

.l-footer__logo {
  display: flex;
  align-items: center;
  gap: 8rem;
  font-size: 20rem;
  font-weight: 700;
  line-height: calc(28 / 20);
  color: #fff;
}

.l-footer__logo-img {
  width: 32rem;
}

.l-footer__text {
  margin-top: 16rem;
}

.l-footer__sns-wrap {
  margin-top: 16rem;
  display: flex;
  align-items: center;
  gap: 16rem;
}

.l-footer__sns {
  display: block;
  width: 24rem;
  height: 24rem;
}

.l-footer__sns-icon {
  stroke: #9CA3AF;
  transition: all 0.3s;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (any-hover: hover) {
  .l-footer__sns:hover .l-footer__sns-icon,
  .l-footer__sns:focus .l-footer__sns-icon {
    stroke: #4ADE80;
  }
}

.l-footer__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .l-footer__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-footer__item-title {
  font-size: 18rem;
  font-weight: 600;
  line-height: calc(28 / 18);
  color: #fff;
}

.l-footer__child-list {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.l-footer__child-link {
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-footer__child-link:hover,
  .l-footer__child-link:focus {
    color: #4ADE80;
  }
}

.l-footer__address-list {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.l-footer__address-item {
  display: flex;
  gap: 8rem;
  font-family: var(--font-family-sub);
  font-size: 15.88rem;
  line-height: calc(24 / 15.88);
}

.l-footer__address-item::before {
  content: '';
  display: inline-block;
  grid-row: 1 / -1;
  width: 16rem;
  height: 16rem;
  translate: 0 2rem;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #4ADE80;
}

.l-footer__address-item--mail::before {
  mask-image: url('../img/icon_mail.svg');
}

.l-footer__address-item--tel::before {
  mask-image: url('../img/icon_tel.svg');
}

.l-footer__address-item--address::before {
  mask-image: url('../img/icon_map_marker.svg');
}

.l-footer__legal {
  margin-top: 32rem;
  padding-top: 30rem;
  border-top: 1rem solid #1F2937;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13rem;
}

@media (min-width: 768px) {
  .l-footer__legal {
    flex-direction: row;
    justify-content: space-between;
  }
}

.l-footer__copyright {
  font-family: var(--font-family-sub);
  font-size: 13.45rem;
  font-weight: 700;
  line-height: calc(20 / 13.45);
}

.l-footer__law {
  display: flex;
  gap: 24rem;
}

.l-footer__law-link {
  font-size: 14rem;
  line-height: calc(20 / 14);
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  height: 750rem;
  background-image: url(../img/bg_top_kv_sp.jpg);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  position: relative;
  text-align: center;
}

@media (min-width: 768px) {
  .top-kv {
    height: 900rem;
    background-image: url(../img/bg_top_kv.jpg);
  }
}

.top-kv::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 128rem;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

@media (min-width: 768px) {
  .top-kv__inner {
    max-width: 736rem;
    padding-inline: 44.5rem;
  }
}

.top-kv__copy {
  font-size: 36rem;
  font-weight: 700;
  line-height: calc(45 / 36);
  color: #fff;
}

@media (min-width: 768px) {
  .top-kv__copy {
    font-size: 60rem;
    line-height: calc(60 / 60);
  }
}

.top-kv__copy-gradation {
  background-image: linear-gradient(90deg, #4ADE80 0%, #3B82F6 50%, #9333EA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-kv__text {
  margin-top: 24rem;
  font-size: 20rem;
  line-height: calc(32.5 / 20);
  color: #F3F4F6;
}

@media (min-width: 768px) {
  .top-kv__text {
    font-size: 24rem;
    line-height: calc(32 / 24);
  }
}

.top-kv__button {
  margin-top: 32rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16rem;
}

@media (min-width: 768px) {
  .top-kv__button {
    flex-direction: row;
  }
}

.top-kv__recruitment-info {
  margin-top: 32rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
  color: #E5E7EB;
}

.top-kv__recruitment-info::before {
  content: '';
  display: inline-block;
  width: 16rem;
  height: 16rem;
  background-image: url(../img/icon_map_marker.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*!
page > top > top-about
------------------------------
*/
.top-about {
  background-color: #EFF6FF;
}

.top-about__lead {
  margin-top: 16rem;
  padding-inline: 2rem;
}

.top-about__body {
  margin-top: 64rem;
}

.top-about__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48rem;
}

@media (min-width: 768px) {
  .top-about__item {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.top-about__item-img-wrap {
  box-shadow:
    0 20rem 25rem -5rem rgba(0, 0, 0, 0.1),
    0 8rem 10rem -6rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 8rem;
}

.top-about__item-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24rem;
}

.top-about__item-list-item {
  display: grid;
  grid-template-columns: 48rem 1fr;
  column-gap: 16rem;
}

.top-about__item-list-item::before {
  content: '';
  display: inline-block;
  width: 48rem;
  height: 48rem;
  border-radius: 100vh;
  grid-row: 1 / 3;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.top-about__item-list-item--environment::before {
  background-color: #DCFCE7;
  background-image: url(../img/icon_leaf.svg);
}

.top-about__item-list-item--vegetable::before {
  background-color: #FEE2E2;
  background-image: url(../img/icon_heart.svg);
}

.top-about__item-list-item--health::before {
  background-color: #DCFCE7;
  background-image: url(../img/icon_earth.svg);
}

.top-about__item-list-title {
  font-size: 20rem;
  font-weight: 600;
  line-height: calc(28 / 20);
  color: #111827;
}

.top-about__item-list-text {
  grid-column: 2 / 3;
  margin-top: 8rem;
}

.top-about__box {
  margin-top: 64rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40rem;
  background-color: #fff;
  box-shadow:
    0 20rem 25rem -5rem rgba(0, 0, 0, 0.1),
    0 8rem 10rem -6rem rgba(0, 0, 0, 0.1);
  border-radius: 16rem;
  padding: 32rem;
}

@media (min-width: 768px) {
  .top-about__box {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 48rem;
  }
}

.top-about__box-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: #111827;
}

.top-about__box-title-color {
  background-image: linear-gradient(90deg, #16A34A, #2563EB);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-about__box-text {
  margin-top: 16rem;
}

.top-about__box-list {
  margin-top: 16rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8rem 9rem;
}

.top-about__box-img-wrap {
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 8rem
}

/*!
page > top > top-strength
------------------------------
*/
.top-strength__lead {
  margin-top: 16rem;
}

.top-strength__body {
  margin-top: 64rem;
}

.top-strength__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-strength__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.top-strength__item {
  box-shadow: 
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
  border-radius: 12rem;
  padding: 24rem;
}

.top-strength__item--safety {
  background-color: #F0FDF4;
}

.top-strength__item--quality {
  background-color: #EFF6FF;
}

.top-strength__item--regional {
  background-color: #F9FAFB;
}

.top-strength__item--sustainable {
  background-color: #F3F4F6;
}

.top-strength__item::before {
  content: '';
  display: block;
  width: 56rem;
  height: 56rem;
  border-radius: 8rem;
  background-size: 57%, contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 16rem;
}

.top-strength__item--safety::before {
  background-image: url('../img/icon_shield.svg'), linear-gradient(90deg, #4ADE80, #16A34A);
}

.top-strength__item--quality::before {
  background-image: url('../img/icon_medal.svg'), linear-gradient(90deg, #60A5FA, #2563EB);
}

.top-strength__item--regional::before {
  background-image: url('../img/icon_human.svg'), linear-gradient(90deg, #C084FC, #9333EA);
}

.top-strength__item--sustainable::before {
  background-image: url('../img/icon_leaf02.svg'), linear-gradient(90deg, #FB923C, #EA580C);
}

.top-strength__item-title {
  font-size: 20rem;
  font-weight: 600;
  line-height: calc(28 / 20);
  color: #111827;
}

.top-strength__item-text {
  margin-top: 12rem;
  line-height: calc(26 / 16);
}

.top-strength__box {
  margin-top: 64rem;
  padding: 32rem;
  border-radius: 16rem;
  background-image: linear-gradient(90deg, #16A34A 0%, #2563EB 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-strength__box {
    padding: 48rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.top-strength__box-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: #fff;
}

@media (min-width: 768px) {
  .top-strength__box-title {
    font-size: 30rem;
    line-height: calc(36 / 30);
  }
}

.top-strength__box-text {
  margin-top: 16rem;
  font-size: 18rem;
  line-height: calc(28 / 18);
  color: #DCFCE7;
}

.top-strength__box-button {
  margin-top: 24rem;
}

.top-strength__img-wrap {
  box-shadow:
    0 20rem 25rem -5rem rgba(0, 0, 0, 0.1),
    0 8rem 10rem -6rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 8rem
}

/*!
page > top > top-recruitment
------------------------------
*/
.top-recruitment {
  background-color: #F9FAFB;
}

.top-recruitment__lead {
  margin-top: 16rem;
}

.top-recruitment__body {
  margin-top: 64rem;
}

.top-recruitment__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-recruitment__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-recruitment__item {
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
  padding: 24rem;
  border-radius: 12rem;
  background-color: #fff;
}

.top-recruitment__item-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-recruitment__item-title {
  font-size: 20rem;
  font-weight: 600;
  line-height: calc(28 / 20);
  color: #111827;
}

.top-recruitment__item-info {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.top-recruitment__item-info-text {
  display: flex;
  align-items: center;
  gap: 8rem;
}

.top-recruitment__item-info-text::before {
  content: '';
  width: 16rem;
  height: 16rem;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #4B5563;
}

.top-recruitment__item-info-text--place::before {
  mask-image: url('../img/icon_map_marker.svg');
}

.top-recruitment__item-info-text--salary::before {
  mask-image: url('../img/icon_dollar.svg');
}

.top-recruitment__item-text {
  margin-top: 16rem;
}

.top-recruitment__item-list {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.top-recruitment__item-list-item {
  font-size: 14rem;
  line-height: calc(20 / 14);
  display: flex;
  align-items: center;
  gap: 8rem;
}

.top-recruitment__item-list-item::before {
  content: '';
  display: inline-block;
  width: 16rem;
  height: 16rem;
  background-image: url('../img/icon_check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-recruitment__item-button {
  margin-top: 24rem;
}

.top-recruitment__box {
  margin-top: 64rem;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow:
    0 20rem 25rem -5rem rgba(0, 0, 0, 0.1),
    0 8rem 10rem -6rem rgba(0, 0, 0, 0.1);
  padding: 32rem;
  border-radius: 16rem;
  background-color: #fff;
}

@media (min-width: 768px) {
  .top-recruitment__box {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32rem;
    padding: 48rem;
  }
}

.top-recruitment__box-item {
  margin-bottom: 24rem;
}

.top-recruitment__box-item--primary {
  margin-bottom: 32rem;
}

@media (min-width: 768px) {
  .top-recruitment__box-item--primary {
    margin-bottom: 0;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
}

.top-recruitment__box-title {
  font-size: 18rem;
  font-weight: 600;
  line-height: calc(28 / 18);
  color: #111827;
}

.top-recruitment__box-title--primary {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
}

.top-recruitment__box-list {
  margin-top: 24rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16rem;
}

@media (min-width: 768px) {
  .top-recruitment__box-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16rem;
  }
}

.top-recruitment__box-list-item {
  display: flex;
  align-items: center;
  gap: 12rem;
}

@media (min-width: 768px) {
  .top-recruitment__box-list-item {
    gap: 16rem;
  }
}

.top-recruitment__box-list-item::before {
  content: '';
  display: inline-block;
  width: 20rem;
  height: 20rem;
  background-image: url('../img/icon_check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-recruitment__box-text {
  margin-top: 12rem;
}

.top-recruitment__box-button {
  margin-top: 16rem;
}

@media (min-width: 768px) {
  .top-recruitment__box-button {
    grid-column: 2 / 3;
  }
}

/*!
page > top > top-contact
------------------------------
*/
.top-contact {
  background-color: #EFF6FF;
  padding-bottom: 71rem;
}

.top-contact__lead {
  margin-top: 16rem;
}

.top-contact__body {
  margin-top: 64rem;
}

.top-contact__list {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .top-contact__list {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    column-gap: 48rem;
  }
}

.top-contact__item {
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
  padding: 32rem;
  border-radius: 12rem;
  background-color: #fff;
}

@media (min-width: 768px) {
  .top-contact__item--form {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .top-contact__item--communication {
    grid-column: 2 / 3;
  }
}

.top-contact__item--tour {
  box-shadow: none;
  background-color: transparent;
  background-image: linear-gradient(90deg, #16A34A, #2563EB);
  color: #DCFCE7;
}

@media (min-width: 768px) {
  .top-contact__item--tour {
    grid-column: 2 / 3;
  }
}

.top-contact__item-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: #111827;
}

.top-contact__item-title--tour {
  color: #FFFFFF;
}

.top-contact-form__list {
  margin-top: 21rem;
  display: flex;
  flex-direction: column;
  gap: 20rem;
}

.top-contact-form__item--submit {
  margin-top: 13rem;
}

.top-contact-form__label {
  font-size: 13.89rem;
  font-weight: 500;
  line-height: calc(20 / 13.89);
  color: #374151;
}

.top-contact-form__input {
  margin-top: 8rem;
}

.top-contact-form__select {
  margin-top: 8rem;
}

.top-contact-communication {
  margin-top: 48rem;
}

@media (min-width: 768px) {
  .top-contact-communication {
    margin-top: 0;
  }
}

.top-contact-communication__list {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.top-contact-communication__item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16rem;
}

.top-contact-communication__item::before {
  content: '';
  display: inline-block;
  width: 48rem;
  height: 48rem;
  border-radius: 100vh;
  grid-row: 1 / 3;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.top-contact-communication__item--mail::before {
  background-image: url(../img/icon_mail.svg);
  background-color: #DCFCE7;
}

.top-contact-communication__item--tel::before {
  background-image: url(../img/icon_tel.svg);
  background-color: #DCFCE7;
}

.top-contact-communication__item--address::before {
  background-image: url(../img/icon_map_marker02.svg);
  background-color: #F3E8FF;
}

.top-contact-communication__item-title {
  font-weight: 600;
  color: #111827;
}

.top-contact-communication__item-text {
  font-family: var(--font-family-sub);
  font-size: 15.88rem;
  font-weight: 700;
  line-height: calc(24 / 15.88);
}

.top-contact-communication__item-biztime {
  display: block;
  font-size: 14rem;
  line-height: calc(20 / 14);
  color: #6B7280;
}

.top-contact-tour {
  margin-top: 32rem;
}

@media (min-width: 768px) {
  .top-contact-tour {
    margin-top: -49rem;
  }
}

.top-contact-tour__text {
  margin-top: 16rem;
}

.top-contact-tour__time {
  margin-top: 16rem;
  padding: 24rem 16rem 16rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8rem;
}

.top-contact-tour__term {
  font-size: 14rem;
  line-height: calc(20 / 14);
}

.top-contact-tour__definition {
  margin-top: 8rem;
  font-family: var(--font-family-sub);
  font-weight: 700;
  color: #fff;
}

.top-contact-tour__note {
  margin-top: 8rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
}
