@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Nunito:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/*
  * Reset CSS
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* list Remove default style */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizespeed;
  line-height: 1.5;
  width: 100%;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* フォームリセット */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

/* stylelint-disable */
textarea {
  resize: vertical;
}

/* stylelint-enable */
input[type=radio] {
  visibility: hidden;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/* mixin
------------------------------------------------------------*/
/* =====================
 * Baseスタイル
===================== */
:root,
:root[theme=Default] {
  --f-family-main: "Noto Sans JP", sans-serif;
  --f-family-sub: "Zen Old Mincho", serif;
  --f-family-en: "Josefin Sans", sans-serif;
  --f-family-en2: "Roboto", sans-serif;
  --f-font-size: 16px;
  --f-line-height: 1.4;
  --f-letter-spacing: 0.06em;
  --f-weight-regular: 400;
  --f-weight-medium: 500;
  --f-weight-semibold: 600;
  --f-weight-bold: 700;
  --f-weight-black: 900;
  --c-base: #121212;
  --c-white: #ffffff;
  --c-brand: #ae8148;
  --c-blue: #00265e;
  --c-yellow: #fff36d;
  --c-gray:#eeeeee;
  --c-deep_gray:#58595b;
  --c-base-rgb: 26, 26, 26;
  --c-form-deep_gray:#e7e7e7;
  --c-form-required: #d94d61;
}

html {
  /* ----------------------------
  * リキッドレイアウト rootのfont-sizeを可変にして、単位をremで指定することでレイアウトを可変にする
    // 計算式参考サイト：https://lpeg.info/html/css_calc_font.html
    // font-size: calc([最小値px] + ([最大値] - [最小値]) * ((100vw - [最小画面幅px]) / ([最大画面幅] - [最小画面幅])));
    // clampと併用して上限下限を設定すること。しないと無限に変化し続ける
  * ---------------------------- */
  font-size: 16px;
}
@media (max-width: 1140px) {
  html {
    font-size: clamp(12px, 12px + 4 * (100vw - 768px) / 372, 16px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(12px, 4.2666666667vw, 16px);
  }
}

body {
  font-family: var(--f-family-main);
  font-size: var(--f-font-size);
  font-weight: var(--f-weight-regular);
  line-height: var(--f-line-height);
  background-color: var(--c-white);
  color: var(--c-base);
  letter-spacing: var(--f-letter-spacing);
  overflow-wrap: break-word;
  word-break: break-all;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overscroll-behavior: none;
}

a {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}
a:hover, a:focus {
  opacity: 0.8;
}

button {
  transition: 0.3s;
}
button:hover, button:focus {
  opacity: 0.9;
}

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

.is-tab {
  display: none !important;
}
@media screen and (max-width: 979px) {
  .is-tab {
    display: block !important;
  }
}
.is-tab--inleine {
  display: inline-block !important;
}

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

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

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

.center {
  margin: 0 auto;
  text-align: center;
}

/* コンテナー
------------------------------------------------------------*/
.body::before {
  content: "";
  display: block;
  background-image: url(../images/body-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.l-contents {
  max-width: 450px;
  position: relative;
  margin-inline: auto;
  container: inline-size;
  background-color: var(--c-white);
  transition: all 0.25s ease;
  box-shadow: 0px 0 12px 0px rgba(var(--c-base-rgb), 0.4);
}

@media (min-width: 1280px) {
  .l-contents {
    transform: translate(50px, 0px);
  }
}
.l-container {
  padding-inline: 4.8vw;
}

@media (min-width: 500px) {
  .l-container {
    padding-inline: 24px;
  }
}
.menu-pc {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 4.6875%;
  right: auto;
  margin: auto;
  width: 390px;
  height: 650px;
  padding: 32px;
  box-shadow: 0px 8px 12px 0px rgba(var(--c-base-rgb), 0.4);
  background-color: var(--c-brand);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  display: none;
}
.menu-pc__head {
  width: 300px;
  background-color: var(--c-white);
  padding: 12px 24px;
  margin: 0 auto 24px;
}
@media (min-width: 1280px) {
  .menu-pc {
    display: flex;
  }
}
.menu-pc__nav {
  margin-bottom: 32px;
  width: 100%;
}
.menu-pc__list {
  font-size: 1rem;
}
.menu-pc__item {
  margin-bottom: 16px;
}
.menu-pc__item:last-child {
  margin-bottom: 0;
}
.menu-pc__item a {
  font-size: 1.75rem;
  color: var(--c-white);
  font-family: var(--f-family-en);
  text-align: center;
  font-weight: var(--f-weight-regular);
  display: inline-block;
  width: 100%;
  padding: 8px 0;
  line-height: 1;
  position: relative;
}
.menu-pc__item span {
  font-size: 1rem;
  font-family: var(--f-family-sub);
  display: block;
  margin-top: 4px;
}
.menu-pc__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.menu-pc__cta .cta-btn {
  display: inline-block;
  width: 90%;
  margin: 0 auto 20px;
}

#image-container {
  display: none;
}

@media (min-width: 1280px) {
  #image-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  #image-container .image-container-wrap {
    position: relative;
    width: 100%;
    height: 100%;
  }
  #image-container .image-container-wrap .image {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 25vw;
    max-width: 420px;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  #image-container .image-container-wrap .image.active {
    opacity: 1;
  }
}
/* components
------------------------------------------------------------*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.sec-ttl {
  line-height: 1;
  margin-bottom: 40px;
}
.sec-ttl .-en {
  display: block;
  font-size: 2.5rem;
  color: var(--c-brand);
  font-family: var(--f-family-en);
}
.sec-ttl .-jp {
  display: block;
  font-size: 1.5rem;
  color: var(--c-base);
  font-family: var(--f-family-sub);
}
.sec-ttl.-center {
  text-align: center;
}

.ttl-sub {
  font-size: 1.625rem;
  color: var(--c-brand);
  font-family: var(--f-family-sub);
  padding-left: 0.25em;
  padding-bottom: 4px;
  border-bottom: solid 1px var(--c-brand);
  margin-bottom: 18px;
}

.cta-btn {
  font-size: 1.25rem;
  font-family: var(--f-family-sub);
  font-weight: var(--f-weight-semibold);
  text-align: center;
  display: block;
  padding: 18px 24px;
  transition: 0.4s;
}
.cta-btn:hover {
  opacity: 1;
}
.cta-btn.-recruiting {
  background-color: var(--c-yellow);
  box-shadow: 0 5px 0 #ccc258;
}
.cta-btn.-recruiting:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--c-yellow);
}
.cta-btn.-casual {
  color: var(--c-white);
  background-color: #004c9b;
  box-shadow: 0 5px 0 var(--c-blue);
}
.cta-btn.-casual:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 #004c9b;
}
.cta-btn.-form {
  color: var(--c-white);
  background-color: #fd5b25;
  box-shadow: 0 5px 0 #dc350c;
}
.cta-btn.-form:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 #fd5b25;
}

.l-contents .cta-btn {
  width: 90%;
  margin: 0 auto;
}

.cta {
  background-image: url(../images/cta-bg.jpg);
  background-size: cover;
  position: relative;
}
.cta::after {
  content: "";
  display: inline-block;
  background-image: url(../images/cta-person.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 240px;
  height: 400px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cta__inner {
  padding: 40px 2.4% 40px;
  position: relative;
  z-index: 1;
}
.cta__txt {
  color: var(--c-brand);
  font-family: var(--f-family-sub);
  font-weight: var(--f-weight-semibold);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.65;
  margin-bottom: 180px;
}
.cta__txt .-lg {
  font-size: 1.875rem;
  margin-bottom: 32px;
}
.cta__txt span {
  background-color: var(--c-base);
  padding: 0 0.2em;
  color: #eee044;
}
.cta__txt .-sm {
  font-size: 1.375rem;
}
.cta__list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.cta__item {
  width: 35%;
}

/* header
------------------------------------------------------------*/
.header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 16px 16px 16px 8px;
  height: 64px;
  background-color: var(--c-white);
}
.header__logo {
  display: inline-block;
  width: 48%;
  margin-right: 10px;
}
.header .sp-block {
  display: none;
}
@media (max-width: 1279px) {
  .header .sp-block {
    display: block;
  }
}

