@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
.c-swiper-btn {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}
.c-swiper-btn .swiper-arrow {
  width: 12px;
  height: 24px;
  display: block;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #000;
}

.wiper-slide {
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  z-index: 100;
}

.swiper-button-prev {
  -webkit-transform: translateX(-24px) rotate(180deg);
          transform: translateX(-24px) rotate(180deg);
}

.swiper-button-next {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}

.swiper-wrapper {
  width: auto;
}

/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Serif JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.gothic {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.inter {
  font-family: "Inter", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif !important;
}

html {
  color: #333;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
}

body {
  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: #333;
  text-decoration: none;
}

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;
}

.inner-block {
  position: relative;
  width: auto;
  max-width: 1440px;
  padding: 0 40px;
}

#wrapper {
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}
@font-face {
  src: url(../font/NotoSerifJP-SemiBold.woff) format("woff");
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-display: swap;
}
@font-face {
  src: url(../font/NotoSerifJP-Bold.woff) format("woff");
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../font/NotoSerifJP-Regular.woff) format("woff");
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url(../font/Noto_Sans-Bold.woff) format("woff");
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../font/Inter_28pt-ExtraBoldItalic.woff) format("woff");
  font-family: "Inter";
  font-weight: 800;
  font-display: swap;
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  animation
------------------------------------------------------------------------------*/
.anm-list > * {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
}

.anm-list > *.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
  animation: fadeInUp 1.5s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/*------------------------------------------------------------------------------
  original
------------------------------------------------------------------------------*/
/* --------------------------------
c-header
----------------------------------- */

.c-header__inner {
  -webkit-box-sizing: initial;
          box-sizing: initial;
  margin-inline: auto;
  padding-inline: 40px;
}
.c-header__sec01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-inline: 40px;
  width: calc(100% - 80px);
  margin-inline: auto;
  top: 0;
  left: 50%;
  z-index: 100;
  background: #fff;
}
.c-header__logo {
  margin-top: 10px;
}
.c-header__logo img {
  height: auto;
}
.c-header__logo--sub {
  margin-left: 30px;
}
.c-header__logo--sub img {
  height: auto;
}
.c-header__buttonBox {
  margin-left: auto;
}
.c-header__buttonBox.drawer-item {
  display: block;
  padding-left: 20px;
  max-width: 120px;
}
.c-header__buttonBox02 {
  width: 120px;
}
.c-header__button {
  max-width: 230px;
  background: #010350;
  font-size: 26px;
  color: #fff;
  text-align: center;
  display: block;
  line-height: 37px;
  font-family: "Noto Serif JP";
  padding: 3px 69px;
}
.c-header__button.drawer-item {
  max-width: 120px;
}
.c-header__button span {
  display: block;
  background: #3076C9;
  font-size: 15px;
  line-height: 18px;
}
.c-header__sec02 {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding-bottom: 30px;
}
.c-header__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 50px;
  margin-top: 30px;
}
.c-header__nav__item {
  text-align: center;
  position: relative;
}
.c-header__nav__item a {
  font-size: 12px;
  font-weight: 400;
}
.c-header__nav__item a span {
  font-size: 20px;
  font-weight: bold;
}
.c-header__nav__item a span.small {
  font-size: 12px;
  font-weight: 400;
}

.c-drawer {
  cursor: pointer;
  position: fixed;
  top: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.25rem;
  width: 1.875rem;
  height: 1rem;
  z-index: 102;
  display: none;
}
.c-drawer__bars {
  width: 100%;
  height: 100%;
  position: relative;
}
.c-drawer__bar {
  width: 1.875rem;
  height: 0.125rem;
  background: #000;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-drawer__bar:nth-child(1) {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-drawer__bar:nth-child(1).js-drawerOpen {
  rotate: 45deg;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 1.0625rem;
}
.c-drawer__bar:nth-child(2) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-drawer__bar:nth-child(2).js-drawerOpen {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-drawer__bar:nth-child(3) {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-drawer__bar:nth-child(3).js-drawerOpen {
  rotate: -45deg;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 1.0625rem;
}
.c-drawer__content {
  position: fixed;
  top: 63px;
  right: 0;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 290px;
  height: 100dvh;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 101;
}
.c-drawer__content.js-drawerOpen {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-drawer__item {
  position: relative;
}
.c-drawer__item::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -0.25rem;
  background: #fff;
  width: 0.875rem;
  height: 0.0625rem;
  rotate: 45deg;
}
.c-drawer__item::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  width: 0.875rem;
  height: 0.0625rem;
  rotate: -45deg;
  margin-top: 0.375rem;
}
.c-drawer__link.ico {
  background: url(../img/common/viewMore-icon.png) no-repeat;
  background-position: right 10px center;
}
.c-drawer__link.is-active .c-drawer-toggle-btn > span {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.c-drawer-toggle-btn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
}
.c-drawer-toggle-btn > span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #010350;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-drawer-toggle-btn > span:nth-child(2) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.dropdown__list {
  opacity: 0;
  visibility: hidden;
  width: clamp(300px, 24vw, 400px);
  position: absolute;
  top: 75px;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 20px;
  background: #F7F7F7;
}
.dropdown__list--right {
  left: -100%;
}

.c-header__nav__item:hover .dropdown__list {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.dropdown__item {
  position: relative;
}

.dropdown__item:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__item a {
  padding-block: 20px;
  display: block;
  -moz-text-align-last: left;
       text-align-last: left;
  position: relative;
}
.c-acordion-sp-list__item + .c-acordion-sp-list__item {
  border-top: 1px solid #ccc;
}
.c-acordion-sp-list__link {
  display: block;
  padding: 13px 27px;
  background-color: #F7F7F7;
}

.c-footer-grid {
  padding-top: 51px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.c-footer__menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.c-footer__content__titleBox {
  display: block;
  text-align: center;
}
.c-footer__content__title--en {
  font-size: 22px;
  font-weight: bold;
  line-height: 31px;
}
.c-footer__content__title {
  font-size: 16px;
  line-height: 23px;
}
.c-footer__content__item a {
  padding-top: 19px;
  display: block;
  font-size: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid #000;
  position: relative;
}

.c-footer__logo {
  margin-top: 96px;
  max-width: 269px;
  margin-inline: auto;
}
.c-footer__copyright {
  font-size: 14px;
  text-align: center;
}
.c-footer__bottom {
  background: #010350;
  padding-block: 13px;
  padding-inline: 40px;
  margin-top: 33px;
}
.c-footer__bottom__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 111px;
}
.c-footer__bottom__item a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 18px;
}

.c-youtube-iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.inner {
  max-width: 1200px;
  margin-inline: auto;
  -webkit-box-sizing: initial;
          box-sizing: initial;
}

.c-viewMore {
  position: relative;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 700;
  display: block;
  max-width: 250px;
  text-align: left;
}
.c-viewMore::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-viewMore::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3.5px;
  right: 0%;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-viewMore--message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-inline: auto;
}
.c-viewMore--message img {
  margin-top: 10px;
}

.c-section__titleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.c-section__title {
  font-family: "Noto Sans JP";
  font-size: 25px;
  font-weight: bold;
  margin-left: 32px;
}
.c-section__title--en {
  font-size: 75px;
  font-weight: 800;
  font-style: italic;
}

.c-banner {
  margin-top: 50px;
}
.c-banner li {
  width: 100%;
}
.c-banner li + li {
  margin: 20px 0;
}
.c-banner__img {
  position: relative;
}
.c-banner__img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.c-banner__label01 {
  width: 100%;
  display: block;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  padding: 5px 10px;
  font-size: clamp(36px, 10vw, 64px);
  font-weight: 700;
}
.c-banner__label02 {
  width: 100%;
  display: block;
  text-align: center;
  letter-spacing: 0.1em;
  position: absolute;
  top: 75%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  padding: 5px 10px;
  font-size: clamp(14px, 4vw, 20px);
  font-weight: bold;
}

