@charset "UTF-8";
/* Scss Document */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: 'Noto Sans JP','ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
  background: #fff;
  color: #000;
  font-size: 16px;
  line-height: 1.75;
  font-feature-settings: "palt";
  /*CSSでカーニング調整をして先頭が 「 （カッコ）の左端を揃える*/
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

@media only screen and (min-width: 415px) {
  /* Tablet */
}
@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  body {
    font-size: 18px;
  }
}
ul li {
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  a {
    transition: 0.2s;
  }
  a:hover {
    color: #e60012;
    /*
    opacity: 1;
    animation-duration: .5s;
    animation-name: flash;
    */
  }

  /*
  @keyframes flash {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  */
}
h1, h2, h3, h4, h5, h6, h7, h8 {
  font-weight: normal;
}

/* clearfix
-------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.sp_none {
  display: none !important;
}

@media only screen and (min-width: 415px) {
  /* Tablet */
}
@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  .pc_none {
    display: none !important;
  }

  .sp_none {
    display: inline-block !important;
  }
}
/* ---------------------------------------------------
 Common
--------------------------------------------------- */
/* --- フォント --- */
.Antonio_Regular {
  font-family: 'Antonio', sans-serif;
  font-weight: 400;
  letter-spacing: normal;
}

.Antonio_Bold {
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  letter-spacing: normal;
}

.Anton {
  font-family: 'Anton', sans-serif;
  letter-spacing: normal;
}

/* -- ページ読み込み後、ふわっと表示--*/
body.fadeIn_body {
  animation: fadeInbody 2s ease 0s 1 normal;
  -webkit-animation: fadeInbody 2s ease 0s 1 normal;
}

