@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap");

/*========================================
*	common
========================================*/
::-moz-selection {
  color: #b29265;
  background: #1a2725;
}

::selection {
  color: #b29265;
  background: #1a2725;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

*:focus {
  outline: 0;
}

html,
body {
  font-size: 62.5%;
  height: 100%;
  color: #ffffff;
  background-color: #1b1513;
  font-family: "Noto Serif JP", serif;
}

body {
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3 {
  line-height: 1;
}

ul,
li {
  list-style: none;
}

tr,
th,
td {
  font-weight: normal;
  text-align: left;
}

img,
picture {
  -webkit-backface-visibility: hidden;
  width: 100%;
  max-width: 100%;
  pointer-events: none;
  vertical-align: bottom;
}

.common-wrapper {
  padding-top: 13.02083vw;
  background-color: #1b1513;
}

@media only screen and (min-width: 769px) {
  .common-wrapper {
    padding-top: 7.47664vw;
  }
}

@media only screen and (min-width: 1070px) {
  .common-wrapper {
    padding-top: 80px;
  }
}

.header {
  position: fixed;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 5.20833vw;
  width: 100%;
  height: 13.02083vw;
  background-color: #1b1513;
  z-index: 100;
}

@media only screen and (min-width: 769px) {
  .header {
    height: 7.47664vw;
    padding: 0 3.73832vw;
  }
}

@media only screen and (min-width: 1070px) {
  .header {
    height: 80px;
    padding: 0 40px;
  }
}

.header-logo {
  display: block;
  width: 27.99479vw;
  z-index: 10;
}

@media only screen and (min-width: 769px) {
  .header-logo {
    width: 14.39252vw;
  }
}

@media only screen and (min-width: 1070px) {
  .header-logo {
    width: 154px;
  }
}

.header-logo__link {
  display: block;
}

.header-btn {
  width: 6.51042vw;
  height: 3.51562vw;
  position: relative;
  z-index: 10;
}

.header-btn>span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: #b29265;
  position: absolute;
}

.header-btn>span:nth-child(1) {
  top: 0;
}

.header-btn>span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-btn>span:nth-child(3) {
  bottom: 0;
}

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

.header-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #1b1513;
  top: 0;
  left: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (min-width: 769px) {
  .header-nav {
    position: relative;
    display: block;
    width: auto;
    height: auto;
  }
}

.header-nav__list {
  text-align: center;
  line-height: 1;
}

@media only screen and (min-width: 769px) {
  .header-nav__list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.header-nav__item:not(:first-child) {
  margin-top: 11.71875vw;
}

@media only screen and (min-width: 769px) {
  .header-nav__item:not(:first-child) {
    margin-top: 0;
    margin-left: 1.86916vw;
  }
}

@media only screen and (min-width: 1070px) {
  .header-nav__item:not(:first-child) {
    margin-left: 20px;
  }
}

.header-nav__link {
  font-size: 4.16667vw;
  color: #b29265;
}

@media only screen and (min-width: 769px) {
  .header-nav__link {
    font-size: 1.49533vw;
  }
}

@media only screen and (min-width: 1070px) {
  .header-nav__link {
    font-size: 16px;
  }
}

.header {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: all 500ms;
}

.header.js-up {
  -webkit-transform: none;
  transform: none;
}

.header-nav {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  pointer-events: none;
  transition: 300ms;
}

.header-nav__link {
  position: relative;
  transition: 300ms;
}

.header-nav__link:after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -8px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center;
  transform-origin: center;
  transition: 300ms;
}

.header-nav__link.js-current {
  color: #ffffff;
}

.header-nav__link.js-current:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

@media only screen and (min-width: 769px) {
  .header-nav {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    pointer-events: auto;
    transition: 0;
  }

  .header-nav__link:hover {
    color: #ffffff;
  }

  .header-nav__link:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.header-btn span {
  transition: 300ms;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.header-btn span:nth-child(1) {
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.header-btn span:nth-child(3) {
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

.header.js-open .header-nav {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  pointer-events: auto;
}

.header.js-open .header-btn span:nth-child(1) {
  -webkit-transform: rotate(33deg);
  transform: rotate(33deg);
}

.header.js-open .header-btn span:nth-child(2) {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.header.js-open .header-btn span:nth-child(3) {
  -webkit-transform: rotate(-33deg);
  transform: rotate(-33deg);
}

.footer {
  width: 100%;
  background-color: #1b1513;
  padding: 13.02083vw 0;
}

@media only screen and (min-width: 769px) {
  .footer {
    padding: 80px 0;
  }
}

.footer-sns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  width: 41.66667vw;
}

@media only screen and (min-width: 769px) {
  .footer-sns {
    width: 320px;
  }
}

.footer-sns__link {
  display: block;
  width: 10.41667vw;
}

@media only screen and (min-width: 769px) {
  .footer-sns__link {
    width: 80px;
  }
}

.footer-logo {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 9.11458vw;
}

@media only screen and (min-width: 769px) {
  .footer-logo {
    margin-top: 40px;
  }
}

.footer-logo__scrap {
  width: 29.03646vw;
}

@media only screen and (min-width: 769px) {
  .footer-logo__scrap {
    width: 111px;
  }
}

.footer-logo__publish {
  width: 35.67708vw;
  margin-left: 5.85938vw;
}

@media only screen and (min-width: 769px) {
  .footer-logo__publish {
    width: 137px;
    margin-left: 35px;
  }
}

.footer-bnr {
  width: 89.58333vw;
  margin: 7.8125vw auto 0;
}

@media only screen and (min-width: 769px) {
  .footer-bnr {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 708px;
    margin-top: 40px;
  }
}

.footer-bnr__link {
  display: block;
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .footer-bnr__link {
    width: calc(344 / 708 *100%);
  }
}

.footer-bnr__link:not(:first-child) {
  margin-top: 3.90625vw;
}

@media only screen and (min-width: 769px) {
  .footer-bnr__link:not(:first-child) {
    margin-top: 0;
  }
}

.footer-copy {
  margin-top: 7.8125vw;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

@media only screen and (min-width: 769px) {
  .footer-copy {
    margin-top: 40px;
  }
}

.footer-copy__text {
  font-size: 2.60417vw;
  line-height: 1.6;
}

@media only screen and (min-width: 769px) {
  .footer-copy__text {
    font-size: 12px;
    line-height: 2;
  }
}

.footer-copy__text:not(:first-child) {
  margin-top: 1.95312vw;
}

@media only screen and (min-width: 769px) {
  .footer-copy__text:not(:first-child) {
    margin-top: 10px;
  }
}

.footer-copy__text>a {
  text-decoration: underline;
  text-underline-offset: 1.30208vw;
  color: #ffffff;
}

@media only screen and (min-width: 769px) {
  .footer-copy__text>a {
    text-underline-offset: 5px;
  }
}

.read {
  background-color: #1b1513;
  padding: 10.41667vw 0 10.41667vw;
}

@media only screen and (min-width: 769px) {
  .read {
    padding: 80px 0 80px;
  }
}

.read-text {
  margin: 0 auto;
  width: 90.36458vw;
  text-align: center;
}

@media only screen and (min-width: 769px) {
  .read-text {
    width: 689px;
  }
}

.trial-banner {
  margin: 40px auto 0;
  width: 90.36458vw;
  text-align: center;
}

.trial-banner img {
  pointer-events: auto;
}

@media only screen and (min-width: 769px) {
  .trial-banner {
    width: 520px;
  }
}


.ss {
  width: 100%;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.ss-list {
  width: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.ss-list__item {
  width: 221.875vw;
}

@media only screen and (min-width: 769px) {
  .ss-list__item {
    width: 1704px;
  }
}

@-webkit-keyframes loop_slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop_slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.ss-list__item {
  -webkit-animation: loop_slide 60000ms linear 0ms infinite;
  animation: loop_slide 60000ms linear 0ms infinite;
}

.how {
  width: 100%;
  background-color: #fff;
  padding: 13.02083vw 0 15.625vw;
  box-shadow: 0px 0px 2.60417vw 2.60417vw #e7dec3 inset;
}

@media only screen and (min-width: 769px) {
  .how {
    box-shadow: 0px 0px 30px 30px #e7dec3 inset;
  }
}

@media only screen and (min-width: 769px) {
  .how {
    padding: 80px 0;
  }
}

.how-h2 {
  margin: 0 auto;
  width: 46.74479vw;
  -webkit-transform: translateX(5.98958vw);
  transform: translateX(5.98958vw);
}

@media only screen and (min-width: 769px) {
  .how-h2 {
    width: 179px;
    -webkit-transform: translateX(22px);
    transform: translateX(22px);
  }
}

.how-list {
  margin: 7.8125vw auto 0;
  width: 89.58333vw;
}

@media only screen and (min-width: 769px) {
  .how-list {
    margin-top: 40px;
    padding: 0 20px;
    width: 100%;
    max-width: 1110px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.how-list__item {
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .how-list__item {
    width: calc(344 / 1070 * 100%);
  }
}

.how-list__item:not(:first-child) {
  margin-top: 2.60417vw;
}

@media only screen and (min-width: 769px) {
  .how-list__item:not(:first-child) {
    margin-top: 0;
  }
}

.how-icon {
  margin: 7.8125vw auto 0;
  width: 89.58333vw;
}

@media only screen and (min-width: 769px) {
  .how-icon {
    margin-top: 40px;
    width: 344px;
  }
}

.story {
  width: 100%;
  background-color: #e7dec3;
  padding: 13.02083vw 0;
}

@media only screen and (min-width: 769px) {
  .story {
    padding: 80px 0;
  }
}

.story-content {
  width: 89.58333vw;
  margin: 0 auto;
  position: relative;
}

@media only screen and (min-width: 769px) {
  .story-content {
    width: 688px;
  }
}

.story-content__inner {
  background-image: url(../img/story/bg_repeat.png);
  background-size: contain;
  background-repeat: repeat-y;
  padding: 0 10.41667vw;
}

@media only screen and (min-width: 769px) {
  .story-content__inner {
    padding: 0 80px;
  }
}

.story-content:before,
.story-content:after {
  display: block;
  content: "";
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

.story-content:before {
  background-image: url(../img/story/bg_top.png);
  height: 13.02083vw;
}

@media only screen and (min-width: 769px) {
  .story-content:before {
    height: 100px;
    margin-bottom: -20px;
  }
}

.story-content:after {
  background-image: url(../img/story/bg_bottom.png);
  height: 27.34375vw;
}

@media only screen and (min-width: 769px) {
  .story-content:after {
    height: 210px;
    margin-top: -70px;
  }
}

.story-h2 {
  width: 38.67188vw;
  margin: 0 auto;
}

@media only screen and (min-width: 769px) {
  .story-h2 {
    width: 148px;
  }
}

.story-text {
  margin-top: 7.16146vw;
  font-size: 4.16667vw;
  color: #1b1513;
  line-height: calc(58/32);
}

@media only screen and (min-width: 769px) {
  .story-text {
    margin-top: 35px;
    font-size: 18px;
    line-height: calc(32/18);
  }
}

.story-text>span {
  display: block;
}

.story-text>span:not(:first-child) {
  margin-top: 4.55729vw;
}

@media only screen and (min-width: 769px) {
  .story-text>span:not(:first-child) {
    margin-top: 20px;
  }
}

.cm {
  width: 100%;
  background-color: #fff;
  padding: 13.02083vw 0 15.625vw;
  box-shadow: 0px 0px 2.60417vw 2.60417vw #e7dec3 inset;
}

@media only screen and (min-width: 769px) {
  .cm {
    box-shadow: 0px 0px 30px 30px #e7dec3 inset;
  }
}

@media only screen and (min-width: 769px) {
  .cm {
    padding: 80px 0;
  }
}

.cm-top {
  position: relative;
  padding: 13.02083vw 0 8vw;
}

@media only screen and (min-width: 769px) {
  .cm-top {
    padding: 80px 0 0;
  }
}

.cm-h2 {
  margin: 0 auto;
  width: 39.19271vw;
  -webkit-transform: translateX(9.11458vw);
  transform: translateX(9.11458vw);
}

@media only screen and (min-width: 769px) {
  .cm-h2 {
    width: 151px;
    -webkit-transform: translateX(36px);
    transform: translateX(36px);
  }
}

.cm-thumb {
  display: block;
  margin: 11.06771vw auto;
  width: 89.58333vw;
  padding-bottom: 50.39vw;
  height: 0;
  position: relative;
}

.cm-thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 769px) {
  .cm-thumb {
    margin: 50px auto;
    width: 688px;
    height: 387px;
    padding-bottom: 0;
  }
}

.chara {
  width: 100%;
  background-color: #213533;
  overflow: hidden;
}

.chara-h2 {
  margin: 0 auto;
  width: 53.25521vw;
  -webkit-transform: translateX(4.6875vw);
  transform: translateX(4.6875vw);
}

@media only screen and (min-width: 769px) {
  .chara-h2 {
    width: 205px;
    -webkit-transform: translateX(18px);
    transform: translateX(18px);
  }
}

.chara-top {
  position: relative;
  padding: 13.02083vw 0 15.625vw;
}

@media only screen and (min-width: 769px) {
  .chara-top {
    padding: 80px 0 0;
  }
}

.chara-bottom {
  width: 100%;
  background-color: #1a2725;
  padding: 10.41667vw 0 13.02083vw;
}

@media only screen and (min-width: 769px) {
  .chara-bottom {
    padding: 60px 0 90px;
  }
}

.chara-list {
  width: 100%;
  height: 128.90625vw;
  position: relative;
}

@media only screen and (min-width: 769px) {
  .chara-list {
    height: 762px;
    margin: 0 auto;
  }
}

.chara-list__item {
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 769px) {
  .chara-list__item {
    width: 1280px;
    height: 762px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.chara-list__chara {
  position: absolute;
  width: 135vw;
  top: -17vw;
  left: -10vw;
}

@media only screen and (min-width: 769px) {
  .chara-list__chara {
    width: 740px;
    top: -38px;
    left: 225px;
  }
}

@-webkit-keyframes shine-run {
  0% {
    -webkit-transform: scale(0) rotate(50deg);
    transform: scale(0) rotate(50deg);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  40% {
    -webkit-transform: scale(1) rotate(50deg);
    transform: scale(1) rotate(50deg);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }

  100% {
    -webkit-transform: scale(250) rotate(50deg);
    transform: scale(250) rotate(50deg);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes shine-run {
  0% {
    -webkit-transform: scale(0) rotate(50deg);
    transform: scale(0) rotate(50deg);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  40% {
    -webkit-transform: scale(1) rotate(50deg);
    transform: scale(1) rotate(50deg);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }

  100% {
    -webkit-transform: scale(250) rotate(50deg);
    transform: scale(250) rotate(50deg);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.chara-voice {
  position: absolute;
  top: 11.71875vw;
  left: 5.20833vw;
  width: 10.41667vw;
  z-index: 10;
}

@media only screen and (min-width: 769px) {
  .chara-voice {
    width: 60px;
    top: 117px;
    left: 296px;
  }
}

.chara-voice__btn {
  display: block;
  position: relative;
  overflow: hidden;
}

.chara-voice__btn:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  width: 1px;
  height: 1px;
  top: -2.60417vw;
  left: -2.60417vw;
  -webkit-animation-name: shine-run;
  animation-name: shine-run;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  box-shadow: 0 0 2vw 5vw rgba(255, 255, 255, 0.8);
}

@media only screen and (min-width: 769px) {
  .chara-voice__btn:before {
    top: -60px;
    left: -60px;
    box-shadow: 0 0 50px 35px rgba(255, 255, 255, 0.8);
  }
}

.chara-btn {
  width: 89.58333vw;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 769px) {
  .chara-btn {
    position: absolute;
    display: block;
    width: 112px;
    top: 240px;
    left: 50%;
    -webkit-transform: translateX(232px);
    transform: translateX(232px);
  }
}

.chara-btn__item {
  width: 29.03646vw;
}

@media only screen and (min-width: 769px) {
  .chara-btn__item {
    width: 100%;
  }

  .chara-btn__item:not(:first-child) {
    margin-top: 10px;
  }
}

.chara-btn__link {
  display: block;
  position: relative;
}

.chara-btn__link--off {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.chara-h3 {
  width: 89.58333vw;
  margin: 0 auto;
}

@media only screen and (min-width: 769px) {
  .chara-h3 {
    width: 538px;
  }
}

.chara-change {
  width: 89.58333vw;
  height: 91.14583vw;
  margin: 7.8125vw auto 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 769px) {
  .chara-change {
    width: 688px;
    height: 560px;
    margin-top: 40px;
  }
}

.chara-change__item {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.chara-change__item:not(:first-child) {
  margin-left: -1px;
}

.chara-change__item.c0 .chara-change__num {
  background-color: #203633;
}

.chara-change__item.c0 .chara-change__tit {
  color: #203633;
}

.chara-change__item.c1 .chara-change__num {
  background-color: #25b7a0;
}

.chara-change__item.c1 .chara-change__tit {
  color: #25b7a0;
}

.chara-change__item.c2 .chara-change__num {
  background-color: #942527;
}

.chara-change__item.c2 .chara-change__tit {
  color: #942527;
}

.chara-change__item.c3 .chara-change__num {
  background-color: #885790;
}

.chara-change__item.c3 .chara-change__tit {
  color: #885790;
}

.chara-change__item.c4 .chara-change__num {
  background-color: #308bb2;
}

.chara-change__item.c4 .chara-change__tit {
  color: #308bb2;
}

.chara-change__item.c5 .chara-change__num {
  background-color: #d91275;
}

.chara-change__item.c5 .chara-change__tit {
  color: #d91275;
}

.chara-change__item.c6 .chara-change__num {
  background-color: #5a8b2c;
}

.chara-change__item.c6 .chara-change__tit {
  color: #5a8b2c;
}

.chara-change__item.c7 .chara-change__num {
  background-color: #d1701f;
}

.chara-change__item.c7 .chara-change__tit {
  color: #d1701f;
}

.chara-change__item.c6 .chara-change__tit>span {
  letter-spacing: -0.14em;
}

@media only screen and (min-width: 769px) {
  .chara-change__item.c6 .chara-change__tit>span {
    letter-spacing: 0;
  }
}

.chara-change__inner {
  width: 7.8125vw;
  height: 100%;
  background-color: #1b1513;
  padding-top: 1.30208vw;
  position: relative;
  z-index: 10;
  border: 1px solid #453f3d;
}

@media only screen and (min-width: 769px) {
  .chara-change__inner {
    width: 40px;
    padding-top: 10px;
  }
}

.chara-change__img {
  width: 43.35938vw;
  overflow: hidden;
  position: relative;
}

@media only screen and (min-width: 769px) {
  .chara-change__img {
    width: 452px;
  }
}

.chara-change__img>span {
  display: block;
  width: 73.56771vw;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (min-width: 769px) {
  .chara-change__img>span {
    width: 452px;
  }
}

.chara-change__num {
  width: 4.94792vw;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1.30208vw 0;
  font-size: 3.64583vw;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #1b1513;
  line-height: 1;
  margin: 0 auto;
}

@media only screen and (min-width: 769px) {
  .chara-change__num {
    width: 18px;
    font-size: 16px;
    padding: 10px 0;
  }
}

.chara-change__tit {
  font-size: 3.90625vw;
  margin: 1.95312vw auto 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1;
}

@media only screen and (min-width: 769px) {
  .chara-change__tit {
    font-size: 18px;
    margin-top: 15px;
  }
}

.chara-modal {
  width: 89.58333vw;
  margin: 7.8125vw auto 0;
}

@media only screen and (min-width: 769px) {
  .chara-modal {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 688px;
    margin-top: 60px;
  }
}

@media only screen and (min-width: 769px) {
  .chara-modal__item {
    width: 324px;
  }
}

.chara-modal__item:not(:first-child) {
  margin-top: 5.20833vw;
}

@media only screen and (min-width: 769px) {
  .chara-modal__item:not(:first-child) {
    margin-top: 0;
  }
}

.chara-modal__btn {
  display: block;
}

.chara-list__item {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: 400ms;
  pointer-events: none;
}

.chara-list__item.js-show {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  transition-delay: 450ms;
  pointer-events: auto;
}

.chara-btn__link.js-on .chara-btn__link--off {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.chara-btn__link--off {
  transition: 600ms;
}

.chara-change__img {
  width: 0;
  transition: 500ms;
}

.chara-change__img>span {
  transition: 500ms;
}

.chara-change__item.js-show .chara-change__inner {
  display: none;
}

.chara-change__item.js-show .chara-change__img {
  width: 43.35938vw;
}

@media only screen and (min-width: 769px) {
  .chara-change__item.js-show .chara-change__img {
    width: 452px;
  }
}

.chara-change__item.js-show .chara-change__img>span {
  width: 73.56771vw;
}

@media only screen and (min-width: 769px) {
  .chara-change__item.js-show .chara-change__img>span {
    width: 452px;
  }
}

.about {
  background-color: #e7dec3;
  padding: 13.02083vw 0 15.625vw;
}

@media only screen and (min-width: 769px) {
  .about {
    padding: 80px 0;
  }
}

.about-h2 {
  margin: 0 auto;
  width: 66.14583vw;
}

@media only screen and (min-width: 769px) {
  .about-h2 {
    width: 254px;
  }
}

.about-content {
  margin-top: 7.8125vw;
}

@media only screen and (min-width: 769px) {
  .about-content {
    margin: 60px auto 0;
    width: 688px;
  }
}

.about-content__item:not(:first-child) {
  margin-top: 7.8125vw;
}

@media only screen and (min-width: 769px) {
  .about-content__item:not(:first-child) {
    margin-top: 60px;
  }
}

.about-content__head {
  display: inline-block;
  border-left: 2.60417vw solid #b29265;
  padding: 2.60417vw;
  font-size: 5.20833vw;
  background-color: #1b1513;
}

@media only screen and (min-width: 769px) {
  .about-content__head {
    margin-left: -40px;
    padding: 20px;
    font-size: 24px;
    border-left: 20px solid #b29265;
  }
}

.about-content__main {
  margin: 5.20833vw auto 0;
  width: 89.58333vw;
  color: #1b1513;
}

@media only screen and (min-width: 769px) {
  .about-content__main {
    margin-top: 30px;
    width: 100%;
  }
}

.about-content__box {
  background-color: #ffffff;
  padding: 2.60417vw 2.34375vw;
}

@media only screen and (min-width: 769px) {
  .about-content__box {
    padding: 20px 18px;
  }
}

.about-content__sub {
  margin-bottom: 1.95312vw;
  font-size: 5.20833vw;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .about-content__sub {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

.about-content__text {
  font-size: 3.51562vw;
  line-height: calc(42/28);
}

@media only screen and (min-width: 769px) {
  .about-content__text {
    font-size: 18px;
  }
}

.about-info__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.about-info__item:not(:first-child) {
  margin-top: 1.30208vw;
}

.about-info__head {
  padding-left: 2.60417vw;
  width: 27.08333vw;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 4.16667vw;
  background-color: #d6c2a5;
}

@media only screen and (min-width: 769px) {
  .about-info__head {
    width: 200px;
    font-size: 18px;
    padding-left: 20px;
  }
}

.about-info__data {
  padding: 3.25521vw;
  width: 100%;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 4.16667vw;
  background-color: #fff;
}

@media only screen and (min-width: 769px) {
  .about-info__data {
    padding: 20px;
    font-size: 18px;
  }
}

.about-package {
  width: 68.75vw;
  margin: 7.8125vw auto 0;
}

@media only screen and (min-width: 769px) {
  .about-package {
    width: 264px;
    margin-top: 60px;
  }
}

.about-goods {
  width: 80.75vw;
  margin: 3.3333vw auto 0;
}

@media only screen and (min-width: 769px) {
  .about-goods {
    width: 500px;
    margin-top: 30px;
  }
}


.purchase {
  margin: 5.20833vw auto 0;
  padding: 1.30208vw;
  width: 89.58333vw;
  background-color: #b29265;
}

@media only screen and (min-width: 769px) {
  .purchase {
    margin-top: 30px;
    width: 688px;
    padding: 10px;
  }
}

.purchase-btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.purchase-btn__link {
  display: block;
  width: 28.25521vw;
  height: 13.02083vw;
  border: 1px solid #ffffff;
  padding: 1.30208vw;
}

@media only screen and (min-width: 769px) {
  .purchase-btn__link {
    width: 217px;
    height: 100px;
    padding: 10px;
  }
}

.purchase-btn__link>span {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  font-size: 3.64583vw;
  color: #ffffff;
}

@media only screen and (min-width: 769px) {
  .purchase-btn__link>span {
    font-size: 28px;
  }
}

.purchase-content {
  background-color: #ffffff;
  width: 100%;
  margin-top: 1.30208vw;
  padding: 3.90625vw;
}

@media only screen and (min-width: 769px) {
  .purchase-content {
    margin-top: 10px;
    padding: 30px;
  }
}

.purchase-content__text {
  font-size: 3.96667vw;
  margin-top: 2.60417vw;
  color: #1b1513;
  text-align: center;
  line-height: calc(48/32);
}

.purchase-content__text.mt {
  margin-top: 2.40417vw;
}

.purchase-content__text.lh {
  line-height: calc(40/32);
}

.purchase-content__text .line {
  text-decoration: line-through;
  text-decoration-color: red;
}

.purchase-content__text .red {
  color: red;
}

@media only screen and (min-width: 769px) {
  .purchase-content__text {
    font-size: 21px;
    margin-top: 20px;
    line-height: calc(38/24);
  }

  .purchase-content__text.mt {
    margin-top: 15px;
  }
}

.purchase-content__btn {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 3.25521vw;
  height: 20.83333vw;
  background-color: #942527;
  padding: 1.30208vw;
}

@media only screen and (min-width: 769px) {
  .purchase-content__btn {
    margin-top: 25px;
    height: 120px;
    padding: 10px;
  }
}

.purchase-content__btn>span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #ffffff;
  padding-left: 5.20833vw;
  font-size: 7.29167vw;
  color: #ffffff;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .purchase-content__btn>span {
    padding-left: 40px;
    font-size: 32px;
  }
}

.purchase-content__btn:after {
  display: block;
  content: "";
  position: absolute;
  right: 6.51042vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/icon_btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.38542vw;
  height: 2.86458vw;
}

@media only screen and (min-width: 769px) {
  .purchase-content__btn:after {
    right: 50px;
    width: 26px;
    height: 22px;
  }
}

.purchase-link {
  width: 89.58333vw;
  margin: 0 auto;
}

@media only screen and (min-width: 769px) {
  .purchase-link {
    width: 688px;
  }
}

.purchase-link__item {
  width: 100%;
}

.purchase-link__btn {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 3.25521vw;
  height: 20.83333vw;
  background-color: #942527;
  padding: 1.30208vw;
}

@media only screen and (min-width: 769px) {
  .purchase-link__btn {
    margin-top: 25px;
    height: 120px;
    padding: 10px;
  }
}

.purchase-link__btn>span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #ffffff;
  padding-left: 5.20833vw;
  font-size: 6.25vw;
  color: #ffffff;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .purchase-link__btn>span {
    padding-left: 40px;
    font-size: 32px;
  }
}

.purchase-link__btn:after {
  display: block;
  content: "";
  position: absolute;
  right: 6.51042vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/icon_btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.38542vw;
  height: 2.86458vw;
}

@media only screen and (min-width: 769px) {
  .purchase-link__btn:after {
    right: 50px;
    width: 26px;
    height: 22px;
  }
}

.purchase-btn__item.js-on .purchase-btn__link {
  background-color: #ffffff;
}

.purchase-btn__item.js-on .purchase-btn__link>span {
  border: 1px solid #b29265;
  background-color: #ffffff;
  color: #b29265;
}

.purchase-content__item {
  display: none;
}

.purchase-content__item.js-show {
  display: block;
}

.note {
  width: 100%;
  background-color: #fff;
  padding: 13.02083vw 0;
}

@media only screen and (min-width: 769px) {
  .note {
    padding: 80px 0;
  }
}

.note-h2 {
  margin: 0 auto;
  width: 83.59375vw;
  -webkit-transform: translateX(2.86458vw);
  transform: translateX(2.86458vw);
}

@media only screen and (min-width: 769px) {
  .note-h2 {
    width: 321px;
    -webkit-transform: translateX(11px);
    transform: translateX(11px);
  }
}

.note-content {
  margin: 11.71875vw auto 0;
  width: 89.58333vw;
}

@media only screen and (min-width: 769px) {
  .note-content {
    margin-top: 70px;
    width: 688px;
  }
}

.note-content__head {
  padding: 5.20833vw;
  background-color: #b29265;
  font-size: 5.20833vw;
  position: relative;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .note-content__head {
    padding: 20px;
    font-size: 24px;
  }
}

.note-content__head:after {
  position: absolute;
  display: block;
  content: "";
  width: 2.86458vw;
  height: 2.73438vw;
  top: 50%;
  right: 5.20833vw;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  background-image: url(../img/common/icon_btn.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 769px) {
  .note-content__head:after {
    width: 15px;
    height: 17px;
    right: 40px;
  }
}

.note-content__box:not(:first-child) {
  margin-top: 3.90625vw;
}

@media only screen and (min-width: 769px) {
  .note-content__box:not(:first-child) {
    margin-top: 40px;
  }
}

.note-list {
  padding: 5.20833vw;
  background-color: #e7dec3;
}

@media only screen and (min-width: 769px) {
  .note-list {
    padding: 40px;
  }
}

.note-list.no-indent .note-attention__item {
  padding-left: 0;
  text-indent: 0;
}

.note-list.no-indent .note-list__attention:before {
  display: none;
}

.note-list__item:not(:first-child) {
  margin-top: 5.20833vw;
  padding-top: 5.20833vw;
  border-top: 1px solid #b29265;
}

@media only screen and (min-width: 769px) {
  .note-list__item:not(:first-child) {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.note-list__q {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.note-list__q:before {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  content: "Q";
  width: 3.64583vw;
  height: 3.64583vw;
  padding-bottom: 0.78125vw;
  margin-top: 1.04167vw;
  font-size: 2.60417vw;
  margin-right: 1.30208vw;
  line-height: 0;
  background-color: #b29265;
}

@media only screen and (min-width: 769px) {
  .note-list__q:before {
    width: 20px;
    height: 20px;
    font-size: 16px;
    margin-right: 15px;
    padding-bottom: 6px;
    margin-top: 10px;
  }
}

.note-list__q>span {
  font-size: 3.64583vw;
  font-weight: bold;
  color: #1b1513;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: calc(42/28);
}

@media only screen and (min-width: 769px) {
  .note-list__q>span {
    font-size: 18px;
    line-height: 2;
  }
}

.note-list__a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 3.25521vw;
}

@media only screen and (min-width: 769px) {
  .note-list__a {
    margin-top: 15px;
  }
}

.note-list__a:before {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  content: "A";
  width: 3.64583vw;
  height: 3.64583vw;
  padding-bottom: 0.39062vw;
  margin-top: 1.04167vw;
  font-size: 2.60417vw;
  margin-right: 1.30208vw;
  line-height: 0;
  background-color: #1b1513;
}

@media only screen and (min-width: 769px) {
  .note-list__a:before {
    width: 20px;
    height: 20px;
    font-size: 16px;
    margin-right: 15px;
    padding-bottom: 3px;
    margin-top: 10px;
  }
}

.note-list__a>span {
  font-size: 3.64583vw;
  color: #1b1513;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: calc(42/28);
}

@media only screen and (min-width: 769px) {
  .note-list__a>span {
    font-size: 14px;
    line-height: 2;
  }
}

.note-list__a>span>span {
  font-size: 0.8em;
  line-height: 1.3;
}

.note-list__attention {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.note-list__attention:before {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  content: "";
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3.64583vw;
  height: 3.64583vw;
  margin-top: 1.04167vw;
  font-size: 2.60417vw;
  margin-right: 1.30208vw;
  line-height: 0;
  background-color: #b29265;
}

@media only screen and (min-width: 769px) {
  .note-list__attention:before {
    width: 20px;
    height: 20px;
    font-size: 16px;
    margin-right: 15px;
    padding-bottom: 3px;
    margin-top: 9px;
  }
}

.note-list__attention>span {
  font-size: 3.64583vw;
  color: #1b1513;
  font-weight: bold;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: calc(42/28);
}

@media only screen and (min-width: 769px) {
  .note-list__attention>span {
    font-size: 18px;
    line-height: 2;
  }
}

.note-attention {
  margin-top: 2.60417vw;
}

@media only screen and (min-width: 769px) {
  .note-attention {
    margin-top: 10px;
  }
}

.note-attention__item {
  margin-left: 5.20833vw;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 3.64583vw;
  color: #1b1513;
  line-height: calc(42/28);
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (min-width: 769px) {
  .note-attention__item {
    margin-left: 35px;
    font-size: 14px;
    line-height: 2;
  }
}

.note-attention__item>span {
  font-size: 0.8em;
  line-height: 1.3;
}

.note-attention__item>a {
  text-decoration: underline;
  font-weight: bold;
}

.note-contact {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 89.58333vw;
  height: 15.625vw;
  margin: 7.8125vw auto 0;
  background-color: #1b1513;
}

@media only screen and (min-width: 769px) {
  .note-contact {
    width: 384px;
    height: 60px;
    margin-top: 60px;
  }
}

.note-contact>span {
  font-size: 3.64583vw;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 1.30208vw;
}

@media only screen and (min-width: 769px) {
  .note-contact>span {
    font-size: 18px;
    text-underline-offset: 7px;
  }
}

.note-content__head {
  cursor: pointer;
}

.note-content__head:after {
  transition: 500ms;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.note-content__head.js-show:after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.fix {
  position: fixed;
  right: 2.60417vw;
  bottom: 2.60417vw;
  z-index: 99;
}

@media only screen and (min-width: 769px) {
  .fix {
    right: 20px;
    bottom: 20px;
  }
}

.fix-sns {
  margin: 0 0 0 auto;
  width: 10.41667vw;
}

@media only screen and (min-width: 769px) {
  .fix-sns {
    width: 64px;
  }
}

.fix-sns__link {
  display: block;
  width: 100%;
}

.fix-sns__link:not(:first-child) {
  margin-top: 1.30208vw;
}

@media only screen and (min-width: 769px) {
  .fix-sns__link:not(:first-child) {
    margin-top: 10px;
  }
}

.fix-cv {
  display: block;
  width: 37.76042vw;
  margin-top: 2.60417vw;
}

@media only screen and (min-width: 769px) {
  .fix-cv {
    width: 232px;
    margin-top: 20px;
  }
}

.fix {
  pointer-events: none;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: all 500ms;
}

.fix.js-show {
  pointer-events: none;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.fix.js-show .fix-sns {
  pointer-events: auto;
}

.fix.js-show .fix-cv {
  pointer-events: auto;
}

.fix-sns {
  pointer-events: none;
}

.fix-cv {
  pointer-events: none;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 21, 19, 0.98);
  cursor: pointer;
}

.modal-close {
  display: block;
  position: absolute;
  top: 5.20833vw;
  right: 6.51042vw;
  width: 5.72917vw;
  z-index: 101;
}

@media only screen and (min-width: 769px) {
  .modal-close {
    top: 40px;
    right: 50px;
    width: 44px;
  }
}

.modal-content {
  position: relative;
  z-index: 101;
}

.modal-cm {
  width: 89.58333vw;
  height: 50.39062vw;
}

@media only screen and (min-width: 769px) {
  .modal-cm {
    width: 688px;
    height: 387px;
  }
}

.modal-cm>iframe {
  width: 100%;
  height: 100%;
}

.modal-kaji {
  width: 89.58333vw;
}

@media only screen and (min-width: 769px) {
  .modal-kaji {
    width: 688px;
  }
}

.modal-kaji__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 15.625vw;
  background-color: #b29265;
  font-size: 5.20833vw;
}

@media only screen and (min-width: 769px) {
  .modal-kaji__head {
    height: 80px;
    font-size: 32px;
  }
}

.modal-kaji__box {
  width: 100%;
  padding: 5.20833vw;
  background-color: #fff;
}

@media only screen and (min-width: 769px) {
  .modal-kaji__box {
    padding: 30px;
  }
}

.modal-kaji__thumb {
  width: 26.04167vw;
  margin: 0 auto;
}

@media only screen and (min-width: 769px) {
  .modal-kaji__thumb {
    width: 200px;
  }
}

.modal-kaji__text {
  font-size: 3.64583vw;
  line-height: calc(49/28);
  color: #1b1513;
  margin-top: 4.55729vw;
}

@media only screen and (min-width: 769px) {
  .modal-kaji__text {
    font-size: 14px;
    margin-top: 25px;
  }
}

.modal-about {
  width: 89.58333vw;
}

@media only screen and (min-width: 769px) {
  .modal-about {
    width: 688px;
  }
}

.modal-about__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 15.625vw;
  background-color: #b29265;
  font-size: 5.20833vw;
}

@media only screen and (min-width: 769px) {
  .modal-about__head {
    height: 80px;
    font-size: 32px;
  }
}

.modal-about__box {
  width: 100%;
  padding: 5.20833vw;
  background-color: #fff;
}

@media only screen and (min-width: 769px) {
  .modal-about__box {
    padding: 30px;
  }
}

.modal-about iframe {
  width: 78.38542vw;
  height: 44.14062vw;
  margin: 0 auto;
}

@media only screen and (min-width: 769px) {
  .modal-about iframe {
    width: 622px;
    height: 350px;
  }
}

.modal-about__text {
  font-size: 3.64583vw;
  line-height: calc(49/28);
  color: #1b1513;
  margin-top: 4.55729vw;
}

@media only screen and (min-width: 769px) {
  .modal-about__text {
    font-size: 14px;
    margin-top: 25px;
  }
}

.modal-about__btn {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 3.25521vw;
  height: 13.02083vw;
  background-color: #1b1513;
  padding: 1.30208vw;
}

@media only screen and (min-width: 769px) {
  .modal-about__btn {
    margin-top: 25px;
    height: 80px;
    padding: 10px;
  }
}

.modal-about__btn>span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #ffffff;
  padding-left: 5.20833vw;
  font-size: 3.64583vw;
  color: #ffffff;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .modal-about__btn>span {
    padding-left: 30px;
    font-size: 20px;
  }
}

.modal-about__btn:after {
  display: block;
  content: "";
  position: absolute;
  right: 6.51042vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/icon_btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.38542vw;
  height: 2.86458vw;
}

@media only screen and (min-width: 769px) {
  .modal-about__btn:after {
    right: 30px;
    width: 26px;
    height: 22px;
  }
}

.modal-load {
  width: 89.58333vw;
}

@media only screen and (min-width: 769px) {
  .modal-load {
    width: 688px;
  }
}

.modal {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  pointer-events: none;
  transition: opacity 500ms;
}

.modal.js-show {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  pointer-events: auto;
}

.modal-content {
  display: none;
}

.modal-content.js-show {
  display: block;
}

.check-top {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 41.66667vw;
  background-color: #213533;
}

@media only screen and (min-width: 769px) {
  .check-top {
    height: 200px;
  }
}

.check-top__text {
  font-size: 8.33333vw;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .check-top__text {
    font-size: 48px;
  }
}

.check-sample {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 41.66667vw;
  background-color: #da3986;
}

@media only screen and (min-width: 769px) {
  .check-sample {
    height: 280px;
  }
}

.check-sample__btn {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 89.58333vw;
  height: 26.04167vw;
  border: 1.30208vw solid #fff;
  color: #fff;
  padding-left: 5.20833vw;
  font-size: 6.25vw;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .check-sample__btn {
    width: 688px;
    height: 160px;
    border: 10px solid #fff;
    padding-left: 40px;
    font-size: 48px;
  }
}

.check-sample__btn:after {
  position: absolute;
  top: 50%;
  right: 5.20833vw;
  display: block;
  content: "";
  width: 10.41667vw;
  height: 10.41667vw;
  background-image: url(../img/check/btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-width: 769px) {
  .check-sample__btn:after {
    width: 80px;
    height: 80px;
    right: 40px;
  }
}

.check-content {
  margin-top: 0;
}

.check-content .about-content {
  margin-top: 0;
}

.check-content .about-content__text {
  padding-left: 1em;
  text-indent: -1em;
}

.check-box {
  width: 89.58333vw;
  background-color: #fff;
  margin: 5.20833vw auto 0;
}

@media only screen and (min-width: 769px) {
  .check-box {
    width: 688px;
    margin-top: 40px;
  }
}

.check-box__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 10.41667vw;
  font-size: 3.64583vw;
  font-weight: bold;
  background-color: #b29265;
}

@media only screen and (min-width: 769px) {
  .check-box__head {
    font-size: 24px;
    height: 60px;
  }
}

.check-box__list {
  width: 100%;
}

.check-box__list--head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 22.13542vw;
  font-size: 3.64583vw;
  font-weight: bold;
  color: #b29265;
}

@media only screen and (min-width: 769px) {
  .check-box__list--head {
    width: 170px;
    font-size: 18px;
  }
}

.check-box__list--text {
  font-size: 3.64583vw;
  color: #1b1513;
  border-left: 1px solid #b29265;
  padding: 1.30208vw 2.60417vw;
  line-height: calc(42/28);
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (min-width: 769px) {
  .check-box__list--text {
    font-size: 18px;
    padding: 5px 20px;
  }
}

.check-box__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #b29265;
  padding: 1.30208vw 2.60417vw;
}

@media only screen and (min-width: 769px) {
  .check-box__item {
    padding: 10px 20px;
  }
}

.check-box__item:not(:first-child) {
  margin-top: -1px;
}

.check-attention {
  margin: 5.20833vw auto 0;
  width: 89.58333vw;
  color: #000;
}

@media only screen and (min-width: 769px) {
  .check-attention {
    margin-top: 40px;
    width: 688px;
  }
}

.check-attention__text {
  font-size: 3.125vw;
  line-height: calc(42/24);
  padding-left: 1em;
  text-indent: -1em;
}

@media only screen and (min-width: 769px) {
  .check-attention__text {
    font-size: 14px;
  }
}

.pc-none {
  display: none;
}

@media only screen and (max-width: 769px) {
  .pc-none {
    display: block;
  }
}

@media only screen and (max-width: 769px) {
  .sp-none {
    display: none;
  }
}

.chara-comment {
  margin-top: 7.8125vw;
}

@media only screen and (min-width: 769px) {
  .chara-comment {
    width: 690px;
    margin: 60px auto 0;
  }
}

.chara-comment__list {
  padding: 0 5.20833vw;
  margin-top: 5.20833vw;
}

@media only screen and (min-width: 769px) {
  .chara-comment__list {
    padding: 0;
    margin-top: 40px;
  }
}

.chara-comment__item {
  margin-top: 5.85938vw;
}

@media only screen and (min-width: 769px) {
  .chara-comment__item {
    margin-top: 30px;
  }
}

.chara-comment__name {
  font-size: 6.25vw;
  color: #b29265;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .chara-comment__name {
    font-size: 32px;
  }
}

.chara-comment__name>span {
  font-size: 3.64583vw;
}

@media only screen and (min-width: 769px) {
  .chara-comment__name>span {
    font-size: 18px;
  }
}

.chara-comment__text {
  font-size: 3.64583vw;
  margin-top: 3.25521vw;
  line-height: calc(42/28);
  overflow: hidden;
}

@media only screen and (min-width: 769px) {
  .chara-comment__text {
    font-size: 18px;
    margin-top: 15px;
  }
}

.chara-comment__text.js-off {
  height: 32.5vw;
}

@media only screen and (min-width: 769px) {
  .chara-comment__text.js-off {
    height: 110px;
  }
}

.chara-comment__btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-top: 3.5vw;
  padding: 0 4.55729vw;
  height: 15.625vw;
  font-size: 5.20833vw;
  border: 1px solid #fff;
  color: #fff;
}

@media only screen and (min-width: 769px) {
  .chara-comment__btn {
    margin-top: 10px;
    height: 60px;
    padding: 0 40px;
    font-size: 18px;
  }
}

.chara-comment__btn.js-off {
  display: none;
}

.chara-comment__btn:after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.60417vw 1.6276vw 0 1.6276vw;
  border-color: #ffffff transparent transparent transparent;
}

@media only screen and (min-width: 769px) {
  .chara-comment__btn:after {
    border-width: 14px 8px 0 8px;
  }
}



/*# sourceMappingURL=../maps/share.css.map */