.c-viewMore-icon {
  position: relative;
  display: inline-block;
}
.c-viewMore-icon::before {
  content: "";
  position: absolute;
  background: url(../img/common/viewMore-icon.png) no-repeat;
  background-position: right 10px center;
  background-size: contain;
  width: 30px;
  height: 19px;
  right: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.paging-area {
  font-size: 0;
  padding: 50px 0 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.paging-area > * {
  border: 1px solid blue;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  line-height: 1;
  color: blue;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  margin: 0 5px 5px;
  padding: 0 4px;
  position: relative;
  text-align: center;
  vertical-align: top;
}

.paging-area .back {
  padding: 0 32px;
}

.paging-area .page-numbers.current {
  background: blue;
  color: #fff;
}

.paging-area .page-numbers.dots {
  border-color: transparent;
  min-width: 1px;
  margin: 0;
}

.paging-area .next.page-numbers,
.paging-area .prev.page-numbers {
  position: relative;
}

.paging-area .next.page-numbers:before,
.paging-area .prev.page-numbers:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../img/common/ico-arrow-blue.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.paging-area .next.page-numbers:hover:before,
.paging-area .prev.page-numbers:hover:before {
  background-image: url("../img/common/ico-arrow-wt.svg");
}

.paging-area .prev.page-numbers:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#pagetop {
  z-index: 100;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
#pagetop a {
  width: 83px;
  height: 83px;
  display: block;
}
#pagetop img {
  margin-top: 2px;
}

.c-entry {
  width: 100%;
  background: #E2F2FF;
}
.c-entry .c-section__title--en {
  text-align: center;
}
.c-entry__inner {
  padding: 120px 40px 160px;
}
.c-entry__btn {
  text-align: center;
}
.c-entry__btn img {
  max-width: 75%;
  height: auto;
}
.c-entry__item__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
.c-entry__text {
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  margin-top: 40px;
}
.c-entry__list {
  margin-top: 80px;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(2, 2fr);
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  row-gap: 61px;
}
.c-entry__item__title {
  font-size: 26px;
  font-weight: bold;
  margin-top: 26px;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.p_home {
  overflow: clip;
}
.p_home__mv {
  position: relative;
  text-align: center;
  margin-top: 50px;
}
.p_home__mv__img img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: inherit;
  width: 100%;
}
.p_home__mv__title {
  width: 100%;
  max-width: 900px;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 46px;
  padding: 32px 128px 36px;
  line-height: 66px;
}

.p_home__message {
  text-align: center;
}
.p_home__message__inner {
  margin-top: 169px;
}
.p_home__message__title {
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-size: 56px;
}
.p_home__message__text {
  margin-top: 131px;
  line-height: 66px;
  font-size: 24px;
  font-weight: 400;
  font-family: "Noto Serif JP";
}
.p_home__message__btn {
  margin-top: 160px;
}

.p_home__about__inner {
  padding-top: 130px;
}
.p_home__about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 116px;
  margin-top: 43px;
}
.p_home__about__textBox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_home__about__textBox p {
  font-size: 20px;
  font-family: "Noto Serif JP";
  font-weight: 400;
  line-height: 50px;
}
.p_home__about__img {
  margin-right: -100px;
}
.p_home__about__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p_home__about__btn {
  margin-top: 130px;
}

.p_home__challenge .c-section__title {
  margin-left: 43px;
}
.p_home__challenge__inner {
  padding-top: 188px;
}
.p_home__challenge__inner p {
  font-size: 20px;
  font-family: "Noto Serif JP";
  font-weight: 400;
  line-height: 50px;
}
.p_home__challenge__list {
  margin-top: 80px;
}
.p_home__challenge__textBox {
  text-align: right;
  margin-top: 20px;
  font-family: "Noto Serif JP";
  font-size: 22px;
  font-weight: 400;
}
.p_home__challenge .slick-slide {
  margin-right: 90px;
}
.p_home__challenge .slick-slide:last-child {
  margin-right: 0;
}
.p_home__challenge .slick-prev,
.p_home__challenge .slick-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.p_home__challenge .slick-prev {
  left: -100px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #000;
  border-left: 0;
  text-indent: -9999px;
}
.p_home__challenge .slick-next {
  right: -100px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #000;
  border-right: 0;
  text-indent: -9999px;
}

.p_home__challenge__img {
  aspect-ratio: 340/420;
  width: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_home__challenge__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p_home__data__inner,
.p_home__career__inner {
  padding-top: 148px;
}
.p_home__data__inner p,
.p_home__career__inner p {
  font-size: 20px;
  font-family: "Noto Serif JP";
  font-weight: 400;
  line-height: 50px;
}
.p_home__data__content,
.p_home__career__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 214px;
}
.p_home__data__btn,
.p_home__career__btn {
  margin-top: 130px;
}

.p_home__data__img {
  margin-top: -48px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}
.p_home__data__img img {
  height: auto;
  width: 100%;
}
.p_home__data__content {
  gap: 227px;
}

.p_home__career__inner {
  padding-bottom: 140px;
}
.p_home__career__textBox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_home__career__img img {
  -o-object-fit: cover;
     object-fit: cover;
}

/* -----------------------------------------------
* career Module
* careerページ用
-------------------------------------------------- */
.p_career-list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.p_career-list01 > li {
  width: calc((100% - 40px) / 3);
}
.p_career-list01__box01 {
  position: relative;
}
.p_career-list01__box02 {
  position: relative;
  margin-top: -50px;
  z-index: 2;
}
.p_career-list01__box02::before {
  content: "";
  display: block;
  height: 100%;
  width: 80%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
}
.p_career-list01__box03 {
  position: relative;
  z-index: 3;
}
.p_career-list01__ttl01 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p_career-list01__img01 > img {
  width: 100%;
}
.p_career-list01__ttl02 {
  padding-top: 10px;
  font-size: 1.8vw;
  font-weight: bold;
}
.p_career-list01__cap01 {
  margin-top: 24px;
}

