@charset "UTF-8";
/* Foundation
* ========================== */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", serif;
  overflow-y: scroll !important;
  position: relative; /* 親要素に指定 */
}

html {
  scroll-behavior: smooth;
}

@media screen and (min-width: 376px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 768px) {
  /* html {
    font-size: 42.5%;
  } */
}
li {
  list-style: none;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  line-height: 1.6;
  font-weight: bold;
  color: #333333;
}

p {
  line-height: 1.7;
  color: #333333;
}

a,
span {
  display: block;
}

a {
  text-decoration: none;
  color: #333333;
  transition: 0.3s;
}

/* Layout
* ========================== */
.l-footer {
  background-color: hsl(356, 89%, 45%);
  min-height: 115px;
  display: flex;
}
.l-footer__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}
.l-footer__link:hover {
  opacity: 0.7;
}
.l-footer__link:after {
  content: "";
  display: inline-block;
  width: 29px;
  height: 29px;
  background: url(../images/blank.png) no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 70px;
}

@media screen and (max-width: 1024px) {
  .l-footer {
    min-height: 70px;
  }
  .l-footer__link {
    font-size: 12px;
    white-space: nowrap;
  }
  .l-footer__link:after {
    width: 12px;
    height: 12px;
    margin-left: 10px;
  }
}
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}
.l-header__container {
  min-height: 138px;
  background-color: #D80C18;
  display: flex;
  align-items: center;
}
.l-header__container-logo {
  padding: 0 50px 0 35px;
}
.l-header__container-logo-link {
  width: 70%;
}
.l-header__container-text {
  width: 1000px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  letter-spacing: -0.05em;
}
.l-header__container-list {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.l-header__container-list-item {
  position: relative;
}
.l-header__container-list-item .list-item-link {
  font-size: 20px;
  font-weight: bold;
  color: #D80C18;
  transition: 0.3s;
}
.l-header__container-list-item .header-modal-menu {
  opacity: 0;
  visibility: hidden; /* 初期状態では見えない */
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 100;
  width: 200px;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.l-header__container-list-item .header-modal-menu ul {
  list-style: none;
  padding: 10px;
  margin: 0;
}
.l-header__container-list-item .header-modal-menu ul li {
  padding: 10px 15px;
}
.l-header__container-list-item .header-modal-menu ul li a {
  color: #333;
  text-decoration: none;
}
.l-header__container-list-item .header-modal-menu ul li a:hover {
  color: #D80C18;
}
.l-header__container-navsp {
  display: none;
}
.l-header nav {
  background-color: #fff;
  border-bottom: 1px solid #f1f1f1;
}

@media screen and (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
  .l-header__container {
    min-height: 70px;
  }
  .l-header__container-text {
    display: none;
  }
  .l-header__container-logo {
    padding: 0;
  }
  .l-header__container-logo-link {
    max-width: 169px;
  }
  .l-header__container-nav {
    display: none;
  }
  .l-header__container-navsp {
    display: block;
  }
  .l-header__container-navsp-hamburger {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 34px;
    height: 60px;
    border-radius: 60px;
    cursor: pointer;
    z-index: 300;
  }
  .l-header__container-navsp-hamburger-line {
    top: 10px;
    position: absolute;
    width: 34px;
    height: 4px;
    right: 15px;
    background-color: #fff;
    transition: all 0.5s;
  }
  .l-header__container-navsp-hamburger-line02 {
    top: 22px;
    position: absolute;
    width: 34px;
    height: 4px;
    right: 15px;
    background-color: #fff;
    transition: all 0.5s;
  }
  .l-header__container-navsp-hamburger-line03 {
    top: 34px;
    position: absolute;
    width: 34px;
    height: 4px;
    right: 15px;
    background-color: #fff;
    transition: all 0.5s;
  }
  .open .l-header__container-navsp-hamburger-line {
    transform: rotate(-45deg);
    top: 20px;
    width: 30px;
  }
  .open .l-header__container-navsp-hamburger-line02 {
    transform: rotate(45deg);
    top: 20px;
    width: 30px;
    right: 15px;
  }
  .open .l-header__container-navsp-hamburger-line03 {
    display: none;
  }
  .l-header__navsp {
    position: fixed;
    right: 0%;
    right: -120%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto;
  }
  .open .l-header__navsp {
    right: 0px;
    padding: 0;
  }
  .open .l-header__navsp ul {
    padding: 25px 20px 30px 20px;
  }
  .open .l-header__navsp ul li {
    padding: 15px 20px;
    border-bottom: 1px solid #000000;
    border-top: 1px solid #000000;
    margin-bottom: -1px;
    margin-top: -1px;
  }
  .open .l-header__navsp ul li.--entry {
    background-color: #141361;
    border-top: none;
    margin-top: 40px;
    padding: 0;
    height: 80px;
    line-height: 80px;
  }
  .open .l-header__navsp ul li.--entry .l-header__navsp-list-item-link {
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    transition: 0.5s;
  }
  .open .l-header__navsp ul li.--entry .l-header__navsp-list-item-link:hover .l-header__navsp-list-item-link-arrow {
    right: 30px;
  }
  .open .l-header__navsp ul li.--entry .l-header__navsp-list-item-link .l-header__navsp-list-item-link-arrow {
    right: 50px;
  }
  .open .l-header__navsp ul li.--entry .l-header__navsp-list-item-link:before {
    content: "";
    display: inline-block;
    width: 21px;
    margin-right: 15px;
    height: 14px;
    background-image: url(../images/vector.png);
    background-size: cover;
    vertical-align: middle;
  }
  .l-header__navsp-list-item-link {
    display: flex;
    position: relative;
  }
  .l-header__navsp-list-item-link:hover .l-header__navsp-list-item-link-arrow {
    right: 95px;
  }
  .l-header__navsp-list-item-link-text {
    font-weight: bold;
    font-size: 16px;
    margin-right: 20px;
  }
  .l-header__navsp-list-item-link-arrow {
    width: 50.5px;
    height: auto;
    position: absolute;
    right: 115px;
    transition: 0.5s;
  }
}
.l-inner {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
}

/* Object
* ========================== */
/* Component ------------ */
.c-btn {
  max-width: 376px;
  min-height: 86px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 20px;
  border-radius: 43px;
  background: #fff;
  position: relative;
  border: 1px solid #707070;
  font-weight: bold;
}
.c-btn.--large {
  max-width: 424px;
}
.c-btn:after {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url(../images/btn_arrow.png) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 6%;
  transition: 0.3s;
}
.c-btn:hover {
  opacity: 1;
}
.c-btn:hover:after {
  right: 4%;
}

.c-btn02 {
  max-width: 376px;
  min-height: 86px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 20px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid #D80C18;
  box-shadow: 0px 6px 0px 0px #D80C18;
  transition: 0.3s;
  font-weight: bold;
}
.c-btn02.--ver2 {
  margin: 0;
}
.c-btn02:hover {
  box-shadow: 0px 0px 0px 0px #D80C18;
  opacity: 1;
  transform: translateY(6px);
  color: #D80C18;
}

.c-btn03 {
  max-width: 140px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-size: 20px;
  transition: 0.3s;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid;
}
.c-btn03:after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background: url(../images/btn_arrow_black.png) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 6%;
  transition: 0.3s;
}
.c-btn03:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .c-btn {
    max-width: 310px;
    min-height: 47px;
    font-size: 15px;
  }
  .c-btn:after {
    width: 25px;
    height: 25px;
  }
  .c-btn.--large {
    max-width: 310px;
  }
  .c-btn02 {
    max-width: 258px;
    min-height: 70px;
    font-size: 18px;
  }
  .c-btn03 {
    margin: auto;
  }
}
.c-ttl {
  font-size: 80px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  color: #D80C18;
  line-height: 1;
  white-space: nowrap;
}

