@charset "UTF-8";
@media screen and (min-width: 768px) {
  html,
  body {
    scrollbar-width: none;
  }
}

body.is-fixed {
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .wrapper {
    padding-top: 70px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .wrapper {
    padding-top: 90px;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  background: #36869c;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .header {
    flex-direction: column;
    width: 210px;
    height: 100vh;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header {
    height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 70px;
  }
}

@media screen and (min-width: 768px) {
  .header-logo {
    width: 130px;
    margin: 40px auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-logo {
    width: 100%;
    display: flex;
    padding: 0 15px;
    margin: 0 auto 0;
  }
  .header-logo picture img {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 100%;
    display: flex;
    padding: 15px;
  }
  .header-logo picture img {
    width: 80px;
  }
}
.header-logo__subtext {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-logo__subtext {
    padding-left: 20px;
    font-size: 1rem;
  }
}
.header-logo__subtext span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .header-logo__subtext {
    padding-left: 16px;
    font-size: 1rem;
  }
}

.header-sns {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: auto 16px 10px;
}
@media screen and (max-width: 1024px) {
  .header-sns {
    display: none;
    flex-direction: row;
    margin-top: 2.66667%;
  }
}
.header-sns__link-btn {
  display: block;
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1025px) {
  .header-sns__link-btn {
    width: 44px;
    height: 44px;
  }
}
.header-sns__link-btn::before,
.header-sns__link-btn::after {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s;
}
.header-sns__link-btn::before {
  opacity: 1;
}
.header-sns__link-btn::after {
  opacity: 0;
}
.header-sns__link-btn:hover::before {
  opacity: 0;
}
.header-sns__link-btn:hover::after {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .header-sns__link-btn {
    width: 16%;
    height: 0;
    padding-top: 16%;
  }
}
@media screen and (min-width: 768px) {
  .header-sns__link-btn--x::before {
    background-image: url("../images/main/icon/btn_x.svg");
  }
  .header-sns__link-btn--x::after {
    background-image: url("../images/main/icon/btn_x-blue.svg");
  }
}
@media screen and (max-width: 767px) {
  .header-sns__link-btn--x {
    background-image: url("../images/main/icon/btn_x.svg");
  }
}
.header-sns__account-name {
  color: #fff;
  font-size: 1.25rem;
  margin-top: 5px;
}
@media screen and (max-width: 1024px) {
  .header-sns__account-name {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .header-btn-group {
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .reservation-btn-wrap {
    position: relative;
  }
}
@media screen and (max-width: 1024px) {
  .reservation-btn-wrap {
    position: relative;
  }
}

.external-links-wrap {
  background-color: #54b5cf;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 768px) {
  .external-links-wrap {
    padding-top: 16px;
    padding-bottom: 16px;
    margin-top: auto;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .external-links-wrap {
    display: none;
  }
}

.external-link {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 8px 0;
  border-radius: 0;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.external-link + .external-link {
  margin-top: 10px;
}
.external-link:hover {
  color: #36869c;
}
.external-link__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 44px;
  height: 44px;
  margin-right: 15px;
}
.external-link__icon:hover {
  opacity: 0.5;
}
.external-link__text {
  font-size: 1rem;
  line-height: 1.2;
}
.external-link--ios .external-link__icon {
  background-image: url("../images/main/icon/ios.png");
}
.external-link--android .external-link__icon {
  background-image: url("../images/main/icon/and.png");
}

.reservation-btn {
  display: flex;
  color: #333;
  background-color: #fff;
  background-image: url("../images/main/icon/icon_dog-footprint_bg-white.svg");
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .reservation-btn {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 140px;
    font-size: 1rem;
    letter-spacing: 0.2em;
    background-size: 50px 44px;
    background-position: center top 55px;
    padding-top: 15px;
    transition: all 0.3s;
  }
  .reservation-btn:hover {
    color: #154669;
    background-image: url("../images/main/icon/icon_dog-footprint_bg-blue.svg");
  }
}
@media screen and (max-width: 1024px) {
  .reservation-btn {
    justify-content: flex-start;
    align-items: center;
    letter-spacing: 0.05em;
    border-radius: 30px;
  }
}
@media screen and (max-width: 767px) {
  .reservation-btn {
    width: 100px;
    height: 38px;
    font-size: 0.9375rem;
    background-size: 20px 15px;
    background-position: right 10px center;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .reservation-btn {
    width: 165px;
    height: 60px;
    background-size: 24px 21px;
    background-position: right 35px center;
    padding-top: 0;
    padding-left: 45px;
  }
}

@media screen and (min-width: 768px) {
  .best-rate {
    position: absolute;
    bottom: 10px;
    left: 50px;
    font-size: 0.875rem;
    color: #333;
  }
}
@media screen and (max-width: 1024px) {
  .best-rate {
    position: absolute;
    bottom: 0px;
    left: 40px;
    font-size: 0.75rem;
    color: #333;
  }
}
@media screen and (max-width: 767px) {
  .best-rate {
    position: initial;
    font-size: 0.75rem;
    color: #fff;
    padding-top: 4px;
  }
}

.menu-btn {
  display: block;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #fff;
  background: #36869c;
  border: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .menu-btn {
    width: 100%;
    height: 133px;
    font-size: 1.125rem;
    padding: 75px 0.5em 0.5em;
    transition: color 0.3s;
  }
  .menu-btn:hover {
    color: #154669;
  }
  .menu-btn:hover::before,
  .menu-btn:hover::after {
    background-color: #154669;
  }
}
@media screen and (max-width: 767px) {
  .menu-btn {
    width: 73px;
    height: 70px;
    font-size: 0.5625rem;
    padding: 44px 20px 0.5em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-btn {
    width: 90px;
    height: 90px;
    font-size: 0.5625rem;
    padding: 60px 30px 0.5em;
    margin-left: 20px;
  }
}
.menu-btn::before,
.menu-btn::after {
  content: "";
  display: block;
  height: 1px;
  background: #fff;
  border-radius: 0.5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.6s;
}
@media screen and (min-width: 768px) {
  .menu-btn::before,
  .menu-btn::after {
    width: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .menu-btn::before,
  .menu-btn::after {
    width: 30px;
  }
}
@media screen and (min-width: 768px) {
  .menu-btn::before {
    top: 33px;
  }
  .menu-btn::after {
    top: 63px;
  }
  .menu-btn.is-opened::before {
    transform: rotate(-45deg) translate(-50%, -7px);
  }
  .menu-btn.is-opened::after {
    transform: rotate(45deg) translate(-50%, 7px);
  }
}
@media screen and (max-width: 767px) {
  .menu-btn::before {
    top: 20px;
  }
  .menu-btn::after {
    top: 35px;
  }
  .menu-btn.is-opened::before {
    transform: rotate(-45deg) translate(-50%, -5px);
  }
  .menu-btn.is-opened::after {
    transform: rotate(45deg) translate(-50%, 5px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-btn::before {
    top: 24px;
  }
  .menu-btn::after {
    top: 44px;
  }
  .menu-btn.is-opened::before {
    transform: rotate(-45deg) translate(-50%, -1px);
  }
  .menu-btn.is-opened::after {
    transform: rotate(45deg) translate(-50%, 1px);
  }
}
.menu-btn.is-opened {
  font-size: 0;
  z-index: 10;
}

.page-top {
  display: none;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .page-top {
    width: 100%;
    height: 70px;
    background: #535353;
    padding: 0.5em;
    margin-top: auto;
    transition: color 0.3s;
  }
  .page-top:hover {
    color: #154669;
  }
}
@media screen and (max-width: 1024px) {
  .page-top {
    color: #fff;
    background: #333;
    position: fixed;
    right: 1em;
    bottom: 1em;
    z-index: 10;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-top {
    width: 80px;
    height: 80px;
    margin-top: 0;
    transition: none;
  }
}
@media screen and (max-width: 767px) {
  .page-top {
    width: 40px;
    height: 40px;
  }
}
.page-top__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page-top__text {
    display: block;
    padding-left: 0.5em;
  }
}
@media screen and (max-width: 1024px) {
  .page-top__text {
    display: none;
    font-size: 0;
  }
}

.header-nav {
  display: none;
  width: 100vw;
  height: 100vh;
  background: #36869c;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .header-nav {
    padding-right: 210px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-nav {
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .header-nav__inner {
    display: flex;
    align-items: center;
    height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav__inner {
    height: 100vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-nav__inner {
    display: block;
    align-items: initial;
    padding: 90px 1em;
  }
}
@media screen and (max-width: 767px) {
  .header-nav__inner {
    padding: 70px 1em;
    overflow-y: auto;
  }
}

.header-menu-group {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header-menu-group {
    display: flex;
    flex-direction: column;
    max-width: 900px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-menu-group {
    display: block;
    max-width: initial;
  }
}
@media screen and (max-width: 767px) {
  .header-menu-group {
    width: min(100%, 600px);
  }
}

.header-menu {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .header-menu {
    display: grid;
    grid-template-columns: 161px 1fr;
  }
}
@media screen and (min-width: 768px) {
  .header-menu + .header-menu {
    margin-left: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-menu + .header-menu {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .header-menu__page-link {
    display: inline-block;
    padding: 16px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .header-menu__page-link {
    display: block;
    padding: 16px 1em;
  }
}
@media screen and (max-width: 767px) {
  .header-menu__page-link {
    font-size: 14px;
    padding: 16px 0;
  }
}
.header-menu__page-link.title {
  font-size: 16px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .header-menu__page-link.title {
    border-bottom: dotted 0.5px #51b6d4;
  }
}
@media screen and (min-width: 768px) {
  .header-menu__sns-group {
    padding: 0 40px;
    margin-top: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-menu__sns-group {
    padding: 0;
    margin-top: 0;
  }
}
.header-menu a {
  display: inline-block;
  color: #fff;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header-menu a {
    font-size: 1.5rem;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    transition: all 0.3s;
  }
  .header-menu a:hover {
    color: #154669;
  }
  .header-menu a span::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 2px;
    background-color: #154669;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease 0s;
  }
  .header-menu a span:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
}
.header-menu .full {
  grid-row: 1;
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .header-menu .full {
    grid-column: span 2;
  }
}

.header-sns_opend {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header-sns_opend {
    margin-top: auto;
    margin-top: 32px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .header-sns_opend {
    margin-top: 24px;
  }
}
.header-sns_opend__icon {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0;
}
@media screen and (min-width: 768px) {
  .header-sns_opend__icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .header-sns_opend__icon {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 768px) {
  .header-sns_opend__icon + .header-sns_opend__icon {
    margin-left: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-sns_opend__icon + .header-sns_opend__icon {
    margin-left: 90px;
  }
}
@media screen and (max-width: 767px) {
  .header-sns_opend__icon + .header-sns_opend__icon {
    margin-left: 60px;
  }
}
.header-sns_opend__icon--instagram {
  background-image: url("../images/main/icon/btn_instagram_bg-white.svg");
}
@media screen and (min-width: 768px) {
  .header-sns_opend__icon--instagram:hover {
    background-image: url("../images/main/icon/btn_instagram_bg-blue.svg");
  }
}
.header-sns_opend__icon--facebook {
  background-image: url("../images/main/icon/btn_facebook_bg-white.svg");
}
@media screen and (min-width: 768px) {
  .header-sns_opend__icon--facebook:hover {
    background-image: url("../images/main/icon/btn_facebook_bg-blue.svg");
  }
}
.header-sns_opend__icon--twitter {
  background-image: url("../images/main/icon/btn_twitter_bg-white.svg");
}
@media screen and (min-width: 768px) {
  .header-sns_opend__icon--twitter:hover {
    background-image: url("../images/main/icon/btn_twitter_bg-blue.svg");
  }
}

@media screen and (max-width: 767px) {
  div.searchCalElement {
    margin: 15px 0;
  }
  .searchCalElement > ul {
    flex-direction: column;
  }
  .searchCalElement > ul > li {
    width: 100%;
  }
  .searchCalElement > ul > li:first-child > ul {
    display: flex;
    justify-content: space-between;
  }
  .searchCalElement > ul > li:first-child > ul dl {
    display: block;
    margin: 0 auto;
  }
}
.main {
  width: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .main {
    padding-right: 210px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main {
    padding-right: 0;
  }
}

.contents__inner {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contents__inner--wide-full {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contents__inner--wide-full {
    padding-left: 0;
    padding-right: 0;
  }
}

.contents-heading {
  text-align: center;
}
.contents-heading span {
  display: block;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.333;
  letter-spacing: 0.1em;
  color: #333;
  margin-top: 18px;
}

@media screen and (min-width: 768px) {
  .contents-body {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contents-body {
    margin-top: 30px;
  }
}

.main-visual {
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .main-visual {
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .main-visual {
    margin-top: 70px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-visual {
    margin-top: 90px;
  }
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  position: absolute;
  width: auto;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  font-size: 0;
  padding: 0;
  border-radius: 50%;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #154669;
}

.mv01 .swiper {
  width: 100%;
  height: 100%;
}
.mv01 .swiper-slide {
  overflow: hidden;
}
.mv01 .swiper-slide .mv-slide {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .mv01 .swiper-slide .mv-slide {
    height: 270px;
  }
}
.mv01 .swiper-slide .mv-slide--img01 {
  background-image: url("../images/main/mv_snpit.jpg");
}
.mv01 .swiper-slide .mv-slide--img02 {
  background-image: url("../images/main/mv_nfta.jpg");
}
.mv01 .swiper-slide .mv-slide--img03 {
  background-image: url("../images/main/mv_robrox.jpg");
}
.mv01 .swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto;
}
@media screen and (min-width: 768px) {
  .mv01 .swiper-pagination {
    left: 64px;
    bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .mv01 .swiper-pagination {
    left: 50%;
    bottom: 45px;
    transform: translateX(-50%);
  }
}
.mv01 .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .mv01 .swiper-pagination .swiper-pagination-bullet:not(:first-of-type) {
    margin-left: 54px;
  }
}
@media screen and (max-width: 767px) {
  .mv01 .swiper-pagination .swiper-pagination-bullet:not(:first-of-type) {
    margin-left: 60px;
  }
}
.mv01
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #154669;
}
.mv01 .swiper-slide-active .mv-slide,
.mv01 .swiper-slide-duplicate-active .mv-slide,
.mv01 .swiper-slide-prev .mv-slide {
  animation: zoomUp 10s linear 0s 1 normal both;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.mv-banner {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .mv-banner {
    top: 10px;
    left: 10px;
  }
  .mv-banner .mv-box-item {
    width: 200px;
  }
}

img {
  border: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #333;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  left: inherit;
  right: inherit;
  display: grid;
  place-content: center;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  box-shadow: 0.5rem 0.5rem 0.75rem rgba(0, 0, 0, 0.05),
    -0.5rem -0.5rem 0.75rem #fff;
}
@media screen and (min-width: 1025px) {
  .swiper-button-prev::before,
  .swiper-button-next::before {
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  border: solid gray;
  border-width: 3px 3px 0 0;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}
@media screen and (min-width: 1025px) {
  .swiper-button-prev:hover::before,
  .swiper-button-next:hover::before {
    transform: scale(1.2);
  }
}

.swiper-button-prev::after {
  margin-left: 0.2rem;
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.2rem;
  transform: rotate(45deg);
}

#card03.contents {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  #card03.contents {
    padding: 60px 0 0px;
  }
}

.card03 {
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .card03 {
    max-height: 460px;
  }
}
.card03 .contents__inner {
  position: relative;
  box-sizing: content-box;
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
  padding: 0 5rem 60px;
  padding: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .card03 .contents__inner {
    padding: 0 1rem 60px;
  }
}
.card03 .contents-heading {
  text-align: left;
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .card03 .contents-heading {
    font-size: 1.5rem;
    text-align: center;
  }
}
.card03 .swiper {
  overflow: visible;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .card03 .swiper {
    padding: 0 2rem;
  }
}
.card03 .swiper-button-prev,
.card03 .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.card03 .swiper-button-prev::before,
.card03 .swiper-button-next::before {
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0.5rem 0.5rem 0.75rem rgba(0, 0, 0, 0.1),
    -0.5rem -0.5rem 0.75rem rgba(255, 255, 255, 0.2);
}
.card03 .swiper-button-prev::after,
.card03 .swiper-button-next::after {
  border-color: #fff;
}
.card03 .swiper-button-prev {
  right: calc(100% - 3.8rem);
}
@media screen and (max-width: 1024px) {
  .card03 .swiper-button-prev {
    right: calc(100% - 5.2rem);
  }
}
@media screen and (max-width: 767px) {
  .card03 .swiper-button-prev {
    right: calc(100% - 3.2rem);
  }
}
.card03 .swiper-button-next {
  left: calc(100% - 3.8rem);
}
@media screen and (max-width: 1024px) {
  .card03 .swiper-button-next {
    left: calc(100% - 5.2rem);
  }
}
@media screen and (max-width: 767px) {
  .card03 .swiper-button-next {
    left: calc(100% - 3.2rem);
  }
}
.card03 .slide {
  overflow: hidden;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1), opacity 1s;
  border-radius: 4px;
  box-shadow: 0.5rem 0.5rem 0.75rem rgba(0, 0, 0, 0.05),
    -0.5rem -0.5rem 0.75rem #fff;
}
@media screen and (min-width: 1025px) {
  .card03 .slide:hover {
    transform: translateY(-16px);
    box-shadow: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08),
      -0.5rem -0.5rem 0.75rem #fff;
  }
  .card03 .slide:hover img {
    transform: translateY(0);
  }
}
.card03 .slide-media {
  padding-top: 62.5%;
}
.card03 .slide-media img {
  height: calc(100% + 16px);
  transform: translateY(-16px);
}
@media screen and (min-width: 1025px) {
  .card03 .slide-media img {
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    max-width: 263px;
    max-height: 180px;
  }
}
.card03 .slide-content {
  padding: 1rem;
  position: relative;
}
.card03 .slide-content .slide-date {
  font-size: 0.75rem;
  line-height: 1;
  display: block;
  color: rgb(0, 112, 156);
}
@media screen and (max-width: 767px) {
  .card03 .slide-content .slide-date {
    font-size: 1rem;
  }
}
.card03 .slide-content .new_tab {
  color: #fff;
  font-weight: bold;
  background-color: red;
  padding: 2px 8px;
  border-radius: 4px;
  position: absolute;
  right: 8px;
  top: -16px;
}
.card03 .slide-content .slide-title {
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 5.2em;
  margin-top: 1rem;
}
.card03 .swiper-pagination .swiper-pagination-bullet {
  margin: 0 10px;
}
.card03
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #154669;
}

img {
  border: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #333;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  left: inherit;
  right: inherit;
  display: grid;
  place-content: center;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  box-shadow: 0.5rem 0.5rem 0.75rem rgba(0, 0, 0, 0.05),
    -0.5rem -0.5rem 0.75rem #fff;
}
@media screen and (min-width: 1025px) {
  .swiper-button-prev::before,
  .swiper-button-next::before {
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  border: solid gray;
  border-width: 3px 3px 0 0;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}

.swiper-button-prev::after {
  margin-left: 0.2rem;
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.2rem;
  transform: rotate(45deg);
}

#nft-project-section {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  #nft-project-section {
    padding: 60px 0 0px;
  }
}

.card04 {
  overflow: hidden;
}
.card04 .contents__inner {
  position: relative;
  box-sizing: content-box;
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
  padding: 0 0 60px;
}
.card04 .contents-heading {
  text-align: left;
  font-size: 2.25rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .card04 .contents-heading {
    font-size: 1.5rem;
    text-align: center;
  }
}
.card04 .section-sub-heading {
  margin-bottom: 16px;
}
.card04 .swiper {
  overflow: visible;
}
.card04 .swiper-button-prev,
.card04 .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.card04 .swiper-button-prev::before,
.card04 .swiper-button-next::before {
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0.5rem 0.5rem 0.75rem rgba(0, 0, 0, 0.1),
    -0.5rem -0.5rem 0.75rem rgba(255, 255, 255, 0.2);
}
.card04 .swiper-button-prev::after,
.card04 .swiper-button-next::after {
  border-color: #fff;
}
.card04 .swiper-button-prev {
  right: calc(100% - 3.8rem);
}
@media screen and (max-width: 1024px) {
  .card04 .swiper-button-prev {
    right: calc(100% - 5.2rem);
  }
}
@media screen and (max-width: 767px) {
  .card04 .swiper-button-prev {
    right: calc(100% - 3.2rem);
  }
}
.card04 .swiper-button-next {
  left: calc(100% - 3.8rem);
}
@media screen and (max-width: 1024px) {
  .card04 .swiper-button-next {
    left: calc(100% - 5.2rem);
  }
}
@media screen and (max-width: 767px) {
  .card04 .swiper-button-next {
    left: calc(100% - 3.2rem);
  }
}
.card04 .slide {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0.5rem 0.5rem 0.75rem rgba(0, 0, 0, 0.05),
    -0.5rem -0.5rem 0.75rem #fff;
}
.card04 .slide-media {
  padding-top: 79.5%;
}
.card04 .slide-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.card04 .slide-content .slide-title {
  font-size: 1rem;
  color: #0c0d14;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  margin-top: 0;
}
.card04 .slide-content .slide-description-wrapper {
  position: relative;
  overflow: hidden;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.card04
  .slide-content
  .slide-description-wrapper.is-expanded
  .slide-description {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: none;
}
.card04 .slide-content .slide-description {
  font-size: 0.75rem;
  color: #0c0d14;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 9;
}
.card04 .slide-content .read-more-button {
  background: none;
  border: none;
  color: #36869c;
  font-size: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  padding: 5px 0;
  text-align: left;
  margin-top: 5px;
  width: 100%;
  transition: color 0.3s ease;
}
.card04 .slide-content .read-more-button:hover {
  color: #225563;
}
.card04 .swiper-pagination .swiper-pagination-bullet {
  margin: 0 10px;
}
.card04
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #154669;
}

#concept {
  margin: 60px auto;
}
@media screen and (max-width: 767px) {
  #concept {
    margin: 40px auto;
  }
}
#concept .contents-heading {
  color: #0c0d14;
  font-size: 2.25rem;
  text-align: left;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  #concept .contents-heading {
    font-size: 1.75rem;
    text-align: center;
  }
}
#concept .concept-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #concept .concept-layout {
    flex-direction: column;
  }
}
#concept .concept-text-area {
  color: #0c0d14;
  line-height: 1.5;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  #concept .concept-text-area {
    width: 40%;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  #concept .concept-text-area {
    width: 100%;
    padding-bottom: 24px;
    padding-right: 0px;
  }
}
#concept .concept-text-area p {
  font-size: 0.875rem;
  margin-bottom: 1em;
}
#concept .concept-text-area p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #concept .concept-image-area {
    width: 60%;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  #concept .concept-image-area {
    width: 100%;
    text-align: center;
  }
}
#concept .concept-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#projects {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #projects {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#projects .contents__inner {
  margin: 0 auto;
}
#projects .contents-heading {
  color: #0c0d14;
  font-size: 2.25rem;
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #projects .contents-heading {
    font-size: 1.5rem;
    text-align: center;
  }
}
#projects .project-cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  #projects .project-cards {
    justify-content: center;
    gap: 16px;
  }
}
#projects .project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  width: calc(33.33% - 20px);
  max-width: 300px;
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #projects .project-card {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  #projects .project-card {
    width: 80%;
    max-width: 280px;
  }
}
#projects .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
#projects .project-card__image img {
  display: block;
  max-width: 100%;
  height: auto;
}

