@charset "UTF-8";

.animation {
  opacity: 0;
}

@-webkit-keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@-webkit-keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  to {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  to {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes opacityUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes opacityUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes opacityUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@keyframes opacityUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@-webkit-keyframes opacityZoom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%) scale(0.85);
    transform: translateY(-50%) scale(0.85);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
}

@keyframes opacityZoom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%) scale(0.85);
    transform: translateY(-50%) scale(0.85);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
}

@-webkit-keyframes opacityZoom2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes opacityZoom2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'メイリオ',
    Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

html {
  color: #000;
  background: #fff;
  font-size: 62.5%;
  line-height: 1.6;
  word-break: break-all;
}

body {
  font-size: 1.6rem;
  margin: 0;
}


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

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/

.inner {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.mincho {
  font-family: 'Zen Old Mincho', serif;
}

.arrow {
  display: inline-block;
  width: 64px;
  height: 64px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.arrow:after {
  content: '';
  height: 12px;
  width: 12px;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 43%;
  left: 36%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/* --------------------------------
is-target-page
----------------------------------- */

.is-target-page header {
  display: none;
}

.is-target-page .main__content {
  width: 100% !important;
}

/* --------------------------------
custom-header-body
----------------------------------- */
.custom-header-body {
  display: none;
}

/* --------------------------------
header
----------------------------------- */
.header {
  display: none;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  width: 40px;
}

/* --------------------------------
footer
----------------------------------- */
.footer {
  background-color: #2c2c2c;
  padding: 70px 0 24px;
  color: #fff;
}

.footer a {
  color: inherit;
}

.footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer__info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.footer__logo {
  width: 90px;
}

.footer__name {
  font-size: 1.8rem;
  margin-top: 20px;
}

.footer__address {
  font-size: 1.4rem;
  margin-top: 2px;
  font-style: normal;
}

.footer__nav {
  margin-left: auto;
}

.footer__item {
  margin-top: 26px;
}

.footer__item a {
  position: relative;
}

.footer__item a:after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -1px;
  /*アンダーラインがaタグの下端から現れる*/
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

.footer__item:first-of-type {
  margin-top: 0;
}

.footer__btn {
  color: #fff;
  margin-left: 90px;
}

.footer__btn a {
  display: block;
  color: inherit;
  text-align: center;
  background-color: #b13634;
  padding: 14px;
  border: 1px solid #b13634;
}

.footer__btn span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
  margin-left: 5px;
}

.footer .copyright {
  text-align: center;
  margin-top: 70px;
  font-size: 1.2rem;
}

/* --------------------------------
gnav
----------------------------------- */
.gnav {
  width: 18%;
  padding: 60px 28px;
  background-color: #f7f5ef;
  font-weight: 500;
}

.gnav__content {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
}

.gnav__logo {
  text-align: center;
}

.gnav__logo img {
  width: 87px;
}

.gnav__nav {
  margin-top: 40px;
}

.gnav__item {
  margin-top: 26px;
}

.gnav__item:first-of-type {
  margin-top: 0;
}

.gnav__item a {
  position: relative;
}

.gnav__item a:after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  bottom: -1px;
  /*アンダーラインがaタグの下端から現れる*/
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

.gnav__item--contact a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-align: center;
  padding: 14px;
  background-color: #b13634;
  color: #fff;
  border: 1px solid #b13634;
}

.gnav__item--contact a:after {
  content: none;
}

.gnav__item--contact span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
  margin-left: 5px;
}

/* --------------------------------
.is-target-page
----------------------------------- */
@media screen and (max-width: 600px) {}

/* --------------------------------
main__contents
----------------------------------- */
.main__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.main__contents .main__content {
  width: 82%;
}

/* --------------------------------
hamburger
----------------------------------- */
.hamburger {
  width: 32px;
  height: 22px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.4px;
  background-color: #000;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:first-of-type {
  top: 0;
}

.hamburger span:nth-of-type(2) {
  top: 50%;
}

.hamburger span:last-of-type {
  bottom: 0;
}

.hamburger.active span:nth-of-type(2) {
  width: 0;
}

.hamburger.active span:first-of-type,
.hamburger.active span:last-of-type {
  top: 50%;
}

.hamburger.active span:first-of-type {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger.active span:last-of-type {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.breadcrumb__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb__item:after {
  content: '';
  display: block;
  width: 41px;
  height: 1px;
  background-color: #000;
  margin: 0 12px;
}

.breadcrumb__item:last-of-type {
  color: #b13634;
}

.breadcrumb__item:last-of-type:after {
  content: none;
}

.breadcrumb__item:last-of-type a {
  pointer-events: none;
}

.breadcrumb__item a {
  color: inherit;
}

/* --------------------------------
page
----------------------------------- */
.page__content {
  padding: 70px 0 0;
}

.page__title {
  margin-top: 70px;
  font-family: 'Yuji Syuku', serif;
  font-size: 8rem;
}

.page__lead {
  font-size: 2.1rem;
  font-weight: 500;
}

.page__thumbnail {
  margin-top: 80px;
  position: relative;
}

.page__thumbnail-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -18%);
  transform: translate(-50%, -18%);
  z-index: 10;
  width: 52vw;
  max-width: 740px;
  -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.54));
  filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.54));
}

.page__thumbnail img {
  width: 100%;
}

.page__subtitle {
  font-size: 3.2rem;
  text-align: center;
  font-weight: 500;
  margin-top: 100px;
}

/* --------------------------------
section
----------------------------------- */
.section__title {
  font-family: 'Yuji Syuku', serif;
  font-size: 6.2rem;
}

.section__title.is-animate {
  -webkit-animation: opacity 1.3s ease forwards;
  animation: opacity 1.3s ease forwards;
}

.card__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 70px 50px;
  margin-top: 80px;
}

.card__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(50% - 25px);
  -ms-flex: 0 0 calc(50% - 25px);
  flex: 0 0 calc(50% - 25px);
}

.card__thumbnail {
  aspect-ratio: 25/14;
  overflow: hidden;
}

.card__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.card__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 18px;
  font-size: 1.4rem;
}

.card__cat {
  margin-left: 20px;
  background-color: #2c2c2c;
  color: #fff;
  line-height: 1;
  padding: 0.5em 0.8em;
}

.card__title {
  font-weight: bold;
  line-height: 1.7;
  margin-top: 14px;
  font-size: 1.6rem;
}

.pager {
  text-align: center;
  color: #000;
  font-weight: bold;
  margin-top: 120px;
}

.pager .page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.pager span,
.pager a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
}

.pager .current {
  background-color: #000;
  color: #fff;
}

.pager .next {
  position: relative;
}

.pager .next:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #000;
  border-right: 1.5px solid #000;
}

.pager .prev {
  position: relative;
}

.pager .prev:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-bottom: 1.5px solid #000;
  border-left: 1.5px solid #000;
}

.recruit {
  background: url(../img/common/recruit-bg.jpg) center center/cover no-repeat;
}

.recruit.s-recruit-entry {
  background-image: none;
  position: relative;
}

.recruit.s-recruit-entry:after {
  content: '';
  display: block;
  width: 41vw;
  height: 15vw;
  background: url(../img/common/s-recruit-entry.png) no-repeat center center/cover;
  position: absolute;
  top: 5%;
  right: 2%;
}

.recruit.s-recruit-entry .recruit__bg {
  background-color: #2c2c2c;
}

.recruit.s-recruit-entry .recruit__inner {
  position: relative;
  z-index: 2;
}

.recruit.s-recruit-entry .recruit__btn {
  background-color: #b13634;
}

.recruit__bg {
  display: block;
  background-color: #b13634;
  color: #fff;
  height: 414px;
  display: grid;
  place-content: center;
  pointer-events: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.recruit__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.recruit__titles {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 1;
}

.recruit__name {
  font-size: 3rem;
}

.recruit__text {
  margin-top: 60px;
}

.recruit__btn {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 216px;
  -ms-flex: 0 0 216px;
  flex: 0 0 216px;
  height: 216px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: grid;
  place-content: center;
  margin-left: 150px;
  text-align: center;
  font-size: 2.1rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  pointer-events: auto;
  color: #fff;
}

.recruit__btn span {
  width: 8px;
  height: 8px;
  display: block;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 18px auto 0;
}

.single__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
}

