@charset "UTF-8";
/* RS CSS (common.css) */
.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: -0.6px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

a:hover {
  color: #4294b3;
  text-decoration: none !important;
  opacity: 0.7;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

ul, ol {
  list-style: none;
}

ul, ol, li, h1, h2, h3, h4, h5, h6, dl, dt, dd, a, strong {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: normal;
}

div {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

img, a img {
  border: none;
}

table {
  letter-spacing: 1px;
}

iframe {
  border: none;
}

strong {
  font-weight: bold;
}

#content_area a:hover {
  text-decoration: underline;
}

/* ============================================
 base
============================================ */
.no_pc {
  display: inline;
}

.no_sp {
  display: none;
}

html {
  overflow-y: scroll;
}

html, body {
  width: 100%;
  height: auto;
  color: #000;
  min-width: 320px;
  letter-spacing: -0.1px;
  font-weight: 500;
  word-wrap: break-word;
  font-size: 12px;
  line-height: 1.5;
  font-family: "Sawarabi Gothic", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}

.parallax-window {
  background: transparent !important;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

#exterior_wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.wrapper {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.wrapper:before, .wrapper:after {
  content: "";
  display: table;
}

.wrapper:after {
  clear: both;
}

/* ============================================
 header
============================================ */
header {
  position: fixed;
  padding: 23px 0 0;
  height: auto;
  width: 90%;
  left: 5%;
  z-index: 1000;
  top: 20px;
  border-radius: 40px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.75);
}

header a :hover {
  text-decoration: none !important;
}

header .wrapper {
  padding: 0 0 10px;
  width: 100%;
  height: 100%;
  max-width: none;
  overflow: scroll;
}

.logo {
  z-index: 100;
  width: 100%;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo a, .logo span {
  display: inline-block;
  width: 148px;
  max-width: 178px;
}

/*-----------------------------------------------------------------
  ハンバーガーメニュー
------------------------------------------------------------------*/
.menu_button, .menu_button span {
  display: inline-block;
  transition: all 0.4s;
}

.menu_button {
  position: absolute;
  margin: 9px 0 0;
  width: 36px;
  height: 19px;
  right: 7%;
  top: 15px;
  z-index: 10000;
}

.menu_button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 0px;
  transition: all 0.4s;
}

.menu_button span:nth-of-type(1) {
  top: 0;
}

.menu_button span:nth-of-type(2) {
  top: 8px;
}

.menu_button span:nth-of-type(3) {
  bottom: 0;
}

/*-----------  active  ------------*/
.menu_button.active span {
  background: #000;
}

.menu_button.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

.menu_button.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 0.8s forwards;
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu_button.active span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
}

/*-----------------------------------------------------------------
  gloval navi
------------------------------------------------------------------*/
.dropdown_nav {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  margin: 0px auto;
  padding: 0 0 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.9);
}

.dropdown_nav_open .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav_top {
  margin-top: 0px;
  padding-top: 100px;
  text-align: center;
}

.nav_top .nav_img {
  text-align: center;
  margin: 10px auto;
}

.nav_top .nav_img img {
  width: 40%;
  max-width: 200px;
}

.nav_top ul.menu {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  width: 100%;
}

.nav_top .menu li {
  margin: 0 1.8%;
  opacity: 0;
}

.nav_top .menu li:nth-child(1) {
  animation-delay: 0.1s;
}

.nav_top .menu li:nth-child(2) {
  animation-delay: 0.15s;
}

.nav_top .menu li:nth-child(3) {
  animation-delay: 0.2s;
}

.nav_top .menu li:nth-child(4) {
  animation-delay: 0.25s;
}

.nav_top .menu li:nth-child(5) {
  animation-delay: 0.3s;
}

.nav_top .menu li:nth-child(6) {
  animation-delay: 0.35s;
}

.nav_top .menu li:nth-child(7) {
  animation-delay: 0.4s;
}

.nav_top .menu li:nth-child(8) {
  animation-delay: 0.45s;
}

.nav_top .menu li:nth-child(9) {
  animation-delay: 0.5s;
}

.nav_top .menu li:nth-child(10) {
  animation-delay: 0.55s;
}

