html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  background: rgb(255,255,255);
  color: rgb(0,0,0);
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

/* @group basic */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
strong,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
header,
article,
aside,
figcaption,
figure,
footer,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
}
dl,
ul {
  list-style-type: none;
}
img {
  vertical-align: bottom;
}
.individual {
  display: none;
  overflow: hidden;
}

/*z-index | navigation /// 8xx | loading /// 9xx | wrap /// 100*/
/* @end */

/* @group a */
a {
  text-decoration: none;
  background-color: transparent;
}
a:link {
  color: rgb(0,0,0);
}
a:visited {
  color: rgb(7, 12, 71);
}
a:active {
  color: rgb(7, 12, 71);
  outline: 0;
}
a:hover {
  color: rgb(7, 12, 71);
  outline: 0;
}

#container {
  z-index: 0;
}

/* @group page_top */
#page-top {
    width: 100%;
    height: 8vh;
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 800;
}
#page-top p {
    text-align: center;
    background: rgba(255,140,0, .5);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
#page-top p:hover {
    background: rgba(255,140,0, 1);
}
#move-page-top {
    color: rgb(255,255,255);
    font-size: 7vh;
    line-height: 8vh;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

#contents_box {
  width: 100%;
  min-width: 300px;
  margin: 0 auto 4vh;
  overflow: hidden;
  position: relative;
}

/* @group header */
header {
  width: 100%;
  height: 10vh;
  margin: 0 auto;
  text-align: left;
  position: fixed;
  overflow: hidden;
  z-index: 800;
  background-color: rgba(241,141,0,1);
}
header h1 {
  visibility: hidden;
  display: none;
  overflow: hidden;
}
#header_logo {
  position: relative;
  width: 100%;
  height: 90%;
  margin: .4vh 0 0 2%;
  overflow: hidden;
}
#header_logo img {
  height: 100%;
}

/* global navi */
#gnav-btn {
  color: rgb(7, 12, 71);
  font-size: 6vh;
  line-height: 1em;

  position: fixed;
  top: 1vh;
  right: 1.8vh;
  z-index: 860;
  padding: .5vw;

  border: 1px solid rgba(7, 12, 71, 1);
  border-radius: .5vw .5vw;
}
#gnav-input:checked~#gnav-content {
  top: 0;
}
#gnav-content {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 810;
  transition: 0.3s;
  width: 100%;
}
.humb-menu__title {
  padding: 1.5rem;
  overflow: hidden
}
.humb-menu label {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  border-bottom: 0.5px solid rgba(200, 200, 200, .5);
}
.humb-menu label p {
  width: 50%;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
.humb-menu input {
  display: none;
}
.humb-menu .accshow {
  height: 0;
  overflow: hidden;
}
.humb-menu .accshow p {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem;
  cursor: pointer;
  border-bottom: 0.5px solid rgba(200, 200, 200, .5);
}
.humb-menu .cssacc:checked+.accshow {
  height: auto;
}

/* @group nav */
nav {
  width: 40%;
  text-align: right;
  position: absolute;
  top: 7px;
  right: 2%;
  overflow: hidden;
}
.hidden {
  display: none;
}
.cnt_menu li {
  width: calc(96% /2);
  display: inline-block;
}
.cnt_menu li a {
  width: 100%;
  display: inline-block;

  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;

  background-color: #000;
  padding: 2px 2vw;
  border-radius: 16px;
  text-decoration: none;
}
.cnt_menu li.external {
  background-color: rgb(255,255,255) !important;
    border-radius: 16px;
}
.cnt_menu li.active a {
  background-color: rgb(241,141,0);
  border: 1px solid rgb(255,255,255);
}
.cnt_menu li a:hover {
  background-color: rgb(241,141,0);
}

/* @group linkout */
#linkout {
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
  display: block;
  overflow: hidden;
}
#linkout dd {
  width: calc(100% / 3);
  font-size: 6vh;
  text-align: center;
  display: inline;
  overflow: hidden;
  float: left;
}

/* @end */