#x-to-earn-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
  /* 下層ページへのリンクボタン */
  /* アプリストアリンクボタンのラッパー */
  /* 個々のアプリストアボタン */
}
@media screen and (max-width: 767px) {
  #x-to-earn-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  #x-to-earn-section .contents__inner {
    margin: 0 auto;
  }
}
#x-to-earn-section .contents-heading {
  color: #0c0d14;
  font-size: 2.25rem;
  text-align: left;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  #x-to-earn-section .contents-heading {
    font-size: 1.5rem;
    text-align: center;
  }
}
#x-to-earn-section .x-to-earn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#x-to-earn-section .video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 のアスペクト比 (9 / 16 * 100%) */
  background-color: #000;
  margin-bottom: 20px;
}
#x-to-earn-section .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#x-to-earn-section .video-caption {
  color: #20b2aa;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 40px;
}
#x-to-earn-section .cta-button {
  display: block;
  text-decoration: none;
  text-align: center;
  border-radius: 40px;
  padding: 20px 40px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  #x-to-earn-section .cta-button {
    font-size: 1.125rem;
    padding: 24px 8px;
    width: 100%;
  }
}
#x-to-earn-section .cta-button--primary {
  background-color: #36869c;
  color: #fff;
}
#x-to-earn-section .cta-button--primary:hover {
  background-color: #46a5bf;
}
#x-to-earn-section .app-download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
}
#x-to-earn-section .app-button {
  transition: all 0.3s ease;
  width: calc(50% - 10px);
  max-width: 280px;
}
@media screen and (max-width: 767px) {
  #x-to-earn-section .app-button {
    width: 100%;
  }
}
#x-to-earn-section .app-button--apple {
  color: #fff;
}
#x-to-earn-section .app-button--apple .app-button__icon {
  background-image: url("../images/App_Store_Badge.svg");
}
#x-to-earn-section .app-button--apple:hover {
  opacity: 0.8;
}
#x-to-earn-section .app-button--google {
  color: #fff;
}
#x-to-earn-section .app-button--google .app-button__icon {
  background-image: url("../images/GooglePlay_Badge.png");
}
#x-to-earn-section .app-button--google:hover {
  opacity: 0.8;
}
#x-to-earn-section .app-button__icon {
  display: block;
  width: 274px;
  height: 81px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}
