@charset "UTF-8";

:root {
  --blue: #005BAC;
  --red: #C33131;
  --black_33: #333;
  --light_blue: #15A3D0;
  --green: #31C093;
  --purple: #31C093;
  --pink: #CC1B70;
  --c-border: #D8D8D8;
  --c-gry_bg: #f6f6f6;
}

/* ---------------------
base 
--------------------- */
html,
:host {
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: "Noto Sans JP", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  line-height: inherit;
  color: var(--black_33);
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ---------------------
layout 
--------------------- */
body {
  padding-top: 65px;
  position: relative;
}

body::before,
body::after {
  content: "";
  height: 100%;
  width: 1px;
  border-left: solid 1px var(--c-border);
  position: absolute;
  top: 0;
  z-index: -1;
}

body::before {
  left: 4vw;
}

body::after {
  right: 4vw;
}

.wrap-common {
  padding-left: 8vw;
  padding-right: 8vw;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 768px) {
  .md\:absolute {
    position: absolute;
  }

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:order-3 {
    order: 3;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:text-left {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .lg\:static {
    position: static;
  }

  .lg\:absolute {
    position: absolute;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:items-center {
    align-items: center;
  }

}

@media (min-width: 1280px) {
  .wrap-common {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .xl\:static {
    position: static;
  }

  .xl\:absolute {
    position: absolute;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:flex-row {
    flex-direction: row;
  }

  .xl\:items-center {
    align-items: center;
  }

}

/* ---------------------
font-style 
--------------------- */
.mincho {
  font-family: "Noto Serif JP", serif;
}

.text-center {
  text-align: center;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.not-italic {
  font-style: normal;
}

/* ---------------------
link-style 
--------------------- */
a,
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

a[href^="tel:"],
a[href^="mailto:"],
a.link {
  text-decoration: none;
  color: var(--black_33);
}

/* ---------------------
btn-style 
--------------------- */
.btn-wh {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: solid 1px var(--blue);
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding: 0;
}

.btn-wh.ico-clone {
  padding: 0 3rem;
}

.btn-wh.ico-clone::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  width: 12px;
  height: 12px;
  background-image: url(../img/common/ico-clone.svg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: invert(16%) sepia(55%) saturate(7417%) hue-rotate(197deg) brightness(88%) contrast(102%);
}

.btn-all {
  display: inline-block;
  position: relative;
  padding-right: 45px;
  color: var(--black_33);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.btn-all::before,
.btn-all::after {
  content: "";
  position: absolute;
  top: -.2rem;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: solid 1px var(--c-border);
  transition: all 0.3s ease;
}

.btn-all::after {
  background: var(--blue);
  border: none;
  transform: scale(.2);
}

.btn-all:hover::after {
  transform: scale(1);
}

/* ---------------------
loading-style 
--------------------- */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

#loading span {
  width: 60px;
  height: 60px;
  border: 6px solid var(--c-green);
  border-top: 6px solid #eee;
  border-radius: 50%;
}

/* ---------------------
header-style 
--------------------- */
.header {
  align-items: center;
  padding: 1rem 4vw;
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0;
  z-index: 55;
  border-bottom: solid 1px var(--c-border);
  background: rgba(255, 255, 255, 1);
  font-size: 0.875rem;
}

.header.scroll:before {
  top: 0;
}

.header .logo {
  width: 70%;
  max-width: 257px;
  position: relative;
  z-index: 51;
  margin: 0;
}

.header .logo img {
  width: 60%;
  vertical-align: baseline;
}

.header .logo>.flex {
  gap: 0 1rem;
}

.header .logo .txt {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

#menu-toggle {
  background: none;
  border: none;
  width: 78px;
  height: 100%;
  font-size: 12px;
  position: absolute;
  right: 0;
  z-index: 51;
}

#menu-toggle .bar {
  width: 38px;
  height: 1px;
  background: var(--blue);
  transition: all 0.3s ease;
}

#menu-toggle .bar-top {
  margin-bottom: 8px;
}

#menu-toggle .bar-top.open {
  transform: rotate(20deg) translate(0px, 5px);
}

#menu-toggle .bar-bottom.open {
  transform: rotate(-20deg) translate(0px, -5px);
}

#menu {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 51;
  overflow-y: auto;
  padding: 4rem 5vw;
  background: var(--blue);
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0 0 0 auto;
}

.gnavi {
  margin: 0;
}

.gnavi a {
  color: #fff;
  display: block;
  text-decoration: none;
}

.gnavi li {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.gnavi>li {
  width: 100%;
  border-bottom: solid 1px #D0D0D0;
  line-height: 3.5rem;
}

.gnavi>li:last-child {
  border-bottom: none;
}

.gnavi>li>a {
  position: relative;
  padding-right: 45px;
}

.gnavi>li.btn-pull>a:before,
.gnavi>li.btn-pull>a:after {
  content: "";
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin: auto 0;
  width: 12px;
  height: 2px;
  background: var(--c-green);
  transition: all 0.3s ease;
}

.gnavi>li.btn-pull>a:after {
  transform: rotate(90deg);
}

.gnavi>li.btn-pull.open>a:after {
  transform: rotate(180deg);
}

.gnavi .pull {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #D0D0D0;
  overflow: hidden;
  height: 0;
  transition: opacity .2s ease;
}

.gnavi .pull li {
  width: 100%;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 180%;
}

.gnavi .pull li a {
  position: relative;
  padding: .6rem 1.8rem;
}

.gnavi .pull li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 6px;
  height: 9px;
  background: url(../img/common/ico-tri.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.header .btn-recruit {
  width: 50%;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 51;
  padding: 1rem .5rem;
  display: flex;
  border: solid 1px var(--blue);
  background: #fff;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.header .btn-recruit.new {
  left: 0;
  right: auto;
}


@media (min-width: 768px) {
  .header .btn-recruit {
    width: 156px;
    top: .8rem;
    bottom: auto;
    padding: .5rem .5rem;
  }

  .header .btn-recruit.new {
    left: auto;
    right: 234px;
  }

  .header .btn-recruit.career {
    right: 78px;
  }
}

@media (min-width: 1280px) {
  .header {
    padding: 0 0 0 3vw;
    transition: all 0.3s ease;
  }

  .header.scroll {
    background: rgba(255, 255, 255, .8);
  }

  #menu {
    position: relative;
    top: 0;
    background-color: transparent;
    height: auto;
    overflow-y: visible;
    padding: 0;
    width: auto;
    max-width: none;
    margin: 0 332px 0 auto;
    transform: translateX(0) !important;
    opacity: 1 !important;
  }

  .gnavi {
    align-items: center;
  }

  .gnavi li {
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 150%;
    width: auto;
    border-bottom: none;
  }

  .gnavi a {
    color: var(--black_33);
  }

  .gnavi>li.btn-pull {
    width: auto;
  }

  .gnavi>li>a {
    border-bottom: none;
  }

  .gnavi .pull {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 10;
    /* width: max-content;
    max-width: 360px; */
    width: 360px;
    height: min-content;
    padding: 30px 30px 20px;
    margin: 0 auto;
    background: var(--blue);
    gap: 0 5%;
  }

  .gnavi li:hover>.pull {
    visibility: visible;
    opacity: 1;
  }

  .gnavi .purpose .pull {
    width: 256px;
    left: -20%;
  }

  .gnavi .aboutus .pull {
    width: 195px;
  }

  .gnavi .pull>ul {
    width: 47.5%;
  }

  .gnavi .pull li {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .gnavi .pull li a {
    padding: 5px 0;
    position: relative;
    color: #fff;
    font-weight: 400;
  }

  .gnavi>li {
    position: relative;
    padding: 0;
  }

  .gnavi>li .link {
    padding: 1.4rem .5rem;
    position: relative;
  }

  .gnavi>li .link:before,
  .gnavi>li.btn-pull>a:before {
    transform: scale(0);
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    top: auto;
    margin: 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
  }

  .gnavi>li.btn-pull>a:after {
    display: none;
  }

  .gnavi>li:hover .link:before,
  .gnavi>li.btn-pull:hover>a:before {
    transform: scale(1);
  }

  .header .btn-recruit.new {
    right: 166px;
  }

  .header .btn-recruit.career {
    right: 10px;
  }

  .header .btn-recruit:hover {}
}

/* ---------------------
footer-style 
--------------------- */
#totop {
  position: fixed;
  bottom: 70px;
  right: 4vw;
  z-index: 99;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
  background: #fff;
}

#totop::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 18px;
  background: url(../img/common/ico-arrow.svg) no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-90deg) translate(-12px, -3px);
}

.footer {
  margin-top: 3rem;
  padding-top: 3rem;
  position: relative;
  border-top: solid 1px var(--c-border);
}

.f-cv {
  order: 1;
  width: 100%;
  justify-content: center;
  gap: 1rem;
}

.f-cv .bg {
  margin-top: 2rem;
  position: relative;
}

.f-cv .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/f-txt.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right 4vw top 0;
}