.p_career-sec02 {
  width: 620px;
}
.p_career-list02 > li {
  background-color: #fff;
  border: solid 1px #707070;
  padding: 20px;
}
.p_career-list02 > li:last-child {
  border: solid 3px #010350;
}
.p_career-list02 > li + li {
  margin-top: 30px;
  position: relative;
}
.p_career-list02 > li + li::before {
  content: "";
  background-color: #010350;
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 42px;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p_career-list02__txt01 {
  font-size: 22px;
  font-weight: bold;
}

.p_career-section01 {
  margin-top: 130px;
  text-align: center;
}
.p_career-section01__ttl01 {
  font-size: 120px;
  line-height: 1;
  text-align: center;
}
.p_career-section01__ttl02 {
  display: block;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.p_career-section01__ttl03 {
  display: inline-block;
  font-size: 48px;
  font-weight: 600;
  margin: 113px 0 auto;
  border-bottom: 1px solid #000;
}
.p_career-section01__list01 {
  margin-top: 78px;
}
.p_career-section01__list01 > li:nth-child(odd) {
  background-color: #F7F7F7;
  background-size: cover;
}
.p_career-section01__box01 {
  width: calc(100% - 620px - 40px);
}
.p_career-section01__box02 {
  padding: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.p_career-section01__ttl04 {
  font-size: 28px;
  font-weight: bold;
  text-align: left;
}
.p_career-section01__cap01 {
  margin-top: 32px;
  font-size: 22px;
  line-height: 1.9;
  text-align: left;
}

.p_career-section02 {
  margin: 130px 0;
  text-align: center;
}
.p_career-section02__box01 {
  padding: 0 80px;
}
.p_career-section02__ttl01 {
  display: inline-block;
  font-size: clamp(40px, 4vw, 48px);
  font-weight: 600;
  line-height: 1;
  border-bottom: 2px solid #000;
}
.p_career-section02__img01 {
  margin-top: 62px;
}
.p_career-section02__img01 img {
  width: 100%;
}
.p_career-section02__list01 {
  margin-top: 80px;
}
.p_career-section02__list01 > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p_career-section02__list01 > li + li {
  margin-top: 100px;
}
.p_career-section02__cap01 {
  width: 50%;
  font-size: 25px;
  font-weight: bold;
  text-align: left;
  line-height: 2;
}
.p_career-section02__cap02 {
  padding-left: 25px;
  width: 50%;
  font-size: 22px;
  line-height: 1.9;
  text-align: left;
  border-left: 5px solid #D0D0D0;
}

.p_interview-swiper__box01 {
  width: 100%;
}

/* -----------------------------------------------
* interview
 Module
* interview
ページ用
-------------------------------------------------- */
.p_interview {
  margin: 130px 0 220px;
  text-align: center;
}
.p_interview__ttl {
  display: inline-block;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  border-bottom: 2px solid #000;
}
.p_interview__subttl {
  display: block;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.p_interview-list01__img {
  aspect-ratio: 340/420;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_interview-list01__img > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_interview-list01__box01 {
  margin-top: 18px;
  font-size: 18px;
  text-align: center;
}
.p_interview-list01__txt {
  line-height: 1.8;
}

.p_interview-swiper__box01 {
  width: 100%;
}

/* -----------------------------------------------
* interview01
 Module
* interview01
ページ用
-------------------------------------------------- */
.p_home-interview01-sec01 {
  margin-top: 130px;
  padding: 0 80px;
}
.p_home-interview01-sec01__ttl01 {
  font-size: 120px;
  line-height: 1;
  text-align: center;
}
.p_home-interview01-sec01__ttl02 {
  display: block;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.p_home-interview01-sec01__txt01 {
  font-size: 48px;
  text-align: right;
}
.p_home-interview01-sec01__img01 {
  position: relative;
}
.p_home-interview01-sec01__img01 img {
  width: 100%;
}
.p_home-interview01-sec01__label {
  font-size: 2vw;
  height: auto;
  position: absolute;
  padding: 20px 60px 20px 20px;
  bottom: 5%;
  left: 4%;
  background-color: #FFFFFF;
}
.p_home-interview01-sec01__cap01 {
  margin-top: 52px;
  font-size: 36px;
  line-height: 1.8;
  text-align: right;
}

.p_home-interview01-sec02 {
  margin-top: 120px;
  padding: 0 80px;
}
.p_home-interview01-sec02__list01 > li + li {
  margin-top: 126px;
}
.p_home-interview01-sec02__list01 > li {
  gap: 40px;
  width: 100%;
}
.p_home-interview01-sec02__list01 > li:nth-child(even) .p_home-interview01-sec02__img01 {
  float: left;
  margin-right: 40px;
  margin-left: 0;
}
.p_home-interview01-sec02__list01 > li:nth-child(even) .p_home-interview01-sec02__box01 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.p_home-interview01-sec02__img01 {
  width: 50%;
  float: right;
  margin-left: 40px;
}
.p_home-interview01-sec02__img01 img {
  width: 100%;
}
.p_home-interview01-sec02 .clearfix {
  clear: both;
}
.p_home-interview01-sec02__box01 {
  width: calc((100% - 80px) / 2);
}
.p_home-interview01-sec02__ttl01 {
  font-size: 22px;
  font-weight: bold;
}
.p_home-interview01-sec02__cap01 {
  margin-top: 30px;
  font-size: 16px;
}

.p_home-interview01-sec03 {
  margin-top: 270px;
  padding: 0 80px;
}
.p_home-interview01-sec03__ttl01 {
  font-size: 25px;
  font-weight: bold;
  border-bottom: 3px solid #000;
}
.p_home-interview01-sec03__list01 {
  margin-top: 110px;
}
.p_home-interview01-sec03__list01 > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px 60px;
}
.p_home-interview01-sec03__list01 > li + li {
  margin-top: 60px;
}
.p_home-interview01-sec03__time {
  padding: 5px;
  width: 260px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background-color: #E2F2FF;
}
.p_home-interview01-sec03__cap01 {
  width: calc(100% - 60px - 260px);
  padding: 5px;
  font-size: 16px;
  font-weight: bold;
}

/* -----------------------------------------------
* about
 Module
* about
ページ用
-------------------------------------------------- */
.p_about {
  margin-top: 130px;
}
.p_about__ttl {
  font-size: 120px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
.p_about__subttl {
  display: block;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.p_about__section__title {
  font-size: 36px;
  font-weight: bold;
}

.p_about__job__inner {
  padding-top: 100px !important;
}
.p_about__job__btns {
  max-width: 1154px;
  margin-inline: auto;
}
.p_about__job__btn__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 95px;
  margin-top: 58px;
}
.p_about__job__btn__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  font-weight: bold;
}
.p_about__job__btn__item a span {
  font-size: 48px;
  margin-right: 13px;
  color: #84BAF8;
}
.p_about__job__btn__item a img {
  margin-left: 10px;
}
.p_about__job__list {
  margin-top: 130px;
}
.p_about__job__item {
  background: #e3f2ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 100px 100px 90px;
}
.p_about__job__item:nth-child(odd) .p_about__job__item__textBox {
  padding-right: 73px;
}
.p_about__job__item:nth-child(odd) .p_about__job__item__img {
  margin-left: -35px;
}
.p_about__job__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p_about__job__item:nth-child(even) .p_about__job__item__textBox {
  padding-left: 73px;
  padding-right: 30px;
}
.p_about__job__item:nth-child(even) .p_about__job__item__img {
  margin-right: -35px;
}
.p_about__job__item:not(:first-child) {
  margin-top: 60px;
}
.p_about__job__item__textBox {
  background: #fff;
  padding-top: 18px;
  padding-left: 30px;
  padding-bottom: 52px;
}
.p_about__job__item__number {
  color: #75bcff;
  font-size: 80px;
  font-weight: 400;
}
.p_about__job__item__title {
  font-size: 30px;
  font-weight: bold;
}
.p_about__job__item__title--sub {
  margin-top: 18px;
  font-size: 22px;
}
.p_about__job__item__title--sub span {
  color: #75bcff;
  font-weight: medium;
}
.p_about__job__item__text {
  margin-top: 27px;
  line-height: 34px;
}
.p_about__job__item__img {
  width: 560px;
  height: 560px;
  position: relative;
  z-index: 1;
}
.p_about__job__item__img img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p_about__philosophy__inner {
  padding-block: 160px;
}
.p_about__philosophy__item:not(:first-child) {
  margin-top: 160px;
}
.p_about__philosophy__item__title {
  font-size: 36px;
  font-weight: bold;
  border-bottom: 1px solid #000;
  display: inline-block;
}
.p_about__philosophy__item__titleMin {
  font-size: 26px;
  font-weight: bold;
  margin-top: 40px;
}
.p_about__philosophy__point {
  font-size: 22px;
  font-weight: 400;
  line-height: 50px;
  margin-top: 40px;
}
.p_about__philosophy__img {
  margin-top: 80px;
  margin-inline: auto;
  text-align: center;
}
.p_about__philosophy__img img {
  width: 65%;
  height: auto;
}
.p_about__philosophy__item__text {
  font-size: 22px;
  line-height: 50px;
  margin-top: 40px;
}
.p_about__philosophy__item__textList span {
  font-size: 26px;
  font-weight: bold;
  margin-top: 40px;
}
.p_about__philosophy__item__textList p {
  font-size: 22px;
  line-height: 50px;
}
.p_about__philosophy__item__textList:not(:first-child) {
  margin-top: 40px;
}

.p_about__company__inner {
  padding-block: 160px;
  position: relative;
}
.p_about__company__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 1px;
  background: #000;
  max-width: calc(100% - 80px);
}
.p_about__company__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  gap: 114px;
}
.p_about__company__content__title {
  font-size: 24px;
  font-weight: bold;
}
.p_about__company__content__title span {
  font-weight: normal;
  font-size: 22px;
}
.p_about__company__table {
  margin-top: 28px;
}
.p_about__company__table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 22px;
}
.p_about__company__table dl dt {
  width: 284px;
  padding-bottom: 24px;
  margin-top: 24px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}
.p_about__company__table dl dd {
  width: 324px;
  padding-bottom: 24px;
  margin-top: 24px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.15);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_about__company__img img {
  height: auto;
  max-width: inherit;
  width: 100%;
}
.p_about__company__content__address {
  margin-top: 100px;
}
.p_about__company__content__address__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 3fr);
  row-gap: 60px;
}
.p_about__company__content__address__item a {
  font-size: 22px;
  border-bottom: 1px solid #000;
  display: inline-block;
  margin-top: 30px;
}
.p_about__company__content__address__item__text {
  font-size: 22px;
  line-height: 50px;
}

