@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: "Hiragino Sans","ヒラギノ角ゴシック","Yu Gothic","游ゴシック", sans-serif;
  background: #e2e2dd;
  color: #000;
  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%;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 16px;
  }
}

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: .5s;
    animation-name: flash;
  }

  @keyframes flash {
    0% {
      opacity: .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;
  }
}
/* -----------------------------
　　スマホ用サイドメニュー
----------------------------- */
.side_navigation {
  transition: 1s;
  z-index: 8888;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -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%);
  */
  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 #ccc;
}
.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 .drawer-menu_others {
  margin-top: 20px;
  animation: navOthers 1s 1s forwards;
  opacity: 0;
}
.drawer-menu .inner_1 .drawer-menu_others a {
  display: block;
  font-size: .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: #000;
  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: sub;
  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: 6px;
  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: #000;
  -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;
  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: #000 !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: #000 !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;
}

@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;
  -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;
  }
}
/* ---------------------------------------------------
 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;
  }
}
@-webkit-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 only screen and (min-width: 1025px) {
  /* Laptop PC */
  .pc_header {
    /* PC用 */
    display: block;
    width: 100%;
    height: 100px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }

  .popup_logo {
    position: absolute;
    left: 40px;
    top: 28px;
    width: 200px;
  }

  nav.header_nav {
    position: absolute;
    top: 30px;
    right: 40px;
  }
  nav.header_nav a, nav.header_nav .none_url {
    display: inline-block;
    margin-left: 20px;
    color: #000;
  }
  nav.header_nav a .Futura_700, nav.header_nav .none_url .Futura_700 {
    font-size: 1.1em;
    line-height: 1.2;
  }
  nav.header_nav a .Mincho, nav.header_nav .none_url .Mincho {
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: .8;
    padding-top: 5px;
  }
  nav.header_nav a.nowurl, nav.header_nav .none_url.nowurl {
    color: #c0b063;
  }
  nav.header_nav a:hover, nav.header_nav .none_url:hover {
    color: #c0b063;
  }
}
/* --- Footer --- */
#footer {
  padding: 50px 0;
  margin-top: 80px;
  background: #3a3938;
  width: 100%;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  #footer {
    margin-top: 200px;
  }
}
#footer ul .navList {
  display: inline-flex;
  padding-bottom: 15px;
}
#footer ul li {
  padding: 0 10px;
  font-size: 1.2em;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  #footer ul li {
    padding: 0 15px;
  }
}
#footer ul li a {
  color: #fff;
}
#footer .note {
  font-size: 10px;
  color: #888;
  margin-top: 10px;
}
#footer .logo_daikouryuten {
  width: 16%;
  max-width: 100px;
  float: right;
}
#footer .logo_daikouryuten a:hover {
  opacity: .7;
}
#footer .logo a {
  display: inline-block;
  width: 90px;
  margin: 50px 0 0 0;
}
#footer .logo a:hover {
  opacity: .7;
}
#footer .copyright {
  font-size: 10px;
  margin-top: 30px;
}

/* --- アニメーション --- */
.fadein_slide {
  opacity: 0;
  transform: translateY(40px);
  /* 下からスライドフェードイン */
  transition: all .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 {
  display: block;
  width: 200px;
  height: 66px;
  padding: 25px;
  margin: 0 auto;
  line-height: 1;
  border: 2px solid #c97a25;
  color: #c97a25;
  border-radius: 33px;
  background: url("../images/icon_kunai.svg") no-repeat 88% 50%/22px;
}
@media screen and (min-width: 1025px) {
  .btn a {
    width: 250px;
  }
}

.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: 90% !important;
  padding: 0 !important;
  margin: 0 auto;
}

h1.pagetitle {
  font-size: 3em;
  text-align: center;
  width: 100%;
  padding: 80px 0 10px;
  line-height: 1;
}
h1.pagetitle.fadein_slide {
  transform: translateY(-50px);
}
@media screen and (min-width: 1025px) {
  h1.pagetitle {
    padding-bottom: 20px;
  }
}

@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;
  }
}
/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

トップページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
.top_sns_container {
  width: 100%;
  background: #fff;
  padding: 10px 4%;
}
@media screen and (min-width: 1025px) {
  .top_sns_container {
    display: none;
  }
}
.top_sns_container a i {
  display: inline-block;
  background: #000;
  color: #c0b063;
  padding: 15px;
  border-radius: 50%;
  margin-right: 10px;
}

h2 {
  width: 15%;
}
@media screen and (min-width: 1025px) {
  h2 {
    width: 100px;
  }
}
h2.h2_left {
  float: left;
  margin-left: 7%;
}
h2.h2_right {
  float: right;
  margin-right: 9%;
}

.title_eng {
  opacity: .2;
  font-size: 2em;
  line-height: 1;
  padding-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .title_eng {
    padding-bottom: 20px;
  }
}

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

.line_top {
  background: url("../images/line_top.jpg") no-repeat 0 0/contain;
}
@media screen and (min-width: 1025px) {
  .line_top {
    background-repeat: repeat-x;
    background-size: 50%;
  }
}
.line_top.line_top_wht {
  background: url("../images/line_wht_top.jpg") no-repeat 0 0/contain;
}
@media screen and (min-width: 1025px) {
  .line_top.line_top_wht {
    background-repeat: repeat-x;
    background-size: 50%;
  }
}

.line_bottom {
  background: url("../images/line_bottom.jpg") no-repeat 0 0/contain;
}
@media screen and (min-width: 1025px) {
  .line_bottom {
    background-repeat: repeat-x;
    background-size: 50%;
  }
}

/* --------------------------------
 メインビジュアル
--------------------------------- */
#main {
  width: 100%;
  background: #fff;
}
#main div {
  width: 100%;
  padding-top: 132.5%;
  background: url("../images/main_sp-1.jpg") no-repeat 0 0/cover;
}
@media screen and (min-width: 1025px) {
  #main div {
    margin-top: 100px;
    padding-top: 73.24%;
    background: url("../images/main_pc-1.jpg") no-repeat 0 0/cover;
  }
}
@media screen and (min-width: 1600px) {
  #main div {
    padding: 0;
    width: 1600px;
    height: 1172px;
    margin: 100px auto 0;
  }
}

.jizen {
  background: #fff;
  padding: 10px 5% 40px;
}
@media screen and (min-width: 1025px) {
  .jizen {
    padding: 30px 0 100px;
  }
  .jizen div {
    width: 660px;
    margin: 0 auto;
  }
}

/* ---------------------------------------------------
 イントロ
--------------------------------------------------- */
#intro .concept {
  width: 40%;
  margin: 50px auto;
}
@media screen and (min-width: 1025px) {
  #intro .concept {
    width: 290px;
    margin: 160px auto 80px;
  }
}
#intro .intro_copy {
  text-align: center;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  #intro .intro_copy {
    font-size: 1.3em;
  }
}
#intro .bnr_info {
  margin: 40px 0 50px;
}
@media screen and (min-width: 1025px) {
  #intro .bnr_info {
    width: 500px;
    margin: 80px auto 160px;
  }
}

/* ---------------------------------------------------
 NEWS
--------------------------------------------------- */
#news {
  background: #eeeeea;
}
#news .news_contnet {
  width: 100%;
  padding: 160px 0;
}
@media screen and (min-width: 1025px) {
  #news .news_contnet {
    width: 1100px;
    margin: 0 auto;
  }
}
#news .news_contnet ul.topnews_list {
  float: right;
  width: 70%;
}
@media screen and (min-width: 1025px) {
  #news .news_contnet ul.topnews_list {
    width: 75%;
  }
}
#news .news_contnet ul.topnews_list li a {
  padding: 20px;
  margin-bottom: 10px;
  display: block;
  background: rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 1025px) {
  #news .news_contnet ul.topnews_list li a {
    padding: 40px;
  }
}
#news .news_contnet ul.topnews_list li a .date {
  padding-bottom: 5px;
}
#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;
}
#news .news_contnet ul.topnews_list .btn a {
  margin: 20px 0 0 0;
}
@media screen and (min-width: 1025px) {
  #news .news_contnet ul.topnews_list .btn a {
    margin-top: 40px;
  }
}