.nav_top .menu li a {
  font-size: 15.5px;
  font-size: 4.1333333333vw;
  font-family: "Roboto Condensed", serif;
  text-align: center;
  position: relative;
  letter-spacing: 0.5px;
  display: block;
  padding: 4px 5px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.nav_top .menu li a span {
  opacity: 0.6;
  position: absolute;
  letter-spacing: 0.4px;
  top: 34px;
  left: -6px;
  white-space: nowrap;
  font-size: 10px;
  font-size: 0.8333333333rem;
}

.nav_top .menu li a .fa-external-link-alt {
  font-size: 12px;
  font-size: 1rem;
}

.nav_top ul.sub_menu {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  width: 100%;
}

.nav_top .sub_menu li {
  text-orientation: upright;
  margin: 10px 12px;
  opacity: 0;
}

.nav_top .sub_menu li:last-child a {
  display: inline-block;
  padding: 10px;
  border: double 4px #000;
  font-size: 15.5px;
  font-size: 4.1333333333vw;
  font-family: "Roboto Condensed", serif;
  text-align: center;
}

.nav_top .sub_menu li.menu_sns {
  margin: 10px auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav_top .sub_menu li.menu_sns a {
  display: inline-block;
  margin: 0 12px;
  font-size: 17px;
  font-size: 4.5333333333vw;
}

.nav_top .sub_menu li:nth-child(1) {
  animation-delay: 0.7s;
}

.nav_top .sub_menu li:nth-child(2) {
  animation-delay: 0.7s;
}

.nav_top .sub_menu li:nth-child(3) {
  animation-delay: 0.7s;
}

.nav_top .sub_menu li:nth-child(4) {
  animation-delay: 0.7s;
}

.nav_top .sub_menu li a {
  position: relative;
  font-size: 10px;
  font-size: 0.8333333333rem;
  letter-spacing: 0.5px;
  display: block;
  line-height: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  opacity: 0.9;
}

.nav_top .sub_menu li a .fa-external-link-alt {
  font-size: 12px;
  font-size: 1rem;
}

.nav_top .sub_menu li span {
  opacity: 0.6;
  display: block;
  font-size: 8px;
  font-size: 0.6666666667rem;
  width: 100%;
  bottom: -1.3em;
  text-align: center;
}

/*-----------------------------------------------------------------
  SNS
------------------------------------------------------------------*/
.d_nav_sns {
  z-index: 10000;
  position: relative;
  opacity: 1;
  margin-top: 0;
  width: auto;
  text-align: center;
}

.d_nav_sns ul li {
  display: inline-block;
  width: auto;
  margin: 4px 9px;
}

.d_nav_sns ul li a {
  font-size: 22px;
  font-size: 1.8333333333rem;
  color: #000;
}

.d_nav_sns ul li a img {
  width: 19px;
}

.d_nav_sns ul li.youtube a img {
  width: 25px;
}

.d_nav_sns ul li.piapro a img {
  width: 55px;
}

/* ============================================
 contents
============================================ */
#content_area {
  width: 100%;
  margin-top: 100vh;
  margin-top: 100dvh;
}

.btn-buy {
  margin-top: 20px;
  text-align: center;
}

.btn-buy a {
  max-width: 200px;
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: -0.1px;
  position: relative;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-size: 1.5rem;
  font-family: "Roboto Condensed", serif;
  color: #fff;
  background: #000;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  margin-top: 0;
  text-align: center;
  padding: 20px 25px 20px;
  position: relative;
  z-index: 99;
  background: #2b2b2b;
  /*-----------------------------------------------------------------
    SNS
  ------------------------------------------------------------------*/
}

footer a {
  color: #fff;
}

footer .footer-logo {
  margin: 20px auto;
  text-align: center;
}

footer .footer-logo img {
  width: 35%;
}

footer .contact {
  font-family: "Roboto Condensed", serif;
  font-size: 14px;
  font-size: 1.1666666667rem;
  text-align: center;
}

footer .footer-sns {
  margin: 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .footer-sns a {
  display: inline-block;
  margin: 0 12px;
  font-size: 15px;
  font-size: 4vw;
}

footer .contact {
  margin: 20px 0 10px;
  text-align: center;
}

footer .contact a {
  border: double 4px #c5c5c5;
  padding: 2px 10px;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: -0.1px;
  position: relative;
  margin: 0 auto;
  background: transparent;
  text-align: center;
  font-size: 15px;
  font-size: 4vw;
  font-family: "Roboto Condensed", serif;
  color: #fff;
  text-decoration: none !important;
  display: flex;
  width: 40%;
  align-items: center;
  justify-content: center;
}

footer .copyrights {
  margin-top: 30px;
  color: #fff;
  font-size: 12px;
  font-size: 1rem;
  letter-spacing: 0.1px;
  padding: 10px 0;
}

footer .lang {
  text-align: center;
  font-size: 12px;
  font-size: 1rem;
  margin: 20px auto;
}

footer .lang a {
  color: #fff;
}

#js-pagetop {
  z-index: 100;
  position: fixed;
  width: 35px;
  height: 35px;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  mix-blend-mode: difference;
}

#js-pagetop a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
}