.single__contents {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

.single__thumbnail {
  aspect-ratio: 4/3;
  margin-top: 30px;
}

.single__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.single__title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #bf9c60;
  border-bottom: 4px solid #bf9c60;
  margin-top: 16px;
}

.single__top {
  margin-top: -10px;
}

.single__time {
  font-size: 1.5rem;
  font-weight: bold;
  color: #96989b;
  margin-top: 10px;
}

.single__accept {
  color: #fff;
  background-color: #bf9c60;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0.5em 1em;
  margin-left: 24px;
  display: inline-block;
  line-height: 1;
}

.single__cat {
  color: #fff;
  background-color: #bf9c60;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0.5em 1em;
  margin-left: 24px;
  display: inline-block;
  line-height: 1;
  margin-top: 10px;
}

.single__content {
  margin-top: 40px;
}

.single__content #toc_container {
  background-color: #f3f3f3;
  border: none;
  width: 100%;
  padding: 25px;
  display: block;
}

.single__content #toc_container .toc_title {
  text-align: left;
  border-bottom: 2px solid #000;
  font-size: 1.8rem;
}

.single__content #toc_container .toc_title span {
  font-size: 1.4rem;
}

.single__content #toc_container .toc_list {
  counter-reset: section;
  margin-top: 50px;
  color: #000;
}

.single__content #toc_container .toc_list li {
  display: block;
  margin-top: 8px;
}

.single__content #toc_container .toc_list li::before {
  background: none;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
}

.single__content #toc_container .toc_list>li {
  counter-increment: num;
  margin-top: 30px;
}

.single__content #toc_container .toc_list>li::before {
  content: counter(num);
  background: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 32px;
  height: 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 6px;
  border-radius: 0px;
  background-color: #000;
  color: #fff;
}

.single__content #toc_container .toc_list .toc_number {
  display: none;
}

.single__content #toc_container .toc_list a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.single__content p {
  margin-top: 30px;
  line-height: 2;
}

.single__content .wp-block-table {
  margin-top: 30px;
  margin-bottom: 0;
}

.single__content h2 {
  font-size: 2.4rem;
  border-left: 6px solid #bf9c60;
  background-color: rgba(191, 156, 96, 0.15);
  padding: 8px 20px 8px 14px;
  margin-top: 60px;
  font-weight: bold;
}

.single__content h3 {
  margin-top: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 2px solid rgba(191, 156, 96, 0.15);
  font-size: 2.1rem;
  padding-bottom: 10px;
  position: relative;
  font-weight: bold;
}

.single__content h3::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 17px;
  border-color: transparent transparent transparent #bf9c60;
  margin-right: 9px;
}

.single__content h3:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 30%;
  height: inherit;
  border-bottom: 2px solid #bf9c60;
}

.single__content h4 {
  font-weight: bold;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 2px solid rgba(191, 156, 96, 0.15);
  padding-bottom: 10px;
  margin-top: 30px;
}

.single__content h4::before {
  content: '';
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25px;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #bf9c60;
  margin-right: 9px;
}

.single__content .wp-block-image {
  margin-top: 30px;
}

.single__content .wp-block-image img {
  width: 100%;
}

.single__content .wp-block-media-text {
  margin-top: 30px;
}

.single__content ul {
  margin-top: 30px;
}

.single__content ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.single__content ul li:first-of-type {
  margin-top: 0;
}

.single__content ul li::before {
  content: '';
  background-color: #bf9c60;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8px;
  -ms-flex: 0 0 8px;
  flex: 0 0 8px;
  height: 8px;
  display: block;
  margin-right: 9px;
}

.single__content ol {
  counter-reset: ol;
  margin-top: 30px;
}

.single__content ol li {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.single__content ol li:first-of-type {
  margin-top: 0;
}

.single__content ol li::before {
  content: counter(ol);
  counter-increment: ol;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 32px;
  -ms-flex: 0 0 32px;
  flex: 0 0 32px;
  height: 32px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #bf9c60;
  margin-right: 10px;
  color: #fff;
}

.single__content a {
  color: #036fd3;
  text-decoration: underline;
}

.page-nav {
  margin-top: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-nav a {
  color: #000;
}

.page-nav a:not(:first-of-type) {
  margin-left: 100px;
}

.page-nav a.prev-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-nav a.prev-link::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-bottom: 1.5px solid #000;
  border-left: 1.5px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 18px;
}

.page-nav a:nth-of-type(2) {
  text-align: center;
}

.page-nav a.next-link {
  text-align: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-nav a.next-link::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #000;
  border-right: 1.5px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 18px;
}

.flow {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 880;
  max-width: 230px;
  line-height: 1;
}

.flow .mail {
  padding: 1.5em 3em;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  letter-spacing: 0.1em;
}

.flow .mail span {
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16px;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  margin-right: 12px;
}

.flow img {
  vertical-align: middle;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
.mv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -18%);
  transform: translate(-50%, -18%);
  z-index: 10;
  width: 52vw;
  max-width: 740px;
  -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.54));
  filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.54));
}

.mv .swiper-main {
  -webkit-transition: all linear 0.8s;
  transition: all linear 0.8s;
  position: relative;
}

.mv .swiper-main .swiper-slide img {
  max-width: initial;
  width: 100%;
  height: 100%;
}

.mv .swiper-thumb {
  max-width: 574px;
  margin: auto;
  padding-bottom: 20px;
}

.mv .swiper-thumb .swiper-wrapper {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.mv .swiper-thumb .swiper-slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 19%;
  -ms-flex: 0 0 19%;
  flex: 0 0 19%;
}

.mv .swiper-thumb .swiper-slide:last-of-type {
  margin-right: 0 !important;
}

.mv .progressbar {
  margin: 14px auto 0;
  width: 466px !important;
}

.mv .progressbar span {
  max-width: 100%;
}

