@charset "utf-8";

:root {
  --black: #2d2d2d;
  --gray: #8e8e8e;
  --gray2: #c8c8c8;
  --lightGray: #e4e4e4;
  --bg: #f6f9fe;
  --white: #ffffff;
  --inter: "Inter", sans-serif;
  --kalnia: "Kalnia", serif;
  --shippori-mincho: "Shippori Mincho", serif;
  --noto: "Noto Sans", "Noto Sans JP", sans-serif;
  --hiragino: YuGothic, "ヒラギノ角ゴ ProN W3", "Lucida Grande",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック",
    sans-serif;
}

body {
  color: var(--black);
  font-family: YuGothic, "ヒラギノ角ゴ ProN W3", "Lucida Grande",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック",
    sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
 
html {
  background-color: var(--bg);
  background-image: url(../img/noise_bg.png);
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
  overflow-x: hidden;
}

html.no-scroll {
  overflow-y: hidden;
}

h1,
h2,
h3 {
  font-family: var(--kalnia);
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h2.kalnia {
  font-size: 64px;
  font-weight: 400;
  font-family: var(--kalnia);
  margin-bottom: 53px;
  display: flex;
}

h3 {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 40px;
  }

  h2.kalnia {
    font-size: 40px;
    margin-bottom: 45px;
  }

  h3 {
    font-size: 24px;
  }
}

.search_form {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 360px;
}

.search_input {
  width: 100%;
  padding: 10px 40px 10px 10px;
  border: 1px solid var(--black);
  border-radius: 120px;
}

.search_button {
  position: absolute;
  right: 10px;
  /* 右端に配置 */
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.search_button .search_icon {
  width: 18px;
  height: 18px;
}

.search_button:hover .search_icon {
  opacity: 0.7;
}

/*header*/
.header_wrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 74px;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
  z-index: 10;
}

.header_wrap.fixed {
  position: fixed;
  background-color: #fff;
}

.header_wrap.hidden {
  transform: translateY(-100%);
}

.header_wrap .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
  z-index: 1;
  background-color: unset;
}

.header_logo {
  max-width: 232px;
  width: 100%;
}

.header_nav {
  display: flex;
  align-items: center;
  gap: 57px;
}

.header_nav a * {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 13px;
}

.header_nav-icon {
  width: 23px;
  margin-right: 14px;
  margin-top: 5px;
  display: inline-block;
}

.header_nav-icon-link {
  display: flex;
  align-items: center;
}

.header_sp-button {
  display: none;
}

@media screen and (max-width: 800px) {
  .header_nav {
    display: none;
  }

  .header_logo {
    max-width: 175px;
  }

  .header_sp-button {
    display: block;
    width: 24px;
    height: 10px;
    position: relative;
    z-index: 103;
    background: 0 0;
  }

  .header_sp-button:before,
  .header_sp-button:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: var(--black);
    transition: transform 0.3s, top 0.3s 0.3s, bottom 0.3s 0.3s;
    left: 0;
  }

  .header_sp-button:before {
    top: 0;
  }

  .header_sp-button:after {
    bottom: 0;
  }

  .header_wrap.header_sp-open {
    height: 100%;
    align-items: flex-start;
    transform: translateY(0);
  }

  .header_wrap.header_sp-open .header_sp-button:before,
  .header_wrap.header_sp-open .header_sp-button:after {
    transition: top 0.3s, bottom 0.3s, transform 0.3s 0.3s;
  }

  .header_wrap.header_sp-open .header_sp-button:before {
    top: calc(50% - 1px);
    transform: rotate(45deg);
  }

  .header_wrap.header_sp-open .header_sp-button:after {
    bottom: calc(50% - 1px);
    transform: rotate(-45deg);
  }

  .header_wrap.header_sp-open:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }

  .header_wrap.header_sp-open .header {
    margin-top: 22px;
  }

  .header_wrap.header_sp-open .header_nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 180px;
  }

  .header_nav a * {
    font-size: 18px;
  }
}

