@charset "UTF-8";

:root {
  --primary-white: #FCFCFC;
  --primary-black: #000;
  --secondary-black: #000;
  --tertialy-black: #595959;
  --primary-green: #1EA32C;
  --font-ja: "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  --font-en: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 62.5%;
}

body {
  font-family: var(--font-ja);
  font-style: normal;
  color: var(--primary-black);
  background-color: var(--primary-white);
  line-height: 2;
}

img {
  max-width: 100%;
  height: auto;
}

.topic {
  font-family: var(--font-en);
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 1.6px;
  font-weight: 400;
}

.adotwalk {
  letter-spacing: 0.65px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* フェードイン用のクラス */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, filter 0.5s ease-out;
  filter: blur(3px);
}

/* フェードイン時の状態 */
.fadeIn {
  opacity: 1;
  transform: translateY(0px);
  filter: blur(0);
}


/* カーソル設定 */
html,
body {
  cursor:auto;
}

/* 鉤括弧の調整 */
.fix {
	display: inline-block;
	transform: translateX(-0.5em); /* 左にずらす */
  }


/* pc：common */
@media screen and (min-width:769px) {
  body {
    line-height: 2.5;
  }
  
  .topic {
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 2.88px;
  }

/* カーソルの基本設定 */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999999999;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.3s, height 0.3s, transform 0.2s linear;
  backface-visibility: hidden;
  will-change: transform, width, height;
}

/* ホバー時のカーソル */
.cursor.cursor--hover {
  width: 100px;
  height: 100px;
  background-color: transparent;
  box-shadow: 0 0 0 1px #aeaeae; /* ← borderの代わりに */
  border: none;
}
}
/* pc：769px */

/* ============================================ 
	icon
/* ============================================ */
.logo {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  color: var(--primary-black);
  vertical-align: middle;
  
}

.logo__pc {
  display: none;
}


