@charset "UTF-8";
/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*フォント
---------------------------------------------*/
/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* コンテンツ
---------------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  height: -webkit-fill-available;
}

body {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 3.467vw;
  letter-spacing: 1px;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 16px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
  display: block;
}

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

a:hover img {
  opacity: .5;
  -webkit-opacity: .5;
  -moz-opacity: .5;
  filter: alpha(opacity=50);
  /* IE lt 8 */
  -ms-filter: "alpha(opacity=50)";
  /* IE 8 */
}

a img {
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}

@-webkit-keyframes rotation1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*-------------------common-------------------*/
.section {
  width: 100%;
  padding: 15% 0 35%;
}

@media screen and (min-width: 769px) {
  .section {
    padding: 100px 0 150px;
  }
}

.section .num {
  width: 20%;
  position: absolute;
}

@media screen and (min-width: 769px) {
  .section .num {
    width: 100px;
  }
}

.section .num img {
  width: 100%;
  -webkit-animation: 10s linear infinite rotation1;
          animation: 10s linear infinite rotation1;
}

.section .num span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 10.667vw;
  color: #ca8183;
  line-height: 100%;
}

@media screen and (min-width: 769px) {
  .section .num span {
    font-size: 54px;
  }
}

.section .wrap {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .section .wrap {
    max-width: 900px;
  }
}

@media screen and (min-width: 769px) {
  .section .wrap h1 {
    width: 50%;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 768px) {
  .section .wrap h1 {
    width: 70%;
    margin: 0 auto 20px;
  }
}

.section .wrap h2 {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: center;
  border: 1px solid #000;
  width: 70%;
  margin: 0 auto 40px;
}

@media screen and (min-width: 769px) {
  .section .wrap h2 {
    font-size: 24px;
    width: 50%;
    margin: 0 auto 50px;
  }
}

.section .wrap h2 span {
  color: #000;
}

.section .wrap h3 {
  margin-top: 5%;
  font-size: 2.667vw;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .section .wrap h3 {
    margin-top: 20px;
    font-size: 14px;
  }
}

.section .wrap h4 {
  margin: 15% 0 6%;
  font-size: 4.267vw;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .section .wrap h4 {
    margin: 50px 0 20px;
    font-size: 22px;
  }
}

.section .wrap > p {
  margin-bottom: 10%;
}

@media screen and (min-width: 769px) {
  .section .wrap > p {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.section .wrap p.caution {
  color: red;
  font-size: 2.933vw;
}

@media screen and (min-width: 769px) {
  .section .wrap p.caution {
    font-size: 16px;
  }
}

.section:nth-child(odd) .num {
  top: -3%;
  right: 5%;
}

.section:nth-child(even) .num {
  top: -7%;
  left: 5%;
}

.section:first-child .num {
  top: 3%;
  right: 5%;
}

/*背景色*/
.section {
  position: relative;
}

.section:nth-child(odd) {
  background: #fff;
}

.section:nth-child(odd):after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  border-style: solid;
  border-width: 70px 0 0 100vw;
  border-color: transparent transparent transparent #fff;
}

.section:last-child:after {
  border: none;
}

/*-------------------live-------------------*/
#live {
  /* icon */
  /* /icon */
}

#live .accordion {
  margin-top: 50px;
  padding: 0;
  font-size: 3.733vw;
}

@media screen and (min-width: 769px) {
  #live .accordion {
    font-size: 16px;
  }
}

#live .accordion-checkbox {
  /* checbox */
  display: none;
}

#live .accordion-trigger {
  /* label */
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  padding: 15px;
  margin-bottom: 1px;
  padding-right: 42px;
  /* padding + icon width */
  border-bottom: 1px solid #fff;
  position: relative;
  background: rgba(198, 178, 150, 0.2);
  text-align: center;
}

#live .accordion-trigger span {
  margin-left: 5px;
  font-size: 12px;
}

#live .accordion-trigger::before,
#live .accordion-trigger::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  height: 2px;
  width: 12px;
  background-color: #E49B37;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
}

#live .accordion-trigger::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

#live .accordion-target {
  /* target */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  text-align: left;
}

#live .accordion-target.list > .list__item {
  /* target-child */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 0;
  visibility: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transition: visibility .2s ease-out, opacity .2s ease-out, padding-top .4s ease-out, padding-bottom .4s ease-out;
  transition: visibility .2s ease-out, opacity .2s ease-out, padding-top .4s ease-out, padding-bottom .4s ease-out;
  font-size: 3.200vw;
}

@media screen and (min-width: 769px) {
  #live .accordion-target.list > .list__item {
    font-size: 14px;
  }
}

#live .accordion-target.list > .list__item > a {
  display: block;
  padding: 0 10px 0 0;
  text-decoration: none;
  position: relative;
}

#live .accordion-target.list > .list__item > a:after {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #E49B37;
  border-right: solid 2px #E49B37;
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#live .accordion-checkbox:checked + .accordion-trigger::after {
  opacity: 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

#live .accordion-checkbox:checked + .accordion-trigger + .accordion-target {
  visibility: visible;
  opacity: 1;
}

#live .accordion-checkbox:checked + .accordion-trigger + .accordion-target > .list__item {
  visibility: visible;
  height: auto;
  border-bottom: 1px dotted #000;
  opacity: 1;
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-transition: visibility .2s ease-out .2s, opacity .2s ease-out .2s, padding-top ease-out .4s, padding-bottom ease-out .4s;
  transition: visibility .2s ease-out .2s, opacity .2s ease-out .2s, padding-top ease-out .4s, padding-bottom ease-out .4s;
}

