@charset "UTF-8";
/* ************************************** _
タイトル：home.css
概要：home用css
更新：2022.08.03
_ ************************************** */
/* =========================================================================
   CSS変数の定義  _custom-property

   サイトの基本的な色指定は、CSS変数の値として設定する。
============================================================================ */
:root {
  --color__White: #fff;
  --color__WhiteAlpha: 255,255,255;
  --color__Black: #333;
  --color__BlackAlpha: 51,51,51;
  --color__BlackL: #404040;
  --color__Primary: #c3002f;
  --color__PrimaryHover: #d40031;
  --color__Secondary: #ff887c;
  --color__Bg: #eee;
  --color__BgSub: #ffedeb;
  --color__Gradation: linear-gradient(90deg, var(--color__Primary) 0%, var(--color__Secondary) 100%);
  --color__Line: #999;
  --color__LineL: #ccc;
  --color__Link: #3688BA;
  --color__LinkHover: #23527c;
  --color__Interview_m: #900101;
}

/* =========================================================================
   メインスライダー 背景画像指定

   スライダーの画像指定は、CSS変数の値としてここで設定する。
============================================================================ */
:root {
  --url__slide01: url("../images/home/img_home_hero_01.jpg");
  --url__slide01_mobile: url("../images/home/img_home_hero_01_mobail.jpg");
  --url__slide02: url("../images/home/img_home_hero_02.jpg");
  --url__slide02_mobile: url("../images/home/img_home_hero_02_mobail.jpg");
  --url__slide03: url("../images/home/img_home_hero_03.jpg");
  --url__slide03_mobile: url("../images/home/img_home_hero_03_mobail.jpg");
  --url__slide04: url("../images/home/img_home_hero_04.jpg");
  --url__slide04_mobile: url("../images/home/img_home_hero_04_mobail.jpg");
  --url__slide05: url("../images/home/img_home_hero_05.jpg");
  --url__slide05_mobile: url("../images/home/img_home_hero_05_mobail.jpg");
}

