@charset "UTF-8";
/* 
  common.css
  jbc2020
*/

/*------------------------------
  リセット
------------------------------*/
* {
  box-sizing: border-box;
}
html,body,h1,h2,h3,h4,h5.h6,p,ul,li,dl,dt,dd {
  margin: 0;
  padding: 0;
  line-height: 1.0;
  font-weight: normal;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  flex-shrink: 0;  /*  IE11  */
}
article,header,footer,aside,figure,figcaption,nav,section,main { 
  display:block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input,button,select,textarea {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}


/*  Webフォント用  */
html {
  visibility: hidden;
}
html.wf-active,
html.loading-delay {
  visibility: visible;
}


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



html {
  background: #000;
}


body {
  background: #2c2c2c;
  font-size: 100%;
  color: #000;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}


/*  貂明朝テキスト  */
.ten-mincho {
  font-family: ten-mincho-text, serif;
  font-style: normal;
  font-weight: 400;
}



/*------------------------------
  共通ヘッダー
------------------------------*/
header {
  position: relative;
  background: #000;
  height: 60px;
  overflow: hidden;
}
header h1 {
  display: block;
  margin: 10px 0 0 20px;
}
header h1 a {
  display: inline-block;
}
header h1 img {
  width: auto;
  height: 44px;
}



/*------------------------------
  共通ヘッダー : モーダル
------------------------------*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 1.0);
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 500;
}
.wrapper {
  display: table;
  width: 100%;
  height: 100%;
}
.inner {
  display: table-cell;
  vertical-align: top;
}
.modal {
  position: relative;
  margin: 0 auto;
  padding: 0;
  max-width: 100vw;
  background-color: #000;
}

/*  ナビ  */
nav {
  position: relative;
  padding-bottom: 2em;
}
.nav_btn {
  width: 48px;
  height: 44px;
  z-index: 600;
  top: 8px;
  right: 14px;
  cursor: pointer;
  position: fixed;
  background-color: rgba(0,0,0,0.5);
}
.nav_btn .hamburger_line {
  transition: all .3s;
  width: 34px;
  height: 2px;
  left: 7px;
  background-color: #cab25e;
  position: absolute;
}
.nav_btn .hamburger_line1 { top: 10px; }
.nav_btn .hamburger_line2 { top: 21px; }
.nav_btn .hamburger_line3 { top: 32px; }

/*  ナビ 展開時  */
.nav_open .hamburger_line1 {
  transform: rotate(45deg);
  top: 20px;
}
.nav_open .hamburger_line2 {
  width: 0;
  left: 50%;
}
.nav_open .hamburger_line3 {
  transform: rotate(-45deg);
  top: 20px;
}

/*  ナビ : 閉じるボタン  */
nav .nav_close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  background: #262626;
  margin: 1em auto 0;
  padding: .8em 0;
}
nav .nav_close span {
  position: relative;
  font-size: 16px;
  color: #fff;
  padding-left: 1.4em;
}
nav .nav_close span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 1px;
  background: #fff;
  transform: rotate( 45deg );
}
nav .nav_close span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 1px;
  background: #fff;
  transform: rotate( -45deg );
}

/*  ナビ : ホームボタン  */
nav .go-home {
  position: absolute;
  top: 16px;
  left: 20px;
  width: 34px;
  height: 28px;
}
nav .go-home a {
  padding: 0;
}
nav .go-home img {
  width: 34px;
  height: 28px;
}

/*  ナビ : アコーディオン  */
.accordion-container {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding-top: 4em;
  border-top: none;
  outline: 0;
  cursor: pointer
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.accordion-container .accordion-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 0.8em 0 0.8em 0;
  font-size: 1.2em;
  font-weight: normal;
  color: #fff;
  background: #000;
  cursor: pointer;
  transition: .3s;
}
.accordion-container .accordion-title:hover,
.accordion-content a:hover {
  opacity: .65;
}