@keyframes fadeInbody {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInbody {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --- ローディングアニメーション --- */
.loadingAnim {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 9999;
}

.loadingAnim:before,
.loadingAnim:after {
  line-height: 1;
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  margin-right: auto;
  margin-left: auto;
  content: ' ';
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: .3s;
  background-color: #fff;
}

.loadingAnim:before {
  top: 0;
}

.loadingAnim:after {
  bottom: 0;
}

.loaded .loadingAnim:before {
  height: 0;
  -webkit-transform: translateY(-1%);
  -ms-transform: translateY(-1%);
  transform: translateY(-1%);
}

.loaded .loadingAnim:after {
  height: 0;
  -webkit-transform: translateY(1%);
  -ms-transform: translateY(1%);
  transform: translateY(1%);
}

.loadingAnim_line {
  /*line-height: 1;*/
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 2px;
  margin: auto;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: .6s;
  text-align: center;
}

.loadingAnim_line:after {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto  auto auto 0;
  content: ' ';
  -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  background-color: #133684;
  will-change: transform, width;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
/* --- スマホ用サイドメニュー --- */
.side_navigation {
  transition: 1s;
  z-index: 8888;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px 0 0;
  background: #102246;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
}
.drawer-menu li {
  padding: 0 30px 10px;
  color: #fff;
}
.drawer-menu li a, .drawer-menu li .none_url {
  display: block;
  color: #fff;
  -webkit-transition: all .8s;
  transition: all .8s;
  line-height: 1.5;
}
.drawer-menu li a .Antonio_Bold, .drawer-menu li .none_url .Antonio_Bold {
  font-size: 2em;
}
.drawer-menu li a .jp, .drawer-menu li .none_url .jp {
  font-size: .8em;
  letter-spacing: .2em;
}
.drawer-menu li .none_url {
  opacity: .3;
}
.drawer-menu .drawer-menu_twbtn a {
  display: block;
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  font-size: 22px;
  line-height: 22px;
  padding: 12px 14px;
}

.menu-btn {
  position: fixed;
  display: block;
  top: 16px;
  right: 16px;
  width: 54px;
  height: 54px;
  text-align: center;
  cursor: pointer;
  z-index: 8888;
  background: #102246;
  border-radius: 50%;
}

.bar {
  position: absolute;
  top: 18px;
  left: 15px;
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.bar.middle {
  top: 26px;
  opacity: 1;
}
.bar.bottom {
  top: 34px;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}

.check {
  display: none;
}
.check:checked ~ .drawer-menu {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  z-index: 4;
}
.check:checked ~ .menu-btn .menu-btn__text {
  visibility: hidden;
  opacity: 0;
}
.check:checked ~ .menu-btn .bar.top {
  width: 35px;
  top: 14px;
  background-color: #fff !important;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.check:checked ~ .menu-btn .bar.middle {
  opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
  width: 35px;
  top: 38px;
  background-color: #fff !important;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.check:checked ~ .close-menu {
  background: rgba(0, 0, 0, 0.5);
  visibility: visible;
  opacity: 1;
  z-index: 3;
}

.close-menu {
  position: fixed;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  cursor: url(http://theorthodoxworks.com/demo/images/cross.svg), auto;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  .menu-btn, .drawer-menu {
    display: none;
  }
}
/* --- Header --- */
.top_header {
  display: none;
}

.other_header {
  width: 100%;
  height: 86px;
}
.other_header nav.header_nav {
  display: none;
}

.header_logo {
  width: 140px;
  position: absolute;
  top: 20px;
  left: 20px;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  .header_logo {
    width: 160px;
    position: absolute;
    top: 35px;
    left: 80px;
  }

  nav.header_nav {
    position: absolute;
    top: 40px;
    right: 80px;
  }
  nav.header_nav a, nav.header_nav .none_url {
    display: inline-block;
    margin-left: 35px;
  }
  nav.header_nav a .Antonio_Bold, nav.header_nav .none_url .Antonio_Bold {
    font-size: 1.2em;
    line-height: 1.2;
  }
  nav.header_nav a .jp, nav.header_nav .none_url .jp {
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: .8;
    padding-top: 8px;
  }
  nav.header_nav a.nowurl, nav.header_nav .none_url.nowurl {
    color: #e60012;
  }
  nav.header_nav a:hover, nav.header_nav .none_url:hover {
    color: #e60012;
  }
  nav.header_nav a.header_tw, nav.header_nav .none_url.header_tw {
    border: 2px solid #000;
    padding: 0 20px;
    height: 46px;
    border-radius: 27px;
    vertical-align: top;
    font-size: .9em;
  }
  nav.header_nav a.header_tw .Antonio_Bold, nav.header_nav .none_url.header_tw .Antonio_Bold {
    line-height: 2.1;
  }
  nav.header_nav a.header_tw:hover, nav.header_nav .none_url.header_tw:hover {
    background: #e60012;
    border: 2px solid #e60012;
    color: #fff;
  }
  nav.header_nav .none_url {
    opacity: .3;
  }
  nav.header_nav .none_url:hover {
    color: #000;
  }

  .top_header {
    display: block;
    width: 100%;
    height: 96px;
    background: #102246;
  }
  .top_header nav.header_nav a, .top_header nav.header_nav .none_url {
    color: #fff;
  }
  .top_header nav.header_nav a.nowurl, .top_header nav.header_nav .none_url.nowurl {
    color: #fff201;
  }
  .top_header nav.header_nav a:hover, .top_header nav.header_nav .none_url:hover {
    color: #fff201;
  }
  .top_header nav.header_nav a.header_tw, .top_header nav.header_nav .none_url.header_tw {
    border: 2px solid #4f5d7b;
  }
  .top_header nav.header_nav a.header_tw:hover, .top_header nav.header_nav .none_url.header_tw:hover {
    background: #fff201;
    border: 2px solid #fff201;
    color: #102246;
  }
  .top_header nav.header_nav .none_url {
    color: #fff;
    opacity: .3;
  }
  .top_header nav.header_nav .none_url:hover {
    color: #fff;
  }

  .other_header {
    height: 96px;
  }
  .other_header nav.header_nav {
    display: block;
  }
}
/* --- Footer --- */
#footer {
  text-align: center;
  padding: 40px 0;
  margin-top: 60px;
  border-top: 1px solid #ddd;
  background: #fff;
}
#footer nav.footer_nav {
  width: 70%;
  margin: 0 auto 10px;
}
#footer nav.footer_nav ol li {
  display: inline-block;
  padding-bottom: 15px;
}
#footer nav.footer_nav ol li a, #footer nav.footer_nav ol li .none_url {
  margin: 0 10px;
  display: inline-block;
  letter-spacing: 0.1em;
  font-weight: 700;
}
#footer nav.footer_nav ol li .none_url {
  opacity: .3;
}
#footer .note {
  font-size: 10px;
  color: #666;
}
#footer .logo a {
  display: block;
  width: 140px;
  margin: 40px auto 20px;
}
#footer .copyright {
  font-size: 10px;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  #footer {
    padding: 60px 0;
    margin-top: 100px;
  }
}
/* --- アニメーション --- */
.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0;
}