/* -----------------------------------------------
* recruit
 Module
* recruit
ページ用
-------------------------------------------------- */
.p_recruit {
  margin-top: 130px;
  padding-bottom: 157px;
}
.p_recruit__ttl {
  font-size: 120px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  font-style: italic;
}
.p_recruit__subttl {
  display: block;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  font-family: "Noto Sans JP";
}
.p_recruit__content__title {
  font-size: 48px;
  position: relative;
  text-align: center;
  margin-top: 118px;
}
.p_recruit__content__title::before {
  content: "";
  position: absolute;
  background: #000;
  width: 125px;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p_recruit__requirements__table {
  margin-top: 118px;
}
.p_recruit__requirements dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.p_recruit__requirements dl dt {
  padding: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #3FABEA;
  border-right: 3px solid rgba(87, 181, 236, 0.15);
  width: 255px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-items: center;
}
.p_recruit__requirements dl dd {
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  line-height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 18px;
}
.p_recruit__requirements dl dd a {
  color: #0066B5;
  text-decoration: underline;
}
.p_recruit__schedule__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 67px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 128px;
}
.p_recruit__schedule__item {
  width: 195px;
  background: #00ABEB;
  position: relative;
  font-size: 49px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: upright;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p_recruit__schedule__item:not(:last-child)::before {
  content: "";
  position: absolute;
  background: url(../img/recruit/triangle.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 64px;
  height: 122px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -46px;
}
.p_recruit__schedule__item:nth-child(3) {
  font-size: 38px;
  padding-inline: 32px 37px;
}
.p_recruit__schedule__item span {
  font-size: 27px;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}
.p_recruit__schedule__number {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  position: absolute;
  top: -56px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #00ABEB;
  color: #00ABEB;
  display: grid;
  place-items: center;
  font-size: 44px;
}
.p_recruit__schedule__btn {
  background: #ED4141;
  font-size: 40px;
  font-weight: bold;
  font-style: italic;
  max-width: 449px;
  margin-top: 125px;
  margin-inline: auto;
  padding-block: 18px 15px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  border: 4px solid #000;
}
.p_recruit__schedule__btn a {
  color: #fff;
  display: block;
  text-align: center;
}
.p_recruit__schedule__btnText {
  font-size: 30px;
  text-align: center;
  margin-top: 24px;
}
.p_recruit__schedule__btnText span {
  font-style: italic;
}
.p_recruit__faq__inner {
  padding-top: 135px;
}
.p_recruit__faq__list {
  margin-top: 100px;
}
.p_recruit__faq__item {
  padding: 60px 60px 43px;
}
.p_recruit__faq__item:nth-child(odd) {
  background: #E2F2FF;
}
.p_recruit__faq__item:nth-child(even) {
  background: #F7F7F7;
}
.p_recruit__faq__item:not(:first-child) {
  margin-top: 49px;
}
.p_recruit__faq__item__q {
  font-size: 30px;
  font-weight: bold;
}
.p_recruit__faq__item__a {
  margin-top: 30px;
  font-size: 26px;
  line-height: 43px;
}
.p_recruit__bottom__btns {
  margin-top: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}
.p_recruit__bottom__btns a {
  display: block;
}
.p_recruit__bottom__btns a img {
  height: auto;
}

.p_recruit-list01__item {
  padding-left: 20px;
  position: relative;
}
.p_recruit-list01__item::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border: 50%;
  background-color: #000;
  position: absolute;
  left: 5px;
  top: 1em;
}

/* -----------------------------------------------
* data Module
* dataページ用
-------------------------------------------------- */
.p_data {
  padding-top: 123px;
}
.p_data__content:nth-child(4) {
  margin-top: 125px;
}
.p_data__content__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 60px;
  max-width: 1200px;
  margin-top: 86px;
}
.p_data__content__list--secondary {
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 60px;
  margin-top: 80px;
}
.p_data__content__titleBox {
  width: 100%;
  text-align: center;
}
.p_data__content__title {
  margin-top: 100px;
  font-size: 35px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.p_data__content__title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 4px;
}
.p_data__content__item {
  background: #F7F7F7;
  padding-block: 40px;
}
.p_data__content__item__title {
  text-align: center;
  font-weight: bold;
  font-size: 26px;
}
.p_data__content__item__text {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
}
.p_data__content__item__text--note {
  font-size: 16px;
}
.p_data__content__item__text--sub {
  font-size: 20px;
}
.p_data__content__item__img {
  margin-inline: auto;
}
.p_data__content__item__img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p_data .item {
  width: 100%;
  height: 100%;
  max-height: 480px;
}
.p_data .item img {
  height: inherit;
  max-height: inherit;
}
.p_data .item1 {
  grid-column: 1;
  grid-row: 1;
}
.p_data .item1 .p_data__content__item__img {
  width: 207px;
  height: 173px;
  margin-block: 33px 26px;
}
.p_data .item2 {
  grid-column: 2;
  grid-row: 1;
  padding-inline: 38px;
}
.p_data .item2 .p_data__content__item__img {
  width: 121px;
  height: 135px;
  margin-block: 59px 48px;
}
.p_data .item2 .p_data__content__item__text {
  position: relative;
  display: block;
  max-width: 284px;
  margin-inline: auto;
}
.p_data .item2 .p_data__content__item__text::before {
  content: "男性";
  position: absolute;
  top: -10px;
  left: calc(50% - 90px);
  width: 40px;
  height: 29px;
  font-size: 20px;
  font-weight: bold;
}
.p_data .item2 .p_data__content__item__text::after {
  content: "女性";
  position: absolute;
  top: -10px;
  right: calc(50% - 90px);
  width: 40px;
  height: 29px;
  font-size: 20px;
  font-weight: bold;
}
.p_data .item3 {
  grid-column: 3;
  grid-row: 1;
}
.p_data .item3 .p_data__content__item__img {
  width: 270px;
  height: 270px;
  margin-block: 20px 9px;
}
.p_data .item4 {
  grid-column: 1;
  grid-row: 2;
}
.p_data .item4 .p_data__content__item__img {
  width: 162px;
  height: 148px;
  margin-block: 50px 34px;
}
.p_data .item5 {
  grid-column: 2;
  grid-row: 2;
}
.p_data .item5 .p_data__content__item__img {
  width: 158px;
  height: 158px;
  margin-block: 32px 41px;
}
.p_data .item6 {
  grid-column: 3;
  grid-row: 2;
}
.p_data .item6 .p_data__content__item__img {
  width: 139px;
  height: 125px;
  margin-block: 49px;
}
.p_data .item7 {
  grid-column: 1;
  grid-row: 3;
}
.p_data .item7 .p_data__content__item__img {
  width: 145px;
  height: 125px;
  margin-block: 37px 61px;
}
.p_data .item7 .p_data__content__item__text {
  font-size: 32px;
}
.p_data .item8 {
  grid-column: 2;
  grid-row: 3;
}
.p_data .item8 .p_data__content__item__img {
  width: 252px;
  height: 252px;
  margin-top: 42px;
}
.p_data .item9 {
  grid-column: 3;
  grid-row: 3;
}
.p_data .item9 .p_data__content__item__img {
  width: 147px;
  height: 124px;
  margin-block: 54px 65px;
}
.p_data .item9 .p_data__content__item__text {
  position: relative;
  display: block;
  max-width: 268px;
  margin-inline: auto;
}
.p_data .item9 .p_data__content__item__text::before {
  content: "マンション";
  position: absolute;
  top: -10px;
  left: calc(50% - 125px);
  width: 100px;
  height: 29px;
  font-size: 20px;
  font-weight: bold;
}
.p_data .item9 .p_data__content__item__text::after {
  content: "ビル";
  position: absolute;
  top: -10px;
  right: calc(50% - 90px);
  width: 40px;
  height: 29px;
  font-size: 20px;
  font-weight: bold;
}
.p_data .item10 {
  grid-column: 1/span 2;
  grid-row: 4;
  padding-block: 33px;
  padding-inline: 31px;
}
.p_data .item10 .p_data__content__item__img {
  max-width: 717px;
  height: 355px;
  margin-top: -41px;
}
.p_data .item10 .p_data__content__item__img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p_data .item10 .p_data__content__item__title {
  text-align: left;
}
.p_data .item11 {
  grid-column: 3;
  grid-row: 4;
}
.p_data .item11 .p_data__content__item__img {
  max-width: 148px;
  height: 155px;
  margin-block: 41px 26px;
}
.p_data .item2-01 .p_data__content__item__img {
  max-width: 148px;
  height: 148px;
  margin-block: 53px 31px;
}
.p_data .item2-02 .p_data__content__item__img {
  max-width: 141px;
  height: 144px;
  margin-block: 41px 46px;
}
.p_data .item2-02 .p_data__content__item__text::before {
  display: none;
}
.p_data .item2-02 .p_data__content__item__text::after {
  display: none;
}
.p_data .item2-03 .p_data__content__item__img {
  max-width: 137px;
  height: 136px;
  margin-block: 54px 41px;
}
.p_data .item2-04 .p_data__content__item__img {
  max-width: 176px;
  height: 140px;
  margin-block: 45px 46px;
}
.p_data .item2-05 .p_data__content__item__img {
  max-width: 147px;
  height: 149px;
  margin-block: 41px 43px;
}
.p_data .item2-05 .p_data__content__item__text {
  position: relative;
  display: block;
  max-width: 299px;
  margin-inline: auto;
}
.p_data .item2-05 .p_data__content__item__text::before {
  content: "男性";
  position: absolute;
  top: -10px;
  left: calc(50% - 140px);
  width: 100px;
  height: 29px;
  font-size: 20px;
  font-weight: bold;
}
.p_data .item2-05 .p_data__content__item__text::after {
  content: "女性";
  position: absolute;
  top: -10px;
  right: calc(50% - 90px);
  width: 40px;
  height: 29px;
  font-size: 20px;
  font-weight: bold;
}
.p_data .item2-06 .p_data__content__item__img {
  max-width: 145px;
  height: 160px;
  margin-block: 31px 41px;
}
.p_data .item2-07 .p_data__content__item__img {
  max-width: 154px;
  height: 108px;
  margin-block: 36px 26px;
}
.p_data .item2-08 {
  padding-block: 30px 20px;
}
.p_data .item2-08 .p_data__content__item__img {
  max-width: 161px;
  height: 101px;
  margin-block: 52px 41px;
}
.p_data__remarks:not(:first-child) {
  margin-top: 160px;
}
.p_data__remarks__title {
  font-size: 44px;
  font-weight: bold;
  border-bottom: 6px solid #000;
}
.p_data__remarks__items {
  margin-top: 80px;
}
.p_data__remarks__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p_data__remarks__item:not(:first-child) {
  margin-top: 68px;
}
.p_data__remarks__item__topic {
  width: 180px;
  font-size: 25px;
  font-weight: bold;
  line-height: 52px;
}
.p_data__remarks__item__text {
  max-width: 663px;
  font-size: 22px;
  line-height: 30px;
  margin-left: 230px;
}
.p_data__remarks__item__text a {
  color: blue;
}
.p_data__remarks__note__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
}
.p_data__remarks__note__item {
  font-size: 25px;
  line-height: 46px;
}
.p_data__remarks--work .p_data__remarks__item__topic {
  width: 360px;
}
.p_data__remarks--work .p_data__remarks__item__text {
  margin-left: 50px;
}
.p_data__remarks--career .p_data__remarks__item__topic {
  width: 288px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_data__remarks--career .p_data__remarks__item__text {
  margin-left: 122px;
  max-width: 100%;
}
.p_data__office {
  padding-bottom: 135px;
  margin-top: 137px;
}
.p_data__office__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  gap: 60px;
}
.p_data__office__item__title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  position: relative;
}
.p_data__office__item__title::before {
  content: "";
  position: absolute;
  width: 128px;
  height: 1px;
  background: #000;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 6px;
}
.p_data__office__imgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.p_data__office__img img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_data__office__btn {
  margin-top: 33px;
  text-align: center;
}
.p_data__office__btn a {
  font-size: 30px;
  display: inline-block;
  text-align: center;
  border-bottom: 1px solid #000;
}