/* ---------------------------------------------------
 開催概要
--------------------------------------------------- */
#outline {
  width: 100%;
}
#outline .outline_contnet {
  padding: 60px 0;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet {
    width: 1100px;
    margin: 0 auto;
    padding: 160px 0;
  }
}
#outline .outline_contnet h2 {
  width: 14%;
  float: right;
  margin-right: 8%;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet h2 {
    width: 100px;
  }
}
#outline .outline_contnet .left_content {
  float: left;
  width: 66%;
  margin-left: 5%;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content {
    width: 72%;
    margin-top: 90px;
    /* 東京会場追加の際には削除 */
  }
}
#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;
  }
}
#outline .outline_contnet .left_content ul {
  margin-bottom: 55px;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .left_content ul {
    width: 47%;
  }
  #outline .outline_contnet .left_content ul.tokyo {
    float: right;
  }
  #outline .outline_contnet .left_content ul.osaka {
    float: left;
  }
  #outline .outline_contnet .left_content ul.osakaOnly {
    width: 100%;
  }
  #outline .outline_contnet .left_content ul.osakaOnly li {
    float: left;
    width: 50%;
  }
}
#outline .outline_contnet .left_content ul .obi {
  color: #fff;
  letter-spacing: 0.3em;
  margin-bottom: 15px;
  width: 100%;
  line-height: 1;
  padding: 7px 0 7px 15px;
  background: linear-gradient(90deg, black, #e2e2dd);
  opacity: .7;
}
#outline .outline_contnet .left_content ul li {
  margin-bottom: 15px;
}
#outline .outline_contnet .left_content ul li .dt {
  font-weight: bold;
}
#outline .outline_contnet .left_content ul li .dt img {
  width: 1em;
  vertical-align: text-bottom;
  margin-right: 3px;
}
#outline .outline_contnet .left_content ul li .dd p {
  padding-bottom: 5px;
}
#outline .outline_contnet .left_content ul li .dd .google_map a {
  display: block;
  position: relative;
  color: #c97a25;
  margin-top: 4px;
}
#outline .outline_contnet .left_content ul li .dd .google_map a .triangle {
  top: 4px;
}
#outline .outline_contnet .left_content ul li .dd .google_map a .tx {
  left: 14px;
  position: absolute;
  top: 0;
  font-size: 1.2em;
  line-height: 1;
}
#outline .outline_contnet .bnr_info {
  width: 90%;
  margin: 0 auto;
}
#outline .outline_contnet .bnr_info.pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  #outline .outline_contnet .bnr_info {
    width: 500px;
  }
  #outline .outline_contnet .bnr_info.sp {
    display: none;
  }
  #outline .outline_contnet .bnr_info.pc {
    display: block;
    width: 85%;
    margin: 20px 0 0;
  }
}

/* ---------------------------------------------------
 Highlight
--------------------------------------------------- */
#highlight {
  width: 100%;
  background: #eeeeea;
}
#highlight .highlight_contnet {
  padding: 60px 0;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet {
    padding: 160px 0;
    width: 1100px;
    margin: 0 auto;
  }
}
#highlight .highlight_contnet .right_content {
  float: right;
  width: 65%;
  margin-right: 5%;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .right_content {
    width: 70%;
  }
}
#highlight .highlight_contnet .content {
  border-top: 1px solid #ccc;
  width: 100%;
  padding: 25px 0;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .content {
    padding: 60px 0;
  }
}
#highlight .highlight_contnet .content .midashi {
  margin-bottom: 20px;
}
#highlight .highlight_contnet .content .midashi p {
  background: -webkit-linear-gradient(transparent 60%, #e3dbd7 60%);
  background: -o-linear-gradient(transparent 60%, #e3dbd7 60%);
  background: linear-gradient(transparent 60%, #e3dbd7 60%);
  font-weight: bold;
  font-size: 1.15em;
  margin-bottom: 4px;
  color: #853333;
  display: table;
}
@media screen and (min-width: 1025px) {
  #highlight .highlight_contnet .content .midashi p {
    font-size: 1.3em;
  }
}
#highlight .highlight_contnet .content .detail .sub_midashi {
  margin-top: 30px;
  color: #853333;
  font-weight: bold;
}
#highlight .highlight_contnet .content .detail .hosoku {
  font-size: 10px;
}
#highlight .highlight_contnet .content .detail img.selectNone {
  padding: 15px 0;
}

