@charset "UTF-8";
/* CSS Document */
/*======================================
nav common
/*======================================*/
header {
  background: #fff;
}
#nav-top {
  padding-top: 1.5em;
}
.logo {
  width: 20%;
  max-width: 220px;
  margin: 0 auto;
}
.logo a {
  display: block;
  width: 100%;
  line-height: 0;
  height: 0;
  background: url(../img/logo-CMN.png) no-repeat center;
  background-size: cover;
  padding-top: 26.11607142%;
}
.logo h1 {
  margin: 0;
}
.logo h1 span {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: none;
}
.nav-CMN {
  margin: 1.5em auto .7em;
}
.nav-CMN a {
  font-family: "DINNextLTPro-Bold";
  display: block;
  text-align: center;
  padding-bottom: .7em;
  letter-spacing: 2px;
  font-size: 1.8vw;
}
.nav-CMN > ul > li {
  position: relative;
  max-width: 11em;
  width: calc((100% - 1em*6)/7);
}
.nav-CMN > ul > li:not(:last-of-type) {
  margin-right: 1em;
}
/*hover action first level*/
.nav-CMN > ul > li > a {
  position: relative;
}
.nav-CMN > ul > li > a:after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: .3em;
  background: rgba(100, 40, 200, .4);
  height: 3px;
  transition-property: left, right;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