.f-cv .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  right: 0;
  width: calc(100% - 8vw);
  height: 100%;
  margin: 0 auto;
  border-left: solid 1px var(--c-border);
  border-right: solid 1px var(--c-border);
}

.f-cv .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-cv .btn-wh {
  width: 70%;
  max-width: 450px;
  height: 60px;
}

.f-info,
.f-nav,
.block-bottom {
  width: 100%;
  background: var(--blue);
  color: #fff;
  position: relative;
}

.f-info::before,
.f-nav::before,
.block-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  right: 0;
  width: calc(100% - 8vw);
  height: 100%;
  margin: 0 auto;
  border-left: solid 1px #457cad;
  border-right: solid 1px #457cad;
}

.f-info {
  order: 3;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: solid 1px #457cad;
}

.f-info .logo {
  display: block;
  width: 35%;
  max-width: 190px;
  margin: 0 auto;
  text-align: center;
}

.f-info .logo .txt {
  display: block;
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 4vw;
  font-weight: 900;
  margin-top: 1.5rem;
}

.f-nav {
  order: 2;
  padding: 3rem 4vw 0;
  position: relative;
  border-bottom: solid 1px #457cad;
}

.f-nav::after {
  content: "";
  position: absolute;
  top: 3rem;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  border-top: solid 1px #457cad;
}