#x-to-earn-section .app-button__text {
  font-size: 0.875rem;
  line-height: 1.4;
}

#metaverse-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
  /* 写真スライドショーのテキスト (非表示) */
  /* PLAY GAME ボタン */
  /* これまでに展開してきたHISワールドセクション */
}
@media screen and (max-width: 767px) {
  #metaverse-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  #metaverse-section .contents__inner {
    margin: 0 auto;
  }
}
#metaverse-section .contents-heading {
  color: #0c0d14;
  font-size: 2.25rem;
  text-align: left;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  #metaverse-section .contents-heading {
    font-size: 1.5rem;
    text-align: center;
  }
}
#metaverse-section .section-sub-heading {
  color: #0c0d14;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  #metaverse-section .section-sub-heading {
    font-size: 0.875rem;
    text-align: center;
  }
}
#metaverse-section .metaverse-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#metaverse-section .video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 のアスペクト比 */
  background-color: #000;
  margin-bottom: 24px;
}
#metaverse-section .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#metaverse-section .video-caption {
  color: #20b2aa;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 40px;
}
#metaverse-section .image-slideshow-text {
  display: none;
}
#metaverse-section .cta-button {
  display: block;
  text-decoration: none;
  text-align: center;
  border-radius: 40px;
  padding: 20px 40px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  #metaverse-section .cta-button {
    font-size: 1.125rem;
    padding: 15px 30px;
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }
}
#metaverse-section .cta-button--secondary {
  background-color: #36869c;
  color: #fff;
}
#metaverse-section .cta-button--secondary:hover {
  background-color: #359fbb;
}
#metaverse-section .his-worlds-section {
  width: 100%;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  #metaverse-section .his-worlds-section {
    margin-top: 24px;
  }
}
#metaverse-section .sub-heading {
  color: #0c0d14;
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  #metaverse-section .sub-heading {
    font-size: 1.25rem;
    text-align: center;
  }
}
#metaverse-section .his-worlds-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #metaverse-section .his-worlds-cards {
    flex-direction: column;
    gap: 20px;
  }
}
#metaverse-section .his-world-card {
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #metaverse-section .his-world-card {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  #metaverse-section .his-world-card {
    border: none;
    box-shadow: none;
    width: 100%;
    margin: 0 auto;
  }
}
#metaverse-section .his-world-card__image-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  padding: 0px;
  justify-content: space-between;
}
#metaverse-section .his-world-card__image img {
  display: block;
  max-width: 100%;
  height: auto;
}
#metaverse-section .his-world-card__image--square {
  width: calc(38% - 0px);
}
#metaverse-section .his-world-card__image--rectangle {
  width: calc(61% - 0px);
}
#metaverse-section .his-world-card__text {
  padding: 16px;
}
@media screen and (max-width: 767px) {
  #metaverse-section .his-world-card__text {
    padding: 16px 0 0;
  }
}
#metaverse-section .his-world-card__text h4 {
  font-size: 1.125rem;
  color: #0c0d14;
  margin-bottom: 8px;
}
#metaverse-section .his-world-card__text p {
  font-size: 0.875rem;
  color: #0c0d14;
  line-height: 1.6;
}
#metaverse-section .metaverse-info-text {
  padding: 16px 0;
  width: 100%;
  background-color: #afe3f1;
  margin-top: 60px;
  text-align: center;
  color: #0c0d14;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #metaverse-section .metaverse-info-text {
    margin-top: 40px;
    padding: 0 20px;
    font-size: 0.875rem;
  }
}
#metaverse-section .metaverse-info-text a {
  color: #36869c;
  text-decoration: underline;
}
#metaverse-section .metaverse-info-text a:hover {
  color: #359fbb;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 228px;
  border-radius: 10px;
  color: #fff;
  background-color: #20b2aa;
  font-size: 0.875rem;
  text-align: center;
  padding: 12px;
  transition: 0.25s;
}
.button:hover {
  color: #20b2aa;
  background-color: #154669;
}
.button:hover::after {
  border: dotted 1px #20b2aa;
}
.button::after {
  content: "";
  position: absolute;
  width: 96%;
  height: 82%;
  border-radius: 8px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: dotted 1px #fff;
}