.mv .progressbar__in {
  width: 100%;
  display: block;
  background-color: #2c2c2c;
  height: 4px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.message {
  background: url(../img/common/message-bg.jpg) center center/cover no-repeat;
  padding: 144px 0 110px;
}

.message__title {
  position: relative;
}

.message__title.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.message__title span {
  position: relative;
  z-index: 2;
}

.message__title:after {
  content: '';
  display: block;
  background: url(../img/common/message-deco.svg) center center/cover no-repeat;
  position: absolute;
  top: -10%;
  left: 9%;
  width: 426px;
  height: 128px;
}

.message__title img {
  position: relative;
  z-index: 2;
}

.message__info {
  margin-top: 100px;
  width: 66%;
  margin-left: auto;
}

.message__lead {
  font-size: 2.6rem;
}

.message__lead.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.message__text {
  font-size: 1.8rem;
  margin-top: 60px;
  line-height: 2;
}

.message__text.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.message__text span {
  display: block;
  margin-top: 24px;
}

.message__btn {
  margin-top: 80px;
  text-align: right;
}

.message__btn .btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.message__btn .btn:hover .arrow {
  background-color: #000;
}

.message__btn .btn:hover .arrow:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.message__btn .btn .arrow {
  border: 1px solid #000;
  margin-left: 52px;
}

.message__btn .btn .arrow:after {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.work {
  background: url(../img/common/work-bg.jpg) center center/cover no-repeat;
  padding: 80px 0;
}

.work a {
  overflow: hidden;
}

.work__content {
  background: url(../img/common/work-img.jpg) center center/cover no-repeat;
  padding: 30px 0;
}

.work .section__title {
  padding-left: 50px;
}

.work__title {
  background: rgba(246, 247, 239, 0.5);
  padding-left: 50px;
  background: url(../img/common/work-title-bg.jpg) center center/cover no-repeat;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
  font-family: 'Yuji Syuku', serif;
  font-size: 5rem;
}

.work__text {
  color: #fff;
  font-size: 2.1rem;
  margin-top: 18px;
  padding-left: 50px;
  line-height: 1.8;
  font-weight: 500;
}

.work__arrow {
  text-align: right;
  padding-right: 30px;
}

.work__arrow .arrow {
  border: 1px solid #000;
}

.work__arrow .arrow:after {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.black {
  background: url(../img/common/black-bg.jpg) center center/cover no-repeat;
  color: #fff;
  padding: 110px 0;
}

.black a {
  color: inherit;
}

.black__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.black__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48%;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
}

.black__item a {
  pointer-events: none;
}

.black .section__title {
  font-size: 5rem;
}

.black__img {
  margin-top: 20px;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.black__img.animation {
  opacity: 1 !important;
}

.black__img img {
  width: 100%;
  max-width: initial;
  -webkit-transition: all 1.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 1.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.black__img.is-animate img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.black__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 14px;
  pointer-events: auto;
}

.black__text .arrow {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 64px;
  -ms-flex: 0 0 64px;
  flex: 0 0 64px;
}

.history {
  background-color: #f7f5ef;
  padding: 152px 0 110px;
  position: relative;
}

.history .section__title {
  text-align: center;
}

.history .inner {
  position: relative;
  z-index: 2;
}

.history__list {
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.history__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0;
  border-bottom: 1px solid #000;
}

.history__date {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  font-size: 1.8rem;
}

.history__title {
  font-size: 1.8rem;
}

.history__btn {
  margin-top: 80px;
}

.history__btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 420px;
  height: 86px;
  background-color: #2c2c2c;
  margin: auto;
  color: #fff;
  font-size: 2.1rem;
  border: 1px solid #000;
}

.history__btn a span {
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 36px;
}

.history__wood {
  position: absolute;
  right: 0;
  bottom: 0;
}

.p-news {
  height: 1200px;
}

.p-interview {
  color: #fff;
}

.p-interview .breadcrumb__item:last-of-type {
  color: #fff;
}

.p-interview .breadcrumb__item:after {
  background-color: #fff;
}

.p-interview__content {
  background: url(../img/common/paper-bg.jpg) center center;
  position: relative;
}

.p-interview__texture {
  position: absolute;
}

.p-interview__texture1 {
  top: 0;
  right: 0;
  width: 45vw;
}

.p-interview__texture2 {
  top: 0;
  left: 0;
  width: 45vw;
}

.p-interview__texture3 {
  top: 46%;
  right: 0;
  width: 45vw;
}

.p-interview__texture4 {
  bottom: 10.5%;
  left: 0;
  width: 45vw;
}

.p-interview__inner {
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}

.p-interview__list {
  margin-top: 80px;
}

.p-interview__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #f7f5ef;
  color: #000;
  padding: 30px;
  margin-top: 40px;
}

.p-interview__item:first-of-type {
  margin-top: 0;
}

.p-interview__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-interview__intro {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.p-interview__img {
  aspect-ratio: 1/1;
}

.p-interview__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-interview__names {
  margin-top: 8px;
  padding: 0 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-interview__year {
  background-color: #b13634;
  color: #fff;
  padding: 3px 10px;
}

.p-interview__name {
  margin-left: 8px;
}

.p-interview__info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 72%;
  -ms-flex: 0 0 72%;
  flex: 0 0 72%;
}

.p-interview__title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-top: 6px;
}

.p-interview__text {
  margin-top: 18px;
  line-height: 1.9;
}

.p-interview .pager {
  color: #fff;
}

.p-interview .pager .current {
  background-color: #fff;
  color: #000;
}

.p-interview .pager span:hover,
.p-interview .pager a:hover {
  background-color: #fff;
  color: #000;
}

.p-interview .pager .next:after {
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
}

.p-interview .pager .prev:after {
  border-bottom: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
}

.p-interview .recruit {
  position: relative;
  z-index: 2;
}

.p-work {
  color: #fff;
}

.p-work .breadcrumb__item:last-of-type {
  color: #fff;
}

.p-work .breadcrumb__item:after {
  background-color: #fff;
}

.p-work__content {
  padding: 0;
}

.p-work-top {
  padding-top: 70px;
  background: url(../img/common/paper-bg.jpg) center center;
  position: relative;
}

.p-work__texture {
  position: absolute;
  top: 5%;
  right: 3%;
}

.p-work__list {
  padding-bottom: 220px;
  max-width: 1180px;
  margin: 100px auto 0;
}

.p-work__inner {
  position: relative;
  z-index: 2;
}

.p-work__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 170px;
  position: relative;
  gap: 180px;
}

.p-work__item:first-of-type {
  margin-top: 0;
}

.p-work__item:first-of-type .p-work__title::before {
  background-image: url(../img/common/individuality.svg);
  width: 130px;
  height: 270px;
}

.p-work__item:first-of-type .p-work__img {
  bottom: -10%;
}

.p-work__item:first-of-type .cloud-texture {
  margin-top: 112px;
}

.p-work__item:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-work__item:nth-of-type(2) .p-work__title::before {
  background-image: url(../img/common/challenge.svg);
  width: 102px;
  height: 471px;
}

.p-work__item:nth-of-type(2) .p-work__img {
  right: initial;
  left: 0;
  bottom: 8%;
}

.p-work__item:nth-of-type(2) .cloud-texture {
  margin-top: 173px;
}

.p-work__item:nth-of-type(3) .p-work__title::before {
  background-image: url(../img/common/warm.svg);
  width: 123px;
  height: 372px;
}

.p-work__item:nth-of-type(3) .p-work__img {
  bottom: -25%;
}

.p-work__item:nth-of-type(3) .cloud-texture {
  margin-top: 53px;
}

.p-work__item .cloud-texture {
  display: block;
}

.p-work__subtitle.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-work__title {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 2.4rem;
  color: #bf9c60;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding-top: 20px;
  position: relative;
}

.p-work__title.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-work__title.is-animate:before {
  -webkit-animation: opacityZoom2 1.3s ease forwards;
  animation: opacityZoom2 1.3s ease forwards;
}

.p-work__title::before {
  content: '';
  display: block;
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  top: -10%;
  right: -80%;
}

.p-work__title::after {
  content: '';
  position: absolute;
  display: block;
  width: 33px;
  height: 33px;
  background: url(../img/common/block-texture2.svg) center center/cover no-repeat;
  top: -16px;
  right: -54px;
}

.p-work__text {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 40%;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  line-height: 2.2;
}

.p-work__text.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-work__img {
  position: absolute;
  bottom: 5%;
  right: 0;
  max-width: 387px;
}

.p-work__img.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-work-bottom {
  color: #000;
  padding-bottom: 110px;
}

.p-work-bottom .p-work__subtitle {
  color: #000;
}

.p-work-bottom__wrap {
  position: relative;
  margin-top: 80px;
}

.p-work-bottom__wrap2 {
  margin-top: 40px;
}

.p-work-bottom__title {
  position: absolute;
  top: 0;
  left: 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #bf9c60;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  white-space: nowrap;
  font-weight: bold;
}

.p-work-bottom__title.is-animate {
  -webkit-animation: opacity 1.3s ease forwards;
  animation: opacity 1.3s ease forwards;
}

.p-work-bottom__img {
  width: 80%;
  margin: auto;
}

.p-work-bottom__img.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-work-bottom__text {
  width: 80%;
  margin: 28px auto 0;
  line-height: 2;
}

.p-work-bottom__text.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-work-bottom-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding-right: 3%;
  margin-top: 120px;
}

.p-work-bottom-center__img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 86%;
  -ms-flex: 0 0 86%;
  flex: 0 0 86%;
}

.p-work-bottom-center__img.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-work-bottom-center__title {
  margin-left: 3%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #bf9c60;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-weight: bold;
}

.p-work-bottom-center__title.is-animate {
  -webkit-animation: opacity 1.3s ease forwards;
  animation: opacity 1.3s ease forwards;
}

.p-work .recruit {
  position: relative;
  z-index: 2;
}