#contents {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.contents_block {
  width: 96%;
  max-width: 1280px;
  margin: 0vh auto 8vh;
  position: relative;
}
.contents_blocks {
  width: 96%;
  max-width: 1280px;
  margin: 0vh auto 8vh;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}

.contents_block:last-child,
.contents_blocks:last-child {
  margin: 0 auto;
}

.contents_cover {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.block-single {
  width: 96%;
  max-width: 960px;
  margin: 0vh auto 8vh;
  position: relative;
}

.block-double {
  width: calc(98% / 2);
  margin: 0 2% 2% 0;
  position: relative;
}
.block-double:nth-child(2n) {
  margin: 0 0 2% 0;
}
.block-triple {
  width: calc(96% / 3);
  margin: 0 2% 2% 0;
  position: relative;
}
.block-triple2 {
  width: 66%;
  margin: 0 0 2% 0;
  position: relative;
}
.block-triple:nth-child(3n) {
  margin: 0 0 2% 0;
}

.block-quad {
  width: calc(94% / 4);
  margin: 0 2% 2% 0;
  position: relative;
}
.block-quad3 {
  width: 74%;
  /*2つは47%*/
  margin: 0 0 2% 0;
  position: relative;
}
.block-quad:nth-child(4n) {
  margin: 0 0 2% 0;
}

.block-inside {
  padding: 2vh;
}
.block-inside:last-child {
  margin: 0 auto 0;
}

/* @group table */
.contents_block table,
.contents_blocks table {
  width: 100%;
  margin: 0 auto 0;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  overflow: hidden;
}
.contents_block tr,
.contents_blocks tr,
.contents_block th,
.contents_blocks th,
.contents_block td,
.contents_blocks td {
    vertical-align: middle;
  overflow: hidden;
}

.hero {
  position: relative;
}

.video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* magic grid */
.container-magic-grid {
    width: 96%;
    /* max-width: 960px; */
    margin: 0vh auto;
    position: relative;
}
.container-magic-grid div {
    width: calc(96vh / 3);
    border-radius: 8px;
    padding: 1vh 2vh;
}

/* @group footer */
footer {
  width: 100%;
  overflow: hidden;
}
.footer_contents {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 10vh;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.footer_box {
  width: calc(100% /3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_logo {
  width: calc(100% /3);
  text-align: center;
}
.footer_logo img {
  height: 100%;
  min-height: 48px;
}
.footer_sns{
  width: 100%;
  text-align: center;
  display: block;
}
.footer_sns dd {
  width: calc(100% /4);
  display: inline;

  font-size: 36px;
  line-height: 1em;
}
.footer_navi {
  width: 100%;
  padding: 1vw;
  display: block;
}
.footer_navi dd {
    font-size: 14px;
    line-height: 1.8em;
}
.footer_credit {
    width: 100%;
    font-size: 14px;
    line-height: 1.8em;
    text-align: right;
    display: block;
}

/* @end */

/* @group Clearfix */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}

/* @end */

@media screen and (max-width:767px) {
  nav {
    width: 65%;
    text-align: center;
    position: absolute;
    top: 7px;
    right: 2%;
  }

  .container-magic-grid div {
width: calc(90% / 2);
}

  .block-double,
  .block-double:nth-child(2n),
  .block-triple,
  .block-triple2,
  .block-triple:nth-child(3n),
  .block-quad3 {
    width: 100%;
    margin: 0 auto 2%;
  }
  .block-quad {
    width: calc(98% / 2);
    margin: 0 2% 2% 0;
    position: relative;
  }
  .block-quad:nth-child(2n) {
    margin: 0 0 2% 0;
  }

  .footer_box {
    width: 100%;
    padding: 1vh 20vw;
  }
}

@media screen and (max-width:479px) {

.container-magic-grid div {
width: 100%;
}

  .footer_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer_logo {
    width: 100%;
    text-align: center;
    overflow: hidden;
  }
  .footer_logo img {
    width: 90%;
    max-height: 32px;
  }
  .footer_navi dd,
  .footer_credit {
    text-align: center;
  }
}