@charset "utf-8";

/* =======================
common
======================== */

:root {
  --primary--white: #ffffff;
  --primary--black: #151515;
  --primary--blue: #55BCE1;
  --primary--pink: #E15585;
  --primary--violet: #B555E1;
  --primary--darkviolet: #8C428E;
  --primary--red: #E15555;
  --primary--green: #428E43;
  --primary--wihteborder: rgba(255, 255, 255, 0.4);
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  box-sizing: border-box;
  color: var(--primary--white);
  background-image:
    linear-gradient(to bottom, rgba(120, 120, 120, 0.3) 20%, rgba(21, 21, 21, 0.3) 100%),
    url(../images/SVG/bgi.svg);
  background-repeat: repeat repeat;
  background-attachment: fixed;
  background-position: left top;
  animation: loading 1s;
}

@keyframes loading {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.zenMaru__bold--400 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.zenMaru__bold--700 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zenMaru__black--900 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.baloo-chettan-2 {
  font-family: "Baloo Chettan 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}


/* ======
ページコンテンツ
  ======= */
.page__contents {
  padding: 102px 5.3% 0;
  width: 100%;
  margin-inline: auto;
}

/* ======
ページタイトル
  ======= */
.page__title--area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page__title {
  color: var(--primary--black);
  -webkit-text-stroke: 5px var(--primary--white);
  paint-order: stroke fill;
  font-family: "Baloo Chettan 2";
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  font-size: clamp(2.5rem, 1.84rem + 2.82vw, 4.375rem);
}

.page__title span {
  font-size: clamp(8rem, 6.415rem + 6.76vw, 12.5rem);
}

.page__subtitle {
  color: var(--primary--black);
  -webkit-text-stroke: 5px var(--primary--white);
  paint-order: stroke fill;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .page__contents {
  max-width: 1500px;
  padding: 102px 6.9% 0;
  }
}

/* ======
ページトップ　ロゴサイズ
  ======= */
.header__logo {
  display: flex;
  flex-direction: column;
  position: absolute;  
  top: 2%;
  left: 5.3%;
  z-index: 100;
  width: 36%;
  max-width: 360px;
  padding: 10% 0;
  background-image: url(../images/SVG/logo_ink.svg);
  background-repeat: no-repeat;
  background-position: center top 70%;
  background-size: contain;
}

.header__logo h1,p {
  font-size: clamp(0.5rem, 0.324rem + 0.75vw, 1rem);
  font-weight: 700;
}

.logo__img--mainVsisual {
  display: block;
  width: 100%;
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(21, 21, 21,0.6);
  opacity: 1;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  z-index: 500;
}

.modal-content {
  display: block;
  width: auto;
  padding: 0 5.6%;
  max-height: 80vh;
  object-fit: contain;
}

#close {
  position: absolute;
  top: 15px;
  right: 40px;
  color: var(--primary--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.popup {
  pointer-events: auto;
}

.mask {
  pointer-events: none;
}

.caption {
  max-width: 700px;
  color: var(--primary--white);
  font-size: clamp(1rem, 0.736rem + 1.13vw, 1.75rem);
  text-align: center;
}


/* ======
フッター SNS
  ======= */
.footer__sns {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
  align-items: center;
  margin-top: 60px;
}

.footer__sns--top,
.footer__sns--bottom {
  color: var(--primary--black);
  text-align: center;
  font-size: clamp(1rem, 0.648rem + 1.5vw, 2rem);
}

.footer__sns--icon {
  width: 100%;
  display: flex;
  gap: 0 13.3%;
  justify-content: center;
  
}

.footer__sns--icon a {
  width: 33.3%;
  max-width: 140px;
}
.footer__sns--icon img {
  width: 100%;
}

.footer__sns--images {
  width: 100%;
  max-width: 720px;
  display: flex;
  justify-content: space-between;
}

.footer__sns--images img {
  max-width: 160px;
}

.footer__sns--images img:first-of-type {
  object-fit: contain;
  width: 22.9%;
}

.profile__footer {
  margin-top: 0;
}

.fadeUP {
  opacity: 0;
  transform: translateY(30px);
}

.fadeUP.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer__sns--icon img {
  width: 100%;
  transition: 0.3s;
}

.footer__sns--icon img:hover {
  scale: 1.1
}


/* ======
フッター ナビ
  ======= */
.footer {
  background-color: #151515;
  text-align: center;
  margin-top: 30px;
}

.footer__nav ul li:nth-of-type(1) .nav__link,
.footer__nav ul li:nth-of-type(2) .nav__link {
  border-bottom: none;
}

.nav__link {
  display: block;
  padding: 30px 0;
  border: 1px solid #fff;
  font-size: clamp(1rem, 0.824rem + 0.75vw, 1.5rem);
  font-weight: 900;
  line-height: 1;
}

.nav__link:hover {
  background-color: rgb(35, 35, 35);
}

.font__logo {
  width: 20%;
  max-width: 206px;
}

.copyright__area {
  display: flex;
  flex-direction: column;
  border: 1px solid #fff;
  border-top: none;
  align-items: center;
  padding: 30px 0;
  gap: 20px 0;
}

.copy {
  font-size:  clamp(0.938rem, 0.717rem + 0.94vw, 1.563rem);
  font-family: "Baloo Chettan 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

@media screen and (min-width:769px) {
  .footer {
    position: relative;
  }
  
  .footer__nav ul {
    display: inline-flex;
    justify-content: center;
    gap: 0 40px;
    padding: 0 25px;
    margin-top: 60px;
  }

  .nav__link {
    border: none;
    padding: 0;
  } 
  
  .nav__link::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background-color: var(--primary--white);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
  }

  .nav__link:hover {
    background-color: transparent;
  }

  .nav__link:hover::after {
    transform: scale(1, 1);
  }

  .font__logo {
    position: absolute;
    top: 50%;
    left: 6.25%;
    transform: translateY(-50%);   
  }

  .copyright__area {
    display: block;
    border: none;
    padding: 60px 0;
  }

  .footer__nav ul li {
    position: relative;
  }

}

svg {
  width: 300px;
  height: auto;
}



