@charset "utf-8";

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  font-size: 10px;
}
body{
  color: #000;
  font-size: 1.5rem;
  line-height: 1.8;
  font-family: a-otf-gothic-bbb-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
}
body.scroll {
  overflow: hidden;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}
a:visited {
  color: #000;
}
a:link {
  color: #000;
}
/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000; 
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* アニメーション
------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIndown {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeftIn {
  0% {
    opacity: 0;
    transform: translateX(-25px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes turnOver {
  0% {
    -webkit-transform: translateX(0);
    transform:translateX(0);
  }
  100% {
    -webkit-transform:translateX(100%);
    transform:translateX(100%);
  }
}
@keyframes mark {
  0% {
    height: 100%;
  }
  50% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes mark02 {
  0% {
    color: #fff;
  }
  50% {
    color: #333;
  }
  100% {
    color: #fff;
  }
}
@keyframes markBtn {
  0% {
    width: 100%;
  }
  50% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes indicator {
  0% {
    width: 80px;
  }
  50% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

/* 共通
------------------------------*/
.pc { display: block; }
.sp { display: none; }

.br_sp {
  display: none;
}
.ttl_h2 {
  max-width: 1100px;
  margin: 0 auto;
  font-family: source-code-pro, monospace;
  font-weight: 500;
  font-style: normal;
  font-size: 2.4rem;
  letter-spacing: .5em;
}
.ttl_h2 span {
  font-family: a-otf-gothic-bbb-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: .6em;
}
.ttl_h2.type02 {
  opacity: 0;
}
.ttl_h2.type02 span {
  display: inline-block;
  height: 20px;
  vertical-align: middle;
  line-height: 20px;
  font-size: 1.8rem;
}
.ttl_h2 span.lead {
  display: block;
  font-family: ten-mincho-text, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  letter-spacing: .4em;
}

.ttl_h2 {
  opacity: 0;
}
.on .ttl_h2 {
  animation-name: fadeLeftIn;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-fill-mode: forwards;
}

.btn_type01 {
  max-width: 1280px;
  margin: 30px auto 0;
}
.btn_type01 a {
  /*background: #000;*/
  display: block;
  max-width: 340px;
  margin-left: auto;
  height: 62px;
  line-height: 62px;
  font-family: source-code-pro, monospace;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: .35em;
  color: #fff;
  position: relative;
}
.btn_type01 a::before {
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.btn_type01 a:hover::before {
  animation-name: markBtn;
  animation-duration: .8s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: forwards;
}
.btn_type01 a:hover {
  animation-name: mark02;
  animation-duration: .8s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: forwards;
}
.btn_type01 a span {
  display: block;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.btn_type01 a span::before {
  content: "";
  background: #fff;
  width: 80px;
  height: 1px;
  margin-top: -.5px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 3;
}
.btn_type01 a span:hover::before {
  animation-name: indicator;
  animation-duration: .8s;
  animation-delay: .2s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: forwards;
}

@media screen and (max-width: 980px) {
  .pc { display: none; }
  .sp { display: block; }
}
@media screen and (max-width: 640px) {
  .ttl_h2 {
    font-size: 2rem;
  }
  .ttl_h2 span {
    font-size: 1.2rem;
  }
  .ttl_h2 span.lead {
    font-size: 1.05rem;
  }
  .btn_type01 {
    width: 75%;
  }
  .btn_type01 a {
    height: 50px;
    line-height: 50px;
    font-size: 1.3rem;
  }
  .btn_type01 a span {
    padding: 0 10px;
  }
}
@media screen and (max-width: 480px) {
  .ttl_h2 {
    font-size: 1.5rem;
  }
  .ttl_h2 span {
    font-size: 1.05rem;
  }
  .br_sp {
    display: block;
  }
}

/* ヘッダー
------------------------------*/
.header {
  width: 100%;
}
.header nav {
  display: none;
}
.header_nav_wrap {
  position: relative;
}
.nav_wrap {
  display: flex;
  top: 20px;
  left: 60px;
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
  transition-duration: .6s;
}
.header_nav .header_nav_item {
  padding: 0 10px;
  font-size: 1.6rem;
  letter-spacing: .1em;
}
.header_nav .header_nav_item a {
  display: block;
  padding: .4em .15em;
  color: #fff;
  position: relative;
  transition-duration: .6s;
}
.header_nav .header_nav_item a::before {
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.header_nav .header_nav_item a:hover::before {
  animation-name: mark;
  animation-duration: .6s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: forwards;
}
.header_nav .header_nav_item a:hover {
  animation-name: mark02;
  animation-duration: .6s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: forwards;
}
.header .menu_area {
  width: 100%;
  height: 80px;
  display: none;
}
@media screen and (min-width: 981px) {
  .header_nav {
    display: flex;
    flex-flow: row-reverse nowrap;
  }
  .header_nav .header_nav_item a {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    -moz-text-orientation: upright;
    -ms-text-orientation: upright;
    text-orientation: upright;
  }
}
@media screen and (max-width: 980px) {
  .header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10001;
  }
  .header nav {
    display: block;
  }
  .header .menu_area {
    display: block;
  }
  .header .menu {
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .sp_menu {
    display: block;
    width: 35px;
    height: 25px;
    cursor: pointer;
    text-align: center;
  }
  .sp_menu span {
    background: #fff;
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    transition-duration: .4s;
  }
  .sp_menu span:nth-child(2) {
    margin: 8px 0;
  }
  #custom_drawer:checked + .header .sp_menu span:nth-child(1) {
    transform: translate(0,11px) rotate(45deg);
  }
  #custom_drawer:checked + .header .sp_menu span:nth-child(2) {
    transform: translate(-30px,0);
    opacity: 0;
  }
  #custom_drawer:checked + .header .sp_menu span:nth-child(3) {
    transform: translate(0,-11px) rotate(-45deg);
  }
  .header nav {
    height: calc(100% - 80px);
    right: 0;
    opacity: 0;
    position: fixed;
    top: 80px;
    transform: translate(-10px,0);
    transition-duration: .3s;
    visibility: hidden;
    width: 60%;
    z-index: 1000;
  }
  .nav_wrap {
    background: #000;
    width: 100%;
    height: 100%;
    position: static;
    overflow: auto;
  }
  .nav_wrap .header_nav {
    width: 100%;
    padding: 15% 5% 5%;
    text-align: center;
  }
  #custom_drawer:checked + .header nav {
    transform: translate(0,0);
    opacity: 1;
    visibility: visible;
  }
  .header_nav .header_nav_item {
    font-size: 1.4rem;
  }
  .header_nav .header_nav_item a {
    display: block;
    padding: 1em 0;
    color: #fff;
  }
}

@media screen and (max-width: 640px) {
  .header .menu_area {
    height: 50px;
  }
  .header .menu {
    width: 50px;
    height: 50px;
  }
  .sp_menu {
    width: 25px;
    height: 16px;
  }
  .sp_menu span {
    height: 2px;
  }
  .sp_menu span:nth-child(2) {
    margin: 5px 0;
  }
  #custom_drawer:checked + .header .sp_menu span:nth-child(1) {
    transform: translate(0,7px) rotate(45deg);
  }
  #custom_drawer:checked + .header .sp_menu span:nth-child(3) {
    transform: translate(0,-7px) rotate(-45deg);
  }
  
  .header nav {
    height: calc(100% - 50px);
    top: 50px;
  }
}

/* フッター
------------------------------*/
#bottom_access {
  padding: 130px 4% 120px;
  position: relative;
  margin-top: -10px;
}
#bottom_access .access_inner {
  max-width: 1100px;
  margin: 0 auto;
}
#bottom_access .access_wrap {
  display: flex;
  flex-flow: row-reverse nowrap;
  margin-top: 50px;
}
#bottom_access .access_wrap .image {
  width: 50%;
}
#bottom_access .access_wrap .iframe_area {
  width: 50%;
}
#bottom_access .access_wrap .iframe_inner {
  width: 100%;
  padding: 71.048% 0 0;
  padding: calc(400 / 563 * 100%) 0 0;
  position: relative;
  box-sizing: border-box;
}
#bottom_access .access_wrap .iframe_area iframe {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#bottom_access .access_wrap {
  opacity: 0;
}
#bottom_access .on .access_wrap {
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-delay: .6s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-fill-mode: forwards;
}