.button--icon-arrowRight {
  background-image: url(https://www.his-j.com/cmn/icon/icon_arrow_right_white.svg);
  background-position: right 8px center;
}
.button--icon-arrowRight:hover {
  background-image: url(https://www.his-j.com/cmn/icon/icon_arrow_right.svg);
  background-position: right 4px center;
}

.button[class*="--icon-"] {
  padding-left: 28px;
  padding-right: 28px;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

.button-wrap a {
  margin: 0 auto;
  display: block;
}

#contact {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  #contact .contents__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  #contact .contents__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #contact .contents__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.contact-section {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-section:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .contact-section:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .contact-section .contact-text-content {
    width: 75%;
  }
}
@media screen and (max-width: 1024px) {
  .contact-section .contact-text-content {
    width: 100%;
  }
}
.contact-section .contact-image-content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-image-content {
    width: 20%;
  }
}
@media screen and (max-width: 1024px) {
  .contact-section .contact-image-content {
    width: 100%;
  }
}
.contact-section .contact-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.contact-section .section-title {
  font-size: 2rem;
  color: #0c0d14;
  margin-bottom: 4px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-section .section-title {
    font-size: 1.75rem;
    text-align: center;
  }
}
.contact-section .section-subtitle {
  font-size: 1rem;
  color: #0c0d14;
  margin-bottom: 8px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-section .section-subtitle {
    font-size: 0.875rem;
    text-align: center;
  }
}

