@charset "UTF-8";

/*----------------------------------
    全体
-----------------------------------*/
body {
  font-family: "Meiryo", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", sans-serif;;
}

html {
  font-size: 16px;
}

@media screen and (max-width:599px) {
  html {
    font-size: 14px;
  }
}
/* fonts */
.josefin-sans {
  font-family: "Josefin Sans", sans-serif;
}

.text-big:first-letter {
  text-transform: uppercase;
}

.inner {
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
  padding-left: 100px;
  padding-right: 100px;
}

@media screen and (max-width:1200px) {
  .inner {
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media screen and (max-width:599px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media screen and (max-width:599px) {
  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.top-section {
  padding-bottom: 10px;
}

@media screen and (max-width:599px) {
  .top-section {
    padding-bottom: 30px;
  }
}

.h2-common {
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width:1200px) {
  .h2-common {
    font-size: 1.75rem;
  }
}
@media screen and (max-width:599px) {
  .h2-common {
    font-size: 1.75rem;
  }
}

.pc {
  display: block;
}

.tab {
  display: none;
}

.pc-only {
  display: block;
}
.not-pc{
  display: none;
}

@media screen and (max-width:1200px) {
  .tab {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .not-pc{
    display: block;
  }
}

.sp {
  display: none;
}

@media screen and (max-width:599px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

/*----------------------------------
    header
-----------------------------------*/
.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
}

.header {
  height: 80px;
  transition: .3s;
}

.header.is-scroll {
  background-color: #423D3A;;
  transition: .3s;
}

.header__inner {
  height: inherit;
  display: flex;
  justify-content: space-between;
  padding: 0 17px;
}

@media screen and (max-width:767px) {
  .header__inner {
    padding-left: 15px;
  }
}

.header__logo {
  max-width: 30%;
  width: 100%;
  height: inherit;
}

@media screen and (max-width:767px) {
  .header__logo {
    max-width: 70%;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  max-width: 60vw;
  height: 100%;
  object-fit: contain;
}

.header__nav {
  display: block;
  height: inherit;
}

@media screen and (max-width:1200px) {
  .header__nav {
    display: none;
  }
}

.header__nav-items {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 15px;
  display: flex;
  align-items: center;
}

.header__nav-item a {
  padding: 0 7.5px;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  transition: .3s;
}

.header__nav-item a.is-scroll {
  color: #fff;
}

.header__nav-item.header__nav-item--contact a {
  padding: 10px 20px;
  /* position: relative; */
  height: initial;
  color: #fff;
  background-color: #4F4D4D;
  border-radius: 30px;
  transition: 0.3s;
}

.header__nav-item a{
  position: relative;
}
.header__nav-item a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: 4px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  }
  
  .header__nav-item a:hover::after {
  visibility: visible;
  bottom: 12px;
  opacity: 1;
  }
  .header__nav-item--contact a::after{
    display: none;
  }
  .header__nav-item--contact a:hover{
    color: #4F4D4D;
    background-color: #fff;
  }

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 40px;
  height: inherit;
  cursor: pointer;
  transition: .3s;
  display: none;
}

@media screen and (max-width:1200px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 30px;
  height: 1px;
  background-color: #fff;
  transition: .5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -10px;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 10px;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -2px;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  /* padding: 150px 0; */
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  overflow-y: scroll;
  scrollbar-width: none;
  text-align: center;
}

.header-spwrap{
  height: 100vh;
  min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.header__drawer a img {
  width: 80%;
  max-width: 300px;
}

.header__drawer-item a {
  padding: 15px 0;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
}
.header__drawer-item a{
  position: relative;
}
.header__drawer-item a::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: 4px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  }
  
  .header__drawer-item a:hover::after {
  visibility: visible;
  bottom: 10px;
  opacity: 1;
  }
/*ヘッダー下層ページ*/
.lower-header {
  background: #423D3A;
}

/*----------------------------------
    footer
-----------------------------------*/
.footer-inner {
  display: flex;
}

.footer-left {
  width: 12.5%;
}

@media screen and (max-width:1200px) {
  .footer-left {
    width: 7.5%;
  }
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
  transition: all 0.3s;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: relative;
}

#page-top a::before {
  content: "";
  position: absolute;
  bottom: -74px;
  left: 27%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 66px;
  background: url(/img/common/line1.svg);
  transform: rotate(180deg);
  background-repeat: no-repeat;

}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  left: 1%;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width:599px) {
  #page-top a {
    font-size: 1rem;
  }
}

#page-top a:hover{
  opacity: 0.5;
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

.footer-right {
  width: 87.5%;
  padding-bottom: 10px;
  background: #423D3A;
  border-radius: 64px 0 0 0;
  padding-left: 108px;
}

.footer-right a {
  color: #fff;
  font-weight: 700;
}

@media screen and (max-width:1200px) {
  .footer-right {
    padding-left: 32px;
  }

  .footer-right {
    width: 92.5%;
  }
}

.footer-top {
  display: flex;
}

@media screen and (max-width:599px) {
  .footer-top {
    display: block;
  }
  .footer-right {
    padding-left: 0;
  }
}

.footer-meta {
  padding-top: 50px;
  color: #fff;
  font-size: 1.25rem;
}
.footer-meta a{
  transition: opacity 0.3s ease;
}
.footer-meta a:hover{
opacity: 0.7;
}
.footer-contact {
  font-size: 3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.footer-contact img {
  height: 44px;
  width: 44px;
  margin-left: 5px;
}

.footer .copy {
  color: #fff;
  opacity: 0.37;
  font-size: 0.75rem;
  letter-spacing: 1px;
}
a .footer-contact:hover{
  opacity: 0.5;
}

.footer-sns {
  margin-bottom: 115px;
  display: flex;
}

.sns-item:not(:first-of-type) {
  margin-left: 20px;
}

.footer-nav {
  display: flex;
  padding-top: 50px;
  padding-left: 82px;

}

@media screen and (max-width:1200px) {
  .footer-nav {
    padding-left: 0px;
  }

  .footer-sns {
    margin-bottom: 0px;
  }
  
  .footer-contact {
    font-size: 2rem;
  }
  .footer-contact img {
    height: 22px;
    width: 22px;
  }
  .footer-meta {
    font-size: 1rem;
    width: 235px;
  }
  .footer-nav_wrap{
    width: calc(100% - 235px);
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width:599px) {
  .footer-nav {
    padding-top: 0px;
  }
  .footer-meta {
    padding-top: 50px;
  }
}

.sns-item {
  width: 40px;
}
.footer__nav-item {
  padding: 25px;
}


.footer-nav-right {
  padding-left: 115px;
}

.policy-box {
  margin-top: 12px;
}

.footer-policy {
  color: #fff;
  opacity: 0.37;
  font-size: 0.75rem;
  padding: 5px 25px;
}

.footer-policy2 {
  margin-left: 115px;
}

.footer-bottom2 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.copy-left {
  display: flex;
}
.footer-bottom1 a img{
  max-width: 327px;
  width: 100%;
}
@media screen and (max-width:1200px) {
  .footer-nav-right {
    padding-left: 0;
  }

  .footer-policy {
    padding: 3px;
    margin-left: 12px;
  }
  .footer-sns {
    margin-top: 10px;
  }
}

@media screen and (max-width:599px) {
  .footer__nav-item {
    padding: 15px;
  }
  .footer-nav_wrap{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-meta {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

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

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

  .footer-bottom1 {
    width: 90%;
  }

  .footer-bottom2 {
    display: block;
  }

  .copy {
    text-align: center;
  }

  .footer-policy {
    padding: 20px 3px;
    margin-left: 12px;
  }
  .footer-bottom{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer__nav-item a{
  position: relative;
}
.footer__nav-item a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -12px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  }
   
  .footer__nav-item a:hover::after {
    visibility: visible;
    bottom: -7px;
    opacity: 1;
    }

/*----------------------------------
  下層ページ　H1
-----------------------------------*/

.h1-section {
  padding-top: 164px;
  padding-bottom: 0;
  background: linear-gradient(90deg, #000 0%, #D5D5D5 86.35%, #D6D6D6 87.9%, #FFF 100%);
}

@media screen and (max-width:599px) {
  .h1-section {
    padding-top: 120px;
  }
}

.h1-section h1 {
  display: flex;
  height: 62px;
  flex-direction: column;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
}

.h1-section p {
  display: flex;
  height: 122px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.08);
  text-align: right;
  font-size: 6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 0px;
  letter-spacing: 1px;
}

@media screen and (max-width:1200px) {
  .h1-section h1 {
    font-size: 2.5rem;
  }

  .h1-section P {
    height: 60px;
    font-size: 53px;
  }
}
@media screen and (max-width:599px) {

  .h1-section P {
    height: 40px;
    font-size: 30px;
  }
}
/*----------------------------------
    下層ページh2
-----------------------------------*/

.lower-h2-wrap{
      display: flex;
      justify-content: center;
      align-items: center;
}

.lower-h2 {
  position: relative;
  padding: 5px 26px 5px 42px;
  background: #000;
  color: #fff;
  margin-left: -33px;
  line-height: 1.3;
  border-bottom: solid 3px #838383;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width:599px) {
.lower-h2 {
padding: 5px 11px 5px 27px;
}
}

.lower-h2::before {
position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 40px white;
  border-bottom: solid 79px transparent;
}

.lower-h2::after {
  position: absolute;
  content: '';
  right: -3px;
  top: -7px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 40px transparent;
  border-bottom: solid 79px white;
}

/*背景黒の場合*/
.lower-h2-w{
  background: #fff;
  color: #000;
  border-bottom: solid 3px #000;

}
.lower-h2-w::before {
  border-left: solid 40px #555;
  border-bottom: solid 79px transparent;
}
.lower-h2-w::after {
border-left: solid 40px transparent;
border-bottom: solid 79px #555;
}

/*----------------------------------
    下層ページ　お問い合わせ
-----------------------------------*/
.contact {
  display: flex;
  position: relative;
}

.contact-title{
  font-size: 1.25rem;
  font-weight: 700;
}

.contact::before {
  content: "CONTACT";
  position: absolute;
  top: -13%;
  left: 7%;
  color: rgba(1, 1, 1, 0.31);
  text-align: right;
  font-size: 96px;
  font-weight: 700;
}
@media screen and (max-width:1200px) {

  .contact::before {
    top: -10%;
    left: 3%;
    font-size: 5rem;
  }
}
.contact-bg {
  height: 500px;
  width: 33.33333%;

}

.contact-bg1 {
  background: url(../img/common/contact-bg1.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-bg2 {
  background: url(../img/common/contact-bg2.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-bg3 {
  background: url(../img/common/contact-bg3.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width:599px) {
  .contact::before {
    font-size: 3.125rem;
    top: -7%;
  }

  .contact-bg1 {
    width: 100%;
  }

  .contact-bg2,
  .contact-bg3 {
    display: none;
  }
}

.contact-content {
  height: 500px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lower-contactwrap {
  display: flex;
  margin-top: 50px;
  align-items: center;
}

@media screen and (max-width:1200px) {
  .lower-contactwrap {
    display: block;
    margin: 15px auto 0;
    text-align: center;
  }

  .lower-contactwrap img {
    margin: 0 auto;
  }
}

.lower-contactwrap img {
  padding: 0 50px;
}

.contact-button {
  display: inline-block;
  width: 400px;
  background-color: #1D1D1D;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  border: 5px solid #1D1D1D;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  overflow-wrap: break-word;
  height: 80px;
  padding-top: 25px;
}


.contact-button:hover {
  background-color: #fff;
  color: #1D1D1D;
  border: 5px solid #1D1D1D;
}


@media screen and (max-width:1200px) {
  .contact-button {
    margin-top: 15px;
  }
}
@media screen and (max-width:599px) {
  .contact-button {
    width: 90%;
  }
}

/*----------------------------------
    施工実績
-----------------------------------*/

.commitment-h2 {
  color: #FFF;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1px;
}

.top-project_items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 35px;
}

.top-project-btn{
  width: 15rem;
  background-color: #423D3A;
  text-align: center;
  border-radius: 20px;
  margin: 2rem auto 0;
}


@media screen and (max-width:850px) {
  /* .top-project_items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(11, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 25px;
  } */

  .commitment-h2 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width:780px) {
  .top-project_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
    grid-column-gap: 20px;
    grid-row-gap: 25px;
    /* grid-template-rows: unset; */
  }
}
@media screen and (min-width:1121px) {
  .top-project_items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: unset;
    grid-column-gap: 20px;
    grid-row-gap: 25px;
    /* grid-template-rows: unset; */
  }
}
/* .top-project_item:hover {
  opacity: 0.7;
} */

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

.top-project_item-address {
  line-height: 1;
}

.top-project_item-category {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
}

.top-project_item-img {
  position: relative;
  margin-top: 10px;
}

/* .box{
  height: 500px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: 1s;
}
.box img{
  position: absolute;
  backface-visibility: hidden;
  top: 0;
  left: 0;
}
/* .box:hover{
  transform: rotateY( 180deg );
}
.box img:last-child{
  transform: rotateY( 180deg );
} */ */
.box{
  height: 300px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  /* transform-style: preserve-3d; */
  transition: 1s;
}
.box__figure{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    /* backface-visibility: hidden; */
    transition: transform 0.6s;
}

.box__figure01 {
  z-index: 2;
  position: relative;
  opacity: 1;
  transform: rotate(0);
}
.box__figure01:hover{
  transform: rotateY(360deg);
  opacity: 0;
}
.box__figure01:before{
  content: 'before';
  display: inline-block;
  width: 5rem;
  height: 30px;
  position: absolute;
  bottom: 3px;
  right: 0;
  background-color: #fff;
  text-align: center;
  display:flex;
  align-items: center;
  justify-content: center;
}
.box__figure02 {
  transform: rotateY(-360deg);
}
.box__figure02:after{
  width: 5rem;
  height: 30px;
  content:"after";
  position: absolute;
  bottom: 3px;
  right: 0;
  display: inline-block;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box__figure01:hover ~ .box__figure02 {
  transform: rotateY(0deg);
  opacity: 1;
}
.box__figure01:hover:before {
  opacity: 0; /* 擬似要素を消す */
}




.top-project_item-img::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-right: 17px solid transparent;
  border-left: 17px solid transparent;
  border-top: 30px solid #ffffff;
  border-bottom: 0;
  z-index: 10;
}

@media screen and (max-width:1200px) {
  .top-project_item-img {
    margin-top: 5px;
  }

  .top-project_item-img::after {
    border-top: 20px solid #ffffff;
  }
}

/*下層ページ　施工事例*/
@media screen and (min-width:599px) {
  .lower-project {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width:599px) {
  .top-project_item-img {
  text-align: center;
  }
 
}

/*----------------------------------
    svg
-----------------------------------*/
.svg-wrap svg {
  position: relative;
  width: 80%;
}

@media screen and (max-width:599px) {
  .svg-wrap svg {
    width: 56%;
  }
}

.svg-img {
  position: absolute;
  top: -30px;
  left: 0;
}

/*----------------------------------
    パンくずリスト
-----------------------------------*/
/* .Breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.Breadcrumb-ListGroup li {
  display: inline-block;
  list-style: none;
  font-weight: bold;
}

.Breadcrumb-ListGroup li:after {
  content: '>';
  padding: 0 0.2em;
  color: #000;
}

.Breadcrumb-ListGroup li:last-child:after {
  content: '';
}

.Breadcrumb-ListGroup-Item-Link {
  display: inline-block;
  padding: 0.2em .8em;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  background: #000;
  font-size: 0.9em;
}

.Breadcrumb-ListGroup-Item-Link:hover {
  background: #423D3A !important;
}

@media screen and (max-width:599px) {
  .pan {
    padding-bottom: 10px;
  }
  .Breadcrumb-ListGroup-Item-Link {
    font-size: 0.7em;
  }
} */


/*黒背景*/
/* .pan-b {
  background: #555;
}

.pan-b .breadcrumb li:after {
  color: #fff;
}

.pan-b .breadcrumb li a {
  color: #000;
  background: #fff;
}

.pan-b .breadcrumb li a:hover {
  background: #fff;
} */


.pan2 .Breadcrumb {
  padding: 1em;
}
.pan2 .Breadcrumb-ListGroup {
  display: flex;
}
.pan2 .Breadcrumb-ListGroup-Item-Link[href]:hover {
  opacity: 0.5;
}
/* .pan2 .Breadcrumb-ListGroup > * + * {
  margin-left: 0.5em;
}
.pan2 .Breadcrumb-ListGroup > * + *::before {
  content: ">";
  margin-left: 0.75em;
  margin-right: 0.75em;
  font-weight: 700;
} */

.pan2 .Breadcrumb-ListGroup:last-child {
  margin-left: 0.5em;
}
.pan2 .Breadcrumb-ListGroup > * + *::before {
  content: ">";
  margin-left: 0.75em;
  margin-right: 0.75em;
  font-weight: 700;
}
.pan2 li a{
  background: #000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: 700;
}

.pan-w .Breadcrumb-ListGroup:last-child::before {
color: #fff;
}
.pan-w li a{
  background: #fff;
    color: #000;
}
@media screen and (max-width:599px) {
	.pan2 li a{
      padding: 5px 10px;
    font-size: 0.7em;
  }
  .pan2 .Breadcrumb-ListGroup:last-child::before {
    margin-left: 0;
    margin-right: 0;
  }
  .pan2 .Breadcrumb {
    padding: 1em 0;
  }
}
/*----------------------------------
    アニメーション
-----------------------------------*/
.anime-1{
  animation-delay: 0.5s;
}

.anime-2{
  animation-delay: 1.5s;
}

.anime-3{
  animation-delay: 2.5s;
}

.anime-4{
  animation-delay: 3.5s;
}

.anime-5{
  animation-delay: 4.5s;
}

.anime-6{
  animation-delay: 5.5s;
}

.anime-7{
  animation-delay: 6.5s;
}

.anime-8{
  animation-delay: 7.5s;
}

.anime-9{
  animation-delay: 8.5s;
}


/* ------------------------------------ */
/* ページネーション */
/* ------------------------------------ */
.pagination{
  margin-top:40px;
}
.wp-pagenavi {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
}
.wp-pagenavi span.current{
  background-color: #423D3A;
    border-color: #fff;
    border-radius: 50% 50%;
    color: #fff;
}
.wp-pagenavi a, .wp-pagenavi span{
  align-items: center;
  border: none;
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: bold;
  height: 2.8125rem;
  justify-content: center;
  transition: 0.3s ease;
  width: 2.8125rem;
}
