@charset "UTF-8";
/* Scss Document */
/*メディアクエリー
---------------------------------------------*/
/*function
--------------------------------------------*/
/*フォント
--------------------------------------------*/
/*変数
--------------------------------------------*/
* {
  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: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #333333;
  line-height: 1.6;
  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%;
  background-color: #EEEEEA;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 16px;
    background-image: url(../images/bg_pc.png);
    background-size: 1280px;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
    background-image: url(../images/bg_sp.png);
    background-size: 392px;
  }
}

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: #000;
  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: block !important;
  }
}
/* -----------------------------
　　スマホ用サイドメニュー
----------------------------- */
.side_navigation {
  transition: 1s;
  z-index: 8888;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eeeeea;
  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%;
  height: 160px;
  float: right;
  margin-bottom: 24px;
  border-right: 1px solid #ccc;
  font-size: 24px;
  line-height: 1;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  writing-mode: vertical-rl;
  letter-spacing: 0.25em;
}
.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 #ccc;
  animation: navTop 0.7s 0.3s forwards;
  opacity: 0;
}
.drawer-menu .inner_1 ul li span {
  display: inline-block;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 5px;
  margin-top: 2px;
}
.drawer-menu .inner_1 ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px 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 {
  display: flex;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-stretch: condensed;
  padding: 5px 0;
  font-size: 20px;
}
.drawer-menu .inner_1 .drawer-menu_others img {
  width: 24px;
  margin-right: 16px;
}

@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 {
  display: block;
  position: fixed;
  z-index: 21;
  top: 23px;
  right: 32px;
  width: 24px;
  height: 19px;
  text-align: center;
  cursor: pointer;
  /*
  background: #102246;
  border-radius: 50%;
  */
}

.bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 1px;
  background: #FFFFFF;
  transition: all 0.5s;
  transform-origin: left top;
}
.bar.middle {
  top: 8px;
  opacity: 1;
}
.bar.bottom {
  top: 16px;
  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: 10;
  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: 0;
  background-color: #000 !important;
  transform: rotate(45deg);
}
.check:checked ~ .menu-btn .bar.middle {
  opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
  width: 35px;
  top: 25px;
  background-color: #000 !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: 0;
  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;
  background-color: #333333;
}

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

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  .pc_header {
    /* PC用 */
    width: 100%;
    height: 72px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
  }
  .popup_logo {
    width: 32px;
  }
  .popup_logo a {
    display: block;
  }
  nav.header_nav a,
  nav.header_nav .none_url {
    display: inline-block;
    margin-left: 32px;
    color: #FFFFFF;
  }
  nav.header_nav a .en,
  nav.header_nav .none_url .en {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-stretch: condensed;
    font-size: 20px;
  }
  nav.header_nav a .ja,
  nav.header_nav .none_url .ja {
    font-family: "noto-sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 10px;
    margin-top: -3px;
  }
  nav.header_nav a.nowurl,
  nav.header_nav .none_url.nowurl {
    opacity: 0.5;
  }
  nav.header_nav a:hover,
  nav.header_nav .none_url:hover {
    opacity: 0.5;
  }
}
/* --- Footer --- */
#footer {
  background: #333333;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (min-width: 1025px) {
  #footer {
    padding: 80px 0 50px;
  }
}
@media screen and (max-width: 1024px) {
  #footer {
    padding: 64px 0 42px;
  }
}
#footer ul .navList {
  display: inline-flex;
  padding-bottom: 20px;
}
#footer ul li {
  padding: 0 10px;
  font-size: 24px;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  #footer ul li {
    padding: 0 15px;
  }
}
#footer ul li a {
  color: #FFFFFF;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-stretch: condensed;
}
#footer .note {
  font-size: 12px;
  line-height: 1.75;
  color: #DDDDDD;
  margin-top: 2px;
}
#footer .logo a {
  display: inline-block;
  width: 90px;
  margin: 55px 0 0 0;
}
#footer .logo a:hover {
  opacity: 0.7;
}
#footer .copyright {
  font-size: 10px;
  margin-top: 55px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
}

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