.c-subttl {
  font-size: 48px;
  font-weight: bold;
  margin-top: 20px;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .c-ttl {
    font-size: 50px;
  }
  .c-subttl {
    font-size: 36px;
    margin-top: 10px;
  }
}
/* Project ------------ */
.page-top__fv {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 230px;
}
.page-top__fv-image {
  width: 100%;
  display: block;
}
.page-top__fv-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10%;
  height: 20.06%;
  background-color: white;
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 1s ease-out;
  z-index: 1;
}
.page-top__fv-textbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1s ease-in;
  z-index: 2;
  text-align: center;
}
.page-top__fv-textbox .fv-textbox-ttl {
  font-size: 50px;
  font-weight: bold;
}
.page-top__fv-textbox .fv-textbox-text {
  margin-top: 60px;
  font-size: 32px;
  font-weight: bold;
}
.page-top__fv-textbox .fv-textbox-text span {
  display: inline-block;
  color: #D80C18;
}
.page-top__fv-textbox .fv-textbox-btn {
  margin-top: 60px;
}
.page-top__jobs {
  padding: 65px 0 80px 0;
}
.page-top__jobs-btnbox {
  display: flex;
  justify-content: center;
  margin-top: 75px;
}
.page-top__jobs-splide01 {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-top: 125px;
}
.page-top__jobs-splide01 .splide__slide img {
  height: auto;
  width: 100%;
}
.page-top__jobs-splide02 {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-top: 35px;
}
.page-top__jobs-splide02 .splide__slide img {
  height: auto;
  width: 100%;
}
.page-top__jobs-image {
  display: none;
}
.page-top__jobs-btn {
  margin-top: 65px;
}
.page-top__member {
  padding: 65px 0 80px;
  background-color: #F8F8F8;
}
.page-top__member-splide {
  width: 100%;
  margin-top: 45px;
  position: relative;
}
.page-top__member-splide-ttl {
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
}
.page-top__member-splide-text {
  margin-top: 1.5rem;
  font-size: 18px;
  line-height: 1.5;
}
.page-top__member-splide .splide__arrow svg {
  display: none;
}
.page-top__member-splide .splide__arrow--prev {
  top: -45px;
  left:  87%;
  opacity: 1;
  width: auto;
  height: auto;
  transition: 0.3s;
}
.page-top__member-splide .splide__arrow--prev:hover {
  opacity: 0.7;
}
.page-top__member-splide .splide__arrow--prev:before {
  content: "";
  display: inline-block;
  width: 47px;
  height: 47px;
  background: url(../images/splide_arrow_prev.png) no-repeat;
  background-size: contain;
  background-position: center;
}
.page-top__member-splide .splide__arrow--next {
  top: -45px;
  right: 0%;
  opacity: 1;
  width: auto;
  height: auto;
  transition: 0.3s;
}
.page-top__member-splide .splide__arrow--next:hover {
  opacity: 0.7;
}
.page-top__member-splide .splide__arrow--next:before {
  content: "";
  display: inline-block;
  width: 47px;
  height: 47px;
  background: url(../images/splide_arrow_next.png) no-repeat;
  background-size: contain;
  background-position: center;
}
.page-top__member-splide a {
  transition: 0.3s;
}

