@charset "UTF-8";
/* 設定
******************************************************************************************** */
/* txt-maker */
/* btn */
/* $width-pc: 1281px; */
/* $width-smartphone: 600px; */
/* $width-scrollbar: 20px; */
/* index CONFIG
******************************************************************************************** */
.loading {
  position: fixed;
  inset: 0;
  background: #f7f7f1;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 0.8s ease forwards 2.8s;
}
.loading__logo {
  position: relative;
  z-index: 10;
}
.loading__logo img {
  opacity: 0;
  animation: logoFadeIn 0.8s ease forwards 0.5s;
  animation-delay: 0.8s;
}
.loading__bg {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 1;
  opacity: 0;
  animation: logoFadeIn 0.8s ease forwards 0.5s;
  animation-delay: 0.1s;
}
.loading__bg::before, .loading__bg::after {
  content: "";
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  background: #f7f7f1;
}
.loading__bg::before {
  left: 0;
  clip-path: polygon(0% 0%, 73vw 0%, 0% 100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  animation: leftFadeOut 1.6s ease forwards 1.6s;
}
.loading__bg::after {
  right: 0;
  clip-path: polygon(100% 0%, 27vw 100%, 100% 100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  animation: rightFadeOut 1.6s ease forwards 1.6s;
}

/* ロゴをフェードイン */
@keyframes logoFadeIn {
  to {
    opacity: 1;
  }
}
/* 左上にスッとフェードアウト */
@keyframes leftFadeOut {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
/* 右下にスッとフェードアウト */
@keyframes rightFadeOut {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translateY(200%);
  }
}
/* 全体を最後にフェードアウト */
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.header {
  position: relative;
}
.header__in {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}

.main {
  position: relative;
  width: 100%;
}

.fixbnr {
  display: flex;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: end;
  -ms-justify-content: end;
  -o-justify-content: end;
  justify-content: end;
  position: fixed;
  top: 0;
  right: -100px;
  transition: right 0.3s;
  z-index: 3;
}
.fixbnr.active {
  right: 0;
}
.fixbnr a img {
  max-width: 80px;
}

/* info
******************************************************************************************** */
.info__in {
  width: 100%;
}
.info__ttl {
  width: 30%;
  font-size: 22px;
  font-size: 2.2rem;
  text-align: right;
  margin: 0;
  background: #c30d23;
  padding: 10px 30px;
  color: #fff;
  white-space: nowrap;
}
.info td {
  padding: 10px;
  background: #f7f7f1;
}
.info__meta {
  position: relative;
  padding-left: 30px !important;
  width: 9%;
}
.info__new {
  position: absolute;
  top: 5px;
  left: 30px;
  color: #c30d23;
  font-size: 10px;
  font-size: 1rem;
  margin: 0;
}
.info__date {
  font-size: 15px;
  font-size: 1.5rem;
  color: #727171;
  margin: 0;
  line-height: 0.1em;
}
.info__title {
  font-size: 15px;
  font-size: 1.5rem;
}
.info__more {
  width: 24%;
  font-weight: bold;
}
.info__more a {
  display: inline-block;
  line-height: 12px;
}
.info__more a img {
  max-height: 12px;
}

@media screen and (max-width: 1400px) {
  .info__meta {
    width: 12%;
  }
}
@media screen and (max-width: 1080px) {
  .info__meta {
    width: 15%;
  }
  .info__more {
    width: 12%;
  }
}
@media screen and (max-width: 840px) {
  .info__meta {
    width: 20%;
  }
}
/* about
******************************************************************************************** */
.about {
  padding: 100px 0;
  display: flex;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.about__left, .about__right {
  width: 22%;
  margin: 0;
}
.about__in {
  text-align: center;
  width: 51%;
}
.about__ttl {
  margin-top: 0;
  margin-bottom: 40px;
}
.about__txt {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8em;
  margin-bottom: 40px;
}
.about__more {
  text-align: right;
  padding-right: 50px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
}
.about__more a {
  margin-left: 5px;
}
.about__more a img {
  max-height: 20px;
}

/* strengths
******************************************************************************************** */
.strengths {
  position: relative;
  overflow: hidden;
}
.strengths__ttl {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  /*  Smartphone */
  display: flex;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  padding-top: 160px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 640px) {
  .strengths__ttl {
    width: 100%;
  }
}
.strengths__ttl--more {
  margin-left: 50px;
}
.strengths__in {
  position: relative;
}
.strengths__in::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: url(../assets/img/index/bg_strengths.png) top left no-repeat;
  background-size: cover;
  z-index: 1;
}
.strengths__item {
  position: relative;
  z-index: 1;
  padding: 20px 40px;
}
.strengths__item--01 {
  background: linear-gradient(130deg, #f7f7f1 70%, transparent 70%);
  width: 70%;
  padding-left: 80px;
}
.strengths__item--02 {
  background: linear-gradient(130deg, #f0f0e7 70%, transparent 70%);
  padding-left: 120px;
}
.strengths__item--03 {
  background: linear-gradient(130deg, #efddef 70%, transparent 70%);
  padding-left: 160px;
}

@media screen and (max-width: 1500px) {
  .strengths__item img {
    width: auto;
    height: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .strengths__item img {
    width: auto;
    height: 75px;
  }
}
@media screen and (max-width: 1080px) {
  .strengths__item img {
    width: auto;
    height: 60px;
  }
  .strengths__item--01 {
    padding-left: 40px;
  }
  .strengths__item--02 {
    padding-left: 80px;
  }
  .strengths__item--03 {
    padding-left: 100px;
  }
}
@media screen and (max-width: 805px) {
  .strengths__item img {
    width: auto;
    height: 50px;
  }
}
/* record
******************************************************************************************** */
.record {
  padding: 100px 0 0;
}
.record__ttl {
  max-width: 1200px;
  margin: 0 auto;
  /*  Smartphone */
  margin-bottom: 40px;
}
@media only screen and (max-width: 640px) {
  .record__ttl {
    width: 100%;
  }
}
.record__list {
  margin: 0 0 40px 0;
  padding: 0 0 0 19%;
  list-style: none;
}
.record__list li {
  margin-right: 30px;
}
.record__more {
  text-align: right;
  margin-right: 540px;
}
.record__prev {
  position: absolute;
  top: -30px;
  right: 700px;
  cursor: pointer;
}
.record__next {
  position: absolute;
  top: -30px;
  right: 770px;
  cursor: pointer;
}
.record__img {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.record__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.record__detail {
  background: transparent url(../assets/img/index/bg_record.jpg) repeat;
  padding: 20px;
  font-weight: bold;
}
.record__date {
  font-size: 15px;
  font-size: 1.5rem;
  margin: 0;
}
.record__title {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0;
}
.record__bottom {
  margin: 0;
}

@media screen and (max-width: 1400px) {
  .record__more {
    margin-right: 340px;
  }
  .record__prev {
    right: 500px;
  }
  .record__next {
    right: 570px;
  }
}
/* link
******************************************************************************************** */
.link {
  padding: 100px 0;
  background: #f7f7f1;
}
.link__in {
  max-width: 1200px;
  margin: 0 auto;
  /*  Smartphone */
  display: flex;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media only screen and (max-width: 640px) {
  .link__in {
    width: 100%;
  }
}
.link__item {
  width: 49%;
  max-width: 555px;
  position: relative;
}
.link__img {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.link__img::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.link__img img {
  width: 100%;
  max-width: auto;
}
.link__img:hover img {
  opacity: 1;
}
.link__img:hover::before {
  transform: translateY(-100%);
  opacity: 0;
}
.link__txt {
  position: absolute;
  top: 35%;
  left: 30px;
  z-index: 2;
}
.link__more {
  position: absolute;
  bottom: -9px;
  right: 20px;
  z-index: 2;
}
.link__bottom {
  padding-right: 3%;
  text-align: right;
}

/* recruit
******************************************************************************************** */
.recruit {
  position: relative;
}
.recruit__in {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.recruit__detail {
  max-width: 1200px;
  margin: 0 auto;
  /*  Smartphone */
  padding: 60px 0 0;
}
@media only screen and (max-width: 640px) {
  .recruit__detail {
    width: 100%;
  }
}
.recruit__ttl {
  margin-bottom: 30px;
}
.recruit__img {
  overflow: hidden;
}
.recruit__img img {
  height: auto;
  transition: transform 0.6s ease;
}
.recruit:hover img {
  opacity: 1;
}
.recruit:hover .recruit__img img {
  transform: scale(1.1);
}
.recruit__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0;
}
.recruit__bottom .pc-mode {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  /*  Smartphone */
}
@media only screen and (max-width: 640px) {
  .recruit__bottom .pc-mode {
    width: 100%;
  }
}

/* insta
******************************************************************************************** */
.insta {
  padding: 100px 0;
}
.insta__in {
  max-width: 1200px;
  margin: 0 auto;
  /*  Smartphone */
  display: flex;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 640px) {
  .insta__in {
    width: 100%;
  }
}
.insta__link {
  text-align: right;
}
.insta__list {
  max-width: 1200px;
  margin: 0 auto;
  /*  Smartphone */
  display: flex;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .insta__list {
    width: 100%;
  }
}/*# sourceMappingURL=index.css.map */