@charset "utf-8";

/* Google fonts & font family
==================================================*/

@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,600,700);

/* General
==================================================*/

html, body {
  height: 100%;
  font-family: 'Noto Sans JP', Meiryo, sans-serif, "Yu Gothic M" 'Poppins' ;
  src: local("Yu Gothic Medium");
  line-height: 2.5;
  color: #252525;
  caret-color: transparent;
}

p a:hover{ 
  opacity:0.5;
  transition:0.3s;
}


/* YouTube
==================================================*/

.youtube_movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.thumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.youtube_movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.no-padding [class^="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.main-container {
  padding: 30px 0;
}

.main-container50 {
  padding: 50px 0;
}

.main-container30 {
  padding: 30px 0;
}

.main-container0 {
  padding: 0;
}

.center {
  text-align: center;
}

a {
  -webkit-transition: all .3s;
  transition: all .3s
}

.uppercase {
  text-transform: uppercase;
}

.color {
  color: #0f4c81;
  font-size: 11px;
}

.h-5 {
  height: 5px
}

.h-10 {
  height: 10px
}

.h-15 {
  height: 15px
}

.h-20 {
  height: 20px
}

.h-25 {
  height: 25px
}

.h-30 {
  height: 30px
}

.h-35 {
  height: 35px
}

.h-40 {
  height: 40px
}

.h-45 {
  height: 45px
}

.h-50 {
  height: 50px
}

.h-55 {
  height: 55px
}

.h-60 {
  height: 60px
}

.h-65 {
  height: 65px
}

.h-70 {
  height: 70px
}

.h-75 {
  height: 75px
}

.h-80 {
  height: 80px
}

.h-85 {
  height: 85px
}

.h-90 {
  height: 90px
}

.h-95 {
  height: 95px
}

.h-100 {
  height: 100px
}

.h-110 {
  height: 110px
}

.h-120 {
  height: 120px
}

.h-130 {
  height: 130px
}

.h-140 {
  height: 140px
}

.h-150 {
  height: 150px
}

.h-160 {
  height: 160px
}

.h-170 {
  height: 170px
}

.h-180 {
  height: 180px
}

.h-190 {
  height: 190px
}

.h-200 {
  height: 200px
}

.h-210 {
  height: 210px
}

.h-220 {
  height: 220px
}

.h-230 {
  height: 230px
}

.h-240 {
  height: 240px
}

.h-250 {
  height: 250px
}

.h-300 {
  height: 300px
}


/* OP
==================================================*/
.start {
	background: #fff url(../img/start_bg.png) repeat center center;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.start p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
}


/* typography
==================================================*/

h1 {
  color: #0f4c81;
  font-size: 60px;
  text-transform: uppercase;
  font-family: 'Poppins' ;
}

h2 {
  color: #252525;
  line-height: 1.7
  font-weight: bold;
}

h3 {
  color: #252525;
  line-height: 1.7
  font-weight: bold;
}

h4 {
  color: #252525;
  font-size: 20px;
  padding-bottom: 5px;
  font-family: 'Poppins' ;
}

h5 {
  color: #252525;
  font-size: 14px;
  line-height: 1.7
}

h6 {
  color: #0f4c81;
  font-size: 20px;
  font-weight: bold;
}

h7 {
  position: relative;
  padding: 0.25em 0;
  font-weight: bold;
  font-size: 15px;
}
h7:after {
  content: "";
  display: block;
  height: 4px;
  background: -webkit-linear-gradient(to right, rgb(80, 80, 80), transparent);
  background: linear-gradient(to right, rgb(200, 200, 200), transparent);
}


/* preloader
==================================================*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    /* change if the mask should be a color other than white */
    z-index: 1000;
    /* makes sure it stays on top */
}

.pre-container {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #0f4c81;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: bounce 2.0s infinite ease-in-out;
    animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes bounce {
    0%,
    100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}


/* header
==================================================*/

.box-header {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  height: 80px;
  width: 100%;
  z-index: 3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.box-header {
  height: 80px;
  background: transparent;
  box-shadow: none;
}

.box-header {
  -webkit-transition: background-color 3.0s;
  transition: background-color 2.0s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.box-header.is-fixed {
  position: fixed;
  top: -80px;
  background-color: rgba(255, 255, 255, 0.96);
  -webkit-transition: -webkit-transform 0.0s;
  transition: -webkit-transform 0.0s;
  transition: transform 0.0s;
  transition: transform 0.0s, -webkit-transform 0.0s;
}

.box-header.is-visible {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.box-header.menu-is-open {
  background-color: rgba(255, 255, 255, 0.96);
}

.box-logo {
  display: block;
  padding: 20px;
}

.box-primary-nav-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: #fff;
}

.box-primary-nav-trigger .box-menu-text {
  color: #eb0102;
  text-transform: uppercase;
  font-weight: 700;
  display: none;
}

.box-primary-nav-trigger .box-menu-icon {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: #eb0102;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  list-style: none;
}

.box-primary-nav-trigger .box-menu-icon::before, .box-primary-nav-trigger .box-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #eb0102;
  right: 0;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
  -webkit-transition: top .3s, background-color 0s, -webkit-transform .3s;
  transition: top .3s, background-color 0s, -webkit-transform .3s;
  transition: transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s, -webkit-transform .3s;
  font-family: 'Poppins' ;
}

.box-primary-nav-trigger .box-menu-icon::before {
  top: -5px;
}

.box-primary-nav-trigger .box-menu-icon::after {
  top: 5px;
}

.box-primary-nav-trigger .box-menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0);
}

