@charset "UTF-8";
/*メディアクエリー
---------------------------------------------*/
/*変数
--------------------------------------------*/
/* Scss Document */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

*, *:before, *:after {
  -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: "yu-mincho-pr6n", sans-serif;
  font-weight: 400;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.9;
  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%;
}
body:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url("../images/bgimg_sp_2.jpg") top center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 1025px) {
  body:before {
    background: url("../images/bgimg_pc_2.jpg") top center fixed #000;
    background-size: cover;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    display: block;
  }
  50% {
    opacity: 0;
    display: block;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
#Wrapper {
  overflow: hidden;
}

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

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

/* 保存禁止の画像 */
img.selectNone,
.goods_list li img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
}

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

@media only screen and (min-width: 1025px) { /* Laptop PC */
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 1;
    animation-duration: 0.5s;
    animation-name: flash;
  }
  @keyframes flash {
    0% {
      opacity: 0.5;
    }
    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: 768px) { /* Tablet */ }
@media only screen and (min-width: 1025px) { /* Laptop PC */
  .pc_none {
    display: none !important;
  }
  .sp_none {
    display: inline-block !important;
  }
}
/* -------------------------------------------

  初動オープンアニメーション

------------------------------------------- */
body {
  background: #000;
}

/*========= ローディング画面のためのCSS ===============*/
/*========= 画面遷移のためのCSS ===============*/
/* -----------------------------
　　スマホ用サイドメニュー
----------------------------- */
.side_navigation {
  transition: 1s;
  z-index: 8888;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition-property: all;
  transition-duration: 0.5s;
  transition-delay: 0s;
  /*
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  */
  display: none;
  opacity: 0;
}
.drawer-menu .inner_1 {
  position: relative;
  width: 100%;
  height: 100%;
}
.drawer-menu .inner_1 .inner_2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}
.drawer-menu .inner_1 ul li {
  width: 33.33%;
  float: right;
  margin-bottom: 15px;
  border-right: 1px solid #666;
}
.drawer-menu .inner_1 ul li.nav_1 {
  animation: navTop 0.7s 0.1s forwards;
  opacity: 0;
}
.drawer-menu .inner_1 ul li.nav_2 {
  animation: navTop 0.7s 0.2s forwards;
  opacity: 0;
}
.drawer-menu .inner_1 ul li.nav_3 {
  border-left: 1px solid #666;
  animation: navTop 0.7s 0.3s forwards;
  opacity: 0;
}
.drawer-menu .inner_1 .drawer-menu_others {
  margin-top: 20px;
  animation: navOthers 1s 1s forwards;
  opacity: 0;
}
.drawer-menu .inner_1 .drawer-menu_others a {
  color: #fff;
  display: block;
  font-size: 0.9em;
  padding: 5px 0;
}
.drawer-menu .inner_1 .drawer-menu_others .tw {
  float: left;
}
.drawer-menu .inner_1 .drawer-menu_others .tw i {
  padding-right: 8px;
  color: #1c75d7;
  font-size: 1.3em;
}
.drawer-menu .inner_1 .drawer-menu_others .byt {
  float: right;
}
.drawer-menu .inner_1 .drawer-menu_others .byt img {
  width: auto;
  height: 1.3em;
  vertical-align: middle;
  padding-right: 8px;
}

@keyframes navTop {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes navOthers {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) { /* Tablet */
  .drawer-menu .inner_1 .inner_2 {
    width: 50%;
  }
}
.menu-btn {
  position: fixed;
  display: block;
  top: 12px;
  right: 12px;
  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;
  transition: all 0.5s;
  transform-origin: left top;
}
.bar.middle {
  top: 26px;
  opacity: 1;
}
.bar.bottom {
  top: 34px;
  transform-origin: left bottom;
}

.check {
  display: none;
}
.check:checked ~ .drawer-menu {
  transition-delay: 0s;
  /*
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
    */
  opacity: 1;
  display: block;
  z-index: 4;
  animation: fadeIn 0.3s ease-in 0s forwards;
}
.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;
  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;
  transform: rotate(-45deg);
}
.check:checked ~ .close-menu {
  background: rgba(0, 0, 0, 0.5);
  visibility: visible;
  opacity: 1;
  z-index: 3;
}

@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.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;
  transition-property: all;
  transition-duration: 0.3s;
  transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
}