.accordion-container .content-entry.open .accordion-title {
  background-color: #444;
  color: white;
}
.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
  color: white;
}
.accordion-title {
  position: relative;
}
.accordion-title::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #cab25e;
  border-right: solid 2px #cab25e;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.accordion-title.open::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 45%;
}
.link-out::after {
  display: inline-block;
  content: '';
  background-image: url(../img/icon_link-out.png);
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 18px;
  margin: -8px 0 0 0;
  transform: none;
  border: none;
}
.accordion-title a {
  display: block;
}
.accordion-content {
  display: none;
}
.accordion-content a {
  position: relative;
  display: block;
  margin: 1px 0;
  padding: 1em 0 1em 1em;
  color: #fff;
  background: #303030;
}
.accordion-content a::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #cab25e;
  border-right: solid 2px #cab25e;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*  リンク打ち消し  */
.nolink {
  opacity: .5;
  pointer-events: none;
}

/*  ナビ : JBCロゴ  */
nav .nav_logo {
  display: none;
}



/*------------------------------
  共通フッター
------------------------------*/
footer {
  background: #000;
  text-align: center;
  padding: 1.6em 0;
}
footer p {
  font-size: 13px;
  color: #fff;
}
footer ul.footer_sns {
  display: flex;
  justify-content: center;
}
footer .footer_sns li a {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 10px;
}
footer ul.notes {
  display: inline-block;
  font-size: .7em;
  color: #fff;
  text-align: left;
  margin: 25px auto;
  padding: 0 12px;
}
footer .notes li {
  position: relative;
  padding-left: .8em;
  line-height: 1.6;
}
footer .notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  display: block;
  width: 3px;
  height: 3px;
  background: #888;
}



/*------------------------------
  ページトップに戻るボタン
------------------------------*/
#page-top {
  display: inline-block;
  width: 40px;
  height: 36px;
  color: #fff;
  background-color: rgba(202, 178, 94, 0.7);
  text-decoration: none;
  border-radius: 2px;
  position: fixed;
  right: 5px;
  bottom: 60px;
  z-index: 90;
}
#page-top::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(-45deg);
  position: absolute;
  top: 7px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}



/*------------------------------
  タイトルビジュアル
------------------------------*/
.title-visual img {
  display: block;
  width: 100%;
  height: auto;
}



/*------------------------------
  メイン
------------------------------*/
main {
  display: block;  /*  for IE11  */
    width: 100%;
}



/*------------------------------
  Box
------------------------------*/
.box {
  margin: 0 10px 20px;
  color: #fff;
}
.box .box_header a {
  position: relative;
  display: block;
}
.box .box_header a::after {
  content: "";
  position: absolute;
  right: .6em;
  top: 40%;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #cab25e;
  border-right: solid 2px #cab25e;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.box .box_header {
  position: relative;
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(28,28,28,1) 70%, rgba(57,57,57,1) 100%);
}
.box .box_header h2 {
  display: flex;
  font-family: ten-mincho-text, serif;
}
.box .box_header h2 span {
  font-size: 13px;
  font-family: sans-serif;
  font-weight: bold;
  background: #444;
  margin-left: .4em;
  padding: .4em .2em .4em .4em;
}
.box .box_header p.race_info_01 {
  font-size: 15px;
  margin-bottom: 0.8em;
}
.box .box_header p.race_info_02 {
  font-size: 13px;
}

/*  ラインカラー : 大井・門別・ゴールド  */
.box .line_ohi a,
.box .line_monbetsu a {
  padding: 18px 10px;
}
.box .line_ohi h2,
.box .line_monbetsu h2 {
  padding: 0 0 .6em 0;
}
.box .line_gold {
  padding: 18px 10px;
}
.box .line_ohi::before {
  content: '';
  display: block;
  width: 80%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(213,51,47,1) 0%, rgba(213,51,47,0) 100%);
}
.box .line_monbetsu::before {
  content: '';
  display: block;
  width: 80%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0,117,148,1) 0%, rgba(0,117,148,0) 100%);
}
.box .line_gold::before {
  content: '';
  display: block;
  width: 80%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(202,178,94,1) 0%, rgba(202,178,94,0) 100%);
}





