@charset "UTF-8";
/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width:1099px) {
  /* ***************************************************
   トップページ
  *************************************************** */
  @-webkit-keyframes bulletActive {
    0% {
      width: 8px;
    }
    100% {
      width: 80px;
    }
  }
  @keyframes bulletActive {
    0% {
      width: 8px;
    }
    100% {
      width: 80px;
    }
  }
  .page-front {
    /* 共通パーツ */
  }
  .page-front .front-section-title {
    margin-bottom: 36px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #696969;
    text-align: center;
    line-height: 1em;
    letter-spacing: 0.05em;
  }
  .page-front .more {
    margin: 40px auto 0;
    text-align: center;
  }
  .page-front .more a {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 320px;
    max-width: 100%;
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    border: 2px solid #666666;
  }
  .page-front .more a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: #FFFF00;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .more a[target=_blank] span::after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    padding-right: 20px;
    -webkit-mask-image: url(../images/common/ico-blank.svg);
            mask-image: url(../images/common/ico-blank.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: right center;
            mask-position: right center;
    background-color: #666666;
  }
  .page-front #frontMvSlider {
    position: relative;
    width: 100%;
    margin: 0 auto 56px;
    padding: 92px 0 64px;
    background: #E9EFF1;
    background: radial-gradient(89.47% 101.97% at 21.6% 10.53%, #E9EFF1 0%, #D9E2E5 100%);
    overflow: hidden;
  }
  .page-front #frontMvSlider .swiper-wrapper .swiper-slide {
    width: clamp(300px, 80vw, 500px);
  }
  .page-front #frontMvSlider .swiper-wrapper .swiper-slide a {
    color: #666666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front #frontMvSlider .swiper-wrapper .swiper-slide a .img {
    margin-bottom: 16px;
  }
  .page-front #frontMvSlider .swiper-wrapper .swiper-slide a .img img {
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
  }
  .page-front #frontMvSlider .swiper-wrapper .swiper-slide a p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8em;
  }
  .page-front #frontMvSlider .mv-button-next,
  .page-front #frontMvSlider .mv-button-prev {
    position: absolute;
    bottom: 16px;
    z-index: 10;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 7px 12px;
    cursor: pointer;
  }
  .page-front #frontMvSlider .mv-button-next {
    right: 14px;
    background-image: url(../images/front/ico-arrow-next.svg);
  }
  .page-front #frontMvSlider .mv-button-prev {
    left: 14px;
    background-image: url(../images/front/ico-arrow-prev.svg);
  }
  .page-front #frontMvSlider .mv-pagination {
    position: absolute;
    left: 0;
    bottom: 26px;
    z-index: 5;
    text-align: center;
  }
  .page-front #frontMvSlider .mv-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #696969;
    opacity: 1;
    border-radius: 5px;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
  }
  .page-front #frontMvSlider .mv-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    width: 80px;
    background-color: #FFFF00;
  }
  .page-front #frontMvSlider .mv-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #696969;
    border-radius: 5px;
    -webkit-animation: bulletActive 4000ms linear forwards;
            animation: bulletActive 4000ms linear forwards;
  }
  .page-front .front-news {
    width: 1160px;
    max-width: calc(100% - 8vw);
    margin: 0 auto 56px;
  }
  .page-front .front-news .front-section-title {
    margin-bottom: 24px;
    font-size: 28px;
    text-align: left;
  }
  .page-front .front-news .news-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px 12px;
  }
  .page-front .front-news .news-wrapper .item a {
    display: block;
    color: #666666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .front-news .news-wrapper .item a .img {
    margin-bottom: 16px;
  }
  .page-front .front-news .news-wrapper .item a .img img {
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
  }
  .page-front .front-news .news-wrapper .item a p {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.8em;
  }
  .page-front .front-news .news-wrapper .item a time {
    margin-right: 12px;
    font-family: "Wix Madefor Text", "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 500;
  }
  .page-front .front-news .news-wrapper .item a b {
    display: inline-block;
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 400;
    background: #D9E2E5;
  }
  .page-front .front-news .news-wrapper .mov {
    grid-row: span 2;
  }
  .page-front .front-news .news-wrapper .mov a {
    display: block;
  }
  .page-front .front-news .news-wrapper .mov a .img {
    position: relative;
    z-index: 1;
  }
  .page-front .front-news .news-wrapper .mov a .img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
    width: 192px;
    height: 192px;
    background-image: url(../images/front/play.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .page-front .front-news .news-wrapper .mov a .img img {
    width: 100%;
    aspect-ratio: 10/12;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .front-news .news-more {
    margin: 24px 0 0;
    text-align: right;
  }
  .page-front .front-news .news-more a {
    text-decoration: underline;
  }
  .page-front #frontInstaSlider {
    width: 100%;
    margin: 0 auto 56px;
    overflow: hidden;
  }
  .page-front #frontInstaSlider .swiper-wrapper {
    display: none;
  }
  .page-front #frontInstaSlider .more a span {
    display: inline-block;
    padding-left: 20px;
    background-image: url(../images/front/ico-insta.svg);
    background-repeat: no-repeat;
    background-position: left 5px;
    background-size: 12px;
  }
  .page-front #frontInstaSlider .more a span::after {
    display: none;
  }
  .page-front .front-works {
    width: 1160px;
    max-width: calc(100% - 8vw);
    margin: 0 auto 80px;
  }
  .page-front .front-works .works-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(154px, 50% - 12px, 260px), 1fr));
    gap: 12px;
  }
  .page-front .front-works .works-wrapper .item a {
    position: relative;
    display: block;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
    overflow: hidden;
  }
  .page-front .front-works .works-wrapper .item a::before {
    content: "";
    width: 100%;
  }
  .page-front .front-works .works-wrapper .item a .img img {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    border-radius: 16px;
  }
  .page-front .front-works .works-wrapper .item a .text {
    display: none;
  }
  .page-front .front-media {
    width: 1160px;
    max-width: calc(100% - 8vw);
    margin: 0 auto 56px;
  }
  .page-front .front-media hgroup {
    text-align: center;
  }
  .page-front .front-media hgroup small {
    display: block;
    margin-bottom: 12px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #696969;
    line-height: 1em;
  }
  .page-front .front-media .media-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px 12px;
  }
  .page-front .front-media .media-wrapper .item a {
    display: block;
    color: #666666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .front-media .media-wrapper .item a .img {
    margin-bottom: 16px;
  }
  .page-front .front-media .media-wrapper .item a .img img {
    width: 100%;
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
  }
  .page-front .front-media .media-wrapper .item a p {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.8em;
  }
  .page-front .front-media .media-wrapper .item a time {
    margin-right: 12px;
    font-family: "Wix Madefor Text", "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 500;
  }
  .page-front .front-media .media-wrapper .item a .cat {
    display: inline-block;
    padding: 4px 8px;
    font-family: "Wix Madefor Text", "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .page-front .front-media .media-wrapper .item a .cat.works {
    color: #4A9F0B;
  }
  .page-front .front-media .media-wrapper .item a .cat.members {
    color: #9479D1;
  }
  .page-front .front-media .media-wrapper .item a .cat.days {
    color: #EA7998;
  }
  .page-front .front-ir {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto 56px;
    padding: 40px 4vw;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(229, 238, 243, 0.5)), to(rgba(229, 238, 243, 0.5))), url(../images/front/bg-ir.jpg);
    background: linear-gradient(0deg, rgba(229, 238, 243, 0.5), rgba(229, 238, 243, 0.5)), url(../images/front/bg-ir.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .page-front .front-ir hgroup {
    margin-bottom: 36px;
    text-align: center;
  }
  .page-front .front-ir hgroup .front-section-title {
    margin-bottom: 12px;
  }
  .page-front .front-ir hgroup small {
    display: block;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #696969;
    line-height: 1em;
  }
  .page-front .front-ir p {
    margin: 0;
    font-size: 13px;
    text-align: center;
    color: #696969;
  }
  .page-front .front-ir .front-ir-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3% - 12px), 106px));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
    width: 1160px;
    max-width: 100%;
    margin: 36px auto;
  }
  .page-front .front-ir .front-ir-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 110px;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    background-color: #fff;
    border: 2px solid #BBBBBB;
    border-radius: 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .front-ir .front-ir-list li a::before {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    background-color: #E5EEF3;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
  }
  .page-front .front-ir .front-ir-list li a.news::before {
    background-image: url(../images/front/ir-news.svg);
  }
  .page-front .front-ir .front-ir-list li a.library::before {
    background-image: url(../images/front/ir-library.svg);
  }
  .page-front .front-ir .front-ir-list li a.info::before {
    background-image: url(../images/front/ir-info.svg);
  }
  .page-front .front-ir .more a {
    color: #fff;
    background-color: #666666;
  }
  .page-front .front-recruit {
    width: 100%;
    margin: 0 auto 56px;
  }
  .page-front .front-recruit .inner {
    padding: 92px 4vw;
    text-align: center;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))), url(../images/front/bg-recruit.jpg);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), url(../images/front/bg-recruit.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .page-front .front-recruit .inner .more a {
    background-color: #FFFF00;
    border: 2px solid #FFFF00;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .front-banner {
    padding: 36px 4vw;
    background-color: #F5F5F5;
  }
  .page-front .front-banner ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, 280px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px 12px;
    margin: 0 auto;
  }
  .page-front .front-banner ul li a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #sb_instagram .sb_instagram_header,
  #sb_instagram #sbi_load {
    display: none !important;
  }
  #sb_instagram #sbi_images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(33% - 1px), 1fr)) !important;
    gap: 1px !important;
    padding: 0 4vw !important;
  }
  #sb_instagram #sbi_images .sbi_item:nth-child(10) {
    display: none;
  }
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width:1100px) {
  /* ***************************************************
   トップページ
  *************************************************** */
  @-webkit-keyframes bulletActive {
    0% {
      width: 8px;
    }
    100% {
      width: 80px;
    }
  }
  @keyframes bulletActive {
    0% {
      width: 8px;
    }
    100% {
      width: 80px;
    }
  }
  .page-front {
    /* 共通パーツ */
  }
  .page-front .front-section-title {
    margin-bottom: 40px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #696969;
    text-align: center;
    line-height: 1em;
    letter-spacing: 0.05em;
  }
  .page-front .more {
    margin: 40px auto 0;
    text-align: center;
  }
  .page-front .more a {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 320px;
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    border: 2px solid #666666;
  }
  .page-front .more a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: #FFFF00;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .more a:hover::before {
    width: 100%;
  }
  .page-front .more a[target=_blank] span::after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    padding-right: 20px;
    -webkit-mask-image: url(../images/common/ico-blank.svg);
            mask-image: url(../images/common/ico-blank.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: right center;
            mask-position: right center;
    background-color: #666666;
  }
  .page-front #frontMvSlider {
    position: relative;
    width: 100%;
    margin: 0 auto 80px;
    padding: 120px 0 68px;
    background: #E9EFF1;
    background: radial-gradient(89.47% 101.97% at 21.6% 10.53%, #E9EFF1 0%, #D9E2E5 100%);
    overflow: hidden;
  }
  .page-front #frontMvSlider .swiper-wrapper .swiper-slide {
    width: 560px;
  }
  .page-front #frontMvSlider .swiper-wrapper .swiper-slide a {
    color: #666666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front #frontMvSlider .swiper-wrapper .swiper-slide a:hover {
    opacity: 0.8;
  }
  .page-front #frontMvSlider .swiper-wrapper .swiper-slide a .img {
    margin-bottom: 16px;
  }
  .page-front #frontMvSlider .swiper-wrapper .swiper-slide a .img img {
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    border-radius: 24px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
  }
  .page-front #frontMvSlider .swiper-wrapper .swiper-slide a p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8em;
  }
  .page-front #frontMvSlider .mv-button-next,
  .page-front #frontMvSlider .mv-button-prev {
    position: absolute;
    bottom: 16px;
    z-index: 10;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 7px 12px;
    cursor: pointer;
  }
  .page-front #frontMvSlider .mv-button-next {
    left: calc(50% + 312px);
    background-image: url(../images/front/ico-arrow-next.svg);
  }
  .page-front #frontMvSlider .mv-button-prev {
    left: calc(50% - 344px);
    background-image: url(../images/front/ico-arrow-prev.svg);
  }
  .page-front #frontMvSlider .mv-pagination {
    position: absolute;
    left: 0;
    bottom: 26px;
    z-index: 5;
    text-align: center;
  }
  .page-front #frontMvSlider .mv-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #696969;
    opacity: 1;
    border-radius: 5px;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
  }
  .page-front #frontMvSlider .mv-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    width: 80px;
    background-color: #FFFF00;
  }
  .page-front #frontMvSlider .mv-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #696969;
    border-radius: 5px;
    -webkit-animation: bulletActive 4000ms linear forwards;
            animation: bulletActive 4000ms linear forwards;
  }
  .page-front .front-news {
    width: 1160px;
    max-width: calc(100% - 48px);
    margin: 0 auto 80px;
  }
  .page-front .front-news .front-section-title {
    margin-bottom: 24px;
    font-size: 28px;
    text-align: left;
  }
  .page-front .front-news .news-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3% - 60px), 1fr));
    gap: 40px 60px;
  }
  .page-front .front-news .news-wrapper .item a {
    display: block;
    color: #666666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .front-news .news-wrapper .item a:hover {
    opacity: 0.8;
  }
  .page-front .front-news .news-wrapper .item a:hover p {
    text-decoration: underline;
  }
  .page-front .front-news .news-wrapper .item a .img {
    margin-bottom: 16px;
  }
  .page-front .front-news .news-wrapper .item a .img img {
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
  }
  .page-front .front-news .news-wrapper .item a p {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.8em;
  }
  .page-front .front-news .news-wrapper .item a time {
    margin-right: 12px;
    font-family: "Wix Madefor Text", "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 500;
  }
  .page-front .front-news .news-wrapper .item a b {
    display: inline-block;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 400;
    background: #D9E2E5;
  }
  .page-front .front-news .news-wrapper .mov {
    grid-column: 3/5;
    grid-row: 1/3;
  }
  .page-front .front-news .news-wrapper .mov a {
    display: block;
  }
  .page-front .front-news .news-wrapper .mov a:hover img {
    opacity: 0.8;
  }
  .page-front .front-news .news-wrapper .mov a .img {
    position: relative;
    z-index: 1;
  }
  .page-front .front-news .news-wrapper .mov a .img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
    width: 192px;
    height: 192px;
    background-image: url(../images/front/play.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .page-front .front-news .news-wrapper .mov a .img img {
    width: 100%;
    aspect-ratio: 9/16;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .front-news .news-more {
    margin: 24px 0 0;
    text-align: right;
  }
  .page-front .front-news .news-more a {
    text-decoration: underline;
  }
  .page-front .front-news .news-more a:hover {
    text-decoration: none;
  }
  .page-front #frontInstaSlider {
    width: 100%;
    margin: 0 auto 80px;
    overflow: hidden;
  }
  .page-front #frontInstaSlider .swiper-wrapper {
    display: none;
  }
  .page-front #frontInstaSlider .more a span {
    display: inline-block;
    padding-left: 20px;
    background-image: url(../images/front/ico-insta.svg);
    background-repeat: no-repeat;
    background-position: left 5px;
    background-size: 12px;
  }
  .page-front #frontInstaSlider .more a span::after {
    display: none;
  }
  .page-front .front-works {
    width: 1160px;
    max-width: calc(100% - 48px);
    margin: 0 auto 80px;
  }
  .page-front .front-works .works-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(25% - 40px), 1fr));
    gap: 40px;
  }
  .page-front .front-works .works-wrapper .item a {
    position: relative;
    display: block;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
    overflow: hidden;
  }
  .page-front .front-works .works-wrapper .item a:hover .text {
    opacity: 1;
  }
  .page-front .front-works .works-wrapper .item a::before {
    content: "";
    width: 100%;
  }
  .page-front .front-works .works-wrapper .item a .img img {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    border-radius: 16px;
  }
  .page-front .front-works .works-wrapper .item a .text {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .page-front .front-works .works-wrapper .item a p {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.8em;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .page-front .front-media {
    width: 1160px;
    max-width: calc(100% - 48px);
    margin: 0 auto 80px;
  }
  .page-front .front-media hgroup {
    text-align: center;
  }
  .page-front .front-media hgroup small {
    display: block;
    margin-bottom: 12px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #696969;
    line-height: 1em;
  }
  .page-front .front-media .media-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3% - 60px), 1fr));
    gap: 40px 60px;
  }
  .page-front .front-media .media-wrapper .item a {
    display: block;
    color: #666666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .front-media .media-wrapper .item a:hover {
    opacity: 0.8;
  }
  .page-front .front-media .media-wrapper .item a:hover p {
    text-decoration: underline;
  }
  .page-front .front-media .media-wrapper .item a .img {
    margin-bottom: 16px;
  }
  .page-front .front-media .media-wrapper .item a .img img {
    width: 100%;
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
  }
  .page-front .front-media .media-wrapper .item a p {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.8em;
  }
  .page-front .front-media .media-wrapper .item a time {
    margin-right: 12px;
    font-family: "Wix Madefor Text", "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 500;
  }
  .page-front .front-media .media-wrapper .item a .cat {
    display: inline-block;
    padding: 4px 8px;
    font-family: "Wix Madefor Text", "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .page-front .front-media .media-wrapper .item a .cat.works {
    color: #4A9F0B;
  }
  .page-front .front-media .media-wrapper .item a .cat.members {
    color: #9479D1;
  }
  .page-front .front-media .media-wrapper .item a .cat.days {
    color: #EA7998;
  }
  .page-front .front-ir {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto 80px;
    padding: 64px 24px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(229, 238, 243, 0.5)), to(rgba(229, 238, 243, 0.5))), url(../images/front/bg-ir.jpg);
    background: linear-gradient(0deg, rgba(229, 238, 243, 0.5), rgba(229, 238, 243, 0.5)), url(../images/front/bg-ir.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .page-front .front-ir hgroup {
    margin-bottom: 40px;
    text-align: center;
  }
  .page-front .front-ir hgroup .front-section-title {
    margin-bottom: 12px;
  }
  .page-front .front-ir hgroup small {
    display: block;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #696969;
    line-height: 1em;
  }
  .page-front .front-ir p {
    margin: 0;
    text-align: center;
    color: #696969;
  }
  .page-front .front-ir .front-ir-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3% - 32px), 365px));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
    width: 1160px;
    max-width: 100%;
    margin: 32px auto 40px;
  }
  .page-front .front-ir .front-ir-list li a {
    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;
    gap: 12px;
    height: 84px;
    padding: 24px 0px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    background-color: #fff;
    border: 2px solid #BBBBBB;
    border-radius: 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .front-ir .front-ir-list li a:hover {
    background-color: #E5EEF3;
  }
  .page-front .front-ir .front-ir-list li a::before {
    content: "";
    width: 36px;
    height: 36px;
    background-color: #E5EEF3;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
  }
  .page-front .front-ir .front-ir-list li a.news::before {
    background-image: url(../images/front/ir-news.svg);
  }
  .page-front .front-ir .front-ir-list li a.library::before {
    background-image: url(../images/front/ir-library.svg);
  }
  .page-front .front-ir .front-ir-list li a.info::before {
    background-image: url(../images/front/ir-info.svg);
  }
  .page-front .front-ir .more a {
    color: #fff;
    background-color: #666666;
  }
  .page-front .front-ir .more a:hover {
    color: #666666;
  }
  .page-front .front-recruit {
    width: 1160px;
    max-width: calc(100% - 48px);
    margin: 0 auto 80px;
  }
  .page-front .front-recruit .inner {
    padding: 104px;
    text-align: center;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))), url(../images/front/bg-recruit.jpg);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), url(../images/front/bg-recruit.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
  }
  .page-front .front-recruit .inner .more a {
    background-color: #FFFF00;
    border: 2px solid #FFFF00;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .front-recruit .inner .more a:hover {
    opacity: 0.8;
  }
  .page-front .front-banner {
    padding: 64px 24px;
    background-color: #F5F5F5;
  }
  .page-front .front-banner ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, 280px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 13px;
    width: 1160px;
    max-width: 100%;
    margin: 0 auto;
  }
  .page-front .front-banner ul li a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-front .front-banner ul li a:hover {
    opacity: 0.8;
  }
  @-webkit-keyframes slide {
    from {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-2900px);
              transform: translateX(-2900px);
    } /* jQueryで複製分も考慮 */
  }
  @keyframes slide {
    from {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-2900px);
              transform: translateX(-2900px);
    } /* jQueryで複製分も考慮 */
  }
  #sb_instagram {
    position: relative;
    width: 100%;
    padding: 0 !important;
    overflow: hidden;
  }
  #sb_instagram .sb_instagram_header,
  #sb_instagram #sbi_load {
    display: none !important;
  }
  #sb_instagram #sbi_images {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 !important;
    -webkit-animation: slide 20s linear infinite;
            animation: slide 20s linear infinite;
  }
  #sb_instagram #sbi_images .sbi_item {
    min-width: 280px;
  }
  #sb_instagram #sbi_images .sbi_photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 280px !important;
    height: 350px !important;
  }
  #sb_instagram #sbi_images .sbi_photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
  }
  /* ***************************************************
   ドキュメントページ
  *************************************************** */
  .page-document {
    padding-top: 96px;
  }
  .document-content {
    width: 900px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
    padding-top: 40px;
    color: #666666;
  }
  .document-content h2 {
    position: relative;
    margin: 60px 0 40px;
    padding-top: 17px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5em;
  }
  .document-content h2:first-child {
    margin-top: 0;
  }
  .document-content h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 88px;
    height: 5px;
    background-color: #CCCCCC;
  }
  .document-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0;
  }
  .document-content p {
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 2em;
  }
  .document-content p:last-child {
    margin-bottom: 0;
  }
  .document-content .alignright {
    text-align: right;
  }
  .document-content a {
    text-decoration: underline;
  }
  .document-content a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
  .document-content a[target=_blank]::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 15px;
    margin-left: 8px;
    -webkit-mask-image: url(../images/sustainability/ico-blank.svg);
            mask-image: url(../images/sustainability/ico-blank.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: right bottom;
            mask-position: right bottom;
    background-color: #666666;
  }
  .document-content .reference {
    margin: 40px 0;
    padding: 24px;
    border: 2px solid #CCCCCC;
  }
  .document-content ul {
    list-style: none;
    margin: 40px 0;
    padding-left: 20px;
    text-indent: -18px;
  }
  .document-content ul li {
    margin-bottom: 1em;
  }
  .document-content ul li::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 4px;
    background-color: #666666;
    border-radius: 50%;
  }
  .document-content ol {
    margin: 40px 0;
    padding-left: 20px;
  }
  .document-content table {
    margin: 40px 0;
  }
  .document-content table th,
  .document-content table td {
    padding: 1em;
  }
  .document-content table th {
    white-space: unset;
    text-align: left;
  }
  .document-content address {
    margin: 40px auto;
    padding: 1em;
    font-style: normal;
    text-align: center;
    background-color: #F5F5F5;
  }
}