/*footer*/
.footer {
  max-width: 1320px;
  width: 100%;
  margin: 100px auto 0;
  padding: 0 20px 40px;
  box-sizing: border-box;
  background-color: unset !important;
}

.footer_top {
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.footer_top:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  transform: translateY(-8px);
}

.footer_top-content-details {
  display: flex;
  gap: 181px;
}

.footer_top-content {
  max-width: 1062px;
  margin: 0 auto;
  padding: 57px 0 58px;
}

.footer_logo {
  width: 255px;
}

.footer_sdgs-icons {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-top: 70px;
}

.footer_sdgs-icons-link {
  transition: transform 0.3s;
  display: inline-block;
}

.footer_sdgs-icons-link:hover {
  transform: scale(0.9);
}

.footer_top-menu {
  display: flex;
  gap: 72px;
}

.footer_top-menu a {
  font-weight: 600;
}

.footer_top-menu-item:not(:last-child) {
  margin-bottom: 30px;
}

.footer_top-s-menu {
  transform: translateY(-5px);
}

.footer_top-s-menu-link {
  font-size: 13px;
  font-family: var(--inter);
  color: var(--gray);
  font-weight: 500;
}

.footer_top-s-menu-item:not(:last-child) {
  margin-bottom: 15px;
}

.footer_bottom {
  max-width: 1062px;
  width: 100%;
  margin: 0 auto;
  padding: 51px 20px 0;
}

.footer_bottom-content-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_bottom-follow-me {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer_bottom-border {
  width: 1px;
  height: 48px;
  display: block;
  background-color: var(--black);
}

.footer_bottom-detail-title {
  font-family: var(--kalnia);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.2px;
}

.footer_bottom-follow-me-right {
  width: 40px;
  height: 40px;
  position: relative;
}

.footer_bottom-follow-me-right img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  transition: transform 0.3s;
}

.footer_bottom-follow-me-right img:last-child {
  opacity: 0;
  transform: scale(0);
}

.footer_bottom-follow-me-right:hover img:first-child {
  transform: scale(0);
}

.footer_bottom-follow-me-right:hover img:last-child {
  transform: scale(1);
  opacity: 1;
  width: 25px;
}

.footer_bottom-download-app {
  display: flex;
  align-items: center;
}

.footer_bottom-download-app .footer_bottom-border {
  margin: 0 51px 0 28px;
}

.footer_bottom-download-app img {
  width: 131px;
}

.footer_bottom-download-app-right {
  display: flex;
  gap: 15px;
}

.footer_bottom-menu {
  display: flex;
  justify-content: space-between;
  margin-top: 37px;
}

.footer_bottom-menu-list {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.footer_bottom-menu-link {
  font-family: var(--inter);
  font-size: 13px;
  transition: opacity 0.3s;
}

.footer_bottom-copyright {
  font-size: 12px;
  font-family: var(--inter);
}

.footer_bottom-menu-link:hover {
  opacity: 0.7;
}

.footer_bottom-download-app-link {
  transition: opacity 0.3s;
}

.footer_bottom-download-app-link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 950px) {
  .footer_bottom-content-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer_bottom-follow-me {
    gap: 87px;
  }
}