/*  ボタン 1カラム  */
.btn_col1 {
  background: #2c2c2c;
  padding: 15px 20px 15px 20px;
}
.btn_col1 ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.btn_col1 li {
  font-size: 16px;
  color: #000;
  background: #fff;
  border-radius: 4px;
  margin: 10px 0;
}
.btn_col1 li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 0;
  letter-spacing: .08em;
}
.btn_col1 li a::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #cab25e;
  border-right: solid 2px #cab25e;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 960px) {
  /*  ボタン 1カラム : HOVER  */
  .btn_col1 li:hover {
    color: #fff;
    background: #cab25e;
    transition: .2s;
  }
  .btn_col1 li a:hover::after {
    border-color: #fff;
  }
}





/*  ボタン共通  */
.btn_box li {
  background: #fff;
}
/*  ボタン共通 : ACTIVE  */
.btn_box li.active {
  color: #fff;
  background: #cab25e;
  transition: .2s;
}
@media screen and (min-width: 960px) {
  /*  ボタン共通 : HOVER  */
  .btn_box li:hover {
    color: #fff;
    background: #cab25e;
    transition: .2s;
  }
  .btn_box li a:hover::after {
    border-color: #fff;
  }
}





/* ROAD 3ボタン  */
.btn_road {
  padding: 10px;
  background: #000;
}
.btn_road ul {
  display: flex;
  justify-content: space-between;
}
.btn_road li {
  width: 31%;
  font-size: 13px;
  border-radius: 4px;
}
.btn_road li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .6em 0;
}
.btn_road li i {
  width: 20px;
  height: 20px;
  background-size: contain;
  margin: 0 .3em 0 0;
  transition: .2s;
}
.btn_road li.record i {
  background-image: url(../img/icon_record.png);
}
.btn_road li.race-movie i {
  background-image: url(../img/icon_race-movie.png);
}
.btn_road li.report i {
  background-image: url(../img/icon_report.png);
}
/*  ACTIVE  */
.btn_road li.record.active i {
  background-image: url(../img/icon_record_on.png);
}
.btn_road li.race-movie.active i {
  background-image: url(../img/icon_race-movie_on.png);
}
.btn_road li.report.active i {
  background-image: url(../img/icon_report_on.png);
}
@media screen and (min-width: 960px) {
  /*  HOVER  */
  .btn_road li.record:hover i {
    background-image: url(../img/icon_record_on.png);
  }
  .btn_road li.race-movie:hover i {
    background-image: url(../img/icon_race-movie_on.png);
  }
  .btn_road li.report:hover i {
    background-image: url(../img/icon_report_on.png);
  }
}





/*  トップ：3ボタン　データ分析・注目馬情報・出馬表  */
.btn_x3 {
  padding: 10px;
  background: #000;
}
.btn_x3 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.btn_x3 li {
  display: flex;
  justify-content: center;
  width: 31%;
  font-size: 13px;
  color: #000;
  background: #fff;
  border-radius: 4px;
  margin: 0;
  padding: 0;
  text-align: center;
}
.btn_x3 li a {
  width: 100%;
  padding: .6em 0;
}
.btn_x3 li span {
  display: block;
  letter-spacing: .08em;
}
.btn_x3 li i {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  margin: 0 0 .3em 0;
  transition: .2s;
}
.btn_x3 li.analysis i {
  background-image: url(../img/icon_analysis.png);
}
.btn_x3 li.horse i {
  background-image: url(../img/icon_horse.png);
}
.btn_x3 li.racecard i {
  background-image: url(../img/icon_racecard.png);
}
.btn_x3 li.reference i {
  background-image: url(../img/icon_reference.png);
}
.btn_x3 li.vtr i {
  background-image: url(../img/icon_vtr.png);
}
.btn_x3 li.race i {
  background-image: url(../img/icon_race.png);
}
/*  ACTIVE  */
.btn_x3 li.analysis.active i {
  background-image: url(../img/icon_analysis_on.png);
}
.btn_x3 li.horse.active i {
  background-image: url(../img/icon_horse_on.png);
}
.btn_x3 li.racecard.active i {
  background-image: url(../img/icon_racecard_on.png);
}
.btn_x3 li.reference.active i {
  background-image: url(../img/icon_reference_on.png);
}
.btn_x3 li.vtr.active i {
  background-image: url(../img/icon_vtr_on.png);
}
.btn_x3 li.race.active i {
  background-image: url(../img/icon_race_on.png);
}
@media screen and (min-width: 960px) {
  .btn_x3 li {
    font-size: 14px;
    margin-bottom: 0;
  }

  /*  HOVER  */
  .btn_x3 li.analysis:hover i {
    background-image: url(../img/icon_analysis_on.png);
  }
  .btn_x3 li.horse:hover i {
    background-image: url(../img/icon_horse_on.png);
  }
  .btn_x3 li.racecard:hover i {
    background-image: url(../img/icon_racecard_on.png);
  }
  .btn_x3 li.reference:hover i {
    background-image: url(../img/icon_reference_on.png);
  }
  .btn_x3 li.vtr:hover i {
    background-image: url(../img/icon_vtr_on.png);
  }
  .btn_x3 li.race:hover i {
    background-image: url(../img/icon_race_on.png);
  }
}