.p-message__content {
  padding-top: 0;
}

.p-message-top {
  padding-top: 70px;
  padding-bottom: 106px;
  background: url(../img/common/p-message-top-bg.jpg) center center/cover no-repeat;
}

.p-message-top__title {
  font-size: 2.6rem;
  line-height: 2;
  font-weight: 500;
  padding-left: 10%;
  margin-top: 100px;
}

.p-message-top__title.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-message-top__text {
  margin-top: 50px;
  font-size: 1.8rem;
  line-height: 2;
  padding-left: 10%;
}

.p-message-top__text.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-message-top__text span {
  margin-top: 1em;
  display: block;
}

.p-message-bottom {
  padding: 120px 0;
}

.p-message-bottom__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 100px;
}

.p-message-bottom__item:first-of-type {
  margin-top: 0;
}

.p-message-bottom__item:first-of-type .p-message-bottom__title:after {
  background: url(../img/common/omoi.svg) center center/contain no-repeat;
  max-width: 298px;
  width: 60%;
  height: 10vw;
}

.p-message-bottom__item:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-message-bottom__item:nth-of-type(2) .p-message-bottom__title:after {
  background: url(../img/common/vision.svg) center center/contain no-repeat;
  width: 100%;
  height: 10vw;
}

.p-message-bottom__item:nth-of-type(2) .p-message-bottom__img1 {
  margin-left: auto;
}

.p-message-bottom__item:nth-of-type(2) .p-message-bottom__img2 {
  margin-left: 0;
}

.p-message-bottom__item:nth-of-type(3) .p-message-bottom__title:after {
  background: url(../img/common/message.svg) center center/contain no-repeat;
  width: 100%;
  height: 10vw;
}

.p-message-bottom__images {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 47.5%;
  -ms-flex: 0 0 47.5%;
  flex: 0 0 47.5%;
}

.p-message-bottom__images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-message-bottom__img {
  -webkit-filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.1));
}

.p-message-bottom__img1 {
  width: 23.612vw;
}

.p-message-bottom__img1.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-message-bottom__img2 {
  width: 19.306vw;
  margin-left: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-message-bottom__img2.is-animate {
  -webkit-animation: opacityUp2 1.3s ease forwards;
  animation: opacityUp2 1.3s ease forwards;
}

.p-message-bottom__img3.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-message-bottom__contents {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 46.5%;
  -ms-flex: 0 0 46.5%;
  flex: 0 0 46.5%;
}

.p-message-bottom__subtitle {
  color: #bf9c60;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.p-message-bottom__subtitle.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-message-bottom__title {
  font-size: 2.1rem;
  font-weight: bold;
  margin-top: 12px;
  position: relative;
}

.p-message-bottom__title.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-message-bottom__title.is-animate:after {
  -webkit-animation: opacityZoom 1.3s ease forwards;
  animation: opacityZoom 1.3s ease forwards;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-message-bottom__title span {
  position: relative;
  z-index: 2;
}

.p-message-bottom__title:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
}

.p-message-bottom__text {
  margin-top: 38px;
  line-height: 2;
  position: relative;
  z-index: 2;
}

.p-message-bottom__text.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-message-bottom__text span {
  display: block;
  margin-top: 1em;
}

.p-message .recruit {
  position: relative;
  z-index: 2;
}

.p-history__content {
  position: relative;
  background: url(../img/common/p-history-bg.jpg) center center/cover no-repeat;
}

.p-history__inner {
  padding-bottom: 120px;
  position: relative;
}

.p-history .recruit {
  position: relative;
  z-index: 2;
}

.s-history__content {
  position: relative;
  background-color: #fff;
}

.s-history__content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 891px;
  display: block;
  background: url(../img/common/s-history-bg.jpg) center center/cover no-repeat;
}

.s-history__inner {
  position: relative;
  z-index: 2;
}

.p-entry__inner {
  padding-bottom: 120px;
}

.p-entry__content {
  background-color: #f7f5ef;
}

.p-entry__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 40px auto 0;
}

.p-entry__list::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(191, 156, 96, 0.6);
}

.p-entry__item {
  position: relative;
  z-index: 2;
  color: #000;
  font-weight: bold;
  background-color: #f7f5ef;
  padding: 20px;
  color: rgba(191, 156, 96, 0.6);
}

.p-entry__item.active {
  color: #b08539;
}

.p-entry__btn {
  text-align: center;
  margin-top: 60px;
}

.p-entry__btn span {
  position: relative;
}

.p-entry__btn span:after {
  content: '';
  width: 9px;
  height: 9px;
  background-color: transparent;
  z-index: 2;
  display: block;
  position: absolute;
  top: 50%;
  right: 18%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-entry__btn input[type='submit'] {
  max-width: 420px;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 27px;
  font-size: 2.1rem;
  background-color: #2c2c2c;
  color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

.p-entry-thanks {
  text-align: center;
  margin-top: 120px;
}

.p-entry-thanks__title {
  font-size: 4.2rem;
  font-weight: bold;
  color: #bf9c60;
}

.p-entry-thanks__text {
  line-height: 2;
  margin-top: 80px;
}

.p-entry .recruit {
  position: relative;
  z-index: 2;
}

.form {
  background-color: #fff;
  padding: 80px 0;
  margin-top: 40px;
}

.form__inner {
  max-width: 640px;
  margin: auto;
  padding: 0 20px;
}

.form__lead {
  font-size: 2.1rem;
  font-weight: bold;
}

.form form {
  margin-top: 80px;
}

.form form table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.form form tr {
  margin-top: 35px;
  display: block;
}

.form form tr:first-of-type {
  margin-top: 0;
}

.form form th {
  font-weight: bold;
  letter-spacing: 0.1em;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.form form th span {
  font-size: 1.2rem;
  background-color: #b13634;
  color: #fff;
  padding: 0.15em 1em;
  margin-right: 22px;
}

.form form th span.any {
  color: #fff;
  background-color: #b7b7b7;
}

.form form td {
  display: block;
  margin-top: 10px;
}

.form form td.inline {
  width: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.form form td.inline input[type='text'] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 80px;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  margin-right: 10px;
}

.form form input[type='text'],
.form form textarea {
  border: 1px solid #bcbcbc;
  background-color: #fbfbfb;
  width: 100%;
  padding: 15px 20px;
}

.form form input[type='text']::-webkit-input-placeholder,
.form form textarea::-webkit-input-placeholder {
  color: #a1a1a1;
}

.form form input[type='text']::-moz-placeholder,
.form form textarea::-moz-placeholder {
  color: #a1a1a1;
}

.form form input[type='text']:-ms-input-placeholder,
.form form textarea:-ms-input-placeholder {
  color: #a1a1a1;
}

.form form input[type='text']::-ms-input-placeholder,
.form form textarea::-ms-input-placeholder {
  color: #a1a1a1;
}

.form form input[type='text']::placeholder,
.form form textarea::placeholder {
  color: #a1a1a1;
}

.form form textarea {
  min-height: 150px;
}

.form form input[type='radio'],
.form form input[type='checkbox'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

.form form input[type='radio']+span,
.form form input[type='checkbox']+span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.form form input[type='radio']+span:before,
.form form input[type='checkbox']+span:before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #b13634;
  display: inline-block;
  margin-right: 0.5em;
}

.form form input[type='checkbox']+span:before {
  border-radius: 0;
}

.form form input[type='radio']+span:after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  background-color: #b13634;
  position: absolute;
  top: 8px;
  left: 4px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form form input[type='checkbox']+span:after {
  content: '';
  width: 5px;
  height: 10px;
  display: inline-block;
  border-right: 1.5px solid #b13634;
  border-bottom: 1.5px solid #b13634;
  position: absolute;
  top: 5px;
  left: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form form input[type='radio']:checked+span:after,
.form form input[type='checkbox']:checked+span:after {
  opacity: 1;
}

.form form .select {
  display: inline-block;
  position: relative;
}

.form form .select:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: #2c2c2c transparent transparent transparent;
}

.form form .select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 300px;
  border: 1px solid #bcbcbc;
  background-color: #fbfbfb;
  padding: 15px 20px;
}

.form form .select select::-ms-expand {
  display: none;
}

.p-confirm .form form td {
  border-bottom: 1px solid #bcbcbc;
}

.p-confirm .form form td.inline {
  display: block;
  width: 100%;
}

.p-confirm .form form .select {
  display: block;
}

.p-confirm .form form .select:after {
  content: none;
}

.p-confirm .form form .back_btn {
  display: block;
  margin: 30px auto;
  border-bottom: 1px solid #000;
}

.p-recruit-shop__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 3%;  /* 1番目のタクソノミー（店舗）を非表示にする際、.p-recruit-shop__itemのレイアウト崩れ防止のため */
}

.p-recruit-shop__item {
  /* margin-left: 3%; */
  margin-top: 3%;
  width: 31.3333333333%;
}

.p-recruit-shop__item a {
  background-color: #bf9c60;
  color: #fff;
  padding: 15px;
  display: block;
  font-size: 1.4rem;
  text-align: center;
}

.p-recruit-shop__item:first-of-type,
.p-recruit-shop__item:nth-of-type(3n + 1) {
  margin-left: 0;
}

/* タクソノミーの1番目だけを非表示 */
 .hide-first {
   display: none;
 }

.p-recruit__content {
  position: relative;
  background-color: #f7f5ef;
}

.p-recruit__content:after {
  content: '';
  display: block;
  width: 100%;
  height: 767px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/common/p-recruit-bg.png) center center/cover no-repeat;
}