.box-primary-nav-trigger .box-menu-icon.is-clicked::before, .box-primary-nav-trigger .box-menu-icon.is-clicked::after {
  background-color: #eb0102;
}

.box-primary-nav-trigger .box-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.box-primary-nav-trigger .box-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.box-primary-nav-trigger {
  width: 100px;
  padding-left: 1em;
  background-color: transparent;
  height: 30px;
  line-height: 30px;
  right: 10px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.box-primary-nav-trigger .box-menu-text {
  display: inline-block;
}

.box-primary-nav-trigger .box-menu-icon {
  left: auto;
  right: 1em;
  -webkit-transform: translateX(0) translateY(-50%);
  transform: translateX(0) translateY(-50%);
}

.box-primary-nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(15, 76, 129, 0.9);
  z-index: 2;
  text-align: center;
  line-height: 1.5;
  padding: 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  list-style: none;
}

.box-primary-nav li {
  font-size: 22px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: .2em 0;
  text-transform: capitalize;
}

.box-primary-nav a {
  display: inline-block;
  padding: .4em 1em;
  border-radius: 0.25em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.box-primary-nav a:focus {
  outline: none;
}

.no-touch .box-primary-nav a:hover {
  text-decoration: none;
  color: #222;
}

.box-primary-nav .box-label {
  color: #fff81f;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  margin: 1.6em 0 .8em;
}

.box-primary-nav .box-social {
  display: inline-block;
  margin: 10px .4em;
}

.box-primary-nav .box-social a {
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 30px
}

.box-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.box-primary-nav {
  padding: 150px 0 0;
}

.box-primary-nav li {
  font-size: 25px;
}


/* box-intro
==================================================*/

.box-intro {
  text-align: center;
  display: table;
  height: 100vh;
  width: 100%;
  background: #fff url(../img/top_mikan_2.jpg) no-repeat center center;
  background-size: cover;
}

.box-intro .table-cell {
  display: table-cell;
  vertical-align: middle;
}

b i:last-child {
  color: #0f4c81 !important;
}

.box-intro h5 {
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #0f4c81;
  line-height: 1.7
}


/* mouse effect */

==================================================*/

/* mouse effect */

.mouse {
    position: absolute;
    width: 22px;
    height: 42px;
    bottom: 40px;
    left: 50%;
    margin-left: -12px;
    border-radius: 15px;
    border: 2px solid #888;
    -webkit-animation: intro 1s;
    animation: intro 1s;
}

.scroll {
    display: block;
    width: 3px;
    height: 3px;
    margin: 6px auto;
    border-radius: 4px;
    background: #888;
    -webkit-animation: finger 2s infinite;
    animation: finger 2s infinite;
}

@-webkit-keyframes intro {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes intro {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes finger {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes finger {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}


/* text rotate */

.box-headline {
  font-size: 130px;
  line-height: 1.0;
}

.box-words-wrapper {
  display: inline-block;
  position: relative;
}

.box-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.box-words-wrapper b.is-visible {
  position: relative;
}

.no-js .box-words-wrapper b {
  opacity: 0;
}

.no-js .box-words-wrapper b.is-visible {
  opacity: 1;
}

.box-headline.rotate-2 .box-words-wrapper {
  -webkit-perspective: 300px;
  perspective: 300px;
}

.box-headline.rotate-2 i, .box-headline.rotate-2 em {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.box-headline.rotate-2 b {
  opacity: 0;
}

.box-headline.rotate-2 i {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(-20px) rotateX(90deg);
  transform: translateZ(-20px) rotateX(90deg);
  opacity: 0;
}

.is-visible .box-headline.rotate-2 i {
  opacity: 1;
}

.box-headline.rotate-2 i.in {
  -webkit-animation: box-rotate-2-in 0.4s forwards;
  animation: box-rotate-2-in 0.4s forwards;
}

.box-headline.rotate-2 i.out {
  -webkit-animation: box-rotate-2-out 0.4s forwards;
  animation: box-rotate-2-out 0.4s forwards;
}

.box-headline.rotate-2 em {
  -webkit-transform: translateZ(20px);
  transform: translateZ(20px);
}

.no-csstransitions .box-headline.rotate-2 i {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 0;
}

.no-csstransitions .box-headline.rotate-2 i em {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.no-csstransitions .box-headline.rotate-2 .is-visible i {
  opacity: 1;
}

@-webkit-keyframes box-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
  }
}

@keyframes box-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
    transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
    transform: translateZ(-20px) rotateX(0deg);
  }
}

@-webkit-keyframes box-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
  }
}

@keyframes box-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
    transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
    transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
    transform: translateZ(-20px) rotateX(-90deg);
  }
}

/* Side Topics
==================================================*/
.iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 140%;
  overflow:auto; 
  -webkit-overflow-scrolling:touch;
  border:0; 
}

