@charset "UTF-8";
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
line-heightが％の場合
---------------------------*/
/*--------------------------------
    remの換算
--------------------------------*/
/*--------------------------------
    vwにする
--------------------------------*/
/*--------------------------
*  フォント読み込み
---------------------------*/
body {
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #1a2027;
  background-color: #ffffff;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

/*--------------------------------
* リキッドの設定（PCファースト）
--------------------------------*/
html {
  font-size: 16px;
}
@media (max-width: 1920px) and (min-width: 768px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all ease 0.3s;
}

a:hover {
  opacity: 0.7;
}

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

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

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

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

/* ====================
*  inner
==================== */
.l-inner {
  max-width: 84.375rem;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    max-width: 600px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* ==================================================
*  header
================================================== */
header.header {
  height: 7.5rem;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  transition: background-color 0.3s ease;
}
header.header.is-scrolled {
  background-color: rgba(26, 32, 39, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.header__inner {
  max-width: 112.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5625rem;
  height: inherit;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.header__logo {
  max-width: 8rem;
  width: 100%;
  height: inherit;
}

.header__logo a {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__nav {
  height: inherit;
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.header__nav-item::after {
  content: "/";
  color: #fff;
}

.header__nav-item:nth-child(n+5)::after {
  display: none;
}

.header__nav-item a {
  margin: 0 0.9375rem;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.3s;
  padding: 0.9375rem 0 0.75rem;
  border-bottom: 0.1875rem solid transparent;
}

.header__nav-item a:hover {
  opacity: 1;
  border-bottom: 0.1875rem solid #fff;
}

header.header.is-scrolled .header__nav-item a:hover {
  border-bottom: 0.1875rem solid #e60012;
}

.header__nav-item.header__nav-item--contact a {
  padding: 0.90625rem 1.0625rem;
  font-size: 1rem;
  position: relative;
  height: initial;
  color: #101a22;
  background-color: #fff;
  border-radius: 1.40625rem;
  border-bottom: none;
  transition: all 0.3s;
}

header.header.is-scrolled .header__nav-item.header__nav-item--contact a {
  background-color: #e60012;
  color: #fff;
}

.header__nav-item.header__nav-item--contact a:hover {
  border-bottom: none;
  background-color: #101a22;
  color: #fff;
}

header.header.is-scrolled .header__nav-item.header__nav-item--contact a:hover {
  color: #e60012;
  background-color: #fff;
  border-bottom: none;
}

.header__hamburger {
  display: none;
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 0.0625rem;
  background-color: #fff;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 7.5rem 0 3.75rem;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(26, 32, 39, 0.63);
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  header.header {
    height: 3.75rem;
  }
  .header__inner {
    max-width: initial;
    padding: 0 0.9375rem;
    align-items: center;
  }
  .header__logo {
    max-width: 4rem;
  }
  .header__nav {
    display: none;
  }
  .header__hamburger {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    position: relative;
    z-index: 999;
    width: 2.5rem;
    height: inherit;
    background-color: initial;
    cursor: pointer;
    transition: 0.3s;
  }
}
/* ==================================================
*  sec-title
================================================== */
.sec-title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.1;
  font-family: "Montserrat", sans-serif;
}

.sec-sub-title {
  margin-top: 2.5rem;
  font-size: 1.875rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .sec-title {
    font-size: 2.5rem;
  }
  .sec-sub-title {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}
/* ==================================================
*  footer
================================================== */
.footer {
  background-color: #1a2027;
  color: #fff;
  padding: 3.25rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__wrap {
  display: flex;
  align-items: center;
  gap: 6.875rem;
}

.footer__logo {
  max-width: 8rem;
  width: 100%;
}

.footer__nav-list {
  display: flex;
}

.footer__nav-list li a {
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 600;
  margin: 0 0.5rem;
  padding: 0.9375rem 0 0.75rem;
  border-bottom: 0.1875rem solid transparent;
}

.footer__nav-list li a:hover {
  opacity: 1;
  border-bottom: 0.1875rem solid #fff;
}

.footer__nav-list li::after {
  content: "｜";
}

.footer__nav-list li:last-child::after {
  display: none;
}

.footer__copy p small {
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 1.625rem 0;
  }
  .footer__inner {
    flex-direction: column;
    gap: 3.125rem;
  }
  .footer__wrap {
    gap: 3.125rem;
    align-items: flex-start;
  }
  .footer__logo {
    max-width: 6.125rem;
    margin-top: 0.5rem;
  }
  .footer__nav-list {
    flex-direction: column;
  }
  .footer__nav-list li a {
    font-size: 1rem;
    padding: 0.5rem;
    display: inline-block;
  }
  .footer__nav-list li::after {
    display: none;
  }
  .footer__copy p small {
    font-size: 1rem;
  }
}
/* ==================================================
*  fv
================================================== */
.fv {
  position: relative;
}

.fv__wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.fv__main-title {
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.fv__sub-title {
  font-size: 1.875rem;
  font-weight: 600;
  margin-top: 2.8125rem;
}

.fv__text {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.fv__menu {
  background-color: #172a3a;
  color: #fff;
  padding: 2.375rem 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.fv__menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.25rem;
}

.fv__menu-list li a {
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 400;
  padding-right: 1.875rem;
  position: relative;
}

.fv__menu-list li a::after {
  content: "";
  background-image: url(../img/icon-arrow_wh02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 1.375rem;
  height: 1.375rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .fv__wrap {
    width: 100%;
  }
  .fv__main-title {
    font-size: 2.5rem;
  }
  .fv__sub-title {
    font-size: 0.9375rem;
    margin-top: 1.40625rem;
  }
  .fv__text {
    margin-top: 1.25rem;
    font-size: 0.625rem;
  }
  .fv__menu {
    padding: 0.5rem 0;
  }
  .fv__menu-list {
    gap: 1.125rem;
  }
  .fv__menu-list li a {
    font-size: 0.75rem;
    padding-right: 0.9375rem;
  }
  .fv__menu-list li a::after {
    width: 0.6875rem;
    height: 0.6875rem;
  }
}
/* ==================================================
*  contact
================================================== */
.contact {
  background-color: #f4f8fd;
  padding: 6.5rem 0;
}

.contact__inner {
  display: flex;
  justify-content: space-between;
}

.contact__wrap:nth-child(1) {
  max-width: 40.625rem;
  width: 100%;
}

.contact__sub-title {
  margin-top: 5.625rem;
  font-weight: 600;
}

.contact__text {
  margin-top: 2.8125rem;
}

.contact__text p {
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 400;
}

.contact__btn {
  margin-top: 6.25rem;
  max-width: 30rem;
  width: 100%;
}

.contact__btn a {
  display: inline-block;
  width: 100%;
  background-color: #172a3a;
  border: 2px solid #172a3a;
  border-radius: 3.125rem;
  color: #fff;
  font-size: 1.625rem;
  line-height: 1.3076923077;
  font-weight: 600;
  text-align: center;
  padding: 1.0625rem 0;
  position: relative;
  transition: all 0.3s;
}

.contact__btn a::before {
  content: "";
  border: solid #fff;
  border-width: 0 0.1875rem 0.1875rem 0;
  display: inline-block;
  padding: 0.3125rem;
  position: absolute;
  top: 50%;
  right: 2.1875rem;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s;
}

.contact__btn.btn-form {
  margin-top: 2.3125rem;
}

.contact__btn.btn-form a {
  background-color: #e60012;
  border: 2px solid #e60012;
  padding-left: 2.1875rem;
}

.contact__btn.btn-form a::after {
  content: "";
  background-image: url(../img/icon-mail.png);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 2.75rem;
  height: 2.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2.625rem;
  transition: all 0.3s;
}

.contact__btn a:hover {
  opacity: 1;
  background-color: #fff;
  color: #172a3a;
}

.contact__btn a:hover::before {
  border: solid #172a3a;
  border-width: 0 0.1875rem 0.1875rem 0;
}

.contact__btn.btn-form a:hover {
  color: #e60012;
}

.contact__btn.btn-form a:hover::before {
  border: solid #e60012;
  border-width: 0 0.1875rem 0.1875rem 0;
}

.contact__btn.btn-form a:hover::after {
  background-image: url(../img/icon-mail_rd.png);
}

.contact__tel {
  background-color: #fff;
  border-radius: 0.3125rem;
  padding: 2.25rem 3.5625rem 2.25rem 4.375rem;
}

.contact__tel-lead,
.contact__mail-lead {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
  text-align: center;
}

.contact__tel-area {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1.3125rem;
}

.contact__tel-icon {
  max-width: 6rem;
  width: 100%;
}

.contact__tel-number {
  display: inline-block;
  font-size: 3.125rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.contact__tel-time {
  display: block;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 400;
  text-align: right;
  margin-top: 0.3125rem;
}

.contact__mail {
  background-color: #fff;
  border-radius: 0.3125rem;
  padding: 2.25rem 3rem;
  margin-top: 1.875rem;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 3.25rem 0;
  }
  .contact__inner {
    flex-direction: column;
    gap: 1.875rem;
  }
  .contact__wrap:nth-child(1) {
    max-width: initial;
    text-align: center;
  }
  .contact__sub-title {
    margin-top: 1.25rem;
  }
  .contact__text {
    margin-top: 1.5625rem;
  }
  .contact__text p {
    font-size: 0.75rem;
  }
  .contact__btn {
    margin-top: 3.125rem;
    max-width: 18.75rem;
    margin-left: auto;
    margin-right: auto;
  }
  .contact__btn a {
    border: 1px solid #172a3a;
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }
  .contact__btn a::before {
    border-width: 0 0.09375rem 0.09375rem 0;
    padding: 0.15625rem;
    right: 1.125rem;
  }
  .contact__btn.btn-form {
    margin-top: 1.125rem;
  }
  .contact__btn.btn-form a {
    border: 1px solid #e60012;
    padding-left: 1.125rem;
  }
  .contact__btn.btn-form a::after {
    width: 1.375rem;
    height: 1.125rem;
    left: 1.3125rem;
  }
  .contact__btn a:hover::before {
    border-width: 0 0.09375rem 0.09375rem 0;
  }
  .contact__btn.btn-form a:hover::before {
    border-width: 0 0.09375rem 0.09375rem 0;
  }
  .contact__tel {
    padding: 1.875rem 1.25rem;
  }
  .contact__tel-lead,
.contact__mail-lead {
    font-size: 1.125rem;
  }
  .contact__tel-area {
    margin-top: 0.5rem;
    gap: 0.625rem;
    justify-content: center;
  }
  .contact__tel-icon {
    max-width: 3rem;
  }
  .contact__tel-number {
    font-size: 1.875rem;
  }
  .contact__tel-time {
    font-size: 0.75rem;
    margin-top: 0.15625rem;
  }
  .contact__mail {
    padding: 1.875rem 1.25rem;
    margin-top: 0.9375rem;
  }
}
/* ==================================================
*  bg
================================================== */
.top-bg {
  background: linear-gradient(#e2e9f1, #ffffff);
}

.top-recruit-bg {
  background: linear-gradient(45deg, #e2e9f1, #ffffff);
}

/* ==================================================
*  fv
================================================== */
.fv__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ==================================================
*  about
================================================== */
.about {
  padding-top: 10rem;
  overflow: hidden;
}

.about__inner {
  max-width: 120rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.about__content {
  position: relative;
  z-index: 1;
}

.about__text-block {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 45px 45px 0 rgba(23, 42, 58, 0.43);
  position: absolute;
  left: 0;
  top: 20.625rem;
  padding: 8.4375rem 7.1875rem;
  width: 50%;
}

.about__img-main {
  width: 84%;
  margin-left: auto;
}

.about__title {
  position: relative;
}

.about__title::after {
  content: "";
  background-color: #172a3a;
  width: 28.125rem;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -13.75rem;
}

.about__sub-title {
  margin-top: 6.5625rem;
}

.about__text {
  margin-top: 2rem;
  font-size: 1.25rem;
  line-height: 1.7777777778;
  font-weight: 400;
  max-width: 32.5rem;
  width: 100%;
}

.about__link {
  margin-top: 5.625rem;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 400;
  position: relative;
  transition: all 0.3s;
}

.about__link::after {
  content: "";
  display: block;
  background-image: url(../img/icon-arrow_bk01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 13.875rem;
  height: 0.6875rem;
  position: absolute;
  left: 0;
  bottom: -0.6875rem;
  transition: all 0.3s;
}

.about__link:hover {
  opacity: 1;
  color: #e60012;
}

.about__link:hover::after {
  background-image: url(../img/icon-arrow_rd.png);
}

.about__img-group {
  margin-top: 7.1875rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 0;
}

.about__img-sub01 {
  max-width: 40rem;
  width: 100%;
  margin-top: 27.5rem;
  margin-right: -4.375rem;
  position: relative;
}

.about__img-sub02 {
  max-width: 69.0625rem;
  width: 100%;
}

.about__bottom-text {
  margin-top: -5rem;
  width: 242.1875rem;
  margin-left: -22.1875rem;
}

.about__bottom-text p {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 15.625rem;
  line-height: 1;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .about {
    padding-top: 5rem;
  }
  .about__inner {
    max-width: 37.5rem;
  }
  .about__img-main {
    width: 90%;
    margin-left: auto;
  }
  .about__text-block {
    box-shadow: 20px 20px 0 rgba(23, 42, 58, 0.43);
    position: relative;
    top: 0;
    margin-top: -5rem;
    width: 75%;
    padding: 1.875rem 1.25rem;
  }
  .about__title::after {
    width: 7.1875rem;
    height: 1px;
    right: -3.125rem;
  }
  .about__sub-title {
    margin-top: 1.25rem;
  }
  .about__text {
    margin-top: 1rem;
    font-size: 0.75rem;
    max-width: initial;
  }
  .about__link {
    margin-top: 2.8125rem;
    font-size: 0.75rem;
  }
  .about__link::after {
    width: 6.9375rem;
    height: 0.34375rem;
    bottom: -0.34375rem;
  }
  .about__img-group {
    margin-top: 0;
    flex-direction: column-reverse;
    padding: 0 0.9375rem;
  }
  .about__img-sub01 {
    max-width: initial;
    width: 40%;
    margin-top: -1.5625rem;
    margin-right: 0;
  }
  .about__img-sub02 {
    max-width: initial;
    width: 75%;
    margin-left: auto;
    margin-top: -1.5625rem;
  }
  .about__bottom-text {
    margin-top: -1.125rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: -5.9375rem;
  }
  .about__bottom-text p {
    font-size: 3.3125rem;
  }
}
/* ==================================================
*  works
================================================== */
.works {
  padding-top: 12.5rem;
}

.works__title,
.works__sub-title {
  text-align: center;
}

.works__main {
  margin-top: 3.125rem;
  display: flex;
}

.works__main-img {
  max-width: 100.625rem;
  width: 100%;
}

.works__main-textarea {
  max-width: 43.125rem;
  width: 100%;
  background-color: #1a2027;
  color: #fff;
  padding: 14.375rem 5rem 0 5rem;
}

.works__main-title {
  font-size: 2.25rem;
  line-height: 1.3055555556;
  font-weight: 600;
  position: relative;
}

.works__main-title::before {
  content: "";
  background-image: url(../img/icon-model.png);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 9.625rem;
  height: 8.25rem;
  position: absolute;
  top: -3.25rem;
  left: -3.25rem;
}

.works__main-en {
  margin-top: 8.25rem;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.works__main-text {
  margin-top: 2.1875rem;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.works__link {
  margin-top: 11.25rem;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 400;
  position: relative;
  transition: all 0.3s;
}

.works__link::after {
  content: "";
  display: block;
  background-image: url(../img/icon-arrow_wh.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 13.875rem;
  height: 0.6875rem;
  position: absolute;
  left: 0;
  bottom: -0.6875rem;
  transition: all 0.3s;
}

.works__link:hover {
  opacity: 1;
  color: #e60012;
}

.works__link:hover::after {
  background-image: url(../img/icon-arrow_rd.png);
}

.works__list {
  margin-top: 8rem;
}

.works__item {
  position: relative;
}

.works__item:nth-child(n+2) {
  margin-top: 7.1875rem;
}

.works__item-textarea {
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 60rem;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 9.375rem 16.375rem 9.375rem 6.875rem;
}

.works__item:nth-child(even) .works__item-textarea {
  left: initial;
  right: 0;
  padding: 9.375rem 9.0625rem 9.375rem 15.9375rem;
}

.works__item-title-wrap {
  display: flex;
  align-items: center;
  gap: 1.3125rem;
}

.works__item-num {
  display: inline-block;
  text-align: center;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.works__item-num span.en {
  font-size: 1.125rem;
  text-transform: uppercase;
}

.works__item-title {
  font-size: 1.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.works__item-title::before {
  content: "";
  background: #1a2027;
  width: 1px;
  height: 4.25rem;
  display: inline-block;
}

.works__item-text {
  margin-top: 7rem;
}

.works__item-text p {
  font-size: 1.25rem;
  line-height: 1.7777777778;
  font-weight: 400;
}

.works__item-img {
  max-width: 67.5rem;
  width: 100%;
}

.works__item:nth-child(odd) .works__item-img {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .works {
    padding-top: 6.25rem;
  }
  .works__main {
    margin-top: 1.5625rem;
    flex-direction: column;
  }
  .works__main-img {
    max-width: initial;
    width: 100%;
  }
  .works__main-textarea {
    max-width: initial;
    width: 100%;
    padding: 3.125rem 1.25rem;
    margin-left: auto;
    margin-top: 0;
  }
  .works__main-title {
    font-size: 1.125rem;
  }
  .works__main-title::before {
    width: 4.4375rem;
    height: 3.75rem;
    top: -1.3125rem;
    left: -0.9375rem;
  }
  .works__main-en {
    margin-top: 2.0625rem;
    font-size: 1rem;
  }
  .works__main-text {
    margin-top: 1.125rem;
    font-size: 0.75rem;
  }
  .works__link {
    margin-top: 3.125rem;
    font-size: 0.75rem;
  }
  .works__link::after {
    width: 6.9375rem;
    height: 0.34375rem;
    bottom: -0.34375rem;
  }
  .works__list {
    margin-top: 4.3125rem;
  }
  .works__item:nth-child(n+2) {
    margin-top: 3.125rem;
  }
  .works__item-textarea {
    max-width: initial;
    width: 90%;
    padding: 1.875rem 1.875rem 1.875rem 1.25rem;
    position: relative;
    margin-top: -3.125rem;
    transform: initial;
    top: initial;
  }
  .works__item:nth-child(even) .works__item-textarea {
    padding: 1.875rem 1.875rem 1.875rem 1.25rem;
    margin-left: auto;
  }
  .works__item-title-wrap {
    gap: 0.625rem;
  }
  .works__item-num {
    font-size: 1.125rem;
  }
  .works__item-num span.en {
    font-size: 0.625rem;
  }
  .works__item-title {
    font-size: 1.5rem;
    gap: 0.625rem;
  }
  .works__item-title::before {
    height: 2.125rem;
  }
  .works__item-text {
    margin-top: 1.875rem;
  }
  .works__item-text p {
    font-size: 0.75rem;
  }
  .works__item-img {
    max-width: initial;
    width: 90%;
  }
}
/* ==================================================
*  news
================================================== */
.news {
  padding-top: 13.125rem;
  padding-bottom: 7.5rem;
}

.news__title,
.news__sub-title {
  text-align: center;
}

.news__card-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.5rem;
}

.news-card {
  max-width: 25rem;
  width: 100%;
}

.news__swiper-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 4.5rem;
}

.news-swiper {
  width: 100%;
}

.news-card {
  border: 1px solid #172a3a;
  padding: 2.375rem 1.875rem;
  background: #fff;
  box-sizing: border-box;
}

.news-card__head {
  display: flex;
  align-items: center;
}

.news-card__label {
  display: inline-block;
  background: #e60012;
  color: #fff;
  max-width: 6.9375rem;
  width: 100%;
  text-align: center;
  padding: 0.4375rem 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  border-radius: 0.875rem;
}

.news-card__date {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  margin-left: 1.875rem;
  font-family: "Montserrat", sans-serif;
}

.news-card__title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.news-card__text {
  margin-top: 1.5625rem;
  font-size: 1rem;
  line-height: 1.4375;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

.news-swiper-btn {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background: rgba(23, 42, 58, 0.6);
  cursor: pointer;
  position: absolute;
}

.news-swiper-btn--prev {
  left: -7.8125rem;
}

.news-swiper-btn--next {
  right: -7.8125rem;
}

.news-swiper-btn--prev::after,
.news-swiper-btn--next::after {
  content: "";
  border: solid #fff;
  border-width: 0 0.3125rem 0.3125rem 0;
  display: inline-block;
  padding: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.news-swiper-btn--prev::after {
  left: 55%;
  transform: translate(-50%, -50%) rotate(135deg);
}

.news-swiper-btn--next::after {
  left: 45%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .news {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .news__card-wrapper {
    margin-top: 2.25rem;
  }
  .news__swiper-wrapper {
    margin-top: 2.25rem;
  }
  .news-card {
    padding: 1.25rem;
  }
  .news-card__title {
    margin-top: 1rem;
    font-size: 1rem;
  }
  .news-card__text {
    margin-top: 1rem;
    font-size: 0.8125rem;
  }
  .news-swiper-btn {
    width: 1.875rem;
    height: 1.875rem;
    background: #172a3a;
    z-index: 10;
  }
  .news-swiper-btn--prev {
    left: -0.9375rem;
  }
  .news-swiper-btn--next {
    right: -0.9375rem;
  }
  .news-swiper-btn--prev::after,
.news-swiper-btn--next::after {
    border-width: 0 0.15625rem 0.15625rem 0;
    padding: 0.25rem;
  }
}
/* ==================================================
*  recruit
================================================== */
.recruit {
  padding-top: 10rem;
  padding-bottom: 8.125rem;
}

.recruit__content {
  position: relative;
}

.recruit__text-block {
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 0;
  top: 26.25rem;
  padding: 7.8125rem 12.5rem;
  width: 50%;
}

.recruit__title {
  position: relative;
}

.recruit__title::after {
  content: "";
  background-color: #172a3a;
  width: 28.125rem;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -22.1875rem;
}

.recruit__sub-title {
  margin-top: 6.5625rem;
}

.recruit__text {
  margin-top: 2rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
  max-width: 32.5rem;
  width: 100%;
}

.recruit__link {
  margin-top: 5.9375rem;
  display: inline-block;
  font-size: 1.625rem;
  line-height: 1.3076923077;
  font-weight: 400;
  position: relative;
  background-color: #e60012;
  color: #fff;
  border: 2px solid #e60012;
  border-radius: 3.125rem;
  max-width: 20.625rem;
  width: 100%;
  padding: 1.125rem 0;
  text-align: center;
  transition: all 0.3s;
}

.recruit__link::after {
  content: "";
  border: solid #fff;
  border-width: 0 0.1875rem 0.1875rem 0;
  display: inline-block;
  padding: 0.3125rem;
  position: absolute;
  top: 50%;
  right: 1.6875rem;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s;
}

.recruit__link:hover {
  opacity: 1;
  color: #e60012;
  background-color: #fff;
}

.recruit__link:hover::after {
  border: solid #e60012;
  border-width: 0 0.1875rem 0.1875rem 0;
}

.recruit__img-main {
  width: 84%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .recruit {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .recruit__text-block {
    position: relative;
    top: initial;
    margin-top: -6.25rem;
    padding: 1.25rem 1.875rem;
    width: 90%;
  }
  .recruit__title::after {
    width: 7.1875rem;
    height: 1px;
    right: -3.125rem;
  }
  .recruit__sub-title {
    margin-top: 1.25rem;
  }
  .recruit__text {
    margin-top: 1rem;
    font-size: 0.75rem;
    max-width: initial;
  }
  .recruit__link {
    margin-top: 3.125rem;
    font-size: 1.25rem;
    border: 1px solid #e60012;
    border-radius: 3.125rem;
    max-width: 12.5rem;
    padding: 0.5rem 0;
  }
  .recruit__link::after {
    border-width: 0 0.09375rem 0.09375rem 0;
    padding: 0.15625rem;
    right: 0.84375rem;
  }
  .recruit__link:hover::after {
    border-width: 0 0.09375rem 0.09375rem 0;
  }
  .recruit__img-main {
    width: 90%;
  }
}
/* ==================================================
*  recruit
================================================== */
.access {
  padding-bottom: 19.6875rem;
}

.access__map {
  width: 100%;
}

.access__map iframe {
  aspect-ratio: 1920/660;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.access__address {
  margin-top: 2.125rem;
  display: flex;
}

.access__address-item {
  max-width: 40.625rem;
  width: 100%;
}

.access__address-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.access__address-icon {
  max-width: 2.125rem;
  width: 100%;
}

.access__address-name {
  font-size: 1.5rem;
  font-weight: 600;
}

.access__address-text {
  margin-top: 0.625rem;
  margin-left: 3rem;
}

.access__address-text p {
  font-size: 1.125rem;
  line-height: 1.7777777778;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .access {
    padding-bottom: 3.75rem;
  }
  .access__map iframe {
    aspect-ratio: 390/230;
  }
  .access__address {
    flex-direction: column;
    gap: 1.25rem;
  }
  .access__address-item {
    max-width: initial;
  }
  .access__address-top {
    gap: 0.5rem;
  }
  .access__address-icon {
    max-width: 1.25rem;
  }
  .access__address-name {
    font-size: 1.125rem;
  }
  .access__address-text {
    margin-top: 0.3125rem;
    margin-left: 1.75rem;
  }
  .access__address-text p {
    font-size: 0.75rem;
  }
}
/* ==================================================
*  contact
================================================== */
.top-contact {
  margin-top: -16.5625rem;
}

@media screen and (max-width: 768px) {
  .top-contact {
    margin-top: 0;
  }
}
/* ==================================================
*  fv
================================================== */
.works-fv__title {
  font-size: 6.25rem;
  font-weight: 600;
  color: #fff;
  text-shadow: -2px 3px 9px rgba(26, 32, 39, 0.5);
}

@media screen and (max-width: 768px) {
  .works-fv__title {
    font-size: 1.4375rem;
  }
}
/* ==================================================
*  overview
================================================== */
.works-overview {
  padding: 6.875rem 0 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(#ffffff, #e2e9f1);
}

.works-overview__head {
  text-align: center;
}

.works-overview__title {
  font-size: 3rem;
  line-height: 1.3125;
  font-weight: 600;
}

.works-overview__lead {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
  margin-top: 5.125rem;
}

.works-overview__wrap {
  margin-top: 6.875rem;
  max-width: 105.125rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.works-overview__block {
  display: flex;
  gap: 14.375rem;
  position: relative;
}

.works-overview__block:nth-child(even) {
  flex-direction: row-reverse;
}

.works-overview__block:nth-child(n+2) {
  margin-top: 13.75rem;
}

.works-overview__img {
  max-width: 55.625rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.works-overview__img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-overview__content {
  max-width: 32.5rem;
  width: 100%;
  padding-top: 4.6875rem;
}

.works-overview__subtitle {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 500;
  position: relative;
}

.works-overview__subtitle::before {
  content: "";
  display: inline-block;
  background: #1a2027;
  width: 18.75rem;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -21rem;
}

.works-overview__block:nth-child(even) .works-overview__subtitle::before {
  left: initial;
  right: -21rem;
}

.works-overview__sub-en {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  margin-top: 3.4375rem;
}

.works-overview__text {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.works-overview__watermark {
  position: absolute;
  top: -8.5rem;
  left: calc((100vw - 102.625rem) / -2);
  width: 100%;
  font-size: 11rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

.works-overview__bottom {
  position: relative;
}

.works-overview__bottom-img {
  width: 100%;
  margin-left: auto;
  position: relative;
  margin-top: 14.375rem;
}

.works-overview__bottom-watermark {
  position: absolute;
  top: -2.8125rem;
  left: calc((100vw + 53.125rem) / -2);
  width: 100%;
  font-size: 11rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .works-overview {
    padding: 3.75rem 0 0;
  }
  .works-overview__head {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .works-overview__title {
    font-size: 1.5625rem;
  }
  .works-overview__lead {
    font-size: 0.75rem;
    margin-top: 2.5625rem;
  }
  .works-overview__wrap {
    margin-top: 3.4375rem;
    max-width: 52.5625rem;
  }
  .works-overview__block {
    flex-direction: column;
    gap: 3.125rem;
  }
  .works-overview__block:nth-child(even) {
    flex-direction: column;
  }
  .works-overview__block:nth-child(n+2) {
    margin-top: 5rem;
  }
  .works-overview__img {
    max-width: initial;
    width: 90%;
  }
  .works-overview__content {
    max-width: initial;
    width: 86%;
    margin-left: auto;
    padding-top: 0;
    padding-right: 1.25rem;
  }
  .works-overview__subtitle {
    font-size: 1.3125rem;
  }
  .works-overview__subtitle::before {
    width: 9.375rem;
    left: -10.5rem;
  }
  .works-overview__block:nth-child(even) .works-overview__subtitle::before {
    left: -10.5rem;
  }
  .works-overview__sub-en {
    font-size: 1.125rem;
    margin-top: 1.71875rem;
  }
  .works-overview__text {
    margin-top: 0.9375rem;
    font-size: 0.75rem;
  }
  .works-overview__watermark {
    top: -3.4375rem;
    left: -1.25rem;
    font-size: 4rem;
  }
  .works-overview__bottom {
    margin-top: 5rem;
  }
  .works-overview__bottom-img {
    max-width: 37.9375rem;
    margin-top: 8.125rem;
  }
  .works-overview__bottom-watermark {
    top: -3.125rem;
    left: -38.125rem;
    width: 100%;
    font-size: 4rem;
  }
}
/* ==================================================
*  purchase
================================================== */
.works-purchase {
  padding-top: 7.8125rem;
  padding-bottom: 7.625rem;
  text-align: center;
}

.works-purchase__text {
  margin-top: 3.125rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.works-purchase__sub-title {
  font-weight: 600;
}

.works-purchase__steps {
  margin-top: 5.9375rem;
}

.works-purchase__step:nth-child(n+2) {
  margin-top: 5.625rem;
}

.works-purchase__step-head {
  text-align: left;
  background-color: #172a3a;
  color: #fff;
  border-radius: 3.125rem;
  padding: 1.4375rem 3rem;
  display: flex;
  align-items: center;
  gap: 4.0625rem;
}

.works-purchase__step-label {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.works-purchase__step-label span.num {
  font-size: 2.25rem;
}

.works-purchase__step-title {
  font-size: 1.875rem;
  font-weight: 600;
}

.works-purchase__step-body {
  background-color: #eeeeee;
  max-width: 75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.125rem;
  border-radius: 0.3125rem;
  padding: 2.625rem 0 2.3125rem;
  position: relative;
}

.works-purchase__step-text {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.works-purchase__step-icon {
  margin-top: 2.625rem;
  max-width: 10.625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.works-purchase__step-note {
  margin-top: 2.625rem;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 400;
}

.works-purchase__step-grid {
  display: flex;
  justify-content: space-between;
  max-width: 75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.125rem;
}

.works-purchase__step-box {
  max-width: 34.375rem;
  width: 100%;
  padding: 3rem 0 2.8125rem;
  border-radius: 0.3125rem;
  position: relative;
}

.works-purchase__step-box--blue {
  background-color: #f4f8fd;
}

.works-purchase__step-box--pink {
  background-color: #fbeeef;
}

.works-purchase__step-box-title {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.works-purchase__step-box-text {
  margin-top: 2.1875rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.works-purchase__step-box--blue img {
  max-width: 27.375rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}

.works-purchase__step-box--pink img {
  max-width: 26.5625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
}

.works-purchase__step:nth-child(1) .works-purchase__step-body::before {
  content: "";
  background-image: url(../img/icon-arrow_bl.png);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 2.75rem;
  height: 4.125rem;
  position: absolute;
  bottom: -3.125rem;
  left: 15.8125rem;
}

.works-purchase__step:nth-child(1) .works-purchase__step-body::after {
  content: "";
  background-image: url(../img/icon-arrow_pk.png);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 2.75rem;
  height: 4.125rem;
  position: absolute;
  bottom: -3.125rem;
  right: 15.8125rem;
}

.works-purchase__step-box--blue::before {
  content: "";
  background-image: url(../img/icon-arrow_bl.png);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 2.75rem;
  height: 4.125rem;
  position: absolute;
  bottom: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
}

.works-purchase__step-box--pink::before {
  content: "";
  background-image: url(../img/icon-arrow_pk.png);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 2.75rem;
  height: 4.125rem;
  position: absolute;
  bottom: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .works-purchase {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .works-purchase__text {
    margin-top: 1.5625rem;
    font-size: 0.75rem;
  }
  .works-purchase__steps {
    margin-top: 3rem;
  }
  .works-purchase__step:nth-child(n+2) {
    margin-top: 2.8125rem;
  }
  .works-purchase__step-head {
    padding: 0.5rem 0.75rem;
    gap: 0.625rem;
    justify-content: center;
  }
  .works-purchase__step-label {
    font-size: 0.875rem;
    text-align: center;
  }
  .works-purchase__step-label span.num {
    font-size: 1rem;
    display: block;
    margin-top: -0.3125rem;
  }
  .works-purchase__step-title {
    font-size: 1.125rem;
  }
  .works-purchase__step-body {
    max-width: 37.5rem;
    margin-top: 1.0625rem;
    padding: 1.25rem 0.625rem 1.5625rem;
  }
  .works-purchase__step-text {
    font-size: 0.75rem;
  }
  .works-purchase__step-icon {
    margin-top: 1.3125rem;
    max-width: 5.3125rem;
  }
  .works-purchase__step-note {
    margin-top: 1.3125rem;
    font-size: 0.625rem;
  }
  .works-purchase__step-grid {
    max-width: 37.5rem;
    margin-top: 1.0625rem;
  }
  .works-purchase__step-box {
    max-width: 17.1875rem;
    padding: 1.25rem 0.625rem 1.125rem;
  }
  .works-purchase__step-box-title {
    font-size: 1.125rem;
  }
  .works-purchase__step-box-text {
    margin-top: 1.09375rem;
    font-size: 0.75rem;
  }
  .works-purchase__step-box--blue img {
    max-width: 9.6875rem;
    margin-top: 2.5rem;
  }
  .works-purchase__step-box--pink img {
    max-width: 9.6875rem;
    margin-top: 0.8125rem;
  }
  .works-purchase__step:nth-child(1) .works-purchase__step-body::before {
    width: 1.375rem;
    height: 2.0625rem;
    position: absolute;
    bottom: -1.5625rem;
    left: 4.6875rem;
  }
  .works-purchase__step:nth-child(1) .works-purchase__step-body::after {
    width: 1.375rem;
    height: 2.0625rem;
    bottom: -1.5625rem;
    right: 4.6875rem;
  }
  .works-purchase__step-box--blue::before {
    width: 1.375rem;
    height: 2.0625rem;
    bottom: -1.5625rem;
  }
  .works-purchase__step-box--pink::before {
    width: 1.375rem;
    height: 2.0625rem;
    bottom: -1.5625rem;
  }
}
/* ==================================================
*  fv
================================================== */
.equipment-fv {
  padding-bottom: 6.25rem;
}

.equipment-fv__title {
  font-size: 7.6875rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -2px 3px 9px rgba(26, 32, 39, 0.5);
  position: relative;
}

.equipment-fv__title::before {
  content: "";
  background-image: url(../img/icon-equipment.png);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 27.5rem;
  height: 23.4375rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .equipment-fv {
    padding-bottom: 2.403125rem;
  }
  .equipment-fv__title {
    font-size: 2.5rem;
  }
  .equipment-fv__title::before {
    width: 7.375rem;
    height: 6.375rem;
    top: 45%;
  }
}
/* ==================================================
*  bg
================================================== */
.equipment-bg {
  background: linear-gradient(#ffffff, #e2e9f1);
  padding: 6.875rem 0;
}

@media screen and (max-width: 768px) {
  .equipment-bg {
    padding: 3.75rem 0;
  }
}
/* ==================================================
*  intro
================================================== */
.equipment-intro {
  text-align: center;
}

.equipment-intro__title {
  font-size: 3rem;
  line-height: 1.3125;
  font-weight: 600;
}

.equipment-intro__text {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
  margin-top: 5.125rem;
}

@media screen and (max-width: 768px) {
  .equipment-intro__title {
    font-size: 1.625rem;
  }
  .equipment-intro__text {
    font-size: 0.75rem;
    margin-top: 2.5625rem;
  }
}
/* ==================================================
*  feature
================================================== */
.equipment-feature {
  padding-top: 6.5625rem;
}

.equipment-feature__item:nth-child(n+2) {
  margin-top: 10rem;
  padding-top: 9.75rem;
}

.equipment-feature__item:nth-child(n+2)::before {
  content: "";
  display: inline-block;
  width: 88%;
  height: 1px;
  background: #1a2027;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.equipment-feature__item {
  position: relative;
}

.equipment-feature__img-main {
  width: 84%;
  margin-left: auto;
}

.equipment-feature__item:nth-child(2) .equipment-feature__img-main {
  margin-left: initial;
  margin-right: auto;
}

.equipment-feature__content {
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 0;
  top: 27.8125rem;
  padding: 9.625rem 7.6875rem 7rem;
  width: 50%;
}

.equipment-feature__item:nth-child(2) .equipment-feature__content {
  left: initial;
  right: 0;
}

.equipment-feature__item-title {
  font-size: 2.25rem;
  line-height: 1.1944444444;
  font-weight: 500;
  position: relative;
}

.equipment-feature__item-title::before {
  content: "";
  background-image: url(../img/icon-equipment02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 9.625rem;
  height: 8.25rem;
  position: absolute;
  top: 50%;
  left: -2.8125rem;
  transform: translateY(-50%);
}

.equipment-feature__item-en {
  margin-top: 8.25rem;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.equipment-feature__item-text {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
  max-width: 41.125rem;
  width: 100%;
}

.equipment-feature__img-group {
  display: flex;
  justify-content: center;
  gap: 11.125rem;
  margin-top: 5.625rem;
}

.equipment-feature__img-sub01 {
  margin-top: 23.875rem;
  max-width: 48.125rem;
  width: 100%;
}

.equipment-feature__img-sub02 {
  max-width: 41.875rem;
  width: 100%;
}

.equipment-feature__item:nth-child(2) .equipment-feature__img-sub01 {
  margin-top: 0;
  max-width: 41.875rem;
}

.equipment-feature__item:nth-child(2) .equipment-feature__img-sub02 {
  margin-top: 23.875rem;
  max-width: 48.125rem;
}

@media screen and (max-width: 768px) {
  .equipment-feature {
    padding-top: 3.75rem;
  }
  .equipment-feature__item:nth-child(n+2) {
    margin-top: 5rem;
    padding-top: 4.875rem;
  }
  .equipment-feature__img-main {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  .equipment-feature__item:nth-child(2) .equipment-feature__img-main {
    margin-left: auto;
  }
  .equipment-feature__content {
    position: relative;
    padding: 1.875rem 1.25rem;
    width: 90%;
    margin-top: -1.25rem;
    top: initial;
    left: initial;
  }
  .equipment-feature__item:nth-child(2) .equipment-feature__content {
    left: initial;
    right: 0;
  }
  .equipment-feature__item-title {
    font-size: 1.5rem;
  }
  .equipment-feature__item-title::before {
    width: 4.8125rem;
    height: 4.125rem;
    left: -0.625rem;
    top: 42%;
  }
  .equipment-feature__item-en {
    margin-top: 1.875rem;
    font-size: 1.125rem;
  }
  .equipment-feature__item-text {
    margin-top: 0.9375rem;
    font-size: 0.75rem;
    max-width: 20.5625rem;
  }
  .equipment-feature__img-group {
    gap: 0.9375rem;
    margin-top: -3.75rem;
    align-items: flex-end;
  }
  .equipment-feature__img-sub01 {
    margin-top: 0;
    max-width: initial;
    width: 90%;
    margin-left: auto;
    margin-bottom: 0.625rem;
  }
  .equipment-feature__img-sub02 {
    max-width: initial;
    width: 85%;
    margin-left: auto;
  }
  .equipment-feature__item:nth-child(2) .equipment-feature__img-sub01 {
    max-width: 20.9375rem;
    margin-bottom: 0;
  }
  .equipment-feature__item:nth-child(2) .equipment-feature__img-sub02 {
    margin-top: 0;
    max-width: 24.0625rem;
    margin-left: initial;
    margin-bottom: 0.625rem;
  }
}
/* ==================================================
*  list
================================================== */
.equipment-list {
  padding: 9.75rem 0 13.125rem;
  text-align: center;
}

.equipment-list__title {
  text-transform: uppercase;
}

.equipment-list__text {
  margin-top: 3.125rem;
}

.equipment-list__text p {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.equipment-list__items {
  margin-top: 4.5rem;
}

.equipment-list__item-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6.125rem;
}

.equipment-list__item {
  max-width: 62.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.equipment-list__item:nth-child(3) {
  margin-top: 6.125rem;
}

.equipment-list__item-wrap .equipment-list__item {
  max-width: 36.25rem;
  width: 100%;
}

.equipment-list__img img {
  aspect-ratio: 750/432;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.equipment-list__item:nth-child(3) .equipment-list__img img {
  aspect-ratio: 750/312;
}

.equipment-list__item-wrap .equipment-list__img img {
  aspect-ratio: 435/450;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.equipment-list__item-text {
  background-color: #f4f8fd;
  height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipment-list__item-text p {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .equipment-list {
    padding: 3.75rem 0;
  }
  .equipment-list__text {
    margin-top: 1.5625rem;
  }
  .equipment-list__text p {
    font-size: 0.75rem;
  }
  .equipment-list__items {
    margin-top: 2.25rem;
  }
  .equipment-list__item-wrap {
    flex-direction: column;
    gap: 1.875rem;
    margin-bottom: 1.875rem;
  }
  .equipment-list__item {
    max-width: initial;
  }
  .equipment-list__item:nth-child(3) {
    margin-top: 1.875rem;
  }
  .equipment-list__item-wrap .equipment-list__item {
    max-width: initial;
  }
  .equipment-list__item-text {
    padding: 1.25rem 0.625rem;
    height: auto;
  }
  .equipment-list__item-text p {
    font-size: 0.875rem;
  }
}
/* ==================================================
*  fv
================================================== */
.about-fv {
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 768px) {
  .about-fv {
    padding-bottom: 2.403125rem;
  }
}
/* ==================================================
*  company
================================================== */
.about-company {
  background: linear-gradient(90deg, #e2e9f1, #f4f8fd 78%, #fff);
  padding: 6.875rem 0;
}

.about-company__title {
  font-family: "Montserrat", sans-serif;
}

.about-company__sub-title {
  font-weight: 600;
}

.about-company__body {
  margin-top: 6.5rem;
}

.about-company__list {
  border-top: 1px solid #aaaaaa;
}

.about-company__row {
  border-bottom: 1px solid #aaaaaa;
  display: flex;
  align-items: center;
  padding: 2.0625rem 0;
}

.about-company__term {
  max-width: 19.6875rem;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.about-company__desc {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 400;
}

.about-company__img {
  margin-top: 6.125rem;
}

@media screen and (max-width: 768px) {
  .about-company {
    padding: 3.4375rem 0;
  }
  .about-company__title {
    font-size: 2rem;
  }
  .about-company__body {
    margin-top: 3.25rem;
  }
  .about-company__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9375rem;
    padding: 1rem 0.625rem;
  }
  .about-company__term {
    max-width: 19.6875rem;
    font-size: 1.125rem;
  }
  .about-company__desc {
    font-size: 1.125rem;
  }
  .about-company__img {
    margin-top: 3rem;
  }
}
/* ==================================================
*  history
================================================== */
.about-history {
  background-image: url(../img/about-history.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 7.5rem 0;
}

.about-history__head {
  color: #fff;
}

.about-history__text {
  margin-top: 3.125rem;
}

.about-history__text p {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.about-history__list {
  margin-top: 5rem;
  color: #fff;
}

.about-history__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.about-history__item-term {
  max-width: 10.3125rem;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
}

.about-history__item-description {
  padding-bottom: 4.625rem;
  padding-left: 5.25rem;
  max-width: 36.5rem;
  width: 100%;
  position: relative;
}

.about-history__item:last-child .about-history__item-description {
  padding-bottom: 0;
}

.about-history__item-description::before,
.about-history__item-description::after {
  content: "";
  position: absolute;
  top: 0.3125rem;
}

.about-history__item-description::before {
  left: 0;
  width: 2px;
  height: 100%;
  background: #b2a295;
}

.about-history__item:last-child .about-history__item-description::before {
  display: none;
}

.about-history__item-description::after {
  left: -0.5625rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #b2a295;
}

.about-history__item-description p {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .about-history {
    background-size: cover;
    padding: 3.75rem 0;
  }
  .about-history__text {
    margin-top: 1.5625rem;
  }
  .about-history__text p {
    font-size: 0.75rem;
  }
  .about-history__list {
    margin-top: 2.5rem;
  }
  .about-history__item-term {
    max-width: 4.6875rem;
    font-size: 1.125rem;
  }
  .about-history__item-description {
    padding-bottom: 2.3125rem;
    padding-left: 1.875rem;
    max-width: 18.25rem;
  }
  .about-history__item-description::before,
.about-history__item-description::after {
    top: 0.15625rem;
  }
  .about-history__item-description::before {
    width: 1px;
  }
  .about-history__item-description::after {
    left: -0.28125rem;
    width: 0.625rem;
    height: 0.625rem;
  }
  .about-history__item-description p {
    font-size: 1.125rem;
  }
}
/* ==================================================
*  access
================================================== */
.about-access {
  padding: 8.625rem 0 8rem;
}

.about-access__sub-title {
  font-weight: 600;
}

.about-access__text {
  margin-top: 4.0625rem;
}

.about-access__text p {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.about-access__map {
  max-width: 50rem;
  width: 100%;
}

.about-access__map-list {
  margin-top: 7.5rem;
}

.about-access__map-item {
  display: flex;
}

.about-access__map-item:first-child {
  position: relative;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
}

.about-access__map-item:first-child::before {
  content: "";
  display: inline-block;
  background: #aaaaaa;
  width: 100.625rem;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about-access__map-address {
  max-width: 31.25rem;
  width: 100%;
  margin-top: 0.625rem;
}

.about-access__map-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-access__map-icon {
  max-width: 2.125rem;
  width: 100%;
}

.about-access__map-name {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.about-access__map-text {
  margin-top: 0.625rem;
  padding-left: 2.875rem;
}

.about-access__map-text p {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.about-access__map iframe {
  aspect-ratio: 800/380;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .about-access {
    padding: 3.75rem 0;
  }
  .about-access__text {
    margin-top: 2rem;
  }
  .about-access__text p {
    font-size: 0.75rem;
  }
  .about-access__map-list {
    margin-top: 3.75rem;
  }
  .about-access__map-item {
    flex-direction: column;
    gap: 1.875rem;
  }
  .about-access__map-item:first-child {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .about-access__map-item:first-child::before {
    width: 100%;
    height: 1px;
  }
  .about-access__map-address {
    max-width: initial;
    margin-top: 0;
  }
  .about-access__map-top {
    gap: 0.5rem;
  }
  .about-access__map-icon {
    max-width: 1.0625rem;
  }
  .about-access__map-name {
    font-size: 1.125rem;
  }
  .about-access__map-text {
    margin-top: 0.3125rem;
    padding-left: 1.5625rem;
  }
  .about-access__map-text p {
    font-size: 0.75rem;
  }
  .about-access__map iframe {
    aspect-ratio: 350/280;
  }
}
/* ==================================================
*  bg
================================================== */
.contact-bg {
  background: linear-gradient(#e2e9f1, #ffffff);
}

/* ==================================================
*  fv
================================================== */
.contact-fv img {
  aspect-ratio: 1920/982;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .contact-fv img {
    aspect-ratio: 1920/1920;
  }
}
/* ==================================================
*  contact-tel
================================================== */
.contact-tel {
  padding-top: 9.875rem;
}

.contact-tel__inner.l-inner {
  max-width: 84.375rem;
}

.contact-tel__wrap {
  background-color: #fff;
  padding: 2.5rem 3.75rem;
  border-radius: 0.3125rem;
}

.contact-tel__lead {
  font-size: 1.875rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.contact-tel__box {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.contact-tel__area {
  display: flex;
  align-items: center;
}

.contact-tel__icon {
  max-width: 6rem;
  width: 100%;
}

.contact-tel__number {
  display: inline-block;
  font-size: 3.125rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin-left: 1.4375rem;
}

.contact-tel__time {
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 400;
  margin-left: 4.375rem;
  margin-top: 0.8125rem;
}

@media screen and (max-width: 768px) {
  .contact-tel {
    padding-top: 5rem;
  }
  .contact-tel__inner.l-inner {
    max-width: 37.5rem;
  }
  .contact-tel__wrap {
    padding: 1.25rem;
  }
  .contact-tel__lead {
    font-size: 0.9375rem;
    text-align: center;
  }
  .contact-tel__box {
    flex-direction: column;
    margin-top: 0.75rem;
  }
  .contact-tel__icon {
    max-width: 3.125rem;
  }
  .contact-tel__number {
    font-size: 1.875rem;
    margin-left: 0.75rem;
  }
  .contact-tel__time {
    font-size: 0.875rem;
    margin-left: 0;
    margin-top: 0.8125rem;
  }
}
/* ==================================================
*  contact-faq
================================================== */
.contact-form {
  padding-top: 7.6875rem;
}

.contact-form__inner.l-inner {
  max-width: 76.875rem;
}

.contact-form__title {
  font-size: 1.875rem;
  font-weight: 600;
}

.contact-form__note {
  font-size: 1.125rem;
  line-height: 1.6111111111;
  font-weight: 400;
  margin-top: 2.1875rem;
}

.contact-form span.required {
  color: #e60012;
}

.contact-form__form {
  margin-top: 5.4375rem;
  max-width: 66.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contact-form__form .form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-form__form .form-row:nth-child(n+2) {
  margin-top: 1.75rem;
}

.contact-form__form .form-row .form-label {
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 400;
}

.contact-form__form .form-row input,
.contact-form__form .form-row textarea {
  background-color: #fff;
  border: none;
  max-width: 50.625rem;
  width: 100%;
  padding: 1.25rem 1.75rem;
  border-radius: 0.3125rem;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 400;
}

.contact-form__form .form-row input:focus-visible,
.contact-form__form .form-row textarea:focus-visible {
  outline: #c9c9c9 auto 0.0625rem;
}

.contact-form__form .privacy-block {
  margin-top: 2.625rem;
}

.contact-form__form .privacy-title {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.contact-form__form .privacy-text {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 400;
}

.contact-form__form .privacy-scroll {
  background-color: #fff;
  border-radius: 0.3125rem;
  margin-top: 0.75rem;
  padding: 1.125rem 1.375rem;
}

.contact-form__form .scroll-area {
  height: 7.375rem;
  overflow-y: scroll;
  overflow-x: visible;
}

.contact-form__form .privacy-scroll p {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
  color: #707070;
}

.contact-form__form .privacy-scroll p span {
  display: flex;
}

.contact-form__form .privacy-scroll p span::before {
  content: "・";
}

.contact-form__form .scroll-area::-webkit-scrollbar {
  width: 1.75rem;
}

.contact-form__form .scroll-area::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 0.875rem;
  border: 0.0625rem solid #aaa;
}

.contact-form__form .scroll-area::-webkit-scrollbar-thumb {
  background: #335068;
  border-radius: 0.875rem;
  border: 0.3125rem solid transparent;
  background-clip: padding-box;
}

/* hover */
.contact-form__form .scroll-area::-webkit-scrollbar-thumb:hover {
  background: #1f364d;
}

.contact-form__form .privacy-check {
  margin-top: 2.25rem;
}

.contact-form__form .checkbox-wrap {
  margin-top: 1.125rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 400;
}

.contact-form__form .checkbox-wrap input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form__form .checkbox-custom {
  width: 2.5rem;
  height: 2.5rem;
  border: 0.0625rem solid #aaa;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  background: #fff;
}

.contact-form__form .checkbox-wrap input[type=checkbox]:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  left: 0.875rem;
  top: 0.625rem;
  width: 0.5rem;
  height: 0.875rem;
  border-right: 0.1875rem solid #1a2027;
  border-bottom: 0.1875rem solid #1a2027;
  transform: rotate(45deg);
}

.contact-form__form .checkbox-wrap span.required {
  margin-left: 1.375rem;
}

.contact-form__form .form-submit {
  margin-top: 5.625rem;
  max-width: 37.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contact-form__form .form-submit button {
  background-color: #e60012;
  border: 2px solid #e60012;
  color: #fff;
  display: inline-block;
  width: 100%;
  text-align: center;
  border-radius: 3.125rem;
  padding: 2.25rem 0 2.125rem;
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
}

.contact-form__form .form-submit button:hover {
  opacity: 1;
  background-color: #fff;
  color: #e60012;
}

.contact-form__form .form-submit button::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border: 0;
  border-top: 0.1875rem solid #fff;
  border-right: 0.1875rem solid #fff;
  border-radius: 0.125rem;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 2.375rem;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
}

.contact-form__form .form-submit button:hover::before {
  border-top: 0.1875rem solid #e60012;
  border-right: 0.1875rem solid #e60012;
}

@media screen and (max-width: 768px) {
  .contact-form {
    padding-top: 3.875rem;
  }
  .contact-form__inner.l-inner {
    max-width: 37.5rem;
  }
  .contact-form__title {
    font-size: 1.25rem;
  }
  .contact-form__note {
    font-size: 0.875rem;
    margin-top: 1.125rem;
  }
  .contact-form__form {
    margin-top: 2.625rem;
    max-width: 37.5rem;
  }
  .contact-form__form .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .contact-form__form .form-row:nth-child(n+2) {
    margin-top: 1.375rem;
  }
  .contact-form__form .form-row .form-label {
    font-size: 1rem;
  }
  .contact-form__form .form-row input,
.contact-form__form .form-row textarea {
    max-width: 37.5rem;
    padding: 0.875rem;
    font-size: 0.875rem;
  }
  .contact-form__form .privacy-block {
    margin-top: 1.3125rem;
  }
  .contact-form__form .privacy-title {
    font-size: 1.25rem;
  }
  .contact-form__form .privacy-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }
  .contact-form__form .privacy-scroll {
    margin-top: 0.5rem;
    padding: 0.625rem 0.75rem;
  }
  .contact-form__form .scroll-area {
    height: 7.375rem;
  }
  .contact-form__form .privacy-scroll p {
    font-size: 0.75rem;
  }
  .contact-form__form .scroll-area::-webkit-scrollbar {
    width: 0.875rem;
  }
  .contact-form__form .scroll-area::-webkit-scrollbar-thumb {
    border: 0.1875rem solid transparent;
  }
  .contact-form__form .privacy-check {
    margin-top: 1.125rem;
  }
  .contact-form__form .checkbox-wrap {
    margin-top: 0.5rem;
    gap: 0.5rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
  }
  .contact-form__form .checkbox-custom {
    width: 1.25rem;
    height: 1.25rem;
  }
  .contact-form__form .checkbox-wrap input[type=checkbox]:checked + .checkbox-custom::after {
    left: 0.375rem;
    top: 0.25rem;
    width: 0.25rem;
    height: 0.4375rem;
    border-right: 0.125rem solid #1a2027;
    border-bottom: 0.125rem solid #1a2027;
  }
  .contact-form__form .checkbox-wrap span.required {
    margin-left: 1.75rem;
  }
  .contact-form__form .form-submit {
    margin-top: 2.8125rem;
    max-width: 18.75rem;
  }
  .contact-form__form .form-submit button {
    padding: 1.125rem 0 1.0625rem;
    font-size: 1.25rem;
  }
  .contact-form__form .form-submit button::before {
    width: 0.375rem;
    height: 0.375rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    border-radius: 0.0625rem;
    right: 1.25rem;
  }
}
/* ==================================================
*  contact-faq
================================================== */
.contact-faq {
  padding-top: 12.625rem;
  padding-bottom: 15.8125rem;
}

.contact-faq__inner.l-inner {
  max-width: 71.875rem;
}

.contact-faq__title {
  font-size: 4.375rem;
  font-weight: 600;
  line-height: 1.1125;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.contact-faq__title span {
  font-size: 3.75rem;
  font-weight: 400;
}

.contact-faq__subtitle {
  display: block;
  text-align: center;
  margin-top: 2.625rem;
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 600;
}

.contact-faq__list {
  margin-top: 5rem;
}

.contact-faq__item {
  background-color: #fff;
  border-radius: 0.9375rem;
  box-shadow: 0.3125rem 0 1.6875rem rgba(0, 0, 0, 0.08);
}

.contact-faq__item:nth-child(n+2) {
  margin-top: 0.9375rem;
}

.contact-faq__item-question {
  padding: 1.25rem 3.125rem;
  width: 100%;
  position: relative;
  font-size: 1.375rem;
  line-height: 1.3181818182;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-align: left;
}

.contact-faq__item-question span.contact-faq__q {
  margin-right: 1.75rem;
  font-size: 1.875rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  background-color: #172a3a;
  color: #fff;
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-faq__item-question::before,
.contact-faq__item-question::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
  width: 1.5625rem;
  height: 0.375rem;
  background: #6d6c6c;
  transition: all 0.3s;
}

.contact-faq__item-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.contact-faq__item-question.is-open::after {
  transform: translateY(-50%) rotate(0deg);
}

.contact-faq__item-answer {
  border-top: 0.0625rem solid #aaa;
  padding: 1.125rem 0;
  margin-left: 3.125rem;
  margin-right: 3.125rem;
  display: none;
  font-size: 1.375rem;
  line-height: 1.2272727273;
  font-weight: 400;
}

.contact-faq__item-answer p {
  display: flex;
  align-items: center;
}

.contact-faq__item-answer span.contact-faq__a {
  margin-right: 1.75rem;
  font-size: 1.875rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  background-color: #fff;
  color: #172a3a;
  border: 0.0625rem solid #172a3a;
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* エラー表示 */
.contact-form__form .form-error {
  display: block;
  color: #e60012;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.contact-form__form .form-row {
  flex-wrap: wrap;
}

.contact-form__form input.is-error,
.contact-form__form textarea.is-error {
  border: 0.125rem solid #e60012;
  background-color: #fff5f5;
}

.contact-form__form .privacy-check .form-error {
  margin-top: 0.75rem;
}

@media screen and (max-width: 768px) {
  .contact-form__form .form-error {
    font-size: 0.75rem;
    margin-top: 0.375rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-faq {
    padding-top: 6.25rem;
    padding-bottom: 7.8125rem;
  }
  .contact-faq__inner.l-inner {
    max-width: 37.5rem;
  }
  .contact-faq__title {
    font-size: 2.1875rem;
  }
  .contact-faq__title span {
    font-size: 1.875rem;
  }
  .contact-faq__subtitle {
    margin-top: 1.3125rem;
    font-size: 1.25rem;
  }
  .contact-faq__list {
    margin-top: 2.5rem;
  }
  .contact-faq__item {
    border-radius: 0.5rem;
  }
  .contact-faq__item:nth-child(n+2) {
    margin-top: 0.9375rem;
  }
  .contact-faq__item-question {
    padding: 0.625rem 1.25rem 0.625rem 0.625rem;
    font-size: 1rem;
  }
  .contact-faq__item-question span.contact-faq__q {
    margin-right: 0.875rem;
    font-size: 1.125rem;
    width: 1.875rem;
    height: 1.875rem;
    flex-shrink: 0;
  }
  .contact-faq__item-question::before,
.contact-faq__item-question::after {
    right: 0.5rem;
    width: 0.75rem;
    height: 0.1875rem;
  }
  .contact-faq__item-answer {
    padding: 0.625rem 0;
    margin-left: 0.625rem;
    margin-right: 0.625rem;
    font-size: 1rem;
  }
  .contact-faq__item-answer span.contact-faq__a {
    margin-right: 0.875rem;
    font-size: 1.125rem;
    width: 1.875rem;
    height: 1.875rem;
    flex-shrink: 0;
  }
}
/* ==================================================
*  thanks
================================================== */
.thanks-fv img {
  aspect-ratio: 1920/400;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thanks {
  padding: 12.5rem 0;
  text-align: center;
}

.thanks__text p {
  font-size: 1.75rem;
  line-height: 1.9;
}

.thanks__btn {
  margin-top: 6.25rem;
  max-width: 30rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.thanks__btn a {
  display: inline-block;
  width: 100%;
  background-color: #172a3a;
  border-radius: 2.1875rem;
  color: #fff;
  font-size: 1.625rem;
  line-height: 1.3076923077;
  font-weight: 600;
  text-align: center;
  padding: 1.0625rem 0;
  position: relative;
}

.thanks__btn a::before {
  content: "";
  border: solid #fff;
  border-width: 0 0.1875rem 0.1875rem 0;
  display: inline-block;
  padding: 0.3125rem;
  position: absolute;
  top: 50%;
  right: 2.1875rem;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .thanks-fv img {
    aspect-ratio: 1920/1000;
  }
  .thanks {
    padding: 6.25rem 1.25rem;
  }
  .thanks__text p {
    font-size: 1rem;
  }
  .thanks__btn {
    margin-top: 3.125rem;
    max-width: 15rem;
  }
  .thanks__btn a {
    font-size: 1rem;
  }
  .thanks__btn a::before {
    border-width: 0 0.125rem 0.125rem 0;
    padding: 0.1875rem;
    right: 1.25rem;
  }
}
/* ==================================================
*  fv
================================================== */
.recruit-fv__title {
  font-size: 5.625rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -2px 3px 9px rgba(26, 32, 39, 0.5);
}

.recruit-fv__title span {
  font-size: 3rem;
  display: block;
  margin-bottom: 4.25rem;
}

@media screen and (max-width: 768px) {
  .recruit-fv__title {
    font-size: 1.4375rem;
  }
  .recruit-fv__title span {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }
}
/* ==================================================
*  info
================================================== */
.recruit-info {
  background: linear-gradient(90deg, #e2e9f1, #f4f8fd 78%, #fff);
  padding: 6.875rem 0;
}

.recruit-info__title {
  font-family: "Montserrat", sans-serif;
}

.recruit-info__sub-title {
  font-weight: 600;
}

.recruit-info__note {
  margin-top: 1.75rem;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
  color: #e60012;
}

.recruit-info__list {
  margin-top: 7.1875rem;
  border-top: 1px solid #aaaaaa;
}

.recruit-info__row {
  border-bottom: 1px solid #aaaaaa;
  display: flex;
  align-items: baseline;
  padding: 2.0625rem 0;
}

.recruit-info__term {
  max-width: 19.6875rem;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
}

.recruit-info__desc {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}

.recruit-info__desc span {
  display: inline-flex;
}

.recruit-info__desc span.note::before {
  content: "※";
}

.recruit-info__desc span.circle::before {
  content: "◎";
}

.recruit-info__desc span.square::before {
  content: "■";
}

@media screen and (max-width: 768px) {
  .recruit-info {
    padding: 3.75rem 0;
  }
  .recruit-info__note {
    margin-top: 0.875rem;
    font-size: 1.125rem;
  }
  .recruit-info__list {
    margin-top: 3.625rem;
  }
  .recruit-info__row {
    padding: 1.125rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9375rem;
  }
  .recruit-info__term {
    max-width: 19.6875rem;
    font-size: 1.125rem;
  }
  .recruit-info__desc {
    font-size: 1.125rem;
  }
}
/* ==================================================
*  day
================================================== */
.recruit-day {
  background-image: url(../img/recruit-day-bg.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 5.625rem 0 9.375rem;
  color: #fff;
}

.recruit-day__head {
  text-align: center;
}

.recruit-day__title {
  font-size: 3rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.recruit-day__text {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.recruit-day__timeline {
  margin-top: 6.875rem;
}

.recruit-day__item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.recruit-day__time {
  max-width: 10rem;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.recruit-day__content {
  padding-bottom: 1.75rem;
  padding-left: 4.875rem;
  max-width: 57.375rem;
  width: 100%;
  position: relative;
}

.recruit-day__item:last-child .recruit-day__content {
  padding-bottom: 0;
}

.recruit-day__content::before,
.recruit-day__content::after {
  content: "";
  position: absolute;
  top: 0.3125rem;
}

.recruit-day__content::before {
  left: 0;
  width: 2px;
  height: 100%;
  background: #f9e689;
}

.recruit-day__item:last-child .recruit-day__content::before {
  height: 70%;
}

.recruit-day__content::after {
  left: -0.5625rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #f9e689;
}

.recruit-day__item:nth-child(1) .recruit-day__content::after {
  left: -2.5rem;
  top: -1.0625rem;
  width: 5.0625rem;
  height: 3.8125rem;
  background-color: initial;
  background-image: url(../img/icon-time01.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.recruit-day__item:nth-child(3) .recruit-day__content::after {
  left: -2.1875rem;
  top: -1.25rem;
  width: 4.5rem;
  height: 4.5rem;
  background-color: initial;
  background-image: url(../img/icon-time02.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.recruit-day__item:nth-child(5) .recruit-day__content::after {
  left: -2.1875rem;
  top: -0.625rem;
  width: 2.9375rem;
  height: 3.1875rem;
  background-color: initial;
  background-image: url(../img/icon-time03.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.recruit-day__item-title {
  font-size: 1.875rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.recruit-day__content p {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 0.9375rem;
}

.recruit-day__img {
  max-width: 15.625rem;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.recruit-day__item:nth-child(1) .recruit-day__img {
  top: 0.3125rem;
}

.recruit-day__item:nth-child(3) .recruit-day__img {
  top: -2.5rem;
}

.recruit-day__item:nth-child(5) .recruit-day__img {
  top: -5.3125rem;
}

@media screen and (max-width: 768px) {
  .recruit-day {
    background-size: cover;
    padding: 3.75rem 0;
  }
  .recruit-day__title {
    font-size: 2.125rem;
  }
  .recruit-day__text {
    margin-top: 1.25rem;
    font-size: 0.75rem;
  }
  .recruit-day__timeline {
    margin-top: 3.4375rem;
  }
  .recruit-day__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .recruit-day__time {
    max-width: 4.375rem;
    font-size: 1rem;
  }
  .recruit-day__content {
    padding-bottom: 4.875rem;
    padding-left: 1.5rem;
    max-width: 28.75rem;
  }
  .recruit-day__content::before,
.recruit-day__content::after {
    top: 0.15625rem;
  }
  .recruit-day__content::before {
    width: 1px;
  }
  .recruit-day__content::after {
    left: -0.28125rem;
    width: 0.625rem;
    height: 0.625rem;
  }
  .recruit-day__item:nth-child(1) .recruit-day__content::after {
    left: -1.25rem;
    top: -0.53125rem;
    width: 2.5rem;
    height: 1.875rem;
  }
  .recruit-day__item:nth-child(3) .recruit-day__content::after {
    left: -1.09375rem;
    top: -0.625rem;
    width: 2.25rem;
    height: 2.25rem;
  }
  .recruit-day__item:nth-child(5) .recruit-day__content::after {
    left: -1.09375rem;
    top: -0.3125rem;
    width: 1.46875rem;
    height: 1.59375rem;
  }
  .recruit-day__item-title {
    font-size: 1.125rem;
  }
  .recruit-day__content p {
    font-size: 0.75rem;
    margin-top: 0.46875rem;
  }
  .recruit-day__img {
    max-width: 6.25rem;
  }
  .recruit-day__item:nth-child(1) .recruit-day__img {
    top: 6.75rem;
  }
  .recruit-day__item:nth-child(3) .recruit-day__img {
    top: -4.6875rem;
  }
  .recruit-day__item:nth-child(5) .recruit-day__img {
    top: -4.6875rem;
  }
}
/* ==================================================
*  apply
================================================== */
.recruit-apply {
  background: linear-gradient(90deg, #e2e9f1, #f4f8fd 78%, #fff);
  padding: 6.25rem 0 5.625rem;
  text-align: center;
}

.recruit-apply__sub-title {
  font-weight: 600;
}

.recruit-apply__text {
  margin-top: 3rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.recruit-apply__btn {
  margin-top: 4.6875rem;
  max-width: 37.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.recruit-apply__btn a {
  display: inline-block;
  width: 100%;
  background-color: #e60012;
  border: 2px solid #e60012;
  border-radius: 3.125rem;
  color: #fff;
  font-size: 1.875rem;
  line-height: 1.3333333333;
  font-weight: 600;
  text-align: center;
  padding: 1.875rem 0;
  position: relative;
  transition: all 0.3s;
}

.recruit-apply__btn a::before {
  content: "";
  border: solid #fff;
  border-width: 0 0.1875rem 0.1875rem 0;
  display: inline-block;
  padding: 0.3125rem;
  position: absolute;
  top: 50%;
  right: 2.1875rem;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s;
}

.recruit-apply__btn a:hover {
  opacity: 1;
  background-color: #fff;
  color: #e60012;
}

.recruit-apply__btn a:hover::before {
  border: solid #e60012;
  border-width: 0 0.1875rem 0.1875rem 0;
}

@media screen and (max-width: 768px) {
  .recruit-apply {
    padding: 3.75rem 0;
  }
  .recruit-apply__text {
    margin-top: 1.5rem;
    font-size: 0.75rem;
  }
  .recruit-apply__btn {
    margin-top: 2.375rem;
    max-width: 18.75rem;
  }
  .recruit-apply__btn a {
    border: 1px solid #e60012;
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }
  .recruit-apply__btn a::before {
    border-width: 0 0.09375rem 0.09375rem 0;
    padding: 0.15625rem;
    right: 1.125rem;
  }
  .recruit-apply__btn a:hover::before {
    border-width: 0 0.09375rem 0.09375rem 0;
  }
}
/*# sourceMappingURL=style.css.map */