/* base
--------------------------------------------------------------*/
html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}
@media screen and (max-width: 640px) {
  html {
    font-size: 40%;
  }
}

body {
  width: 100%;
  height: 100%;
  font-family: "Sawarabi Mincho", sans-serif;
  color: #3E3A39;
}

img, svg, video, audio {
  max-width: 100%;
}

b {
  font-weight: bold;
}

main, section {
  display: block;
}

a:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease-out;
}

p {
  font-size: 2rem;
  line-height: 3.2rem;
  letter-spacing: 0.05rem;
  color: #595757;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* header
--------------------------------------------------------------*/
.header {
  /*position: relative;*/
  position: fixed;
  width: 100%;
  border-bottom: 7px solid #E9D4E7;
  box-shadow: #333;
  background-color: #fff;
  max-height: 182px;
  z-index: 101;
}
@media screen and (max-width: 640px) {
  .header {
    position: relative;
    max-height: 100%;
  }
}
.header__inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1080px;
  width: 100%;
  padding: 3rem 0;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .header__inner {
    flex-direction: column;
    padding: 0 0 3rem;
  }
}
.header__home {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 640px) {
  .header__home {
    position: relative;
    width: 100%;
    text-align: right;
    margin-bottom: 3rem;
  }
}

.nav__list {
  display: flex;
  justify-content: flex-start;
  font-size: 2.3rem;
}
@media screen and (max-width: 640px) {
  .nav__list {
    margin-top: 3rem;
  }
}
.nav__list li {
  padding: 1rem 5rem;
  border-right: 2px dashed #E9D4E7;
}

/* footer
--------------------------------------------------------------*/
.footer {
  background-color: #E9D4E7;
  padding: 2rem 0 1rem;
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 50rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .footer__nav {
    width: 100%;
    justify-content: space-around;
  }
}
.footer__nav a {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
}
.footer__nav a:before {
  content: ">";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #E9D4E7;
  padding: 0.5rem;
  border-radius: 100%;
  background-color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5rem;
}
.footer__copy {
  text-align: center;
  font-size: 1.2rem;
}

/* common
--------------------------------------------------------------*/
.main {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 0;
  padding-top: 182px;
}
@media screen and (max-width: 825px) and (min-width: 640px) {
  .main {
    padding-top: 21.852vw;
  }
}
@media screen and (max-width: 640px) {
  .main {
    width: 98%;
    padding-top: 0;
  }
}

.headline01 {
  text-align: center;
}
.headline01 > * {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 4.5rem;
  padding: 0 2rem;
  font-weight: bold;
  z-index: 1;
}
.headline01 > *:after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2rem;
  background-color: #E9D4E7;
  z-index: -1;
}/*# sourceMappingURL=common.css.map */