@charset "UTF-8";

/* ==================================
common
===================================*/
:root {
  --primary-darkgray: #232321;
  --primary-darkgrayR: rgba(46, 35, 0, 0.63);
  --primary-lightgray: #E9E6E6;
  --primary-lightgrayR: rgba(205, 205, 192, 0.86);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif", serif;
  font-style: normal;
  color: var(--primary-darkgray);
  line-height: 1.5;
  font-weight: 400;
  display: flex;
  background-color: var(--primary-darkgray);
}

img {
  max-width: 100%;
  height: auto;
}

.section__title {
  font-family: Nothing You Could Do;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 400;
}



/* pc  */
@media screen and (min-width:769px) {
  .section__title {
    margin-bottom: 16px;
  }
}

/* ==================================
pc__view
===================================*/

/* sp  */

.pc__view {
  margin: 0 auto;
}

.pc__menubox {
  display: none;
}

.pc__mainimg {
  display: none;
}


/* 幅769pxを超えたら */
@media screen and (min-width:769px) {
  .pc__view {
    display: flex;
    margin: 0 auto;
  }

  .pc__menubox {
    display: block;
    max-width: 140px;
    height: fit-content;
    padding: 20px 22px 41px;
    text-align: center;
    position: sticky;
    top: 0;
    left: 0;
  }

  .menu__btn {
    width: 78px;
    height: 78px;
    cursor: pointer;
  }

  .menu__logo {
    width: 96px;
    height: auto;
    padding-right: 12px;
    position: fixed;
    bottom: 2%;
    
  }
}


/* 幅 1100pxを超えたら*/
@media screen and (min-width:1100px) {
  .pc__view {
    display: flex;
    margin: 0 auto;
  }


  .pc__mainimg {
    display: block;
    position: sticky;
    max-width: 630px;
    height: fit-content;
    top: 0;
  }
}



/* ==================================
container
===================================*/
.container {
  background-color: #E9E6E6;
  width: 375px;
  height: auto;
  margin: 0 auto;
}

@media screen and (min-width:769px) {
  .container {
    width: 530px;
    height: auto;
    margin-top: -88px;
    margin: -88PX auto 0;
  }
}


/* ==================================
header 
==================================*/

.header__box {
  background-color: var(--primary-darkgray);
  width: 375px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
}

.header__logo {
  width: 96px;
  height: auto;
  color: #E9E6E6;
  margin-right: 40%;
}

.header__btn {
  width: 40px;
  height: 40px;
  cursor: pointer;
}




/* pc */
@media screen and (min-width:769px) {
  .header__box {
    display: none;
  }

  .header__btn {
    display: none;
  }

  .header__title {
    text-align: center;
    font-size: 1.8rem;
    width: 29px;
    height: 310px;
    right: 250px;
  }
}


/* navの初期表示 */
.nav {
  background-color: var(--primary-darkgray);
  opacity: 0.85;
  width: 100%;
  height: 100vh;
  padding-top: 20px ;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s;
  cursor: pointer;
}

.nav__header {
  display: flex;
  align-items: center;
}

.nav__title {
  margin-top: 40px;
  margin-left: 20%;
  margin-right: 30%;
  color: #FFF;
  text-align: left;
  /* font-family: "Nothing You Could Do"; */
  font-size: 2.5rem;
}

.nav__btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  padding-top: 20px;
}

.nav__list {
  margin-top: 40px;
}

.nav__item {
  color: #FFF;
  font-size: 1.6rem;
  letter-spacing: 1.36px;
  padding-bottom: 40px;
  padding-left: 20%;
  text-align: left;
}

.nav__item:nth-of-type(3) {
  padding-bottom: 10px;
}

.about__item {
  color: #FFF;
  font-size: 1.4rem;
  margin-left: 36%;
  margin-bottom: 24px;
}

.about__item::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #FFF;
}



@media screen and (min-width:769px) {
  .nav {
    width: 52%;
    padding: 22px 10% 60px;
  }

  .nav__btn {
    width: 120%;
    height: auto;
  }
}


/* .nav.active表示 */
.nav.active {
  transform: translateX(0);
}


/*==================================
footer
==================================*/
.footer {
  background-color: var(--primary-darkgray);
  opacity: 0.75;
  padding: 50px 14% 20px;
}

.footer__img {
  width: 164px;
  height: 107px;
  margin: 0 auto;
}

.footer__nav--list {
  color: #FFF;
  text-align: center;
  margin-top: 30PX;
}

.footer__nav--item {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1.36px;
  padding-top: 20px;
}

.footer__box {
  color: #FFF;
  padding-left: 14px;
}

.footer__box {
  text-align: left;
}

.footer__address {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-top: 40px;
  letter-spacing: 1.36px;
}

.footer__txt {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-top: 12px;
  letter-spacing: 1.36px;
}

.footer__subtxt {
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin-top: 16px;
}


.icon {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.icon__item {
  display: inline-block;
  width: 30px;
  height: 30px;
  color: #FFF;
}

.icon__item:first-of-type {
  margin-right: 28px;
}

.copy {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}

/* scrollTop */
  .top_btn {
    display: inline-block;
    padding: 14px;
    border-radius: 50%;
    background-color: var(--primary-lightgray);
    color: var(--primary-darkgray);
    font-size: 1.2rem;
    box-shadow: 1px 1px 1.5px 1px rgba(138, 134, 123, 0.63);

    position: fixed;
    bottom: 4%;
    right: 4%;

  }

@media screen and (min-width:769px) {
  .footer__nav--list {
    display: flex;
    justify-content: center;
  }

  .footer__nav--item {
    padding-left: 40px;
  }

  .footer__nav--item:first-child {
    padding-left: 0;
  }

  .footer__box {
    text-align: center;
  }

  .footer__address .spBr {
    display: none;
  }

  .footer__address span {
    padding-left: 1em;
  }
  .footer__txt {
    text-align: left;
    padding-left: 100px;
  }

}