@charset "UTF-8";
* {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* --------------------------- */
body {
  width: 100%;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-smoothing: antialiased;
  text-rendering: auto;
  font-size: 14px;
  color: #44403f;
  background-color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

@font-face {
  font-family: "icomoon";
  src: url(../icons/icomoon.eot?t22mr9);
  src: url(../icons/icomoon.eot?t22mr9#iefix) format("embedded-opentype"), url(../icons/icomoon.ttf?t22mr9) format("truetype"), url(../icons/icomoon.woff?t22mr9) format("woff"), url(../icons/icomoon.svg?t22mr9#icomoon) format("svg");
  font-weight: 400;
  font-style: normal;
}
[class*=" icon-"], [class^=icon-] {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.l-main {
  max-width: 640px;
  margin: 0 auto;
  padding-top: 72px;
  position: relative;
}
.l-main.l-main-top {
  padding-top: 0;
}

/* ----------------------------
メニュー・ヘッダー
------------------------------- */
.menu-btn {
  display: block;
  position: relative;
  z-index: 100;
  width: 30px;
  height: 20px;
}
.menu-btn:hover {
  cursor: pointer;
}
.menu-btn span {
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  background-color: #666;
}
.menu-btn span:nth-of-type(1) {
  top: 0;
  transition: top 0.2s 0.2s, transform 0.2s 0s;
}
.menu-btn span:nth-of-type(2) {
  top: 9px;
  transition: opacity 0.1s 0.2s;
}
.menu-btn span:nth-of-type(3) {
  top: 18px;
  transition: top 0.2s 0.2s, transform 0.2s 0s;
}
.menu-btn.menu-top span {
  background-color: #fff;
}
.menu-btn.menuOpen span:nth-of-type(1) {
  top: 9px;
  transform: rotate(45deg);
  transition: top 0.2s, transform 0.2s 0.2s;
}
.menu-btn.menuOpen span:nth-of-type(2) {
  opacity: 0;
}
.menu-btn.menuOpen span:nth-of-type(3) {
  top: 9px;
  transform: rotate(-45deg);
  transition: top 0.2s, transform 0.2s 0.2s;
}

.menu-list {
  position: fixed;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 640px;
  height: 100vh;
  right: 0;
  top: 0;
  padding-bottom: 90px;
  background-color: #fff;
  transform: translate3d(101%, 0, 0);
  transition: transform 0.3s;
}
.menu-list.menuOpen {
  transform: translate3d(0, 0, 0);
}
.menu-list > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.menu-list ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 70%;
  max-height: 400px;
}
.menu-list ul li a {
  position: relative;
  padding: 3px 0;
  font-size: 15px;
  line-height: 1;
  font-weight: bold;
  color: #000;
  transition: color 0.3s;
}
.menu-list ul li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #fff;
  transition: transform 0.2s;
  transform: scaleX(0);
}
.menu-list ul li a:active {
  color: #aaa;
}
.menu-list ul li a:active::after {
  transform: scaleX(1);
}
.menu-list > a {
  flex-shrink: 0;
  display: block;
  width: 120px;
  margin: auto 0 20px;
}
.menu-list > a img {
  opacity: 0.6;
}
.menu-list p {
  flex-shrink: 0;
  width: 90%;
  text-align: center;
  font-size: 10px;
  line-height: 1.3;
  color: #aaa;
}

@media screen and (min-width: 640px) {
  .menu-list {
    right: calc(50% - 320px);
    transform: translate3d(0, 0, 0);
    display: none;
  }
  .menu-list.menuOpen {
    display: block;
  }
}
header {
  position: fixed;
  z-index: 60;
  width: 100%;
  height: 72px;
  left: 0;
  top: 0;
  background-color: #fff;
}
header a {
  display: block;
  width: 120px;
}
header > div {
  max-width: 576px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  width: 90%;
}

/* ----------------------------
top
------------------------------- */
.topWrap {
  width: 100%;
  max-width: 640px;
  height: 150vw;
  max-height: min(100vh - 150px, 960px);
  margin: 72px auto 0;
  position: relative;
  background-color: #000;
}

.top-bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  transition: opacity 3s;
  pointer-events: none;
}
.top-bg .slick-slide {
  height: 150vw;
  max-height: min(100vh - 150px, 960px);
}
.top-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.l-index .button, .l-main .button {
  padding: 1.5em 2em 1.5em 2em;
  width: 100%;
  box-sizing: border-box;
  font-size: min(4vw, 16px);
  color: #fff;
  background: #44403f;
  border-radius: 2em;
  display: block;
  position: relative;
  overflow: hidden;
}
.l-index .button .button__text, .l-main .button .button__text {
  font-size: min(4vw, 16px);
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.l-index .button .button__arrow, .l-main .button .button__arrow {
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  transition: transform 0.5s cubic-bezier(0.51, 0.3, 0, 0.99);
}
.l-index .button .button__arrow::before, .l-main .button .button__arrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}
.l-index .button .button__arrow::after, .l-main .button .button__arrow::after {
  content: "";
  width: 14px;
  height: 1px;
  background: #fff;
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.51, 0.3, 0, 0.99);
  right: -1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.l-index__news-section {
  position: relative;
  margin-top: 0;
  padding: 10% 0 0;
  background: #f2f2f2;
}
.l-index__news-section .l-index__news-inner {
  position: relative;
  width: 100%;
  max-width: 580px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.l-index__news-section .l-index__news-heading .heading__title {
  display: block;
  margin-bottom: 0.4em;
  color: #44403f;
  font-size: min(4.8vw, 24px);
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0.05em;
}
.l-index__news-section .l-index__news-heading .heading__sub-title {
  display: block;
  color: #0f4c81;
  font-size: min(2.7vw, 14px);
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0.16em;
}
.l-index__news-section .l-index__news-list {
  margin: 20px 0;
}
.l-index__news-section .l-index__news-button {
  padding: 0;
}

.l-news-card .news-card {
  display: block;
  padding: 1.5em 0;
  font-size: min(3vw, 15px);
  border-bottom: solid 1px #ddd;
}
.l-news-card .news-card .news-card__time {
  color: #444;
  display: block;
  margin: 0 0 0.5em;
  font-size: min(2.7vw, 14px);
  line-height: 1;
  letter-spacing: 0.1em;
}
.l-news-card .news-card .news-card__title {
  color: #44403f;
  font-size: min(3vw, 15px);
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.l-index__company-section,
.l-index__service-section,
.l-index__interview-section,
.l-index__recruit-section {
  padding: 10% 0;
  position: relative;
}

.l-page-feature {
  position: relative;
}

.l-page-feature__content .l-page-feature__content-inner {
  height: inherit;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 580px;
  padding: 0 20px;
}
.l-page-feature__content .l-page-feature__title .page-feature__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 2.7em;
  margin-bottom: 1.5em;
  padding-left: 1em;
  color: #44403f;
  font-weight: normal;
  letter-spacing: 0.075em;
  font-size: min(4.8vw, 24px);
  line-height: 1.35;
  border-left: solid 3px #0f4c81;
}
.l-page-feature__content .l-page-feature__images .page-feature__image--company2 .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-page-feature__content .l-page-feature__images .page-feature__image--company2 .slick-dots li {
  margin: 0 10px;
}
.l-page-feature__content .l-page-feature__images .page-feature__image--company2 .slick-dots li.slick-active button {
  background-color: #0f4c81;
}
.l-page-feature__content .l-page-feature__images .page-feature__image--company2 .slick-dots button {
  -webkit-appearance: none;
          appearance: none;
  width: 10px;
  height: 10px;
  border: solid 1px #0f4c81;
  border-radius: 6px;
  background-color: #fff;
  font-size: 0px;
}
.l-page-feature__content .l-page-feature__sub-title {
  margin-top: 20px;
}
.l-page-feature__content .l-page-feature__sub-title .page-feature__sub-title {
  margin-top: 8px;
  color: #0f4c81;
  display: block;
  font-size: min(3vw, 15px);
  letter-spacing: 0.16em;
}
.l-page-feature__content .l-page-feature__description {
  margin-top: 12px;
}
.l-page-feature__content .l-page-feature__description .page-feature__description {
  color: #44403f;
  font-size: min(3.2vw, 16px);
  line-height: 1.833;
}
.l-page-feature__content .l-page-feature__button {
  margin: 30px 0 0;
}

.l-index__company-section {
  background-color: #f2f2f2;
  padding-top: 13%;
}

.l-index__service-section {
  padding-bottom: 5%;
}

.l-index__interview-section {
  padding-bottom: 15%;
}
.l-index__interview-section .l-page-feature__images a {
  display: block;
}
.l-index__interview-section .l-page-feature__images img {
  height: 53vw;
  max-height: 340px;
  object-fit: cover;
  object-position: center top;
}

.l-index__recruit-section {
  background-color: #ebebeb;
  padding-bottom: 10%;
}

/* ----------------------------
下層ページ 共通 見出し
------------------------------- */
.page-head {
  width: calc(100% - 40px);
  max-width: 540px;
  height: 22.5vw;
  max-height: 120px;
  margin: 0 auto;
  padding-top: 5%;
  border-bottom: solid 1px #ddd;
}
.page-head .page-head__title {
  color: #222;
  font-weight: normal;
  letter-spacing: 0.15em;
  font-size: min(3vw, 16px);
  line-height: 1;
}
.page-head .page-head__sub-title {
  display: block;
  margin-bottom: 0.6em;
  font-family: "Open Sans", sans-serif;
  font-weight: 350;
  letter-spacing: 0.2em;
  font-size: min(7vw, 38px);
  line-height: 1;
}

/* ----------------------------
company/business/recruit
------------------------------- */
.l-company__message-section,
.l-company__content-section,
.l-company__table-section,
.l-business__service,
.l-recruit__section {
  position: relative;
  width: 100%;
  margin: 30px auto 0;
  box-sizing: border-box;
}

.l-company__heading-Wrap {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-company__heading {
  margin-bottom: 25px;
  padding: 0 27px;
}
.l-company__heading .company__heading {
  font-weight: normal;
  position: relative;
}
.l-company__heading .company__heading .company__heading-number {
  color: #0f4c81;
  font-size: min(3vw, 15px);
  transform: translate(-26px, 5px);
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  left: 0;
}
.l-company__heading .company__heading .company__heading-number::before {
  content: "";
  width: 14px;
  height: 4px;
  background: #0f4c81;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.l-company__heading .company__heading .company__heading-text {
  font-size: min(5.4vw, 27px);
  color: #44403f;
}

.company__accordion {
  transition: height 0.5s cubic-bezier(0.51, 0.3, 0, 0.99);
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}
.company__accordion .l-company__accordion-inner {
  padding-bottom: 5%;
}
.company__accordion.js-accordion-open.is-active {
  display: block;
}

.l-company__message {
  max-width: 540px;
  margin: 1.8em auto 0;
  padding: 0 20px;
  font-size: min(4.4vw, 21px);
}
.l-company__message .company__message-title {
  font-size: min(4.4vw, 21px);
  margin: 0 0 1.5em;
  line-height: 1.8;
  font-weight: bold;
}
.l-company__message .company__message-text {
  font-size: min(3.3vw, 15px);
  line-height: 1.9;
  margin-bottom: 1.5em;
}
.l-company__message .company__message-footer {
  text-align: right;
  font-size: min(3.3vw, 15px);
  line-height: 1.9;
}

.l-company__news-section {
  padding-bottom: 10%;
  margin-bottom: 10%;
}

.l-company__information {
  padding: 0 20px;
  max-width: 540px;
  margin: 0 auto;
}
.l-company__information .company__table {
  border-top: solid 1px #ddd;
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
  display: flex;
  flex-wrap: wrap;
}
.l-company__information .company__table .company__table-name {
  color: #44403f;
  letter-spacing: 0.1em;
  background: #f5f5f5;
  padding: 17px 14px;
  width: 100%;
  border-bottom: none;
  font-size: 12px;
  line-height: 1;
}
.l-company__information .company__table .company__table-data {
  padding: 15px;
  width: 100%;
  font-size: 12px;
  line-height: 1.5;
  border-bottom: solid 1px #ddd;
}
.l-company__information .company__table .company__table-data a {
  position: relative;
  display: inline-block;
  color: #0f4c81;
  border-bottom: 1px solid #0f4c81;
  margin-bottom: 0.5em;
}

.l-business .l-business__button {
  padding: 0 20px;
  max-width: 540px;
  margin: 0 auto;
}
.l-business .l-business__service {
  margin-bottom: 50px;
}
.l-business .l-business__message-section .company__message-text {
  letter-spacing: -0.05em;
}

/* --- recruit --- */
.l-recruit {
  min-height: calc(100vh - 172px);
}
.l-recruit .recruit__ttl {
  margin: 2em 0 1em;
  font-size: min(3.5vw, 16px);
  color: #0f4c81;
}
.l-recruit__entry {
  max-width: 580px;
  margin: 0 auto;
  border-top: solid 1px #aaa;
}
.l-recruit__entry h2 {
  text-align: center;
  font-size: 18px;
  margin: 30px auto 20px;
  font-weight: normal;
}
.l-recruit__entry.is-confirm .inputArea {
  display: none;
}
.l-recruit__entry.is-confirm .confirmArea {
  display: block;
}
.l-recruit__entry .inputArea > p {
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.l-recruit__entry .inputArea > p span {
  color: #e61673;
}
.l-recruit__entry .confirmArea {
  display: none;
}
.l-recruit__entry .confirmArea > p {
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.l-recruit__entry .confirmArea .formWrap > div label {
  padding: 6px 15px;
  font-size: 12px;
}
.l-recruit__entry .confirmArea .formWrap > div p {
  padding: 8px 15px;
  font-size: 15px;
  line-height: 1.8;
}
.l-recruit__entry .l-recruit__button {
  margin: 30px auto 60px;
  padding: 0 20px;
}
.l-recruit__entry .l-recruit__button button {
  -webkit-appearance: none;
          appearance: none;
  border: none;
  text-align: left;
}
.l-recruit__entry .l-recruit__button .backBtn {
  margin-top: 30px;
  text-align: center;
}
.l-recruit__entry .l-recruit__button .backBtn a {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}
.l-recruit__entry form {
  width: calc(100% - 40px);
  margin: 0 auto 40px;
}
.l-recruit__entry input[type=checkbox] {
  display: inline-block;
  vertical-align: middle;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border: 1px solid #aaa;
  background-color: #fff;
}
.l-recruit__entry input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 4px;
  width: 4px;
  height: 10px;
  border-right: 2px solid #e61673;
  border-bottom: 2px solid #e61673;
  transform: rotate(40deg);
}
.l-recruit__entry .formWrap {
  width: 100%;
  border: solid 1px #ddd;
}
.l-recruit__entry .formWrap > div {
  display: flex;
  flex-direction: column;
}
.l-recruit__entry .formWrap > div label {
  font-size: 16px;
  line-height: 1.6;
  padding: 15px;
  background-color: #f7f8f8;
}
.l-recruit__entry .formWrap > div label span {
  font-size: 14px;
  color: #e61673;
  padding-left: 0.5em;
}
.l-recruit__entry .formWrap > div > label {
  font-size: 13px;
  font-weight: bold;
  color: #666;
  padding: 8px 15px;
}
.l-recruit__entry .formWrap > div .inpuWrap {
  position: relative;
  padding: 20px 15px;
}
.l-recruit__entry .formWrap > div .inpuWrap.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.l-recruit__entry .formWrap > div .inpuWrap p.error {
  display: none;
  position: absolute;
  left: 15px;
  bottom: 4px;
  font-size: 12px;
  line-height: 1;
  color: #e61673;
}
.l-recruit__entry .formWrap > div .inpuWrap .error ~ p.error {
  display: block;
}
.l-recruit__entry .formWrap > div .inpuWrap input[type=text] {
  width: 100%;
  padding: 0.4em 0.25em;
  box-sizing: border-box;
  border: solid 1px #ccc;
  border-radius: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  box-sizing: border-box;
}
.l-recruit__entry .formWrap > div .inpuWrap input[type=text].error {
  border-color: #e61673;
  background-color: #fff8fb;
}
.l-recruit__entry .formWrap > div .inpuWrap input[type=text]:focus {
  outline: solid 2px #e61673;
}
.l-recruit__entry .formWrap > div .inpuWrap input[type=text][name=input_birthyear] {
  width: 4.5em;
  margin-right: 0.25em;
}
.l-recruit__entry .formWrap > div .inpuWrap input[type=text][name=input_birthmonth] {
  width: 2.5em;
  margin-left: 1em;
  margin-right: 0.25em;
}
.l-recruit__entry .formWrap > div .inpuWrap input[type=text][name=input_birthday] {
  width: 2.5em;
  margin-left: 1em;
  margin-right: 0.25em;
}
.l-recruit__entry .formWrap > div .inpuWrap .select-wrap {
  position: absolute;
  width: 100%;
  right: 0;
  text-align: right;
  padding: 0.4em 0.25em;
  font-size: 16px;
  line-height: 1.5;
  pointer-events: none;
}
.l-recruit__entry .formWrap > div .inpuWrap .select-wrap::after {
  content: "▼";
  color: #888;
  font-size: 10px;
  line-height: 1;
  margin-top: 2px;
  margin-right: 18px;
}
.l-recruit__entry .formWrap > div .inpuWrap select {
  -webkit-appearance: none;
          appearance: none;
  width: 100%;
  padding: 0.4em 0.25em;
  border: solid 1px #ccc;
  border-radius: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #aaa;
  background-color: #fff;
}
.l-recruit__entry .formWrap > div .inpuWrap select option {
  color: #444;
}
.l-recruit__entry .formWrap > div .inpuWrap select option:disabled {
  color: #ccc;
}
.l-recruit__entry .formWrap > div .inpuWrap select:focus {
  outline: solid 2px #e61673;
}
.l-recruit__entry .formWrap > div .inpuWrap select.error {
  border: solid 1px #e61673;
  background-color: #fff8fb;
}
.l-recruit__entry .formWrap > div .inpuWrap select.selected {
  color: #444;
}
.l-recruit__entry .formWrap > div .inpuWrap .textarea-wrap {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 10em;
  padding: calc(0.5em + 1px);
  padding-bottom: 1em;
  border: solid 1px #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: transparent;
  white-space: pre-wrap;
}
.l-recruit__entry .formWrap > div .inpuWrap .textarea-wrap.address {
  min-height: 4em;
}
.l-recruit__entry .formWrap > div .inpuWrap textarea {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-appearance: none;
          appearance: none;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0.5em;
  border: solid 1px #cccccc;
  border-radius: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  overflow: auto;
  resize: none;
}
.l-recruit__entry .formWrap > div .inpuWrap textarea:focus {
  outline: solid 2px #e61673;
}
.l-recruit__entry .formWrap > div .inpuWrap textarea.error {
  border: solid 1px #e61673;
  background-color: #fff8fb;
}
.l-recruit__entry .formWrap > div .radioBox-inner {
  display: flex;
  flex-direction: column;
}
.l-recruit__entry .formWrap > div .radioBox-inner label {
  background-color: #fff;
  margin: 5px 20px 5px 0;
  padding: 0;
}
.l-recruit__entry .formWrap > div .radioBox-inner p {
  width: 100%;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1;
}
.l-recruit__entry .formWrap > div .radioBox-inner.error input[type=checkbox] {
  border-color: #e61673;
}
.l-recruit__entry .privacy-link {
  margin: 30px auto;
  text-align: center;
}
.l-recruit__entry .privacy-link a {
  font-size: 12px;
  text-decoration: underline;
}
.l-recruit__entry .agree {
  text-align: center;
}
.l-recruit__entry .agree label {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.l-recruit__entry .agree p.error {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  color: #e61673;
  opacity: 0;
}
.l-recruit__entry .agree .error ~ p.error {
  opacity: 1;
}
.l-recruit__entry .agree .error ~ label {
  color: #e61673;
}
.l-recruit__complete {
  width: calc(100% - 40px);
  max-width: 540px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 40px 0;
}
.l-recruit__complete h2 {
  margin-bottom: 1.5em;
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
}
.l-recruit__complete > p {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.8;
}
.l-recruit__complete ul {
  margin: 30px 0 30px;
}
.l-recruit__complete ul h3 {
  margin-bottom: 1em;
  font-size: 14px;
  line-height: 1.3;
}
.l-recruit__complete ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 13px;
  line-height: 1.6;
}
.l-recruit__complete ul li + li {
  margin-top: 0.5em;
}

#privacy {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
#privacy.is-active {
  opacity: 1;
  pointer-events: auto;
}
#privacy::-webkit-scrollbar {
  display: none;
}
#privacy .bg {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
#privacy .close {
  display: block;
  position: relative;
  z-index: 101;
  width: 40px;
  height: 40px;
  margin: 30px 5% 5px auto;
}
#privacy .close::before, #privacy .close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  background-color: #fff;
}
#privacy .close::before {
  transform: rotate(45deg);
}
#privacy .close::after {
  transform: rotate(-45deg);
}
#privacy .inner {
  position: relative;
  z-index: 101;
  width: 90%;
  max-width: 576px;
  margin: 0 auto 120px;
  padding: 30px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