.nav-CMN > ul > li.current > a:after {
  left: 0;
  right: 0;
}
.nav-CMN > ul > li:nth-of-type(2).current > a:after, .nav-CMN > ul > li:nth-of-type(3).current > a:after {
  left: 50%;
  right: 50%;
}
.nav-CMN > ul > li > a:hover:after, .nav-CMN > ul > li:nth-of-type(2).current > a:hover:after, .nav-CMN > ul > li:nth-of-type(3).current > a:hover:after {
  left: 0;
  right: 0;
}
.nav-CMN > ul > li > a:hover {
  opacity: 1;
}
/*======================================
nav-top
/*======================================*/
@keyframes navslidein {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#nav-top .nav-CMN li {
  opacity: 0;
}
#nav-top .nav-CMN li:nth-of-type(1) {
  animation: navslidein 1.5s ease 1s 1 forwards;
}
#nav-top .nav-CMN li:nth-of-type(2) {
  animation: navslidein 1.5s ease 1.3s 1 forwards;
}
#nav-top .nav-CMN li:nth-of-type(3) {
  animation: navslidein 1.5s ease 1.6s 1 forwards;
}
#nav-top .nav-CMN li:nth-of-type(4) {
  animation: navslidein 1.5s ease 1.9s 1 forwards;
}
#nav-top .nav-CMN li:nth-of-type(5) {
  animation: navslidein 1.5s ease 2.1s 1 forwards;
}
#nav-top .nav-CMN li:nth-of-type(6) {
  animation: navslidein 1.5s ease 2.4s 1 forwards;
}
#nav-top .nav-CMN li:nth-of-type(7) {
  animation: navslidein 1.5s ease 2.7s 1 forwards;
}
/*======================================
lang-swich
/*======================================*/
.lang-swich {
  position: absolute;
  top: 0;
  right: 1em;
}
.lang-swich .bogo-language-switcher li {
  padding: .5em 1em;
  text-align: center;
  background: rgba(100, 40, 200, .2);
  border-radius: 0 0 5px 5px;
  transition: all 0.3s ease;
}
.bogo-language-switcher li:hover {
  transition: all 0.3s ease;
  opacity: .7;
}
.bogo-language-switcher .current {
  display: none;
}
.bogo-language-switcher a:hover {
  opacity: 1;
}
.bogo-language-switcher a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f362";
  padding-right: 6px;
}
.lang-swich .bogo-language-switcher li.untranslated {
  opacity: .3;
  background: #ccc;
}
/*======================================
nav-fixed
/*======================================*/
#nav-fixed {
  position: fixed;
  z-index: 99999;
  width: 100%;
  background: rgb(255, 255, 255, .9);
  padding: 0 1em;
  top: -400px;
  left: 0;
}
#nav-fixed > .flex {
  max-width: 1300px;
  margin: 0 auto;
}
#nav-fixed .nav-CMN {
  width: calc(100% - 110px - 1em);
  margin-right: 1em;
}
#nav-fixed .nav-CMN a {
  font-size: 1.8vw;
  letter-spacing: 1px;
}
#nav-fixed .lang-swich {
  position: inherit;
  max-width: 110px;
}
#nav-fixed .lang-swich .bogo-language-switcher li {
  border-radius: 5px;
}
@media screen and (min-width:980px) {
  .nav-CMN a {
    font-size: 120%;
  }
  #nav-fixed .nav-CMN a {
    font-size: 110%;
    letter-spacing: 1px;
  }
}
@charset "UTF-8";
/*======================================
type
/*======================================*/
html {
  font-family: "CezannePro-M";
  color: #383838;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}
.gothic-M {
  font-family: "CezannePro-M";
}
.gothic-DB {
  font-family: "CezannePro-DB";
}
.gothic-B {
  font-family: "CezannePro-B";
}
.gothic-DIN {
  font-family: "DINNextLTPro-Bold";
}
.Font-Awesome {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
h1.gothic, h2.gothic, h3.gothic, h4.gothic, h5.gothic, h6.gothic {
  font-weight: bold;
}
/*======================================
layout
/*======================================*/
#contents-area {
  position: relative;
  z-index: 1
}
.bg {
  padding: 3em 0;
}
.bg-top {
  padding-top: 3em;
}
.bg-bottom {
  padding-bottom: 3em;
}
/*======================================
background
/*======================================*/
/*common*/
@keyframes BGFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes BGFadeOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bg-fadein {
  animation: BGFadeIn .7s ease-out 0s 1 forwards;
}
.bg-fadeout {
  animation: BGFadeOut .7s ease-out 0s 1 forwards;
}
#bgFixd.footer {
  background: url(../img/bg-town.jpg) no-repeat center top;
  background-size: cover;
  animation: BGFadeIn .7s ease-out 0s 1 forwards;
}
.bgFixd-js, .bgFixd-js:after, .bgFixd-js:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-bottom: 100px;
  transform: translate(0, 0);
  opacity: 0;
  z-index: -10;
}
.bg-grid {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 0), linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 0);
  background-size: 12px 12px;
  background-attachment: fixed;
}
.bg-lightPurple {
  background: rgba(100, 40, 200, .1);
}
.bg-purple {
  background: rgba(100, 40, 200, 1);
  color: #fff;
}
/*background color*/
.bg-white {
  background: rgba(255, 255, 255, 1);
}
.bg-gray {
  background: rgba(67, 85, 105, .05);
}
.bg-beige {
  background: rgba(215, 210, 185, 1);
  color: #fff;
}
.bg-light_beige {
  background: rgba(240, 235, 210, 1);
}
.bg-bright_beige {
  background: rgba(180, 160, 140, .1)
}
/*======================================
color
/*======================================*/
a, a:hover, a:visited {
  color: inherit;
}
.txt-normal {
  color: #585858;
}
.txt-white {
  color: #fff;
}
.txt-purple {
  color: rgba(100, 40, 200, 1);
}
.bg-OR, .bg-OR-gr, .bg-BL, .bg-BL-gr, .bg-BL-gr-ver, .bg-OR a, .bg-OR-gr a, .bg-BL a, .bg-BL-gr a, .bg-BL-gr-ver a, .bg-OR a:visited, .bg-OR-gr a:visited, .bg-BL a:visited, .bg-BL-gr a:visited, .bg-BL-gr-ver a:visited {
  color: #fff;
}
/*======================================
SNS_Btn
/*======================================*/
.SNS_Btn li {
  background: rgba(0, 0, 0, .5);
}
.SNS_Btn li, .SNS_Btn a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.SNS_Btn span {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
.SNS_Btn li:not(:last-of-type) {
  margin-right: .7em;
}
.SNS_Btn li:nth-of-type(1) a {
  background: url(../img/SNS-LinkedIn.png) no-repeat center;
  background-size: cover;
}
.SNS_Btn li:nth-of-type(2) a {
  background: url(../img/SNS-YouTube.png) no-repeat center;
  background-size: cover;
}
.SNS_Btn li:nth-of-type(3) a {
  background: url(../img/SNS-LinkedIn.png) no-repeat center;
  background-size: cover;
}
.SNS_Btn li:nth-of-type(4) a {
  background: url(../img/SNS-LinkedIn.png) no-repeat center;
  background-size: cover;
}
/*LinkedIn*/
#LinkedIn {
  text-align: center;
  margin: 3em auto 0;
}
#LinkedIn p {
  font-size: 110%;
  text-align: center;
}