/* -----------------------------------------------
* message
 Module
* message
ページ用
-------------------------------------------------- */
.p_message {
  margin-top: 130px;
  padding-bottom: 108px;
}
.p_message__ttl {
  font-size: 120px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  font-style: italic;
}
.p_message__subttl {
  display: block;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  font-family: "Noto Sans JP";
}
.p_message__content {
  margin-top: 182px;
  background: #E2F2FF;
  max-width: 1120px;
  margin-inline: auto;
}
.p_message__content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 38px;
  padding-bottom: 56px;
}
.p_message__content__textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 79px;
}
.p_message__content__title {
  font-size: 44px;
  font-weight: bold;
}
.p_message__content__img {
  margin-right: -80px;
  margin-top: -80px;
  max-width: 500px;
}
.p_message__content__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: inherit;
  height: auto;
}
.p_message__content__text {
  font-size: 32px;
  text-align: right;
  margin-right: 55px;
}
.p_message__textArea {
  margin-top: 125px;
  text-align: left;
  max-width: 1035px;
  margin-inline: auto;
}
.p_message__textArea p {
  font-size: 21px;
  line-height: 42px;
}
@media only screen and (max-width: 640px) {
  .c-swiper-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .outer-block {
    min-width: 320px;
  }
  .inner-block {
    padding: 0 20px;
    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;
  }
  .c-header__inner {
    padding-inline: 20px;
  }
  .c-header__sec01 {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    position: fixed;
    padding-block: 10px;
    padding-inline: 20px;
    width: 100%;
  }
  .c-header__logo {
    width: 180px;
    margin-top: 0;
    padding-top: 5px;
  }
  .c-header__logo--sub {
    width: 52px;
    margin-left: 10px;
  }
  .c-header__buttonBox {
    display: none;
  }
  .c-header__button {
    max-width: 180px;
    font-size: 20px;
    padding: 3px 20px;
  }
  .c-header__sec02 {
    display: none;
  }
  .c-drawer {
    display: block;
  }
  .c-drawer__content {
    height: calc(100% - 70px);
    overflow: auto;
  }
  .c-drawer__link.pat01 {
    position: relative;
  }
  .c-drawer__link {
    display: block;
    color: #000000;
    font-size: 16px;
    padding-block: 20px;
    padding-left: 20px;
    border-bottom: 1px solid #ccc;
  }
  .c-acordion-sp-list {
    display: none;
  }
  .c-footer-grid {
    display: none;
    gap: 25px;
  }
  .c-footer__menu {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .c-footer__content__titleBox {
    -moz-text-align-last: left;
         text-align-last: left;
  }
  .c-footer__bottom {
    padding-inline: 20px;
    padding-block: 20px;
  }
  .c-footer__bottom__list {
    display: block;
  }
  .c-footer__bottom__item:not(:first-child) {
    margin-top: 20px;
  }
  .c-footer__bottom__item a {
    font-size: 14px;
  }
  .c-viewMore {
    font-size: 18px;
    max-width: 200px;
    display: inline-block;
    padding: 5px;
    text-align: right;
  }
  .c-section__titleBox {
    display: block;
  }
  .c-section__title {
    margin-left: 0;
    font-size: 22px;
  }
  .c-section__title--en {
    font-size: 53px;
  }
  .c-viewMore-icon::before {
    right: -30px;
  }
  #pagetop a {
    width: 65px;
    height: 65px;
  }
  #pagetop img {
    margin-top: 1px;
  }
  .c-entry__inner {
    padding: 60px 20px 80px;
  }
  .c-entry__text {
    font-size: 16px;
    line-height: 36px;
    margin-top: 20px;
  }
  .c-entry__list {
    display: block;
    margin-top: 40px;
    width: 80%;
    margin-inline: auto;
  }
  .c-entry__item:not(:first-child) {
    margin-top: 30px;
  }
  .c-entry__item__title {
    font-size: 20px;
    margin-top: 13px;
  }
  .p_home__mv {
    margin-top: 88px;
  }
  .p_home__mv__img {
    max-height: 400px;
  }
  .p_home__mv__title {
    font-size: clamp(14px, 4vw, 18px);
    width: calc(100% - 80px);
    line-height: 28px;
    padding: 20px;
  }
  .p_home__message__inner {
    margin-top: 85px;
  }
  .p_home__message__title {
    font-size: clamp(17px, 5vw, 26px);
  }
  .p_home__message__text {
    margin-top: 65px;
    font-size: 16px;
    line-height: 42px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
  .p_home__about__inner {
    padding-top: 65px;
  }
  .p_home__about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-top: 21px;
  }
  .p_home__about__textBox {
    display: contents;
  }
  .p_home__about__textBox p {
    font-size: 16px;
    line-height: 28px;
  }
  .p_home__about__img {
    margin: 0;
    margin-top: 32px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .p_home__about__btn {
    width: 100%;
    text-align: right;
    margin-top: 32px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p_home__challenge .c-section__title {
    margin-left: 0;
  }
  .p_home__challenge__inner {
    padding-top: 94px;
  }
  .p_home__challenge__inner p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 20px;
  }
  .p_home__challenge__list__wrapper {
    padding-inline: 20px;
  }
  .p_home__challenge__list {
    margin-top: 40px;
  }
  .p_home__challenge__list {
    max-width: 100%;
  }
  .p_home__challenge__textBox {
    font-size: 16px;
    margin-top: 10px;
    width: 70%;
    margin: 0 auto;
  }
  .p_home__challenge .slick-slide {
    margin-right: 140px !important;
  }
  .p_home__challenge .slick-prev {
    left: -30px !important;
  }
  .p_home__challenge .slick-next {
    right: -30px !important;
  }
  .p_home__challenge__img {
    width: 70%;
    margin-inline: auto;
  }
  .p_home__data__inner,
  .p_home__career__inner {
    padding-top: 74px;
  }
  .p_home__data__inner p,
  .p_home__career__inner p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 20px;
  }
  .p_home__data__content,
  .p_home__career__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .p_home__data__textBox,
  .p_home__career__textBox {
    display: contents;
  }
  .p_home__data__btn,
  .p_home__career__btn {
    margin-top: 65px;
    text-align: right;
  }
  .p_home__data__img {
    margin-top: 30px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .p_home__data__img img {
    height: auto;
  }
  .p_home__data__btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p_home__career__inner {
    padding-bottom: 70px;
  }
  .p_home__career__img {
    margin-inline: auto;
  }
  .p_home__career__img img {
    height: auto;
  }
  .p_home__career__img {
    margin-top: 30px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .p_home__career__btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p_career-sec02 {
    width: 100%;
  }
  .p_career-list02 {
    margin-top: 20px;
  }
  .p_career-list02 > li {
    padding: 10px;
  }
  .p_career-list02__txt01 {
    font-size: 16px;
  }
  .p_career-section01__ttl01 {
    font-size: 12vw;
  }
  .p_career-section01__ttl02 {
    font-size: 5vw;
  }
  .p_career-section01__ttl03 {
    margin: 55px 0 auto;
    font-size: 5vw;
  }
  .p_career-section01__list01 {
    margin-top: 39px;
  }
  .p_career-section01__list01 > li {
    padding: 0;
    display: block;
  }
  .p_career-section01__box01 {
    width: 100%;
  }
  .p_career-section01__box02 {
    padding: 40px 0px;
    display: block;
  }
  .p_career-section01__ttl04 {
    font-size: 20px;
    text-align: center;
  }
  .p_career-section01__cap01 {
    margin-top: 16px;
    font-size: 14px;
  }
  .p_career-section02 {
    margin: 65px 0;
    padding: 0;
  }
  .p_career-section02__box01 {
    padding: 0;
  }
  .p_career-section02__ttl01 {
    font-size: 8vw;
  }
  .p_career-section02__img01 {
    margin-top: 26px;
  }
  .p_career-section02__list01 {
    margin-top: 40px;
  }
  .p_career-section02__list01 > li {
    display: block;
  }
  .p_career-section02__list01 > li + li {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 5px solid #D0D0D0;
  }
  .p_career-section02__cap01 {
    width: 100%;
    font-size: 20px;
  }
  .p_career-section02__cap02 {
    width: 100%;
    margin-top: 25px;
    padding: 0 0 20px 0;
    font-size: 14px;
    border-left: 0;
  }
  .p_interview {
    margin: 127px 0 110px;
  }
  .p_interview__ttl {
    font-size: 20px;
  }
  .p_interview__subttl {
    font-size: 5vw;
  }
  .p_interview-list01 li {
    width: 100%;
  }
  .p_interview-list01__box01 {
    margin-top: 9px;
    font-size: 16px;
  }
  .p_interview-swiper__box01 {
    margin-top: 50px;
    position: relative;
  }
  .p_home-interview01-sec01 {
    margin-top: 137px;
    padding: 0;
  }
  .p_home-interview01-sec01__ttl01 {
    font-size: 12vw;
  }
  .p_home-interview01-sec01__ttl02 {
    font-size: 5vw;
  }
  .p_home-interview01-sec01__txt01 {
    font-size: 6vw;
  }
  .p_home-interview01-sec01__label {
    font-size: 1.8vw;
    padding: 10px 30px 10px 10px;
  }
  .p_home-interview01-sec01__cap01 {
    margin-top: 20px;
    font-size: 16px;
  }
  .p_home-interview01-sec02 {
    margin-top: 60px;
    padding: 0;
  }
  .p_home-interview01-sec02__list01 > li + li {
    margin-top: 63px;
  }
  .p_home-interview01-sec02__list01 > li {
    display: block;
  }
  .p_home-interview01-sec02__list01 > li:nth-child(even) .p_home-interview01-sec02__img01 {
    float: none;
    margin-right: 0;
  }
  .p_home-interview01-sec02__img01 {
    width: 100%;
    float: none;
    margin-left: 0;
  }
  .p_home-interview01-sec02__box01 {
    width: 100%;
  }
  .p_home-interview01-sec02__ttl01 {
    margin-top: 10px;
    font-size: 22px;
  }
  .p_home-interview01-sec02__cap01 {
    margin-top: 15px;
    font-size: 16px;
  }
  .p_home-interview01-sec03 {
    margin-top: 160px;
    padding: 0;
  }
  .p_home-interview01-sec03__ttl01 {
    font-size: 25px;
    border-bottom: 3px solid #000;
  }
  .p_home-interview01-sec03__list01 {
    margin-top: 32px;
  }
  .p_home-interview01-sec03__list01 > li {
    display: block;
  }
  .p_home-interview01-sec03__list01 > li + li {
    margin-top: 30px;
    position: relative;
  }
  .p_home-interview01-sec03__list01 > li + li::before {
    content: "";
    background-color: #010350;
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 42px;
    height: 15px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p_home-interview01-sec03__time {
    padding: 5px;
    width: 100%;
    font-size: 20px;
  }
  .p_home-interview01-sec03__cap01 {
    text-align: center;
    width: 100%;
    font-size: 18px;
  }
  .p_about {
    margin-top: 127px;
  }
  .p_about__ttl {
    font-size: 12vw;
  }
  .p_about__subttl {
    font-size: 5vw;
  }
  .p_about__section__title {
    font-size: 20px;
  }
  .p_about__job__btn__list {
    border-top: 1px solid #84BAF8;
    display: block;
    margin-top: 29px;
  }
  .p_about__job__btn__item a {
    padding-block: 20px;
    border-bottom: 1px solid #84BAF8;
    font-size: 18px;
  }
  .p_about__job__btn__item a span {
    font-size: 30px;
  }
  .p_about__job__btn__item a img {
    margin-left: auto;
    margin-right: 10px;
  }
  .p_about__job__list {
    margin-top: 65px;
  }
  .p_about__job__item {
    display: block;
    padding: 40px 20px;
  }
  .p_about__job__item:nth-child(odd) .p_about__job__item__textBox {
    padding: 20px 20px 90px;
  }
  .p_about__job__item:nth-child(odd) .p_about__job__item__img {
    margin: -50px auto 0;
  }
  .p_about__job__item:nth-child(even) .p_about__job__item__textBox {
    padding: 20px 20px 90px;
  }
  .p_about__job__item:nth-child(even) .p_about__job__item__img {
    margin: -50px auto 0;
  }
  .p_about__job__item__number {
    font-size: 50px;
  }
  .p_about__job__item__title {
    font-size: 22px;
  }
  .p_about__job__item__title--sub {
    font-size: 18px;
  }
  .p_about__job__item__text {
    margin-top: 13px;
  }
  .p_about__job__item__img {
    max-width: 413px;
    height: inherit;
    width: calc(100% - 40px);
  }
  .p_about__philosophy__inner {
    padding-top: 80px;
  }
  .p_about__philosophy__item:not(:first-child) {
    margin-top: 80px;
  }
  .p_about__philosophy__item__title {
    font-size: 24px;
  }
  .p_about__philosophy__item__titleMin {
    font-size: 20px;
  }
  .p_about__philosophy__point {
    font-size: 16px;
    line-height: 40px;
    margin-top: 20px;
  }
  .p_about__philosophy__img {
    margin-top: 40px;
  }
  .p_about__philosophy__item__text {
    font-size: 16px;
    line-height: 36px;
    margin-top: 20px;
  }
  .p_about__philosophy__item__textList span {
    font-size: 24px;
  }
  .p_about__philosophy__item__textList p {
    font-size: 16px;
  }
  .p_about__company__inner {
    padding-top: 40px;
    margin-top: 40px;
    padding-bottom: 80px;
  }
  .p_about__company__inner::before {
    max-width: calc(100% - 40px);
  }
  .p_about__company__content {
    margin-top: 30px;
    display: block;
  }
  .p_about__company__content__title {
    font-size: 20px;
  }
  .p_about__company__table dl {
    font-size: 16px;
  }
  .p_about__company__table dl dt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p_about__company__img {
    margin-top: 30px;
    margin-inline: auto;
    max-width: 100%;
  }
  .p_about__company__content__address {
    margin-top: 50px;
  }
  .p_about__company__content__address__list {
    display: block;
  }
  .p_about__company__content__address__item:not(:first-child) {
    margin-top: 40px;
  }
  .p_about__company__content__address__item a {
    margin-top: 15px;
    font-size: 16px;
  }
  .p_about__company__content__address__item__text {
    font-size: 16px;
  }
  .p_recruit {
    padding-bottom: 78px;
    margin-top: 127px;
  }
  .p_recruit__ttl {
    font-size: 12vw;
  }
  .p_recruit__subttl {
    font-size: 5vw;
  }
  .p_recruit__content__title {
    margin-top: 59px;
    font-size: 30px;
  }
  .p_recruit__requirements__table {
    margin-top: 59px;
  }
  .p_recruit__requirements dl {
    display: block;
  }
  .p_recruit__requirements dl dt {
    margin-top: 20px;
    font-size: 16px;
    width: 100%;
    border-right: none;
    padding: 10px;
    border-bottom: 3px solid rgba(87, 181, 236, 0.15);
  }
  .p_recruit__requirements dl dd {
    border-bottom: 3px solid rgba(87, 181, 236, 0.15);
    font-size: 14px;
    line-height: 28px;
    padding: 10px;
    border-bottom: none;
  }
  .p_recruit__schedule__list {
    display: block;
    margin-top: 64px;
  }
  .p_recruit__schedule__item {
    width: 100%;
    font-size: 30px;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    padding-block: 10px 9px;
  }
  .p_recruit__schedule__item:not(:first-child) {
    margin-top: 35px;
  }
  .p_recruit__schedule__item:not(:last-child)::before {
    background: url(../img/recruit/triangle-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 19px;
    top: calc(100% + 8px);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p_recruit__schedule__item:nth-child(3) {
    font-size: 30px;
  }
  .p_recruit__schedule__item span {
    font-size: 20px;
  }
  .p_recruit__schedule__number {
    width: 70px;
    height: 70px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -16px;
    font-size: 30px;
  }
  .p_recruit__schedule__btn {
    margin-top: 62px;
    width: 80%;
    font-size: 28px;
  }
  .p_recruit__schedule__btnText {
    margin-top: 12px;
    font-size: 20px;
  }
  .p_recruit__faq__list {
    margin-top: 50px;
  }
  .p_recruit__faq__item {
    padding: 40px 20px;
  }
  .p_recruit__faq__item:not(:first-child) {
    margin-top: 24px;
  }
  .p_recruit__faq__item__q {
    font-size: 20px;
  }
  .p_recruit__faq__item__a {
    font-size: 16px;
    line-height: 28px;
    margin-top: 15px;
  }
  .p_recruit__bottom__btns {
    display: block;
    margin-top: 115px;
  }
  .p_recruit__bottom__btns a:not(:first-child) {
    margin-top: 30px;
  }
  .p_data__content:nth-child(4) {
    margin-top: 62px;
  }
  .p_data__content__list {
    display: block;
    margin-top: 43px;
  }
  .p_data__content__list--secondary {
    display: block;
  }
  .p_data__content__title {
    font-size: 24px;
    margin-top: 50px;
  }
  .p_data__content__item {
    padding-block: 20px;
  }
  .p_data__content__item__title {
    font-size: 24px;
  }
  .p_data__content__item__text {
    font-size: 20px;
  }
  .p_data__content__item__text--note {
    font-size: 12px;
  }
  .p_data__content__item__text--sub {
    font-size: 16px;
  }
  .p_data .item {
    max-height: 100%;
  }
  .p_data .item:not(:first-child) {
    margin-top: 30px;
  }
  .p_data .item1 .p_data__content__item__img {
    width: 103px;
    height: auto;
    margin-block: 16px 13px;
  }
  .p_data .item2 {
    padding-inline: 18px;
  }
  .p_data .item2 .p_data__content__item__img {
    width: 60px;
    height: auto;
    margin-block: 29px 24px;
  }
  .p_data .item2 .p_data__content__item__text::before {
    left: calc(50% - 51px);
    top: -14px;
    font-size: 14px;
  }
  .p_data .item2 .p_data__content__item__text::after {
    font-size: 14px;
    right: calc(50% - 48px);
    top: -14px;
  }
  .p_data .item3 .p_data__content__item__img {
    width: 135px;
    height: auto;
    margin-block: 29px 24px;
  }
  .p_data .item4 .p_data__content__item__img {
    width: 81px;
    height: auto;
    margin-block: 14px 12px;
  }
  .p_data .item4 .p_data__content__item__text {
    font-size: 20px;
  }
  .p_data .item5 .p_data__content__item__img {
    width: 79px;
    height: auto;
    margin-block: 16px 20px;
  }
  .p_data .item6 .p_data__content__item__img {
    width: 70px;
    height: auto;
    margin-block: 24px;
  }
  .p_data .item7 .p_data__content__item__img {
    width: 72px;
    height: auto;
    margin-block: 18px 30px;
  }
  .p_data .item7 .p_data__content__item__text {
    font-size: 24px;
  }
  .p_data .item7 .p_data__content__item__text.pat01 {
    font-size: 20px;
  }
  .p_data .item7 .p_data__content__item__text--sub.pat01 {
    font-size: 16px;
  }
  .p_data .item8 .p_data__content__item__img {
    width: 126px;
    height: auto;
    margin-top: 21px;
  }
  .p_data .item9 .p_data__content__item__img {
    width: 73px;
    height: auto;
    margin-block: 27px 32px;
  }
  .p_data .item9 .p_data__content__item__text::before {
    left: calc(50% - 82px);
    top: -14px;
    font-size: 14px;
  }
  .p_data .item9 .p_data__content__item__text::after {
    top: -14px;
    right: calc(50% - 50px);
    font-size: 14px;
  }
  .p_data .item10 .p_data__content__item__img {
    margin: 0;
    height: auto;
  }
  .p_data .item11 .p_data__content__item__img {
    width: 79px;
    height: auto;
    margin-block: 20px 13px;
  }
  .p_data .item2-01 .p_data__content__item__img {
    width: 74px;
    height: auto;
    margin-block: 21px 15px;
  }
  .p_data .item2-02 .p_data__content__item__img {
    width: 70px;
    height: auto;
    margin-block: 20px 23px;
  }
  .p_data .item2-03 .p_data__content__item__img {
    width: 68px;
    height: auto;
    margin-block: 27px 20px;
  }
  .p_data .item2-04 .p_data__content__item__img {
    width: 88px;
    height: auto;
    margin-block: 22px 23px;
  }
  .p_data .item2-05 .p_data__content__item__img {
    width: 73px;
    height: auto;
    margin-block: 20px 21px;
  }
  .p_data .item2-05 .p_data__content__item__text::before {
    left: calc(50% - 88px);
    top: -14px;
    font-size: 14px;
  }
  .p_data .item2-05 .p_data__content__item__text::after {
    top: -14px;
    right: calc(50% - 49px);
    font-size: 14px;
  }
  .p_data .item2-06 .p_data__content__item__img {
    width: 72px;
    height: auto;
    margin-block: 15px 20px;
  }
  .p_data .item2-07 .p_data__content__item__img {
    width: 77px;
    height: auto;
    margin-block: 18px 13px;
  }
  .p_data .item2-08 .p_data__content__item__img {
    width: 80px;
    height: auto;
    margin-block: 27px 20px;
  }
  .p_data__remarks:not(:first-child) {
    margin-top: 80px;
  }
  .p_data__remarks__title {
    font-size: 28px;
    border-bottom: 3px solid #000;
  }
  .p_data__remarks__items {
    margin-top: 40px;
  }
  .p_data__remarks__item {
    display: block;
  }
  .p_data__remarks__item:not(:first-child) {
    margin-top: 34px;
  }
  .p_data__remarks__item__topic {
    font-size: 24px;
  }
  .p_data__remarks__item__text {
    margin: 0;
    font-size: 16px;
  }
  .p_data__remarks__note__items {
    margin-top: 40px;
    display: block;
  }
  .p_data__remarks__note__item {
    font-size: 18px;
    line-height: 36px;
  }
  .p_data__remarks--work .p_data__remarks__item__text {
    margin-left: 0;
  }
  .p_data__remarks--career .p_data__remarks__item__text {
    margin-left: 0;
  }
  .p_data__office {
    padding-bottom: 67px;
    margin-top: 68px;
  }
  .p_data__office__items {
    margin-top: 30px;
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p_data__office__item__title {
    font-size: 22px;
  }
  .p_data__office__item__title::before {
    width: 90px;
    bottom: 4px;
  }
  .p_data__office__imgBox {
    margin-top: 15px;
    gap: 15px;
  }
  .p_data__office__btn {
    margin-top: 16px;
  }
  .p_data__office__btn a {
    font-size: 16px;
  }
  .p_message {
    padding-bottom: 54px;
  }
  .p_message__ttl {
    font-size: 12vw;
  }
  .p_message__subttl {
    font-size: 5vw;
  }
  .p_message__content {
    margin-top: 91px;
  }
  .p_message__content__inner {
    display: block;
    padding-block: 40px;
    padding-inline: 20px;
  }
  .p_message__content__textBox {
    gap: 39px;
  }
  .p_message__content__title {
    font-size: 20px;
  }
  .p_message__content__img {
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin: 30px auto 0;
  }
  .p_message__content__text {
    margin: 0;
    font-size: 16px;
  }
  .p_message__textArea {
    margin-top: 62px;
  }
  .p_message__textArea p {
    font-size: 16px;
    line-height: 36px;
    text-align: left;
  }
}
@media only screen and (min-width: 641px) {
  main {
    margin-top: 322px;
  }
  .outer-block {
    min-width: 1200px;
  }
  .inner-block {
    margin: 0 auto;
  }
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: #fff;
  }
  .c-header__sec01 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .c-header__sec02 {
    padding-bottom: 15px;
  }
  .c-header__nav__list {
    margin-top: 15px;
  }
  .c-header__nav__item a {
    line-height: 1;
  }
  .c-drawer__item a {
    display: block;
    color: #000000;
    font-size: 16px;
    padding-block: 20px;
    padding-left: 20px;
    border-bottom: 1px solid #ccc;
  }
  .paging-area > * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .paging-area > *:not(.dots):hover {
    background: blue;
    color: #fff;
  }
  #pagetop:hover a {
    opacity: 0.7;
  }
  .p_interview-list01 {
    margin-top: 100px;
    padding: 0 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 90px;
  }
  .p_interview-list01 li {
    width: calc((100% - 180px) / 3);
  }
  .p_interview-list01 li > a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p_interview-list01 li > a:hover {
    opacity: 0.8;
  }
  .p_recruit__requirements__table__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .p_recruit__requirements dl {
    border-bottom: 3px solid rgba(87, 181, 236, 0.15);
  }
  .p_recruit__requirements dl:last-child dt,
  .p_recruit__requirements dl:last-child dd {
    border-bottom: none;
  }
  .p_recruit__requirements dl dd {
    margin: auto 0;
  }
  .p_data .item7 .p_data__content__item__text.pat01 {
    font-size: 48px;
  }
  .p_data .item7 .p_data__content__item__text--sub.pat01 {
    font-size: 20px !important;
  }
}
@media not print {
  .anm {
    opacity: 0;
  }
  .anm.is-animated {
    -webkit-animation: fadeIn 1.5s forwards;
    animation: fadeIn 1.5s forwards;
  }
  .anm-up {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  .anm-up.is-animated {
    -webkit-animation: fadeInUp 1.5s forwards;
    animation: fadeInUp 1.5s forwards;
  }
  .anm-left {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
  }
  .anm-left.is-animated {
    -webkit-animation: fadeInLeft 1.5s forwards;
    animation: fadeInLeft 1.5s forwards;
  }
  .anm-right {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
  }
  .anm-right.is-animated {
    -webkit-animation: fadeInRight 1.5s forwards;
    animation: fadeInRight 1.5s forwards;
  }
}
@media (max-width: 1273px) {
  .c-header__nav__list {
    gap: 35px;
  }
}
@media (max-width: 1355px) {
  .c-footer__bottom__list {
    gap: 70px;
  }
}
@media (any-hover: hover) {
  .c-viewMore:hover::before {
    width: 110%;
  }
  .c-viewMore:hover::after {
    right: -10%;
  }
}
@media screen and (max-width: 375px) {
  .p_home__message__text {
    -moz-text-align-last: center;
         text-align-last: center;
  }
}
@media (max-width: 1439px) {
  .p_home__challenge__list {
    max-width: 1020px;
    margin-inline: auto;
  }
  .p_home__challenge .slick-slide {
    margin-right: 10px;
  }
  .p_home__challenge .slick-prev {
    left: -50px;
  }
  .p_home__challenge .slick-next {
    right: -50px;
  }
}
@media (max-width: 560px) {
  .p_recruit__schedule__item {
    font-size: 16px;
  }
  .p_recruit__schedule__item:nth-child(3) {
    font-size: 16px;
  }
  .p_recruit__schedule__item span {
    font-size: 14px;
  }
  .p_recruit__schedule__number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
/*# sourceMappingURL=style.css.map */