@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.akshar {
  font-family: "Akshar", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

html {
  color: #333;
  background: #fff;
  font-size: 15px;
  line-height: 1.5;
  word-break: break-all;
}

body {
  margin: 0;
}

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

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #333;
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
  overflow: hidden;
}

.outer-block {
  min-width: 1350px;
}

.inner-block {
  position: relative;
  width: auto;
  max-width: 1040px;
  padding: 0 20px;
}

#wrapper {
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}
@font-face {
  src: url(../font/Akshar-SemiBold.woff) format("woff");
  font-family: "Akshar";
  font-weight: 600;
  font-display: swap;
}
@font-face {
  src: url(../font/Akshar-Medium.woff) format("woff");
  font-family: "Akshar";
  font-weight: 500;
  font-display: swap;
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
header {
  position: fixed;
  width: 100%;
  height: 75px;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
}

.c-header {
  position: relative;
  height: 100%;
}
.c-header__logo {
  width: 260px;
  margin-left: 20px;
}
.c-header__logo-link .img {
  width: 130px;
  display: inline-block;
  margin-right: 10px;
}
.c-header__logo-link .txt {
  color: #C9004D;
  font-size: 15px;
  font-weight: bold;
  vertical-align: bottom;
}
.c-header__list {
  max-width: 830px;
}
.c-header__list nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header__entry {
  width: 180px;
  height: 75px;
}
.c-header__entry .link {
  background-color: #C9004D;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 23px;
  letter-spacing: 0.08em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-header__btn {
  width: 75px;
  height: 75px;
  background-color: #C9004D;
  position: absolute;
  top: 0;
  right: 0;
}
.c-header__btn .btn-wrap span {
  width: 32px;
  display: inline-block;
  height: 4px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-header__btn .btn-wrap span:nth-child(1) {
  top: 25px;
}
.c-header__btn .btn-wrap span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-header__btn .btn-wrap span:nth-child(3) {
  top: 48px;
}
.c-header .nav-btn.active .btn-wrap span:nth-child(1) {
  top: 35px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.c-header .nav-btn.active .btn-wrap span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  opacity: 0;
}
.c-header .nav-btn.active .btn-wrap span:nth-child(3) {
  top: 35px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.c-footer {
  position: relative;
  z-index: 2;
  background-color: #F2F2F2;
}
.c-footer__logo .img {
  width: 220px;
}
.c-footer__logo .copy {
  font-size: 12px;
  letter-spacing: 0;
  color: #919191;
  margin-top: 45px;
}
.c-footer__entry .link {
  width: 120px;
  background-color: #C9004D;
  color: #fff;
  padding: 8px;
  border-radius: 5px;
  display: block;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-footer__small {
  margin-top: 50px;
}

.c-footer-small-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.c-footer-small-list__item {
  text-decoration: underline;
  font-size: 12px;
  padding: 10px;
  font-weight: bold;
}

.c-ttl {
  text-align: center;
}
.c-ttl.left {
  text-align: left;
}
.c-ttl.left .ja {
  margin-left: 20px;
}
.c-ttl .en {
  font-size: 120px;
  font-weight: 600;
  color: #C9004D;
  display: block;
  line-height: 0.7;
  letter-spacing: 0;
  white-space: nowrap;
}
.c-ttl .en.white {
  color: #fff;
}
.c-ttl .ja {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  padding: 4px 30px;
  background-color: #76002F;
  position: relative;
  z-index: 2;
}

.c-entry {
  height: 75px;
  width: 300px;
  margin: 0 auto;
  margin-top: 60px;
  position: relative;
}
.c-entry::after {
  content: "";
  background: url(../img/entry_arrow.svg) no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 7px;
}
.c-entry .link {
  background-color: #C9004D;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 23px;
  letter-spacing: 0.08em;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 615px;
  margin-right: 20px;
}
.c-nav-list__item {
  display: block;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.paging-area {
  font-size: 0;
  padding: 50px 0 0;
  text-align: center;
  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;
}

.paging-area > * {
  border: 1px solid blue;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  line-height: 1;
  color: blue;
  background: #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;
  font-size: 14px;
  margin: 0 5px 5px;
  padding: 0 4px;
  position: relative;
  text-align: center;
  vertical-align: top;
}

.paging-area .back {
  padding: 0 32px;
}

.paging-area .page-numbers.current {
  background: blue;
  color: #fff;
}

.paging-area .page-numbers.dots {
  border-color: transparent;
  min-width: 1px;
  margin: 0;
}

.paging-area .next.page-numbers,
.paging-area .prev.page-numbers {
  position: relative;
}

.paging-area .next.page-numbers:before,
.paging-area .prev.page-numbers:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../img/common/ico-arrow-blue.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.paging-area .next.page-numbers:hover:before,
.paging-area .prev.page-numbers:hover:before {
  background-image: url("../img/common/ico-arrow-wt.svg");
}

.paging-area .prev.page-numbers:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#pagetop {
  z-index: 100;
}
#pagetop a {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 62px;
  background-color: #e9a2af;
}
#pagetop img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 2px;
}

/*------------------------------------------------------------------------------
  animation
------------------------------------------------------------------------------*/
.anm-list > * {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
}

.anm-list > *.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
  animation: fadeInUp 1.5s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/*------------------------------------------------------------------------------
  original
------------------------------------------------------------------------------*/
.scroll-bg::before {
  content: "";
  width: 40px;
  height: 100%;
  background-color: #C9004D;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.scroll-bg.is-animated::before {
  -webkit-animation: scroll 1.5s ease-in;
          animation: scroll 1.5s ease-in;
}

@-webkit-keyframes scroll {
  0% {
    top: -100%;
  }
  80% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}

@keyframes scroll {
  0% {
    top: -100%;
  }
  80% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
.scale.is-animated {
  -webkit-animation: scale 1s ease-in-out;
          animation: scale 1s ease-in-out;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0) skew(60deg) translateY(80px);
            transform: scale(0) skew(60deg) translateY(80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(0) skew(60deg) translateY(80px);
            transform: scale(0) skew(60deg) translateY(80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.busi-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.busi-bg.is-animated::after {
  -webkit-animation: bg 1s ease-in;
          animation: bg 1s ease-in;
}

@-webkit-keyframes bg {
  0% {
    left: 0;
    background-color: #11519E;
    z-index: 3;
  }
  100% {
    left: 100%;
    background-color: #11519E;
    z-index: 3;
  }
}

@keyframes bg {
  0% {
    left: 0;
    background-color: #11519E;
    z-index: 3;
  }
  100% {
    left: 100%;
    background-color: #11519E;
    z-index: 3;
  }
}
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.mv {
  position: relative;
  margin-top: 75px;
  height: 700px;
  overflow: hidden;
}
.mv__txt {
  position: absolute;
  width: 880px;
  height: 390px;
  inset: 0;
  margin: auto;
}
.mv__video {
  position: fixed;
  top: 75px;
  left: 0;
  width: 100%;
  height: 51.2445095168vw;
  min-height: 700px;
}
.mv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv__scroll {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  width: 40px;
  overflow: hidden;
  text-align: center;
}
.mv__scroll img {
  position: relative;
  z-index: 2;
  width: 24px;
}

.about {
  position: relative;
  z-index: 2;
  padding-top: 1200px;
  background: url(../img/about_bg.png) no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  padding-bottom: 360px;
}
.about__cont {
  margin-top: 100px;
}
.about__ttl {
  font-size: 36px;
  font-weight: bold;
  color: #C9004D;
}
.about__txt {
  line-height: 2;
  width: 440px;
  letter-spacing: 0.04em;
  margin-top: 10px;
}
.about__img {
  width: 727px;
  margin-left: auto;
  margin-top: -180px;
}

.business {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding-top: 160px;
}
.business__ttl {
  color: #C9004D;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin-top: 60px;
}
.business__txt {
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 24px;
  text-align: center;
}
.business__cont {
  margin-top: 100px;
  position: relative;
}
.business__tab.under {
  margin-top: -1px;
}

.business-tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.business-tab-list__item {
  width: 33.3333333333%;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.business-tab-list__item .en {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: block;
  text-align: center;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  line-height: 0.5;
}
.business-tab-list__item .txt-wrap {
  padding: 28px 10px;
}
.business-tab-list__item .txt {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  display: block;
  text-align: center;
}
.business-tab-list__item:nth-child(1) {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.business-tab-list__item:nth-child(1) .txt-wrap {
  background-color: #11519E;
  -webkit-clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
}
.business-tab-list__item:nth-child(1) .en {
  color: #11519E;
}
.business-tab-list__item:nth-child(2) .txt-wrap {
  background-color: #FC6E25;
  -webkit-clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
          clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
}
.business-tab-list__item:nth-child(2) .en {
  color: #FC6E25;
}
.business-tab-list__item:nth-child(3) {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
.business-tab-list__item:nth-child(3) .txt-wrap {
  background-color: #F75E88;
  -webkit-clip-path: polygon(5% 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(5% 0, 100% 0%, 100% 100%, 0% 100%);
}
.business-tab-list__item:nth-child(3) .en {
  color: #F75E88;
}

.business-cont {
  padding-top: 10px;
  padding-bottom: 150px;
  margin-top: -1px;
}
.business-cont[data-tab=tab1] {
  background-color: #11519E;
}
.business-cont[data-tab=tab2] {
  background-color: #F75E88;
  display: none;
}
.business-cont[data-tab=tab3] {
  background-color: #FC6E25;
  display: none;
}
.business-cont__img {
  position: relative;
}
.business-cont__txt-wrap {
  position: absolute;
  top: 50px;
  left: 180px;
}
.business-cont__ttl {
  font-size: 70px;
  color: #fff;
  font-weight: 600;
}
.business-cont__txt {
  color: #fff;
  line-height: 2;
}
.business-cont__list {
  margin-top: -150px;
  position: relative;
}
.business-cont__next {
  position: absolute;
  top: 50%;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.business-cont__next img {
  vertical-align: baseline;
}
.business-cont__next .next {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-align: center;
}
.business-cont__next .ttl {
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: block;
  font-size: 14px;
  margin-top: 13px;
}
.business-cont__next.left {
  left: 40px;
}
.business-cont__next.left img {
  display: inline-block;
  margin-right: 10px;
}
.business-cont__next.right {
  right: 40px;
}
.business-cont__next.right img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  display: inline-block;
  margin-left: 10px;
}

.business-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.business-list.two {
  max-width: 655px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
}
.business-list__item {
  background-color: #fff;
  border-radius: 10px;
  padding: 35px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.business-list__logo {
  width: 190px;
  margin: 0 auto;
  text-align: center;
  height: 70px;
}
.business-list__logo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.business-list__pink {
  color: #C9004D;
  font-weight: bold;
  font-size: 18px;
  margin-top: 30px;
  letter-spacing: -0.04em;
  text-align: center;
}
.business-list__txt {
  font-size: 14px;
  margin-top: 30px;
}
.business-list__ico-area {
  margin-top: auto;
  padding-top: 20px;
}

.business-ico-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.business-ico-list__item:not(:first-child) {
  margin-top: 20px;
}
.business-ico-list__img {
  width: 97px;
  margin-right: 10px;
}
.business-ico-list__txt {
  color: #C9004D;
  text-align: center;
  width: calc(100% - 185px);
}
.business-ico-list__txt .ttl {
  font-size: 18px;
  font-weight: bold;
}
.business-ico-list__txt .small {
  font-size: 18px;
  font-weight: bold;
}
.business-ico-list__txt .num {
  font-family: "Akshar", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 50px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.business-ico-list__txt .small2 {
  font-size: 13px;
}

.business-kome {
  color: #fff;
  text-align: right;
  margin-top: 20px;
  font-size: 14px;
}

.env {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding-top: 150px;
  padding-bottom: 150px;
}
.env__txt {
  margin-top: 65px;
  text-align: center;
}
.env__slide {
  margin-top: 50px;
}
.env-slide {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 20px;
}
.env-slide__img {
  border-radius: 10px;
  overflow: hidden;
}
.env-slide__txt {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

.slide-nav {
  width: 150px;
  position: relative;
  margin-left: auto;
  margin-top: -20px;
}
.slide-nav .swiper-button-prev, .slide-nav .swiper-button-next {
  position: absolute;
  width: 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slide-nav .swiper-button-prev::after, .slide-nav .swiper-button-next::after {
  content: none;
}
.slide-nav .swiper-button-prev:hover, .slide-nav .swiper-button-next:hover {
  opacity: 0.8;
}
.slide-nav .swiper-button-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.mes-look {
  position: relative;
  z-index: 2;
  background-color: #96003A;
  padding-top: 100px;
  padding-bottom: 200px;
}
.message__txt-wrap {
  width: 590px;
  margin-right: 60px;
  margin-top: 55px;
}
.message__txt {
  color: #fff;
  line-height: 2;
  margin-top: 55px;
}
.message__img {
  width: 400px;
  margin-right: -40px;
}

.look {
  margin-top: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.look__txt-wrap {
  width: 700px;
  margin-top: 55px;
}
.look__txt {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin-top: 65px;
  letter-spacing: -0.02em;
}

.look-list {
  margin-top: 40px;
}
.look-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  padding: 8px;
  border-radius: 10px;
}
.look-list__item .num {
  color: #C9004D;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #F4E7EC;
  border-radius: 50px;
  margin-right: 10px;
}
.look-list__item .black {
  font-size: 17px;
  font-weight: bold;
  width: 380px;
  display: block;
}
.look-list__item .arrow {
  width: 34px;
  margin-right: 10px;
}
.look-list__item .pink {
  font-size: 17px;
  color: #C9004D;
  font-weight: bold;
}
.look-list__item:not(:first-child) {
  margin-top: 10px;
}

.recruit {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.recruit-list {
  margin-top: 60px;
  width: 100%;
  border-bottom: 1px solid #D8D8D8;
}
.recruit-list th {
  width: 178px;
  background-color: #F8F8F8;
  border-top: 1px solid #D8D8D8;
  padding: 25px 20px;
  text-align: left;
}
.recruit-list td {
  border-top: 1px solid #D8D8D8;
  padding: 25px 20px;
}

.banner {
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
}
.banner a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.swiper-pagination0 {
  max-width: 80px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}
.swiper-pagination0 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(201, 0, 77, 0.9);
}
.swiper-pagination0 .swiper-pagination-bullet-active {
  background-color: #C9004D;
}

.swiper-pagination1 {
  max-width: 80px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}
.swiper-pagination1 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(201, 0, 77, 0.9);
}
.swiper-pagination1 .swiper-pagination-bullet-active {
  background-color: #C9004D;
}

.swiper-pagination2 {
  max-width: 80px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}
.swiper-pagination2 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(201, 0, 77, 0.9);
}
.swiper-pagination2 .swiper-pagination-bullet-active {
  background-color: #C9004D;
}
@media only screen and (min-width: 641px) {
  .inner-block {
    margin: 0 auto;
  }
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .c-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 0;
  }
  .c-header__entry .link:hover {
    opacity: 0.8;
  }
  .c-footer {
    padding: 60px 140px 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-footer__entry .link:hover {
    opacity: 0.8;
  }
  .c-footer__nav-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-ttl.right {
    text-align: right;
  }
  .c-ttl.right .ja {
    margin-right: 20px;
  }
  .c-entry .link:hover {
    opacity: 0.8;
  }
  .c-nav-list__item::before {
    content: "";
    width: 1px;
    height: 10px;
    background-color: #E5E5E5;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .c-nav-list__item:last-child::after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: #E5E5E5;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .c-nav-list__item:hover {
    opacity: 0.8;
  }
  .paging-area > * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .paging-area > *:not(.dots):hover {
    background: blue;
    color: #fff;
  }
  #pagetop a {
    padding: 14.5px 21px;
  }
  #pagetop:hover a {
    background-color: #e1647b;
  }
  .business-tab-list__item:hover {
    opacity: 0.8;
  }
  .business-cont__next:hover {
    opacity: 0.8;
  }
  .business-list {
    gap: 35px;
  }
  .business-list__item.swiper-slide {
    width: 310px !important;
  }
  .message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .look__img {
    width: 300px;
    margin-left: -60px;
    margin-right: 60px;
  }
  .banner a:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 640px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .outer-block {
    min-width: 320px;
  }
  .inner-block {
    padding: 0 30px;
    width: auto;
  }
  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  .pc {
    display: none !important;
  }
  .c-header__logo {
    padding-top: 12px;
    width: 280px;
  }
  .c-header__logo-link .img {
    width: 110px;
    display: inline-block;
  }
  .c-header__logo-link .txt {
    font-size: 12px;
  }
  .c-header__list {
    background-color: #F2F2F2;
    margin-top: 20px;
    padding-bottom: 34px;
    height: 100vh;
  }
  .c-header__list nav {
    display: block;
  }
  .c-header__entry {
    width: 300px;
    margin: 0 auto;
    margin-top: 20px;
    position: relative;
  }
  .c-header__entry::after {
    content: "";
    background: url(../img/entry_arrow.svg) no-repeat;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 5px;
    height: 7px;
  }
  .c-header__entry .link {
    border-radius: 5px;
  }
  .c-header .nav-wrap {
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .c-header .nav-wrap.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .c-footer {
    padding-bottom: 60px;
  }
  .c-footer__logo .img {
    width: 190px;
    margin: 0 auto;
    margin-top: 30px;
  }
  .c-footer__logo .copy {
    margin-top: 20px;
  }
  .c-footer__logo {
    text-align: center;
  }
  .c-footer-small-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-footer-small-list__item {
    font-size: 9px;
  }
  .c-ttl.left {
    text-align: center;
  }
  .c-ttl.left .ja {
    margin-left: 0;
  }
  .c-ttl .en {
    font-size: 60px;
  }
  .c-ttl .ja {
    font-size: 20px;
    padding: 8px 30px;
  }
  .c-nav-list {
    display: block;
    text-align: center;
    margin-right: 0;
  }
  .c-nav-list__item {
    border-bottom: 1px solid #E5E5E5;
    font-size: 18px;
    padding: 20px;
  }
  #pagetop a {
    padding: 16px 21px;
  }
  #pagetop img {
    margin-top: 1px;
  }
  .mv {
    height: calc(100dvh - 75px);
  }
  .mv__txt {
    width: 337px;
    height: 343px;
  }
  .mv__video {
    height: calc(100dvh - 75px);
    min-height: auto;
  }
  .about {
    background: url(../img/about_bg_sp.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 270px;
  }
  .about__cont {
    margin-top: 60px;
  }
  .about__ttl {
    font-size: 28px;
  }
  .about__txt {
    width: 100%;
  }
  .about__img {
    width: 100%;
    margin-top: 40px;
  }
  .business__ttl {
    font-size: 22px;
    padding: 0 30px;
  }
  .business__txt {
    padding: 0 30px;
    text-align: left;
  }
  .business-tab-list {
    margin: 0 calc(50% - 50vw);
  }
  .business-tab-list__item {
    width: 120%;
  }
  .business-tab-list__item .en {
    font-size: 10px;
  }
  .business-tab-list__item .txt-wrap {
    padding: 20px 8px;
  }
  .business-tab-list__item .txt {
    font-size: 13px;
  }
  .business-tab-list__item:nth-child(1) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .business-tab-list__item:nth-child(3) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .business-cont {
    padding-bottom: 75px;
  }
  .business-cont__txt-wrap {
    left: 0;
  }
  .business-cont__ttl {
    font-size: min(12.3076923077vw, 48px);
    letter-spacing: 0;
    line-height: 1;
  }
  .business-cont__txt {
    font-size: min(3.5897435897vw, 14px);
    letter-spacing: 0;
    margin-top: 5.1282051282vw;
  }
  .business-cont__list {
    margin-top: -23.0769230769vw;
  }
  .busi_slide.inner-block {
    padding: 0;
    position: static;
    max-width: none;
  }
  .business-list.two {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .env {
    padding-bottom: 100px;
    padding-top: 100px;
  }
  .env__txt {
    margin-top: 50px;
  }
  .env-slide {
    grid-template-columns: 1fr 1fr;
    gap: 30px 13px;
  }
  .slide-nav {
    margin-left: 0;
    margin: 0 auto;
    margin-top: 50px;
  }
  .mes-look {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .message__txt-wrap {
    width: 100%;
    margin-right: 0;
  }
  .message__txt {
    margin-top: 50px;
  }
  .message__img {
    width: 280px;
    margin-right: 0;
    margin: 0 auto;
    margin-top: 30px;
  }
  .look {
    display: block;
  }
  .look__txt-wrap {
    width: 100%;
  }
  .look__txt {
    margin-top: 50px;
    font-size: 19px;
    text-align: center;
  }
  .look__img {
    width: 210px;
    margin: 0 auto;
    margin-top: 30px;
  }
  .look-list__item {
    padding: 20px;
  }
  .look-list__item .black {
    width: calc(100% - 50px);
  }
  .look-list__item .arrow {
    margin-top: 6px;
  }
  .look-list__item .pink {
    margin-top: 6px;
  }
  .recruit {
    padding-bottom: 0;
  }
  .recruit-list th {
    display: block;
    background-color: transparent;
    width: 100%;
    padding-bottom: 0;
  }
  .recruit-list td {
    display: block;
    border-top: 1px solid transparent;
  }
  .banner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media not print {
  .anm {
    opacity: 0;
  }
  .anm.is-animated {
    -webkit-animation: fadeIn 1.5s forwards;
    animation: fadeIn 1.5s forwards;
  }
  .anm-up {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  .anm-up.is-animated {
    -webkit-animation: fadeInUp 1.5s forwards;
    animation: fadeInUp 1.5s forwards;
  }
  .anm-left {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
  }
  .anm-left.is-animated {
    -webkit-animation: fadeInLeft 1.5s forwards;
    animation: fadeInLeft 1.5s forwards;
  }
  .anm-right {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
  }
  .anm-right.is-animated {
    -webkit-animation: fadeInRight 1.5s forwards;
    animation: fadeInRight 1.5s forwards;
  }
}
@media only screen and (min-width: 1700px) {
  .business-cont__next.left {
    left: 200px;
  }
  .business-cont__next.right {
    right: 200px;
  }
}
/*# sourceMappingURL=style.css.map */