#YouTube {
  text-align: center;
  margin: 3em auto 0;
}
#YouTube p {
  font-size: 110%;
  text-align: center;
}
.LI-logo {
  max-width: 180px;
  width: 50%;
  margin: 0 auto 1em;
}
.LI-logo a {
  display: block;
  width: 100%;
  background: url(../img/LI-Logo.png) no-repeat center;
  padding-top: 24.41229656%;
  height: 0;
  line-height: 0;
  background-size: cover;
}
.LI-logo a span {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
/*
.SNS_Btn li:nth-of-type(1) a {
  background: url(../img/SNS-LINE.png) no-repeat center;
  background-size: cover;
}
.SNS_Btn li:nth-of-type(2) a {
  background: url(../img/SNS-Instagram.png) no-repeat center;
  background-size: cover;
}
.SNS_Btn li:nth-of-type(3) a {
  background: url(../img/SNS-Facebook.png) no-repeat center;
  background-size: cover;
}
.SNS_Btn li:nth-of-type(4) a {
  background: url(../img/SNS-Twitter.png) no-repeat center;
  background-size: cover;
}
*/
/*======================================
section-title
/*======================================*/
.section-title {
  text-align: center;
}
.section-title h2 {
  position: relative;
  display: inline-block;
  font-size: 300%;
  line-height: 1em;
  padding: .3em 1em;
  margin-bottom: 1em;
}
.section-title h2:before, .section-title h2:after {
  position: absolute;
  content: "";
  border: 1px solid rgba(100, 40, 200, 1);
  width: .8em;
  height: .8em;
  border-radius: 2px;
}
.section-title h2:before {
  top: 0;
  left: 0;
  border-bottom: transparent;
  border-right: transparent;
}
.section-title h2:after {
  bottom: 0;
  right: 0;
  border-top: transparent;
  border-left: transparent;
}
.section-title.title-W h2:before, .section-title.title-W h2:after {
  border-color: #fff;
}
/*======================================
section-lede
/*======================================*/
body, section, article {
  text-align: center;
}
.section-lede {
  display: inline-block;
  margin-bottom: 2em;
}
.section-lede p {
  text-align: justify;
  font-size: 110%;
  line-height: 1.6em;
}
.en .section-lede p {
  text-align: center;
}
/*======================================
Btn
/*======================================*/
.ja .Btn {
  font-family: "CezannePro-DB";
}
.en .Btn {
  font-family: "DINNextLTPro-Medium";
  letter-spacing: 3px;
}
.Btn:hover {
  opacity: 1;
  transition: all .5s ease;
}
.Btn {
  position: relative;
  width: 90%;
  max-width: 300px;
  text-align: center;
  margin: 3em auto 0;
  overflow: hidden;
}
.Btn:before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid rgba(255, 255, 255, .2);
  transform: translateX(-100%);
  transition: all 0.7s ease;
}
.Btn:hover:before {
  transform: translateX(0);
  transition: all 0.3s ease;
}
.Btn-purple {
  background: rgba(100, 40, 200, 1);
  color: #fff;
}
.Btn-purple:before {
  border-bottom: 80px solid rgba(255, 255, 255, .2);
  color: #fff;
}
.Btn a {
  position: relative;
  display: block;
  color: inherit;
  font-size: 110%;
  text-decoration: none;
  padding: 1.3em 2.5em;
  width: 100%;
  height: auto;
  line-height: 1.2em;
}
.Btn a:hover {
  opacity: 1;
}
.Btn a:after {
  position: absolute;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  right: 20px;
  top: 50%;
  margin-top: -8px;
}
.Btn a:hover:after {
  right: 15px;
}
/*Btn__margin*/
.Btn.Btn-margin {
  margin: 4em auto;
}
/*arrow-bottom*/
.Btn.Btn__arrow--bottom a:after {
  border-top: none;
  border-bottom: 2px solid #fff;
  margin-top: -10px;
}
.Btn.Btn__arrow--bottom a:hover:after {
  right: 20px;
  top: calc(50% + 3px);
}
/*Btn__small*/
.Btn.Btn__small a {
  font-size: 85%;
}
.Btn.Btn__small a:after {
  width: 12px;
  height: 12px;
  right: 15px;
  margin-top: -6px;
}
.Btn.Btn__small a:hover:after {
  right: 10px;
}
/*Btn color*/
.Btn__orange {
  background: rgba(250, 185, 45, 1);
}
.Btn__red {
  background: rgba(230, 85, 35, 1);
}
.Btn__LINE {
  background: rgba(0, 185, 0, 1);
}
/*Btn boder*/
.Btn__more {
  border: 2px solid rgba(25, 25, 90, .5);
  border-radius: 3px;
  margin-top: .5em;
  display: inline-block;
  width: auto;
}
.Btn__more a {
  color: rgba(230, 85, 35, 1);
  padding: 1em 5em;
}
.Btn.Btn__more a:after {
  border-right: 2px solid rgba(230, 85, 35, 1);
  border-top: 2px solid rgba(230, 85, 35, 1);
}
/*======================================
script, plugin
/*======================================*/
/* page-top ----------------------*/
#page-top {
  display: block;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}