.u-fade {
  opacity: 0;
}

.u-fade-type-up.is-active,
.u-fade.is-active {
  transition: .6s;
  transform: translateY(0);
  opacity: 1;
}

/* --- ボタン --- */
.btn a {
  width: 70%;
  height: 64px;
  padding: 20px 30px;
  font-weight: 700;
  margin: 0 auto;
  border-radius: 32px;
  line-height: 22px;
  display: block;
  color: #fff;
  background: #000;
  letter-spacing: 0.5px;
}
.btn a .btn_inner {
  display: flex;
}
.btn a .btn_inner .tx {
  width: 80%;
}
.btn a .btn_inner .arrow {
  width: 20%;
  text-align: right;
}

.btn_navy a {
  background: #153b87;
}
.btn_navy a:hover {
  background: #fff201;
  color: #153b87;
}

.btn_line-black a {
  background: #fff;
  border: #000 2px solid;
  color: #000;
  line-height: 1.1;
}
.btn_line-black a:hover {
  background: #000;
  color: #fff;
}

.btn_line-gray a {
  background: #fff;
  border: #ddd 2px solid;
  color: #000;
  line-height: 1.1;
}
.btn_line-gray a:hover {
  background: #000;
  border: #000 2px solid;
  color: #fff;
}

.btn_yellow a {
  background: #fff201;
  color: #000;
}
.btn_yellow a:hover {
  background: #000;
  color: #fff201;
}

.btn_orange a {
  background: #f98200;
}
.btn_orange a:hover {
  background: #000;
  color: #f98200;
}

.btn_green a {
  background: #008f83;
}
.btn_green a:hover {
  background: #000;
  color: #008f83;
}

/* -- バナー（INFO） -- */
.bnr_info {
  background: #fff201;
}

/* -- 背景 -- */
.page_wrap.bg_dot {
  background: url("../images/pattern_dot.jpg");
  background-size: 13px;
  /* 実際サイズの50% */
  background-attachment: fixed;
  width: 100%;
}
.page_wrap.bg_stripe {
  background: url("../images/pattern_stripe_1.jpg");
  background-size: 13px;
  background-attachment: fixed;
  width: 100%;
}
.page_wrap .page_bg_title {
  width: 55%;
  max-width: 250px;
  position: fixed;
  top: 86px;
  left: 0;
  z-index: 0;
}

/* -- ページタイトル -- */
.head_design {
  position: relative;
  height: 90px;
  margin-top: 30px !important;
  margin-bottom: 40px !important;
}
.head_design h1.page_title {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.head_design h1.page_title .Anton {
  font-size: 50px;
  line-height: 60px;
}
.head_design h1.page_title .jp {
  font-weight: 700;
  padding-left: 1px;
}
.head_design .back_page {
  position: absolute;
  bottom: 0;
  right: 0;
}
.head_design .back_page a {
  text-align: right;
  display: inline-block;
  font-size: 13px;
}
.head_design .back_page a .Antonio_Bold {
  font-size: 18px;
  padding: 0 10px;
}
.head_design .back_page a i {
  padding-top: 1px;
  vertical-align: text-top;
}

/* -- 他 -- */
.wrapper {
  position: relative;
}

.common_content {
  width: 90%;
  margin: 0 auto;
}

.section_title {
  margin-bottom: 40px;
}
.section_title h2 {
  font-size: 3.5em;
  line-height: 1.2;
  font-family: 'Anton', sans-serif;
}
.section_title p {
  font-weight: bold;
  padding-left: 2px;
}

@media only screen and (min-width: 415px) {
  /* Tablet */
  /* --- ボタン --- */
  .btn a {
    width: 50%;
    max-width: 270px;
  }

  /* -- 他 -- */
  .common_content {
    width: 70%;
  }
}
@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  /* -- 他 -- */
  .common_content {
    width: 80%;
    max-width: 1000px;
  }
}
/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

トップページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
.top_sns_container {
  width: 100%;
  height: 86px;
  padding: 16px;
  background: #102246;
  color: #fff;
}
.top_sns_container a {
  display: inline-block;
  padding: 8px 20px;
  width: auto;
  height: 50px;
  border: 1px solid #4f5d7b;
  border-radius: 27px;
  color: #fff;
}
.top_sns_container a span {
  padding-left: 15px;
  font-size: .8em;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  .top_sns_container {
    display: none;
  }
}
/* ---------------------------------------------------
 メインビジュアル
--------------------------------------------------- */
#main {
  width: 100%;
  background-color: #122245;
}
#main .visual {
  width: 100%;
  height: 0;
  padding-top: 107.91015625%;
  /* (画像の高さ / 画像の横幅) × 100 */
  background: url("../images/main_sp.png") no-repeat center center;
  background-size: cover;
}
#main .date {
  width: 46%;
  margin: 0 auto;
  padding-bottom: 60px;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  #main .visual {
    padding-top: 61.5234375%;
    /* (画像の高さ / 画像の横幅) × 100 */
    background: url("../images/main_pc.png") no-repeat center center;
    background-size: cover;
  }
  #main .date {
    width: 30%;
    padding-bottom: 120px;
  }
}
/* ---------------------------------------------------
 イントロ
--------------------------------------------------- */
#intro {
  width: 100%;
  padding-top: 60px;
  background: url("../images/pattern_halftone_1.png");
  background-position: top;
  background-repeat: repeat-x;
  background-color: #eee;
  background-size: 12px;
  /* 実際サイズの50% */
}
#intro h1 {
  color: #153B87;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}