.p-recruit__inner {
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}

.p-recruit .pager .current {
  background-color: #bf9c60;
}

.p-recruit .pager span:hover,
.p-recruit .pager a:hover {
  background-color: #bf9c60;
}

.p-recruit .recruit {
  position: relative;
  z-index: 2;
}

.s-recruit .breadcrumb__item:last-of-type {
  color: #fff;
}

.s-recruit .breadcrumb__item:after {
  background-color: #fff;
}

.s-recruit__content {
  padding-top: 0;
}

.s-recruit-top {
  background: url(../img/common/s-recruit-top-bg.jpg) center center/cover no-repeat;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 180px;
}

.s-recruit__thumbnail {
  position: relative;
  aspect-ratio: 5/3;
  margin-top: 0 !important;
}

.s-recruit__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.s-recruit__catch {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 3%;
}

.s-recruit__catch .card__cat {
  margin-left: 0;
}

.s-recruit__catch__title {
  font-size: 5.6rem;
  line-height: 1.6;
  margin-top: 10px;
  color: #fff;
}

.s-recruit-lead {
  margin-top: 100px;
}

.s-recruit-lead__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 80px;
}

.s-recruit-lead__content {
  width: 50%;
}

.s-recruit-lead__catch {
  font-size: 2.6rem;
  line-height: 2;
}

.s-recruit-lead__text {
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 60px;
}

.s-recruit__subtitle {
  font-size: 3.2rem;
  text-align: center;
  font-weight: bold;
}

.s-recruit__slider {
  width: 40%;
  position: relative;
  aspect-ratio: 4/5;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.s-recruit__slider .swiper-slide-container {
  aspect-ratio: 4/5;
}

.s-recruit__slider .swiper-slide-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.s-recruit__slider .swiper-horizontal>.swiper-pagination-bullets,
.s-recruit__slider .swiper-pagination-bullets.swiper-pagination-horizontal,
.s-recruit__slider .swiper-pagination-custom,
.s-recruit__slider .swiper-pagination-fraction {
  bottom: -35px;
}

.s-recruit__slider .swiper-pagination-bullet {
  background-color: #fff;
  height: 8px;
  width: 8px;
}

.s-recruit__slider .swiper-pagination2 .swiper-pagination-bullet {
  background-color: #000;
}

.s-recruit-job {
  padding: 120px 0;
  background: url(../img/common/s-recruit-job-bg.jpg) center center/cover no-repeat;
}

.s-recruit-job__content {
  margin-top: 60px;
  font-size: 1.8rem;
  line-height: 2;
}

.s-recruit-job .s-recruit__subtitle {
  text-align: left;
}

.s-recruit-main {
  padding: 120px 0;
}

.s-recruit-attractive__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 80px;
}

.s-recruit-attractive__content {
  width: 50%;
}

.s-recruit-attractive__catch {
  font-size: 2.6rem;
  line-height: 2;
  margin-top: 90px;
  position: relative;
  text-indent: 1.2em;
}

.s-recruit-attractive__catch:after {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #b13634;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 60%);
  transform: translate(0, 60%);
}

.s-recruit-attractive__catch::before {
  content: '';
  display: block;
  width: 33px;
  height: 33px;
  background: url(../img/common/attractive-deco.svg) center center/cover no-repeat;
  position: absolute;
  top: -32%;
  left: -6%;
}

.s-recruit-attractive__catch:first-of-type {
  margin-top: 0;
}

.s-recruit-attractive__text {
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 30px;
}

.s-recruit-desc {
  margin-top: 180px;
}

.s-recruit-desc__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 80px;
}

.s-recruit-desc__table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.s-recruit-desc__table th {
  width: 23%;
  background-color: #f7f5ef;
  border: 1px solid #dfdfdf;
  color: #b48d49;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 20px 0;
}

.s-recruit-desc__table td {
  width: 77%;
  border: 1px solid #dfdfdf;
  padding: 20px 30px;
  font-size: 1.8rem;
}

.s-recruit-desc__table td .map {
  display: block;
}

.s-recruit-desc__table td .map a {
  color: #146bd0;
  text-decoration: underline;
}

.s-recruit-voice {
  background: url(../img/common/s-recruit-voice-bg.jpg) no-repeat center center/cover;
  color: #fff;
  padding: 120px 0;
}

.s-recruit-voice__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -4%;
  margin-top: 80px;
}

.s-recruit-voice__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 29%;
  -ms-flex: 0 0 29%;
  flex: 0 0 29%;
  margin-left: 4%;
}

.s-recruit-voice__img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.s-recruit-voice__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.s-recruit-voice__names {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.s-recruit-voice__year {
  background-color: #b13634;
  color: #fff;
  padding: 3px 10px;
}

.s-recruit-voice__name {
  margin-left: 8px;
  color: #b13634;
}

.s-recruit-voice__title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 18px;
  line-height: 1.6;
  color: #fff;
}

.s-recruit .swiper-loop {
  overflow: hidden;
  /* スライドの動き等速 */
}

.s-recruit .swiper-loop .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.s-recruit .swiper-loop .swiper-slide {
  aspect-ratio: 25/14;
}

.s-recruit .swiper-loop .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.s-recruit .recruit {
  position: relative;
  z-index: 2;
}

.p-environment .breadcrumb__item:last-of-type {
  color: #fff;
}

.p-environment .breadcrumb__item:after {
  background-color: #fff;
}

.p-environment__content {
  background-color: #2c2c2c;
}

.p-environment__subtitle.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-environment-top {
  color: #fff;
  position: relative;
}

.p-environment-top .page__title {
  position: relative;
  z-index: 2;
}

.p-environment-top__info {
  background: url(../img/common/p-environment-top-info-bg.jpg) center center/cover no-repeat;
  text-align: center;
  padding: 100px 0 120px;
}

.p-environment-top__title {
  font-size: 3.2rem;
}

.p-environment-top__title.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-environment-top__text {
  margin-top: 80px;
  line-height: 2;
}

.p-environment-top__text.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-environment-section__title {
  font-size: 3.2rem;
  line-height: 1.7;
}

.p-environment-section__title.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.p-environment .recruit {
  position: relative;
  z-index: 2;
}

.philosophy {
  background: url(../img/common/philosophy-bg.jpg) center center/cover no-repeat;
  background-color: #f7f5ef;
  padding: 120px 0;
}

.philosophy .page__subtitle {
  margin-top: 0;
}

.philosophy__list {
  margin-top: 93px;
}