/* -- フォント -- */
.Futura_500,
.Futura_600 {
  font-family: "futura-pt", sans-serif;
  font-style: normal;
}

.Futura_500 {
  font-weight: 500;
}

.Futura_600 {
  font-weight: 600;
}

.Futura_700 {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.Mincho {
  font-family: "Hiragino Mincho Pro", "游明朝", "Yu Mincho", YuMincho, serif;
}

/* --- ボタン --- */
.btn a {
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background-color: #853333;
  color: #FFFFFF;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-stretch: condensed;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .btn a {
    line-height: 76px;
    width: 240px;
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .btn a {
    line-height: 66px;
    width: 205px;
    font-size: 20px;
  }
}
.btn a svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1025px) {
  .btn a svg {
    width: 11px;
    right: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .btn a svg {
    width: 8px;
    right: 16px;
  }
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6.9px;
  border-color: transparent transparent transparent #c97a25;
  position: absolute;
}

/* -- 他 -- */
.common_container {
  width: 83.6734693878vw;
  padding: 0 !important;
  margin-left: auto;
  margin-right: auto;
}

h1.pagetitle {
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  width: 100%;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  h1.pagetitle {
    padding: 32px 0 16px;
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  h1.pagetitle {
    padding: 80px 0 10px;
    font-size: 40px;
  }
}
h1.pagetitle.fadein_slide {
  transform: translateY(-50px);
}

@media only screen and (min-width: 768px) {
  /* Tablet */
  /* -- 他 -- */
  .common_container {
    width: 70% !important;
    padding: 0 !important;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  /* -- 他 -- */
  .common_container {
    width: 90% !important;
    max-width: 1180px !important;
  }
}
/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

トップページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
@media screen and (min-width: 1025px) {
  .top_sns_container {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .top_sns_container {
    background-color: #333333;
    height: 64px;
    width: 100%;
    padding: 20px 32px;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
  }
}
.top_sns_container a {
  display: block;
}
@media screen and (max-width: 1024px) {
  .top_sns_container a {
    width: 24px;
  }
}
h2 {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1025px) {
  h2 {
    font-size: 72px;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 48px;
    letter-spacing: 0.1em;
  }
}
h2.h2_left {
  float: left;
  font-feature-settings: normal;
}
@media screen and (min-width: 1025px) {
  h2.h2_left {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  h2.h2_left {
    margin-left: 0;
  }
}
h2.h2_right {
  float: right;
}
@media screen and (min-width: 1025px) {
  h2.h2_right {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  h2.h2_right {
    margin-right: 0;
  }
}

.title_eng {
  line-height: 1;
  color: #BEBEBB;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .title_eng {
    padding-bottom: 20px;
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .title_eng {
    padding-bottom: 16px;
    font-size: 24px;
  }
}

.line_bottom,
.line_top {
  padding-top: 1.2%;
  width: 100%;
}

/* --------------------------------
 メインビジュアル
--------------------------------- */
#main {
  margin-left: auto;
  margin-right: auto;
  background-color: #FFFFFF;
}
@media screen and (min-width: 1025px) {
  #main {
    padding-top: 112px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  #main {
    padding-top: 112px;
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
}
#main img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #main img {
    width: 95vw;
  }
}
@media screen and (max-width: 1024px) {
  #main img {
    width: 91.8367346939vw;
  }
}

/* ---------------------------------------------------
 インフォメーション
--------------------------------------------------- */
#info {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #info {
    width: 384px;
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 1024px) {
  #info {
    width: 91.8367346939vw;
    max-width: 400px;
    margin-bottom: 75px;
  }
}

/* ---------------------------------------------------
 イントロ
--------------------------------------------------- */
@media screen and (min-width: 1025px) {
  #intro {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 1024px) {
  #intro {
    margin-bottom: 75px;
  }
}
#intro .intro_title {
  color: #853333;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  #intro .intro_title {
    line-height: 1.5;
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  #intro .intro_title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
#intro .intro_copy {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  #intro .intro_copy {
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  #intro .intro_copy {
    font-size: 16px;
  }
}