.iframe-wrap iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
}

/* About page
==================================================*/

.top-bar {
  color: #0f4c81;
  padding: 50px 0 30px;
  background: -webkit-linear-gradient( rgba(255, 255, 251, .8), rgba(255, 255, 251, .8)), url(../img/entry_header.jpg);
  background: linear-gradient( rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url(../img/entry_header.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  text-align: center;
}

.top-bar h1 {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
  line-height: 50px;
}

.top-bar p {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  color: #333;
}

.top-bar p a {
  color: #0f4c81;
}

.top-bar p a:hover, .top-bar p a:focus {
  color: #0f4c81;
  text-decoration: none;
}

.social-ul {
  list-style: none;
  display: inline-block;
  padding-left: 0;
}

.social-ul li {
  margin: 0 10px;
  float: left;
}

.social-ul li a {
  font-size: 25px;
  color: #555;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.social-ul li a:hover {
  color: #888;
}


/* Services page
==================================================*/

.size-50 {
  font-size: 10px;
}

.service-box {
  margin-bottom: 10px;
}

.service-box h3 {
  margin-top: 0;
}


/* contact page
==================================================*/

.details-text i {
  margin-right: 10px;
}

.textarea-contact {
  height: 200px;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, .1);
  position: relative;
}

.textarea-contact textarea {
  height: 100%;
  width: 100%;
  border: 0;
  padding: 20px;
  background-color: transparent;
  float: left;
  z-index: 2;
  font-size: 14px;
  color: #9a9a9a;
  resize: none;
}

.textarea-contact>span {
  position: absolute;
  top: 20px;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
  text-transform: uppercase;
  color: #cdcdcd;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  z-index: 1;
}

.input-contact {
  height: 40px;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, .1);
  position: relative;
  margin-bottom: 30px;
}

.input-contact input[type="text"] {
  height: 100%;
  width: 100%;
  border: 0;
  padding: 0 20px;
  float: left;
  position: relative;
  background-color: transparent;
  z-index: 2;
  font-size: 14px;
  color: #9a9a9a;
}

.input-contact>span {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
  text-transform: uppercase;
  color: #cdcdcd;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  z-index: 1;
}

.input-contact>span.active, .textarea-contact>span.active {
  color: #0f4c81;
  font-size: 10px;
  top: 0px;
  left: 5px;
  background-color: #fff;
  padding: 5px
}

input:focus, textarea:focus {
  outline: none;
}

.contact-info {
  margin-top: 20px;
}

.contact-info i {
  height: 30px;
  width: 30px;
  display: inline-block;
  background: #0f4c81;
  text-align: center;
  line-height: 33px;
  margin-right: 10px;
  color: #fff;
  font-size: 21px;
}

.contact-info p {
  display: inline-block;
  margin-right: 20px;
}

.btn-box {
  background: #0f4c81;
  padding: 10px 50px;
  border-radius: 0;
  color: #fff;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.btn-box:hover, .btn-box:focus {
  background: #F5B700;
  color: #fff;
}


/* single project page
==================================================*/

.cat-ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 50px;
}

.cat-ul li i {
  margin-right: 10px;
  margin-left: 10px;
  color: #0f4c81;
}


/* Responsive media queries
==================================================*/

@media (max-width: 991px) {
  .portfolio .categories-grid span {
    margin-bottom: 0;
    text-align: center;
    width: 100%;
  }
  .portfolio .categories-grid .categories ul li {
    text-align: center;
  }
  .portfolio .categories-grid .categories ul li a {
    margin-left: 0;
  }
  .col-md-6 h3 {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 640px) {
  .box-headline {
    font-size: 100px;
  }
  .box-intro h5 {
    font-size: 12px;
  }
  .box-primary-nav a {
    padding: 5px 1em;
    font-size: 20px;
  }
  .box-primary-nav {
    padding: 80px 0 0;
  }
  .box-primary-nav .box-social a {
    font-size: 23px;
  }
  .top-bar {
    background-color: #fff;
  }
  .top-bar h1 {
    color: #333;
    font-size: 40px;
    line-height: 30px;
  }
  .portfolio .categories-grid .categories ul li {
    float: none;
  }
}

@media only screen and (max-width: 520px) {
  .box-headline {
    font-size: 80px;
  }
  .box-intro h5 {
    font-size: 12px;
  }
  .main-container {
    padding: 50px 0;
  }
  .top-bar {
    background-color: #fff;
  }
}

@media only screen and (max-width: 420px) {
  .box-headline {
    font-size: 50px;
  }
  .box-intro h5 {
    font-size: 12px;
  }
  .top-bar h1 {
    color: #333;
    font-size: 30px;
    line-height: 30px;
  }
}


/* インフォ
==================================================*/

.informationTopics.topBorder dl:first-child {
  border-top: 1px solid #dddddd;
}

.informationTopics dl {
  border-bottom: 1px solid #dddddd;
  position: relative;
  line-height: 1.5;
}

.informationTopics dl a {
  color: #252525;
  text-decoration: none;
}

.informationTopics dl a:hover {
  text-decoration: none;
  color: #0f4c81;
}

@media print, screen and (min-width: 768px) {
  .informationTopics dl {
    font-size: 14px;
  }
  .informationTopics.dateBlock dl dt {
    padding: 0.7em 0.7em 0;
  }
  .informationTopics.dateBlock dl dd {
    padding: 0.5em 0.7em 0.7em;
  }
  .informationTopics.dateInline dl dt {
    display: table-cell;
    white-space: nowrap;
    padding: 10px;
  }
  .informationTopics.dateInline dl dd {
    display: table-cell;
    padding: 5px;
  }
}

@media screen and (max-width: 767px) {
  .informationTopics dl {
    padding: 10px 0;
    font-size: 14px;
  }
  .informationTopics dl dt {
    margin-bottom: 0.5em;
    padding: 0 5px;
  }
  .informationTopics dl dd {
    padding: 0 5px;
  }
}


/* blockquote 1
==================================================*/

blockquote {
  position: relative;
  margin: 1em 0;
  font-family: 'Noto Sans JP', Meiryo, sans-serif, "Yu Gothic M" 'Poppins' ;
  font-size: 14px;
  border-left: 3px solid #0f4c81;
  overflow-wrap: break-word;
}


/* blockquote 2
==================================================*/

blockquote.news {
  position: relative;
  font-family: 'Noto Sans JP', Meiryo;
  padding: 10px 12px;
  box-sizing: border-box;
  color: #252525;
  border: solid 2px #0f4c81;
  border-left-width: 50px;
  background: #fafafa;
  overflow-wrap: break-word;
}

blockquote.news:before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -37px;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f05a";
  font-family: FontAwesome;
  color: #FFF;
  font-size: 28px;
  line-height: 1;
}

