/* 共通項目 */

html {
  scroll-behavior: auto;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  
}

body {
  font-family: "Shippori Mincho B1", "YuGothic", "Yu Gothic", sans-serif;
  letter-spacing: 0.04em;
  color: #3f3f3f;
  background-color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
}

.bg {
  background-image: url(../img/background-img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

a {
  width: fit-content;
}

.en {
  font-family: "Sorts Mill Goudy", "Futura", "Century Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  color: #a2a1b5;
}

.en.xl {
  font-size: 120px;
}

.jp-r {
  font-family: "Shippori Mincho B1", "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: #555;
}
.jp-m {
  font-family: "Shippori Mincho B1", "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  color: #555;
}
.jp-sb {
  font-family: "Shippori Mincho B1", "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 600;
  color: #555;
}

.t-p{
  color: #a2a1b5;
}

.desc {
  line-height: 2;
}

.inner1 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  @media screen and (max-width: 1300px) {
    width: calc(100% - clamp(1.25rem, 0.6119rem + 2.6178vw, 3.125rem) * 2);
  }
  @media screen and (max-width: 768px) {
    width: calc(100% - 40px);
  }
}

/* 下線リンクボタン */

.under-line-link {
  padding-bottom: 6px;
  border-bottom: 1px solid #555;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-right: 0;
  margin-left: auto;
  transition: all 0.3s;

  span {
    font-size: 20px;
    color: #555;
    @media screen and (max-width: 768px) {
      font-size: 18px;
    }
  }
  .icon{
    @media screen and (max-width: 768px) {
      height: 9px;
      translate:  0 -2px;
    }
    img{
      height: 100%;
    }
  }
}
.under-line-link:hover {
  opacity: 0.6;
}

/* boxボタン */

a.box-btn {
  gap: 15px;
  background-color: #a2a1b5;
  padding: 20px 40px;
  transition: all 0.3s;

  span {
    font-size: 16px;
    color: #fff;
    line-height: 1.75;
  }
  .icon {
    width: 25px;
    svg {
      width: 100%;
    }
  }
}
@media screen and (max-width: 768px) {
 
a.box-btn {
  gap: 10px;
  padding: 15px 25px;

  span {
    font-size: 13px;
  }
  .icon {
    width: 17px;
    svg {
      width: 100%;
    }
  }
}
}
a.box-btn:hover {
  background-color: #fff;

  span {
    color: #a2a1b5;
  }
  .icon {
    svg {
      path {
        fill: #a2a1b5;
      }
    }
  }
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* モバイル改行 */

.sp {
  display: none;
}

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

.pc {
  display: block;
}

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

/* ----------------------------

フェードインアニメーション

------------------------------*/

.fadeIn {
  transform: translate3d(0, 50px, 0);
  transition: 1.5s;
  opacity: 0;
}
.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
/* ----------------------------

固定フェードインアニメーション

------------------------------*/
.fadeIn-fixed {
  animation-name: fadeIn;
  animation-duration: 1.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ----------------------------

ページネーション

------------------------------*/

.page-nation {
  width: 100%;
  padding: var(--60-30) 0;
  display: flex;
  justify-content: center;

  .wp-pagenavi {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
  }

  .wp-pagenavi a ,.current{
    padding: 8px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    font-size: 16px;
    color: #555;
    background-color: #fff;
    width: 40px;
    aspect-ratio: 1;
  }
  .wp-pagenavi a:hover {
    opacity: 0.7;
  }

  .current {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #555;
  }

  .nextpostslink{
    width: 40px;
    aspect-ratio: 1;
    padding: 0;
  svg{
    width: 17px;
    height: 9px;
  }
  }
}

/* ----------------------------

リキャプチャ非表示

------------------------------*/

.grecaptcha-badge {
  visibility: hidden;
}