#intro h1 p {
  font-size: 2.4em;
  line-height: 1.2;
  padding-top: 10px;
}
#intro .refined_images {
  text-align: center;
  margin-bottom: 40px;
}
#intro .refined_images ul li {
  width: 100%;
  margin-bottom: 5px;
}
#intro .refined_images ul .lineup_tx {
  font-size: 10px;
  font-weight: 700;
  margin: 5px 0 20px;
}
#intro .refined_images ul li.midashi img {
  width: 50%;
  margin-bottom: 20px;
  margin-top: 40px;
}
#intro .btn {
  margin-top: 30px;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  #intro {
    padding-top: 120px;
    background-size: 20px;
  }
  #intro h1 {
    font-size: 1.4em;
  }
  #intro .refined_images {
    margin-bottom: 0;
    margin-top: 40px;
  }
  #intro .refined_images ul li {
    display: inline-block;
    width: 49%;
    padding: 0 1%;
  }
  #intro .refined_images ul .lineup_tx {
    margin: 10px 0 20px;
  }
  #intro .refined_images ul li.midashi {
    display: block;
    width: 100%;
  }
  #intro .refined_images ul li.midashi img {
    margin-bottom: 20px;
    margin-top: 40px;
  }
  #intro .intro_tx {
    text-align: center;
    margin-top: 60px;
    font-size: 1.1em;
    line-height: 2.2;
  }
  #intro .btn {
    margin-top: 60px;
  }
}
.bnr_content {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 80px 0 30vh;
  z-index: 0;
}
.bnr_content::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: skewY(14deg) translateY(-20%);
  z-index: -1;
  background: #eee;
}
.bnr_content .bnr_jizenchusen {
  background: url("../images/pattern_dot.jpg");
  background-size: 13px;
  /* 実際サイズの50% */
  border: #ff7e00 solid 4px;
  width: 100%;
  padding: 20px;
  margin-bottom: 15px;
}
.bnr_content .bnr_jizenchusen .title {
  width: 95%;
  margin: 0 auto 5px;
}
.bnr_content .bnr_jizenchusen .hosoku {
  text-align: center;
  font-weight: 700;
  font-size: .9em;
}
.bnr_content .bnr_jizenchusen .btn {
  margin-top: 15px;
}
.bnr_content .bnr_jizenchusen .btn a {
  width: 90%;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  .bnr_content {
    padding: 100px 0 400px;
  }
  .bnr_content::before {
    transform: skewY(10deg) translateY(-230px);
  }
  .bnr_content .common_content {
    display: flex;
  }
  .bnr_content .bnr_jizenchusen,
  .bnr_content .bnr_info {
    width: 50%;
  }
  .bnr_content .bnr_jizenchusen {
    margin: 0 4% 0 0;
  }
  .bnr_content .bnr_jizenchusen .title {
    width: 95%;
    margin: 0 auto 5px;
  }
  .bnr_content .bnr_jizenchusen .hosoku {
    text-align: center;
    font-weight: 700;
    font-size: .9em;
  }
  .bnr_content .bnr_jizenchusen .btn {
    margin-top: 15px;
  }
  .bnr_content .bnr_jizenchusen .btn a {
    width: 90%;
  }
  .bnr_content .bnr_info {
    width: 45%;
  }
  .bnr_content .bnr_info a {
    display: block;
    padding: 54px 0;
  }
}
/* ---------------------------------------------------
 NEWS
--------------------------------------------------- */
#news {
  width: 100%;
  padding: 25vh 0;
  position: relative;
  margin-top: -30vh;
  z-index: -1;
  background: url("../images/pattern_dot.jpg");
  background-size: 13px;
  /* 実際サイズの50% */
}
#news .section_title {
  color: #153b87;
}
#news ul.topnews_list {
  margin-bottom: 30px;
}
#news ul.topnews_list li {
  border: 4px solid #000;
  background: url("../images/pattern_stripe_2.jpg");
  background-size: 11px;
  margin-bottom: 8px;
}
#news ul.topnews_list li a {
  padding: 20px;
  display: block;
}
#news ul.topnews_list li a .date {
  font-size: .8em;
  padding-bottom: 5px;
}
#news ul.topnews_list li a .news_tx {
  width: 100%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  #news {
    padding: 300px 0 600px;
    margin-top: -450px;
  }
}
/* ---------------------------------------------------
 開催概要
--------------------------------------------------- */
#outline {
  width: 100%;
  margin: 0;
  padding: 15vh 0 20vh;
  position: relative;
  margin-top: -10vh;
  z-index: 0;
}
#outline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  transform: skewY(14deg);
  z-index: -1;
}
#outline .section_title {
  color: #fff201;
}
#outline ul.outline_list li {
  border-top: 1px solid #5c5c5c;
  padding: 25px 0;
  color: #fff;
  line-height: 1.5;
  letter-spacing: normal;
}
#outline ul.outline_list li a.toho_store_link {
  text-decoration: underline;
  color: #fff;
}
#outline ul.outline_list li .dt {
  color: #fff201;
  font-weight: 700;
  padding-bottom: 5px;
}
#outline ul.outline_list li .dd span {
  font-size: .8em;
}
#outline ul.outline_list li .dd span.zenki_koki {
  display: block;
  color: #999;
  border: 1px solid #5c5c5c;
  width: 100%;
  padding: 12px 24px;
  margin-top: 20px;
  line-height: 1.7;
}
#outline .btn_box {
  display: flex;
  margin-top: 20px;
}
#outline .btn_box .btn_outline {
  width: 47%;
}
#outline .btn_box .btn_outline:last-child {
  margin-left: 6%;
}
#outline .btn_box .btn_outline a {
  text-align: center;
  height: 64px;
  padding: 20px 0;
  margin: 0 auto;
  border-radius: 32px;
  line-height: 20px;
  display: block;
  color: #fff;
  font-size: .9em;
  letter-spacing: 0.5px;
  border: 2px solid #5c5c5c;
}
#outline .btn_box .btn_outline a:hover {
  background: #fff201;
  border: 2px solid #fff201;
  color: #000;
}
#outline .bnr_info {
  margin-top: 30px;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  #outline {
    padding: 100px 0 200px;
    margin-top: -450px;
  }
  #outline::before {
    transform: skewY(10deg) translateY(0px);
  }
  #outline .pc_left {
    width: 46%;
    float: left;
  }
  #outline #top_outline_twitter {
    display: block;
    width: 46%;
    float: right;
  }
}
/* ---------------------------------------------------
 Goods
--------------------------------------------------- */
#goods {
  width: 100%;
  padding: 25vh 0;
  position: relative;
  margin-top: -14vh;
  z-index: -1;
  background: url("../images/pattern_stripe_3.jpg");
  background-size: 16px;
  /* 実際サイズの50% */
}
#goods .section_title {
  color: #fff201;
}
#goods .goods_tx {
  font-size: 1.1em;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 30px;
  letter-spacing: .5px;
  line-height: 1.9;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  #goods {
    padding: 320px 0 150px;
    margin-top: -240px;
  }
  #goods .pc_goods_inner {
    position: relative;
  }
  #goods .btn a {
    width: 200px;
    position: absolute;
    top: 5px;
    right: 0;
  }
}
/* ---------------------------------------------------
 Twitter
--------------------------------------------------- */
#top_twitter {
  width: 100%;
  margin: 0;
  padding: 25vh 0 0;
  position: relative;
  overflow: hidden;
  margin-top: -24vh;
  z-index: 0;
}
#top_twitter::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  transform: skewY(14deg) translateY(16%);
  z-index: -1;
}