.contact-me {
  flex-direction: row;
}
@media screen and (max-width: 1024px) {
  .contact-me {
    flex-direction: column;
  }
}
.contact-me .contact-info {
  font-style: normal;
  font-size: 1rem;
  color: #0c0d14;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-me .contact-info {
    font-size: 0.875rem;
    text-align: left;
  }
}
.contact-me .contact-info a {
  color: #36869c;
  text-decoration: underline;
}
.contact-me .contact-info a:hover {
  color: #296576;
}

.official-sns {
  flex-direction: row;
}
@media screen and (max-width: 1024px) {
  .official-sns {
    flex-direction: column-reverse;
  }
}
.official-sns .sns-description {
  font-size: 1rem;
  color: #0c0d14;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .official-sns .sns-description {
    font-size: 0.875rem;
    text-align: left;
  }
}

.footer {
  padding: 60px 0 24px;
  background-color: rgb(240, 240, 240);
}
.footer__list {
  margin: 0 auto 24px;
  width: min(100% - 32px, 600px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__list li {
  position: relative;
  padding: 0 10px;
}
.footer__list li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background-color: lightgrey;
}
@media screen and (max-width: 767px) {
  .footer__list li:not(:first-child)::before {
    background-color: #fff;
  }
}
.footer__list a {
  font-size: 14px;
  color: #0c0d14;
  white-space: nowrap;
}
.footer .copyright {
  font-size: 12px;
  color: grey;
  text-align: center;
}

iframe[src*="youtube.com"] {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.js-fadein-trigger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.is-fadein {
  opacity: 1;
  transform: translateY(0);
}
