@charset "UTF-8";
/* CSS Document */

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  color: #505050; /* RGB */
  font-family: "EB Garamond","Shippori Mincho",sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  background-color: #F3F1EC;
}
.section__topic {
  text-align: center;
  font-family: "EB Garamond";
  font-size: 3.2rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.1em;  
  }
a:hover {
  opacity: 0.5;
  /* color: #afe1dc; */
}
.none {
  display: none;
}
img{
  max-width: 100%;
  height: auto;
}
#nav-input {
  display: none;
}

.nav {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #AFE1DC;
  text-align: right;
  padding: 15px 0 0 24px;
  transform: translateX(-105%);
  transition: 0.3s ease-in-out;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
}
.nav.open {
  transform: translateX(0%);
}

.nav__top {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  padding: 16px 4.16%;
}

/* .nav__topic{} */
.nav_btn {
  width: 50px;
}

.nav__item {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2;
  text-shadow: #A0CFCB 0 4px px;

}

.nav__item_p {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2;
}

#nav-input:checked {
  display: block;
}

#nav-input:checked~.nav {
  transform: translateX(0%);
}

#nav-input {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 3%;
  z-index: 10000;
}

.nav__topic {
  position: absolute;
  top: 45px;
  left: 62px;
}

.nav_btn {
  position: absolute;
  top: 60px;
  right: 4.16%;
}

.nav__topic img {
  width: 493px;
  height: 261px;
}

.nav__list {
  color: #fff;
  position: absolute;
  bottom: 45px;
  right: 62px;
}

.sp_logo {
  display: none;
}

/* navの切り替え指示 */
@media (max-width: 768px) {
  .nav__item {
    font-size: 1.8rem;
  }

  .nav__topic img {
    width: 150px;
    height: auto;
}

  .sp_logo {
    display: block;
  }

  .pc_logo {
    display: none;
  }

  .nav__list {
    color: #fff;
    text-align: center;
    bottom: 110px;
    right: 50%;
    transform: translateX(50%);
  }

}

/* ここまで */
header {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4.16%;
  position: relative;
  z-index: 9999;
  width: 100%;
}
.header__topic a{
  display: block;
  width: 127px;
}

.header__btn {
  width: 50px;
}

/* ここからfooter */
.pagetop {
  position: fixed;
  right: 4.16%;
  bottom: 20px;
}

.footer {
  text-align: center;
}

.small {
  display: block;
  margin: 24px auto;
  font-size: 1.0rem;
}
/* ここまでfooter */


@media (max-width: 768px) {
.section__topic {
  font-size: 2.0rem;
}
}