/*------------------------------
  表組み
------------------------------*/
.data table {
  width: 100%;
  border-collapse: collapse;
  color: #222;
  line-height: 1.4;
}
.data table tr.header > th {
  background: #444;
  color: #fff;
  text-align: center;
  padding: .6em;
}
.data table tr > th {
  background: #f2eadc;
}
.data table td {
  background: #f7f7f7;
}
.data table th,
.data table td {
  padding: .8em .8em;
  border: 1px solid #ddd;
  font-weight: normal;
  text-align: center;
  font-size: 13px;
}
.data table tr:nth-child(even) td {  /*  交互背景色  */
	background: #fff;
}
.data .center {  /*  中央揃え  */
  text-align: center;
}
.data .left {  /*  左揃え  */
  text-align: left;
}
.data .right {  /*  右揃え  */
  text-align: right;
}
.data table tr.cap > td {  /*  TD直下キャプション  */
  border: none;
  font-size: 12px;
}
@media (max-width: 768px) and (min-width: 0) {
  .data table {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .data table tbody {
    width: 100%;
    display:table;
  }
}



/*  表組み : Road to JBC  */
.road_box table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
  color: #222;
}
.road_box table th,
.road_box table td {
  padding: .8em .4em;
  border: none;
  font-weight: normal;
  text-align: center;
  font-size: 13px;
}
.road_box .left {
  font-weight: bold;
}

.road .road_box th,
.road .road_box td {
  border: none;
}





/*------------------------------
  スライダー
------------------------------*/
.slider_wrap {
  margin: 30px 0;
  overflow: hidden;
}
.slick-slide {  /* 画像間のアキ */
  margin: 0 5px;
  outline: none;
}