#top_twitter .base_box,
#news_twitter .base_box,
#top_outline_twitter .base_box {
  background: #292F33;
  border-radius: 40px;
  padding: 10px 10px 18px;
  overflow: hidden;
}
#top_twitter .base_box .btn_tw a,
#news_twitter .base_box .btn_tw a,
#top_outline_twitter .base_box .btn_tw a {
  width: 94%;
  height: 64px;
  display: block;
  padding: 20px 0;
  border-radius: 32px;
  background: #fff;
  color: #000;
  position: relative;
  margin: 0 auto;
}
#top_twitter .base_box .btn_tw a .tw_icon,
#news_twitter .base_box .btn_tw a .tw_icon,
#top_outline_twitter .base_box .btn_tw a .tw_icon {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #292F33;
  color: #fff201;
  font-size: 22px;
  padding: 16px;
  line-height: 22px;
}
#top_twitter .base_box .btn_tw a .twbtn_tx,
#news_twitter .base_box .btn_tw a .twbtn_tx,
#top_outline_twitter .base_box .btn_tw a .twbtn_tx {
  width: 100%;
  padding-left: 55px;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
}
#top_twitter .base_box .btn_tw a:hover,
#news_twitter .base_box .btn_tw a:hover,
#top_outline_twitter .base_box .btn_tw a:hover {
  background: #fff201;
}

#top_outline_twitter {
  display: none;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  #top_twitter {
    display: none;
  }
}
/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

NEWSページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
.page_title.title_news {
  color: #153b87;
}

ul.news_list li {
  border: 4px solid #000;
  padding: 20px;
  width: 100%;
  margin-bottom: 20px;
}
ul.news_list li .news_date {
  color: #f00206;
  margin-bottom: 5px;
}
ul.news_list li .news_title {
  font-size: 1.3em;
  line-height: 1.5;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}
ul.news_list li .news_detail a {
  text-decoration: underline;
}

#news_twitter {
  padding: 40px 0 0 0;
  margin: 0 auto;
}
#news_twitter::before {
  background: none;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  ul.news_list li {
    padding: 60px;
  }

  #news_twitter {
    padding: 40px 0 0 0;
    width: 780px;
    margin: 0 auto;
  }
}
/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

HIGHLIGHTページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
.page_title.title_highlight {
  color: #f98200;
}

.lighlight_content .lighlight_title {
  border-bottom: 4px solid #000;
  border-top: 4px solid #000;
  padding: 15px 20px;
  margin-bottom: 30px;
  font-size: 1.2em;
  font-weight: 700;
  color: #e94200;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF,  0 -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF;
}
.lighlight_content .lighlight_detail {
  margin-bottom: 80px;
}
.lighlight_content .lighlight_detail span {
  font-size: .8em;
}
.lighlight_content .lighlight_detail .img_box {
  text-align: center;
}
.lighlight_content .lighlight_detail .img_box img.midashi {
  width: 90%;
  padding: 50px 0 20px;
}
.lighlight_content .lighlight_detail .img_box img.lineup {
  padding-bottom: 5px;
}
.lighlight_content .lighlight_detail .img_box .lineup_tx {
  font-size: 10px;
  font-weight: 700;
  padding-bottom: 15px;
}
.lighlight_content .lighlight_detail .btn {
  margin-top: 50px;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  .lighlight_content .lighlight_title {
    text-align: center;
  }
  .lighlight_content .lighlight_detail {
    margin-bottom: 80px;
  }
  .lighlight_content .lighlight_detail .img_box {
    text-align: center;
  }
  .lighlight_content .lighlight_detail .img_box img.midashi {
    width: 500px;
    padding: 80px 0 50px;
    display: block;
    margin: 0 auto;
  }
  .lighlight_content .lighlight_detail .img_box img.lineup {
    /*width: 49%;*/
    padding-bottom: 20px;
  }
  .lighlight_content .lighlight_detail .img_box .lineup_tx {
    font-size: 1em;
    padding-bottom: 40px;
  }
  .lighlight_content .lighlight_detail .btn {
    margin-top: 50px;
  }
}
/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

GOODSページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
.page_title.title_goods {
  color: #008f83;
}

.goods_note {
  border: 1px solid #000;
  padding: 20px 20px 20px 36px;
  margin-bottom: 30px;
}
.goods_note ul li {
  list-style: disc;
  font-size: .8em;
  padding-bottom: 5px;
}

.goodspage_title {
  color: #008f83;
  font-size: 1.2em;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 15px 0;
  font-weight: 700;
  margin-bottom: 30px;
}

ul.category_list {
  text-align: center;
  font-weight: 700;
}
ul.category_list .series_name {
  font-size: 1.4em;
}
ul.category_list li {
  margin-top: 15px;
}
ul.category_list li a {
  display: block;
  border: 4px solid #000;
  padding: 15px;
  background: #fff;
  line-height: 1.4;
}
ul.category_list li a .category_name {
  padding-top: 8px;
}
ul.category_list.Unreleased {
  margin-top: 50px;
  padding-top: 70px;
  border-top: 1px solid #ddd;
  /*
  
  .series_name{
    font-size: 1.4em;
    line-height: 1.5;
    p{
      font-size: .7em;
      color: #008f83;
    }
  }
  li{
    margin-top: 15px;
    display: block;
    border: 4px solid #ccc;
    padding: 15px;
    background: #fff;
    line-height: 1.4;
    
    img{
      opacity: .5;
    }
    .category_name{
      padding-top: 8px;
      color: #aaaaaa;
    }
  }
  */
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  .goods_note {
    padding: 35px 35px 35px 60px;
    margin-bottom: 50px;
  }
  .goods_note ul li {
    padding-bottom: 3px;
  }

  ul.category_list .series_name {
    font-size: 1.6em;
  }
  ul.category_list li {
    margin: 40px 2% 0;
    float: left;
    width: 46%;
  }
  ul.category_list li a {
    padding: 20px;
  }
  ul.category_list li a:hover {
    border: 4px solid #e60012;
  }
  ul.category_list.Unreleased {
    margin-top: 60px;
    padding-top: 60px;
  }
  ul.category_list.Unreleased .series_name {
    font-size: 1.6em;
    line-height: 1.7;
  }
  ul.category_list.Unreleased li {
    margin-top: 40px;
  }
}
/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

GOODS 各カテゴリー商品一覧ページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
ul.goods_list {
  padding-bottom: 20px;
}
ul.goods_list li {
  width: 47%;
  height: 300px;
  margin: 0 1.5% 15px;
  background: #fff;
  border-bottom: 1px solid #aaa;
  border-right: 1px solid #aaa;
  float: left;
}
ul.goods_list li .item_detail {
  width: 100%;
  padding: 10px 10px 20px;
}
ul.goods_list li .item_detail .name {
  font-size: 11px;
  line-height: 1.6;
  padding-bottom: 10px;
  width: 100%;
  word-break: break-all;
}
ul.goods_list li .item_detail .name span {
  color: #008f83;
  display: block;
}
ul.goods_list li .item_detail .name span.sp_yotei {
  font-size: 10px;
  letter-spacing: 0;
}
ul.goods_list li .item_detail .price {
  font-size: .8em;
  color: #888;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  ul.goods_list {
    padding-bottom: 60px;
  }
  ul.goods_list li {
    width: 31.33%;
    height: 495px;
    margin: 0 1% 30px;
  }
  ul.goods_list li .item_detail {
    padding: 20px 34px 30px;
  }
  ul.goods_list li .item_detail .name {
    line-height: 1.8;
    font-size: 14px;
  }
  ul.goods_list li .item_detail .name span.sp_yotei {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}