#privacy h2 {
  font-size: 15px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 20px;
}
#privacy p, #privacy span {
  display: block;
  line-height: 1.6;
  font-size: 12px;
}
#privacy li {
  display: flex;
  margin-top: 5px;
}
#privacy li span {
  width: 1.8em;
}
#privacy li p {
  width: 90%;
}
#privacy ul {
  margin: 20px 0 20px 0;
}
#privacy a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12em;
  margin: 30px auto 0;
  padding: 0.8em 0;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  background-color: #444;
  border-radius: 1.3em;
}
#privacy .credit {
  text-align: right;
}

@media screen and (min-width: 640px) {
  #privacy .close {
    margin: 70px calc(50% - 288px) 10px auto;
  }
  #privacy .inner {
    margin: 0 auto 120px;
    padding: 40px;
  }
}
/* --- news --- */
.l-news__list-section {
  max-width: 540px;
  margin: 0 auto 70px;
  padding: 0 20px;
}
.l-news__list-section .l-news__pagination {
  margin-top: 50px;
}
.l-news__list-section .l-news__pagination .archive-pagination {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-news__list-section .l-news__pagination .archive-pagination__pages {
  width: 100%;
  margin: 0 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-news__list-section .l-news__pagination .archive-pagination__number {
  padding: 5px 0 5px 2px;
  font-size: min(4.5vw, 16px);
  color: #44403f;
  display: block;
  position: relative;
}
.l-news__list-section .l-news__pagination .archive-pagination__number:last-child {
  margin-right: 0;
}
.l-news__list-section .l-news__pagination .archive-pagination__number.is-active::before {
  content: "";
  height: 2px;
  width: 100%;
  background: #bc1b21;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
.l-news__list-section .l-news__pagination .archive-pagination__dots {
  margin-right: 25px;
  color: #44403f;
  line-height: 2;
}
.l-news__list-section .l-news__pagination .archive-pagination__arrow {
  width: 30px;
  height: 30px;
  background-color: #44403f;
  border-radius: 50%;
  display: block;
  position: relative;
  transition: background-color 0.2s linear;
  flex-shrink: 0;
}
.l-news__list-section .l-news__pagination .archive-pagination__arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 50%;
  left: calc(50% - 2px);
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-news__list-section .l-news__pagination .archive-pagination__arrow--left::before {
  left: calc(50% + 2px);
  transform: translate(-50%, -50%) rotate(-135deg);
}

/* --- news 下層 --- */
.l-news__single-section {
  width: calc(100% - 40px);
  max-width: 540px;
  margin: 0 auto 40px;
}
.l-news__single-section .l-news__single-card {
  min-height: calc(100vh - 450px);
  margin: 0 auto 40px;
  border-bottom: solid 1px #ddd;
}
.l-news__single-section .l-news__single-card .news__header {
  border-bottom: solid 1px #ddd;
  margin-bottom: 20px;
}
.l-news__single-section .l-news__single-card .news__header .news__date {
  font-size: min(3.3vw, 15px);
  color: #9fa0a0;
  margin: 15px 0 10px;
  display: block;
}
.l-news__single-section .l-news__single-card .news__header .news__title {
  font-size: min(4.2vw, 21px);
  line-height: 1.6;
  font-weight: normal;
  margin-bottom: 1em;
}
.l-news__single-section .l-news__single-card .single-body {
  padding-bottom: 30px;
}
.l-news__single-section .l-news__single-card .single-body p {
  font-size: min(3.3vw, 15px);
  line-height: 1.9;
}
.l-news__single-section .l-news__single-card .single-body p + p {
  margin-top: 1.5em;
}
.l-news__single-section .l-news__single-card .single-body a {
  color: #0f4c81;
  font-size: min(3.6vw, 15px);
  line-height: 1.8;
  word-break: break-all;
}
.l-news__single-section .l-news__detail-pagination .single-pagination {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: min(3.3vw, 15px);
  line-height: 1;
}
.l-news__single-section .l-news__detail-pagination .single-pagination a {
  color: #44403f;
}
.l-news__single-section .l-news__detail-pagination .single-pagination .single-pagination__link--arrow-left {
  position: absolute;
  left: 0;
  top: 0;
}
.l-news__single-section .l-news__detail-pagination .single-pagination .single-pagination__link--arrow-right {
  position: absolute;
  right: 0;
  top: 0;
}

.l-interview .page-head {
  border: none;
}
.l-interview__list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  max-width: 580px;
  margin: 0 auto;
}
.l-interview__list ul li {
  width: 50%;
  margin-bottom: 8%;
}
.l-interview__list ul li a {
  display: block;
}
.l-interview__list ul .thumbnail {
  height: 56vw;
  max-height: 325px;
}
.l-interview__list ul .thumbnail img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.l-interview__list ul .name {
  margin-top: 1.3em;
  text-align: center;
  font-size: min(3.3vw, 15px);
  line-height: 1.4;
  color: #222;
}
.l-interview__list2 h2 {
  padding: 2.2em 0 2em;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 350;
  letter-spacing: 0.2em;
  font-size: min(5vw, 24px);
  line-height: 1;
}
.l-interview__list2 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 90%;
  max-width: 580px;
  margin: 0 auto;
}
.l-interview__list2 ul li {
  width: 47.5%;
  margin-bottom: 8%;
}
.l-interview__list2 ul li a {
  display: block;
}
.l-interview__list2 ul .thumbnail {
  height: 30vw;
  max-height: 192px;
  overflow: hidden;
}
.l-interview__list2 ul .thumbnail img {
  width: 140%;
  height: 100%;
  margin-left: -20%;
  object-fit: cover;
  object-position: center top;
}
.l-interview__list2 ul .title {
  margin-top: 1em;
  font-size: min(3.4vw, 16px);
  line-height: 1.5;
  font-weight: bold;
  color: #333;
}
.l-interview__list2 ul .name {
  margin-top: 0.7em;
  font-size: min(3.3vw, 15px);
  line-height: 1.4;
  color: #333;
}
.l-interview__content {
  padding-bottom: 5%;
}
.l-interview__content h2 {
  width: 90%;
  max-width: 580px;
  margin: 1.5em auto 0;
  font-size: min(4.5vw, 22px);
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #333;
}
.l-interview__content p {
  width: 90%;
  max-width: 580px;
  margin: 0 auto 2.5em;
  font-size: min(3.8vw, 17px);
  line-height: 1.8;
  color: #333;
}
.l-interview__content p.name {
  margin-top: 0.5em;
  font-size: min(4.5vw, 22px);
  font-weight: bold;
  letter-spacing: 0.05em;
}
.l-interview__content p.name small {
  font-size: 70%;
  font-weight: normal;
}
.l-interview__content p.interviewer {
  margin-top: 2.2em;
  margin-bottom: 1.3em;
  font-weight: bold;
}
.l-interview__content p.interviewer::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 2.5em;
  margin-right: 0.7em;
  height: 1px;
  border-top: solid 1px #222;
}
.l-interview__content p + img {
  margin: 12% auto;
}

/* ----------------------------
footer
------------------------------- */
footer {
  max-width: 640px;
  margin: 0 auto;
}
footer .footer__go-top {
  position: relative;
  width: 100%;
  height: 45px;
  background: #44403f;
  display: block;
}
footer .footer__go-top::before {
  background: #5e5958;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
footer .footer__go-top .footer__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .footer__go-top .footer__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: translate(-50%, -8px) rotate(-45deg);
  width: 6px;
  height: 6px;
  transition: transform 0.5s cubic-bezier(0.51, 0.3, 0, 0.99);
}
footer .footer__go-top .footer__arrow::after {
  content: "";
  height: 14px;
  width: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.51, 0.3, 0, 0.99);
}
footer .l-container {
  padding: 20px 0;
}
footer .l-container .footer__copyright {
  color: #44403f;
  font-size: min(2.5vw, 12px);
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
}