.page-top__member-splide-image {
  width: 100%;
  position: relative;
  /* 擬似要素のために必要 */
  border-radius: 50px;
  /* 元画像の角丸 */
  height: auto;
  /* 元のアスペクト比を維持 */
  transition: 0.3s;
  overflow: hidden;
  box-sizing: border-box;
}
.page-top__member-splide-image img {
  border-radius: px;
  transition: 0.3s;
  width: 100%;
    height: auto;
    object-fit: cover; /* 枠内に収める */
    display: block;

}
.page-top__member-splide-image::before {
  content: "";
  position: absolute;
  top: 0;
  /* ボーダーの厚み分だけ外側に配置 */
  right: 0;
  bottom: 0;
  left: 0;
  transition: 0.3s;
  border-top: 20px solid #D80C18;
  border-right: 20px solid #D80C18;
  border-left: 20px solid #D80C18;
  border-bottom: 65px solid #D80C18;
  border-radius: 50px;
  /* ボーダーも角丸にする */
  pointer-events: none;
  /* 擬似要素がクリックを妨げないように */
  z-index: 2;
  /* 画像の背面に配置 */
  box-sizing: border-box;
}

.page-top__member-splide-image:hover::before {
  content: "";
  /* 擬似要素を追加 */
  position: absolute;
  top: 0;
  /* ボーダーの厚み分だけ外側に配置 */
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border-top: 0px solid #D80C18;
  border-right: 0px solid #D80C18;
  border-left: 0px solid #D80C18;
  border-bottom: 50px solid #D80C18;
  border-radius: 36px;
}
.page-top__member-splide-image:hover::after {
  content: "もっとみる";
    white-space: nowrap;
    position: absolute;
    bottom: 1%;
    left: 66%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    background: url(../images/btn_arrow_white.png) no-repeat right center;
    background-size: 25px 25px;
    width: auto;
    height: 47px;
    padding-right: 35px;
    padding-left: 10px;
}
.page-top__member-btn {
  margin-top: 85px;
}
.page-top__zadankai {
  padding: 65px 0 80px 0;
}
.page-top__zadankai-image {
  position: relative;
  max-width: 710px;
  margin: auto;
}
.page-top__zadankai-image img {
  border-radius: 36px;
  box-shadow: 0px 6px 30px #8E8C8C;
  transition: 0.3s;
}
.page-top__zadankai-image img:hover {
  box-shadow: 0px 0px 0px #8E8C8C;
}
.page-top__zadankai-image-text {
  position: absolute;
  bottom: 0;
  min-height: 65px;
  width: 100%;
  background: rgba(255, 255, 255, 0.78);
  /* 白色、透明度 78% */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
  font-size: 29px;
  border-radius: 0 0 36px 36px;
}
.page-top__zadankai-image-text::after {
  position: relative;
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  right: 0;
  background: url(../images/btn_arrow.png) no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 30px;
  transition: 0.3s;
}
.page-top__working {
  padding: 0 0 80px 0;
}
.page-top__working-container {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
.page-top__working-container-image {
  max-width: 458px;
  position: relative;
}
.page-top__working-container-image img {
  border-radius: 36px;
  transition: 0.3s;
}
.page-top__working-container-image img:hover {
  opacity: 0.7;
}
.page-top__working-container-image-text {
  position: absolute;
  top: 0;
  min-height: 88px;
  width: 100%;
  background: #D80C18;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  border-radius: 20px 20px 0 0;
}
.page-top__working-container-image-text::after {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url(../images/btn_arrow_white.png) no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 30px;
  position: absolute;
  right: 10%;
  transition: 0.3s;
}
.page-top__recruitment {
  padding: 65px 0 80px 0;
  background-color: #F8F8F8;
}
.page-top__recruitment-btnbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 814px;
  margin: auto;
  margin-top: 110px;
  gap: 50px;
}
.page-top__recruitment-btn {
  max-width: 814px;
  margin: auto;
  margin-top: 70px;
  text-align: right;
}