/* ---------------------------------------------------
 NEWS
--------------------------------------------------- */
#news .news_contnet {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #news .news_contnet {
    width: 802px;
  }
}
@media screen and (max-width: 1024px) {
  #news .news_contnet {
    width: 83.6734693878vw;
  }
}
#news .news_contnet ul.topnews_list {
  float: right;
}
@media screen and (min-width: 1025px) {
  #news .news_contnet ul.topnews_list {
    width: 74%;
  }
}
@media screen and (max-width: 1024px) {
  #news .news_contnet ul.topnews_list {
    width: 76%;
  }
}
#news .news_contnet ul.topnews_list li {
  border-top: #DDDDDD solid 1px;
  border-bottom: #DDDDDD solid 1px;
}
#news .news_contnet ul.topnews_list li a {
  display: block;
}
@media screen and (min-width: 1025px) {
  #news .news_contnet ul.topnews_list li a {
    font-size: 16px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 1024px) {
  #news .news_contnet ul.topnews_list li a {
    font-size: 14px;
    padding: 20px 0;
  }
}
#news .news_contnet ul.topnews_list li a .date {
  padding-bottom: 5px;
  color: #853333;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
}
#news .news_contnet ul.topnews_list li a .news_tx {
  width: 100%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 1025px) {
  #news .news_contnet ul.topnews_list li a .news_tx {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  #news .news_contnet ul.topnews_list li a .news_tx {
    font-size: 14px;
  }
}
#news .btn {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  #news .btn a {
    margin-top: 24px;
  }
}
@media screen and (max-width: 1024px) {
  #news .btn a {
    margin-top: 30px;
  }
}

/* ---------------------------------------------------
 開催概要
--------------------------------------------------- */
@media screen and (min-width: 1025px) {
  #outline {
    padding-top: 114px;
  }
}
@media screen and (max-width: 1024px) {
  #outline {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet {
    width: 802px;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 1024px) {
  #outline .outline_contnet {
    width: 83.6734693878vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
}
#outline .outline_contnet h2 {
  float: right;
}
#outline .outline_contnet .left_content {
  float: left;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content {
    width: 72%;
    margin-top: 90px;
    /* 東京会場追加の際には削除 */
  }
}
@media screen and (max-width: 1024px) {
  #outline .outline_contnet .left_content {
    width: 76%;
  }
}
#outline .outline_contnet .left_content .title_eng {
  width: 100%;
  /*text-align: right;*/
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .title_eng {
    text-align: left;
  }
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .outline_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .block {
    width: calc((100% - 32px) / 2);
  }
}
@media screen and (max-width: 1024px) {
  #outline .outline_contnet .left_content .block {
    margin-bottom: 30px;
  }
}
#outline .outline_contnet .left_content .block .obi {
  background: #853333;
  color: #FFFFFF;
  width: 100%;
  line-height: 1;
  background: linear-gradient(90deg, #853333, #EEEEEA);
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", sans-serif;
  font-weight: 300;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .block .obi {
    margin-bottom: 8px;
    padding: 4px 12px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #outline .outline_contnet .left_content .block .obi {
    margin-bottom: 10px;
    padding: 5px 0 5px 8px;
    font-size: 14px;
    margin-left: -2.0408163265vw;
  }
}
#outline .outline_contnet .left_content .block p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .block p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  #outline .outline_contnet .left_content .block p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .block .head {
    display: block;
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
    width: 36%;
    padding: 28px 16px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .block .body {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .block .flexPc {
    display: flex;
    align-items: center;
  }
}
#outline .outline_contnet .left_content .block .en {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  /* Mediumは通常500 */
  font-style: normal;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .block .en {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #outline .outline_contnet .left_content .block .en {
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .block .date {
    font-size: 18px;
    margin-top: 2px;
  }
}
@media screen and (max-width: 1024px) {
  #outline .outline_contnet .left_content .block .date {
    margin-bottom: -7px;
  }
}
#outline .outline_contnet .left_content .block .date .min {
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .block .date .min {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  #outline .outline_contnet .left_content .block .date .min {
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .block .time {
    font-size: 18px;
    margin-top: -8px;
  }
}
@media screen and (max-width: 1024px) {
  #outline .outline_contnet .left_content .block .time {
    margin-bottom: 3px;
  }
}
#outline .outline_contnet .left_content .block a > div {
  display: flex;
  align-items: flex-start;
}
#outline .outline_contnet .left_content .block a svg {
  display: block;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .block a svg {
    width: 8px;
    margin-right: 4px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 1024px) {
  #outline .outline_contnet .left_content .block a svg {
    width: 8px;
    margin-right: 3px;
    margin-top: 7px;
  }
}
#outline .outline_contnet .left_content .block a span {
  display: block;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", sans-serif;
  font-weight: 300;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content .block a span {
    font-size: 15px;
    line-height: 1.3125;
  }
}
@media screen and (max-width: 1024px) {
  #outline .outline_contnet .left_content .block a span {
    font-size: 13px;
    line-height: 1.5;
  }
}
#outline .bnr_info {
  margin: 0 auto;
}
#outline .bnr_info.pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  #outline .bnr_info.sp {
    display: none;
  }
  #outline .bnr_info.pc {
    display: block;
    margin: 20px 0 0;
  }
}
#outline .bnr_info a {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media screen and (min-width: 1025px) {
  #outline .bnr_info a {
    width: 384px;
  }
}
@media screen and (max-width: 1024px) {
  #outline .bnr_info a {
    max-width: 400px;
  }
}