.fadein, .fadein_sc {
  opacity: 0;
  -ms-transform: translate(0, 30px);
  -webkit-transform: translate(0, 30px);
  transform: translate(0, 30px);
  -webkit-transition: all 0.45s linear;
  transition: all 0.45s linear;
}

.fadein.scrolling {
  opacity: 1;
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.delay2 {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  transition-delay: 200ms;
}

.delay3 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  transition-delay: 300ms;
}

.delay4 {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
  transition-delay: 400ms;
}

.delay5 {
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  transition-delay: 500ms;
}

.delay6 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  transition-delay: 600ms;
}

.delay7 {
  -moz-transition-delay: 700ms;
  -webkit-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  transition-delay: 700ms;
}

.delay8 {
  -moz-transition-delay: 800ms;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  transition-delay: 800ms;
}

.s_06 .accordion_one {
  max-width: 1024px;
  margin: 30px auto;
}

.s_06 .accordion_one .accordion_header {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 8%;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
}

.s_06 .accordion_one:nth-of-type(2) .accordion_header {
  background-color: #000;
}

.s_06 .accordion_one:nth-of-type(3) .accordion_header {
  background-color: #000;
}

.s_06 .accordion_one .accordion_header:hover {
  opacity: 0.8;
}

.s_06 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  color: #c30b0f;
}

.s_06 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

.s_06 .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #c30b0f;
}

.s_06 .accordion_one .accordion_header .i_box .one_i:before, .s_06 .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: "";
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}

.s_06 .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

.s_06 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}

.s_06 .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.s_06 .accordion_one > .accordion_inner {
  display: none;
  padding: 10px 0;
  margin-top: 20px;
  box-sizing: border-box;
}

.s_06 .accordion_one .accordion_inner .box_one {
  min-height: 100px;
}

.s_06 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}

.s_06 .accordion_one .accordion_inner .closeArea {
  width: 180px;
  margin: 0 auto;
}

.s_06 .accordion_one .accordion_inner .closeArea .close_box a.close_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  padding: 15px 15px 15px 20px;
  text-decoration: none;
  line-height: 1.3;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  transition-duration: 0.2s;
}

.s_06 .accordion_one .accordion_inner .closeArea .close_box a.close_btn:hover {
  opacity: 0.8;
}

.s_06 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 10%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
}

.s_06 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 18px;
  height: 18px;
}

.s_06 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:before, .s_06 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:after {
  content: "";
  background-color: #fff;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(45deg);
  transform-origin: center center;
}

.s_06 .accordion_one .accordion_inner .closeArea .close_box a.close_btn .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

@media screen and (max-width: 1024px) {
  .s_06 .accordion_one .accordion_header {
    font-size: 16px;
  }
  .s_06 .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
  .s_06 .accordion_one .accordion_inner .closeArea .close_box a.close_btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .s_06 .accordion_one .accordion_header {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 30px 10px 15px;
  }
}
.pager {
  margin: 30px auto;
}

.pagination {
  display: inline-block;
}

.pager_top {
  margin: -10px 0 30px;
  height: auto;
}

.pager_top .pagination {
  margin-left: -5%;
}

.pager_top a, .pager_top span {
  display: inline-block;
  padding: 0 10px;
  float: left;
  width: 45%;
  line-height: 26px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px 5%;
}

.wp-pagenavi a, .wp-pagenavi span {
  text-decoration: none;
  border: 1px solid #000;
  padding: 3px 8px;
  margin: 2px;
  color: #000;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  background: #000;
  color: #fff;
}