#bottom_lineup {
  padding: 120px 0;
}
#bottom_lineup .lineup_wrap {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
#bottom_lineup .lineup_wrap .image {
  position: relative;
}
#bottom_lineup .lineup_wrap .image:nth-child(1) {
  width: calc(52.7% - 5px);
}
#bottom_lineup .lineup_wrap .image:nth-child(2) {
  width: calc(46.6% - 5px);
}
#bottom_lineup .lineup_wrap .image img {
  width: 100%;
}
#bottom_lineup .lineup_wrap .image .txt {
  position: absolute;
  right: 5%;
  bottom: 3%;
}
#bottom_lineup .lineup_wrap .image .txt dt {
  font-family: source-code-pro, monospace;
  font-weight: 500;
  font-style: normal;
  font-size: 3.8rem;
  letter-spacing: .8em;
}
#bottom_lineup .lineup_wrap .image .txt dd {
  font-family: ten-mincho-text, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  letter-spacing: .25em;
}
#bottom_lineup .btn_type01 {
  padding: 0 4%;
}
#bottom_lineup .ttl_h2 {
  padding: 0 4%;
}
#bottom_lineup .lineup_wrap {
  opacity: 0;
}
#bottom_lineup .on .lineup_wrap {
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-delay: .6s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-fill-mode: forwards;
}