/* ---------------------------------------------------
 Highlight
--------------------------------------------------- */
#highlight {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  #highlight {
    padding-top: 114px;
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 1024px) {
  #highlight {
    padding-top: 100px;
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet {
    width: 802px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1024px) {
  #highlight .highlight_contnet {
    width: 83.6734693878vw;
    margin-left: auto;
    margin-right: auto;
  }
}
#highlight .highlight_contnet .right_content {
  float: right;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .right_content {
    width: 74%;
  }
}
@media screen and (max-width: 1024px) {
  #highlight .highlight_contnet .right_content {
    width: 81%;
    margin-right: -4.0816326531vw;
  }
}
#highlight .highlight_contnet .content {
  border-top: 1px solid #DDDDDD;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .content {
    padding: 40px 0;
  }
}
@media screen and (max-width: 1024px) {
  #highlight .highlight_contnet .content {
    padding: 20px 0;
  }
}
#highlight .highlight_contnet .content:last-of-type {
  border-bottom: 1px solid #ccc;
}
#highlight .highlight_contnet .content .midashi {
  margin-bottom: 20px;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  color: #853333;
}
#highlight .highlight_contnet .content .midashi p {
  background: linear-gradient(transparent 60%, #E3DBD8 60%);
  width: -moz-fit-content;
  width: fit-content;
  display: table;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .content .midashi p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  #highlight .highlight_contnet .content .midashi p {
    font-size: 16px;
  }
}
#highlight .highlight_contnet .content .detail {
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .content .detail {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  #highlight .highlight_contnet .content .detail {
    font-size: 14px;
  }
}
#highlight .highlight_contnet .content .detail .enji {
  display: block;
  color: #853333;
}
#highlight .highlight_contnet .content .detail .highlightFlex {
  display: flex;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .content .detail .highlightFlex {
    gap: 32px;
  }
}
@media screen and (max-width: 1024px) {
  #highlight .highlight_contnet .content .detail .highlightFlex {
    flex-direction: column;
    gap: 26px;
  }
}
#highlight .highlight_contnet .content .detail .detail-info {
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  #highlight .highlight_contnet .content .detail .detail-info {
    margin-bottom: 20px;
  }
}
#highlight .highlight_contnet .content .detail .sub_midashi {
  color: #853333;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .content .detail .sub_midashi {
    margin-bottom: 8px;
  }
}
#highlight .highlight_contnet .content .detail .hosoku {
  color: #888888;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .content .detail .hosoku {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  #highlight .highlight_contnet .content .detail .hosoku {
    font-size: 10px;
  }
}
#highlight .highlight_contnet .content .detail img.selectNone {
  padding: 16px 0;
}
#highlight .highlight_contnet .content .line {
  display: block;
  width: 85%;
  height: 1px;
  background-color: #DDDDDD;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .content .line {
    margin: 40px auto;
  }
}
@media screen and (max-width: 1024px) {
  #highlight .highlight_contnet .content .line {
    margin: 20px auto;
  }
}