#page-top a {
  position: relative;
  display: block;
  height: 60px;
  width: 60px;
  border-radius: 60px;
  margin: 0;
  padding: 0;
  text-decoration: none;
  background: rgba(100, 40, 200, .4);
}
#page-top a:after {
  position: absolute;
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  border: 0px;
  border: solid 2px #fff;
  border-bottom: transparent;
  border-right: transparent;
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -11px;
}
#page-top a span {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
/* grecaptcha-badge ----------------------*/
.grecaptcha-badge {
  display: none;
}
/* パンくずリスト ----------------------*/
.bread_crumb {
  padding: 2em 0;
  background: rgba(250, 245, 245, 1);
  color: #999;
  line-height: 1.5em;
  font-size: 13px;
  display: block;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  text-align: left;
}
.bread_crumb a {
  color: #666;
  text-decoration: underline;
}
.bread_crumb i {
  margin: 0 1em;
  font-size: 80%;
  vertical-align: .1em;
}
.bread_crumb i:after {}
.bread_crumb i.fa-home {
  margin: 0;
  font-size: 100%;
  vertical-align: inherit;
}
/*FBplugin*/
#FBplugin {
  max-width: 500px;
  width: auto;
  margin: 0 auto;
  padding: 10px;
  background: #f5f6f7;
}
/*======================================
pagenation
/*======================================*/
/*smooth scroll jump*/
.smooth-scroll {
  padding-top: 1em;
  margin-top: -1em;
}
/* archive page ----------------------*/
.wp-pagenavi {
  text-align: center;
  font-weight: bold;
  margin: 3em auto 0;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a, .wp-pagenavi span.current {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  vertical-align: middle;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  background: rgba(100, 40, 200, .5);
  transition: all 0.3s ease;
}
.wp-pagenavi span.current {
  opacity: .5;
  width: 48px;
  height: 48px;
  line-height: 48px;
  margin: 0 5px;
  background: rgba(100, 40, 200, .5);
}
.wp-pagenavi a:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.wp-pagenavi a.first, .wp-pagenavi a.last {
  text-indent: 100%;
  white-space: nowrap;
  position: relative;
}
.wp-pagenavi a.first:after, .wp-pagenavi a.last:after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -4px;
}
.wp-pagenavi a.first:after {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  left: 50%;
  margin-left: -2px;
}
.wp-pagenavi a.last:after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  right: 50%;
  margin-right: -2px;
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  background: transparent;
  width: auto;
  color: rgba(100, 40, 200, .5);
  transition: all 0.3s ease;
}
.wp-pagenavi a.previouspostslink:hover, .wp-pagenavi a.nextpostslink:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
  transform: scale(1.2);
}
/* single_navi page ----------------------*/
#single_navi {
  text-align: center;
  margin: 5em auto;
}
#single_navi .post_previous, #single_navi .post_next {
  display: inline-block;
  text-align: center;
  width: calc(50% - .5em);
  max-width: 240px;
}
#single_navi .post_previous {
  margin-right: .5em;
}
#single_navi a {
  position: relative;
  font-size: 90%;
  height: 48px;
  line-height: 48px;
  display: block;
  text-align: center;
  border: 2px solid rgba(100, 40, 200, .5);
  border-radius: 5px;
  padding: 0;
  color: rgba(100, 40, 200, .7);
}
#single_navi a:after {
  position: absolute;
  width: 2.5em;
  height: 48px;
  line-height: 48px;
  color: rgba(100, 40, 200, .7);
  top: -2px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding: 0;
  transition: all 0.3s ease;
}
#single_navi .post_previous a:after {
  content: "\f053";
  left: 0;
}
#single_navi .post_next a:after {
  content: "\f054";
  right: 0;
}
#single_navi .post_previous a:hover:after {
  transform: translateX(-5px);
}
#single_navi .post_next a:hover:after {
  transform: translateX(5px);
}
/*======================================
FadeIn
/*======================================*/
@keyframes bodyFadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@-webkit-keyframes bodyFadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
body {
  animation: bodyFadeIn 3s ease 0s 1 normal;
}
@charset "UTF-8";
/*======================================
dummy
/*======================================*/
a {
  display: block;
}
p a, span a {
  display: inline-block;
}
@media screen and (max-width:567px) {}
/*======================================
header
/*======================================*/
header {
  position: relative;
  padding: 0;
}
header #nav-top .wrap {
  max-width: none;
}
/*page header::::::::*/
.header-img {
  width: 100%;
  margin: 0 auto;
  height: 0;
  min-height: 0;
  padding-top: 65%;
}
.header-img .bg-grid {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 8px 8px;
}
.header-img .inner {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  z-index: 1;
}
.header-img h1 .page_main_title {
  display: block;
}
.header-img h1 .page_main_title span {
  position: relative;
  display: inline-block;
  font-size: 200%;
  line-height: 1em;
  padding: .3em 1em;
  margin-bottom: .3em;
}
.header-img h1 .page_main_title span:before, .header-img h1 .page_main_title span:after {
  position: absolute;
  content: "";
  border: 1px solid #fff;
  width: .8em;
  height: .8em;
  border-radius: 2px;
}
.header-img h1 .page_main_title span:before {
  top: 0;
  left: 0;
  border-bottom: transparent;
  border-right: transparent;
}
.header-img h1 .page_main_title span:after {
  bottom: 0;
  right: 0;
  border-top: transparent;
  border-left: transparent;
}
.header-img h1 .page_main_title small {
  font-size: 100%;
}
.header-img img {
  height: auto;
  width: 100%;
  max-width: none;
}
/*======================================
footer
/*======================================*/
footer {
  color: #fff;
}
footer .bg-grid {
  padding: 4em 0 2em;
}
footer .logo-W {
  max-width: 280px;
  height: auto;
  margin: 0 auto 2em;
}
footer .logo-W a {
  background: url(../img/logo-W.png) no-repeat center;
  padding-top: 26.11683048%;
  background-size: contain;
  display: block;
  width: 100%;
  height: 0;
}
footer h1 {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
p#copy-right {
  color: #fff;
  text-align: center;
  font-size: 70%;
  padding: 3em 0 0;
}
footer #FooterNav li {
  text-align: left;
}
footer #FooterNav li span {
  font-family: "DINNextLTPro-Bold";
}
footer #FooterNav li em {
  font-family: "CezannePro-DB";
}
footer #FooterNav li:first-of-type {
  width: 100%;
}
footer #FooterNav li:first-of-type a {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, .3);
  border-radius: 5px;
  line-height: 1em;
  padding: 2em .5em;
  margin-bottom: 1em;
}
footer #FooterNav li:first-of-type span {
  position: relative;
  font-size: 160%;
  margin-right: 2em;
  line-height: 0;
  vertical-align: -3px;
}
footer #FooterNav li:first-of-type span:after {
  position: absolute;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -11px;
  border: 1px solid transparent;
  border-right-color: #fff;
  border-top-color: #fff;
  transform: rotate(45deg);
  top: 50%;
  right: -1em;
}
footer #FooterNav li:first-of-type em {
  font-size: 90%;
}
footer #FooterNav li:not(:first-of-type) {
  width: 50%;
  line-height: 1em;
  padding: .7em 0;
}
footer #FooterNav li:not(:first-of-type) span {
  margin-right: .5em;
  font-size: 110%;
}
footer #FooterNav li:not(:first-of-type) em {
  font-size: 85%;
}
.en footer #FooterNav li {
  text-align: center;
}
.en footer #FooterNav li:not(:first-of-type) em {
  display: none;
  opacity: 0;
  overflow: hidden;
}
/*======================================
404 / wating
/*======================================*/
#page-404 h2 {
  color: rgba(100, 40, 200, .5);
  font-size: 200%;
  margin-bottom: 2em;
}
#page-wating {
  display: inline-block;
  max-width: 700px;
  margin: 0 auto 0;
  border-radius: 10px;
  padding: 5em 0;
  background: rgba(100, 40, 200, .1);
}
#page-wating p {
  text-align: center;
}
/*======================================
cookies
/*======================================*/
.ja #widget_area #eu-cookie-law a {
  font-family: "CezannePro-DB";
  display: block;
  text-align: center;
  margin: .5em auto 0;
}
.en #widget_area #eu-cookie-law a {
  font-family: "DINNextLTPro-Bold";
}
#widget_area #eu-cookie-law input {
  transition: all 0.3s ease;
  font-family: "CezannePro-DB";
}
#widget_area #eu-cookie-law input.accept {
  position: absolute;
  bottom: 1em;
  right: 1em;
  left: auto;
  width: calc(100% - 2em);
}
.en #widget_area #eu-cookie-law input.accept {
  font-family: "DINNextLTPro-Bold";
}
#widget_area #eu-cookie-law input:hover {
  opacity: .7;
  transition: all 0.3s ease;
}
/*======================================
cookies
/*======================================*/
#cookie-law-info-bar {
  max-width: 700px;
  bottom: 0 !important;
  left: 1em !important;
  width: calc(100% - 2em) !important;
  padding: 1em !important;
  background: rgba(37, 46, 57, .9) !important;
  color: #ccc !important;
  border: none !important;
  border-radius: 5px 5px 0px 0px;
  text-align: left;
}
.cli-bar-message {
  text-align: justify !important;
  display: inline-block;
}
.cli-bar-message a {
  text-decoration: underline;
  color: #fff;
}
.cli-bar-btn_container {
  justify-content: center;
}
.cli-bar-btn_container a {
  opacity: .8;
}
.cli-bar-btn_container a:hover {
  opacity: 1;
}
.cli-style-v2 .cli-bar-btn_container .cli_action_button {
  margin: 5px 5px 0 5px !important;
  padding: 8px 20px !important;
  border-radius: 3px;
  font-family: "DINNextLTPro-Bold";
}
#cookie_action_close_header {
  background: #fff !important;
  color: rgba(37, 46, 57, .9) !important;
}
#cookie_action_close_header:hover {
  color: rgba(100, 40, 200, 1) !important;
}
#cookie_action_close_header_reject {
  background: none !important;
}
#cookie_action_close_header_reject:hover {
  background: #fff !important;
  color: rgba(37, 46, 57, .9) !important;
}
.ja .cli-bar-message.ja {
  display: block;
}
.ja .cli-bar-message.en {
  display: none;
}
.en .cli-bar-message.ja {
  display: none;
}
.en .cli-bar-message.en {
  display: block;
}
@charset "UTF-8";