@media screen and (max-width: 768px) {
  .footer_logo {
    width: 232px;
  }

  .footer_top-content-details {
    flex-direction: column;
    gap: 58px;
  }

  .footer_top-content {
    font-language-override: 61px 0 64px;
  }

  .footer_top-menu {
    justify-content: center;
    gap: 38px;
  }

  .footer_top-menu-item:not(:last-child) {
    margin-bottom: 27px;
  }

  .footer_top-s-menu {
    transform: translateY(-7px);
  }

  .footer_sdgs-icons-item {
    flex-basis: calc(100% / 5 - 10.5px);
  }

  .footer_sdgs-icons {
    gap: 7px 13px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer_bottom {
    padding: 38px 0 0;
  }

  .footer_bottom-detail-title {
    font-size: 14px;
    flex-shrink: 0;
  }

  .footer_bottom-border {
    height: 40px;
  }

  .footer_bottom-follow-me-right {
    width: 32px;
    height: 32px;
  }

  .footer_bottom-download-app img {
    width: 88px;
  }

  .footer_bottom-download-app-right {
    gap: 10px;
  }

  .footer_bottom-border {
    height: 40px;
    margin: 0 28px 0 55px;
  }

  .footer_bottom-download-app .footer_bottom-border {
    margin: 0 28px 0 19px;
  }

  .footer_bottom-follow-me {
    gap: 0;
  }

  .footer_bottom-menu {
    flex-direction: column;
    gap: 27px;
  }

  .footer_bottom-menu-list {
    display: flex;
    justify-content: center;
    gap: 15px 25px;
    flex-wrap: wrap;
    width: 260px;
    margin: 0 auto;
  }

  .footer_bottom-copyright {
    text-align: center;
  }
}

/*animation*/
.mystic:hover span {
  animation: mystic 1s infinite;
  transform-origin: center center;
  display: inline-block;
}

.mystic span:nth-child(1) {
  animation-delay: 0s;
}

.mystic span:nth-child(2) {
  animation-delay: 0.075s;
}

.mystic span:nth-child(3) {
  animation-delay: 0.15s;
}

.mystic span:nth-child(4) {
  animation-delay: 0.225s;
}

.mystic span:nth-child(5) {
  animation-delay: 0.3s;
}

.mystic span:nth-child(6) {
  animation-delay: 0.375s;
}

.mystic span:nth-child(7) {
  animation-delay: 0.45s;
}

.mystic span:nth-child(8) {
  animation-delay: 0.525s;
}

.mystic span:nth-child(9) {
  animation-delay: 0.6s;
}

.mystic span:nth-child(10) {
  animation-delay: 0.675s;
}

.mystic span:nth-child(11) {
  animation-delay: 0.75s;
}

.mystic span:nth-child(12) {
  animation-delay: 0.825s;
}

.mystic span:nth-child(13) {
  animation-delay: 0.9s;
}

.mystic span:nth-child(14) {
  animation-delay: 0.975s;
}

.mystic span:nth-child(15) {
  animation-delay: 1.05s;
}

.mystic span:nth-child(16) {
  animation-delay: 1.125s;
}

.mystic span:nth-child(17) {
  animation-delay: 1.2s;
}

.mystic span:nth-child(18) {
  animation-delay: 1.275s;
}

.mystic span:nth-child(19) {
  animation-delay: 1.35s;
}

.mystic span:nth-child(20) {
  animation-delay: 1.425s;
}

@keyframes mystic {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    filter: blur(2px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*link_more*/
.link_more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-right: auto;
}

.link_more-word {
  font-size: 18px;
  font-family: var(--kalnia);
  font-weight: 500;
  transition: opacity 0.5s ease;
  letter-spacing: 1.8px;
}

.link_more:hover .link_more-word {
  opacity: 0.4;
}

.link_more-icon {
  width: 35px;
  height: 35px;
  border: 1px solid var(--gray2);
  border-radius: 100%;
  display: block;
  transition: transform 0.5s ease;
  position: relative;
  overflow: hidden;
}

.link_more:hover .link_more-icon {
  transform: scale(1.2);
}

.link_more-icon>img {
  width: 11px;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.link_more:hover .link_more-icon-before {
  animation: arrow-loop01 0.9s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.link_more-icon-after {
  transform: translate(-220%, 220%);
}

.link_more:hover .link_more-icon-after {
  animation: arrow-loop02 0.9s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes arrow-loop01 {
  0% {
    transform: translate(0);
  }

  to {
    transform: translate(200%, -200%);
  }
}

@keyframes arrow-loop02 {
  0% {
    transform: translate(-200%, 200%);
  }

  to {
    transform: translate(0);
  }
}

/*image_blur*/
.image_blur .target_image_blur {
  transition: filter 0.4s ease, transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  will-change: transform, filter;
}

@media screen and (min-width: 769px) {
  .image_blur:hover .target_image_blur {
    filter: blur(2px);
    transform: scale(1.01) translate(1px, -1px);
  }
}

/*mouse_stalker*/
.js-mouse-stalker .js-mouse-stalker__cursor,
.js-mouse-stalker .js-mouse-stalker__follower {
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  cursor: none;
  pointer-events: none;
}

.js-mouse-stalker .js-mouse-stalker__cursor {
  background-color: rgba(45, 45, 45, 0.6);
  opacity: 0.6;
  z-index: 2;
  transition-duration: 900ms;
  /* easeOutCubic */
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  backdrop-filter: blur(8px);
}

.js-mouse-stalker .js-mouse-stalker__follower {
  width: 0px;
  height: 0px;
  left: -10px;
  top: -10px;
  transform: translate(-50%, -50%);
  background-color: transparent;
  opacity: 0;
  z-index: 1;
  transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='75' height='15' viewBox='0 0 75 15'><text transform='translate(0 12)' fill='white' font-size='13px' font-family='Inter' letter-spacing='0.39px'><tspan x='0' y='0'>記事を読む</tspan></text></svg>");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.js-mouse-stalker.is-hover .js-mouse-stalker__cursor {
  width: 140px;
  height: 140px;
  left: -46px;
  top: -46px;
  opacity: initial;
}

.js-mouse-stalker.is-hover .js-mouse-stalker__follower {
  width: 0px;
  height: 0px;
  left: -36px;
  top: -36px;
  z-index: 3;
  background-color: transparent;
  background-repeat: no-repeat;
  opacity: 1;
}

.js-mouse-stalker.is-drag .js-mouse-stalker__cursor {
  width: 140px;
  height: 140px;
  left: -56px;
  top: -56px;
  opacity: 0.4;
}

.js-mouse-stalker.is-hover .js-mouse-stalker__follower {
  z-index: 5;
  width: 140px;
  height: 140px;
  left: -46px;
  top: -46px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='75' height='15' viewBox='0 0 75 15'><text transform='translate(0 12)' fill='white' font-size='13px' font-family='Inter' letter-spacing='0.39px'><tspan x='0' y='0'>記事を読む</tspan></text></svg>");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 1;
}

.js-mouse-stalker.is-drag .js-mouse-stalker__follower::before {
  content: "";
  position: absolute;
  text-align: center;
  left: 0;
  width: 100%;
  top: 50%;
  margin-top: -10px;
  font-size: 1.2rem;
  font-weight: 900;
}

/*article_card*/
.article_card {
  max-width: 405px;
  display: flex;
  flex-direction: column;
}

.article_card-image {
  position: relative;
  height: 227px;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
}

.article_card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transform: translate(1px, -1px);
}

.article_card-tag-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--bg);
  background-image: url(../img/article_noise_bg.png);
  background-repeat: repeat;
  background-size: contain;
  background-position: center top;
  width: 184px;
  height: 57px;
  border-radius: 0 4px 0 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article_card-tag {
  border-radius: 4px;
  border: 1px solid var(--black);
  font-family: var(--inter);
  font-size: 13px;
  width: 152px;
  height: 33px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  padding: 5px 0;
  text-align: center;
}

.article_card-tag:before {
  content: "#";
  margin-right: 3px;
}

.article_card-sentence {
  margin: 24px 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 170%;
  padding: 0 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.article_card-time {
  font-family: var(--inter);
  font-size: 13px;
  font-weight: 400;
  padding: 0 16px;
}

@media screen and (max-width: 768px) {
  .article_card-tag-wrap {
    width: 186px;
    height: 58px;
  }

  .article_card-tag {
    width: 147px;
    height: 33px;
    padding: 6px 0;
  }

  .article_card-sentence {
    margin-top: 19px;
    -webkit-line-clamp: 3;
  }

  .article_card {
    max-width: 100%;
  }

  .article_card-tag-wrap {
    background-image: url(../img/article_noise_bg_sp.png);
    background-size: cover;
  }
}

/*article_card02*/
.article_card02 {
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.article_card02-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 24px 30px;
}

.article_card02-sentence {
  font-weight: 600;
  line-height: 170%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.article_card02-date {
  font-family: var(--inter);
  font-size: 13px;
  font-weight: 500;
}

.article_card02-image {
  overflow: hidden;
}

/*article_list-3column*/
.article_list-3column {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 32px;
}

.article_list-3column .article_list-item {
  flex-basis: calc(100% / 3 - 64px / 3);
}

@media screen and (max-width: 768px) {
  .article_list-3column {
    flex-direction: column;
  }

  .article_list-3column {
    gap: 30px;
  }

  .article_list-3column .article_list-item {
    width: 100%;
  }
}

/*article_list-4column*/
.article_list-4column {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: 1280px;
}

.article_list-4column .article_list-item {
  width: calc(100% / 4 - 32px);
}

.article_list-4column-scroll {
  overflow: auto;
}

/*article_list-slider*/
.article_list-slider {
  display: flex;
  gap: 32px;
  transition: transform 0.5s;
}

.article_list-slider .article_list-item {
  flex-shrink: 0;
}

.article_list-slider-button {
  display: flex;
  gap: 16px;
  margin-top: 35px;
  margin-left: auto;
}

.article_list-slider-button-left,
.article_list-slider-button-right {
  border: 1px solid var(--gray2);
  width: 56px;
  height: 30px;
  position: relative;
  border-radius: 120px;
  overflow: hidden;
  transition: opacity 0.9s;
}

@media screen and (min-width: 789px) {

  .article_list-slider-button-left:hover,
  .article_list-slider-button-right:hover {
    opacity: 0.3;
  }
}

.article_list-slider-button img {
  width: 15px;
  height: 11px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

.article_list-slider-button-left-after {
  transform: translateX(250%);
}

.article_list-slider-button-left:hover .article_list-slider-button-left-after {
  animation: arrow-loop-left01 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.article_list-slider-button-left:hover .article_list-slider-button-left-before {
  animation: arrow-loop-left02 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.article_list-slider-button-right-after {
  transform: translateX(-250%);
}

.article_list-slider-button-right:hover .article_list-slider-button-right-after {
  animation: arrow-loop-right01 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.article_list-slider-button-right:hover .article_list-slider-button-right-before {
  animation: arrow-loop-right02 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes arrow-loop-left01 {
  0% {
    transform: translateX(250%);
  }

  to {
    transform: translate(0);
  }
}

@keyframes arrow-loop-left02 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translate(-250%);
  }
}

@keyframes arrow-loop-right01 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translate(250%);
  }
}

@keyframes arrow-loop-right02 {
  0% {
    transform: translateX(-250%);
  }

  to {
    transform: translate(0);
  }
}

@media screen and (max-width: 768px) {
  .article_list-slider {
    gap: 20px;
  }

  .article_list-slider .article_list-item {
    width: 100%;
  }

  .article_list-slider-button-left,
  .article_list-slider-button-right {
    background-color: var(--black);
  }

  .article_list-slider-button {
    margin-top: 40px;
  }
}

/*inview_fadein*/
.inview_fadein>span:nth-child(1) {
  animation-delay: 100ms;
}

.inview_fadein>span:nth-child(2) {
  animation-delay: 200ms;
}

.inview_fadein>span:nth-child(3) {
  animation-delay: 300ms;
}

.inview_fadein>span:nth-child(4) {
  animation-delay: 400ms;
}

.inview_fadein>span:nth-child(5) {
  animation-delay: 500ms;
}

.inview_fadein>span:nth-child(6) {
  animation-delay: 600ms;
}

.inview_fadein>span:nth-child(7) {
  animation-delay: 700ms;
}

.inview_fadein>span:nth-child(8) {
  animation-delay: 800ms;
}

.inview_fadein>span:nth-child(9) {
  animation-delay: 900ms;
}

.inview_fadein>span:nth-child(10) {
  animation-delay: 1000ms;
}

.inview_fadein>span:nth-child(11) {
  animation-delay: 1100ms;
}

.inview_fadein>span:nth-child(12) {
  animation-delay: 1200ms;
}

.inview_fadein>span:nth-child(13) {
  animation-delay: 1300ms;
}

.inview_fadein>span:nth-child(14) {
  animation-delay: 1400ms;
}

.inview_fadein>span:nth-child(15) {
  animation-delay: 1500ms;
}

.inview_fadein>span:nth-child(16) {
  animation-delay: 1600ms;
}

.inview_fadein>span:nth-child(17) {
  animation-delay: 1700ms;
}

.inview_fadein>span:nth-child(18) {
  animation-delay: 1800ms;
}

.inview_fadein>span:nth-child(19) {
  animation-delay: 1900ms;
}

.inview_fadein>span:nth-child(20) {
  animation-delay: 2000ms;
}

@keyframes inview_fadein {
  0% {
    text-shadow: 0 0 10px #303030;
    opacity: 0;
  }

  100% {
    text-shadow: 0 0 0 #303030;
    opacity: 1;
  }
}

.inview_fadein span {
  color: transparent;
  opacity: 0;
  text-shadow: 0 0 0 #303030;
  transition: text-shadow, ease-in-out 0.3s;
}

.inview_fadein-on span {
  animation: inview_fadein 1000ms ease-in-out both;
}

.inview_fadein-right {
  opacity: 0;
  transform: translateX(25px);
}

.inview_fadein-right-on {
  animation: inview_fadein-right-on 500ms ease-in-out both;
}

@keyframes inview_fadein-right-on {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*pankuzu*/
.pankuzu {
  max-width: 1320px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
}

.pankuzu-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  margin: 0 17px;
  background-color: var(--gray);
  transform: rotate(30deg);
}

.pankuzu-item {
  display: flex;
  align-items: center;
}

.pankuzu-link {
  font-family: var(--inter);
  font-size: 13px;
  color: var(--gray);
  transition: opacity 0.2s;
}

.pankuzu-item:not(:last-child) .pankuzu-link:hover {
  opacity: 0.7;
}

.pankuzu-item:last-child .pankuzu-link {
  color: var(--black);
  cursor: default;
}

/*pager*/
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 240px;
}

.pager-button {
  width: 82px;
  height: 30px;
  border-radius: 120px;
  border: 1px solid var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--kalnia);
  font-weight: 400;
  transition: background-color 0.2s, color 0.2s;
  letter-spacing: 1.6px;
}

.pager-button:hover {
  background-color: var(--black);
  color: white;
}

.pager-items {
  display: flex;
  gap: 8px;
}

.pager-item a,
.pager-item .current {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid var(--lightGray);
  font-weight: 600;
  font-family: var(--inter);
  color: var(--gray);
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}

.pager-item a:hover {
  background-color: var(--black);
  color: #fff;
}

.pager-item .current {
  background-color: var(--black);
  color: #fff;
}

.page-numbers.dots {
  color: #8e8e8e;
  font-size: 26px;
}

.pager-skip {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pager-skip:before,
.pager-skip:after {
  content: "";
}

.pager-skip:before,
.pager-skip:after,
.pager-skip span {
  width: 4px;
  height: 4px;
  display: block;
  background-color: var(--gray);
  border-radius: 100%;
}

@media screen and (max-width: 768px) {
  .pager-button {
    width: 60px;
    font-size: 12px;
  }

  .pager {
    gap: 10px;
    margin-bottom: 87px;
  }

  .pager-items {
    gap: 5px;
  }

  .pager-item a,
  .pager-item .current {
    width: 30px;
    height: 30px;
  }

  .page-numbers.dots {
    font-size: 20px;
  }

  .pager-item:nth-child(3),
  .pager-item:nth-child(4) {
    /* display: none; */
  }
}

/*fixed_element01*/
.fixed_element01 {
  position: fixed;
  right: 37px;
  bottom: 34px;
  border: 1px solid var(--gray);
  border-radius: 120px;
  width: 270px;
  height: 64px;
  display: flex;
  background-color: var(--bg);
  background-image: url(../img/noise_bg.png);
  background-repeat: repeat;
  background-size: contain;
  overflow-x: hidden;
  z-index: 9;
}

.fixed_element01-button {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.fixed_element01-button-animation {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-right: 16px;
}

.fixed_element01-button-animation:nth-child(odd) {
  animation: MoveLeft 18s -9s infinite linear;
}

.fixed_element01-button-animation:nth-child(even) {
  animation: MoveLeft2 18s infinite linear;
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

.fixed_element01-sentence {
  font-weight: 600;
}

.fixed_element01-icon {
  width: 24px;
}

@media screen and (max-width: 768px) {
  .fixed_element01 {
    margin: 0 auto;
    left: 0;
    right: 0;
  }
}

/*form*/
.modal-form input:not([type="radio"]):not([type="checkbox"]),
.modal-form textarea {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  padding: 10px 15px;
  box-sizing: border-box;
  width: 100%;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.1);
  font-weight: normal;
  font-size: 14px;
}

.modal-form .textarea-normal {
  height: 108px;
}

.modal-form {
  border-radius: 8px;
  padding: 48px 43px 32px;
  background: #fff;
  margin-bottom: 0px;
  width: 375px;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
}

.modal-form * {
  font-family: var(--noto);
}

.modal-form #registration-form {
  margin-top: 0;
}

.modal-form h3 {
  color: var(--black);
  text-align: center;
  font-size: 20px;
  margin-bottom: 33px;
}

.modal-form .input {
  position: relative;
}

.modal-form .input:not(:last-of-type) {
  margin-bottom: 10px;
}

form input[type="number"]::-webkit-outer-spin-button,
form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

.modal-form .input label {
  position: absolute;
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  background-color: transparent;
  left: 15px;
  transform: translateY(1.1rem);
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: normal;
}

.modal-form .input input {
  border-color: rgba(0, 0, 0, 0.1);
  font-weight: normal;
  padding-top: 12px;
  padding-bottom: 12px;
}

.modal-form .input input:focus,
.modal-form .input input:valid,
.modal-form .input input:user-invalid,
.modal-form .input textarea:focus,
.modal-form .input textarea:valid,
.modal-form .input textarea:user-invalid {
  outline: none;
  border: solid 1px var(--black);
}

.modal-form .input input:focus~label,
.modal-form .input input:valid~label,
.modal-form .input input:user-invalid~label,
.modal-form .input textarea:focus~label,
.modal-form .input textarea:valid~label,
.modal-form .input textarea:user-invalid~label {
  transform: translateY(-51%) translateX(-10px) scale(0.8);
  background-color: #fff;
  padding: 0px 5px;
  color: var(--black);
  letter-spacing: 1px;
  border: none;
  border-radius: 100px;
}

.modal-form-button {
  background-color: var(--black);
  color: #fff;
  border-radius: 5px;
  width: 200px;
  height: 56px;
  margin: 27px auto 0;
  font-family: YuGothic, "ヒラギノ角ゴ ProN W3", "Lucida Grande",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック",
    sans-serif;
  font-weight: 700;
  transition: opacity 0.2s, background-color 0.2s;
}

.modal-form-button:disabled {
  opacity: 0.3;
}

.modal-form-button:not(:disabled):hover {
  background-color: #fff;
  color: var(--black);
  border: 1px solid var(--black);
}

.complete-icon-checkbox {
  position: absolute;
  top: -5000px;
}

.wrap_complete-icon {
  width: 200px;
  height: 200px;
  transform: translate(0);
  border-radius: 50%;
  overflow: hidden;
  margin: 20px 0;
}

.complete-icon-checkbox:checked~.wrap_complete-icon .complete-icon:before {
  -webkit-animation: rotate 2.5s linear both;
  animation: rotate 2.5s linear both;
}

.complete-icon-checkbox:checked~.wrap_complete-icon .complete-icon:after {
  -webkit-animation: checking 2.5s linear both;
  animation: checking 2.5s linear both;
}

.complete-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

.complete-icon:before,
.complete-icon:after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.complete-icon:before {
  border: solid 12px transparent;
  border-top-color: #32a845;
  border-radius: 50%;
  clip: rect(0px, 200px, 200px, 200px);
  transform: rotate(-45deg);
}

.complete-icon:after {
  border-bottom: 12px solid #32a845;
  border-left: 12px solid #32a845;
  transform: rotate(-45deg) translate(40%, -40%) skew(-9deg);
  -webkit-animation: checking-reverse 0.6s linear both;
  animation: checking-reverse 0.6s linear both;
}

@-webkit-keyframes checking {

  0%,
  90% {
    clip: rect(0px, 12px, 0px, 0px);
  }

  95% {
    clip: rect(0px, 12px, 200px, 0px);
  }

  100% {
    clip: rect(150px, 100px, 200px, 0px);
  }
}

@keyframes checking {

  0%,
  90% {
    clip: rect(0px, 12px, 0px, 0px);
  }

  95% {
    clip: rect(0px, 12px, 200px, 0px);
  }

  100% {
    clip: rect(150px, 100px, 200px, 0px);
  }
}

@-webkit-keyframes checking-reverse {
  0% {
    clip: rect(150px, 100px, 200px, 0px);
  }

  40% {
    clip: rect(150px, 12px, 200px, 0px);
  }

  100% {
    clip: rect(150px, 12px, 0px, 0px);
  }
}

@keyframes checking-reverse {
  0% {
    clip: rect(150px, 100px, 200px, 0px);
  }

  40% {
    clip: rect(150px, 12px, 200px, 0px);
  }

  100% {
    clip: rect(150px, 12px, 0px, 0px);
  }
}

@-webkit-keyframes rotate {
  10% {
    clip: rect(0px, 200px, 200px, 0px);
  }

  90% {
    clip: rect(0px, 200px, 200px, 0px);
    transform: rotate(-1090deg);
  }

  91%,
  99% {
    transform: rotate(-1090deg);
  }

  100% {
    transform: rotate(-1090deg);
    clip: rect(0px, 0px, 200px, 0px);
  }
}

@keyframes rotate {
  10% {
    clip: rect(0px, 200px, 200px, 0px);
  }

  90% {
    clip: rect(0px, 200px, 200px, 0px);
    transform: rotate(-1090deg);
  }

  91%,
  99% {
    transform: rotate(-1090deg);
  }

  100% {
    transform: rotate(-1090deg);
    clip: rect(0px, 0px, 200px, 0px);
  }
}

.modal-form-complete {
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  width: 410px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 61px 0 48px;
}

.modal-form-complete h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--noto);
}

.modal-form-complete-sentence {
  font-weight: 400;
  font-family: var(--noto);
  line-height: 180%;
  text-align: center;
}

.modal-form-complete .modal-form-button {
  margin-top: 35px;
}

@media screen and (max-width: 768px) {
  .modal-form {
    width: 255px;
  }

  .modal-form-complete {
    width: 330px;
  }
}

/*modal*/
.wrap-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal {
  display: flex;
  flex-direction: column;
}

.modal-peke {
  width: 30px;
  margin: 0 0 12px auto;
  transition: opacity 0.2s;
}

.modal-peke:hover {
  opacity: 0.3;
}

#content #main {
  margin-top: 0;
}

#content .common-map {
  display: none;
}

#content #entry {
  background: none;
}