.f-nav .f-nav-list {
  margin: 2rem 0 1rem;
  padding: 0 8vw;
}

.f-nav .f-nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.f-nav .f-nav-list>ul {
  margin: 0 0 1.5rem;
  width: 100%;
  gap: 1.5rem;
}

.f-nav .f-nav-list .item {
  width: 100%;
}

.f-nav .f-nav-list .item>a {
  position: relative;
  padding-left: 15px;
}

.f-nav .f-nav-list .item>a::before {
  content: "";
  position: absolute;
  top: .4rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
}

.f-nav .f-nav-list .item a.primary,
.f-nav .f-nav-list .item a.sns {
  padding-left: 0;
  font-size: 0.75rem;
  font-weight: 500;
}

.f-nav .f-nav-list .item a.primary::before,
.f-nav .f-nav-list .item a.sns::before {
  display: none;
}

.f-nav .f-nav-list .item a.sns i img {
  margin-right: .5rem;
  filter: invert(100%) sepia(0%) saturate(7490%) hue-rotate(290deg) brightness(102%) contrast(99%);
}

.f-nav .f-nav-list .sublist {
  display: none;
  position: relative;
  z-index: 1;
}

.footer .block-bottom {
  order: 4;
}

.footer .block-bottom .list-link {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.footer .block-bottom .list-link .list-link-item {
  padding: 0 4vw;
  border-bottom: solid 1px #457cad;
}

.footer .block-bottom .list-link a {
  display: block;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.875rem;
  color: #fff;
}

.footer .block-bottom .list-link a i {
  margin-left: .5rem;
}

.footer .block-bottom .list-link a i img {
  filter: invert(100%) sepia(0%) saturate(7490%) hue-rotate(290deg) brightness(102%) contrast(99%);
}

.footer .block-bottom .copyright {
  width: 100%;
  padding: 1rem 4vw 8rem;
  margin: 0;
  font-size: 0.625rem;
  text-align: center;
  letter-spacing: 0.05em;
  opacity: .5;
}

@media (min-width: 768px) {
  #totop {
    bottom: 4vw;
    right: 4vw;
  }

  .footer {
    padding-top: 0;
    padding-bottom: 4vw;
    background: var(--blue);
  }

  .f-cv {
    aspect-ratio: 1 / 0.352;
    flex-direction: column;
    position: relative;
    padding: 4vw 0;
  }

  .f-cv .btn-wh {
    width: 33%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .f-cv .bg {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .f-info,
  .f-nav {
    padding: 0;
  }

  .f-info {
    order: 2;
    width: 30%;
    padding: 4vw 0 0 4vw;
  }

  .f-info::before {
    border-right: none;
  }

  .f-info::after {
    content: "";
    position: absolute;
    top: 4vw;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    border-top: solid 1px #457cad;
  }

  .f-info .logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    width: 60%;
    height: 100%;
  }

  .f-info .logo .txt {
    font-size: 1rem;
  }

  .f-nav {
    order: 3;
    width: 70%;
    padding: 4vw 4vw 0 0;
  }

  .f-nav::before {
    border-left: none;
  }

  .f-nav::after {
    top: 4vw;
  }

  .f-nav .f-nav-list {
    padding: 2rem 2rem 3rem;
    margin: 0;
    padding: 4vw;
    border-left: solid 1px #457cad;
  }

  .f-nav .f-nav-list .item {
    width: calc(50% - 1.5rem);
  }

  .footer .block-bottom .list-link {
    width: 30%;
    border-right: solid 1px #457cad;
  }

  .footer .block-bottom .list-link .list-link-item {
    padding-right: 0;
  }

  .footer .block-bottom .copyright {
    width: 70%;
    padding: 1rem 4vw;
    border-bottom: solid 1px #457cad;
  }
}

@media (min-width: 1024px) {
  #totop {
    bottom: 4vw;
    right: 4vw;
    width: 55px;
    height: 55px;
  }

  #totop::before {
    transform: rotate(-90deg) translate(-17px, -4px);
  }

  .f-cv .btn-wh {
    border: none;
    font-size: 1.5vw;
    font-weight: 600;
    height: auto;
    padding: 2rem 3rem;
  }

  .f-nav .f-nav-list {
    flex-wrap: nowrap;
    gap: 0 2rem;
    align-items: baseline;
  }

  .f-nav .f-nav-list>ul {
    margin: 0;
    width: 100%;
    gap: 1rem;
  }

  .f-nav .f-nav-list .item {
    width: 100%;
  }

  .f-nav .f-nav-list .item.i10 {
    margin-top: 50%;
  }

  .f-nav .f-nav-list .sublist {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    padding-left: 15px;
    margin-top: 1rem;
  }

  .f-nav .f-nav-list .sublist a {
    font-weight: 400;
  }
}