.btn-trigger {
  position: relative;
  width: 38px;
  height: 28px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--c-base);
  border-radius: 2px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 13px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#btn-close.active span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}
#btn-close.active span:nth-of-type(2) {
  opacity: 0;
}
#btn-close.active span:nth-of-type(3) {
  transform: translateY(-13px) rotate(45deg);
}

/* footer
------------------------------------------------------------*/
.footer {
  background-color: var(--c-brand);
  padding: 24px;
}
.footer__logo {
  width: 180px;
  margin: 0 auto 12px;
  background-color: var(--c-white);
  padding: 4px 12px;
}
.footer__nav {
  margin-bottom: 20px;
}
.footer__nav ul {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer__nav li {
  position: relative;
}
.footer__nav li.-no-border a::after {
  content: none;
}
.footer__nav a {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: var(--f-weight-regular);
  color: var(--c-white);
  padding-right: 1em;
}
.footer__nav a::after {
  content: "";
  width: 1px;
  height: 1em;
  background-color: var(--c-white);
  position: absolute;
  right: 0;
}
.footer__copy {
  font-size: 0.625rem;
  font-weight: var(--f-weight-regular);
  color: var(--c-white);
  text-align: center;
}

/* modal
------------------------------------------------------------*/
.menu-sp__list {
  font-size: 1rem;
  margin-bottom: 32px;
}
.menu-sp__item {
  margin-bottom: 14px;
}
.menu-sp__item:last-child {
  margin-bottom: 0;
}
.menu-sp__item a {
  font-size: 1.75rem;
  color: var(--c-white);
  font-family: var(--f-family-en);
  text-align: center;
  font-weight: var(--f-weight-regular);
  display: inline-block;
  width: 100%;
  padding: 8px 0;
  line-height: 1;
  position: relative;
}
.menu-sp__item span {
  font-size: 0.65em;
  font-family: var(--f-family-sub);
  display: block;
  margin-top: 4px;
}
.menu-sp__cta .cta-btn {
  margin-bottom: 20px;
}

.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
}
.modal__container {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 450px;
  height: calc(100% - 40px);
  margin: 0 auto;
  background-color: var(--c-brand);
}
.modal__inner {
  position: relative;
  height: 100%;
  padding: 24px 6.4% 20px;
}