@media only screen and (min-width: 1025px) { /* Laptop PC */
  .menu-btn, .drawer-menu {
    display: none;
  }
}
/* ---------------------------------------------------
 Common
--------------------------------------------------- */
body.fadeIn_body {
  animation: fadeInbody 1s ease 0s 1 normal;
  -webkit-animation: fadeInbody 1s ease 0s 1 normal;
}

@keyframes fadeInbody {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --- Header --- */
.pc_header { /* PC用 */
  display: none;
}

.header_logo {
  width: 50px;
  position: absolute;
  top: 20px;
  left: 5%;
  display: none;
}

@media screen and (min-width: 1025px) {
  .pc_header { /* PC用 */
    display: block;
    width: 100%;
    height: 108px;
    background: #000;
    line-height: 100%;
    position: relative;
    z-index: 99;
  }
  nav.header_nav {
    position: absolute;
    top: 35px;
    right: 45px;
  }
  nav.header_nav a, nav.header_nav .none_url {
    display: inline-block;
    margin: 0 0 0 43px;
    color: #fff;
    vertical-align: middle;
  }
  nav.header_nav a .Cinzel, nav.header_nav .none_url .Cinzel {
    font-size: 1.2em;
    letter-spacing: 0.02em;
    line-height: 1.2;
  }
  nav.header_nav a .Mincho, nav.header_nav .none_url .Mincho {
    font-size: 11px;
    letter-spacing: 0.18em;
    line-height: 0.8;
    padding-top: 8px;
  }
  nav.header_nav a.nowurl, nav.header_nav .none_url.nowurl {
    color: #1c75d7;
  }
  nav.header_nav a:hover, nav.header_nav .none_url:hover {
    color: #1c75d7;
  }
  nav.header_nav a.header_tw {
    margin: 0 0 0 37px;
  }
  nav.header_nav a.header_tw div {
    width: 50px;
    height: 50px;
    color: #000;
    background: #fff;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/* --- Footer --- */
#footer {
  padding: 50px 0;
  margin-top: 80px;
  width: 100%;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  #footer {
    margin-top: 90px;
  }
}
#footer ul .navList {
  display: inline-flex;
  padding-bottom: 15px;
}
#footer ul li {
  padding: 0 6px;
  font-size: 1.1em;
  line-height: 1;
  letter-spacing: 100%;
}
@media screen and (min-width: 1025px) {
  #footer ul li {
    padding: 0 15px;
  }
}
#footer ul li a {
  color: #fff;
}
#footer .note {
  font-size: 10px;
  color: #fff;
  margin-top: 10px;
  opacity: 0.5;
}
#footer .logo_daikouryuten {
  width: 16%;
  max-width: 100px;
  float: right;
}
#footer .logo_daikouryuten a:hover {
  opacity: 0.7;
}
#footer .logo a {
  display: inline-block;
  width: 90px;
  margin: 50px 0 0 0;
}
#footer .logo a:hover {
  opacity: 0.7;
}
#footer .copyright {
  font-size: 10px;
  margin-top: 30px;
  font-family: "Helvetica", "Arial", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/* --- アニメーション --- */
.fadein_slide {
  opacity: 0;
  transform: translateY(40px); /* 下からスライドフェードイン */
  transition: all 0.7s 0s ease;
}

/* -- フォント -- */
.Cinzel {
  font-family: "Cinzel", serif;
  font-weight: 400;
}

.Cinzel_600 {
  font-family: "Cinzel", serif;
  font-weight: 600;
}

.Mincho {
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: 400;
}

.Gothic {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
}

/* --- ボタン --- */
/* --- ボタン --- */
.btn a {
  display: block;
  width: 190px;
  height: 66px;
  padding: 0 25px;
  line-height: 1;
  border: 1px solid #1c75d7;
  color: #1c75d7;
  font-size: 0.9em;
  border-radius: 33px;
  background: url("../images/icon_arrow.png") no-repeat 88% 50%/22px;
  background-size: 11px 7px;
  font-family: "Cinzel", serif;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .btn a {
    width: 220px;
  }
}

/* -- 他 -- */
.common_container {
  width: 90% !important;
  padding: 0 !important;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .common_container {
    max-width: 1060px !important;
    padding: 0 30px !important;
  }
}

.page_bgtitle {
  width: 25%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .page_bgtitle {
    width: 170px;
  }
}

h1.pagetitle {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 80px 0 0;
  z-index: 1;
}
h1.pagetitle.fadein_slide {
  transform: translateY(-50px);
}

#Wrap_inner {
  position: relative;
}

/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

トップページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
.top_sns_container {
  width: 100%;
  background: #000000;
  padding: 15px 4%;
}
.top_sns_container a i {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 15px;
  border-radius: 50%;
  margin-right: 10px;
}
.top_sns_container a span {
  font-size: 0.8em;
  color: #222;
}

@media screen and (min-width: 1025px) {
  .top_sns_container {
    display: none;
  }
}
/* --------------------------------
 メインビジュアル
--------------------------------- */
#main {
  width: 100%;
  padding-bottom: 24px;
  background-color: #000;
}
#main figure {
  width: 94%;
  margin: 0 auto;
}
#main .date {
  width: 75%;
  margin: 0 auto;
  padding: 25px 0 40px;
}
#main .bnr_content .bnr_jizenchusen {
  margin-bottom: 10px;
}
#main .bnr_content img {
  vertical-align: top;
}

@media screen and (min-width: 1025px) {
  #main {
    padding-bottom: 80px;
  }
  #main .visual {
    padding-top: 30.2734375%; /* (画像の高さ / 画像の横幅) × 100 */
    background-image: url("../images/main_pc.png");
  }
  #main .date {
    width: 60% !important;
    padding: 65px 0 70px;
  }
  #main .bnr_content {
    display: flex;
    justify-content: center;
  }
  #main .bnr_content .bnr_jizenchusen, #main .bnr_content .bnr_info {
    width: 430px;
    margin-bottom: 0;
    padding: 0 5px;
  }
}
/* ---------------------------------------------------
 イントロ
--------------------------------------------------- */
@media screen and (min-width: 1025px) {
  #intro {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
#intro .concept {
  margin: 80px auto 38px;
  font-size: 1.3em;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  #intro .concept {
    margin: 125px auto 50px;
    font-size: 2em;
  }
}
#intro .intro_copy {
  text-align: center;
  line-height: 2.2;
}
@media screen and (min-width: 1025px) {
  #intro .intro_copy {
    font-size: 1.2em;
  }
}

/* ---------------------------------------------------
 NEWS
----------------------------------------------zw----- */
#news {
  padding-top: 130px;
}
@media screen and (min-width: 1025px) {
  #news {
    width: 1240px;
    margin: 0 auto;
    padding: 175px 30px 0;
  }
}
#news .news_contnet {
  width: 100%;
}
#news .news_contnet h2 {
  width: 28%;
  float: right;
  overflow: visible;
  content: "";
  display: block;
  position: relative;
}
#news .news_contnet h2::before {
  content: "";
  display: block;
  padding-top: 160%;
}
@media screen and (min-width: 1025px) {
  #news .news_contnet h2 {
    width: 248px;
    height: 340px;
  }
}
#news .news_contnet img {
  width: 210%;
  margin-left: 50%;
  transform: translate(-50%, -25%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 1025px) {
  #news .news_contnet img {
    width: 180%;
  }
}
#news .news_contnet .box {
  float: left;
  width: 72%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  #news .news_contnet .box {
    width: 930px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1025px) {
  #news .news_contnet .box ul.topnews_list {
    display: flex;
    justify-content: space-between;
  }
}
#news .news_contnet .box ul.topnews_list li {
  margin-bottom: 5px;
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 1025px) {
  #news .news_contnet .box ul.topnews_list li {
    width: 33%;
    float: left;
  }
}
#news .news_contnet .box ul.topnews_list li a {
  padding: 25px;
  display: block;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  #news .news_contnet .box ul.topnews_list li a {
    padding: 40px;
  }
}
#news .news_contnet .box ul.topnews_list li a .date {
  padding-bottom: 5px;
  font-size: 0.8em;
}
#news .news_contnet .box ul.topnews_list li a .new {
  margin-bottom: 15px;
  padding: 10px 10px 10px 0;
  color: #ff5291;
  font-weight: bold;
  border: 0;
  font-family: "Cinzel", serif;
}
#news .news_contnet .box ul.topnews_list li a .news_tx {
  width: 100%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#news .news_contnet .box .btn {
  width: 100%;
  margin: 16px 0 0 0;
}
@media screen and (min-width: 1025px) {
  #news .news_contnet .box .btn {
    margin: 30px 0 0 0;
  }
}
#news .news_contnet .box .btn a {
  margin: 0 0 0 auto;
}