/* ============================================
 Media Queries
============================================ */
@media screen and (min-width: 900px) {
  .no_pc {
    display: none;
  }
  .no_sp {
    display: inline;
  }
  .wrapper {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
  }
  .wrapper:before, .wrapper:after {
    content: "";
    display: table;
  }
  .wrapper:after {
    clear: both;
  }
  #exterior_wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }
  .wrapper {
    position: relative;
    width: 90%;
    margin: 0 auto;
  }
  .wrapper:before, .wrapper:after {
    content: "";
    display: table;
  }
  .wrapper:after {
    clear: both;
  }
  /* ============================================
   header
  ============================================ */
  header {
    position: fixed;
    padding: 23px 0 0;
    height: auto;
    width: 94%;
    left: 3%;
    z-index: 1000;
    top: 20px;
    border-radius: 40px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.75);
  }
  header a :hover {
    text-decoration: none !important;
  }
  header .wrapper {
    padding: 0 0 10px;
    width: 100%;
    height: 100%;
    max-width: none;
    overflow: scroll;
  }
  .logo {
    z-index: 100;
    width: 100%;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo a, .logo span {
    display: inline-block;
    width: 170px;
    max-width: 170px;
  }
  /*-----------------------------------------------------------------
    ハンバーガーメニュー
  ------------------------------------------------------------------*/
  .menu_button, .menu_button span {
    display: inline-block;
    transition: all 0.4s;
  }
  .menu_button {
    position: absolute;
    margin: 12px 0 0;
    width: 36px;
    height: 19px;
    right: 7%;
    top: 15px;
    z-index: 10000;
  }
  .menu_button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all 0.4s;
  }
  .menu_button span:nth-of-type(1) {
    top: 0;
  }
  .menu_button span:nth-of-type(2) {
    top: 8px;
  }
  .menu_button span:nth-of-type(3) {
    bottom: 0;
  }
  /*-----------  active  ------------*/
  .menu_button.active span {
    background: #000;
  }
  .menu_button.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .menu_button.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    animation: active-menu-bar02 0.8s forwards;
  }
  @keyframes active-menu-bar02 {
    100% {
      height: 0;
    }
  }
  .menu_button.active span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
  }
  /*-----------------------------------------------------------------
    gloval navi
  ------------------------------------------------------------------*/
  .dropdown_nav {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
    margin: 0px auto;
    padding: 0 0 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.9);
  }
  .dropdown_nav_open .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .nav_top {
    margin-top: 0px;
    padding-top: 110px;
    text-align: center;
  }
  .nav_top .nav_img {
    text-align: center;
    margin: 10px auto;
  }
  .nav_top .nav_img img {
    width: 40%;
    max-width: 200px;
  }
  .nav_top ul.menu {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    width: 100%;
  }
  .nav_top .menu li {
    margin: 0 1.8%;
    opacity: 0;
  }
  .nav_top .menu li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .nav_top .menu li:nth-child(2) {
    animation-delay: 0.15s;
  }
  .nav_top .menu li:nth-child(3) {
    animation-delay: 0.2s;
  }
  .nav_top .menu li:nth-child(4) {
    animation-delay: 0.25s;
  }
  .nav_top .menu li:nth-child(5) {
    animation-delay: 0.3s;
  }
  .nav_top .menu li:nth-child(6) {
    animation-delay: 0.35s;
  }
  .nav_top .menu li:nth-child(7) {
    animation-delay: 0.4s;
  }
  .nav_top .menu li:nth-child(8) {
    animation-delay: 0.45s;
  }
  .nav_top .menu li:nth-child(9) {
    animation-delay: 0.5s;
  }
  .nav_top .menu li:nth-child(10) {
    animation-delay: 0.55s;
  }
  .nav_top .menu li a {
    font-size: 24px;
    font-size: 2rem;
    font-family: "Roboto Condensed", serif;
    text-align: center;
    position: relative;
    letter-spacing: 0.5px;
    display: block;
    padding: 3px 5px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
  }
  .nav_top .menu li a span {
    opacity: 0.6;
    position: absolute;
    letter-spacing: 0.4px;
    top: 34px;
    left: -6px;
    white-space: nowrap;
    font-size: 10px;
    font-size: 0.8333333333rem;
  }
  .nav_top .menu li a .fa-external-link-alt {
    font-size: 12px;
    font-size: 1rem;
  }
  .nav_top ul.sub_menu {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    width: 100%;
  }
  .nav_top .sub_menu li {
    text-orientation: upright;
    margin: 10px 12px;
    opacity: 0;
  }
  .nav_top .sub_menu li:last-child a {
    display: inline-block;
    padding: 10px;
    border: double 4px #000;
    font-size: 24px;
    font-size: 2rem;
    font-family: "Roboto Condensed", serif;
    text-align: center;
  }
  .nav_top .sub_menu li.menu_sns {
    margin: 10px auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav_top .sub_menu li.menu_sns a {
    display: inline-block;
    margin: 0 14px;
    font-size: 28px;
    font-size: 2.3333333333rem;
  }
  .nav_top .sub_menu li:nth-child(1) {
    animation-delay: 0.7s;
  }
  .nav_top .sub_menu li:nth-child(2) {
    animation-delay: 0.7s;
  }
  .nav_top .sub_menu li:nth-child(3) {
    animation-delay: 0.7s;
  }
  .nav_top .sub_menu li:nth-child(4) {
    animation-delay: 0.7s;
  }
  .nav_top .sub_menu li a {
    position: relative;
    font-size: 10px;
    font-size: 0.8333333333rem;
    letter-spacing: 0.5px;
    display: block;
    line-height: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    opacity: 0.9;
  }
  .nav_top .sub_menu li a .fa-external-link-alt {
    font-size: 12px;
    font-size: 1rem;
  }
  .nav_top .sub_menu li span {
    opacity: 0.6;
    display: block;
    font-size: 8px;
    font-size: 0.6666666667rem;
    width: 100%;
    bottom: -1.3em;
    text-align: center;
  }
  /*-----------------------------------------------------------------
    SNS
  ------------------------------------------------------------------*/
  .d_nav_sns {
    z-index: 10000;
    position: relative;
    opacity: 1;
    margin-top: 0;
    width: auto;
    text-align: center;
  }
  .d_nav_sns ul li {
    display: inline-block;
    width: auto;
    margin: 4px 9px;
  }
  .d_nav_sns ul li a {
    font-size: 22px;
    font-size: 1.8333333333rem;
    color: #000;
  }
  .d_nav_sns ul li a img {
    width: 19px;
  }
  .d_nav_sns ul li.youtube a img {
    width: 25px;
  }
  .d_nav_sns ul li.piapro a img {
    width: 55px;
  }
  /* ============================================
   contents
  ============================================ */
  #content_area {
    width: 100%;
    margin-top: 100vh;
    margin-top: 100dvh;
  }
  footer {
    margin-top: 0;
    text-align: center;
    padding: 20px 25px 20px;
    position: relative;
    z-index: 99;
    background: #2b2b2b;
    /*-----------------------------------------------------------------
      SNS
    ------------------------------------------------------------------*/
  }
  footer .footer-logo {
    margin: 0px auto;
    text-align: center;
  }
  footer .footer-logo img {
    width: 120px;
  }
  footer .contact {
    font-family: "Roboto Condensed", serif;
    font-size: 16px;
    font-size: 1.3333333333rem;
    text-align: center;
  }
  footer .footer-sns-wrap {
    position: absolute;
    right: 30px;
    bottom: 20px;
  }
  footer .footer-sns {
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .footer-sns a {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    font-size: 2rem;
  }
  footer .contact {
    margin: 20px 0 10px;
    text-align: center;
  }
  footer .contact a {
    border: double 4px #c5c5c5;
    padding: 2px 20px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: -0.1px;
    position: relative;
    margin: 0 auto;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-size: 1.3333333333rem;
    font-family: "Roboto Condensed", serif;
    color: #fff;
    text-decoration: none !important;
    display: flex;
    width: 110px;
    align-items: center;
    justify-content: center;
  }
  footer .copyrights {
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
    font-size: 1.1666666667rem;
    letter-spacing: 0.1px;
    padding: 10px 0;
  }
  footer .lang {
    text-align: center;
    font-size: 12px;
    font-size: 1rem;
    margin: 20px auto;
  }
  footer .lang a {
    color: #fff;
  }
  #js-pagetop {
    z-index: 100;
    position: fixed;
    width: 35px;
    height: 35px;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
  }
  #js-pagetop a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
  }
  .pager {
    margin: 50px auto;
  }
  .pagination {
    display: inline-block;
  }
  .pager_top {
    margin: -10px 0 30px;
    height: auto;
  }
  .pager_top .pagination {
    margin-left: -20px;
  }
  .pager_top a, .pager_top span {
    display: block;
    padding: 0 10px;
    float: left;
    width: auto;
    line-height: 26px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 10px 20px;
  }
  .wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #000;
    padding: 3px 10px;
    margin: 2px;
    color: #000;
    font-size: 18px;
    font-size: 1.5rem;
  }
  .wp-pagenavi a:hover, .wp-pagenavi span.current {
    background: #000;
    color: #fff;
  }
}


/*# sourceMappingURL=common.css.map */