/* ---------------------------------------------------
 Goods
--------------------------------------------------- */
#goods {
  background-color: #E2E2DD;
}
@media screen and (min-width: 1025px) {
  #goods {
    padding-bottom: 72px;
  }
}
@media screen and (max-width: 1024px) {
  #goods {
    padding-bottom: 50px;
  }
}
#goods .goods_content {
  position: relative;
}
@media screen and (min-width: 1025px) {
  #goods .goods_content {
    padding-top: 80px;
    width: 802px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  #goods .goods_content {
    width: 91.8367346939vw;
    margin: 0 auto;
  }
}
#goods .h2_right {
  line-height: 1.2;
  position: absolute;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  #goods .h2_right {
    top: 80px;
    right: 33px;
  }
}
@media screen and (max-width: 1024px) {
  #goods .h2_right {
    top: 60px;
    right: 0;
    margin-right: 0;
    line-height: 1.3;
  }
}
#goods .left_content {
  float: left;
  width: 70%;
}
@media screen and (min-width: 1025px) {
  #goods .left_content {
    margin-top: 64px;
  }
}
@media screen and (max-width: 1024px) {
  #goods .left_content .title_eng {
    margin: 76px 0 0 0;
  }
}
#goods .left_content .note_link a {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
}
@media screen and (min-width: 1025px) {
  #goods .left_content .note_link a {
    width: 280px;
    padding: 8px 0;
  }
}
@media screen and (max-width: 1024px) {
  #goods .left_content .note_link a {
    width: 172px;
    padding: 8px 0;
  }
}
#goods .left_content .note_link a svg {
  display: block;
  width: 7px;
}
@media screen and (min-width: 1025px) {
  #goods .left_content .note_link a svg {
    margin-right: 12px;
  }
}
@media screen and (max-width: 1024px) {
  #goods .left_content .note_link a svg {
    margin-right: 10px;
  }
}
#goods .left_content .note_link a .tx {
  float: left;
}
@media screen and (min-width: 1025px) {
  #goods .left_content .note_link a .tx {
    line-height: 1.5;
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  #goods .left_content .note_link a .tx {
    line-height: 1.75;
    font-size: 12px;
  }
}
#goods ul.goods_list {
  max-width: 802px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  #goods ul.goods_list {
    margin: 40px auto 0;
    gap: 17px;
  }
}
@media screen and (max-width: 1024px) {
  #goods ul.goods_list {
    margin: 50px auto 0;
    width: 91.8367346939vw;
    gap: 16px;
  }
}
#goods ul.goods_list li {
  background: #fff;
}
@media screen and (min-width: 1025px) {
  #goods ul.goods_list li {
    width: calc((100% - 17px - 17px) / 3);
  }
}
@media screen and (max-width: 1024px) {
  #goods ul.goods_list li {
    width: calc((100% - 16px) / 2);
  }
}
#goods ul.goods_list li .item_detail {
  width: 100%;
  padding: 0 16px 10px;
}
#goods ul.goods_list li .item_detail .name {
  line-height: 1.1571428571;
  width: 100%;
  word-break: break-all;
}
@media screen and (min-width: 1025px) {
  #goods ul.goods_list li .item_detail .name {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1024px) {
  #goods ul.goods_list li .item_detail .name {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
#goods ul.goods_list li .item_detail .date,
#goods ul.goods_list li .item_detail .attn {
  color: #853333;
  display: block;
  font-size: 10px;
}
#goods ul.goods_list li .item_detail .price {
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #888888;
}
@media screen and (min-width: 1025px) {
  #goods ul.goods_list li .item_detail .price {
    font-size: 20px;
    margin-top: 3px;
  }
}
@media screen and (max-width: 1024px) {
  #goods ul.goods_list li .item_detail .price {
    font-size: 16px;
    margin-top: 3px;
  }
}
#goods ul.goods_list li .item_detail .price span {
  font-size: 10px;
  padding-left: 3px;
}
@media screen and (min-width: 1025px) {
  #goods #goods_note {
    width: 802px;
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 1024px) {
  #goods #goods_note {
    width: 91.8367346939vw;
    margin: 65px auto 0;
  }
}
#goods #goods_note .title {
  text-align: center;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  padding: 7px 0;
}
@media screen and (min-width: 1025px) {
  #goods #goods_note .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  #goods #goods_note .title {
    font-size: 16px;
  }
}
#goods #goods_note ul.goods_note_list {
  line-height: 1.5;
  width: 100%;
  padding: 0 0 0 16px;
}
@media screen and (min-width: 1025px) {
  #goods #goods_note ul.goods_note_list {
    font-size: 14px;
    margin: 22px auto 0;
  }
}
@media screen and (max-width: 1024px) {
  #goods #goods_note ul.goods_note_list {
    font-size: 12px;
    margin: 30px auto 0;
  }
}
#goods #goods_note ul.goods_note_list li {
  list-style: disc;
  padding-bottom: 10px;
}

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

NEWSページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
@media screen and (min-width: 1025px) {
  .newsPage_wrap {
    margin-top: 72px;
  }
}
@media screen and (max-width: 1024px) {
  .newsPage_wrap {
    margin-top: 64px;
  }
}

.news_tw {
  text-align: center;
}
.news_tw p {
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .news_tw p {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .news_tw p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.news_tw .twbtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .news_tw .twbtn a {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .news_tw .twbtn a {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .news_tw .twbtn img {
    width: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .news_tw .twbtn img {
    width: 13px;
  }
}

@media screen and (min-width: 1025px) {
  .newsArea {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
}
@media screen and (min-width: 1025px) {
  .newsArea .newsArea_img {
    position: absolute;
    top: -166px;
    right: -104px;
    width: 115px;
    pointer-events: none;
  }
}

ul.news_list {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  ul.news_list {
    width: 800px;
    margin: 32px auto 50px;
  }
}
@media screen and (max-width: 1024px) {
  ul.news_list {
    width: 91.8367346939vw;
    margin: 20px auto 40px;
  }
}
ul.news_list li {
  background: #FFFFFF;
  width: 100%;
  border: 1px solid #DDDDDD;
}
@media screen and (min-width: 1025px) {
  ul.news_list li {
    padding: 40px 48px 56px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  ul.news_list li {
    padding: 30px;
    margin-bottom: 20px;
  }
}
ul.news_list li .news_date {
  color: #853333;
  margin-bottom: 5px;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  ul.news_list li .news_date {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  ul.news_list li .news_date {
    font-size: 14px;
  }
}
ul.news_list li .news_title {
  color: #853333;
  line-height: 1.5;
  border-bottom: 1px solid #DDDDDD;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  ul.news_list li .news_title {
    font-size: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  ul.news_list li .news_title {
    font-size: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
ul.news_list li .news_detail {
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  ul.news_list li .news_detail {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  ul.news_list li .news_detail {
    font-size: 14px;
  }
}
ul.news_list li .news_detail a {
  text-decoration: underline;
}
ul.news_list li .news_detail .two_columns p:nth-child(2) {
  padding-top: 40px;
}

@media screen and (min-width: 1025px) {
  .btn {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .btn {
    margin-bottom: 64px;
  }
}
@media only screen and (min-width: 1025px) {
  /* Laptop PC */
}/*# sourceMappingURL=style_naruto.css.map */