/* ---------------------------------------------------
 Goods
--------------------------------------------------- */
#goods .goods_content {
  padding-top: 60px;
}
@media screen and (min-width: 1025px) {
  #goods .goods_content {
    padding-top: 160px;
    width: 1100px;
    margin: 0 auto;
  }
}
#goods .left_content {
  float: left;
  width: 70%;
  margin: 40px 0 0 5%;
}
@media screen and (min-width: 1025px) {
  #goods .left_content {
    margin-top: 140px;
  }
}
#goods .left_content .note_link a {
  display: block;
  width: 200px;
  border-bottom: 1px solid #aaa;
  border-top: 1px solid #aaa;
  padding: 15px 4px;
}
#goods .left_content .note_link a .tx {
  float: left;
  width: 160px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#goods .left_content .note_link a .icon {
  width: 25px;
  height: 7px;
  float: right;
  padding: 16px 0px;
}
#goods ul.goods_list {
  margin: 35px auto 0;
  width: 96%;
  max-width: 1180px;
}
#goods ul.goods_list li {
  width: 47%;
  margin: 0 1.5% 10px;
  background: #fff;
  float: left;
}
#goods ul.goods_list li .item_detail {
  width: 100%;
  padding: 10px 10px 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: 5em;
}
#goods ul.goods_list li .item_detail .name span {
  color: #008f83;
  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 {
  color: #999;
}
#goods ul.goods_list li .item_detail .price span {
  font-size: 10px;
  padding-left: 3px;
}
#goods #goods_note {
  width: 80%;
  margin: 50px auto 0;
}
@media screen and (min-width: 1025px) {
  #goods #goods_note {
    width: 40%;
  }
}
#goods #goods_note .title {
  letter-spacing: 0.2em;
  text-align: center;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  font-size: 1.2em;
  padding: 12px 0;
}
#goods #goods_note ul.goods_note_list {
  font-size: .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;
}
@media only screen and (min-width: 768px) {
  #goods ul.goods_list li {
    width: 31.33%;
    margin: 0 1% 30px;
  }
  #goods ul.goods_list li .item_detail {
    padding: 10px 30px 20px;
  }
  #goods ul.goods_list li .item_detail .name {
    height: 4em;
  }
}
@media only screen and (min-width: 1025px) {
  #goods {
    /* Laptop PC */
  }
  #goods ul.goods_list {
    margin: 40px auto 0;
  }
  #goods ul.goods_list li .item_detail {
    padding: 20px 34px 30px;
  }
  #goods ul.goods_list li .item_detail .name {
    line-height: 1.8;
    font-size: 14px;
  }
  #goods ul.goods_list li .item_detail .name span.sp_yotei {
    font-size: 14px;
  }
}

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

NEWSページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
.newsPage_wrap {
  background: url("../images/bgtx_news.png") no-repeat 0 0/24%;
}
@media screen and (min-width: 1025px) {
  .newsPage_wrap {
    margin-top: 100px;
    background-size: 180px;
  }
}

.news_tw {
  text-align: center;
}
.news_tw p {
  font-size: .8em;
  margin-bottom: 10px;
}
.news_tw .twbtn a {
  display: inline-block;
  background: #000;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border-radius: 50%;
  color: #c0b063;
}

ul.news_list {
  margin: 20px auto 40px;
}
ul.news_list li {
  background: #fff;
  padding: 30px;
  width: 100%;
  margin-bottom: 20px;
}
ul.news_list li .news_date {
  margin-bottom: 5px;
  font-size: .8em;
}
ul.news_list li .news_title {
  font-size: 1.2em;
  line-height: 1.7;
  border-bottom: 1px solid #999;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: #853333;
  font-weight: bold;
}
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 only screen and (min-width: 1025px) {
  /* Laptop PC */
  ul.news_list {
    margin: 40px auto 80px;
  }
  ul.news_list li {
    padding: 60px;
  }
  ul.news_list li .news_detail .two_columns {
    display: flex;
  }
  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) {
    width: 48%;
    padding-left: 2%;
    padding-top: 0;
  }
}