@media screen and (max-width: 1640px) {
  .page-top__fv-textbox .fv-textbox-ttl {
    font-size: 36px;
    font-weight: bold;
  }
  .page-top__fv-textbox .fv-textbox-text {
    margin-top: 30px;
    font-size: 28px;
  }
  .page-top__fv-textbox .fv-textbox-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1340px) {
  .page-top__fv-textbox .fv-textbox-ttl {
    font-size: 30px;
    font-weight: bold;
  }
  .page-top__fv-textbox .fv-textbox-text {
    margin-top: 20px;
    font-size: 24px;
  }
  .page-top__fv-textbox .fv-textbox-btn {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .page-top__fv-textbox {
    display: none;
  }
  .page-top__jobs {
    padding: 40px 0;
  }
  .page-top__jobs-btnbox {
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
  }
  .page-top__jobs-splide01 {
    margin-top: 50px;
  }
  .page-top__jobs-splide02 {
    display: none;
  }
  .page-top__jobs-image {
    display: block;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 20px;
  }
  .page-top__jobs-btn {
    margin-top: 20px;
  }
  .page-top__member {
    padding: 40px 0;
  }
  .page-top__member-splide {
    margin: auto;
    margin-top: 120px;
    width: auto;
  }
  .page-top__member-splide .splide__arrow--next {
    top: -70px;
    right: 5%;
  }
  .page-top__member-splide .splide__arrow--next:before {
    width: 35px;
    height: 35px;
  }
  .page-top__member-splide .splide__arrow--prev {
    top: -70px;
    left: 70%;
  }
  .page-top__member-splide .splide__arrow--prev:before {
    width: 35px;
    height: 35px;
  }
  .page-top__member-splide-image {
    width: 85%;
    margin: auto;
  }
  .page-top__member-splide-ttl {
    font-size: 14px;
    margin-top: 10px;
    padding: 0 20px;
  }
  .page-top__member-splide-text {
    font-size: 14px;
    margin-top: 10px;
    padding: 0 20px;
  }
  .page-top__working {
    padding: 0 0 40px 0;
  }
  .page-top__working-container {
    margin-top: 35px;
    flex-direction: column;
    gap: 20px;
  }
  .page-top__working-container-image {
    width: 100%;
    margin: auto;
  }
  .page-top__working-container-image-text {
    font-size: 20px;
  }
  .page-top__zadankai {
    padding: 40px 0;
  }
  .page-top__zadankai-image img {
    border-radius: 0;
    box-shadow: none;
  }
  .page-top__zadankai-image-text {
    font-size: 15px;
    font-weight: bold ;
    border-radius: 0;
    justify-content: center;
    min-height: 24%;
  }
  .page-top__recruitment {
    padding: 40px 0;
  }
  .page-top__recruitment-btnbox {
    margin-top: 35px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .page-top__zadankai-image-text::after {
    width: 25px;
    height: 25px;
    margin-left: 10px;
  }
  
}

@media screen and (max-width: 768px)  {
  .page-top__member-splide-image::before {
    content: "";
    border-top: 2px solid #D80C18;
    border-right: 2px solid #D80C18;
    border-left: 2px solid #D80C18;
    border-bottom: 50px solid #D80C18;
    pointer-events: none;
    /* 擬似要素がクリックを妨げないように */
    z-index: 2;
    /* 画像の背面に配置 */
  }

  .page-top__member-splide-image::after {
    content: "もっとみる";
    white-space: nowrap;
    position: absolute;
    bottom: 0%;
    left: 70%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    background: url(../images/splide03_arrow.png) no-repeat right center;
    background-size: 30px 30px;
    width: auto;
    height: 48px;
    padding-right: 35px;
    padding-left: 10px;
  }
}
/* Utility ------------ */
.-white {
  color: #fff;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-28 {
  margin-bottom: 28px;
}

@media screen and (max-width: 768px) {
  .mbsp-50 {
    margin-bottom: 50px;
  }
  .mbsp-45 {
    margin-bottom: 45px;
  }
  .mbsp-40 {
    margin-bottom: 40px;
  }
  .mbsp-42 {
    margin-bottom: 42px;
  }
}
.u-center {
  text-align: center;
}

.u-left {
  text-align: left;
}

.u-right {
  text-align: right;
}

.u-hidden-pc {
  display: none;
}

.u-hidden-sp {
  display: block;
}

@media screen and (max-width: 896px) {
  .u-hidden-sp {
    display: none;
  }
  .u-hidden-pc {
    display: block;
  }
}
.js-trg {
  opacity: 0;
}

.js-trg.is-active {
  opacity: 1;
  transition: 2s;
}

.p-recruit__container02-list-item.js-trg {
  opacity: 0;
}

.p-recruit__container02-list-item.js-trg.is-active {
  opacity: 1;
}
.p-recruit__container02-list-item.js-trg.is-active:nth-of-type(1) {
  transition: 1s linear 0.2s;
}
.p-recruit__container02-list-item.js-trg.is-active:nth-of-type(3) {
  transition: 1s linear 0.5s;
}
.p-recruit__container02-list-item.js-trg.is-active:nth-of-type(5) {
  transition: 1s linear 0.8s;
}
.p-recruit__container02-list-item.js-trg.is-active:nth-of-type(7) {
  transition: 1s linear 1.1s;
}

.p-entry__container.--left.js-trg {
  opacity: 0;
  transform: translateX(-50px);
}

.p-entry__container.--left.js-trg.is-active {
  opacity: 1;
  transition: 1s;
  transform: translateX(0px);
}

.p-entry__container.--right.js-trg {
  opacity: 0;
  transform: translateX(50px);
}

.p-entry__container.--right.js-trg.is-active {
  opacity: 1;
  transition: 1s;
  transform: translateX(0px);
}

.p-entry__container-col.js-trg {
  opacity: 0;
}

.p-entry__container-col.js-trg.is-active {
  opacity: 1;
  transition: 1s linear 0.6s;
}

.js-scroll-start {
  display: none;
}

.js-scroll-start.is-active {
  display: block;
}

/* ボタン動き */

.page-top__working-container-image-text:hover:after {
  right: 7%;
}

.page-top__zadankai-image-text:hover:after {
  right: -2%;
}

.c-btn03:hover:after {
  right: -2%;
}

/* ボタン　ホバー反転 */

.hover_r {
  background-color: transparent;
}

.hover_r:hover {
  background-color: #D80C18;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-container {
    font-size: 1rem;
  }
  
}