.icon_shop{
  color: var(--primary-black);
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.icon_menu{
  stroke: var(--primary-black);
  width: 25px;
  height: 25px;
}

.icon_menu_close{
  width: 25px;
  height: 25px;
  stroke: var(--primary-black);
}


@media screen and (min-width:769px) {
  .icon_menu{
    display: none;
  }

  .logo {
    color: var(--primary-black);
    width: 45px;
    height: 45px;
  }
}
/* ============================================ 
	hamburger
/* ============================================ */
/* nav初期表示 */
.header__menu--hamburger {
  background-color: var(--primary-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.header__menu--close {
  .icon_shop {
    color: var(--primary-black);
  }

  .logo {
    color: var(--primary-black);
  }
}

.nav__list {
  margin-top: 154px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.8px;
}

/* nav. activa時 */
.header__menu--hamburger.active {
  transform: translateX(0);
  }


/* ============================================ 
	top
/* ============================================ */
.header-container__pc {
  display: none;
}

.header-content {
  width: 100%;
}

.header__menu--open,
.header__menu--close {
  position: fixed;
  padding: 15px 6.4%;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999999;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-white);
}

.nav__item {
  font-family: var(--font-en);
}


/* pc：top */
@media screen and (min-width:769px) {
  .header-container__sp {
    display: none;
  }
  
  .header-container__pc {
    display: flex;
  }

  .nav {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 41px 1.6%;
    width: 100%;
    background-color: var(--primary-white);
    z-index: 99999;
  }
 
  .nav__list--pc {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;

    .nav__item {
      display: block;
      color: var(--primary-black);
      font-size: 1.6rem;
      line-height: 1;
      letter-spacing: 0.8px;
      transition: transform 0.5s ease;
      
      a {
        color: var(--primary-black);
        font-family: var(--font-en);

      }

      &:hover {
        transform: scale(1.2);
      }    
    
    }
  }

}
/* pc：769px */

/* ============================================ 
	contact
/* ============================================ */
.contact-wrapper {
  width:100%;
  height:auto;
  padding: 80px 21% 0;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;

  h2{
    font-family: var(--font-en);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.84px;
  }
}


/* pc contact */
@media screen and (min-width:769px) {
  .contact-wrapper {
    width:100%;
    height:auto;
    padding: 130px 0 130px;
  }

  .contact-container {
    gap: 60px;
  }
  
  .btn__contact{
    padding: 20px 50px;
  }
}
/* pc：769px */
/* ============================================ 
	banner
/* ============================================ */
.btn {
  font-family: var(--font-en);
  font-size: clamp(1.3rem, 1.5vw, 1.6rem); 
  letter-spacing: 0.6px;
  font-weight: 300;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding:20px 40px;
  border: 1px solid #aeaeae;
  border-radius: 50px;
  width: 100%;
  max-width: 200px;
}


.btn:hover {
  background-color: #000;
  color: #fff;
  transition: all 0.3s ease;
}

.banner-wrapper{
  position: relative;
  background-image: url(../img/banner_crowdfunding.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 70%;
  margin-top: 100px;

}


.crowdfunding-content {
  width: 100%;
  height: auto;
  padding: 7em 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
  }

  h2{
    margin-top: 20px;
    font-family: var(--font-jp);
    font-size: clamp(2rem, 2.5vw, 2.2rem);
    color: var(--primary-white);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    z-index: 2;
  }
  
  p {
    margin-top: 50px;
    color: var(--primary-white);
    font-size: clamp(1.6rem, 2.5vw, 1.8rem);
    line-height: 2.3;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  h2, p{
    letter-spacing: 1.5px;
  }

  img {
    z-index: 2;
    max-width: 200px;
    width: 100%;
  }
}

.btn__shop {
  margin-top: 50px;
  background-color: #fff;
  border: #000 1px solid;
  z-index: 3;
}



.brPc {
	display: none;
}

/* pc：769px */
@media screen and (min-width:769px) {
  .story-wrapper{
    margin-top: 100px;
  }



	.brSp {
		display: none;
	}

	.brPc {
		display: block;
	}

.crowdfunding-content {
  align-items: center;
  width: 60%;

  h2, p{
    color: var(--primary-black);
    text-align: center;
  }

  &::before {
    content: none;
  }
 }
}


/* pc：769px */
/* pc：769px */
/* ============================================ 
	footer
/* ============================================ */
.footer-wrapper {
  width:100%;
  height:auto;
  margin-top: 80px;
  padding: 120px 16% 80px;
  background: linear-gradient(180deg, #FCFCFC 0%, rgba(221, 221, 221, 0.70) 31.25%, #FCFCFC 52.4%, #DDD 95.67%);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.footer__list--menu,
.footer__list--support {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  line-height: 1;
}

.footer__list--menu h2, 
.footer__list--support h2 {
  font-family: var(--font-en);
  color: var(--primary-black);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 26.5px; /* 132.5% */
} 

.footer__list--menu a {
  font-family: var(--font-en);
  color: var(--primary-black);
  font-size: 1.4rem;
  font-weight: 350;
  letter-spacing: 0.7px;
}

.footer__list--support a {
  font-family: var(--font-ja);
  color: var(--primary-black);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.13px;
}

.support__item {
  font-family: var(--font-en);
}

.copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  margin-top: 5px;

  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6; 
  letter-spacing: 0.66px;
}

.copy svg {
  width: 30px;
  height: auto;
}
/* footer：top */
@media screen and (min-width:769px) {
  .footer-wrapper {
    padding: 100px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo__pc {
    display: block;
  }
  
  .footer-container {
    flex-direction: row;
    justify-content: flex-end;
    gap: 150px;
  }
  
  .footer__list--menu,
  .footer__list--support {
    gap: 22px;
  }
  
  .footer__list--menu h2, 
  .footer__list--support h2 {
    letter-spacing: 1.2px;


  } 
  
  .footer__list--menu a,
  .footer__list--support a {
    font-weight: 300;
  }

  .logo__sp {
    display: none;
  }

  .logo__pc {
    color: var(--primary-black);
    width: 40px;
    height: 40px;
  }

  .copy {
    justify-content: flex-end;
    padding: 0 2%;
    margin-top: 20px;
    font-size: 1.3rem;
    letter-spacing: 0.78px;
  }
}