.philosophy__item {
  margin-top: 113px;
}

.philosophy__item:first-of-type {
  margin-top: 0;
}

.philosophy__item:first-of-type .philosophy__title::before {
  width: 528px;
  height: 240px;
  background-image: url(../img/common/philosophy-item1.svg);
}

.philosophy__item:nth-of-type(2) .philosophy__title::before {
  width: 444px;
  height: 240px;
  background-image: url(../img/common/philosophy-item2.svg);
}

.philosophy__item:nth-of-type(3) .philosophy__title::before {
  width: 508px;
  height: 96px;
  background-image: url(../img/common/philosophy-item3.svg);
}

.philosophy__title {
  color: #bf9c60;
  font-size: 3.2rem;
  margin-top: 40px;
  position: relative;
}

.philosophy__title.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.philosophy__title::before {
  content: '';
  display: block;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

.philosophy__title:after {
  content: '';
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 20px;
  background: url(../img/common/philosophy-border.png) center center/contain no-repeat;
}

.philosophy__info {
  line-height: 2;
  margin-top: 40px;
  max-width: 623px;
  margin-left: auto;
}

.philosophy__subtitle {
  font-size: 2.6rem;
}

.philosophy__subtitle.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.philosophy__text {
  margin-top: 40px;
}

.philosophy__text.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.philosophy__text span {
  display: block;
  margin-top: 1em;
}

.career {
  background-color: #fff;
  padding: 120px 0 140px;
}

.career__title {
  font-size: 3.2rem;
}

.career__lead {
  margin-top: 60px;
  line-height: 2;
}

.career__lead.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.career__img {
  margin-top: 70px;
}

.career__img.is-animate {
  -webkit-animation: opacity 1.3s ease forwards;
  animation: opacity 1.3s ease forwards;
}

.welfare {
  background-color: #fff;
  margin-top: -1px;
  padding-bottom: 120px;
}

.welfare__box {
  font-size: 2rem;
  line-height: 1.7;
  color: #bf9c60;
  border: 1px solid #bf9c60;
  padding: 10px 0;
  text-align: center;
  margin-top: 60px;
}

.welfare__list1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
}

.welfare__item1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 49%;
  -ms-flex: 0 0 49%;
  flex: 0 0 49%;
}

.welfare__item1__title {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
}

.welfare__item1__text {
  line-height: 2;
  margin-top: 10px;
}

.welfare__list2 {
  margin-top: 90px;
}

.welfare__item2 {
  padding: 40px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #bf9c60;
}

.welfare__item2__num {
  font-size: 2rem;
  color: #bf9c60;
  font-weight: bold;
}

.welfare__item2__info {
  margin-left: 16px;
}

.welfare__item2__title {
  font-size: 2rem;
  font-weight: bold;
}

.welfare__item2__text {
  line-height: 2;
  margin-top: 10px;
}

.interact {
  background: url(../img/common/interact-bg.jpg) center center/cover no-repeat;
  padding: 120px 0;
  color: #fff;
}

.interact__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 80px 0;
  margin-top: 60px;
}

.interact__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 47%;
  -ms-flex: 0 0 47%;
  flex: 0 0 47%;
}

.interact__item.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

.interact__text {
  font-size: 2rem;
  margin-top: 20px;
}

.training {
  background: url(../img/common/training-bg.jpg) center center/cover no-repeat;
  padding: 120px 0;
}

.training .p-environment-section__title {
  text-align: center;
}

.training__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 22px;
  margin-top: 60px;
}

.training__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 31%;
  -ms-flex: 0 0 31%;
  flex: 0 0 31%;
}

.training__item.is-animate {
  -webkit-animation: opacityUp 1.3s ease forwards;
  animation: opacityUp 1.3s ease forwards;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */

@media only screen and (min-width: 641px) {
  .sp {
    display: none !important;
  }

  a[href^='tel:'] {
    pointer-events: none;
  }

  a,
  a::before,
  a::after,
  button {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .footer__item a:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  .footer__btn a:hover {
    color: #b13634;
    background-color: #fff;
  }

  .footer__btn a:hover span {
    border-top: 1.5px solid #b13634;
    border-right: 1.5px solid #b13634;
  }

  .gnav__item a:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  .gnav__item--contact a:hover {
    color: #b13634;
    background-color: #fff;
  }

  .gnav__item--contact a:hover span {
    border-top: 1.5px solid #b13634;
    border-right: 1.5px solid #b13634;
  }

  .breadcrumb__item a:hover {
    color: #b13634;
  }

  .card__item:hover .card__thumbnail img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .pager span:hover,
  .pager a:hover {
    background-color: #000;
    color: #fff;
  }

  .pager .next:hover:after {
    background-color: #000;
    border-top: 1.5px solid #000;
    border-right: 1.5px solid #000;
  }

  .pager .prev:hover:after {
    background-color: #000;
    border-bottom: 1.5px solid #000;
    border-left: 1.5px solid #000;
  }

  .recruit__bg:hover {
    background-color: rgba(177, 54, 52, 0.8);
  }

  .recruit__btn:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .single__content #toc_container .toc_list a:hover {
    border-bottom: 1px solid #000;
  }

  .page-nav a:hover {
    color: #bf9c60;
  }

  .page-nav a.prev-link:hover:before {
    border-bottom: 1.5px solid #bf9c60;
    border-left: 1.5px solid #bf9c60;
  }

  .page-nav a.next-link:hover:after {
    border-top: 1.5px solid #bf9c60;
    border-right: 1.5px solid #bf9c60;
  }

  .work a:hover .arrow {
    background-color: #000;
  }

  .work a:hover .arrow:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }

  .black__item a:hover .black__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .black__item a:hover .arrow {
    background-color: #fff;
  }

  .black__item a:hover .arrow:after {
    border-top: 1px solid #000;
    border-right: 1px solid #000;
  }

  .history__item a:hover {
    color: #b13634;
  }

  .history__btn a:hover {
    background-color: #fff;
    color: #000;
    opacity: 1;
  }

  .history__btn a:hover span {
    border-top: 1.5px solid #000;
    border-right: 1.5px solid #000;
  }

  .p-interview .pager .next:hover:after {
    background-color: #fff;
    border-top: 1.5px solid #000;
    border-right: 1.5px solid #000;
  }

  .p-interview .pager .prev:hover:after {
    background-color: #fff;
    border-bottom: 1.5px solid #000;
    border-left: 1.5px solid #000;
  }

  .p-entry__btn span:hover:after {
    right: 16%;
  }

  .s-recruit-voice__item a:hover .s-recruit-voice__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@media only screen and (max-width: 640px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }

  body.is-target-page {
    margin-top: -50px;
  }

  .inner-block {
    padding: 0 10px;
    width: auto;
  }

  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }

  input[type='submit'] {
    -webkit-text-size-adjust: 100%;
  }

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

  .pc {
    display: none !important;
  }

  .main {
    margin-top: -61px;
  }

  .inner {
    padding: 0 20px;
  }

  .arrow {
    width: 44px;
    height: 44px;
  }

  .arrow:after {
    width: 8px;
    height: 8px;
  }

  .header {
    display: block;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background-color: #f7f5ef;
  }

  .footer {
    padding-top: 30px;
  }

  .footer__inner {
    display: block;
  }

  .footer__logo {
    margin: auto;
  }

  .footer__name {
    text-align: center;
    font-size: 1.6rem;
  }

  .footer__address {
    font-size: 1.3rem;
    text-align: center;
  }

  .footer__list {
    text-align: center;
    margin-top: 45px;
  }

  .footer__btn {
    margin-left: 0;
    margin-top: 45px;
  }

  .gnav {
    position: fixed;
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    z-index: 997;
    width: 100%;
    text-align: center;
  }

  .gnav.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .gnav__logo {
    display: none;
  }

  .gnav__item a {
    font-size: 1.6rem !important;
  }

  .main__contents {
    display: block;
  }

  .main__contents .main__content {
    width: 100%;
  }

  .page__lead {
    font-size: 1.8rem;
  }

  .page__thumbnail {
    margin-top: 40px;
  }

  .page__thumbnail-text {
    width: 50% !important;
  }

  .section__title {
    font-size: 4.2rem;
  }

  .single__title {
    font-size: 2.4rem;
    padding-bottom: 20px;
  }

  .single__cat {
    font-size: 1.2rem;
  }

  .single__content p {
    font-size: 1.4rem;
  }

  .single__content h2 {
    font-size: 2rem;
  }

  .single__content h3 {
    font-size: 1.8rem;
  }

  .single__content h4 {
    font-size: 1.6rem;
  }

  .single__content ol li::before {
    margin-right: 6px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 28px;
    -ms-flex: 0 0 28px;
    flex: 0 0 28px;
    height: 28px;
  }

  .page-nav {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .page-nav a:not(:first-of-type) {
    margin-left: 0;
  }

  .mv__title {
    width: 95%;
    top: 44%;
  }

  .mv .swiper-main .swiper-main-media {
    aspect-ratio: 5/7;
  }

  .mv .swiper-main .swiper-main-media img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .message {
    padding: 90px 0 0;
  }

  .message__title:after {
    top: -260%;
    right: -41%;
    width: 306px;
    height: 175px;
  }

  .message__info {
    width: 100%;
    margin-top: 50px;
    position: relative;
    z-index: 2;
  }

  .message__lead {
    font-size: 2.1rem;
  }

  .message__lead span {
    display: block;
    margin-top: 12px;
  }

  .message__text {
    font-size: 1.6rem;
    margin-top: 30px;
  }

  .message__text span {
    margin-top: 20px;
  }

  .message__btn {
    margin-top: 50px;
  }

  .message__btn .btn {
    font-size: 1.6rem;
  }

  .message__btn .btn .arrow {
    margin-left: 25px;
  }

  .work__content {
    padding: 14px 0 10px;
    background-image: url(../img/common/work-img-sp.jpg);
  }

  .work .section__title {
    padding-left: 0;
    padding: 0 16px;
  }

  .work__title {
    padding-left: 16px;
    font-size: 3rem;
  }

  .work__title img {
    width: 153px;
  }

  .work__text {
    padding-left: 0;
    font-size: 1.6rem;
    padding: 0 16px;
  }

  .work__arrow .arrow {
    background-color: #000;
  }

  .work__arrow .arrow:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }

  .black .section__title {
    font-size: 3rem !important;
  }

  .black__text .arrow {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 44px;
    -ms-flex: 0 0 44px;
    flex: 0 0 44px;
  }

  .history {
    padding: 90px 0;
  }

  .history .section__title {
    font-size: 3rem;
  }

  .history__item a {
    padding: 25px 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .history__date {
    font-size: 1.4rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }

  .history__title {
    font-size: 1.6rem;
    margin-left: 15px;
  }

  .history__btn {
    margin-top: 60px;
  }

  .history__btn a {
    width: 100%;
    height: 60px;
    font-size: 1.6rem;
  }

  .history__wood {
    width: 200px;
  }

  .p-interview__inner {
    padding-bottom: 90px;
  }

  .p-interview__title {
    font-size: 2rem;
  }

  .p-entry__list {
    margin-top: 20px;
  }

  .p-entry__btn span:after {
    right: 12%;
  }

  .p-entry__btn input[type='submit'] {
    max-width: 260px;
    margin: 0 auto;
    padding: 15px;
    font-size: 1.8rem;
  }

  .p-entry-thanks {
    margin-top: 60px;
  }

  .p-entry-thanks__title {
    font-size: 2.4rem;
  }

  .p-entry-thanks__text {
    font-size: 1.4rem;
    margin-top: 40px;
  }

  .form form input[type='checkbox']+span:after {
    top: 8px;
  }

  .p-recruit-shop__item {
    width: 100%;
    margin-left: 0;
  }

  .p-recruit-shop__item a {
    font-size: 1.2rem;
  }

  .p-recruit__content:after {
    height: 500px;
  }
}