/* ---------------------------------------------------
 開催概要
--------------------------------------------------- */
#outline {
  padding-top: 130px;
}
@media screen and (min-width: 1025px) {
  #outline {
    width: 1240px;
    margin: 0 auto;
    padding: 230px 30px 0;
  }
}
#outline .outline_contnet {
  width: 100%;
  position: relative;
}
#outline .outline_contnet h2 {
  width: 30%;
  float: left;
  overflow: visible;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet h2 {
    width: 248px;
    height: 320px;
  }
}
#outline .outline_contnet h2 img {
  width: 210%;
  margin-left: 50%;
  transform: translate(-50%, -25%);
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet h2 img {
    width: 180%;
  }
}
#outline .outline_contnet .outline_list {
  float: right;
  padding-right: 5%;
  width: 70%;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .outline_list {
    width: 930px;
    margin-top: 15px;
    padding-right: 0;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .outline_list > div {
    width: 48%;
  }
}
#outline .outline_contnet .outline_list .left_content {
  margin-bottom: 35px;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .outline_list .left_content {
    margin-bottom: 0;
  }
}
#outline .outline_contnet .outline_list h3 {
  padding: 6px 15px;
  letter-spacing: 0.27em;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  display: block;
  font-weight: bold;
}
#outline .outline_contnet .outline_list ul li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .outline_list ul li {
    padding: 26px 0 20px;
  }
}
#outline .outline_contnet .outline_list ul li:first-child {
  border-top: none;
  padding: 20px 0;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .outline_list ul li:first-child {
    padding: 26px 0 20px;
  }
}
#outline .outline_contnet .outline_list ul li .dt {
  line-height: 1;
  padding-bottom: 5px;
  font-weight: bold;
  vertical-align: middle;
}
#outline .outline_contnet .outline_list ul li .dt img {
  width: 16px;
}
#outline .outline_contnet .outline_list ul li .dt img.kakko_left {
  padding-right: 10px;
}
#outline .outline_contnet .outline_list ul li .dt img.kakko_right {
  padding-left: 10px;
}
#outline .outline_contnet .outline_list ul li .dd {
  color: #fff;
  line-height: 1.7;
  display: inline-block;
}
#outline .outline_contnet .outline_list ul li .dd span {
  margin-top: 3px;
  font-size: 0.8em;
  line-height: 1.8;
  display: inline-block;
}
#outline .outline_contnet .outline_list ul li .google_map {
  margin-top: 10px;
}
#outline .outline_contnet .outline_list ul li .google_map a {
  font-size: 0.9em;
  color: #fff;
  padding: 5px 0;
  opacity: 0.5;
}
#outline .outline_contnet .outline_list ul li .google_map a img {
  width: 24px;
  padding-right: 8px;
  padding-top: 9px;
  opacity: 1;
}
#outline .bnr_info {
  width: 90%;
  margin: 30px auto 0;
}
@media screen and (min-width: 1025px) {
  #outline .bnr_info {
    display: none;
  }
}