blockquote.news p {
  position: relative;
  padding: 0;
  margin: 10px 0;
  z-index: 3;
  line-height: 2.0;
}

blockquote.news cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

/* blockquote 3
==================================================*/

blockquote.blank {
  position: relative;
  font-family: 'Noto Sans JP', Meiryo;
  padding: 10px 12px;
  box-sizing: border-box;
  color: #252525;
  border: solid 2px #0f4c81;
  border-left-width: 2px;
  background: #f0f0f0;
  overflow-wrap: break-word;
}

blockquote.blank:before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -37px;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f05a";
  font-family: FontAwesome;
  color: #FFF;
  font-size: 0px;
  line-height: 1;
}


blockquote.blank p {
  position: relative;
  padding: 0;
  margin: 10px 0;
  z-index: 3;
  line-height: 2.0;
}

blockquote.blank cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

/* blockquote 4
==================================================*/

blockquote.side {
  position: relative;
  font-family: 'Noto Sans JP', Meiryo;
  padding: 10px 12px;
  box-sizing: border-box;
  color: #252525;
  border: solid 1px #cccccc;
  overflow-wrap: break-word;
}

blockquote.side:before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -37px;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f05a";
  font-family: FontAwesome;
  color: #FFF;
  font-size: 28px;
  line-height: 1;
}

blockquote.side p {
  position: relative;
  padding: 0;
  margin: 10px 0;
  z-index: 3;
  line-height: 2.0;
}

blockquote.side cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}


/* ボタン 1
==================================================*/

.btn-flat-border {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #0f4c81;
  border: solid 2px #0f4c81;
  border-radius: 3px;
  transition: .4s;
}

.btn-flat-border:hover {
  background: #0f4c81;
  color: #fff;
}

hr.style1 {
  border-top: 1px solid #aaa;
}

hr.style2 {
  border-top: 3px double #aaa;
}

hr.style3 {
  border-top: 1px dashed #aaa;
}

hr.style4 {
  border-top: 1px dotted #aaa;
}

hr.style5 {
  background-color: #fff;
  border-top: 2px dashed #aaa;
}

hr.style6 {
  background-color: #fff;
  border-top: 2px dotted #aaa;
}

hr.style7 {
  border-top: 4px dotted #0f4c81;
}


/* P
==================================================*/

p.sample {
  border-left: solid 2px #0f4c81;
  border-bottom: solid 1px #f7f7f7;
  padding: 0px
}

ul.none {
  list-style: none;
  padding-left: 1.2em;
}


/* Button
==================================================*/

.button {
  display: inline-block;
  width: 160px;
  height: 30px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 30px;
  outline: none;
  font-size: 13px;
}

.button::before, .button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.button, .button::before, .button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.button {
  background-color: #999999;
  color: #fff;
}

.button:hover {
  background-color: #d14b48;
  color: #fff;
  text-decoration: none;
}


/* Video
==================================================*/

.bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 114vh;
}

video {
  min-width: 100%;
  min-height: 100vh;
  z-index: 1;
}


/* Swiper
==================================================*/

.mb60 {
  margin-top: 30px;
  margin-bottom: -60px;
}

.swiper-container {
  text-align: center;
}

.swiper-container .swiper-slide img {
  max-width: 100%;
  height: auto;
}

.prettyprint {
  border: none;
  background: #0f4c81;
  color: #0f4c81;
}

.frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.frame-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* Link 共通
==================================================*/

a {
  text-decoration: none;
  color: #1569b3;
}

a:hover {
  text-decoration: none;
  color: #8ac7e6;
}


/* Link Black
==================================================*/

