.fontNoto {
  font-family: "Noto Sans JP", sans-serif;
}

.fontRoboto {
  font-family: "Roboto Condensed", sans-serif;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fdfcf3;
}

body * {
  letter-spacing: 0.05em;
  line-height: 140%;
}

.bodyIn {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

.commonWidth {
  margin: 0 auto;
}

.inWidth {
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .commonWidth {
    width: min(92vw, 358px);
  }
  .inWidth {
    width: 92.3vw;
  }
}
@media print, screen and (min-width: 768px) {
  .commonWidth {
    width: min(92vw, 358px);
  }
  .commonWidthPc {
    width: min(92vw, 358px);
    margin: 0 auto;
  }
  .inWidth {
    width: min(90vw, 1000px);
  }
  .inWidthPc {
    width: min(90vw, 1000px);
    margin: 0 auto;
  }
}
.secHeader {
  width: min(100%, 390px);
  position: fixed;
  top: 0;
  z-index: 100;
}
.secHeader .secHeaderIn {
  margin: 10px;
  padding: 8px 8px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  transition: background-color 0.5s;
  background: #ffffff;
}
.secHeader .secHeaderIn .logo {
  width: 66px;
}
.secHeader .secHeaderIn .menu {
  width: 44px;
  height: 44px;
}
.secHeader .secHeaderIn .menu .menuButton {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #694343;
  position: relative;
}
.secHeader .secHeaderIn .menu .menuButton span {
  display: inline-block;
  transition: transform 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: calc((100% - 18px) / 2);
  width: 18px;
  height: 1px;
  background-color: #ffffff;
}
.secHeader .secHeaderIn .menu .menuButton span:nth-of-type(1) {
  top: 34%;
}
.secHeader .secHeaderIn .menu .menuButton span:nth-of-type(2) {
  top: calc(50% - 1px);
}
.secHeader .secHeaderIn .menu .menuButton span:nth-of-type(3) {
  top: 64%;
}
.secHeader .secHeaderIn .headerLinkArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: height 0.5s, opacity 0.5s;
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.secHeader .secHeaderIn .headerLinkArea .linkList {
  font-size: clamp(14px, 5.13vw, 20px);
  padding: min(2.4vh, 15px) 0;
  border-bottom: solid 1px #ffffff;
  color: #ffffff;
  font-weight: 500;
  background: url(../images/header_menu_icon.svg) right center no-repeat;
}

@media only screen and (max-width: 767px) {
  .secHeader {
    left: calc((100% - min(100%, 390px)) / 2);
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1399px) {
  .secHeader {
    left: calc((100% - 740px) / 2 + 350px);
  }
}
@media print, screen and (min-width: 1400px) {
  .secHeader {
    left: calc((100% - min(100%, 390px)) / 2);
  }
}
body.navOn .secHeader .secHeaderIn {
  background: #694343;
  height: calc(100vh - 20px);
}
body.navOn .secHeader .secHeaderIn .logo {
  opacity: 0;
  pointer-events: none;
}
body.navOn .secHeader .secHeaderIn .menu .menuButton span:nth-of-type(1) {
  transform: translateY(6.5px) rotate(-45deg);
}
body.navOn .secHeader .secHeaderIn .menu .menuButton span:nth-of-type(2) {
  opacity: 0;
}
body.navOn .secHeader .secHeaderIn .menu .menuButton span:nth-of-type(3) {
  transform: translateY(-6.5px) rotate(45deg);
}
body.navOn .secHeader .secHeaderIn .headerLinkArea {
  height: inherit;
  opacity: 1;
  pointer-events: inherit;
  padding: min(4vh, 40px) 12px min(9vh, 60px);
}

.secFollow {
  width: min(100%, 390px);
  position: fixed;
  left: calc((100% - min(100%, 390px)) / 2);
  bottom: 8px;
  z-index: 100;
}
.secFollow .secFollowIn {
  padding: 0 3%;
  text-align: center;
}

.secFooter {
  padding: 18px 0 140px 0;
  background: #532929;
}
.secFooter .copyright {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.wrapMenuArea {
  position: fixed;
  top: 80px;
  height: 100vh;
}
.wrapMenuArea .menuTitle {
  text-align: center;
  height: 40px;
}
.wrapMenuArea .menuAreaIn {
  height: calc(100vh - 140px);
  overflow-y: auto;
}
.wrapMenuArea .menuAreaIn .linkListWrap .linkList {
  font-size: 20px;
  padding: 28px 0;
  display: block;
  background: url(../images/side_menu_icon.svg) right center no-repeat;
  border-bottom: solid 1px #532929;
  color: #532929;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .wrapMenuArea {
    display: none;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1399px) {
  .wrapMenuArea {
    width: 330px;
    left: calc((100% - 740px) / 2);
  }
}
@media print, screen and (min-width: 1400px) {
  .wrapMenuArea {
    width: 350px;
    left: calc((100% - min(100%, 390px)) / 2 - 430px);
  }
}
.wrapMainArea {
  width: min(100%, 390px);
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .wrapMainArea {
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1399px) {
  .wrapMainArea {
    margin-left: calc((100% - 740px) / 2 + 350px);
  }
}
@media print, screen and (min-width: 1400px) {
  .wrapMainArea {
    margin: 0 auto;
  }
}
.wrapCvArea {
  position: fixed;
  left: calc((100% - min(100%, 390px)) / 2 + 420px);
  width: 465px;
  height: calc(100% - 130px);
  top: 80px;
  background: url(../images/side_bg.png) center 20% no-repeat;
  background-size: 335px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.wrapCvArea .cvBnr {
  height: 223px;
}

@media only screen and (max-width: 1399px) {
  .wrapCvArea {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */