@charset "utf-8";

/* ============================
Foundation
基本のスタイルを整える
============================ */


/* ルートフォントを10px 1rem=10px */
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box;-o-box-sizing: border-box;  -ms-box-sizing: border-box;box-sizing: border-box;}

html {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
html {
  font-size: 14px;
}
}


/* 基本のフォントを1.6rem=16px */

body {
  font-size: 1rem;
  font-family: 'Noto Sans Japanese', sans-serif;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
/*background: url(img/bg2.png)center/cover no-repeat fixed, url(img/bg.jpg)fixed;*/
background:#000;
  color: #ccc;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  body {
  }
}

dl {
  margin: .5em 0 1em;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* リンク色 */

a:link {
  color: #BBD762;
}

a:visited {
  color: #0caee7;
}

a:hover {
  color: #ff008b;
}

a:active {
  color: #ff008b;
}

a img:hover {
-webkit-filter: drop-shadow(0 0 14px #C6C060);
}


/* ============================
Layout
大まかなレイアウトを決めるスタイル
============================ */

.l-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  box-sizing: border-box;
  z-index: 999;
  transition: 1s;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.8)
}

@media screen and (max-width: 1024px) {
  .l-header {
    justify-content: flex-end;
    background: transparent;
  }
}

.l-header__logo {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 0 0 10px;
}

.l-mainContents {
  margin: 0 auto;
  padding: 20px 1em 30px;
}

.l-mainContents h2{
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
  font-size: 1.8rem;
  width:100%;
}

.l-mainContents--blue {
  background: rgba(18, 13, 86, 0.65);
}

.l-mainContents--purple {
  background: rgba(130, 21, 90, 0.45);
}

.l-footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5em 1em 0 1em;
}

section {
background: rgba(0, 0, 0, 0.8);
  width:100%;
}

section:nth-child(2n) {
background: rgba(30, 30, 30, 0.8);
}

/* ============================
Component
再利用できるもの
============================ */


/* ----------------------------
ヘッダー
---------------------------- */

.c-header__icon {
  height: 100%;
  width: 50px;
}

.c-drawer_menu {
  display: flex;
}

.c-drawer_menu__list a {
  text-decoration: none;
  color: #fff;
  padding: .6em 2rem;
  display: block;
  margin: 0;
  font-size:1rem;
}