/* ---------------------------------------------------
 見どころ
--------------------------------------------------- */
#highlight {
  padding-top: 130px;
}
@media screen and (min-width: 1025px) {
  #highlight {
    width: 1240px;
    margin: 0 auto;
    padding: 230px 30px 0;
  }
}
#highlight .highlight_contnet {
  width: 100%;
  position: relative;
}
#highlight .highlight_contnet h2 {
  width: 30%;
  float: right;
  overflow: visible;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet h2 {
    width: 248px;
    height: 360px;
  }
}
#highlight .highlight_contnet h2 img {
  width: 210%;
  margin-left: 50%;
  transform: translate(-50%, -25%);
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet h2 img {
    width: 180%;
  }
}
#highlight .highlight_contnet .highlight_list {
  width: 70%;
  padding-left: 5%;
  margin-top: -25px;
  float: left;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .highlight_list {
    width: 930px;
    padding-left: 0;
  }
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .highlight_list .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#highlight .highlight_contnet .highlight_list .flex .content {
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .highlight_list .flex .content {
    width: 47%;
    padding: 60px 0 45px;
    border-bottom: 0;
  }
}
#highlight .highlight_contnet .highlight_list .flex .content .midashi {
  margin-bottom: 20px;
  font-size: 1.2em;
  color: #1c75d7;
  display: table;
  line-height: 1.786;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .highlight_list .flex .content .midashi {
    font-size: 1.4em;
  }
}
#highlight .highlight_contnet .highlight_list .flex .content .midashi p {
  font-weight: bold;
  margin-bottom: 0;
  display: table;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .highlight_list .flex .content .midashi.sp_none {
    display: inherit !important;
  }
}
#highlight .highlight_contnet .highlight_list .flex .content .detail .sub_midashi {
  margin-top: 30px;
  color: #1c75d7;
  font-weight: bold;
}
#highlight .highlight_contnet .highlight_list .flex .content .detail .hosoku {
  font-size: 10px;
  margin-top: 15px;
}
#highlight .highlight_contnet .highlight_list .flex .content .detail .left,
#highlight .highlight_contnet .highlight_list .flex .content .detail .right {
  margin-top: 1.9em;
}
#highlight .highlight_contnet .highlight_list .flex .content .detail .left span,
#highlight .highlight_contnet .highlight_list .flex .content .detail .right span {
  margin-bottom: 15px;
  padding: 10px;
  color: #1c75d7;
  font-size: 1em;
  display: inline-block;
  border: solid 1px;
  font-weight: bold;
  line-height: 1;
}
#highlight .highlight_contnet .highlight_list .flex .content .detail .left span.new,
#highlight .highlight_contnet .highlight_list .flex .content .detail .right span.new {
  margin-bottom: 15px;
  padding: 10px;
  color: #ff5291;
  font-weight: bold;
  border: 0;
  font-family: "Cinzel", serif;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .highlight_list .flex .content .detail .left {
    float: left;
    width: 47%;
  }
  #highlight .highlight_contnet .highlight_list .flex .content .detail .right {
    float: right;
    width: 46%;
  }
}
#highlight .highlight_contnet .highlight_list .flex .content .detail img.selectNone {
  padding: 15px 0 0;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .highlight_list .flex .content_3 {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0;
  }
}
#highlight a {
  color: #1c75d7;
  text-decoration: underline;
}
#highlight .bnr_info {
  width: 90%;
  margin: 30px auto 0;
}

/* ---------------------------------------------------
 Goods
--------------------------------------------------- */
#goods {
  padding-top: 130px;
}
@media screen and (min-width: 1025px) {
  #goods {
    width: 1240px;
    margin: 0 auto;
    padding: 230px 30px 0;
  }
}
#goods .goods_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 1025px) {
  #goods .goods_content {
    width: 248px;
    display: block;
    float: left;
  }
}
#goods .goods_content h2 {
  width: 30%;
  overflow: visible;
  position: relative;
}
#goods .goods_content h2::before {
  content: "";
  display: block;
  padding-top: 106.6666666667%;
}
@media screen and (min-width: 1025px) {
  #goods .goods_content h2 {
    width: 248px;
    height: 230px;
  }
}
#goods .goods_content h2 img {
  width: 220%;
  margin-left: 50%;
  transform: translate(-50%, -30%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 1025px) {
  #goods .goods_content h2 img {
    width: 180%;
  }
}
#goods .goods_content .left_content {
  width: 40%;
  margin: 0 5% 0 0;
}
#goods .goods_content .left_content .note_link {
  padding: 16px 0;
  text-align: left;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  position: relative;
}
#goods .goods_content .left_content .note_link a {
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: block;
}
@media screen and (min-width: 1025px) {
  #goods .goods_content .left_content .note_link a {
    font-size: 1em;
  }
}
#goods .goods_content .left_content .note_link:after {
  content: url(../images/arrow_bottom.png);
  display: inline-block;
  transform: scale(0.5);
  position: absolute;
  right: 0;
  top: 35%;
}
#goods h3 {
  margin: 60px auto 0;
}
@media screen and (min-width: 1025px) {
  #goods h3 {
    width: 920px;
    margin: 0 0 20px;
    background: linear-gradient(to right, rgba(52, 110, 198, 0), rgb(52, 110, 198), rgba(52, 110, 198, 0));
    float: right;
    text-align: center;
  }
  #goods h3 img {
    width: 430px;
  }
}
#goods ul.goods_list {
  margin: 25px auto 0;
  width: 96%;
}
@media screen and (min-width: 1025px) {
  #goods ul.goods_list {
    width: 930px;
    margin: 15px 0 60px;
    float: right;
  }
}
#goods ul.goods_list li {
  width: 47%;
  margin: 0 1.5% 10px;
  background: #fff;
  float: left;
}
@media screen and (min-width: 1025px) {
  #goods ul.goods_list li {
    width: 31.33%;
    margin: 0 1% 20px;
  }
}
#goods ul.goods_list li .item_detail {
  width: 100%;
  padding: 10px 10px 14px;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  #goods ul.goods_list li .item_detail {
    padding: 10px 20px 14px;
  }
}
#goods ul.goods_list li .item_detail .name {
  font-size: 11px;
  line-height: 1.6;
  padding-bottom: 10px;
  width: 100%;
  word-break: break-all;
  height: 7em;
  color: #000;
}
@media screen and (min-width: 1025px) {
  #goods ul.goods_list li .item_detail .name {
    font-size: 0.9em;
    height: 6em;
  }
}
#goods ul.goods_list li .item_detail .name span {
  display: block;
}
#goods ul.goods_list li .item_detail .name span.sp_yotei {
  font-size: 10px;
  letter-spacing: 0;
}
#goods ul.goods_list li .item_detail .price {
  font-size: 1.1em;
  color: #999;
}
#goods ul.goods_list li .item_detail .price span {
  font-size: 10px;
  padding-left: 3px;
}
#goods #goods_note {
  width: 80%;
  margin: 55px auto 0;
}
@media screen and (min-width: 1025px) {
  #goods #goods_note {
    width: 930px;
    margin: 0 0 0 250px;
    clear: both;
  }
}
#goods #goods_note .title {
  letter-spacing: 0.2em;
  text-align: center;
  font-size: 1.1em;
  padding: 12px 0;
  line-height: 1;
}
#goods #goods_note .title:before {
  content: "【";
  margin-right: 20px;
}
#goods #goods_note .title:after {
  content: "】";
  margin-left: 20px;
}
@media screen and (min-width: 1025px) {
  #goods #goods_note .title {
    text-align: left;
  }
}
#goods #goods_note ul.goods_note_list {
  font-size: 0.9em;
  width: 100%;
  margin: 20px auto 0;
  padding: 0 0 0 16px;
}
#goods #goods_note ul.goods_note_list li {
  list-style: disc;
  padding-bottom: 5px;
}