/* ---------------------
下層ページstyle 
--------------------- */
/* page title */
.page-title {
  width: 100%;
  font-size: 6vw;
  font-weight: 600;
  line-height: 150%;
  position: relative;
  margin: 0 auto;
  padding: 1.5rem 4vw 1.5rem 12vw;
  border-bottom: solid 1px var(--c-border);
}

.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8vw;
  margin: auto 0;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .page-title {
    width: 100%;
    font-size: 1.25rem;
    padding: 1.5rem 8vw 1.5rem 9vw;
  }

  .page-title::before {
    left: 7vw;
  }
}

@media (min-width: 1024px) {
  .page-title {
    font-size: 2.5vw;
    padding: 2.5rem 8vw 2.5rem 9vw;
  }
}

/* staff list */
.staff-contents {
  width: 100%;
  padding: 0 4vw;
  margin: 0 auto;
}

.slide-staff .staff-item {
  padding: 0 8vw;
  height: auto;
}

.slide-staff .staff-item .staff-item-link {
  display: block;
  height: 100%;
  border-left: solid 1px var(--c-border);
  border-right: solid 1px var(--c-border);
}

.slide-staff .staff-item .staff-item-link .staff-item-info {
  padding: 1.5rem;
}

.slide-staff .staff-item .staff-item-link .staff-item-info .title {
  margin: 0 0 1rem;
  font-size: 4.8vw;
}

.slide-staff .staff-item .staff-item-link .staff-item-info .label {
  font-size: 3vw;
  margin: 0;
}