#live .accordion-checkbox:checked + .accordion-trigger + .accordion-target > .list__item:last-child {
  border-bottom: none;
}

#live .accordion-checkbox:checked + .accordion-trigger + .accordion-target > .list__item > a {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: -15px;
  margin-bottom: -15px;
}

#live .accordion ul .list__item a {
  display: block;
}

#live .accordion ul .list__item a .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#live .accordion ul .list__item a .box .time {
  font-size: 16px;
  color: #E49B37;
  font-weight: 700;
}

#live .accordion ul .list__item a .box .icon_insta {
  height: 20px;
  margin-left: 5%;
  padding: 0 3%;
  line-height: 20px;
  font-size: 10px;
  background: #e8e6d2;
}

#live .accordion ul .list__item a .box .icon_palclo {
  height: 20px;
  margin-left: 5%;
  padding: 0 3%;
  line-height: 20px;
  font-size: 10px;
  background: #d2dbe8;
}

#live .accordion ul .list__item a .brand {
  width: 90%;
  font-size: 14px;
  font-weight: 700;
}

#live .accordion ul .list__item a .title {
  width: 90%;
  font-size: 11px;
}

/*-------------------footer-------------------*/
@media screen and (min-width: 769px) {
  #footer .info_wrap {
    max-width: 630px;
    margin: 0 auto 120px;
  }
}

#footer .info_wrap h2 {
  width: 35%;
  margin: 0 auto 27px;
}

@media screen and (min-width: 769px) {
  #footer .info_wrap h2 {
    margin: 0 auto 50px;
  }
}

#footer .info_wrap > ul {
  line-height: 100%;
}

#footer .info_wrap > ul > li {
  padding: 20px 20px;
  border-top: 1px solid #dadada;
}

#footer .info_wrap > ul > li a h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
}

@media screen and (min-width: 769px) {
  #footer .info_wrap > ul > li a h3 {
    font-size: 20px;
  }
}

#footer .info_wrap > ul > li a p {
  font-size: 11px;
  letter-spacing: 0.005em;
}

@media screen and (min-width: 769px) {
  #footer .info_wrap > ul > li a p {
    font-size: 13px;
  }
}

#footer .info_wrap > ul > li:last-child {
  padding: 40px 20px;
}

#footer .info_wrap > ul > li:last-child h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (min-width: 769px) {
  #footer .info_wrap > ul > li:last-child h3 {
    font-size: 20px;
  }
}

#footer .info_wrap > ul > li:last-child ul {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#footer .info_wrap > ul > li:last-child ul li {
  width: 48%;
  font-size: 12px;
}

@media screen and (min-width: 769px) {
  #footer .info_wrap > ul > li:last-child ul li {
    width: 48%;
    font-size: 14px;
  }
}

#footer .info_wrap > ul > li:last-child ul li img {
  margin-bottom: 5px;
}

@media screen and (min-width: 769px) {
  #footer .info_wrap > ul > li:last-child ul li br {
    display: none;
  }
}

#footer .info_wrap2 {
  padding: 80px 10%;
  background: #f3f3f3;
  text-align: center;
  line-height: 130%;
}

#footer .info_wrap2 p {
  font-size: 18px;
  border-bottom: dotted 1px;
  display: inline;
  padding-bottom: 5px;
}

#footer .info_wrap2 .bnr {
  margin: 0 auto 60px;
}

@media screen and (min-width: 769px) {
  #footer .info_wrap2 .bnr {
    max-width: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

#footer .info_wrap2 .bnr li {
  margin-top: 30px;
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  #footer .info_wrap2 .bnr li {
    width: 48%;
    font-size: 14px;
  }
}

#footer .info_wrap2 .bnr li img {
  margin-bottom: 5px;
}

#footer .info_wrap2 ul#footer_snsArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}

#footer .info_wrap2 ul#footer_snsArea li {
  width: 30px;
  height: auto;
  margin-right: 22px;
}

#footer .info_wrap2 ul#footer_snsArea li a img {
  width: 100%;
  display: block;
  height: auto;
}

#footer .info_wrap2 .palcloset {
  width: 150px;
  margin: 0 auto 10px;
  padding: 5px;
  display: block;
}

#footer .info_wrap2 .palcloset img {
  width: 100%;
}

#footer .info_wrap2 small {
  font-size: 11px;
}

.opacity {
  -webkit-animation: opacity 1.6s ease-in-out 1 both;
          animation: opacity 1.6s ease-in-out 1 both;
}

@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

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

/*----- フェードイン -----*/
.inviewfadeInUp {
  opacity: 0;
  transform: translate(0, 10%);
  -webkit-transform: translate(0, 10%);
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: .8s;
          transition-delay: .8s;
}

.fadeInUp {
  opacity: 1.0 !important;
  transform: translate(0, 0) !important;
  -webkit-transform: translate(0, 0) !important;
}

/*----- スクロールダウン -----*/
/*スクロールダウン全体の場所*/
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 30px;
  left: 50%;
}

/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 50px;
  background: #000;
}

/* loading
--------------------------------------*/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 1;
  z-index: 99999;
}

#loader-bg #loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 769px) {
  #loader-bg #loading {
    width: 100%;
    margin: auto;
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  #loader-bg #loading {
    width: 100%;
    margin: auto;
    height: 100%;
  }
}

@media screen and (min-width: 769px) {
  #loader-bg #loading div {
    width: 20%;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  #loader-bg #loading div {
    width: 40%;
    margin: auto;
  }
}

/*jQueryのCSS
--------------------------------------*/
/*# sourceMappingURL=style.css.map */