@charset "utf-8";
/* CSS Document */
/*ブレイクポイント
タブレット：960px以下
スマホ：520px以下*/
/* /////////////////////////////// リセット / ノーマライズ / サニタイズ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/* /////////////////////////////// 共通設定 */
body {
  background: #f8f8f8;
  line-height: 1.75;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #141414;
}
.inner {
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .inner {
    padding: 0 4%;
  }
}
@media (min-width: 521px) {
  .pc-no {
    display: none;
  }
  .sp-no {
    display: block;
  }
}
@media (max-width: 520px) {
  .pc-no {
    display: block;
  }
  .sp-no {
    display: none;
  }
}
/*画像*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
/*文字*/
/*p:not(:first-child) {
  margin-top: 20px;
}*/
/* /////////////////////////////// ヘッダー */
body {
  overflow-y: scroll;
}
/* ヘッダー */
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
}
.header .inner {
  max-width: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 3vw;
  padding-right: 3vw;
}
.site {
  max-width: 340px;
  margin-right: 20px;
}
.g-nav_logo {
  display: none;
}
@media (max-width: 520px) {
  .site {
    max-width: 220px;
  }
}
/* スクロールで上部固定 */
@media (min-width: 961px) {
  #header {
    width: 100%; /*横幅指定*/
  }
  /*JSを使いfixedクラスが付与された際の設定*/
  #header.fixed {
    position: fixed; /*fixedを設定して固定*/
    z-index: 999; /*最前面へ*/
    top: 0; /*位置指定*/
    left: 0; /*位置指定*/
    background-color: #fff;
    transition: all .3s;
  }
  #header.fixed .site {
    max-width: 260px;
    transition: all .3s;
  }
}
/* ナビゲーションボタン */
@media (min-width: 1400px) {
  #g-nav ul {
    display: flex;
    margin-right: 2vw;
  }
  #g-nav li {
    padding: 0 20px;
  }
  .header .inner > div:last-child {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 1399px) {
  .btn_contact {
    display: none;
  }
  .panelactive .g-nav_logo {
    display: block;
    width: 100%;
    text-align: center;
  }
  .panelactive .g-nav_logo img {
    max-width: 240px;
	margin-bottom: 20px;
  }
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #CD3301;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav .g-nav_contents {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	padding-bottom: 60px;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #fff;
	font-size: 18px;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #CD3301;
    width: 45%;
  }
  .openbtn.active span {
    background-color: #fff;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
/* /////////////////////////////// フッター */
footer {
  padding-top: 60px;
  background-color: #fff;
}
footer .inner {
  display: flex;
  justify-content: space-between;
}
.link_map {
  color: #CD3301;
  text-decoration: underline;
}
footer .inner > div {
  flex: 1;
}
footer .inner > div:first-child img {
  max-width: 320px;
  margin-bottom: 20px;
}
footer .inner > div:last-child {
  margin-left: 30px;
}
.footer_contact {
  background-color: #CD3301;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}
.footer_contact a {
  padding: 2.5em;
  display: block;
}
.footer_contact:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 20px;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.footer_contact p:first-child {
  font-size: 20px;
  font-weight: bold;
}
.footer_contact p:last-child {
  font-size: 15px;
}
.copyright {
  font-size: 13px;
  background-color: #CD3301;
  color: #fff;
  text-align: center;
  padding: 10px;
  margin-top: 60px;
}
@media (max-width: 520px) {
  footer .inner {
    flex-direction: column;
  }
  footer .inner > div:last-child {
    margin-left: 0;
    margin-top: 30px;
  }
}
/* /////////////////////////////// 見出し */
h2 {
  text-align: center;
}
.ttl_underline {
  font-size: calc(20px + 3 * (100vw - 520px) / 560);
  position: relative;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 60px;
}
.ttl_underline:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #CD3301;
}
.ttl_bdtorange {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  padding: 10px 20px;
  background-color: #FCD8CD;
  color: #CD3301;
  border-top: 3px solid #CD3301;
  margin: -2rem -2rem 30px -2rem;
}
.ttl_orange {
  font-weight: bold;
  color: #CD3301;
  margin-bottom: 20px;
}
.ttl_bdborange {
  font-size: 20px;
  padding: 10px 0;
  font-weight: bold;
  color: #CD3301;
  text-align: left;
  border-bottom: 1px solid #CD3301;
  margin-bottom: 30px;
}
.ttl_bdbblack {
  font-size: 18px;
  padding: 10px 0;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #141414;
  margin-bottom: 20px;
}
/* /////////////////////////////// ボタン */
.txa_right {
  text-align: right;
}
.txa_center {
  text-align: center;
}
.btn_orange a {
  font-size: 15px;
  background: #CD3301;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 360px;
  padding: 10px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  margin-top: 30px;
}
.btn_orange a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn_orange a:hover:after {
  right: 1.4rem;
}
/* /////////////////////////////// テーブル */
.table_gray {
  width: 100%;
}
.table_gray th {
  width: 200px;
  background-color: #E2E2E2;
  text-align: left;
  border-bottom: 1px solid #fff;
  padding: 10px 20px;
}
.table_gray td {
  background-color: #fff;
  border-bottom: 1px solid #E2E2E2;
  padding: 10px 20px;
  overflow: hidden;
}
.table_gray td dt {
  float: left;
  width: 200px;
  clear: both;
  font-weight: bold;
}
.table_gray td dd {
  float: left;
}
/*.table_gray {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  margin: 30px 0;
}
.table_gray th, .table_gray td {
  padding: 10px 0;
  text-align: center;
}
.table_gray tr:nth-child(odd) {
  background-color: #eee;
}
.table_gray td {
  vertical-align: middle;
}*/
@media (max-width: 520px) {
  .table_gray th, .table_gray td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .table_gray td {
    padding-bottom: 26px;
  }
  .table_gray td dt:not(:first-child) {
    margin-top: 20px;
  }
  /*  .table_gray.scroll {
    overflow-x: scroll;
    white-space: nowrap;
    display: block;
  }
  .table_gray th, .table_gray td {
    padding: 10px 18px;
  }*/
}
/* /////////////////////////////// フォーム */
.table_form {
  width: 100%;
  margin-top: 60px;
}
.table_form th {
  position: relative;
  width: 30%;
  text-align: left;
  vertical-align: top;
  font-weight: bold;
}
.table_form td {
  width: 70%;
  padding-bottom: 10px;
}
.table_form input, .table_form textarea {
  padding: 10px;
  width: 100%;
}
button {
  background: inherit;
  border: none;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  max-width: 360px;
}
button:hover {
  cursor: pointer;
}
button span {
  font-size: 15px;
  background: #CD3301;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  margin-top: 30px;
}
button span:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.hissu {
  background-color: #CD3301;
  color: #fff;
  font-size: 0.7em;
  padding: 3px 10px;
  border-radius: 6px;
  position: absolute;
  right: 20px;
}
@media (max-width: 520px) {
  .table_form th, .table_form td {
    display: block;
    width: 100%;
  }
  .hissu {
    right: 0;
  }
  .table_form th {
    padding-bottom: 10px;
  }
  .table_form td {
    padding-bottom: 30px;
  }
}
/* /////////////////////////////// TOPページ：メインコンテンツ */
/* メイン画像 */
.mainimg {
  background-image: url("../images/mainimg.jpg");
  background-position: center bottom 30%;
}
.mainimg .inner {
  width: 100%;
  height: 90vh;
  position: relative;
}
.mainimg h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.mainimg p {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-bottom: 4%;
  color: #fff;
  font-size: calc(20px + 8 * (100vw - 520px) / 560);
  font-weight: bold;
  text-shadow: 1px 2px 8px #000;
}
.mainimg p span {
  font-size: calc(26px + 8 * (100vw - 520px) / 560);
}
@media (max-width: 960px) {
  .mainimg .inner {
    height: 80vh;
  }
  .mainimg p {
    padding: 0 4% 4%;
  }
}
/* セクション */
main > section, main > article {
  padding-top: 50px;
}
/* /////////////////////////////// TOPページのコンテンツ */
/* TOPページ：店舗・施設の活性化、空きスペースの有効化を弊社へお任せください！ */
.top_about {
  text-align: center;
}
.top_about h2 {
  font-weight: bold;
  font-size: calc(20px + 8 * (100vw - 520px) / 560);
  margin-bottom: 20px;
}
@media(max-width: 520px) {
  .top_about {
    text-align: left;
  }
}
/* TOPページ：ポイント */
.top_point h2 {
  color: #CD3301;
  font-size: calc(20px + 3 * (100vw - 520px) / 560);
  font-weight: bold;
  margin-bottom: 20px;
}
.bg_orange {
  background-color: #CD3301;
  padding: 2em;
}
.top_point_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_point_box > div {
  background-color: #fff;
  border-radius: 30px;
  padding: 2em;
  flex: 0 0 calc(100% / 2 - 10px);
  margin-bottom: 20px;
}
.top_point_box > div > div {
  margin: 0 auto 10px;
  border-radius: 999px;
  background-color: #CD3301;
  width: 63px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.top_point_box > div > p:first-of-type {
  text-align: center;
  font-weight: bold;
  color: #CD3301;
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 520px) {
  .bg_orange .inner {
    padding: 0
  }
  .top_point_box {
    flex-direction: column;
  }
  .top_point_box > div {
    flex: 1;
  }
}
/* TOPページ：設置エリア */
.top_area .inner {
  background-image: url("../images/map.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  height: 412px;
  display: flex;
  align-items: center;
}
.top_area p:first-of-type {
  font-size: calc(26px + 10 * (100vw - 520px) / 560);
  font-weight: bold;
  color: #CD3301;
}
@media (max-width: 520px) {
  .top_area .inner {
    align-items: flex-start;
    height: 300px;
  }
}
/* TOPページ：設置実績 */
.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px; /*スライド左右の余白調整*/
}
.top_case h2 {
  font-size: calc(20px + 3 * (100vw - 520px) / 560);
  font-weight: bold;
  margin-bottom: 20px;
}
.top_case .btn_orange a {
  margin-left: auto;
  margin-right: auto;
}
/* TOPページ：無料レンタルサービスシステムについて */
.top_system h2 {
  font-size: calc(20px + 3 * (100vw - 520px) / 560);
  font-weight: bold;
  margin-bottom: 20px;
}
.top_system {
  text-align: center;
}
.top_system .btn_orange a {
  margin-left: auto;
  margin-right: auto;
}
.top_system h2 + p {
  font-size: calc(50px + 20 * (100vw - 520px) / 560);
  font-weight: bold;
  color: #CD3301;
  line-height: 1.0;
  margin-bottom: 20px;
}
@media (max-width: 520px) {
  .top_system p:not(:first-of-type) {
    text-align: left;
  }
}
/* ニュース */
.top_news h2 {
  font-size: calc(20px + 3 * (100vw - 520px) / 560);
  font-weight: bold;
  margin-bottom: 20px;
}
.top_news .btn_orange a {
  margin-left: auto;
  margin-right: auto;
}
.newslist {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
}
.newslist > li {
  width: calc((100% - 60px) / 3);
  background-color: #fff;
  margin-left: 20px;
}
.newslist > li span {
  padding: 10px 16px;
}
.newslist > li img {
  width: 100%;
  margin-bottom: 10px;
}
.newslist > li a:hover {
  opacity: 0.8;
  transition: 1.0s;
}
.news_date {
  display: block;
  font-size: 13px;
  margin-top: 10px;
  color: #CD3301;
}
.news_ttl {
  display: block;
}
.news.inner {
  max-width: 1080px;
}
article figure {
  margin: 20px 0;
}
article a {
  color: #CD3301;
  text-decoration: underline;
}
article p + p {
  margin-top: 20px;
}
.bg_lorange {
  margin-top: 100px;
  background-color: #F6DCD3;
  padding: 20px 0 6em;
}
.top_news .inner {
  margin-top: -100px;
}
@media (max-width: 520px) {
  .newslist {
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
  }
  .newslist > li {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
    margin-left: 0;
  }
  .newslist > li:not(:last-child) {
    margin-bottom: 30px;
  }
}
/* /////////////////////////////// SUBページ：メインコンテンツ */
.sub_mainimg .inner {
  height: 50vh;
}
.sub_mainimg h1 {
  color: #fff;
  font-weight: bold;
  padding-top: 80px;
  text-align: center;
  font-size: calc(30px + 3 * (100vw - 520px) / 560);
}
.sub_mainimg h1 span {
  display: block;
  font-size: calc(16px + 2 * (100vw - 520px) / 560);
}
.contentbox {
  background-color: #fff;
  padding: 2rem;
}
.col2, .col3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col2 > li, .col2 > div {
  width: calc((100% - 20px) / 2);
  margin-bottom: 50px;
}
.col3 > li, .col3 > div {
  width: calc((100% - 20px) / 3);
  margin-bottom: 50px;
}
@media (max-width: 520px) {
  .col2 > li, .col2 > div {
    width: 100%;
    margin-bottom: 30px;
  }
  .col3 {
    flex-direction: column;
  }
  .col3 > li, .col3 > div {
    width: 100%;
    margin-bottom: 30px;
  }
}
/* 対応エリア */
.rental_area .contentbox {
  background-color: #EFEFEF;
}
.rental_area .contentbox p:first-of-type {
  text-align: center;
  font-weight: bold;
  color: #CD3301;
  font-size: 20px;
  padding-bottom: 10px;
}
/* お問い合わせから導入の流れ */
.rental_flow_box .contentbox {
  display: flex;
  position: relative;
}
.rental_flow_box .contentbox:not(:last-child) {
  margin-bottom: 90px;
}
.rental_flow_box .contentbox:not(:last-child)::after {
  content: ' ';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 20px solid #CD3301;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}
.rental_flow_box .contentbox > div:first-child {
  flex: 2;
}
.rental_flow_box .contentbox > div:last-child {
  flex: 1;
  margin-left: 30px;
}
.rental_flow_box h3 {
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 10px;
}
@media (max-width: 520px) {
  .rental_flow_box .contentbox {
    flex-direction: column;
  }
  .rental_flow_box .contentbox > div:last-child {
    margin-top: 30px;
    margin-left: 0;
  }
}
/* アフターメンテナンス */
.rental_after .col2 {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.rental_after .col2 > div {
  text-align: center;
  padding: 10px;
}
@media (max-width: 520px) {
  .rental_after .col2 {
    flex-direction: column;
  }
}
/* ゲーム機器一覧 */
.machine_ttl {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}
.machin_spec {
  font-size: 0.9em;
  display: block;
  line-height: 1.5;
}
/* 設置事例 */
.gallery img {
  width: 100%;
  height: 321px;
  object-fit: cover;
  vertical-align: top;
}
.gallery {
  position: relative;
  display: block;
}
.gallery:after {
  content: url("../images/icon_zoom.png");
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 35px;
}
/* モーダルウィンドウ */
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}
/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, .modaal-close:before {
  background: #ccc;
}
.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #666;
}
/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}
/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}
/* 代表あいさつ */
.message_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.message_box > div:first-child {
  flex: 2;
  margin-right: 50px;
}
.message_box > div:first-child p:first-child {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.message_box > div:first-child p:last-child {
  font-size: 1.2rem;
  text-align: right;
}
.message_box > div:last-child {
  flex: 1;
}
@media (max-width: 520px) {
  .message_box {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .message_box > div:first-child {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
/* アクセス */
.gmap {
  margin-top: 30px;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
/* お知らせページ */
.news_box {
  display: flex;
}
.news_box .contentbox {
  margin-right: 50px;
  width: 900px;
}
.news_box .newslist > li {
  background-color: inherit;
}
.news_box .newslist > li span {
  padding: 0;
}
.news_box .newslist > li {
  margin-bottom: 30px;
}
.news_side {
  width: 200px;
}
.news_side ul {
  margin-bottom: 60px;
}
.news_side li {
  padding: 4px 0;
}
@media (max-width: 520px) {
  .news_box {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .news_box .contentbox {
    width: 100%;
    margin-bottom: 30px;
  }
}
/* お問い合わせページ */
.tel_box {
  background-color: #fff;
  max-width: 713px;
  margin: 0 auto;
  padding: 2em 4em;
  text-align: center;
}
.tel_box p:nth-child(2) {
  font-weight: bold;
  font-size: 1.8em;
  color: #CD3301;
  padding: 10px 0;
}
.tel_box i {
  margin-right: 10px;
}
@media (max-width: 520px) {
  .tel_box {
    padding: 20px;
  }
}
/* サブページ フッター上の余白 */
.rental_flow, .contentbox, .lineup_gacha .contentbox, .company_access, .news_box, .contact_form {
  margin-bottom: 100px;
}