@media only screen and (max-width: 1120px) {
  .gnav {
    padding: 60px 20px;
  }

  .gnav__item a {
    font-size: 1.4rem;
  }

  .recruit .section__title {
    font-size: 5rem;
  }

  .recruit__name {
    font-size: 2.4rem;
  }

  .p-history__inner:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28vw;
    height: 23vw;
    background: url(../img/common/p-history-tree.png) center center/cover no-repeat;
  }
}

@media only screen and (max-width: 768px) {
  .breadcrumb__item:after {
    width: 20px;
    margin: 0 8px;
  }

  .page__title {
    font-size: 3.6rem;
    margin-top: 40px;
  }

  .page__subtitle {
    font-size: 2.4rem;
    margin-top: 60px;
  }

  .card__list {
    display: block;
    margin-top: 60px;
  }

  .card__item {
    margin-top: 40px;
  }

  .card__item:first-of-type {
    margin-top: 0;
  }

  .card__top {
    font-size: 1.4rem;
  }

  .pager {
    margin-top: 60px;
  }

  .recruit {
    background-image: url(../img/common/recruit-bg-sp.jpg);
  }

  .recruit__bg {
    height: auto;
    padding: 50px 0;
    background-color: rgba(177, 54, 52, 0.8);
  }

  .recruit__inner {
    display: block;
  }

  .recruit__name {
    font-size: 1.6rem !important;
  }

  .recruit__text {
    margin-top: 20px;
  }

  .recruit__btn {
    width: 130px;
    height: 130px;
    margin: 16px auto 0;
    font-size: 1.6rem;
  }

  .recruit__btn span {
    margin-top: 10px;
    width: 6px;
    height: 6px;
  }

  .single__inner {
    display: block;
  }

  .black {
    background-image: url(../img/common/black-bg-sp.jpg);
    padding: 90px 0;
  }

  .black__inner {
    display: block;
  }

  .black__text {
    font-size: 1.6rem;
  }

  .black .interview {
    margin-top: 66px;
  }

  .p-interview__item {
    display: block;
    padding: 20px;
  }

  .p-interview__info {
    margin-top: 10px;
  }

  .p-work-top {
    padding-top: 50px;
  }

  .p-work__list {
    margin-top: 60px;
    overflow: hidden;
    padding-bottom: 70px;
  }

  .p-work__item {
    display: block;
    margin-top: 76px;
  }

  .p-work__item:first-of-type .p-work__title::before {
    height: 220px;
    top: -3%;
    right: -52%;
  }

  .p-work__item:first-of-type .p-work__title:after {
    right: -14px;
  }

  .p-work__item:first-of-type .p-work__img {
    right: 0;
  }

  .p-work__item:first-of-type .cloud-texture {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }

  .p-work__item:nth-of-type(2) .p-work__title::before {
    width: 80px;
    height: 300px;
    right: 10%;
  }

  .p-work__item:nth-of-type(2) .p-work__title {
    padding-left: 0;
    padding-right: 40px;
    margin-left: auto;
  }

  .p-work__item:nth-of-type(2) .p-work__title:after {
    right: 20px;
  }

  .p-work__item:nth-of-type(3) .p-work__title::before {
    width: 100px;
    height: 270px;
    right: -30%;
  }

  .p-work__title {
    font-size: 2rem;
    padding-left: 40px;
  }

  .p-work__title::after {
    width: 16px;
    height: 16px;
    top: 4px;
    right: -18px;
  }

  .p-work__text {
    padding: 0 20px;
    margin-top: 30px;
  }

  .p-work__text-text {
    position: relative;
    z-index: 2;
  }

  .p-work__text .cloud-texture {
    margin-top: -30px !important;
    position: relative;
    z-index: 1;
  }

  .p-work__img {
    width: 60vw;
    height: 110px;
    bottom: initial;
    top: 9%;
  }

  .p-work__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-work-bottom {
    padding-bottom: 70px;
  }

  .p-work-bottom__wrap {
    margin-top: 40px;
  }

  .p-work-bottom__wrap2 {
    margin-top: 25px;
  }

  .p-work-bottom__title {
    position: static;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 1.8rem !important;
  }

  .p-work-bottom__img {
    width: 100%;
    margin-top: 20px;
  }

  .p-work-bottom__text {
    width: 100%;
    margin-top: 20px;
  }

  .p-work-bottom-center {
    display: block;
    margin-top: 45px;
  }

  .p-work-bottom-center__img {
    margin-top: 20px;
  }

  .p-work-bottom-center__title {
    margin-left: 0;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 1.8rem !important;
  }

  .p-message-top {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .p-message-top__title {
    padding-left: 0;
    font-size: 2rem;
    margin-top: 60px;
  }

  .p-message-top__text {
    padding-left: 0;
    font-size: 1.6rem;
    margin-top: 30px;
  }

  .p-message-bottom {
    padding: 70px 0;
  }

  .p-message-bottom__item {
    display: block;
    margin-top: 60px;
  }

  .p-message-bottom__item:first-of-type .p-message-bottom__title:after {
    height: 18vw;
    width: 40%;
  }

  .p-message-bottom__item:nth-of-type(2) .p-message-bottom__title:after {
    height: 16vw;
    width: 76%;
  }

  .p-message-bottom__item:nth-of-type(3) .p-message-bottom__title:after {
    height: 15vw;
    width: 82%;
  }

  .p-message-bottom__item:nth-of-type(3) .p-message-bottom__contents {
    margin-top: 30px;
  }

  .p-message-bottom__img1 {
    width: 71%;
  }

  .p-message-bottom__img2 {
    width: 64.5%;
  }

  .p-message-bottom__contents {
    margin-top: -40px;
  }

  .p-message-bottom__title {
    font-size: 2rem;
  }

  .p-history__inner {
    padding-bottom: 90px;
  }

  .p-entry__inner {
    padding-bottom: 90px;
  }

  .form {
    padding: 60px 0;
    margin-top: 20px;
  }

  .form__lead {
    font-size: 1.8rem;
  }

  .form form {
    margin-top: 60px;
  }

  .p-recruit__inner {
    padding-bottom: 90px;
  }

  .s-recruit-top {
    padding-bottom: 90px;
    padding-top: 0;
  }

  .s-recruit__thumbnail {
    aspect-ratio: 5/7;
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .s-recruit__catch__title {
    font-size: 2.1rem;
  }

  .s-recruit-lead {
    margin-top: 60px;
  }

  .s-recruit-lead__contents {
    display: block;
    margin-top: 50px;
  }

  .s-recruit-lead__content {
    width: 100%;
    margin-top: 50px;
  }

  .s-recruit-lead__catch {
    font-size: 2rem;
  }

  .s-recruit-lead__text {
    font-size: 1.6rem;
    margin-top: 20px;
  }

  .s-recruit__subtitle {
    font-size: 2.4rem;
  }

  .s-recruit__slider {
    width: 100%;
  }

  .s-recruit-job {
    padding: 60px 0;
  }

  .s-recruit-job__content {
    margin-top: 30px;
    font-size: 1.6rem;
  }

  .s-recruit-main {
    padding: 60px 0;
  }

  .s-recruit-attractive__contents {
    display: block;
    margin-top: 50px;
  }

  .s-recruit-attractive__content {
    width: 100%;
  }

  .s-recruit-attractive__catch {
    font-size: 2rem;
    margin-top: 40px;
  }

  .s-recruit-attractive__catch::before {
    width: 20px;
    height: 20px;
    top: -35%;
    left: 0;
  }

  .s-recruit-attractive__catch:first-of-type {
    margin-top: 70px;
  }

  .s-recruit-attractive__text {
    font-size: 1.6rem;
    margin-top: 20px;
  }

  .s-recruit-desc {
    margin-top: 60px;
  }

  .s-recruit-desc__table {
    margin-top: 50px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .s-recruit-desc__table th {
    font-size: 1.4rem;
    padding: 15px 0;
    width: 35%;
  }

  .s-recruit-desc__table td {
    font-size: 1.4rem;
    padding: 15px;
    width: 65%;
  }

  .s-recruit-voice {
    padding: 60px 0;
  }

  .s-recruit-voice__list {
    display: block;
    margin-top: 50px;
  }

  .s-recruit-voice__item {
    margin-top: 30px;
  }

  .s-recruit-voice__item:first-of-type {
    margin-top: 0;
  }

  .s-recruit-voice__title {
    font-size: 1.8rem;
    margin-top: 10px;
  }

  .p-environment-top__info {
    padding: 60px 0;
  }

  .p-environment-top__title {
    font-size: 2.4rem;
  }

  .p-environment-top__text {
    margin-top: 40px;
  }

  .p-environment-section__title {
    font-size: 2.4rem;
  }

  .philosophy {
    padding: 60px 0;
  }

  .philosophy__list {
    margin-top: 40px;
  }

  .philosophy__item {
    margin-top: 40px;
  }

  .philosophy__item:first-of-type .philosophy__title::before {
    width: 260px;
    height: 100px;
    top: -20px;
  }

  .philosophy__item:nth-of-type(2) .philosophy__title::before {
    width: 190px;
    height: 100px;
    top: -20px;
  }

  .philosophy__item:nth-of-type(3) .philosophy__title::before {
    width: 200px;
    height: 40px;
  }

  .philosophy__title {
    font-size: 2.4rem;
  }

  .philosophy__title:after {
    margin-top: 0;
  }

  .philosophy__info {
    margin-top: 15px;
  }

  .philosophy__subtitle {
    font-size: 2rem;
  }

  .philosophy__text {
    margin-top: 10px;
  }

  .philosophy__text span {
    margin-top: 0.7em;
  }

  .career {
    padding: 60px 0;
  }

  .career__title {
    font-size: 2.4rem;
  }

  .career__lead {
    margin-top: 30px;
  }

  .career__img {
    margin-top: 40px;
  }

  .welfare {
    padding-bottom: 60px;
  }

  .welfare__box {
    font-size: 1.6rem;
    margin-top: 30px;
  }

  .welfare__list1 {
    margin-top: 20px;
    display: block;
  }

  .welfare__item1:nth-of-type(2) {
    margin-top: 20px;
  }

  .welfare__item1__title {
    font-size: 1.8rem;
    margin-top: 15px;
  }

  .welfare__item1__text {
    margin-top: 5px;
  }

  .welfare__list2 {
    margin-top: 60px;
  }

  .welfare__item2 {
    padding: 20px 0;
  }

  .welfare__item2__num {
    font-size: 1.8rem;
    white-space: nowrap;
  }

  .welfare__item2__title {
    font-size: 1.6rem;
  }

  .welfare__item2__text {
    font-size: 1.4rem;
    margin-top: 5px;
  }

  .interact {
    padding: 60px 0;
  }

  .interact__list {
    display: block;
    margin-top: 40px;
  }

  .interact__item {
    margin-top: 30px;
  }

  .interact__item:first-of-type {
    margin-top: 0;
  }

  .interact__text {
    font-size: 1.6rem;
    margin-top: 10px;
  }

  .training {
    padding: 60px 0;
  }

  .training__list {
    display: block;
    margin-top: 40px;
  }

  .training__item {
    margin-top: 20px;
  }

  .training__item:first-of-type {
    margin-top: 0;
  }
}

@media only screen and (max-width: 586px) {
  .mv .progressbar {
    width: 314px !important;
  }
}

@media only screen and (max-width: 1100px) {
  .black .section__title {
    font-size: 4rem;
  }
}

@media only screen and (max-width: 1024px) {
  .p-work-bottom__title {
    font-size: 2rem;
  }

  .p-work-bottom-center__title {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1121px) {
  .p-history__content:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 414px;
    right: 0;
    width: 28vw;
    height: 23vw;
    background: url(../img/common/p-history-tree.png) center center/cover no-repeat;
  }
}

@media only screen and (max-width: 820px) {
  .form form th {
    display: block;
    padding: 0;
    width: 100%;
    text-align: left;
  }

  .form form td {
    display: block;
    padding: 0;
  }
}

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