@charset "utf-8";

:root {
  --color-key: #A62B17;
  --color-key-lt: #FACCCE;
  --color-key-vlt: #FDEBEC;
  --color-key-2: #E63A20;
  --color-sub: #074D7C;
  --color-sub-lt: #D3DDE9;
  --color-sub-vlt: #EBEFF5;
  --gray: #585858;
  --gray-lt: #D8D8D8;
  --gray-vlt: #F1F1F1;
  --body-bg: #fff;
  --body-color: #000;
  --border-color: #CCCCCC;
  --font-base: "Noto Serif JP", serif;
  --font-size-base: 1.8rem;
  --font-size-xl: 4.8rem;
  --font-size-lg: 2.4rem;
  --font-size-sm: 1.6rem;
  --font-size-xs: 1.4rem;
  --font-weight-base: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --line-height-base: 1.8;
  --z-index-header: 10;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
p,
dl {
  font-size: inherit;
  margin: 0;
}

img {
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  line-height: initial;
  outline: none;
  font-size: inherit;
  font-family: inherit;
  width: 100%;
}

form,
label {
  margin-bottom: 0;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

dd {
  margin-bottom: 1rem;
}

a,
button {
  color: var(--body-color);
  cursor: pointer;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
}

th {
  font-weight: var(--font-weight-base);
  text-align: left;
}

th,
td {
  padding: .3em 0;
}

iframe {
  border: none;
}

html {
  font-size: .52083vw;
  scroll-padding-top: 9rem;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--body-bg);
  margin: 0;
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  line-height: var(--line-height-base);
  color: var(--body-color);
  word-break: break-all;
  overflow-wrap: break-word;
}

/* --------------------------------
  共通
-------------------------------- */
.container {
  padding: 0 32rem;
}

.slider-wrap {
  padding-inline: 5rem;
}

.splide__track::after,
.splide__track::before {
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.688vw;
  z-index: 1;
}

.splide__track::after {
  background-image: linear-gradient(90deg, var(--body-bg) 0%, rgba(255, 255, 255, 0) 100%);
  right: 0;
  transform: matrix(-1, 0, 0, 1, 0, 0)
}

.splide__track::before {
  background-image: linear-gradient(90deg, var(--body-bg) 0%, rgba(255, 255, 255, 0) 100%);
  left: 0;
}

.splide__slide {
  display: flex;
}

.splide__arrow {
  background-color: #000;
  box-shadow: 0 .15625vw 1.10416vw rgba(0, 0, 0, .1);
  height: 2.604vw;
  opacity: 1;
  width: 2.604vw;
  z-index: 2;
}

.splide__arrow::before {
  background: url(/corporate/img/icon/arrow-slider.svg) center / 100% no-repeat;
  content: "";
  display: block;
  height: 0.938vw;
  width: 0.938vw;
}

.splide__arrow--next::before {
  transform: scale(-1, 1);
}

.splide__pagination {
  bottom: 0;
  margin-top: 1.042vw;
  position: relative;
}

.splide__pagination__page {
  background-color: var(--border-color);
  height: 0.729vw;
  margin: 0.26vw;
  opacity: 1;
  width: 0.729vw;
}

.splide__pagination__page.is-active {
  background-color: var(--color-key);
  transform: scale(1);
}

/* --------------------------------
  ヘッダー
-------------------------------- */
.header {
  align-items: center;
  background-color: #fff;
  display: flex;
  height: 9rem;
  justify-content: space-between;
  left: 0;
  padding: 0 4rem;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: var(--z-index-header);
}

.header__logo-link {
  display: inline-block;
}

.header__logo-img {
  height: 4rem;
  width: auto;
}

.header__nav {
  align-items: center;
  display: flex;
  gap: 3rem;
}

.header__menus {
  align-items: center;
  display: flex;
  gap: 2rem;
}

.header__menu {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}

.header__btns {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.header__btn {
  border-radius: 10rem;
  color: #fff;
  display: grid;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  height: 5rem;
  place-content: center;
  width: 18rem;
}

.header__btn.-career {
  background-color: var(--color-sub);
}

.header__btn.-contact {
  background-color: var(--color-key);
}

.header__toggle {
  display: none;
}


/* --------------------------------
  ファーストビュー
-------------------------------- */
.hero {
  height: 72rem;
  padding: 25.5rem 0 0 12rem;
  position: relative;
  z-index: 0;
}

.hero__ttl {
  font-size: 6.4rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: .025em;
  line-height: 1.6;
  text-shadow: 0 0 1.6rem #fff, 0 0 1.6rem #fff, 0 0 1.6rem #fff, 0 0 1.6rem #fff, 0 0 1.6rem #fff;
}

.hero__img {
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 96rem;
  z-index: -1;
}


/* --------------------------------
  コンテンツ
-------------------------------- */
.content {
  padding-top: 12rem;
}

.content__ttl {
  font-size: 3.6rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: .025em;
  line-height: 1.4;
  margin-bottom: 4rem;
}

.content__ttl::before {
  content: attr(data-en);
  color: var(--color-key);
  display: block;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: .025em;
}

.content__sub-ttl {
  border-left: .5rem solid var(--color-key);
  font-size: 3.2rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: .025em;
  line-height: 1.4;
  margin: 12rem 0 3rem;
  padding-left: 2rem;
}

.business-lists {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}

.business-list {
  text-align: center;
}

.business-list__img {
  border: 1px solid var(--border-color);
  width: 100%;
}

.business-list__ttl {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  margin-top: 1.5rem;
}

.business-list__ttl-sm {
  display: block;
  font-size: 1.8rem;
}

.achieve-lists {
  display: grid;
  gap: 4rem;
  grid-template-columns: 40rem 1fr;
  grid-template-rows: repeat(2, 1fr);
}

.achieve-list:nth-child(1) {
  grid-row: span 2 / span 2;
}

.achieve-list__img {
  width: 100%;
}

.mission {
  background-color: var(--gray-vlt);
  margin-top: 12rem;
  padding-bottom: 12rem;
}

.mission__inner {
  padding-right: 0;
}

.mission .content__ttl {
  margin-bottom: 0;
}

.mission__body {
  min-height: 66rem;
  position: relative;
  z-index: 0;
}

.mission__img {
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -4rem;
  width: 96rem;
  z-index: -1;
}

.mission__box {
  background-color: #fff;
  box-shadow: 0 1rem 4rem rgb(0 0 0 / 10%);
  padding: 5rem 6rem 6rem;
  margin: 4rem -17rem 0 0;
  width: 81rem;
}

.mission__ttl {
  font-size: 3.6rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: .025em;
  line-height: 1.6;
  margin-left: -2rem;
}

.mission__txt {
  font-size: 1.8rem;
  margin-top: 1.5em;
}

.mentor-read {
  font-size: 4rem;
  font-weight: var(--font-weight-black);
  letter-spacing: .05em;
  line-height: 2.2;
  text-align: center;
}

.mentor-em {
  border: .2rem solid;
  font-size: 4.8rem;
  padding: .6rem 2rem 1rem;
  margin: 0 1rem;
  text-shadow: none;
  position: relative;
}

.mentor-em.--01 {
  color: #fff;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #000 0%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.mentor-em.--02 {
  background-color: #fff;
}

.participates {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}

.participate {
  background-color: var(--gray-vlt);
  padding-top: 8rem;
  position: relative;
}

.participate__ttl {
  background-color: var(--body-color);
  color: #fff;
  display: grid;
  font-size: 2.2rem;
  height: 8rem;
  left: 0;
  line-height: 1.4;
  place-content: center;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

.participate__head {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: 13rem 1fr;
  padding: 2rem 0 0 2rem;
}

.participate__img {
  border-radius: 50%;
}

.participate__label {
  font-size: 2rem;
  line-height: 1.4;
}

.participate__name {
  font-size: 3rem;
  letter-spacing: .1em;
}

.participate__body {
  padding: 2rem;
}

.ann {
  color: var(--gray);
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 1em;
  padding-left: 1em;
  text-indent: -1em;
}

.mentor {
  margin: 0 0.521vw;
}

.mentor-staff {
  background-image: linear-gradient(180deg, #000, #585858);
}

.mentor-user {
  background-image: linear-gradient(180deg, #000, #585858);
}

.mentor__head {
  position: relative;
  padding: 0.625vw 0.781vw 0 0;
  z-index: 0;
  height: 7.031vw;
}

.mentor__name {
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: .05em;
  line-height: 1;
  margin: 0.781vw 0 1.042vw;
  padding-left: 1.563vw;
}

.mentor__label {
  background-color: #fff;
  border-radius: 0 10em 10em 0;
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
  padding: 0.521vw 1.563vw 0.625vw;
}

.mentor-staff .mentor__label {
  color: var(--body-color);
}

.mentor-user .mentor__label {
  color: var(--body-color);
}

.mentor__img {
  bottom: 0;
  opacity: .2;
  position: absolute;
  right: 0.781vw;
  width: 6.25vw;
  z-index: -1;
}

.mentor__body {
  padding: 0 0.208vw 0.208vw;
}

.mentor__body-inner {
  background-color: #fff;
  min-height: 22rem;
  padding: 0.781vw;
}

.mentor__list li {
  font-size: 1.8rem;
  line-height: 1.5;
  padding-left: 0.781vw;
  text-indent: -0.781vw;
}

.mentor__list li::before {
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 0.417vw;
  margin-right: 0.365vw;
  transform: translateY(-.1em);
  width: 0.417vw;
}

.mentor-staff li::before {
  background-color: #a62b17;
}

.mentor-user li::before {
  background-color: #B75545;
}

.mentor__list li+li {
  margin-top: .6em;
}

.careers-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.careers-list {
  align-items: center;
  background: center / cover no-repeat;
  color: #fff;
  display: flex;
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  height: 48rem;
  letter-spacing: .025em;
  line-height: 1.4;
  padding: 32rem 5rem 3.5rem;
  position: relative;
  text-shadow: 0 0 1rem rgb(0 0 0 / 20%);
  z-index: 0;
}

.careers-list::before {
  background-color: var(--color-key);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 1rem;
  z-index: 1;
}

.careers-list::after {
  background: url(/corporate/img/careers-arrow.svg) center / 100% no-repeat;
  bottom: 5rem;
  content: "";
  height: 8rem;
  position: absolute;
  right: 5rem;
  width: 8rem;
  z-index: 1;
}

.careers-list:nth-child(1) {
  background-image: url(/corporate/img/careers-01.jpg);
}

.careers-list:nth-child(2) {
  background-image: url(/corporate/img/careers-02.jpg);
}

.careers-list:nth-child(3) {
  background-image: url(/corporate/img/careers-03.jpg);
}

.message {
  background-color: var(--gray-vlt);
  padding-bottom: 12rem;
}

.message__body {
  display: grid;
  gap: 8rem;
  grid-template-columns: 1fr 40rem;
}

.message__ttl {
  font-size: 3.6rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: .025em;
  line-height: 1.6;
}

.message__txt {
  font-size: 1.8rem;
  margin-top: 1.5em;
}

.message__ceo {
  align-items: center;
  background-color: #fff;
  border-top: .5rem solid var(--color-key);
  box-shadow: 0 1rem 4rem rgb(0 0 0 / 10%);
  display: flex;
  gap: 6rem;
  margin-top: 6rem;
  padding: 4rem 6rem;
}

.message__ceo-name {
  font-weight: var(--font-weight-bold);
  letter-spacing: .025em;
  line-height: 1.4;
  flex-shrink: 0;
}

.message__ceo-name-sub {
  display: block;
  font-size: 1.8rem;
}

.message__ceo-name-main {
  display: block;
  font-size: 2.8rem;
}

.message__ceo-name-en {
  display: block;
  font-size: 1.6rem;
}

.message__ceo-txt {
  font-size: 1.6rem;
}

.news__box {
  background-color: #fff;
  border-top: 1rem solid var(--color-key);
  box-shadow: 0 1rem 4rem rgb(0 0 0 / 10%);
  padding: 6rem 14rem 8rem;
}

.news__ttl {
  color: var(--color-key);
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
}

.news__list {
  background: url(/corporate/img/icon/arrow-news.svg) right center / 2.4rem no-repeat;
  border-bottom: 1px solid var(--border-color);
  display: block;
  padding: 2.5rem 4rem 3rem 0;
}

.news__list-time {
  color: var(--gray);
  display: block;
  font-size: 1.6rem;
}

.news__list-ttl {
  display: block;
  font-size: 2.2rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: .025em;
  line-height: 1.6;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 100rem;
  justify-content: space-between;
}

.about__dl-list {
  border-bottom: 1px solid var(--border-color);
  display: grid;
  font-size: 1.8rem;
  gap: 2rem;
  grid-template-columns: 26rem 1fr;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  padding-bottom: 2.2rem;
}

.about__dl-dt {
  font-weight: var(--font-weight-bold);
}

.about__dl-dd {
  margin: 0;
}

.about__map {
  height: 45rem;
  margin-top: 3.8rem;
  overflow: hidden;
  position: relative;
}

.about__map iframe {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact {
  background-color: var(--gray-vlt);
  margin-top: 12rem;
  padding-bottom: 12rem;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 80rem;
  justify-content: space-between;
}

/* --------------------------------
  フッター
-------------------------------- */
.footer {
  background-color: #000;
  padding-bottom: 4rem;
}

.footer__head {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding: 6rem 0;
}

.footer__lists {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.footer__lists+.footer__lists {
  margin-top: 2.4rem;
}

.footer__link,
.footer__lists a {
  color: #fff;
  display: inline-flex;
  gap: 1rem;
  line-height: 1;
}

.footer__link-img {
  height: 1em;
  width: auto;
}

.footer__copy {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 4rem;
  opacity: .6;
  text-align: center;
}

/* --------------------------------
  ユーティリティー
-------------------------------- */
.text-key {
  color: var(--color-key);
}

.text-key-2 {
  color: var(--color-key-2);
}

.text-white {
  color: #fff;
}

.text-under {
  border-bottom: .2rem solid;
}

.text-under-key {
  border-bottom: .2rem solid var(--color-key);
}

.fw-bold {
  font-weight: var(--font-weight-bold);
}

.fw-black {
  font-weight: var(--font-weight-black);
}

.text-center {
  text-align: center;
}

.text-indent {
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}

.link {
  color: var(--color-key);
  text-decoration: underline;
}

/* ================================================================
  hoverアニメーション
================================================================ */
@media (hover: hover) and (pointer: fine) {

  .header__menu,
  .header__btn,
  .careers-list,
  .news__list {
    transition: opacity .3s;
  }

  .header__menu:hover,
  .header__btn:hover,
  .careers-list:hover,
  .news__list:hover {
    opacity: .7;
  }

  .link:hover {
    text-decoration: none;
  }

}

/* ================================================================
  PC版のみレイアウト
================================================================ */
@media screen and (min-width: 768px) {

  /* --------------------------------
    ユーティリティー
  -------------------------------- */
  .pc-none {
    display: none;
  }

}

/* ================================================================
  スマホ版レイアウト
================================================================ */
@media screen and (max-width: 767px) {
  :root {
    --font-size-base: 1.6rem;
    --font-size-xl: 3rem;
    --font-size-lg: 1.6rem;
    --font-size-sm: 1.4rem;
    --font-size-xs: 1.2rem;
  }

  img {
    width: 100%;
  }

  html {
    font-size: 2.66667vw;
    scroll-padding-top: 7rem;
  }

  /* --------------------------------
    共通
  -------------------------------- */
  .container {
    padding: 0 2rem;
  }

  .slider-wrap {
    padding-inline: 0;
  }

  .splide__track::after,
  .splide__track::before {
    width: 9.333vw;
  }

  .splide__arrow {
    height: 13.333vw;
    width: 13.333vw;
  }

  .splide__arrow::before {
    height: 4.8vw;
    width: 4.8vw;
  }

  .splide__arrow--prev {
    left: 2.667vw;
  }

  .splide__arrow--next {
    right: 2.667vw;
  }

  .splide__pagination {
    margin-top: 4vw;
  }

  .splide__pagination__page {
    height: 3.733vw;
    width: 3.733vw;
    margin: 1.333vw;
  }

  /* --------------------------------
    ヘッダー
  -------------------------------- */
  .header {
    height: 7rem;
    padding: 0 0 0 2rem;
  }

  .header__logo-img {
    height: 3rem;
  }

  .header__nav {
    align-items: start;
    background-color: #fff;
    flex-direction: column;
    gap: 1rem;
    height: 100dvh;
    left: 0;
    opacity: 0;
    padding: 9rem 4rem;
    position: absolute;
    top: 0;
    transition: .3s;
    visibility: hidden;
    width: 100%;
    z-index: -1;
  }

  .is-open .header__nav {
    opacity: 1;
    visibility: visible;
  }

  .header__menus {
    display: block;
    width: 100%;
  }

  .header__menu {
    display: block;
    padding: 1rem 0;
  }

  .header__btns {
    display: block;
    width: 100%;
  }

  .header__btn {
    margin-top: 1.5rem;
    width: 100%;
  }

  .header__toggle {
    background-color: #fff;
    display: grid;
    gap: .6rem;
    height: 7rem;
    place-content: center;
    width: 7rem;
  }

  .header__toggle-line {
    background-color: var(--body-color);
    border-radius: 1rem;
    display: block;
    height: .3rem;
    padding: 0;
    width: 2.8rem;
  }

  .header__toggle-line:nth-child(1),
  .header__toggle-line:nth-child(3) {
    transition: transform .3s;
  }

  .header__toggle-line:nth-child(2) {
    transition: opacity .3s;
  }

  .is-open .header__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(.65rem, .65rem);
  }

  .is-open .header__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .is-open .header__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(.6rem, -.6rem);
  }

  /* --------------------------------
    ファーストビュー
  -------------------------------- */
  .hero {
    height: auto;
    padding: 2rem 0 0 2rem;
  }

  .hero__ttl {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    text-shadow: none;
  }

  .hero__img {
    position: static;
    width: 100%;
  }

  /* --------------------------------
    コンテンツ
  -------------------------------- */
  .content {
    padding-top: 6rem;
  }

  .content__ttl {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }

  .content__ttl::before {
    font-size: 1.6rem;
  }

  .content__sub-ttl {
    border-width: .4rem;
    font-size: 2.2rem;
    margin: 6rem 0 2rem;
    padding-left: 1.6rem;
  }

  .business-lists {
    grid-template-columns: 1fr;
  }

  .business-list__img {
    max-width: 25.5rem;
  }

  .business-list__ttl {
    font-size: 2rem;
  }

  .business-list__ttl-sm {
    font-size: 1.5rem;
  }

  .achieve-lists {
    gap: 2rem;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .mission {
    margin-top: 6rem;
    padding-bottom: 6rem;
  }

  .mission__inner {
    padding-inline: 0;
  }

  .mission .content__ttl {
    margin-bottom: 3rem;
    padding-inline: 2rem;
  }

  .mission__body {
    min-height: auto;
  }

  .mission__img {
    position: static;
    width: 100%;
  }

  .mission__box {
    margin: -8rem auto 0;
    padding: 2.5rem 2rem 3rem;
    position: relative;
    width: calc(100% - 4rem);
  }

  .mission__ttl {
    font-size: 1.8rem;
    margin-left: -1rem;
  }

  .mission__txt {
    font-size: 1.4rem;
    margin-top: 1.25em;
  }

  .mentor-read {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 2.4;
  }

  .mentor-em {
    border-width: 1px;
    font-size: 1.8rem;
    margin: 0 .3rem;
    padding: .3rem .6rem .5rem;
  }

  .participates {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .participate {
    padding-top: 0;
  }

  .participate__ttl {
    display: inline-block;
    font-size: 1.3rem;
    height: auto;
    line-height: 1.3;
    margin-bottom: .5rem;
    padding: .2rem 1rem .35rem;
    position: static;
    text-align: left;
    width: auto;
  }

  .participate__head {
    gap: 1.5rem;
    grid-template-columns: 7rem 1fr;
    padding: 1rem 0 0 1.5rem;
  }

  .participate__body {
    font-size: 1.4rem;
    padding: .5rem 1.5rem 1.5rem;
  }

  .participate__label {
    font-size: 1.4rem;
  }

  .participate__name {
    font-size: 1.8rem;
  }

  .ann {
    font-size: 1.2rem;
    text-align: left;
  }

  .mentor {
    margin: 0 1.333vw;
  }

  .mentor__head {
    height: 26.667vw;
    padding: 4vw 4vw 0 0;
  }

  .mentor__name {
    font-size: 2.2rem;
    margin: 1.333vw 0 4vw 0;
    padding-left: 5.333vw;
  }

  .mentor__label {
    font-size: 1.6rem;
    padding: 1.6vw 5.333vw 2.133vw;
  }

  .mentor__img {
    right: 4vw;
    width: 24vw;
  }

  .mentor__body {
    padding: 0 1.067vw 1.067vw;
  }

  .mentor__body-inner {
    min-height: 20rem;
    padding: 4vw;
  }

  .mentor__list li {
    font-size: 1.4rem;
    text-indent: -3.2vw;
    padding-left: 3.2vw;
  }

  .mentor__list li::before {
    height: 1.6vw;
    margin-right: 1.6vw;
    width: 1.6vw;
  }

  .careers-lists {
    grid-template-columns: 1fr;
  }

  .careers-list {
    font-size: 2.4rem;
    height: 28rem;
    padding: 18.5rem 3rem 2rem;
  }

  .careers-list::before {
    width: .8rem;
  }

  .careers-list::after {
    bottom: 3rem;
    height: 4.6rem;
    right: 3rem;
    width: 4.6rem;
  }

  .message {
    padding-bottom: 6rem;
  }

  .message__body {
    display: block;
  }

  .message__ttl {
    font-size: 2.4rem;
  }

  .message__txt {
    font-size: 1.4rem;
  }

  .message__ceo {
    align-items: start;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
    padding: 1.5rem 2rem 2rem;
  }

  .message__ceo-name {
    min-height: 9rem;
    padding: .8rem 0 0 11rem;
    position: relative;
  }

  .message__ceo-name::before {
    background: url(/corporate/img/message-ceo-sp.jpg) center / 100% no-repeat;
    border-radius: 50%;
    content: "";
    display: block;
    height: 9rem;
    left: 0;
    position: absolute;
    top: 0;
    width: 9rem;
  }

  .message__ceo-name-sub {
    font-size: 1.6rem;
  }

  .message__ceo-name-main {
    font-size: 2.4rem;
  }

  .message__ceo-name-en {
    font-size: 1.4rem;
  }

  .message__ceo-txt {
    font-size: 1.2rem;
  }

  .news__box {
    padding: 1.6rem 2rem 3rem;
  }

  .news__ttl {
    font-size: 1.6rem;
    margin-bottom: .5rem;
  }

  .news__list {
    background-size: 1.6rem;
    padding: 1.2rem 3rem 1.5rem 0;
  }

  .news__list-time {
    font-size: 1.2rem;
  }

  .news__list-ttl {
    font-size: 1.4rem;
  }

  .about__inner {
    display: block;
  }

  .about__dl-list {
    font-size: 1.4rem;
    grid-template-columns: 9rem 1fr;
    margin-bottom: 1.7rem;
    padding-bottom: 1.8rem;
  }

  .about__map {
    margin-top: 3.2rem;
    height: 30rem;
  }

  .contact__inner {
    display: block;
  }

  .contact__head {
    margin-bottom: 4rem;
  }

  .content__read {
    font-size: 1.4rem;
  }

  .contact {
    margin-top: 6rem;
    padding-bottom: 6rem;
  }

  /* --------------------------------
    フッター
  -------------------------------- */
  .footer {
    padding-bottom: 3rem;
  }

  .footer__head {
    padding: 4rem 0;
  }

  .footer__lists {
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }

  .footer__link,
  .footer__lists a {
    gap: .8rem;
    font-size: 1.4rem;
  }

  .footer__copy {
    font-size: 1.2rem;
    margin-top: 3rem;
  }

  /* --------------------------------
    ユーティリティー
  -------------------------------- */
  .sp-none {
    display: none !important;
  }
}