.slide-staff .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem .5rem;
  position: static;
  width: calc(100% - 98px) !important;
  margin: 0 auto;
  padding: .81rem 0 1rem;
  border-top: solid 1px var(--c-border);
}

.slide-staff .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: #D9D9D9;
  opacity: 1;
}

.slide-staff .swiper-pagination-bullet-active {
  background: var(--blue);
}

.slide-staff .swiper-button-next,
.slide-staff .swiper-button-prev {
  position: static;
  width: 49px;
  height: 49px;
  margin: 0 !important;
  background: var(--blue);
  color: #fff;
}

.slide-staff .swiper-navigation-icon {
  width: 10px;
}

@media (min-width: 768px) {

  .sec-staff .sec__head {
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
  }

  .slide-staff .staff-item {
    padding: 0 1vw;
  }

  .sec-staff .sec__head .subtitle {
    width: auto;
  }

  .slide-staff .staff-item .staff-item-link .staff-item-info .title {
    font-size: 2vw;
  }

  .slide-staff .staff-item .staff-item-link .staff-item-info .label {
    font-size: 1.6vw;
  }
}

@media (min-width: 1024px) {
  .sec-staff::before {
    content: "";
    display: block;
    width: 100%;
    height: 3rem;
    border-top: solid 1px var(--c-border);
    border-bottom: solid 1px var(--c-border);
  }

  .staff-contents {
    width: calc(100% - 8vw);
    margin: 0 auto 0 0;
    padding: 0;
  }

  .sec-staff .sec__head {
    padding: 1rem 3vw;
  }

  .slide-staff .staff-item .staff-item-link .staff-item-info .title {
    font-size: 1.37rem;
  }

  .slide-staff .staff-item .staff-item-link .staff-item-info .label {
    font-size: 0.75rem;
  }
}

/* ---------------------
breadcrumbs-style 
--------------------- */
.breadcrumbs {
  padding: 1.2rem 8vw;
  border-top: solid 1px var(--c-border);
  border-bottom: solid 1px var(--c-border);
}

.breadcrumbs .breadcrumbs-inner {
  margin: 0;
  gap: 0 .6rem;
}

.breadcrumbs .breadcrumbs-inner .item {
  font-size: 12px;
  line-height: 32px;
}

.breadcrumbs .breadcrumbs-inner .item,
.breadcrumbs .breadcrumbs-inner .item a {
  color: var(--black_33);
  text-decoration: none;
}

.breadcrumbs .breadcrumbs-inner .item a {
  color: var(--blue);
}

.breadcrumbs .breadcrumbs-inner .item:after {
  content: "／";
  display: inline-block;
  margin-left: .5rem;
}

.breadcrumbs .breadcrumbs-inner .item:nth-last-child(1):after {
  display: none;
}

.breadcrumbs .breadcrumbs-inner .item:nth-child(1) a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url(../img/common/ico-home.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: .5rem;
}

@media (min-width: 1024px) {

  .breadcrumbs .breadcrumbs-inner .item a:hover {
    color: var(--c-green);
  }
}


/* ---------------------
pager-style 
--------------------- */
.block-pager {
  width: 100%;
  padding: 1.5rem 4vw;
}

.pager {
  list-style: none;
  padding: 0;
  justify-content: center;
  gap: 0.2rem 0.5rem;
}

.pager .pager-item {
  aspect-ratio: 1/1;
  min-width: 46px;
}

.pager .pager-item .link {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 18px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  background-color: #eee;
}

.pager .pager-item.active .link {
  background-color: var(--blue);
}

@media (min-width: 1024px) {
  .block-pager {
    border-top: solid 1px var(--c-border);
  }

  .pager .pager-item .link:hover {
    background-color: var(--blue);
  }
}

/* ---------------------
animation-style
--------------------- */
.js-fade-up {
  opacity: 0;
  transform: translateY(-20px);
}

/* ---------------------
comingsoon-style
--------------------- */
.comingsoon {
  position: relative
}

.comingsoon::before {
  content: "COMING SOON";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: rgb(104 104 104 / 85%);
  font-size: 1.25rem;
  letter-spacing: .05em;
}