@media screen and (max-width: 980px) {
  #bottom_access {
    padding: 80px 4%;
  }
  #bottom_lineup {
    padding: 80px 4%;
  }
}
@media screen and (max-width: 768px) {
  #bottom_access {
    padding: 10% 4%;
  }
  #bottom_access .access_wrap {
    margin-top: 6%;
  }
  #bottom_lineup {
    padding: 10% 4%;
  }
  #bottom_lineup .lineup_wrap {
    margin-top: 6%;
  }
  #bottom_lineup .lineup_wrap .image .txt dt {
    font-size: 2.8rem;
    letter-spacing: .6em;
  }
  #bottom_lineup .lineup_wrap .image .txt dd {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 640px) {
  #bottom_access .access_wrap {
    display: block;
  }
  #bottom_access .access_wrap .image {
    width: 100%;
  }
  #bottom_access .access_wrap .iframe_area {
    width: 100%;
  }
  #bottom_lineup .lineup_wrap {
    display: block;
  }
  #bottom_lineup .lineup_wrap .image:nth-child(1) {
    width: 100%;
    margin-bottom: 10px;
  }
  #bottom_lineup .lineup_wrap .image:nth-child(2) {
    width: 100%;
  }
  #bottom_lineup .lineup_wrap .image .txt dt {
    font-size: 2.2rem;
  }
}
footer {
  background: #fff;
  position: relative;
  z-index: 2;
}
footer .footer_inner {
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 4% 120px;
}
footer .footer_wrap {
  display: flex;
  align-items: center;
}
footer .footer_inner .logo {
  width: 54px;
  height: 90px;
}
footer .footer_inner .txt {
  margin-left: 50px;
  padding-left: 50px;
  border-left: 1px solid #000;
}
footer .footer_inner .txt dt {
  margin-bottom: 18px;
  font-family: a-otf-futo-go-b101-pr6n, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: .25em;
}
footer .footer_inner .txt dt span {
  font-size: 1.8rem;
}
footer .footer_inner .txt dd {
  line-height: 1.8;
  font-size: 1.2rem;
  letter-spacing: .3em;
}
footer .footer_inner .txt dd a {
  text-decoration: underline;
}
footer .footer_inner .txt dd a:hover {
  text-decoration: none;
}
@media screen and (max-width: 980px) {
  footer .footer_inner {
    padding: 45px 4% 80px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_inner {
    padding: 8% 4% 10%;
  }
}
@media screen and (max-width: 640px) {
  footer .footer_inner .txt {
    margin-left: 6.5%;
    padding-left: 6.5%;
  }
  footer .footer_inner .txt dt {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  footer .footer_inner .txt dt span {
    font-size: 1.6rem;
  }
  footer .footer_inner .txt dd {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  footer .footer_inner .txt dd {
    font-size: 1rem;
  }
}