/*------------------------------
  ニュース一覧
------------------------------*/
.news_list li {
  position: relative;
  font-size: 15px;
  padding: .8em 0;
  border-bottom: 1px solid #ddd;
}
.news_list li:last-child {
  border: none;
}
.news_list li a {
  display: block;
  transition: .2s;
}
.news_list li a:hover {
  color: #926d40;
}
.news_list li span {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.6em;
}
.news_list li a::after {
  content: "";
  position: absolute;
  right: .6em;
  top: 38%;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #cab25e;
  border-right: solid 2px #cab25e;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}





/*------------------------------
  トップページ : Road to JBC
------------------------------*/
.road {
  background: #404040;
  padding: 0 0 10px;
  overflow: hidden;
}
.road .road_box {
  color: #000;
  background: #fff;
  margin: 10px 8px 0px 8px;
}
.road .road_box .road_header {
  color: #fff;
  background: #000;
  display: flex;
  align-items: center;
}
.road .road_box .road_header img {
  width: 26vw;
  margin-right: 0.6em;
}
.road .road_box .road_header h3 {
  font-size: 3.8vw;
  font-weight: normal;
}
.road .road_box .road_header p {
  font-size: 3vw;
  margin-top: .6em;
}
.road .road_box .road_list {
  background: #fff;
}





/*------------------------------
  YouTube 埋め込み
------------------------------*/
.movie_wrap {
  width: 100%;
  height: 0;
  margin: 0 0 20px 0;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.movie_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}





/*==============================
  中面
==============================*/
.content_title {
  width: 100%;
  margin-top: 20px;
}
.box_header {
  padding: 20px;
}
.box .box_header h2 span {
  font-size: 14px;
  height: 28px;
  margin: .2em 0 0 .6em;
  padding: .5em .4em;
}





/*  画像  */
.image {
  position: relative;
  display: block;
}
.image p {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  margin: 0 !important;
  padding: .2em .4em;
  font-size: 2.2vw;
  color: white;
  background: rgba(0,0,0,.7);
}
.image_80 {
  width: 80%;
  margin: 2em auto;
}





/*------------------------------
  SP用スタイル
------------------------------*/
@media screen and (max-width: 959px) {
  .overlay {
    display: none;
  }

  .title-visual img.pc_title-visual {
    display: none;
  }

  .sidebar {
    height: 500px;
  }
}
/*---  / SP用スタイル  ---*/





/*------------------------------
  PC用スタイル
------------------------------*/
@media screen and (min-width: 960px) {

  /*  共通ヘッダー  */
  header {
    height: 60px;
  }

  /*  共通ヘッダー : モーダル  */
  .overlay, .inner, .modal {
    position: static;
    background: transparent;
    margin: 0;
    padding: 0;
    width: 240px;
  }

  nav {
    display: block;
    pointer-events: auto;
    width: 220px;
    padding-top: 40px;
  }
  .accordion-container {
    width: auto;
    padding-top: 0;
  }
  .accordion-container .accordion-title {
    font-size: 15px;
    padding: 1.05em .4em;
    background: transparent;
  }
  .accordion-content a {
    font-size: 14px;
    padding: .8em 1em;
    background: #383838;
  }

  header .nav_btn,
  nav .go-home,
  nav .nav_close {
    display: none;
  }

  /*  PC時スクロール追従用  */
  .sidebar {
    position: relative;
    width: 240px;
  }

  /*  ナビ : JBCロゴ  */
  nav .nav_logo {
    display: block;
    width: 164px;
    margin: 0 auto 40px auto;
    padding-left: 10px;
    transition: .2s;
  }
  nav .nav_logo:hover {
    opacity: .7;
  }


  /*  タイトルビジュアル  */
  .title-visual img.sp_title-visual {
    display: none;
  }


  #container {
    position: relative;
    display: flex;
    width: 1200px;
    margin: 0 auto;
  }


  main {
    width: calc(100% - 260px);
    margin-left: auto;
  }



  /*  共通フッター  */
  footer {
    padding: 40px 0;
  }
  footer ul.notes {
    margin: 30px auto;
    font-size: 12px;
  }
  footer .footer_sns li a {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 20px;
  }
  footer .footer_sns li a:hover {
    opacity: .7;
  }



  /*  トップページ : レースタイトル  */
  .box_header h2 {
    font-size: 32px;
  }
  .box .box_header p.race_info_01 {
    font-size: 17px;
  }
  .box .box_header p.race_info_02 {
    font-size: 15px;
  }



  /*  トップページ : Road to JBC  */
  .road {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 20px 0;
  }
  .road .road_box {
    width: 48.4%;
    margin: 0 0 20px;
  }
  .road .road_box .road_header img {
    width: 135px;
    margin-right: 0.6em;
  }
  .road .road_box .road_header h3 {
    font-size: 18px;
  }
  .road .road_box .road_header p {
    font-size: 14px;
    font-weight: bold;
    margin-top: .6em;
  }



  /*  スライダー  */
  .slick-slide {  /* 画像間のアキ */
    margin: 0 10px;
    outline: none;
  }
  .slick-slide img {
    width: 100%;
    height: auto;
    z-index: 0;
  }


  /*  画像  */
  .image p {
    font-size: 14px;
  }


  /*  表組み  */
  .data table th,
  .data table td {
    padding: .6em .6em;
    border: 1px solid #ddd;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
  }

}
/*---  / PC用スタイル  ---*/





/*------------------------------
  SP - PC 中間用スタイル
------------------------------*/
@media only screen and (min-width:960px) and (max-width:1220px) {
  #container {
    width: 96%;
  }
}
/*---  / SP - PC 中間用スタイル  ---*/





/*------------------------------
  iPad 横向き用スタイル
------------------------------*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape){
  body {
    min-width:initial;
  }
  .content {
    margin: 0 0 40px 0 !important;
  }
}
/*---  / iPad 横向き用スタイル  ---*/