a.black:link {
  text-decoration: none;
  color: #252525;
}

a.black:visited {
  text-decoration: none;
  color: #252525;
}

a.black:active {
  text-decoration: none;
  color: #252525;
}

a.black:hover {
  text-decoration: none;
  color: #252525;
}


/* Link Blue
==================================================*/

a.blue:link {
  text-decoration: none;
  color: #0f4c81;
}

a.blue:visited {
  text-decoration: none;
  color: #0f4c81;
}

a.blue:active {
  text-decoration: none;
  color: #0f4c81;
}

a.blue:hover {
  text-decoration: none;
  color: #0f4c81;
}


/* Link Twitter
==================================================*/

a.tw:link {
  text-decoration: none;
  color: #3E7FAD;
}

a.tw:visited {
  text-decoration: none;
  color: #3E7FAD;
}

a.tw:active {
  text-decoration: none;
  color: #3E7FAD;
}

a.tw:hover {
  text-decoration: none;
  color: #3E7FAD;
}


/* Link Youtube
==================================================*/

a.yt:link {
  text-decoration: none;
  color: #ff3333;
}

a.yt:visited {
  text-decoration: none;
  color: #ff3333;
}

a.yt:active {
  text-decoration: none;
  color: #ff3333;
}

a.yt:hover {
  text-decoration: none;
  color: #ff3333;
}


/* Link2 Youtube
==================================================*/

a.school:link {
  text-decoration: none;
  color: #fb524b;
}

a.school:visited {
  text-decoration: none;
  color: #fb524b;
}

a.school:active {
  text-decoration: none;
  color: #fb524b;
}

a.school:hover {
  text-decoration: none;
  color: #fb524b;
}


/* Link3 Youtube
==================================================*/

a.golden:link {
  text-decoration: none;
  color: #9b8356;
}

a.golden:visited {
  text-decoration: none;
  color: #9b8356;
}

a.golden:active {
  text-decoration: none;
  color: #9b8356;
}

a.golden:hover {
  text-decoration: none;
  color: #9b8356;
}


/* Movie
==================================================*/

.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: 0;
  overflow: hidden;
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.albumtitle {
  width: 100%;
  text-align: center;
}


/* Span
==================================================*/

span.tokusetsu1 {
  font-family: sans-serif;
  background: #9b8356;
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  padding: 0.5em 2em 0.5em 2em;
  margin-left: 5px;
  border: 1px #fff solid;
}

span.tokusetsu2 {
  font-family: sans-serif;
  background: #fb524b;
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  padding: 0.5em 2em 0.5em 2em;
  margin-left: 5px;
  border: 1px #fff solid;
}

span.blue {
  font-family: sans-serif;
  background: #0f4c81;
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  padding: 0.1em 0.5em 0.1em 0.5em;
  margin: 0 1.5em 0 0em;
  border: 1px #0f4c81 solid;
}

span.cate {
  font-family: sans-serif;
  background: #;
  color: #333;
  font-weight: normal;
  font-size: 12px;
  padding: 0.1em 0.5em 0.1em 0.5em;
  margin: 0 -0.5em 0 1.2em;
  border: 1px #333 solid;
}

span.push {
  font-family: sans-serif;
  background: #;
  color: #333;
  font-weight: normal;
  font-size: 12px;
  padding: 0.1em 0.5em 0.1em 0.5em;
  margin: 0;
  border: 1px #333 solid;
}

span.disco {
  font-family: sans-serif;
  background: #0f4c81;
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  padding: 0.5em;
  border: 1px #fff solid;
}

span.news {
  font-family: sans-serif;
  background: #0f4c81;
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  padding: 0.1em 0.5em 0.1em 0.5em;
  margin: 0 -0.5em 0 1.2em;
  border: 1px #1569b3 solid;
}

span.event {
  font-family: sans-serif;
  background: #108245;
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  padding: 0.1em 0.5em 0.1em 0.5em;
  margin: 0 -0.5em 0 1.2em;
  border: 1px #15b35f solid;
}

span.other {
  font-family: sans-serif;
  background: #af161a;
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  padding: 0.1em 0.5em 0.1em 0.5em;
  margin: 0 -0.5em 0 1.2em;
  border: 1px #c6191d solid;
}

span.blog {
  font-family: sans-serif;
  background: #ffa621;
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  padding: 0.1em 0.5em 0.1em 0.5em;
  margin: 0 -0.5em 0 1.2em;
  border: 1px #EDB300 solid;
}

span.kanren {
  font-family: sans-serif;
  background: #0f4c81;
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  padding: 0.3em 0.5em 0.3em 0.5em;
  margin-top: -20px;
  margin: 0;
  border: 1px #0f4c81 solid;
}


/* Merker
==================================================*/


/* 赤い(ピンク系)マーカー */

