@charset "utf-8";

/* ============================
Foundation
基本のスタイルを整える
============================ */


/* ルートフォントを10px 1rem=10px */

html {
  font-size: 67.5%;
}

@media screen and (max-width: 767px) {
html {
  font-size: 62.5%;
}
}


/* 基本のフォントを1.6rem=16px */

body {
  font-size: 1.6rem;
  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;
  color: #ccc;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 767px) {
  body {
  background: url(img/bg.jpg)fixed;
  }
}

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: brightness(1.1);
  -moz-filter: brightness(1.1);
  -o-filter: brightness(1.1);
  -ms-filter: brightness(1.1);
  filter: brightness(1.1);
}


/* ============================
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--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: 0 1em;
}


/* ============================
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 2.4rem;
  display: block;
  margin: 0;
}

.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: .6em 2.4rem;
    display: block;
    margin: 0;
  }
}


/* ----------------------------
メインセクション
---------------------------- */

.c-mainSec__head {
  margin:0 0 20px 0;
  font-size: 2.6rem;
  text-align: center;
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
}

.c-mainSec__subhead {
  margin: 0 0 1em;
  padding: 0;
  font-size: 2.4rem;
  color: #C6C060;
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
  text-align: center;
}

.c-text-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.c-entry {
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
  padding: 0;
  margin: .5em 0 2em;
}

.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>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 {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.p-mainSec {
  margin: 0;
}

@media (max-width: 767px) {
  .p-mainSec_wrapper {
    flex-direction: column;
  }
}


/* ----------------------------
概要リスト
---------------------------- */

.p-outline_list {
  margin: 0;
  padding: 0;
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
}

.p-outline_list>dt {
  margin: 3em 0 0;
  padding: 0;
  font-size: 1.4rem;
}

.p-outline_list>dd {
  margin: 0 0 1em;
  padding: 0;
  font-size: 1.9rem;
  color: #C6C060;
}


/* ----------------------------
新着情報
---------------------------- */

.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;
}


/* ----------------------------
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: 1.4rem;
}

@media (max-width: 767px) {
  .u-dn-pc {
    display: none;
  }
  .u-dn-sp {
    display: block;
  }
}

#js-loading {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#js-loaded {
  transition: 1s;
}

.u-mt-l {
  margin-top: 100px;
}