/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

NEWSページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
h1.news_pagetitle {
  width: 24%;
  max-width: 180px;
  margin: 70px auto 17px;
  overflow: visible;
  position: relative;
}
h1.news_pagetitle::before {
  content: "";
  display: block;
  padding-top: 27.7777777778%;
}
@media screen and (min-width: 1025px) {
  h1.news_pagetitle {
    margin: 100px auto 40px;
  }
}
h1.news_pagetitle img {
  width: 294%;
  max-width: 530px;
  transform: translate(-33%, -39%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

ul.news_list {
  margin-top: 27px;
}
@media screen and (min-width: 1025px) {
  ul.news_list {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
ul.news_list li {
  background: rgba(0, 0, 0, 0.8);
  padding: 40px 35px;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  ul.news_list li {
    padding: 100px;
  }
}
ul.news_list li .new {
  margin-bottom: 15px;
  padding: 10px 10px 10px 0;
  color: #ff5291;
  font-weight: bold;
  border: 0;
  font-family: "Cinzel", serif;
}
ul.news_list li .news_date {
  margin-bottom: 20px;
  font-size: 0.8em;
}
ul.news_list li .news_title {
  font-size: 1.2em;
  line-height: 1.5;
  border-bottom: 1px solid #444444;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
@media screen and (min-width: 1025px) {
  ul.news_list li .news_title {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
ul.news_list li .news_detail a {
  color: #1c75d7;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  ul.news_list li .news_detail .two_columns {
    display: flex;
  }
}
@media screen and (min-width: 1025px) {
  ul.news_list li .news_detail .two_columns p:nth-child(1) {
    width: 47%;
    padding-right: 3%;
  }
}
ul.news_list li .news_detail .two_columns p:nth-child(2) {
  padding-top: 40px;
}
@media screen and (min-width: 1025px) {
  ul.news_list li .news_detail .two_columns p:nth-child(2) {
    width: 48%;
    padding-left: 2%;
    padding-top: 0;
  }
}
ul.news_list li .news_detail img {
  margin-top: 30px;
  margin-bottom: 30px;
}

.news_tw {
  text-align: center;
}
.news_tw p {
  font-size: 0.8em;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .news_tw p {
    margin-bottom: 20px;
  }
}
.news_tw .twbtn a {
  display: inline-block;
  background: #000;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border-radius: 50%;
}
@media screen and (min-width: 1025px) {
  .news_tw .twbtn a {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
  }
}
.news_tw .twbtn a i {
  color: #1c75d7;
}/*# sourceMappingURL=style_jj0.css.map */