.marker_red {
  background: -moz-linear-gradient(transparent 60%, #ffdfef 0%);
  /* Firefox用 */
  background: -webkit-linear-gradient(transparent 60%, #ffdfef 0%);
  /* Safari用 */
  background: -ms-linear-gradient(transparent 60%, #ffdfef 0%);
  /* IE用 */
  background: -o-linear-gradient(transparent 60%, #ffdfef 0%);
  /* Opera用 */
  background: linear-gradient(transparent 60%, #ffdfef 0%);
  /* Default */
}


/* 緑(ライトグリーン系)のマーカー */

.marker_green {
  background: -moz-linear-gradient(transparent 60%, #dfffe0 0%);
  /* Firefox用 */
  background: -webkit-linear-gradient(transparent 60%, #dfffe0 0%);
  /* Safari用 */
  background: -ms-linear-gradient(transparent 60%, #dfffe0 0%);
  /* IE用 */
  background: -o-linear-gradient(transparent 60%, #dfffe0 0%);
  /* Opera用 */
  background: linear-gradient(transparent 60%, #dfffe0 0%);
  /* Default */
}


/* 青い(水色系)マーカー */

.marker_blue {
  background: -moz-linear-gradient(transparent 60%, #cce5ff 0%);
  /* Firefox用 */
  background: -webkit-linear-gradient(transparent 60%, #cce5ff 0%);
  /* Safari用 */
  background: -ms-linear-gradient(transparent 60%, #cce5ff 0%);
  /* IE用 */
  background: -o-linear-gradient(transparent 60%, #cce5ff 0%);
  /* Opera用 */
  background: linear-gradient(transparent 60%, #cce5ff 0%);
  /* Default */
}


/* 黄色(イエロー系)マーカー */

.marker_yellow {
  background: -moz-linear-gradient(transparent 60%, #ffffbc 0%);
  /* Firefox用 */
  background: -webkit-linear-gradient(transparent 60%, #ffffbc 0%);
  /* Safari用 */
  background: -ms-linear-gradient(transparent 60%, #ffffbc 0%);
  /* IE用 */
  background: -o-linear-gradient(transparent 60%, #ffffbc 0%);
  /* Opera用 */
  background: linear-gradient(transparent 60%, #ffffbc 0%);
  /* Default */
}


/* 桃色(ピンク系)マーカー */

.marker_pink {
  background: -moz-linear-gradient(transparent 0%, #fee2e1 50%);
  /* Firefox */
  background: -webkit-linear-gradient(transparent 60%, #fee2e1 50%);
  /* Safari */
  background: -ms-linear-gradient(transparent 60%, #fee2e1 50%);
  /* IE */
  background: -o-linear-gradient(transparent 60%, #fee2e1 50%);
  /* Opera */
  background: linear-gradient(transparent 60%, #fee2e1 50%);
  /* Default */
}


/* Blog
==================================================*/

.entry {
  position: relative;
  z-index: 1;
  /* 必要であればリンク要素の重なりのベース順序指定 */
}

.entry a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 2;
  /* 必要であればリンク要素の重なりのベース順序指定 */
}

.entry:hover {
  filter: alpha(opacity=70);
  /* IE 6,7*/
  -ms-filter: "alpha(opacity=70)";
  /* IE 8,9 */
  -moz-opacity: 0.7;
  /* FF , Netscape */
  -khtml-opacity: 0.7;
  /* Safari 1.x */
  opacity: 0.7;
  zoom: 1;
  /*IE*/
}

.blognews_img {
  border: 3px solid #ccc;
  width: 100%;
  padding: 5px;
}


/* Check Box Blog
==================================================*/

.check-box {
  background-color: #981117;
  background-image: repeating-linear-gradient(135deg, #810e14, #810e14 3px, transparent 0, transparent 6px);
  color: #fff;
  margin: 1em 0 3em 0;
  padding: 0.3em 0.3em 0.3em 1.0em;
  position: relative;
}

.check-box::after {
  content: "";
  border-color: #fff81f #fff #fff #fff81f;
  border-style: solid;
  border-width: 0 0 24px 24px;
  bottom: 0;
  position: absolute;
  right: 0;
}

.check-box a {
  text-decoration: none;
  color: #fff;
}

.check-box a.current {
  text-decoration: none;
  color: #fff;
}

.check-box a:hover {
  text-decoration: none;
  color: #fff81f;
}

#check1 {
  background: #F00;
}

#check2 {
  background: #00F;
}

/* Check Box News
==================================================*/

.check-box-blog {
  background-color: #0f4c81;
  background-image: repeating-linear-gradient(135deg, #0c3c66, #0c3c66 3px, transparent 0, transparent 6px);
  color: #fff;
  margin: 1em 0 3em 0;
  padding: 0.3em 0.3em 0.3em 1.0em;
  position: relative;
}

.check-box-blog::after {
  content: "";
  border-color: #fff81f #fff #fff #fff81f;
  border-style: solid;
  border-width: 0 0 24px 24px;
  bottom: 0;
  position: absolute;
  right: 0;
}

.check-box-blog a {
  text-decoration: none;
  color: #fff;
}

.check-box-blog a.current {
  text-decoration: none;
  color: #fff;
}

.check-box-blog a:hover {
  text-decoration: none;
  color: #fff81f;
}

#check1 {
  background: #F00;
}

#check2 {
  background: #00F;
}


/* SideTopicks
==================================================*/

.side_table {
  margin: 0 auto;
  position: relative;
  border: 0;
  width: 100%;
  table-layout: fixed;
  font-size: 14px;
  font-family: "Hiragino Kaku Gothic ProN", YuGothic;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 1.5em;
  text-align: left;
}

.side_img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  /* 画像正方形 */
}

.side_td1 {
  width: 60px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1.5em;
  text-align: left;
}

.side_td2 {
  border: 0;
  font-weight: normal;
  vertical-align: text-top;
  width: 100%;
  word-wrap: break-word;
  text-align: left;
  padding: 0 1em;
  vertical-align: top;
}

.side_td3 {
  border-bottom: 1px solid #ccc;
  color: #999;
  font-size: 0.8em;
  font-weight: normal;
  text-align: right;
  padding-bottom: 1.0em;
  padding-bottom: 0.5em;
  padding-right: 0.5em;
  vertical-align: bottom;
}


/* パンくず
==================================================*/

.pankuzu ul {
  display: flex;
  list-style-type: none;
  padding-left: 0px;
  margin-top: 0px;
  margin-bottom: -30px;
}

.pankuzu li a {
  color: #252525;
  font-size: 1em;
  text-decoration: none;
  white-space: nowrap;
}

.pankuzu li a:hover {
  background-color: #fff;
}

.pankuzu li:after {
  content: '\003e';
  font-weight: bold;
  margin-left: 15px;
  margin-right: 15px;
  color: #252525;
}

.pankuzu li:last-child:after {
  content: "";
}


/* <p>タグ関連 
==================================================*/

p.prof {
  line-height: 2.4;
  font-size: 14px;
  margin: 10px 0px;
}

p.blog {
  line-height: 2.4;
  font-size: 16px;
}

p.disco {
  line-height: 2.4;
  font-size: 14px;
  margin: 10px 0px;
}

p.feat {
  line-height: 1.5;
  font-size: 11px;
  margin: -15px 0 15px 0;
  color: #999;
  padding-left: 25px;
}

p.news {
  line-height: 2.4;
  font-size: 16px;
}


/* Blog / News 共通 Button
==================================================*/

.more_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.more_button::before, .more_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.more_button, .more_button::before, .more_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.more_button {
  background-color: #0f4c81;
  color: #fff;
}

.more_button:hover {
  background-color: #06223B;
  color: #fff;
  text-decoration: none;
}


/* Blog 次 前 Button
==================================================*/

.blognext_button {
  display: inline-block;
  width: 250px;
  height: 35px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 35px;
  outline: none;
}

.blognext_button::before, .blognext_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.blognext_button, .blognext_button::before, .blognext_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.blognext_button {
  background-color: #296aa3;
  color: #fff;
}

.blognext_button:hover {
  background-color: #06223B;
  color: #fff;
  text-decoration: none;
}


/* Blog グレー Button
==================================================*/

.blogend_button {
  display: inline-block;
  width: 250px;
  height: 35px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 35px;
  outline: none;
}

.blogend_button::before, .blogend_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.blogend_button, .blogend_button::before, .blogend_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.blogend_button {
  background-color: #999;
  color: #fff;
}

.blogend_button:hover {
  background-color: #999;
  color: #fff;
  text-decoration: none;
}


/* Disco 各 Button
==================================================*/

/* ボカロP
========================*/

.vocaloid_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
  font-size: 0.7em;
}

.vocaloid_button::before, .vocaloid_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.vocaloid_button, .vocaloid_button::before, .vocaloid_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.vocaloid_button {
  background-color: #0f4c81;
  color: #fff;
}

.vocaloid_button:hover {
  background-color: #072742;
  color: #fff;
  text-decoration: none;
}

.vocaloid_button:active {
  background-color: #0f4c81;
  color: #fff;
  text-decoration: none;
}


/* GOLDEN RATIO
========================*/

.goldenratio_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.goldenratio_button::before, .goldenratio_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.goldenratio_button, .goldenratio_button::before, .goldenratio_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.goldenratio_button {
  background-color: #9b8356;
  color: #fff;
}

.goldenratio_button:hover {
  background-color: #33291c;
  color: #fff;
  text-decoration: none;
}


/* メモリアルハイスクール
========================*/

.memorialhighschool_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.memorialhighschool_button::before, .memorialhighschool_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.memorialhighschool_button, .memorialhighschool_button::before, .memorialhighschool_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.memorialhighschool_button {
  background-color: #fb524b;
  color: #fff;
}

.memorialhighschool_button:hover {
  background-color: #fd969b;
  color: #fff;
  text-decoration: none;
}


/* SILVER RATIO
========================*/

.silverratio_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.silverratio_button::before, .silverratio_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.silverratio_button, .silverratio_button::before, .silverratio_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.silverratio_button {
  background-color: #b3b3b3;
  color: #fff;
}

.silverratio_button:hover {
  background-color: #e6e6e6;
  color: #fff;
  text-decoration: none;
}


/* BRONZE RATIO
========================*/

.bronzeratio_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.bronzeratio_button::before, .bronzeratio_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.bronzeratio_button, .bronzeratio_button::before, .bronzeratio_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.bronzeratio_button {
  background-color: #66330e;
  color: #fff;
}

.bronzeratio_button:hover {
  background-color: #1a0d04;
  color: #fff;
  text-decoration: none;
}


/* シングル なんでなの!?
========================*/

.nande_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.nande_button::before, .nande_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.nande_button, .nande_button::before, .nande_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.nande_button {
  background-color: #ffda1b;
  color: #fff;
}

.nande_button:hover {
  background-color: #ffaa04;
  color: #fff;
  text-decoration: none;
}


/* シングル Nobody
========================*/

.unanobody_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.unanobody_button::before, .unanobody_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.unanobody_button, .unanobody_button::before, .unanobody_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.unanobody_button {
  background-color: #4c5cc7;
  color: #fff;
}

.unanobody_button:hover {
  background-color: #272f66;
  color: #fff;
  text-decoration: none;
}


/* シングル トライアングル
========================*/

.triangle_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.triangle_button::before, .triangle_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.triangle_button, .triangle_button::before, .triangle_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.triangle_button {
  background-color: #6cc19f;
  color: #fff;
}

.triangle_button:hover {
  background-color: #111b46;
  color: #fff;
  text-decoration: none;
}


/* シングル フォーカスロック 
========================*/

.focuslock_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.focuslock_button::before, .focuslock_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.focuslock_button, .focuslock_button::before, .focuslock_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.focuslock_button {
  background-color: #efaeac;
  color: #fff;
}

.focuslock_button:hover {
  background-color: #b38281;
  color: #fff;
  text-decoration: none;
}


/* コンピ 55ymTKNKの里 e.p.
========================*/

.takesato_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.takesato_button::before, .takesato_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.takesato_button, .takesato_button::before, .takesato_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.takesato_button {
  background-color: #cadee5;
  color: #fff;
}

.takesato_button:hover {
  background-color: #b2c5cb;
  color: #fff;
  text-decoration: none;
}


/* コンピ ウナ充 e.p.
========================*/

.unaju_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.unaju_button::before, .unaju_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.unaju_button, .unaju_button::before, .unaju_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.unaju_button {
  background-color: #d0545e;
  color: #fff;
}

.unaju_button:hover {
  background-color: #333452;
  color: #fff;
  text-decoration: none;
}


/* コンピ ウナギノボリ
========================*/

.unaginobori_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.unaginobori_button::before, .unaginobori_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.unaginobori_button, .unaginobori_button::before, .unaginobori_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.unaginobori_button {
  background-color: #4a4fb5;
  color: #fff;
}

.unaginobori_button:hover {
  background-color: #e8ff01;
  color: #271f44;
  text-decoration: none;
}


/* 未完成ダイナマイト
========================*/

.mikan_button{
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.mikan_button::before, .mikan_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.mikan_button, .mikan_button::before, .mikan_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.mikan_button{
  background-color: #ffb135;
  color: #fff;
}

.mikan_button:hover {
  background-color: #ffb135;
  color: #fff;
  text-decoration: none;
}


/* なんでなの タケノコ
========================*/

.nandetake_button {
  display: inline-block;
  width: 250px;
  height: 45px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
  outline: none;
}

.nandetake_button::before, .nandetake_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.triangle_button, .nandetake_button::before, .nandetake_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.nandetake_button{
  background-color: #84b4af;
  color: #fff;
}

.nandetake_button:hover {
  background-color: #84b4af;
  color: #fff;
  text-decoration: none;
}


/* footer
==================================================*/

footer {
  padding: 30px 0;
  text-align: center;
  background-color: #0f4c81;
  color: #fff;
  font-family: 'Poppins' ;
}

footer_menu {
  text-align: center;
}

footer_menu ul {
  margin: 0;
  padding: 0;
}

footer_menu li {
  list-style: none;
  display: inline-block;
  width: 6%;
  min-width: 120px;
}

footer_menu li:not(:last-child) {
  border-right: 1px solid #fff;
}

footer_menu a {
  text-decoration: none;
  color: #fff;
}

footer_menu a.current {
  text-decoration: none;
  color: #fff;
}

footer_menu a:hover {
  text-decoration: none;
  color: #fff;
}

privacy {
  text-align: center;
  font-size: 11px;
}

privacy ul {
  margin: 0;
  padding: 0;
}

privacy li {
  list-style: none;
  display: inline-block;
  width: 100%;
  min-width: 100px;
}

privacy li:not(:last-child) {
  border-right: 1px solid #fff;
}

privacy a {
  text-decoration: none;
  color: #fff;
}

privacy a.current {
  text-decoration: none;
  color: #fff;
}

privacy a:hover {
  text-decoration: none;
  color: #fff;
}

.copyright {
  font-family: "Hiragino Kaku Gothic ProN", YuGothic;
  font-size: 10px;
  color: #fff;
  margin-bottom: 0;
}

footer img {
  margin: 0 auto;
}


/* SNS
==================================================*/

#sns-b {
  margin: 10px;
  float: right;
}

.sbox {
  display: inline-block;
  padding: 0 5px 5px 0;
  float: left;
}

/* backto top
==================================================*/

.cd-top {
  display: inline-block;
  height: 80px;
  width: 75px;
  position: fixed;
  bottom: 5px;
  right: 8px;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1.0;
}

.cd-top.cd-fade-out {
  opacity: .1.0;
}

.no-touch .cd-top:hover, .no-touch .cd-top:focus {
  opacity: 1;