/* =========================================================================
   _setting
============================================================================ */
/* kill 'Browser standard style'
---------------------------------------------------------------------------- */
body, h1, h2, h3, h4, h5, h6, div, p, span, ul, ol, li, dl, dt, dd, table, tr, th, td, form, select, option, address, pre, strong, em, figure {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
  font-style: normal;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

/* Re style
---------------------------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

a {
  -webkit-transition: 0.4s color;
  transition: 0.4s color;
}

a:link, a:visited {
  color: var(--color__Link);
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: var(--color__LinkHover);
}

a img,
a picture {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

a:hover img,
a:hover picture, a:active img,
a:active picture, a:focus img,
a:focus picture {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  opacity: .7;
}

@media screen and (max-width: 768px) {
  a [href^="tel:"] {
    pointer-events: none;
  }
}

em {
  font-style: normal;
}

picture {
  display: inline-block;
}

img,
picture {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
}

li {
  list-style: none;
}

p {
  margin-bottom: 20px;
}

strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
}

/* html5
---------------------------------------------------------------------------- */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* body
---------------------------------------------------------------------------- */
body {
  background-color: var(--color__White, #fff);
  background-size: auto;
  color: var(--color__Black, #333);
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", sans-serif, Arial, Helvetica;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  overflow-x: hidden;
  padding: 0;
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 736px) {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 414px) {
  body {
    font-size: 1.5rem;
  }
}

/* ボタン
---------------------------------------------------------------------------- */
/* ボタン */
.entry-btn {
  background: var(--color__Primary);
  font-size: 1.5rem;
  max-width: 650px;
  margin: 30px auto 0 auto;
  width: 100%;
}

.entry-btn a {
  color: var(--color__White, #fff);
  display: block;
  font-weight: bold;
  height: 70px;
  line-height: 70px;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.entry-btn a::before {
  content: '';
  border: 0;
  border-top: solid 2px var(--color__White, #fff);
  border-right: solid 2px var(--color__White, #fff);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  height: 10px;
  margin-top: -4px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: rotate(45deg);
  width: 10px;
}

.entry-btn a:hover, .entry-btn a:active, .entry-btn a:focus {
  background: var(--color__PrimaryHover);
}

.entry-btn.type--short {
  max-width: 320px;
}

@media screen and (max-width: 736px) {
  .entry-btn {
    width: 90%;
    margin: 20px auto 0 auto !important;
  }
  .entry-btn a {
    height: 60px;
    line-height: 60px;
  }
}

/* カテゴリ内メニュー（小さい灰色ボタン） */
ul.inner-menu,
.inner-menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 50px 0;
}

ul.inner-menu li,
.inner-menu li {
  margin: 10px;
  background: var(--color__Bg);
}

ul.inner-menu li a,
.inner-menu li a {
  display: block;
  padding: 10px 30px 10px 30px;
  width: 100%;
  height: 100%;
  color: var(--color__Black, #333);
  font-weight: bold;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

ul.inner-menu li a::before,
.inner-menu li a::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px var(--color__Black, #333);
  border-right: solid 2px var(--color__Black, #333);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -4px;
}

ul.inner-menu li a:hover,
.inner-menu li a:hover {
  color: var(--color__White, #fff);
  background: var(--color__Primary);
}

ul.inner-menu li a:hover::before,
.inner-menu li a:hover::before {
  border-top: solid 2px var(--color__White, #fff);
  border-right: solid 2px var(--color__White, #fff);
}

@media screen and (max-width: 1024px) {
  ul.inner-menu,
  .inner-menu {
    margin: 0 0 10px 0;
  }
}

@media screen and (max-width: 736px) {
  ul.inner-menu,
  .inner-menu {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 0 1px 20px;
  }
  ul.inner-menu li,
  .inner-menu li {
    width: 47%;
    margin: 1px;
  }
  ul.inner-menu li a,
  .inner-menu li a {
    padding: 15px 15px 15px 10px;
    font-size: 0.6em;
  }
}

/* 見出し
---------------------------------------------------------------------------- */
.heading--alphabet {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  font-display: swap;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 80px;
  padding-top: calc(84px + 14px + 14px + 24px);
  position: relative;
  text-align: center;
  width: 100%;
}

.heading--alphabet::before {
  font-family: 'Hind', sans-serif;
  font-size: 8.4rem;
  font-weight: 700;
  font-display: swap;
  content: attr(data-title);
  display: inline-block;
  height: 84px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.heading--alphabet::after {
  bottom: 0;
  color: var(--color__Primary);
  content: "■　■　■";
  font-size: 1.4rem;
  height: 14px;
  left: 0;
  letter-spacing: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: calc(84px + 14px);
  width: 6em;
}

.heading--alphabet.onGradation::after {
  color: var(--color__Black);
}

@media screen and (max-width: 1024px) {
  .heading--alphabet {
    font-size: 3.5rem;
    margin-bottom: 70px;
    padding-top: calc(74px + 13px + 13px + 20px);
  }
  .heading--alphabet::before {
    font-size: 7.0rem;
    height: 74px;
  }
  .heading--alphabet::after {
    font-size: 1.3rem;
    height: 13px;
    top: calc(74px + 13px);
    width: 6em;
  }
}

@media screen and (max-width: 736px) {
  .heading--alphabet {
    font-size: 2.4rem;
    letter-spacing: 0.02em;
    margin-bottom: 40px;
    padding-top: calc(35px + 10px + 10px + 12px);
  }
  .heading--alphabet::before {
    font-size: 4.2rem;
    height: 35px;
  }
  .heading--alphabet::after {
    font-size: 1.0rem;
    height: 10px;
    top: calc(35px + 10px);
    width: 6em;
  }
}

@media screen and (max-width: 414px) {
  .heading--alphabet {
    font-size: 2.1rem;
  }
  .heading--alphabet::before {
    font-size: 3.74rem;
  }
}

.heading--overline {
  color: var(--color__Primary);
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  position: relative;
}

.heading--overline::before {
  background-color: var(--color__Primary);
  bottom: 0;
  content: "";
  height: 4px;
  margin: auto 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.heading--overline span {
  background-color: var(--color__White);
  display: inline-block;
  padding-right: 0.75em;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .heading--overline {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 736px) {
  .heading--overline {
    font-size: 2.0rem;
    letter-spacing: 0;
    margin-bottom: 30px;
  }
  .heading--overline::before {
    height: 2px;
  }
  .heading--overline span {
    padding-right: 0.75em;
  }
}

@media screen and (max-width: 414px) {
  .heading--overline {
    font-size: 1.8rem;
  }
}

/* 段落レイアウト
---------------------------------------------------------------------------- */
.sectionOuter {
  margin: 0 auto;
  position: relative;
  max-width: 100vw;
  padding: 150px 0;
  width: 100%;
}

.sectionInner {
  margin: 0 auto;
  max-width: 1260px;
  padding: 0 30px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .sectionOuter {
    padding: 110px 0;
  }
}

@media screen and (max-width: 736px) {
  .sectionOuter {
    padding: 70px 0;
  }
  .sectionInner {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 414px) {
  .sectionInner {
    padding: 0 15px;
  }
}

/* ヒーローエリア
---------------------------------------------------------------------------- */
.homeHero {
  display: block;
  position: relative;
  /* Swiper デフォルトスタイルの上書き */
  /* Swiper デフォルトスタイルの上書き ここまで */
}

.homeHero .swiper-pagination-progressbar {
  background: var(--color__Black);
}

.homeHero .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--color__Primary);
}

.homeHero .swiper-horizontal > .swiper-pagination-progressbar,
.homeHero .swiper-pagination-progressbar.swiper-pagination-horizontal {
  height: 10px;
}

.homeHero .swiper-button-next,
.homeHero .swiper-button-prev,
.homeHero .swiper-rtl .swiper-button-next,
.homeHero .swiper-rtl .swiper-button-prev {
  background-color: var(--color__Bg);
  border: none;
  border-radius: 50%;
  color: var(--color__Black, #333);
  height: 60px;
  opacity: 0.4;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: 60px;
}

.homeHero .swiper-button-next::after,
.homeHero .swiper-button-prev::after,
.homeHero .swiper-rtl .swiper-button-next::after,
.homeHero .swiper-rtl .swiper-button-prev::after {
  font-size: 37px;
}

.homeHero .swiper-button-next:hover,
.homeHero .swiper-button-prev:hover,
.homeHero .swiper-rtl .swiper-button-next:hover,
.homeHero .swiper-rtl .swiper-button-prev:hover {
  background-color: var(--color__Primary);
  color: var(--color__White, #fff);
  opacity: 0.7;
}

.homeHero .swiper-button-next::after {
  margin-left: 6px;
  margin-top: 2px;
}

.homeHero .swiper-button-prev:after {
  margin-left: -3px;
  margin-top: 2px;
}

.homeHero .heroSwiper {
  height: calc(100vh - 100px);
  height: calc(100dvh - 100px);
  width: 100%;
}

.homeHero .heroPerson {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.homeHero .heroPerson.slide--01 {
  background-image: var(--url__slide01);
}

.homeHero .heroPerson.slide--02 {
  background-image: var(--url__slide02);
}

.homeHero .heroPerson.slide--03 {
  background-image: var(--url__slide03);
}

.homeHero .heroPerson.slide--04 {
  background-image: var(--url__slide04);
}

.homeHero .heroPerson.slide--05 {
  background-image: var(--url__slide05);
}

.homeHero .heroPerson .sliderLink {
  display: block;
  height: calc(100vh - 100px);
  width: 100%;
}

.homeHero .heroPerson .balloonWrap {
  background-color: var(--color__Black, #333);
  bottom: 30vh;
  height: 160px;
  left: 100px;
  position: absolute;
  width: 600px;
  z-index: 2;
}

.homeHero .heroPerson .balloonWrap .arrow {
  background-color: var(--color__White);
  content: "";
  display: block;
  height: 440px;
  max-height: 43vh;
  left: 100px;
  position: absolute;
  top: -150px;
  width: 4px;
  z-index: 2;
}

.homeHero .heroPerson .balloonWrap .arrow::before {
  background-color: var(--color__White);
  content: "";
  display: block;
  height: 100px;
  left: -13px;
  position: absolute;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  bottom: 0;
  width: 4px;
  z-index: 2;
}

.homeHero .heroPerson .balloonWrap .arrow::after {
  background-color: var(--color__White);
  content: "";
  display: block;
  height: 100px;
  left: 13px;
  position: absolute;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  bottom: 0;
  width: 4px;
  z-index: 2;
}

.homeHero .heroPerson .balloonWrap .balloon {
  background-color: var(--color__Black, #333);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 160px;
  position: absolute;
  width: 600px;
  z-index: 3;
}

.homeHero .heroPerson .balloonWrap .balloon::before {
  color: var(--color__Primary);
  content: "Culture";
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 11rem;
  font-weight: 400;
  font-display: swap;
  left: -4px;
  position: absolute;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
  top: -105px;
  z-index: 3;
}

.homeHero .heroPerson .balloonWrap .balloon .words {
  color: var(--color__White, #fff);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1;
  margin: 0;
  z-index: 3;
}

.homeHero .heroPerson .balloonWrap .balloon .words.line--1 {
  font-size: 4.8rem;
}

.homeHero .heroPerson .balloonWrap .balloon .words.line--2 {
  font-size: 4.8rem;
}

.homeHero .heroBand {
  background: var(--color__Gradation);
  bottom: 0;
  color: var(--color__White, #fff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 300px;
  max-height: 25vh;
  padding: 0 12.5vw;
  position: fixed;
  width: 100%;
}

.homeHero .heroBand.inflate--left {
  padding: 0 12.5vw 0 calc(12.5vw + 0.75em);
}

.homeHero .heroBand.inflate--right {
  padding: 0 calc(12.5vw + 0.75em) 0 12.5vw;
}

.homeHero .heroBand .lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1;
  margin-bottom: 0;
  text-align: center;
}

.homeHero .heroBand .lead span {
  display: inline-block;
  padding: 5px 0;
}

.homeHero .heroBand .lead span.leadCut {
  display: none;
}

.homeHero .heroBand .deco--t,
.homeHero .heroBand .deco--c {
  display: block;
  height: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.homeHero .heroBand .deco--t::before, .homeHero .heroBand .deco--t::after,
.homeHero .heroBand .deco--c::before,
.homeHero .heroBand .deco--c::after {
  content: "";
  display: block;
  position: absolute;
}

.homeHero .heroBand .deco--t::before, .homeHero .heroBand .deco--t::after {
  height: 40px;
  width: 40px;
}

.homeHero .heroBand .deco--t::before {
  background-color: var(--color__Primary);
  left: 120px;
  top: -60px;
}

.homeHero .heroBand .deco--t::after {
  background-color: var(--color__Secondary);
  right: 150px;
  top: -170px;
}

.homeHero .heroBand .deco--c::before {
  background-color: var(--color__Secondary);
  height: 100px;
  left: 10px;
  top: 40px;
  width: 100px;
}

.homeHero .heroBand .deco--c::after {
  background-color: var(--color__Black);
  height: 60px;
  right: 70px;
  top: -40px;
  width: 60px;
}

.homeHero .deco--b {
  display: block;
  bottom: 0;
  height: 0;
  position: absolute;
  top: auto;
  width: 100%;
  z-index: 1;
}

.homeHero .deco--b::before, .homeHero .deco--b::after {
  content: "";
  display: block;
  position: absolute;
}

.homeHero .deco--b::before {
  background-color: var(--color__Black);
  height: 60px;
  left: 80px;
  bottom: -20px;
  width: 60px;
}

.homeHero .deco--b::after {
  background-color: var(--color__Primary);
  bottom: 20px;
  height: 100px;
  right: 130px;
  width: 100px;
}

@media screen and (max-width: 1200px) {
  .homeHero .heroPerson .balloonWrap {
    height: 140px;
    width: 500px;
  }
  .homeHero .heroPerson .balloonWrap .arrow {
    height: 400px;
    left: 80px;
  }
  .homeHero .heroPerson .balloonWrap .arrow::before {
    height: 90px;
    left: -12px;
  }
  .homeHero .heroPerson .balloonWrap .arrow::after {
    height: 90px;
    left: 12px;
  }
  .homeHero .heroPerson .balloonWrap .balloon {
    height: 140px;
    width: 500px;
  }
  .homeHero .heroPerson .balloonWrap .balloon::before {
    font-size: 10.0rem;
    top: -95px;
  }
  .homeHero .heroPerson .balloonWrap .balloon .words {
    font-size: 5.1rem;
  }
  .homeHero .heroPerson .balloonWrap .balloon .words.line--1 {
    font-size: 4.3rem;
  }
  .homeHero .heroPerson .balloonWrap .balloon .words.line--2 {
    font-size: 4.3rem;
  }
  .homeHero .heroBand .lead {
    font-size: 7.8rem;
  }
  .homeHero .heroBand .deco--t::before, .homeHero .heroBand .deco--t::after {
    height: 35px;
    width: 35px;
  }
  .homeHero .heroBand .deco--c::before {
    height: 90px;
    width: 90px;
  }
  .homeHero .heroBand .deco--c::after {
    height: 55px;
    width: 55px;
  }
  .homeHero .deco--b::before {
    height: 55px;
    width: 55px;
  }
  .homeHero .deco--b::after {
    height: 90px;
    width: 90px;
  }
}

@media screen and (max-width: 1024px) {
  .homeHero .heroSwiper {
    height: calc(100vh - 90px);
  }
  .homeHero .heroPerson .sliderLink {
    height: calc(100vh - 90px);
  }
  .homeHero .heroPerson .balloonWrap {
    height: 120px;
    left: 90px;
    width: 400px;
  }
  .homeHero .heroPerson .balloonWrap .arrow {
    height: 360px;
    left: 70px;
  }
  .homeHero .heroPerson .balloonWrap .arrow::before {
    height: 80px;
    left: -11px;
  }
  .homeHero .heroPerson .balloonWrap .arrow::after {
    height: 80px;
    left: 11px;
  }
  .homeHero .heroPerson .balloonWrap .balloon {
    height: 120px;
    width: 400px;
  }
  .homeHero .heroPerson .balloonWrap .balloon::before {
    font-size: 8.0rem;
    left: -2px;
    top: -75px;
  }
  .homeHero .heroPerson .balloonWrap .balloon .words {
    font-size: 4.2rem;
  }
  .homeHero .heroPerson .balloonWrap .balloon .words.line--1 {
    font-size: 3.4rem;
  }
  .homeHero .heroPerson .balloonWrap .balloon .words.line--2 {
    font-size: 3.4rem;
  }
  .homeHero .heroBand .lead {
    font-size: 7.0rem;
  }
  .homeHero .heroBand .deco--t::before, .homeHero .heroBand .deco--t::after {
    height: 25px;
    width: 25px;
  }
  .homeHero .heroBand .deco--t::before {
    left: 60px;
    top: -40px;
  }
  .homeHero .heroBand .deco--t::after {
    right: 75px;
    top: -105px;
  }
  .homeHero .heroBand .deco--c::before {
    height: 70px;
    left: 10px;
    top: 20px;
    width: 70px;
  }
  .homeHero .heroBand .deco--c::after {
    height: 45px;
    right: 30px;
    top: -25px;
    width: 45px;
  }
  .homeHero .deco--b::before {
    height: 45px;
    left: 60px;
    bottom: -15px;
    width: 45px;
  }
  .homeHero .deco--b::after {
    bottom: 20px;
    height: 70px;
    right: 55px;
    width: 70px;
  }
}

@media screen and (max-width: 900px) {
  .homeHero .heroPerson .balloonWrap {
    height: 100px;
    left: 55px;
  }
  .homeHero .heroPerson .balloonWrap .balloon {
    height: 100px;
  }
  .homeHero .heroBand .lead {
    font-size: 6.0rem;
  }
}

@media screen and (max-width: 736px) {
  .homeHero {
    /* Swiper デフォルトスタイルの上書き */
    /* Swiper デフォルトスタイルの上書き ここまで */
  }
  .homeHero .swiper-horizontal > .swiper-pagination-progressbar,
  .homeHero .swiper-pagination-progressbar.swiper-pagination-horizontal {
    height: 5px;
  }
  .homeHero .swiper-button-next,
  .homeHero .swiper-button-prev,
  .homeHero .swiper-rtl .swiper-button-next,
  .homeHero .swiper-rtl .swiper-button-prev {
    display: none;
  }
  .homeHero .heroSwiper {
    height: calc(100vh - 60px);
  }
  .homeHero .heroPerson.slide--01 {
    background-image: var(--url__slide01_mobile);
  }
  .homeHero .heroPerson.slide--02 {
    background-image: var(--url__slide02_mobile);
  }
  .homeHero .heroPerson.slide--03 {
    background-image: var(--url__slide03_mobile);
  }
  .homeHero .heroPerson.slide--04 {
    background-image: var(--url__slide04_mobile);
  }
  .homeHero .heroPerson.slide--05 {
    background-image: var(--url__slide05_mobile);
  }
  .homeHero .heroPerson .sliderLink {
    height: calc(100vh - 60px);
  }
  .homeHero .heroPerson .balloonWrap {
    bottom: 170px;
    height: 390px;
    max-height: 50vh;
    left: 20px;
    width: 80px;
  }
  .homeHero .heroPerson .balloonWrap .arrow {
    height: 410px;
    max-height: 56vh;
    left: 84px;
    top: 0;
    width: 2px;
    z-index: 4;
  }
  .homeHero .heroPerson .balloonWrap .arrow::before {
    height: 50px;
    left: -7px;
    width: 2px;
  }
  .homeHero .heroPerson .balloonWrap .arrow::after {
    height: 50px;
    left: 7px;
    width: 2px;
  }
  .homeHero .heroPerson .balloonWrap .balloon {
    height: 390px;
    max-height: 55vh;
    width: 80px;
  }
  .homeHero .heroPerson .balloonWrap .balloon::before {
    display: none;
  }
  .homeHero .heroPerson .balloonWrap .balloon .words {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 3.5rem;
    padding: 5px 0;
  }
  .homeHero .heroPerson .balloonWrap .balloon .words.line--1 {
    font-size: 2.8rem;
  }
  .homeHero .heroPerson .balloonWrap .balloon .words.line--2 {
    font-size: 2.8rem;
  }
  .homeHero .heroBand {
    height: 200px;
    max-height: 25vh;
    padding: 10px 20px;
  }
  .homeHero .heroBand.inflate--left {
    padding: 10px 20px 10px calc(20px + 0.75em);
  }
  .homeHero .heroBand.inflate--right {
    padding: 10px calc(20px + 0.75em) 10px 20px;
  }
  .homeHero .heroBand::before {
    color: var(--color__Primary);
    content: "Message";
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 10rem;
    font-weight: 400;
    font-display: swap;
    position: absolute;
    right: 20px;
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
    top: -85px;
    z-index: 3;
  }
  .homeHero .heroBand .lead {
    font-size: 5.0rem;
    padding-top: 30px;
  }
  .homeHero .heroBand .deco--t,
  .homeHero .heroBand .deco--c {
    display: none;
  }
  .homeHero .deco--b {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  .homeHero .heroBand::before {
    font-size: 9.0rem;
    top: -75px;
  }
  .homeHero .heroBand .lead {
    font-size: 4.4rem;
    padding-top: 25px;
    text-align: left;
  }
  .homeHero .heroBand .lead span {
    display: inline;
  }
  .homeHero .heroBand .lead span.leadCut {
    display: block;
    height: 1px;
  }
}

@media screen and (max-width: 414px) {
  .homeHero .heroPerson .sliderLink {
    height: calc(100vh - 60px);
  }
  .homeHero .heroPerson .balloonWrap {
    left: 15px;
  }
  .homeHero .heroBand {
    padding: 10px 15px;
  }
  .homeHero .heroBand::before {
    font-size: 6.5rem;
    right: 15px;
    top: -55px;
  }
  .homeHero .heroBand .lead {
    font-size: 3.3rem;
  }
}

/* 会社を知る
---------------------------------------------------------------------------- */
.homeCorporate .lead {
  line-height: 2;
  margin-bottom: 60px;
}

.homeCorporate .info {
  /* こんな会社です */
  margin-bottom: 80px;
}

.homeCorporate .info .infoList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 60px auto;
  max-width: calc(1100px + 40px);
  width: 100%;
}

.homeCorporate .info .infoList .item {
  background-color: var(--color__BgSub);
  border-radius: 0 10px 10px 10px;
  margin: 10px 20px;
  padding: 0 0 20px 0;
  text-align: center;
  width: calc((100% - 80px) / 2);
}

.homeCorporate .info .infoList .item:nth-child(-n + 2) {
  margin-top: 0;
}

.homeCorporate .info .infoList .item .heading {
  text-align: left;
  margin-bottom: 20px;
  width: 100%;
}

.homeCorporate .info .infoList .item .heading span {
  background-color: var(--color__Black, #333);
  color: var(--color__White, #fff);
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1;
  max-width: 240px;
  padding: 8px 20px;
  width: 100%;
}

.homeCorporate .info .infoList .item .dataPart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.homeCorporate .info .infoList .item .dataPart .image {
  margin-bottom: 0;
  width: 100%;
}

.homeCorporate .info .infoList .item .dataPart .text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1;
  margin: 15px 20px 0 20px;
  width: 100%;
}

.homeCorporate .info .infoList .item .dataPart .text .txt--num {
  color: var(--color__Primary);
  font-family: 'Hind', sans-serif;
  font-size: 6.5rem;
  font-weight: 700;
  font-display: swap;
  line-height: 0.9;
  padding: 0 8px;
}

.homeCorporate .info .infoList .item .dataPart .text .txt--num.small {
  font-size: 5.2rem;
}

.homeCorporate .info .infoList .item .dataPart .text.txt--note {
  font-size: 2.0rem;
  margin: 0 20px 0 20px;
}

.homeCorporate .info .infoList .item .dataPart p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .homeCorporate .lead {
    margin-bottom: 50px;
  }
  .homeCorporate .info {
    margin-bottom: 70px;
  }
  .homeCorporate .info .infoList {
    margin: 50px auto;
    max-width: 100%;
    width: 100%;
  }
  .homeCorporate .info .infoList .item {
    width: calc((100% - 20px) / 2);
  }
  .homeCorporate .info .infoList .item:nth-child(2n + 1) {
    margin: 10px 10px 10px 0;
  }
  .homeCorporate .info .infoList .item:nth-child(2n) {
    margin: 10px 0 10px 10px;
  }
  .homeCorporate .info .infoList .item:nth-child(-n + 2) {
    margin-top: 0;
  }
  .homeCorporate .info .infoList .item .heading span {
    font-size: 2.2rem;
    padding: 9px 20px;
  }
  .homeCorporate .info .infoList .item .dataPart .text {
    font-size: 2.8rem;
  }
  .homeCorporate .info .infoList .item .dataPart .text .txt--num {
    font-size: 5.0rem;
  }
  .homeCorporate .info .infoList .item .dataPart .text .txt--num.small {
    font-size: 4.0rem;
  }
  .homeCorporate .info .infoList .item .dataPart .text.txt--note {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 736px) {
  .homeCorporate .lead {
    margin-bottom: 30px;
  }
  .homeCorporate .info {
    margin-bottom: 40px;
  }
  .homeCorporate .info .infoList {
    margin: 30px auto;
    max-width: 100%;
    width: 100%;
  }
  .homeCorporate .info .infoList .item {
    padding: 0 0 10px 0;
    width: calc((100% - 10px) / 2);
  }
  .homeCorporate .info .infoList .item:nth-child(2n + 1) {
    margin: 5px 5px 5px 0;
  }
  .homeCorporate .info .infoList .item:nth-child(2n) {
    margin: 5px 0 5px 5px;
  }
  .homeCorporate .info .infoList .item:nth-child(-n + 2) {
    margin-top: 0;
  }
  .homeCorporate .info .infoList .item .heading span {
    font-size: 1.6rem;
    padding: 6px 11px;
    width: auto;
  }
  .homeCorporate .info .infoList .item .dataPart .image {
    width: 90%;
  }
  .homeCorporate .info .infoList .item .dataPart .image.type--icon img {
    max-height: 60px;
  }
  .homeCorporate .info .infoList .item .dataPart .image.type--graph img {
    max-height: 90px;
  }
  .homeCorporate .info .infoList .item .dataPart .image.type--graphOnly {
    margin-bottom: 10px;
  }
  .homeCorporate .info .infoList .item .dataPart .image.type--graphOnly img {
    max-height: 110px;
  }
  .homeCorporate .info .infoList .item .dataPart .text {
    font-size: 2.0rem;
    margin: 15px 5px 0 5px;
  }
  .homeCorporate .info .infoList .item .dataPart .text .txt--num {
    font-size: 3.8rem;
    padding: 0 2px;
  }
  .homeCorporate .info .infoList .item .dataPart .text .txt--num.small {
    font-size: 3.0rem;
  }
  .homeCorporate .info .infoList .item .dataPart .text.txt--note {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 414px) {
  .homeCorporate .info .infoList .item .heading span {
    font-size: 1.5rem;
  }
  .homeCorporate .info .infoList .item .dataPart .text {
    font-size: 1.5rem;
  }
  .homeCorporate .info .infoList .item .dataPart .text .txt--num {
    font-size: 3.0rem;
  }
  .homeCorporate .info .infoList .item .dataPart .text .txt--num.small {
    font-size: 2.4rem;
  }
  .homeCorporate .info .infoList .item .dataPart .text.txt--note {
    font-size: 1.2rem;
  }
}

.homeCorporate .merit {
  /* 福利厚生 */
}

.homeCorporate .merit .meritList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 60px auto;
  width: 100%;
}

.homeCorporate .merit .meritList .item {
  margin: 0 10px;
  text-align: center;
  width: calc((100% - 140px) / 6);
}

.homeCorporate .merit .meritList .item .heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1;
  margin-bottom: 0;
}

.homeCorporate .merit .meritList .item .image {
  background-color: var(--color__BgSub);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 140px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  vertical-align: center;
  width: 140px;
}

@media screen and (max-width: 1024px) {
  .homeCorporate .merit .meritList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 50px auto;
  }
  .homeCorporate .merit .meritList .item {
    margin: 30px 10px 0 10px;
    width: calc((100% - 140px) / 3);
  }
  .homeCorporate .merit .meritList .item:nth-child(-n + 3) {
    margin: 0 10px 0 10px;
  }
  .homeCorporate .merit .meritList .item .heading {
    font-size: 1.9rem;
  }
  .homeCorporate .merit .meritList .item .image {
    margin: 0 auto 10px auto;
  }
}

@media screen and (max-width: 736px) {
  .homeCorporate .merit .meritList {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 30px auto;
  }
  .homeCorporate .merit .meritList .item {
    margin: 20px 5px 0 5px;
    width: calc((100% - 30px) / 3);
  }
  .homeCorporate .merit .meritList .item:nth-child(-n + 3) {
    margin: 0 5px 0 5px;
  }
  .homeCorporate .merit .meritList .item .heading {
    font-size: 1.5rem;
  }
  .homeCorporate .merit .meritList .item .image {
    margin: 0 auto 10px auto;
  }
  .homeCorporate .merit .meritList .item .image {
    height: 70px;
    width: 70px;
  }
  .homeCorporate .merit .meritList .item .image img {
    max-height: 50px;
    max-width: 50px;
  }
}

/* 仕事内容を知る
---------------------------------------------------------------------------- */
.homeJobWrap {
  background: var(--color__Gradation);
}

.homeJob {
  color: var(--color__White, #fff);
  /* Swiper デフォルトスタイルの上書き */
  /* Swiper デフォルトスタイルの上書き ここまで */
}

.homeJob .item {
  background-color: var(--color__White, #fff);
  border-radius: 10px;
  color: var(--color__Black, #333);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto 0;
  padding: 30px 30px 20px 30px;
  width: 100%;
}

.homeJob .item .heading {
  background-color: var(--color__Black, #333);
  color: var(--color__White, #fff);
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1;
  margin-bottom: 10px;
  padding: 15px 20px;
}

.homeJob .item .job {
  background-color: var(--color__Black, #333);
  color: var(--color__White, #fff);
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1;
  margin-bottom: 0;
  max-width: 320px;
  padding: 8px 20px;
  width: 100%;
}

.homeJob .item .jobDescription {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 32px 0 22px;
}

.homeJob .item .jobDescription .image {
  margin: 20px;
  width: 200px;
}

.homeJob .item .jobDescription .text {
  line-height: 1.75;
  margin-bottom: 0;
  width: calc(100% - 200px);
}

.homeJob .item .inner-menu {
  margin: 0;
}

.homeJob .item .inner-menu li.btn--job {
  font-size: 1.5rem;
  margin: 10px 5px;
  width: calc((100% - 30px) / 3);
}

.homeJob .item .inner-menu li.btn--job a {
  line-height: 1;
  padding: 15px 20px 15px 20px;
  text-align: center;
}

.homeJob .item .inner-menu li.btn--job a::before {
  margin-top: -2px;
}

.homeJob .interviewBox {
  border: 2px solid var(--color__Black, #333);
  padding: 22px;
  position: relative;
  text-align: center;
}

.homeJob .interviewBox::before {
  background-color: var(--color__White, #fff);
  content: attr(data-title);
  font-family: 'Hind', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  font-display: swap;
  display: inline;
  font-weight: 700;
  left: 0;
  margin: 0 auto;
  padding: 0 5px;
  position: absolute;
  right: 0;
  text-align: center;
  top: -20px;
  width: 6em;
  z-index: 1;
}

.homeJob .interviewBox a {
  display: block;
}

.homeJob .interviewBox .image {
  margin-bottom: 0;
}

.homeJob .interviewBox .entry-btn {
  margin-top: 20px;
}

.homeJob .textPart {
  margin-right: calc((50 / 1140) * 100%);
  max-width: 560px;
  width: calc(100% - (560 / 1140) * 100%);
}

.homeJob .interviewPart {
  max-width: 530px;
  width: calc(100% - (530 / 1140) * 100%);
}

.homeJob .swiper-button-next,
.homeJob .swiper-button-prev,
.homeJob .swiper-rtl .swiper-button-next,
.homeJob .swiper-rtl .swiper-button-prev {
  background-color: var(--color__White, #fff);
  border: 2px solid var(--color__Black, #333);
  border-radius: 50%;
  color: var(--color__Black, #333);
  height: 40px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: 40px;
}

.homeJob .swiper-button-next::after,
.homeJob .swiper-button-prev::after,
.homeJob .swiper-rtl .swiper-button-next::after,
.homeJob .swiper-rtl .swiper-button-prev::after {
  font-size: 22px;
}

.homeJob .swiper-button-next:hover,
.homeJob .swiper-button-prev:hover,
.homeJob .swiper-rtl .swiper-button-next:hover,
.homeJob .swiper-rtl .swiper-button-prev:hover {
  background-color: var(--color__Primary);
  border-color: var(--color__Primary);
  color: var(--color__White, #fff);
}

.homeJob .swiper-button-next {
  /*right: -20px;*/
	right: 0px;
}

.homeJob .swiper-button-next::after {
  margin-left: 4px;
  margin-top: 2px;
}

.homeJob .swiper-button-prev {
  /*left: -20px;*/
	left: 0px;
}

.homeJob .swiper-button-prev:after {
  margin-left: -3px;
  margin-top: 2px;
}

@media screen and (max-width: 1024px) {
  .homeJobWrap {
    padding-left: 10vw;
    padding-right: 10vw;
  }
  .homeJob .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 30px auto 0;
    padding: 20px 20px 20px 20px;
  }
  .homeJob .item .heading {
    font-size: 2.8rem;
  }
  .homeJob .item .job {
    font-size: 2.2rem;
  }
  .homeJob .item .jobDescription {
    margin: 20px 0 10px;
  }
  .homeJob .item .jobDescription .image {
    margin: 0 20px;
  }
  .homeJob .item .inner-menu {
    margin: 0 0 20px 0;
  }
  .homeJob .interviewBox {
    padding: 20px;
  }
  .homeJob .interviewBox::before {
    font-size: 3.0rem;
  }
  .homeJob .textPart {
    margin-right: 0;
    max-width: 100%;
    width: 100%;
  }
  .homeJob .interviewPart {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 736px) {
  .homeJobWrap {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .homeJob .item {
    margin: 15px auto 0;
    padding: 10px;
  }
  .homeJob .item .heading {
    font-size: 2.2rem;
    margin-bottom: 5px;
    padding: 9px 10px;
  }
  .homeJob .item .job {
    font-size: 1.4rem;
    padding: 3px 10px;
    max-width: 180px;
  }
  .homeJob .item .jobDescription {
    margin: 20px 0 10px;
  }
  .homeJob .item .jobDescription .image {
    margin: 0 10px;
    width: 100px;
  }
  .homeJob .item .jobDescription .text {
    font-size: 1.3rem;
    line-height: 1.5;
    width: calc(100% - 100px - 10px);
  }
  .homeJob .item .inner-menu {
    margin: 0 0 20px 0;
  }
  .homeJob .item .inner-menu li.btn--job {
    font-size: 1.2rem;
  }
  .homeJob .item .inner-menu li.btn--job a {
    padding: 15px 15px 15px 10px;
  }
  .homeJob .interviewBox {
    padding: 10px;
  }
  .homeJob .interviewBox::before {
    font-size: 1.6rem;
    top: -12px;
  }
  .homeJob .interviewBox .image {
    max-width: 350px;
  }
  .homeJob .interviewBox .entry-btn {
    margin-top: 10px !important;
  }
}

@media screen and (max-width: 414px) {
  .homeJobWrap {
    padding-left: 0;
    padding-right: 0;
  }
  .homeJob .item .heading {
    font-size: 1.9rem;
  }
  .homeJob .item .jobDescription .image {
    width: 90px;
  }
  .homeJob .item .jobDescription .text {
    width: calc(100% - 90px - 10px);
  }
  .homeJob .item .inner-menu li.btn--job {
    font-size: 1.2rem;
  }
  .homeJob .item .inner-menu li.btn--job a {
    padding: 15px 12px 15px 5px;
  }
  .homeJob .item .inner-menu li.btn--job a::before {
    right: 7px;
  }
}

/* 採用メッセージ
---------------------------------------------------------------------------- */
.homeMessageWrap {
  background: -webkit-linear-gradient(top, var(--color__White) 450px, rgba(var(--color__WhiteAlpha), 0) 700px), url("../images/home/bg_home_message.webp") no-repeat bottom center;
  background: linear-gradient(to bottom, var(--color__White) 450px, rgba(var(--color__WhiteAlpha), 0) 700px), url("../images/home/bg_home_message.webp") no-repeat bottom center;
  background-size: 100%;
  width: 100%;
}

.no-webp .homeMessageWrap {
  background: -webkit-linear-gradient(top, var(--color__White) 450px, rgba(var(--color__WhiteAlpha), 0) 700px), url("../images/home/bg_home_message.jpg") no-repeat bottom center;
  background: linear-gradient(to bottom, var(--color__White) 450px, rgba(var(--color__WhiteAlpha), 0) 700px), url("../images/home/bg_home_message.jpg") no-repeat bottom center;
}

@media screen and (max-width: 736px) {
  .homeMessageWrap {
    background: -webkit-linear-gradient(top, var(--color__White) 300px, rgba(var(--color__WhiteAlpha), 0) 550px), url("../images/home/bg_home_message_mobile.webp") no-repeat bottom center;
    background: linear-gradient(to bottom, var(--color__White) 300px, rgba(var(--color__WhiteAlpha), 0) 550px), url("../images/home/bg_home_message_mobile.webp") no-repeat bottom center;
    background-size: contain;
    width: 100%;
  }
  .no-webp .homeMessageWrap {
    background: -webkit-linear-gradient(top, var(--color__White) 300px, rgba(var(--color__WhiteAlpha), 0) 550px), url("../images/home/bg_home_message_mobile.jpg") no-repeat bottom center;
    background: linear-gradient(to bottom, var(--color__White) 300px, rgba(var(--color__WhiteAlpha), 0) 550px), url("../images/home/bg_home_message_mobile.jpg") no-repeat bottom center;
    background-size: contain;
  }
}

.homeMessage .messageList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 60px auto;
  max-width: calc(1100px + 20px);
  width: 100%;
}

.homeMessage .messageList .item {
  background-color: var(--color__White, #fff);
  margin: 0 10px;
  position: relative;
  max-width: 340px;
  width: calc(((100% + 20px) - 2 * 40px) / 3);
}

.homeMessage .messageList .item a {
  display: block;
}

.homeMessage .messageList .item a:hover .image img, .homeMessage .messageList .item a:active .image img, .homeMessage .messageList .item a:focus .image img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.homeMessage .messageList .item .image {
  margin-bottom: 0;
  overflow: hidden;
}

.homeMessage .messageList .item .image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.homeMessage .messageList .item:nth-child(1) {
  margin-bottom: 80px;
  margin-top: 0;
}

.homeMessage .messageList .item:nth-child(2) {
  margin-bottom: 40px;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 40px;
}

.homeMessage .messageList .item:nth-child(3) {
  margin-bottom: 0;
  margin-top: 80px;
}

@media screen and (max-width: 1024px) {
  .homeMessage .messageList {
    margin: 50px auto;
    max-width: calc(100% + 20px);
    width: 100%;
  }
  .homeMessage .messageList .item {
    width: calc(((100% + 20px) - 2 * 30px) / 3);
  }
  .homeMessage .messageList .item:nth-child(2) {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 736px) {
  .homeMessage .messageList {
    margin: 30px auto;
    max-width: 100%;
  }
  .homeMessage .messageList .item {
    margin: 0;
    max-width: 230px;
    width: calc((100% - 2 * 5px) / 3);
  }
  .homeMessage .messageList .item:nth-child(1) {
    margin-bottom: 40px;
  }
  .homeMessage .messageList .item:nth-child(2) {
    margin-bottom: 20px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 20px;
  }
  .homeMessage .messageList .item:nth-child(3) {
    margin-top: 40px;
  }
}

/* 採用情報
---------------------------------------------------------------------------- */
.homeRecruit .guidelineList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 60px auto;
  max-width: calc(1100px + 20px);
  width: 100%;
}

.homeRecruit .guidelineList .item {
  margin: 0 10px;
  position: relative;
  max-width: 260px;
  width: calc(((100% + 20px) - 3 * 20px) / 4);
}

.homeRecruit .guidelineList .item a {
  display: block;
  position: relative;
}

.homeRecruit .guidelineList .item .image {
  margin-bottom: 0;
  overflow: hidden;
}

.homeRecruit .guidelineList .item .image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.homeRecruit .guidelineList .item .heading {
  background-color: var(--color__Primary);
  color: var(--color__White, #fff);
  font-size: 1.7rem;
  font-weight: 700;
  height: 40px;
  line-height: 1;
  margin: -50px 0 10px;
  padding: 11px 10px 10px 10px;
  position: absolute;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: calc(100% - 10px);
  z-index: 1;
}

.homeRecruit .guidelineList .item .heading::before {
  content: '';
  border: 0;
  border-top: solid 2px var(--color__White, #fff);
  border-right: solid 2px var(--color__White, #fff);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  height: 10px;
  margin-top: -4px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: rotate(45deg);
  width: 10px;
}

.homeRecruit .guidelineList .item:nth-child(2n) {
  margin-top: 80px;
}

.homeRecruit .guidelineList .item:nth-child(2n-1) {
  margin-bottom: 80px;
}

.homeRecruit .guidelineList .item:hover .image img, .homeRecruit .guidelineList .item:active .image img, .homeRecruit .guidelineList .item:focus .image img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.homeRecruit .guidelineList .item:hover .heading, .homeRecruit .guidelineList .item:active .heading, .homeRecruit .guidelineList .item:focus .heading {
  background-color: var(--color__PrimaryHover);
}

@media screen and (max-width: 1180px) {
  .homeRecruit .guidelineList .item .heading {
    font-size: 1.45rem;
    padding: 12px 10px 11px 8px;
  }
}

@media screen and (max-width: 1024px) {
  .homeRecruit .guidelineList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 50px auto 0;
    padding-left: 10vw;
    padding-right: 10vw;
    width: 100%;
  }
  .homeRecruit .guidelineList .item {
    margin: 5px 0;
    max-width: 560px;
    width: 100%;
  }
  .homeRecruit .guidelineList .item .heading {
    font-size: 1.7rem;
    height: 40px;
    margin: -50px 0 10px;
    padding: 11px 10px 10px 10px;
    width: calc(100% - 50px);
  }
  .homeRecruit .guidelineList .item .heading::before {
    height: 10px;
    margin-top: -4px;
    right: 15px;
    top: 50%;
    width: 10px;
  }
  .homeRecruit .guidelineList .item:nth-child(2n) {
    margin-left: 0;
    margin-right: auto;
    margin-top: 5px;
  }
  .homeRecruit .guidelineList .item:nth-child(2n-1) {
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .homeRecruit .guidelineList .item:first-child {
    margin-bottom: 5px;
    margin-top: 0;
  }
  .homeRecruit .guidelineList .item:last-child {
    margin-bottom: 0;
    margin-top: 5px;
  }
}

@media screen and (max-width: 900px) {
  .homeRecruit .guidelineList .item .heading {
    font-size: 1.6rem;
    height: 30px;
    margin: -40px 0 10px;
    padding: 7px 10px 5px 10px;
  }
  .homeRecruit .guidelineList .item:nth-child(2n) {
    padding-right: 80px;
  }
  .homeRecruit .guidelineList .item:nth-child(2n-1) {
    padding-left: 80px;
  }
}

@media screen and (max-width: 736px) {
  .homeRecruit .guidelineList {
    margin: 30px auto 0;
    padding-left: 2vw;
    padding-right: 2vw;
    width: 100%;
  }
  .homeRecruit .guidelineList .item {
    max-width: 480px;
  }
  .homeRecruit .guidelineList .item .heading {
    height: 22px;
    margin: -30px 0 10px;
    padding: 3px 10px 1px 10px;
  }
  .homeRecruit .guidelineList .item:nth-child(2n) {
    padding-right: 70px;
  }
  .homeRecruit .guidelineList .item:nth-child(2n-1) {
    padding-left: 70px;
  }
}

@media screen and (max-width: 414px) {
  .homeRecruit .guidelineList .item .heading {
    font-size: 1.4rem;
    margin-top: -26px;
    padding: 4px 8px 1px 8px;
    width: calc(100% - 12px);
  }
  .homeRecruit .guidelineList .item:nth-child(2n) {
    padding-right: 40px;
  }
  .homeRecruit .guidelineList .item:nth-child(2n-1) {
    padding-left: 40px;
  }
}


/* グループ会社
---------------------------------------------------------------------------- */
.homeGroupWrap {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(var(--color__BlackAlpha), 0)), color-stop(50%, var(--color__Black))), url("../images/home/bg_home_group.webp") no-repeat top center;
  background: -webkit-linear-gradient(top, rgba(var(--color__BlackAlpha), 0) 20%, var(--color__Black) 50%), url("../images/home/bg_home_group.webp") no-repeat top center;
  background: linear-gradient(to bottom, rgba(var(--color__BlackAlpha), 0) 20%, var(--color__Black) 50%), url("../images/home/bg_home_group.webp") no-repeat top center;
  background-size: 100%;
  position: relative;
  width: 100%;
}

.homeGroupWrap::before {
  background-color: var(--color__Black, #333);
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: -1;
}

.no-webp .homeGroupWrap {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(var(--color__BlackAlpha), 0)), color-stop(50%, var(--color__Black))), url("../images/home/bg_home_group.png") no-repeat top center;
  background: -webkit-linear-gradient(top, rgba(var(--color__BlackAlpha), 0) 20%, var(--color__Black) 50%), url("../images/home/bg_home_group.png") no-repeat top center;
  background: linear-gradient(to bottom, rgba(var(--color__BlackAlpha), 0) 20%, var(--color__Black) 50%), url("../images/home/bg_home_group.png") no-repeat top center;
  background-size: 100%;
}

@media screen and (max-width: 1100px) {
  .homeGroupWrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(var(--color__BlackAlpha), 0)), color-stop(37%, var(--color__Black))), url("../images/home/bg_home_group.webp") no-repeat top center;
    background: -webkit-linear-gradient(top, rgba(var(--color__BlackAlpha), 0) 20%, var(--color__Black) 37%), url("../images/home/bg_home_group.webp") no-repeat top center;
    background: linear-gradient(to bottom, rgba(var(--color__BlackAlpha), 0) 20%, var(--color__Black) 37%), url("../images/home/bg_home_group.webp") no-repeat top center;
    background-size: 100%;
    position: relative;
  }
  .no-webp .homeGroupWrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(var(--color__BlackAlpha), 0)), color-stop(37%, var(--color__Black))), url("../images/home/bg_home_group.png") no-repeat top center;
    background: -webkit-linear-gradient(top, rgba(var(--color__BlackAlpha), 0) 20%, var(--color__Black) 37%), url("../images/home/bg_home_group.png") no-repeat top center;
    background: linear-gradient(to bottom, rgba(var(--color__BlackAlpha), 0) 20%, var(--color__Black) 37%), url("../images/home/bg_home_group.png") no-repeat top center;
    background-size: 100%;
  }
}

@media screen and (max-width: 736px) {
  .homeGroupWrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgba(var(--color__BlackAlpha), 0)), color-stop(50%, var(--color__Black))), url("../images/home/bg_home_group_mobile.webp") no-repeat top center;
    background: -webkit-linear-gradient(top, rgba(var(--color__BlackAlpha), 0) 25%, var(--color__Black) 50%), url("../images/home/bg_home_group_mobile.webp") no-repeat top center;
    background: linear-gradient(to bottom, rgba(var(--color__BlackAlpha), 0) 25%, var(--color__Black) 50%), url("../images/home/bg_home_group_mobile.webp") no-repeat top center;
    background-size: contain;
    width: 100%;
  }
  .no-webp .homeGroupWrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgba(var(--color__BlackAlpha), 0)), color-stop(50%, var(--color__Black))), url("../images/home/bg_home_group_mobile.png") no-repeat top center;
    background: -webkit-linear-gradient(top, rgba(var(--color__BlackAlpha), 0) 25%, var(--color__Black) 50%), url("../images/home/bg_home_group_mobile.png") no-repeat top center;
    background: linear-gradient(to bottom, rgba(var(--color__BlackAlpha), 0) 25%, var(--color__Black) 50%), url("../images/home/bg_home_group_mobile.png") no-repeat top center;
    background-size: contain;
  }
}

@media screen and (max-width: 414px) {
  .homeGroupWrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgba(var(--color__BlackAlpha), 0)), color-stop(40%, var(--color__Black))), url("../images/home/bg_home_group_mobile.webp") no-repeat top center;
    background: -webkit-linear-gradient(top, rgba(var(--color__BlackAlpha), 0) 25%, var(--color__Black) 40%), url("../images/home/bg_home_group_mobile.webp") no-repeat top center;
    background: linear-gradient(to bottom, rgba(var(--color__BlackAlpha), 0) 25%, var(--color__Black) 40%), url("../images/home/bg_home_group_mobile.webp") no-repeat top center;
    background-size: contain;
    width: 100%;
  }
  .no-webp .homeGroupWrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgba(var(--color__BlackAlpha), 0)), color-stop(40%, var(--color__Black))), url("../images/home/bg_home_group_mobile.png") no-repeat top center;
    background: -webkit-linear-gradient(top, rgba(var(--color__BlackAlpha), 0) 25%, var(--color__Black) 40%), url("../images/home/bg_home_group_mobile.png") no-repeat top center;
    background: linear-gradient(to bottom, rgba(var(--color__BlackAlpha), 0) 25%, var(--color__Black) 40%), url("../images/home/bg_home_group_mobile.png") no-repeat top center;
    background-size: contain;
  }
}

.homeGroup {
  color: var(--color__White, #fff);
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
  width: 100%;
}

.homeGroup .textPart {
  line-height: 2;
  margin-bottom: 60px;
}

.homeGroup .lead {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: initial;
  margin-bottom: 60px;
}

.homeGroup .entry-btn .newline {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

@media screen and (max-width: 1024px) {
  .homeGroup .textPart {
    margin-bottom: 50px;
  }
  .homeGroup .lead {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 736px) {
  .homeGroup .textPart {
    line-height: 1.75;
    margin-bottom: 30px;
    text-align: left;
  }
  .homeGroup .lead {
    font-size: 2.0rem;
    margin-bottom: 30px;
    text-align: center;
  }
  .homeGroup .entry-btn .newline {
    display: block;
    line-height: 1;
    padding-top: 10px;
  }
}

@media screen and (max-width: 414px) {
  .homeGroup .lead {
    font-size: 1.8rem;
  }
}