/* form
------------------------------------------------------------*/
.form {
  padding: 80px 3.2%;
}
.form__ttl {
  font-size: 1.125rem;
  color: var(--c-brand);
  line-height: 1.4;
  font-weight: var(--f-weight-semibold);
  text-align: center;
}
.form__wrap {
  padding: 40px 3.2%;
  background-color: var(--c-white);
}

.c-form__group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.c-form__group:last-child {
  margin-bottom: 0;
}
.c-form__group.-submit {
  justify-content: center;
  margin-top: 48px;
}
.c-form__areaselect {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.c-form__areaselect li {
  margin-bottom: 16px;
  width: 33%;
}
.c-form__areaselect li:nth-last-of-type(-n + 2) {
  margin-bottom: 0;
}
.c-form__button {
  font-size: 1.125rem;
  text-align: center;
  font-weight: var(--f-weight-semibold);
  width: 100%;
  height: 64px;
  background-color: #004c9b;
  box-shadow: 0 5px 0 var(--c-blue);
  transition: 0.4s;
}
.c-form__button:hover {
  opacity: 1;
  transform: translateY(4px);
  box-shadow: 0 5px 0 #004c9b;
}
.c-form__button button {
  color: var(--c-white);
  width: 100%;
  height: 100%;
}

.c-form__group__box {
  width: 100%;
  margin-bottom: 28px;
}
.c-form__group__box:last-child {
  margin-bottom: 0;
}
.c-form__group__box__title {
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.c-form__group__box__title.-required::before {
  content: "必須";
  display: inline-block;
  font-size: 0.8em;
  line-height: 1;
  vertical-align: middle;
  color: var(--c-white);
  padding: 0.25em 0.4em;
  background-color: var(--c-form-required);
  border-radius: 2px;
  margin-right: 0.8em;
  margin-bottom: 2px;
}
.c-form__group__box__title .-sm {
  font-size: 0.8em;
}
.c-form__group__box__radio {
  cursor: pointer;
  margin-left: 1em;
  padding-left: 1.5em;
  position: relative;
}
.c-form__group__box__radio:first-of-type {
  margin-left: 0;
}
.c-form__group__box__radio::before, .c-form__group__box__radio::after {
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-form__group__box__radio::before {
  background-color: var(--c-form-deep_gray);
  width: 20px;
  height: 20px;
  left: 0;
}
.c-form__group__box__radio::after {
  background-color: var(--c-brand);
  width: 12px;
  height: 12px;
  left: 4px;
  opacity: 0;
}
.c-form__group__box__error {
  font-size: 0.875rem;
  color: var(--c-form-required);
  padding-top: 0.4em;
}
.c-form__group__box input[type=radio] {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.c-form__group__box input[type=radio]:checked + .c-form__group__box__radio::after {
  opacity: 1;
}
.c-form__group__box input[type=text],
.c-form__group__box input[type=tel],
.c-form__group__box input[type=email],
.c-form__group__box input[type=number] {
  font-size: 1rem;
  width: 100%;
  height: 55px;
  background-color: var(--c-form-deep_gray);
  border-radius: 5px;
  padding: 1em;
}
.c-form__group__box input[type=text]::placeholder,
.c-form__group__box input[type=tel]::placeholder,
.c-form__group__box input[type=email]::placeholder,
.c-form__group__box input[type=number]::placeholder {
  color: #9b9c9b;
}
.c-form__group__box input[type=checkbox] {
  width: 1.5em;
  height: 1.5em;
  background-color: var(--c-form-deep_gray);
  transform: translateY(0.6em);
}
.c-form__group__box input[type=checkbox]:checked::before {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(50deg);
  width: 10px;
  height: 20px;
  border-right: 4px solid var(--c-brand);
  border-bottom: 4px solid var(--c-brand);
  content: "";
}

.label__select__box {
  display: flex;
  gap: 12px;
}
.label__select {
  width: 30%;
}

label.label__select {
  position: relative;
  width: 100%;
}
label.label__select::after {
  position: absolute;
  display: block;
  content: "";
  border-bottom: solid 2px #ccc;
  border-right: solid 2px #ccc;
  top: calc(50% - 6px);
  right: 10px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
}
label.label__select .textarea {
  width: 100%;
  padding: 1em;
  font-size: 1rem;
  color: var(--c-base);
  border-radius: 3px;
  background: var(--c-form-deep_gray);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
label a {
  color: #3273dc;
  text-decoration: underline;
}

/* thanks
------------------------------------------------------------*/
.thanks {
  padding: 80px 3.2%;
}
.thanks__ttl {
  font-size: 1.125rem;
  color: var(--c-brand);
  line-height: 1.4;
  font-weight: var(--f-weight-semibold);
  text-align: center;
}
.thanks__txt {
  font-size: 1rem;
  color: var(--c-base);
  margin-bottom: 1em;
}
.thanks__txt:last-child {
  margin-bottom: 0;
}
.thanks__txt span {
  font-weight: var(--f-weight-semibold);
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 228, 0, 0.5);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}

/* TOP
------------------------------------------------------------*/
.mv {
  width: 100%;
}
.mv__content {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.mv__info {
  position: absolute;
  top: 0;
  z-index: 100;
  padding: 80px 3.2%;
}
.mv__ttl {
  margin-bottom: 40px;
}
.mv__ttl .-en {
  font-size: 2.5rem;
  color: var(--c-brand);
  font-family: var(--f-family-en);
  line-height: 1;
  background-color: var(--c-white);
  padding: 8px 2px 0;
}
.mv__ttl .-jp {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--c-base);
  font-family: var(--f-family-sub);
  line-height: 1;
  background-color: var(--c-white);
  margin-top: 8px;
  padding: 4px 2px;
}
.mv__ttl .-ttl {
  display: block;
  width: 56%;
  background-color: var(--c-white);
  padding: 4px 4px;
}
.mv__list {
  display: flex;
  gap: 12px;
}
.mv__item {
  width: 32%;
}
.mv__catch {
  position: absolute;
  bottom: 0;
  z-index: 100;
  background-color: var(--c-white);
  width: 75%;
  padding: 20px 3.2%;
}
.mv__about {
  padding: 30px 3.2% 60px;
}
.mv__txt {
  font-size: 1rem;
  margin-bottom: 1em;
}
.mv__txt:last-child {
  margin-bottom: 0;
}
.message {
  padding: 60px 3.2% 0;
  overflow: hidden;
}
.message__txt {
  font-size: 1rem;
  font-weight: var(--f-weight-regular);
  text-align: center;
  margin-bottom: 1.4em;
}
.message__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.message__info::after {
  content: "";
  display: block;
  background-color: var(--c-brand);
  width: 114.7%;
  height: 40px;
  position: absolute;
  bottom: 0;
  left: -11.3%;
  z-index: -1;
}
.message__person {
  width: 160px;
}
.message__name img {
  display: block;
  margin-left: auto;
  margin-bottom: 8px;
  width: 50%;
}
.message__name p {
  text-align: right;
}

.company {
  overflow: hidden;
  padding: 60px 3.2%;
  background-color: var(--c-gray);
}
.company__inner {
  padding: 40px 3.2%;
  background-color: var(--c-white);
}
.company__mov {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.company__mov::after {
  content: "";
  display: block;
  background-color: var(--c-brand);
  width: 107.35%;
  height: 50px;
  position: absolute;
  bottom: -20px;
  left: -3.65%;
  z-index: -1;
}
.company__mov a:hover {
  opacity: 1;
}
.company__mov a:focus {
  opacity: 1;
}
.company__description {
  font-size: 0.875rem;
  margin-bottom: 24px;
}
.company__link {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--c-white);
  font-family: var(--f-family-sub);
  background-color: var(--c-blue);
  padding: 14px 24px;
}
.company__decoration {
  margin: 80px 0;
}
.company__logo {
  width: 80%;
  margin-top: -60px;
  margin-bottom: 24px;
}
.company__catch {
  font-size: 2.25rem;
  font-family: var(--f-family-sub);
  color: var(--c-brand);
  line-height: 1.2;
  margin-bottom: 16px;
}
.company__catch span {
  padding-left: 0.2em;
}
.company__txt {
  font-size: 1rem;
  color: var(--c-brand);
  margin-bottom: 1.2em;
}
.company__txt:last-child {
  margin-bottom: 0;
}

.feature {
  overflow: hidden;
  padding: 60px 3.2%;
}
.feature__decoration {
  width: 100%;
  margin-bottom: 40px;
}
.feature__card {
  position: relative;
}
.feature__card::before {
  content: "";
  display: inline-block;
  background-color: var(--c-blue);
  position: absolute;
  top: 0;
  left: -3.4%;
  width: 30%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.feature__warp {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}
.feature__item {
  margin-bottom: 60px;
  background-color: var(--c-white);
  box-shadow: 0px 0px 12px -6px var(--c-base);
  position: relative;
}
.feature__item:last-child {
  margin-bottom: 0;
}
.feature__img {
  position: relative;
}
.feature__img::before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 20px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: var(--c-white);
}
.feature__img.-reverse::before {
  right: 0;
  left: auto;
}
.feature__info {
  padding: 0 3.2% 24px;
}
.feature__ttl-sub {
  font-size: 1.5rem;
  color: var(--c-brand);
  font-family: var(--f-family-sub);
  font-weight: var(--f-weight-semibold);
  line-height: 1.25;
  padding: 16px 0 8px;
  border-bottom: solid 1px var(--c-brand);
  margin-bottom: 16px;
}
.feature__txt {
  font-size: 0.875rem;
  margin-bottom: 0.8em;
}
.feature__txt:last-child {
  margin-bottom: 0;
}

.work {
  padding: 60px 6.4%;
}
.work__txt {
  font-size: 0.875rem;
  margin-bottom: 1em;
}
.work__txt:last-of-type {
  margin-bottom: 40px;
}
.work__item {
  margin-bottom: 60px;
}
.work__slide {
  margin-bottom: 16px;
}
.work__desc {
  font-size: 0.875rem;
}
.work__numbers {
  text-align: center;
}
.work__number {
  background-color: var(--c-brand);
  padding: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.work__number::before {
  content: "";
  width: 100%;
  height: 60%;
  background-color: #a5773e;
  transform: skewY(-20deg);
  transform-origin: bottom right;
  z-index: -1;
  position: absolute;
  bottom: 0;
}
.work__number dt {
  display: inline-block;
  font-size: 1.125rem;
  color: var(--c-brand);
  font-weight: var(--f-weight-semibold);
  background-color: var(--c-white);
  padding: 0.2em 0;
  width: 60%;
  margin-bottom: 8px;
}
.work__number dd {
  display: block;
  font-size: 1.25rem;
  color: var(--c-white);
  font-weight: var(--f-weight-bold);
  line-height: 1;
}
.work__number dd .-en {
  font-size: 5rem;
  font-family: var(--f-family-en2);
  font-style: italic;
}
.work__point {
  position: relative;
}
.work__point ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4%;
  position: relative;
}
.work__point li {
  font-size: 1rem;
  color: var(--c-blue);
  font-weight: var(--f-weight-medium);
  text-align: center;
  width: 46%;
  background-color: var(--c-gray);
  padding: 0.4em 0;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.work__point li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 100%;
  background-color: var(--c-brand);
  position: absolute;
  top: 0;
  left: 0;
}
.work__point li::after {
  content: "";
  width: 100%;
  height: 50%;
  background-color: #e7e7e7;
  transform-origin: bottom right;
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
}

.culture {
  background-image: url(../images/culture-bg.jpg);
  background-size: cover;
}
.culture__inner {
  padding: 60px 6.4%;
}
.culture__ttl-sub.-culture {
  color: var(--c-white);
  border-bottom: solid 1px var(--c-white);
}
.culture__img {
  margin-bottom: 24px;
}
.culture__list {
  margin-bottom: 24px;
}
.culture__item {
  display: inline-block;
  font-size: 1.25rem;
  color: var(--c-brand);
  font-family: var(--f-family-sub);
  background-color: var(--c-white);
  padding: 0.2em 0.4em;
  margin-bottom: 8px;
}
.culture__item:last-child {
  margin-bottom: 0;
}
.culture__txt {
  font-size: 0.875rem;
  color: var(--c-white);
  margin-bottom: 1em;
}
.culture__txt:last-child {
  margin-bottom: 0;
}
.culture .cta-btn {
  margin-top: 40px;
}

.information__inner {
  padding: 60px 6.4%;
}
.information__txt {
  margin-bottom: 1em;
}
.information__txt:last-of-type {
  margin-bottom: 40px;
}
.information__item {
  background-color: var(--c-gray);
  padding: 24px 12px;
  border: solid 1px var(--c-brand);
  margin-bottom: 12px;
}
.information__item:last-child {
  margin-bottom: 0;
}
.information__item dt {
  font-size: 1.25rem;
  color: var(--c-brand);
  font-family: var(--f-family-sub);
  font-weight: var(--f-weight-semibold);
  margin-bottom: 4px;
}
.information__decoration {
  position: relative;
}
.information__decoration img {
  display: block;
  width: 114.7%;
  position: absolute;
  bottom: 0;
  left: -11.3%;
}
.information .cta-btn-block {
  margin-top: 40px;
  margin-bottom: 40px;
}
.information .cta-btn-block p {
  text-align: center;
  font-weight: var(--f-weight-semibold);
  margin-bottom: 4px;
}
.casual {
  padding: 60px 6.4%;
  background-color: var(--c-gray);
}
.casual__img {
  margin-bottom: 24px;
}
.casual__txt {
  font-size: 0.875rem;
  margin-bottom: 1em;
}
.casual__txt:last-of-type {
  margin-bottom: 60px;
}
.casual .cta-btn-block {
  margin-top: 40px;
}
.casual .cta-btn-block p {
  text-align: center;
  font-weight: var(--f-weight-semibold);
  margin-bottom: 4px;
}

.lastly {
  padding: 80px 6.4% 60px;
}
.lastly__ttl {
  font-size: 1.5rem;
  color: var(--c-white);
  font-family: var(--f-family-sub);
  text-align: center;
  padding: 0.2em 0;
  background-color: var(--c-brand);
  margin-bottom: 24px;
}
.lastly__img {
  margin-bottom: 24px;
}
.lastly__txt {
  font-size: 0.875rem;
  margin-bottom: 1em;
}
.lastly__txt:last-child {
  margin-bottom: 0;
}

/* ここからLP
------------------------------------------------------------*/
.slick-dots li.slick-active button::before {
  color: var(--c-brand) !important;
  opacity: 1;
}

iframe {
  border: none;
}/*# sourceMappingURL=style.css.map */