.c-drawer_menu__list a:hover {
-webkit-filter: drop-shadow(0 0 14px #C6C060);
box-shadow: 0 0 5px #C6C060;
}

.c-drawer_button {
  display: none;
}


/* スマホ */

@media screen and (max-width: 1024px) {
  .c-drawer_button {
    display: flex;
    align-items: center;
  }
  .c-drawer_wapper {
    display: none;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 998;
    box-shadow: 0 4px 53px 0px rgba(255, 255, 255, 0.5);
  }
  .c-drawer_menu {
    display: block;
  }
  .c-drawer_menu__list {
    margin: 0 10px 0 0;
    list-style: none;
    text-align: center;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
  .c-drawer_menu__list a {
    padding: 1.2em 2.4rem;
    display: block;
    margin: 0;
    border-top:#666 dotted 1px;
  }
}


/* ----------------------------
メインセクション
---------------------------- */

.c-mainSec__head {
  font-size: 2rem;
  text-align: center;
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
}

.c-mainSec__subhead {
  margin: 0 0 1em;
  padding: 0;
  font-size: 2rem;
  color: #C6C060;
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
  text-align: center;
}

.c-text-wrapper {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.c-entry {
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
  font-size: 1.2rem;
  padding: 0;
  margin: .5em 0 2em;
  line-height:1.8;
}

.c-entry--accent {
  color: #C6C060;
}

.c-entry--attention {
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
  font-size: 1.4rem;
  color: #E60180;
}

.c-logo--uzumasapatio{
    margin: 60px auto 0;
    max-width: 500px;
}

.c-logo--uzumasapatio>a>img{
width: 100%;
}


/* ----------------------------
トップへもどる
---------------------------- */

.c-page_top{
  text-align:center;
  margin-top:1em;
}

.c-page_top img{
  cursor: pointer;
}


/* ----------------------------
詳細リスト
---------------------------- */

.c-detail_list {
  margin: 0;
}

.c-detail_list__title {
  font-weight: 600;
}

.c-detail_list__desc {
  font-size: 1.4rem;
}


/* ----------------------------
コンテンツリスト
---------------------------- */

.c-contents_list {
  display: flex;
  flex-wrap: wrap;
}

.c-contents_list__item {
  width: 49%;
}

@media screen and (max-width: 1024px) {
  .c-contents_list__item {
    width: 100%;
  }
}
/* ----------------------------
画像リスト
---------------------------- */
.c-img_list {

   line-height: 0;
   -webkit-column-count: 5;
   -webkit-column-gap:   0px;
   -moz-column-count:    5;
   -moz-column-gap:      0px;
   column-count:         5;
   column-gap:           0px;
}
.c-img_list img {
  width: 100% !important;
  height: auto !important;
}


@media screen and (max-width: 768px) {
  .c-img_list {
-moz-column-count:    2;
  -webkit-column-count: 2;
  column-count:         2;
  }
}

@media screen and (max-width: 321px) {
  .c-img_list {
-moz-column-count:    2;
  -webkit-column-count: 2;
  column-count:         2;
  }
}

/* ----------------------------
フッター
---------------------------- */

.c-copyrights {
  text-align: center;
  margin: 0;
  padding: 1em 0;
}


/* ----------------------------
アクセス
---------------------------- */

.c-store_wrapper {
  display: flex;
}

.c-store_map {
  width: 50%;
  height: 300px;
  margin: 0 2em 0 0;
}

@media (max-width: 767px) {
  .c-store_wrapper {
    display: block;
  }
  .c-store_map {
    width: 100%;
    height: auto;
  }
}


/* ----------------------------
ソーシャル
---------------------------- */

.c-social_share {
  max-width: 1280px;
  margin: 0 auto;
}


/* ----------------------------
タグ
---------------------------- */

.c-tag {
  border-radius: 3px;
  background: #333;
  color: #fff;
  border-radius: 3px;
  padding: .1em 1em .15em;
  margin: 0 1em 0 0;
}

.c-tag--large {
  font-size: 2rem;
}

.c-tag--small {
  font-size: 1.2rem;
}

.c-tag--limited {
  background: #d60000;
}

.c-tag--presale {
  background: #EAFF00;
  color: #4475CA;
}


/* ============================
Project
再利用できないもの
============================ */


.p-mainSec_wrapper {
  width:100%;
/*  display: flex;*/
/*  flex-direction: column;*/
/*  justify-content: center;*/
}

.p-mainSec {
  margin: 0;
  width:100%;
}

.p-mainSec h2{
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
  font-size: 1.8rem;
}

.p-mainSec_list {
  min-width: 800px;
}

.goods {
  min-width: 0;
}

@media (max-width: 767px) {
  .p-mainSec_wrapper {
    flex-direction: column;
  }
  .p-mainSec_list {
  min-width: 100%;
  }
}

.p-serviceSec_wrapper {
padding: 0 0 1.5em 0;
margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  max-width:1500px;
}

.p-serviceSec_wrapper h2{
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
  width:100%;
}

.p-serviceSec {
  margin: 0;
  width: 32%;
}

@media (max-width: 767px) {
  .p-serviceSec_wrapper {
  display: flex;
  flex-flow: row wrap;
  }
  .p-serviceSec {
  width: 100%;
  }
}


@media (max-width: 767px) {
#navi_bottom{flex-flow: wrap;}
#navi_bottom .link_wrapper{margin: 0;}
}

.link_wrapper {
padding: 0;
margin: 0 auto;
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
  width:80%;
  border:1px solid #fff;
}

.link_wrapper a {
display:block;
text-align: center;
padding: 1.5em 0 1.5em 0;
margin: 0 auto;
font-size:120%;
text-decoration:none;
color:#fff;
}

.link_wrapper a:hover {
-webkit-filter: drop-shadow(0 0 14px #C6C060);
box-shadow: 0 0 5px #C6C060;
}

@media (max-width: 767px) {
#navi_bottom .link_wrapper {
    width: 50%;
    border: 1px solid #fff;
    box-sizing: border-box;
}
.link_wrapper a {
padding: 1em 0 1em 0;
}
}
/* ----------------------------
概要リスト
---------------------------- */

.p-outline_list {
  margin: 1em 0 3em 0;
  padding: 0;
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
  text-align: center;
}

.p-outline_list>dt {
  margin: 0;
  padding: 0;
  background: #222;
  color: #FFF;
}

.p-outline_list>dd {
  margin: 0;
  padding: 1em;
/*  font-size: 1.9rem;*/
  color: #C6C060;
  border: solid 1px #222
}

.p-outline_list>dt.bg111 {
  background: #111;
}

.p-outline_list>dd.bdr111 {
  border: solid 1px #111;
}

.goods>dd {
  padding: 0;
  border: none;
}

/* ----------------------------
新着情報
---------------------------- */

.p-newsWrapper {
  /*  width: 350px; */
}

.p-mainSec--newInfo {
  border: 2px solid #E60180;
  padding: 0;
  /*  width: 350px; */
  transition: 1s;
  margin: 50px auto 200px;
  border-radius: 3px;
}

.p-mainSec__head--newInfo {
  background: #E60180;
  border-bottom: 0;
  color: #fff;
  margin: 0;
  padding: 10px 3%;
}

.p-newInfo_list {
  margin: 3%;
}

@media (max-width: 1366px) {
  .p-mainSec--newInfo,
  .p-newsWrapper {
    width: 100%;
  }
}

.p-topImg {
  margin: 50px 0 0;
}

.p-signup1 {
  position: absolute;
  width: 20vw;
  left: 12vw;
  top: 20vw;
  z-index:10;
  -webkit-transition: 1s;
          transition: 1s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  z-index:10;
}
@media screen and (max-width: 1024px) {
  .p-signup1 {
    width: 350px;
    top: 0;
    left: 0px;
    position: relative;
    margin: 20px auto;
  }
}

.p-signup2 {
  position: absolute;
  width: 15vw;
  right: 12vw;
  top: 20vw;
  z-index:10;
  -webkit-transition: 1s;
          transition: 1s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  z-index:15;
}
/*@media screen and (max-width: 1024px) {
  .p-signup2 {
    width: 25vw;
    top: 0;
    right: 0px;
    position: relative;
    margin: 20px auto;
  }
}*/

.p-signup3 {
  position: absolute;
  width: 15vw;
  right: 12vw;
  top: 33vw;
  z-index:10;
  -webkit-transition: 1s;
          transition: 1s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  z-index:10;
  transform: rotate(15deg)
}
/*@media screen and (max-width: 1024px) {
  .p-signup3 {
    width: 25vw;
    top: 0;
    right: 0px;
    position: relative;
    margin: 20px auto;
  }
}*/

.p-signup1 img, .p-signup2 img, .p-signup3 img {
  width: 100%
}


/* ----------------------------
js
---------------------------- */

.js-fixed_sidebar--active {
  position: fixed;
  top: 10px;
  transition: 1s;
}

@media (max-width: 1366px) {
  .js-fixed_sidebar--active {
    position: static;
  }
}


/* ============================
Utility
汎用クラス
============================ */

.u-flx {
  display: flex;
  justify-content: center;
  align-items: center;
}

.u-dn {
  display: none;
}

.u-dn-sp {
  display: none;
}

.u-fc-fff {
  color: #fff;
}

.u-fs-small {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .u-dn-pc {
    display: none;
  }
  .u-dn-sp {
    display: block;
  }
  #u-dn-hb {
    display: none;
  }
}

#js-loading {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#js-loaded {
  transition: 1s;
}

.u-mt-l {
  margin-top: 100px;
}
/*
ボタン
--------------------------------------------------------- */
.p-button {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #EDFF3E;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  font-weight: 500;
  height: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: .1s;
          transition: .1s;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  outline: 0 solid #ccc;
}
.p-button > a {
  padding: 1em;
  text-decoration: none;
  color: #333;
  width: 100%;
}
.p-button:hover {
  outline: 5px solid #EDFF3E;
}
.p-button--primary {
  background: #e52f74;
}
.p-button--primary > a {
  color: #fff;
}
.p-button--primary:hover {
  outline: 5px solid #e52f74;
}

/*
バナー
--------------------------------------------------------- */
.banner_box {
  width: 100%;
  max-width: 600px;
  background: #aaa;
  display: none;    /* 最初は非表示にする */
  position: fixed;  /* 表示位置を固定 */
  bottom: 0;
    left: 50%;
    padding: 0px;
    transform: translateX(-50%);
    box-sizing: border-box;
}
.banner {
  display: flex;
}
.banner div {
    padding: 1px;
}
.banner img {
  width: 100%;
  display: block;
}
.close {
    position: absolute;
    right: 1px;
    top: 1px;
    cursor: pointer;
    height: 15px;
    width: 15px;
    z-index: 2147483646;
    background-color: #ffffff;
    opacity: 1;
}
.close svg {
    position: absolute;
    top: 0;
    right: 0;
    height: 15px;
    width: 15px;
    stroke: #00aecd;
    fill: #00aecd;
    stroke-width: 1.25;
}