@charset "UTF-8";
@font-face {
  font-family: 'CenturyGothic';
  src: url("../fonts/CenturyGothic.eot?#iefix") format("embedded-opentype"), url("../fonts/CenturyGothic.woff") format("woff"), url("../fonts/CenturyGothic.ttf") format("truetype"), url("../fonts/CenturyGothic.svg#CenturyGothic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'CenturyGothic';
  src: url("../fonts/CenturyGothic-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/CenturyGothic-Bold.woff") format("woff"), url("../fonts/CenturyGothic-Bold.ttf") format("truetype"), url("../fonts/CenturyGothic-Bold.svg#CenturyGothic-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
}
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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; */
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  width: 100%;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* Color */
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*===== COMMON =====*/
html, body {
  width: 100%;
  min-height: 100%;
}

body {
  background: #fff;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  -webkit-text-size-adjust: none;
  color: #111;
  line-height: 1.4444;
  letter-spacing: 0.03em;
}

.ft-serif {
  font-family: "小塚明朝 Pr6N", "Kozuka Mincho Pr6N", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

a:link,
a:visited {
  color: #111;
  text-decoration: none;
  /* display: block; */
}

strong {
  font-weight: 600;
}

.trans {
  opacity: 1;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.trans:hover {
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  -webkit-opacity: 0.8;
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  -ms-opacity: 0.8;
  -o-opacity: 0.8;
  opacity: 0.8;
}

.wrapper {
  width: 100%;
  min-width: 980px;
  overflow: hidden;
}

.container {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

section {
  margin-bottom: 40px;
}
.mizu_title {
    position: absolute;
    display: block;
    top: 60%;
    width: 100%;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 24px;
  }

  .wrapper {
    min-width: 320px;
  }

  .container {
    width: auto;
    padding-left: 4%;
    padding-right: 4%;
  }

  section {
    margin-bottom: 8%;
  }
}
/* Global Images */
img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

.imgc img {
  display: block;
  margin: 0 auto;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

table {
  width: 100%;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.txt-indent,
.list-indent li {
  padding-left: 1em;
  text-indent: -1em;
}

.text-warning {
  color: #f00;
}

.list-inline > li {
  display: inline-block;
}

a, button, input[type=button], input[type=submit] {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* Global Table */
.tb {
  display: table;
}

.tb .tr {
  display: table-row;
}

.tb .th,
.tb .td {
  display: table-cell;
}

.tb.middle .th,
.tb.middle .td {
  vertical-align: middle;
}

/*20200309 瑞風*/
.top_box {
font-family :
YuMincho,    /* Mac用 */
'Yu Mincho', /* Windows用 */
serif;
}
.top_box {
    position: absolute;
    top: 18%;
    left: 9%;
}
.top_box em img {
    width: 110px;
    margin: 0 auto 2% 32%;
}
.top_box span {
    color: #fff;
    text-align: center;
    display: block;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 2%;
    text-shadow: 0 0 30px #000000;
}
.top_box .top_txt {
    color: #fff;
    text-align: center;
    display: block;
    font-size: 50px;
    line-height: 1.3;
}
.container_mizu {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.mizu_gr {
  background: #1C4937;
	font-family :
	YuMincho,    /* Mac用 */
	'Yu Mincho', /* Windows用 */
	serif;
}
.mizu_gr h2 {
  font-size: 36px;
  color: #fff;
  line-height: 0.8;
  text-align: center;
    padding: 7% 0 0 0;
    position: relative;
}
.gd_line:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 103%;
    margin: 10px auto;
    width: 520px;
    height: 3px;
    background: #C1A01E;
}
.mizu_gr h2 span {
  font-size: 12px;
  color: #fff;
}
.mizu_gr h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1.1;
  text-align: center;
  padding: 40px 0 30px 0;
}
.mizu_wh h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1.1;
  text-align: center;
  padding: 40px 0 30px 0;
}
.mizu_gr h3 span {
  font-size: 22px;
  color: #fff;
}
.mizu_gr p {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  text-align: center;
    padding: 2% 0 5% 0;
}
.mizu_gr .btn p {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
    /* opacity: 0.2; */
    font-weight: bold;
    width: 540px;
    text-align: center;
    padding: 11px 0;
    /* margin-top: 10px; */
    -webkit-transition: all 0.2s linear;
    /* transition: all 0.2s linear; */
    margin: 0 220px 104px;
}
.btn a {
  color: #fff;
}
.btn02 p {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
    /* opacity: 0.2; */
    font-weight: bold;
    width: 340px;
    text-align: center;
    padding: 11px 0;
    /* margin-top: 10px; */
    -webkit-transition: all 0.2s linear;
    /* transition: all 0.2s linear; */
    margin: 0 320px 104px;
}
.btn02 a {
  color: #fff;
}
.mizu-box01 {
  width: 980px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.mizu_gr ul li , .mizu_wh ul li{
  width: 48%;
  margin: 0 2% 2% 0;
  float: left;
}
.mizu_gr ul li:nth-child(2),.mizu_wh ul li:nth-child(2) {
  width: 49%;
  margin: 0 0 2% 0;
}
/* ひし形 */
#diamond {
    position: absolute!important;
    width: 0;
    height: 0;
    border: 74px solid transparent;
    border-bottom-color: #C1A01E;
    position: relative;
    top: 531px;
    left: 152px;
}
#diamond:after {
    content: '';
    position: absolute;
    left: -74px;
    top: 74px;
    width: 0;
    height: 0;
    border: 74px solid transparent;
    border-top-color: #C1A01E;
}
#diamond p {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: -27px;
    left: -100px;
    width: 200px;
    height: 200px;
    line-height: 200px;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.mizu_wh {
  border-color: #F7F7F7;
	font-family :
	YuMincho,    /* Mac用 */
	'Yu Mincho', /* Windows用 */
	serif;
}
.mizu_wh h2 {
  font-size: 36px;
  color: #1C4937;
  line-height: 0.8;
  text-align: center;
    padding: 7% 0 0 0;
    position: relative;
}
.mizu_wh h2 span {
  font-size: 12px;
  color: #1C4937;
}
.credo {
  margin: 58px 0 73px 0;
}
.credo img {
  margin: 0 0 73px 0;
}
.credo p {
  font-size: 14px;
  text-align: center;
  line-height: 2.2;
}
.gd_txt01 {
    color: #C1A01E!important;
    padding: 90px 0 60px 0!important;
}
.gd_txt02 {
    color: #C1A01E!important;
    font-size: 30px!important;
    padding: 70px 0 30px 0!important;
}
.bg_img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    top: 190px;
    opacity: 0.2;
    position: static;
}
.bg_img img {
    z-index: 999;
    margin: 223px 0 auto 0;
    position: absolute;
}
.icon_mizu img {
    float: none!important;
    margin: 0!important;
}
.crew_works {
  background-color: #fff;
  width: 980px;
    padding: 0 0 90px;
}
.crew_works02 {
    width: 980px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* justify-content: center; */
    /* align-items: center;*/
    margin-bottom: 1%;
}
.crew_box {
  width: 790px;
  margin: 0 95px;
}
.crew_works p {
    font-size: 14px;
    color: #1C4937;
    line-height: 1.8;
    text-align: center;
    padding: 2% 0 5% 0;
}
.mizu_voice{
    position: relative;
}
.mizu_voice p {
    font-size: 24px;
    color: #fff;
    position: absolute;
    top: 36px;
    left: 158px;
    line-height: 1.2;
}
.mizu_voice p::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 63%;
    margin: 10px auto;
    width: 85px;
    height: 1px;
    background: #fff;
}
.mizu_voice p span {
  font-size: 12px;
}
.mizu_voice img {
  width: 100%;
  margin:;
  margin: 0 auto;
  display: block;
}
.pb70 {
  padding-bottom: 70px;
}
.fukuri_box {
    width: 790px;
    margin: 0 104px 10%;
    float: left;
}
.fukuri_txt01 {
  font-size: 22px;
  color: #1C4937;
  text-align: center;
}
.fukuri_txt02 {
  font-size: 14px;
}
.fukuri_txt03 {
  font-size: 14px;
  text-align: center;
}
.fukuri_box02 {
    width: 602px;
    margin: 0 194px 5%;
    float: left;
}
.mizu_name {
    color: #fff;
    font-size: 36px;
    position: absolute;
    top: 54%;
    left: 46%;
    line-height: 0.7;;
    font-family: YuMincho, /* Mac用 */ 'Yu Mincho', /* Windows用 */ serif;
    text-align: center;
}
.mizu_name02 {
  left: 38%;
}
.mizu_name span {
  color: #fff;
  font-size: 12px;
}
.mizu_name:before {
    content: '';
    position: absolute;
    left: -200px;
    /* right: 0; */
    top: 128%;
    margin: 10px auto;
    width: 520px;
    height: 3px;
    background: #C1A01E;
    text-align: center;
}
.mizu_name02:before {
    left: -126px;
}
.mt_135 {
  margin-top: 135px;
}
.mizu_recBox {
    border-collapse: collapse;
}
.mizu_recBox tr {
    border-bottom:  1px solid #1C4937;
    border-collapse: collapse;
}
.mizu_recBox tr:last-child {
    border-bottom: none!important;
    border-collapse: collapse;
}
.mizu_recBox tr td {
    border-bottom: 1px solid #1C4937;
    border-collapse: collapse;
    text-align: left;
    box-sizing: border-box;
    padding: 4% 1%;
    vertical-align: middle;
    background: #fff;
    width: 70%;
    margin: 4%;
    line-height: 1.8;
    font-size: 14px;
    color: #1C4937;
}
.mizu_recBox tr th {
  vertical-align: middle;
  font-size: 16px;
  color: #1C4937;
    font-weight: bold;
}
.mizu_recBox tr td:last-child {
    border-bottom: none!important;
    border-collapse: collapse;
}
.txt_center {
  text-align: center;
}
.crew_img img {
  margin: 7% 0 0 0;
}
.mb01 {
  margin-bottom: 10%
}
.crew_works02 img {
      width: 320px ;
}

.crew_works02 dl {
     float: left ;
     text-align: center ;
    margin-right: 10px;
    background-color: #c1a01e;
}
.crew_works02 dl:nth-child(3) {
    margin-right: 0px;
}
 .crew_works02 dt {
    float: left;
    clear: left;
    width: 320px;
    background-color: #C1A01E;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
    line-height: 2;
    padding: 3%;
}
.crew_works02 dt span {
  font-size: 20px;
}
.crew_works02 dd {
     margin-left: 0px ;
     width: 320px ;
}
.pc { display: block !important; }
.sp { display: none !important; }
.mizu_koe {
    width: 980px;
    background: #fff;
    margin-top: -5px;
}
.mizu_voice {
  width: 790px;
}
.mizu_voice dd {
  width: 25%;
    display: inline-block;
}
.mizu_voice dl:nth-child(even) dd {
    width: 25%;
    margin-left: 611px;
    /* display: inline-block; */
}
.mizu_voice dl {
  width: 790px;
    margin: 50px 90px;
    height: 380px;
    position: relative;
}
.mizu_voice dl:nth-child(even) {
    width: 790px;
    margin: 50px 90px;
    /* height: 380px; */
    position: relative;
}
.mizu_voice dl dt {
    width: 79%;
    float: right;
    padding: 3%;
    color: #1C4937;
    font-size: 14px;
    margin-top: -58px;
    position: absolute;
    top: -19px;
    left: 210px;
    line-height: 1.7;
}
.mizu_voice dl:nth-child(even) dt {
    width: 79%;
    /* float: left; */
    padding: 3%;
    color: #1C4937;
    font-size: 14px;
    margin-top: -58px;
    position: absolute;
    top: -19px;
    left: -25px;
    line-height: 1.7;
    display: inline-block;
}
.mizu_voice dl dt strong {
  font-size: 24px;
}
.mizu_voice dl dt div {
    font-size: 22px;
    border-top: solid 2px #1c4937;
    margin-top: 2%;
    padding: 3% 0 1%;
}
.youtub_ewape {
    width: 100%;
    padding: 46% 0 0;
    overflow: hidden;
    position: relative;
}
.youtub_ewape iframe {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: atuo;
}
.iswg-base > div > div {
width: 16.6%!important;
padding: 0px!important;
}
.iswg-copyright-wrapper {
    display: none!important;
}
@media only screen and (max-width: 768px) {

  .pc { display: none !important; }
  .sp { display: block !important; }
  .mizu_name {
    color: #fff;
    font-size: 25px;
    position: absolute;
    top: 50%;
    left: 36%;
    text-align: center;
    line-height: 1;
    font-family: YuMincho, /* Mac用 */ 'Yu Mincho', /* Windows用 */ serif;
  }
  .mizu_name02 {
    left: 26%;

  }
  .mizu_name:before {
    background: none;
}
.crew_works {
    background-color: #fff;
    width: 90%;
    padding: 0 0 90px;
}

  .mizu_recBox td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .mizu_recBox {
    width: 80%;
  }
  .mizu_recBox th,
  .mizu_recBox td {
　　border-bottom: none;
    display: block;
    width: 100%;
  }
.mizu_recBox {
    width: 100%;
}
.mizu_recBox tr td {
    border-bottom: 1px solid #1C4937;
    border-collapse: collapse;
    text-align: left;
    box-sizing: border-box;
    padding: 4% 1%;
    vertical-align: middle;
    background: #fff;
    margin: 4% 0px;
    line-height: 1.8;
    font-size: 14px;
    color: #1C4937;
}
.mizu_recBox td:last-child {
    border-bottom: none;
    width: 100%;
}
.mizu_recBox tr th {
    vertical-align: middle;
    font-size: 16px;
    color: #1C4937;
    font-weight: bold;
    margin: 12% 0 0;
    text-align: left;
}
.mt_135 {
    margin-top: 12%;
}

.crew_works02 dt {
clear: left;
float: left;
width: 10%;
}
.mizu-box01 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.crew_img img {
    /* width: 94%; */
    margin: 5% 0px;
}
.gd_txt02 {
    color: #C1A01E!important;
    font-size: 24px!important;
    13% 0 8% 0!important;
}
.gd_txt02 span {
  margin-top: 2%;
}
.mizu_wh h3 {
    text-align: center;
    line-height: 1.4;
}
.mizu_gr h3 {
    font-size: 24px
    text-align: center;
    line-height: 1.6;
}
.gd_txt01 {
    color: #C1A01E!important;
    padding: 14% 0 12% 0!important;
}
.crew_works02 img {
    width: 100%;
}
.crew_works02 {
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* justify-content: center; */
    /* align-items: center; */ */
    margin: 0 2%;
}
.crew_works02 dl {
    float: none;
    text-align: center;
    margin: 1%;
    background-color: #c1a01e;
    width: 100%;
}

.crew_works02 dl:after {
    display: block;
    clear: both;
    content: "";
}
.crew_works02 dd {
    margin-left: none;
        width: 43%;
    display: inline-block;
}
.crew_works02 dt {
    width: 57%;
    float: right;
    text-align: left;
    font-size: 12px;
    padding: 2%;
}
.crew_works02 dt span {
    font-size: 18px;
}
.mizu_koe {
    width: 98%;
    background: #fff;
    margin-top: -5px;
    margin: 0 1% -5px;
}
.mizu_voice dl {
    width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    height: auto;
    float: none;
}
.mizu_voice dd {
    width: 32%;
    display: inline-block;
}
.mizu_voice dl dt {
    width: 100%;
    float: none;
    padding: 0;
    color: #1C4937;
    font-size: 14px;
    /* margin-top: 39%; */
    position: relative;
    top: 0;
    left: 0;
    line-height: 1.8;
    text-align: center;
    margin: 0 auto;
}

.mizu_voice dl:nth-child(even) {
    width: 100%;
    margin: 0 13%;
    position: relative;
    height: auto;
}
.mizu_voice dl:nth-child(even) dd {
    width: 32%;
    margin-left: 0;
    display: inline-block;
}
.mizu_voice dl:nth-child(even) dt {
    width: 80%;
    float: none;
    padding: 5%;
    color: #1C4937;
    font-size: 14px;
    /* margin-top: 39%; */
    /* position: absolute; */
    top: 100%;
    left: -16%;
    line-height: 1.7;
    text-align: center;
    margin: 0 5%;
}
.mizu_voice {
  width: 100%;
}
.mizu_voice dd {
    width: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    float: none;
}
.mizu_gr p {
    font-size: 3.2vw;
    color: #fff;
    line-height: 1.8;
    text-align: center;
    padding: 2% 0 5% 0;
}
.credo img {
    margin: 0 0 7% 0;
}
.credo p {
    font-size: 14px;
    text-align: left;
    line-height: 2.2;
}
.mizu_gr p {
    font-size: 3.2vw;
    color: #fff;
    line-height: 1.8;
    text-align: center;
    padding: 2% 0 5% 0;
}
.fukuri_box img {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}
.fukuri_box ul li img {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}
.mizu_wh h2 {
    font-size: 6.5vw;
    color: #1C4937;
    line-height: 0.8;
    text-align: center;
    padding: 7% 0 0 0;
    position: relative;
}
.fukuri_box02 ul li img {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}
.crew_box p {
    color: #1c4937;
}
.mizu_title {
    position: absolute;
    display: block;
    top: 39%;
    width: 100%;
}
.iswg-base > div > div {
    width: 50%!important;
    padding: 0px!important;
}

}









@media only screen and (max-width: 767px) {
  .hide-mobile {
    visibility: hidden !important;
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .hide-pc {
    visibility: hidden !important;
    display: none !important;
  }
}
@media print {
  .hide-pc {
    visibility: hidden !important;
    display: none !important;
  }
}
@media (max-width: 750px) {
  body {
    font-size: 24px;
  }
}
@media (max-width: 749px) {
  body {
    font-size: 23.968px;
  }
}
@media (max-width: 748px) {
  body {
    font-size: 23.936px;
  }
}
@media (max-width: 747px) {
  body {
    font-size: 23.904px;
  }
}
@media (max-width: 746px) {
  body {
    font-size: 23.872px;
  }
}
@media (max-width: 745px) {
  body {
    font-size: 23.84px;
  }
}
@media (max-width: 744px) {
  body {
    font-size: 23.808px;
  }
}
@media (max-width: 743px) {
  body {
    font-size: 23.776px;
  }
}
@media (max-width: 742px) {
  body {
    font-size: 23.744px;
  }
}
@media (max-width: 741px) {
  body {
    font-size: 23.712px;
  }
}
@media (max-width: 740px) {
  body {
    font-size: 23.68px;
  }
}
@media (max-width: 739px) {
  body {
    font-size: 23.648px;
  }
}
@media (max-width: 738px) {
  body {
    font-size: 23.616px;
  }
}
@media (max-width: 737px) {
  body {
    font-size: 23.584px;
  }
}
@media (max-width: 736px) {
  body {
    font-size: 23.552px;
  }
}
@media (max-width: 735px) {
  body {
    font-size: 23.52px;
  }
}
@media (max-width: 734px) {
  body {
    font-size: 23.488px;
  }
}
@media (max-width: 733px) {
  body {
    font-size: 23.456px;
  }
}
@media (max-width: 732px) {
  body {
    font-size: 23.424px;
  }
}
@media (max-width: 731px) {
  body {
    font-size: 23.392px;
  }
}
@media (max-width: 730px) {
  body {
    font-size: 23.36px;
  }
}
@media (max-width: 729px) {
  body {
    font-size: 23.328px;
  }
}
@media (max-width: 728px) {
  body {
    font-size: 23.296px;
  }
}
@media (max-width: 727px) {
  body {
    font-size: 23.264px;
  }
}
@media (max-width: 726px) {
  body {
    font-size: 23.232px;
  }
}
@media (max-width: 725px) {
  body {
    font-size: 23.2px;
  }
}
@media (max-width: 724px) {
  body {
    font-size: 23.168px;
  }
}
@media (max-width: 723px) {
  body {
    font-size: 23.136px;
  }
}
@media (max-width: 722px) {
  body {
    font-size: 23.104px;
  }
}
@media (max-width: 721px) {
  body {
    font-size: 23.072px;
  }
}
@media (max-width: 720px) {
  body {
    font-size: 23.04px;
  }
}
@media (max-width: 719px) {
  body {
    font-size: 23.008px;
  }
}
@media (max-width: 718px) {
  body {
    font-size: 22.976px;
  }
}
@media (max-width: 717px) {
  body {
    font-size: 22.944px;
  }
}
@media (max-width: 716px) {
  body {
    font-size: 22.912px;
  }
}
@media (max-width: 715px) {
  body {
    font-size: 22.88px;
  }
}
@media (max-width: 714px) {
  body {
    font-size: 22.848px;
  }
}
@media (max-width: 713px) {
  body {
    font-size: 22.816px;
  }
}
@media (max-width: 712px) {
  body {
    font-size: 22.784px;
  }
}
@media (max-width: 711px) {
  body {
    font-size: 22.752px;
  }
}
@media (max-width: 710px) {
  body {
    font-size: 22.72px;
  }
}
@media (max-width: 709px) {
  body {
    font-size: 22.688px;
  }
}
@media (max-width: 708px) {
  body {
    font-size: 22.656px;
  }
}
@media (max-width: 707px) {
  body {
    font-size: 22.624px;
  }
}
@media (max-width: 706px) {
  body {
    font-size: 22.592px;
  }
}
@media (max-width: 705px) {
  body {
    font-size: 22.56px;
  }
}
@media (max-width: 704px) {
  body {
    font-size: 22.528px;
  }
}
@media (max-width: 703px) {
  body {
    font-size: 22.496px;
  }
}
@media (max-width: 702px) {
  body {
    font-size: 22.464px;
  }
}
@media (max-width: 701px) {
  body {
    font-size: 22.432px;
  }
}
@media (max-width: 700px) {
  body {
    font-size: 22.4px;
  }
}
@media (max-width: 699px) {
  body {
    font-size: 22.368px;
  }
}
@media (max-width: 698px) {
  body {
    font-size: 22.336px;
  }
}
@media (max-width: 697px) {
  body {
    font-size: 22.304px;
  }
}
@media (max-width: 696px) {
  body {
    font-size: 22.272px;
  }
}
@media (max-width: 695px) {
  body {
    font-size: 22.24px;
  }
}
@media (max-width: 694px) {
  body {
    font-size: 22.208px;
  }
}
@media (max-width: 693px) {
  body {
    font-size: 22.176px;
  }
}
@media (max-width: 692px) {
  body {
    font-size: 22.144px;
  }
}
@media (max-width: 691px) {
  body {
    font-size: 22.112px;
  }
}
@media (max-width: 690px) {
  body {
    font-size: 22.08px;
  }
}
@media (max-width: 689px) {
  body {
    font-size: 22.048px;
  }
}
@media (max-width: 688px) {
  body {
    font-size: 22.016px;
  }
}
@media (max-width: 687px) {
  body {
    font-size: 21.984px;
  }
}
@media (max-width: 686px) {
  body {
    font-size: 21.952px;
  }
}
@media (max-width: 685px) {
  body {
    font-size: 21.92px;
  }
}
@media (max-width: 684px) {
  body {
    font-size: 21.888px;
  }
}
@media (max-width: 683px) {
  body {
    font-size: 21.856px;
  }
}
@media (max-width: 682px) {
  body {
    font-size: 21.824px;
  }
}
@media (max-width: 681px) {
  body {
    font-size: 21.792px;
  }
}
@media (max-width: 680px) {
  body {
    font-size: 21.76px;
  }
}
@media (max-width: 679px) {
  body {
    font-size: 21.728px;
  }
}
@media (max-width: 678px) {
  body {
    font-size: 21.696px;
  }
}
@media (max-width: 677px) {
  body {
    font-size: 21.664px;
  }
}
@media (max-width: 676px) {
  body {
    font-size: 21.632px;
  }
}
@media (max-width: 675px) {
  body {
    font-size: 21.6px;
  }
}
@media (max-width: 674px) {
  body {
    font-size: 21.568px;
  }
}
@media (max-width: 673px) {
  body {
    font-size: 21.536px;
  }
}
@media (max-width: 672px) {
  body {
    font-size: 21.504px;
  }
}
@media (max-width: 671px) {
  body {
    font-size: 21.472px;
  }
}
@media (max-width: 670px) {
  body {
    font-size: 21.44px;
  }
}
@media (max-width: 669px) {
  body {
    font-size: 21.408px;
  }
}
@media (max-width: 668px) {
  body {
    font-size: 21.376px;
  }
}
@media (max-width: 667px) {
  body {
    font-size: 21.344px;
  }
}
@media (max-width: 666px) {
  body {
    font-size: 21.312px;
  }
}
@media (max-width: 665px) {
  body {
    font-size: 21.28px;
  }
}
@media (max-width: 664px) {
  body {
    font-size: 21.248px;
  }
}
@media (max-width: 663px) {
  body {
    font-size: 21.216px;
  }
}
@media (max-width: 662px) {
  body {
    font-size: 21.184px;
  }
}
@media (max-width: 661px) {
  body {
    font-size: 21.152px;
  }
}
@media (max-width: 660px) {
  body {
    font-size: 21.12px;
  }
}
@media (max-width: 659px) {
  body {
    font-size: 21.088px;
  }
}
@media (max-width: 658px) {
  body {
    font-size: 21.056px;
  }
}
@media (max-width: 657px) {
  body {
    font-size: 21.024px;
  }
}
@media (max-width: 656px) {
  body {
    font-size: 20.992px;
  }
}
@media (max-width: 655px) {
  body {
    font-size: 20.96px;
  }
}
@media (max-width: 654px) {
  body {
    font-size: 20.928px;
  }
}
@media (max-width: 653px) {
  body {
    font-size: 20.896px;
  }
}
@media (max-width: 652px) {
  body {
    font-size: 20.864px;
  }
}
@media (max-width: 651px) {
  body {
    font-size: 20.832px;
  }
}
@media (max-width: 650px) {
  body {
    font-size: 20.8px;
  }
}
@media (max-width: 649px) {
  body {
    font-size: 20.768px;
  }
}
@media (max-width: 648px) {
  body {
    font-size: 20.736px;
  }
}
@media (max-width: 647px) {
  body {
    font-size: 20.704px;
  }
}
@media (max-width: 646px) {
  body {
    font-size: 20.672px;
  }
}
@media (max-width: 645px) {
  body {
    font-size: 20.64px;
  }
}
@media (max-width: 644px) {
  body {
    font-size: 20.608px;
  }
}
@media (max-width: 643px) {
  body {
    font-size: 20.576px;
  }
}
@media (max-width: 642px) {
  body {
    font-size: 20.544px;
  }
}
@media (max-width: 641px) {
  body {
    font-size: 20.512px;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 20.48px;
  }
}
@media (max-width: 639px) {
  body {
    font-size: 20.448px;
  }
}
@media (max-width: 638px) {
  body {
    font-size: 20.416px;
  }
}
@media (max-width: 637px) {
  body {
    font-size: 20.384px;
  }
}
@media (max-width: 636px) {
  body {
    font-size: 20.352px;
  }
}
@media (max-width: 635px) {
  body {
    font-size: 20.32px;
  }
}
@media (max-width: 634px) {
  body {
    font-size: 20.288px;
  }
}
@media (max-width: 633px) {
  body {
    font-size: 20.256px;
  }
}
@media (max-width: 632px) {
  body {
    font-size: 20.224px;
  }
}
@media (max-width: 631px) {
  body {
    font-size: 20.192px;
  }
}
@media (max-width: 630px) {
  body {
    font-size: 20.16px;
  }
}
@media (max-width: 629px) {
  body {
    font-size: 20.128px;
  }
}
@media (max-width: 628px) {
  body {
    font-size: 20.096px;
  }
}
@media (max-width: 627px) {
  body {
    font-size: 20.064px;
  }
}
@media (max-width: 626px) {
  body {
    font-size: 20.032px;
  }
}
@media (max-width: 625px) {
  body {
    font-size: 20px;
  }
}
@media (max-width: 624px) {
  body {
    font-size: 19.968px;
  }
}
@media (max-width: 623px) {
  body {
    font-size: 19.936px;
  }
}
@media (max-width: 622px) {
  body {
    font-size: 19.904px;
  }
}
@media (max-width: 621px) {
  body {
    font-size: 19.872px;
  }
}
@media (max-width: 620px) {
  body {
    font-size: 19.84px;
  }
}
@media (max-width: 619px) {
  body {
    font-size: 19.808px;
  }
}
@media (max-width: 618px) {
  body {
    font-size: 19.776px;
  }
}
@media (max-width: 617px) {
  body {
    font-size: 19.744px;
  }
}
@media (max-width: 616px) {
  body {
    font-size: 19.712px;
  }
}
@media (max-width: 615px) {
  body {
    font-size: 19.68px;
  }
}
@media (max-width: 614px) {
  body {
    font-size: 19.648px;
  }
}
@media (max-width: 613px) {
  body {
    font-size: 19.616px;
  }
}
@media (max-width: 612px) {
  body {
    font-size: 19.584px;
  }
}
@media (max-width: 611px) {
  body {
    font-size: 19.552px;
  }
}
@media (max-width: 610px) {
  body {
    font-size: 19.52px;
  }
}
@media (max-width: 609px) {
  body {
    font-size: 19.488px;
  }
}
@media (max-width: 608px) {
  body {
    font-size: 19.456px;
  }
}
@media (max-width: 607px) {
  body {
    font-size: 19.424px;
  }
}
@media (max-width: 606px) {
  body {
    font-size: 19.392px;
  }
}
@media (max-width: 605px) {
  body {
    font-size: 19.36px;
  }
}
@media (max-width: 604px) {
  body {
    font-size: 19.328px;
  }
}
@media (max-width: 603px) {
  body {
    font-size: 19.296px;
  }
}
@media (max-width: 602px) {
  body {
    font-size: 19.264px;
  }
}
@media (max-width: 601px) {
  body {
    font-size: 19.232px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 19.2px;
  }
}
@media (max-width: 599px) {
  body {
    font-size: 19.168px;
  }
}
@media (max-width: 598px) {
  body {
    font-size: 19.136px;
  }
}
@media (max-width: 597px) {
  body {
    font-size: 19.104px;
  }
}
@media (max-width: 596px) {
  body {
    font-size: 19.072px;
  }
}
@media (max-width: 595px) {
  body {
    font-size: 19.04px;
  }
}
@media (max-width: 594px) {
  body {
    font-size: 19.008px;
  }
}
@media (max-width: 593px) {
  body {
    font-size: 18.976px;
  }
}
@media (max-width: 592px) {
  body {
    font-size: 18.944px;
  }
}
@media (max-width: 591px) {
  body {
    font-size: 18.912px;
  }
}
@media (max-width: 590px) {
  body {
    font-size: 18.88px;
  }
}
@media (max-width: 589px) {
  body {
    font-size: 18.848px;
  }
}
@media (max-width: 588px) {
  body {
    font-size: 18.816px;
  }
}
@media (max-width: 587px) {
  body {
    font-size: 18.784px;
  }
}
@media (max-width: 586px) {
  body {
    font-size: 18.752px;
  }
}
@media (max-width: 585px) {
  body {
    font-size: 18.72px;
  }
}
@media (max-width: 584px) {
  body {
    font-size: 18.688px;
  }
}
@media (max-width: 583px) {
  body {
    font-size: 18.656px;
  }
}
@media (max-width: 582px) {
  body {
    font-size: 18.624px;
  }
}
@media (max-width: 581px) {
  body {
    font-size: 18.592px;
  }
}
@media (max-width: 580px) {
  body {
    font-size: 18.56px;
  }
}
@media (max-width: 579px) {
  body {
    font-size: 18.528px;
  }
}
@media (max-width: 578px) {
  body {
    font-size: 18.496px;
  }
}
@media (max-width: 577px) {
  body {
    font-size: 18.464px;
  }
}
@media (max-width: 576px) {
  body {
    font-size: 18.432px;
  }
}
@media (max-width: 575px) {
  body {
    font-size: 18.4px;
  }
}
@media (max-width: 574px) {
  body {
    font-size: 18.368px;
  }
}
@media (max-width: 573px) {
  body {
    font-size: 18.336px;
  }
}
@media (max-width: 572px) {
  body {
    font-size: 18.304px;
  }
}
@media (max-width: 571px) {
  body {
    font-size: 18.272px;
  }
}
@media (max-width: 570px) {
  body {
    font-size: 18.24px;
  }
}
@media (max-width: 569px) {
  body {
    font-size: 18.208px;
  }
}
@media (max-width: 568px) {
  body {
    font-size: 18.176px;
  }
}
@media (max-width: 567px) {
  body {
    font-size: 18.144px;
  }
}
@media (max-width: 566px) {
  body {
    font-size: 18.112px;
  }
}
@media (max-width: 565px) {
  body {
    font-size: 18.08px;
  }
}
@media (max-width: 564px) {
  body {
    font-size: 18.048px;
  }
}
@media (max-width: 563px) {
  body {
    font-size: 18.016px;
  }
}
@media (max-width: 562px) {
  body {
    font-size: 17.984px;
  }
}
@media (max-width: 561px) {
  body {
    font-size: 17.952px;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 17.92px;
  }
}
@media (max-width: 559px) {
  body {
    font-size: 17.888px;
  }
}
@media (max-width: 558px) {
  body {
    font-size: 17.856px;
  }
}
@media (max-width: 557px) {
  body {
    font-size: 17.824px;
  }
}
@media (max-width: 556px) {
  body {
    font-size: 17.792px;
  }
}
@media (max-width: 555px) {
  body {
    font-size: 17.76px;
  }
}
@media (max-width: 554px) {
  body {
    font-size: 17.728px;
  }
}
@media (max-width: 553px) {
  body {
    font-size: 17.696px;
  }
}
@media (max-width: 552px) {
  body {
    font-size: 17.664px;
  }
}
@media (max-width: 551px) {
  body {
    font-size: 17.632px;
  }
}
@media (max-width: 550px) {
  body {
    font-size: 17.6px;
  }
}
@media (max-width: 549px) {
  body {
    font-size: 17.568px;
  }
}
@media (max-width: 548px) {
  body {
    font-size: 17.536px;
  }
}
@media (max-width: 547px) {
  body {
    font-size: 17.504px;
  }
}
@media (max-width: 546px) {
  body {
    font-size: 17.472px;
  }
}
@media (max-width: 545px) {
  body {
    font-size: 17.44px;
  }
}
@media (max-width: 544px) {
  body {
    font-size: 17.408px;
  }
}
@media (max-width: 543px) {
  body {
    font-size: 17.376px;
  }
}
@media (max-width: 542px) {
  body {
    font-size: 17.344px;
  }
}
@media (max-width: 541px) {
  body {
    font-size: 17.312px;
  }
}
@media (max-width: 540px) {
  body {
    font-size: 17.28px;
  }
}
@media (max-width: 539px) {
  body {
    font-size: 17.248px;
  }
}
@media (max-width: 538px) {
  body {
    font-size: 17.216px;
  }
}
@media (max-width: 537px) {
  body {
    font-size: 17.184px;
  }
}
@media (max-width: 536px) {
  body {
    font-size: 17.152px;
  }
}
@media (max-width: 535px) {
  body {
    font-size: 17.12px;
  }
}
@media (max-width: 534px) {
  body {
    font-size: 17.088px;
  }
}
@media (max-width: 533px) {
  body {
    font-size: 17.056px;
  }
}
@media (max-width: 532px) {
  body {
    font-size: 17.024px;
  }
}
@media (max-width: 531px) {
  body {
    font-size: 16.992px;
  }
}
@media (max-width: 530px) {
  body {
    font-size: 16.96px;
  }
}
@media (max-width: 529px) {
  body {
    font-size: 16.928px;
  }
}
@media (max-width: 528px) {
  body {
    font-size: 16.896px;
  }
}
@media (max-width: 527px) {
  body {
    font-size: 16.864px;
  }
}
@media (max-width: 526px) {
  body {
    font-size: 16.832px;
  }
}
@media (max-width: 525px) {
  body {
    font-size: 16.8px;
  }
}
@media (max-width: 524px) {
  body {
    font-size: 16.768px;
  }
}
@media (max-width: 523px) {
  body {
    font-size: 16.736px;
  }
}
@media (max-width: 522px) {
  body {
    font-size: 16.704px;
  }
}
@media (max-width: 521px) {
  body {
    font-size: 16.672px;
  }
}
@media (max-width: 520px) {
  body {
    font-size: 16.64px;
  }
}
@media (max-width: 519px) {
  body {
    font-size: 16.608px;
  }
}
@media (max-width: 518px) {
  body {
    font-size: 16.576px;
  }
}
@media (max-width: 517px) {
  body {
    font-size: 16.544px;
  }
}
@media (max-width: 516px) {
  body {
    font-size: 16.512px;
  }
}
@media (max-width: 515px) {
  body {
    font-size: 16.48px;
  }
}
@media (max-width: 514px) {
  body {
    font-size: 16.448px;
  }
}
@media (max-width: 513px) {
  body {
    font-size: 16.416px;
  }
}
@media (max-width: 512px) {
  body {
    font-size: 16.384px;
  }
}
@media (max-width: 511px) {
  body {
    font-size: 16.352px;
  }
}
@media (max-width: 510px) {
  body {
    font-size: 16.32px;
  }
}
@media (max-width: 509px) {
  body {
    font-size: 16.288px;
  }
}
@media (max-width: 508px) {
  body {
    font-size: 16.256px;
  }
}
@media (max-width: 507px) {
  body {
    font-size: 16.224px;
  }
}
@media (max-width: 506px) {
  body {
    font-size: 16.192px;
  }
}
@media (max-width: 505px) {
  body {
    font-size: 16.16px;
  }
}
@media (max-width: 504px) {
  body {
    font-size: 16.128px;
  }
}
@media (max-width: 503px) {
  body {
    font-size: 16.096px;
  }
}
@media (max-width: 502px) {
  body {
    font-size: 16.064px;
  }
}
@media (max-width: 501px) {
  body {
    font-size: 16.032px;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 499px) {
  body {
    font-size: 15.968px;
  }
}
@media (max-width: 498px) {
  body {
    font-size: 15.936px;
  }
}
@media (max-width: 497px) {
  body {
    font-size: 15.904px;
  }
}
@media (max-width: 496px) {
  body {
    font-size: 15.872px;
  }
}
@media (max-width: 495px) {
  body {
    font-size: 15.84px;
  }
}
@media (max-width: 494px) {
  body {
    font-size: 15.808px;
  }
}
@media (max-width: 493px) {
  body {
    font-size: 15.776px;
  }
}
@media (max-width: 492px) {
  body {
    font-size: 15.744px;
  }
}
@media (max-width: 491px) {
  body {
    font-size: 15.712px;
  }
}
@media (max-width: 490px) {
  body {
    font-size: 15.68px;
  }
}
@media (max-width: 489px) {
  body {
    font-size: 15.648px;
  }
}
@media (max-width: 488px) {
  body {
    font-size: 15.616px;
  }
}
@media (max-width: 487px) {
  body {
    font-size: 15.584px;
  }
}
@media (max-width: 486px) {
  body {
    font-size: 15.552px;
  }
}
@media (max-width: 485px) {
  body {
    font-size: 15.52px;
  }
}
@media (max-width: 484px) {
  body {
    font-size: 15.488px;
  }
}
@media (max-width: 483px) {
  body {
    font-size: 15.456px;
  }
}
@media (max-width: 482px) {
  body {
    font-size: 15.424px;
  }
}
@media (max-width: 481px) {
  body {
    font-size: 15.392px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 15.36px;
  }
}
@media (max-width: 479px) {
  body {
    font-size: 15.328px;
  }
}
@media (max-width: 478px) {
  body {
    font-size: 15.296px;
  }
}
@media (max-width: 477px) {
  body {
    font-size: 15.264px;
  }
}
@media (max-width: 476px) {
  body {
    font-size: 15.232px;
  }
}
@media (max-width: 475px) {
  body {
    font-size: 15.2px;
  }
}
@media (max-width: 474px) {
  body {
    font-size: 15.168px;
  }
}
@media (max-width: 473px) {
  body {
    font-size: 15.136px;
  }
}
@media (max-width: 472px) {
  body {
    font-size: 15.104px;
  }
}
@media (max-width: 471px) {
  body {
    font-size: 15.072px;
  }
}
@media (max-width: 470px) {
  body {
    font-size: 15.04px;
  }
}
@media (max-width: 469px) {
  body {
    font-size: 15.008px;
  }
}
@media (max-width: 468px) {
  body {
    font-size: 14.976px;
  }
}
@media (max-width: 467px) {
  body {
    font-size: 14.944px;
  }
}
@media (max-width: 466px) {
  body {
    font-size: 14.912px;
  }
}
@media (max-width: 465px) {
  body {
    font-size: 14.88px;
  }
}
@media (max-width: 464px) {
  body {
    font-size: 14.848px;
  }
}
@media (max-width: 463px) {
  body {
    font-size: 14.816px;
  }
}
@media (max-width: 462px) {
  body {
    font-size: 14.784px;
  }
}
@media (max-width: 461px) {
  body {
    font-size: 14.752px;
  }
}
@media (max-width: 460px) {
  body {
    font-size: 14.72px;
  }
}
@media (max-width: 459px) {
  body {
    font-size: 14.688px;
  }
}
@media (max-width: 458px) {
  body {
    font-size: 14.656px;
  }
}
@media (max-width: 457px) {
  body {
    font-size: 14.624px;
  }
}
@media (max-width: 456px) {
  body {
    font-size: 14.592px;
  }
}
@media (max-width: 455px) {
  body {
    font-size: 14.56px;
  }
}
@media (max-width: 454px) {
  body {
    font-size: 14.528px;
  }
}
@media (max-width: 453px) {
  body {
    font-size: 14.496px;
  }
}
@media (max-width: 452px) {
  body {
    font-size: 14.464px;
  }
}
@media (max-width: 451px) {
  body {
    font-size: 14.432px;
  }
}
@media (max-width: 450px) {
  body {
    font-size: 14.4px;
  }
}
@media (max-width: 449px) {
  body {
    font-size: 14.368px;
  }
}
@media (max-width: 448px) {
  body {
    font-size: 14.336px;
  }
}
@media (max-width: 447px) {
  body {
    font-size: 14.304px;
  }
}
@media (max-width: 446px) {
  body {
    font-size: 14.272px;
  }
}
@media (max-width: 445px) {
  body {
    font-size: 14.24px;
  }
}
@media (max-width: 444px) {
  body {
    font-size: 14.208px;
  }
}
@media (max-width: 443px) {
  body {
    font-size: 14.176px;
  }
}
@media (max-width: 442px) {
  body {
    font-size: 14.144px;
  }
}
@media (max-width: 441px) {
  body {
    font-size: 14.112px;
  }
}
@media (max-width: 440px) {
  body {
    font-size: 14.08px;
  }
}
@media (max-width: 439px) {
  body {
    font-size: 14.048px;
  }
}
@media (max-width: 438px) {
  body {
    font-size: 14.016px;
  }
}
@media (max-width: 437px) {
  body {
    font-size: 13.984px;
  }
}
@media (max-width: 436px) {
  body {
    font-size: 13.952px;
  }
}
@media (max-width: 435px) {
  body {
    font-size: 13.92px;
  }
}
@media (max-width: 434px) {
  body {
    font-size: 13.888px;
  }
}
@media (max-width: 433px) {
  body {
    font-size: 13.856px;
  }
}
@media (max-width: 432px) {
  body {
    font-size: 13.824px;
  }
}
@media (max-width: 431px) {
  body {
    font-size: 13.792px;
  }
}
@media (max-width: 430px) {
  body {
    font-size: 13.76px;
  }
}
@media (max-width: 429px) {
  body {
    font-size: 13.728px;
  }
}
@media (max-width: 428px) {
  body {
    font-size: 13.696px;
  }
}
@media (max-width: 427px) {
  body {
    font-size: 13.664px;
  }
}
@media (max-width: 426px) {
  body {
    font-size: 13.632px;
  }
}
@media (max-width: 425px) {
  body {
    font-size: 13.6px;
  }
}
@media (max-width: 424px) {
  body {
    font-size: 13.568px;
  }
}
@media (max-width: 423px) {
  body {
    font-size: 13.536px;
  }
}
@media (max-width: 422px) {
  body {
    font-size: 13.504px;
  }
}
@media (max-width: 421px) {
  body {
    font-size: 13.472px;
  }
}
@media (max-width: 420px) {
  body {
    font-size: 13.44px;
  }
}
@media (max-width: 419px) {
  body {
    font-size: 13.408px;
  }
}
@media (max-width: 418px) {
  body {
    font-size: 13.376px;
  }
}
@media (max-width: 417px) {
  body {
    font-size: 13.344px;
  }
}
@media (max-width: 416px) {
  body {
    font-size: 13.312px;
  }
}
@media (max-width: 415px) {
  body {
    font-size: 13.28px;
  }
}
@media (max-width: 414px) {
  body {
    font-size: 13.248px;
  }
}
@media (max-width: 413px) {
  body {
    font-size: 13.216px;
  }
}
@media (max-width: 412px) {
  body {
    font-size: 13.184px;
  }
}
@media (max-width: 411px) {
  body {
    font-size: 13.152px;
  }
}
@media (max-width: 410px) {
  body {
    font-size: 13.12px;
  }
}
@media (max-width: 409px) {
  body {
    font-size: 13.088px;
  }
}
@media (max-width: 408px) {
  body {
    font-size: 13.056px;
  }
}
@media (max-width: 407px) {
  body {
    font-size: 13.024px;
  }
}
@media (max-width: 406px) {
  body {
    font-size: 12.992px;
  }
}
@media (max-width: 405px) {
  body {
    font-size: 12.96px;
  }
}
@media (max-width: 404px) {
  body {
    font-size: 12.928px;
  }
}
@media (max-width: 403px) {
  body {
    font-size: 12.896px;
  }
}
@media (max-width: 402px) {
  body {
    font-size: 12.864px;
  }
}
@media (max-width: 401px) {
  body {
    font-size: 12.832px;
  }
}
@media (max-width: 400px) {
  body {
    font-size: 12.8px;
  }
}
@media (max-width: 399px) {
  body {
    font-size: 12.768px;
  }
}
@media (max-width: 398px) {
  body {
    font-size: 12.736px;
  }
}
@media (max-width: 397px) {
  body {
    font-size: 12.704px;
  }
}
@media (max-width: 396px) {
  body {
    font-size: 12.672px;
  }
}
@media (max-width: 395px) {
  body {
    font-size: 12.64px;
  }
}
@media (max-width: 394px) {
  body {
    font-size: 12.608px;
  }
}
@media (max-width: 393px) {
  body {
    font-size: 12.576px;
  }
}
@media (max-width: 392px) {
  body {
    font-size: 12.544px;
  }
}
@media (max-width: 391px) {
  body {
    font-size: 12.512px;
  }
}
@media (max-width: 390px) {
  body {
    font-size: 12.48px;
  }
}
@media (max-width: 389px) {
  body {
    font-size: 12.448px;
  }
}
@media (max-width: 388px) {
  body {
    font-size: 12.416px;
  }
}
@media (max-width: 387px) {
  body {
    font-size: 12.384px;
  }
}
@media (max-width: 386px) {
  body {
    font-size: 12.352px;
  }
}
@media (max-width: 385px) {
  body {
    font-size: 12.32px;
  }
}
@media (max-width: 384px) {
  body {
    font-size: 12.288px;
  }
}
@media (max-width: 383px) {
  body {
    font-size: 12.256px;
  }
}
@media (max-width: 382px) {
  body {
    font-size: 12.224px;
  }
}
@media (max-width: 381px) {
  body {
    font-size: 12.192px;
  }
}
@media (max-width: 380px) {
  body {
    font-size: 12.16px;
  }
}
@media (max-width: 379px) {
  body {
    font-size: 12.128px;
  }
}
@media (max-width: 378px) {
  body {
    font-size: 12.096px;
  }
}
@media (max-width: 377px) {
  body {
    font-size: 12.064px;
  }
}
@media (max-width: 376px) {
  body {
    font-size: 12.032px;
  }
}
@media (max-width: 375px) {
  body {
    font-size: 12px;
  }
}
@media (max-width: 374px) {
  body {
    font-size: 11.968px;
  }
}
@media (max-width: 373px) {
  body {
    font-size: 11.936px;
  }
}
@media (max-width: 372px) {
  body {
    font-size: 11.904px;
  }
}
@media (max-width: 371px) {
  body {
    font-size: 11.872px;
  }
}
@media (max-width: 370px) {
  body {
    font-size: 11.84px;
  }
}
@media (max-width: 369px) {
  body {
    font-size: 11.808px;
  }
}
@media (max-width: 368px) {
  body {
    font-size: 11.776px;
  }
}
@media (max-width: 367px) {
  body {
    font-size: 11.744px;
  }
}
@media (max-width: 366px) {
  body {
    font-size: 11.712px;
  }
}
@media (max-width: 365px) {
  body {
    font-size: 11.68px;
  }
}
@media (max-width: 364px) {
  body {
    font-size: 11.648px;
  }
}
@media (max-width: 363px) {
  body {
    font-size: 11.616px;
  }
}
@media (max-width: 362px) {
  body {
    font-size: 11.584px;
  }
}
@media (max-width: 361px) {
  body {
    font-size: 11.552px;
  }
}
@media (max-width: 360px) {
  body {
    font-size: 11.52px;
  }
}
@media (max-width: 359px) {
  body {
    font-size: 11.488px;
  }
}
@media (max-width: 358px) {
  body {
    font-size: 11.456px;
  }
}
@media (max-width: 357px) {
  body {
    font-size: 11.424px;
  }
}
@media (max-width: 356px) {
  body {
    font-size: 11.392px;
  }
}
@media (max-width: 355px) {
  body {
    font-size: 11.36px;
  }
}
@media (max-width: 354px) {
  body {
    font-size: 11.328px;
  }
}
@media (max-width: 353px) {
  body {
    font-size: 11.296px;
  }
}
@media (max-width: 352px) {
  body {
    font-size: 11.264px;
  }
}
@media (max-width: 351px) {
  body {
    font-size: 11.232px;
  }
}
@media (max-width: 350px) {
  body {
    font-size: 11.2px;
  }
}
@media (max-width: 349px) {
  body {
    font-size: 11.168px;
  }
}
@media (max-width: 348px) {
  body {
    font-size: 11.136px;
  }
}
@media (max-width: 347px) {
  body {
    font-size: 11.104px;
  }
}
@media (max-width: 346px) {
  body {
    font-size: 11.072px;
  }
}
@media (max-width: 345px) {
  body {
    font-size: 11.04px;
  }
}
@media (max-width: 344px) {
  body {
    font-size: 11.008px;
  }
}
@media (max-width: 343px) {
  body {
    font-size: 10.976px;
  }
}
@media (max-width: 342px) {
  body {
    font-size: 10.944px;
  }
}
@media (max-width: 341px) {
  body {
    font-size: 10.912px;
  }
}
@media (max-width: 340px) {
  body {
    font-size: 10.88px;
  }
}
@media (max-width: 339px) {
  body {
    font-size: 10.848px;
  }
}
@media (max-width: 338px) {
  body {
    font-size: 10.816px;
  }
}
@media (max-width: 337px) {
  body {
    font-size: 10.784px;
  }
}
@media (max-width: 336px) {
  body {
    font-size: 10.752px;
  }
}
@media (max-width: 335px) {
  body {
    font-size: 10.72px;
  }
}
@media (max-width: 334px) {
  body {
    font-size: 10.688px;
  }
}
@media (max-width: 333px) {
  body {
    font-size: 10.656px;
  }
}
@media (max-width: 332px) {
  body {
    font-size: 10.624px;
  }
}
@media (max-width: 331px) {
  body {
    font-size: 10.592px;
  }
}
@media (max-width: 330px) {
  body {
    font-size: 10.56px;
  }
}
@media (max-width: 329px) {
  body {
    font-size: 10.528px;
  }
}
@media (max-width: 328px) {
  body {
    font-size: 10.496px;
  }
}
@media (max-width: 327px) {
  body {
    font-size: 10.464px;
  }
}
@media (max-width: 326px) {
  body {
    font-size: 10.432px;
  }
}
@media (max-width: 325px) {
  body {
    font-size: 10.4px;
  }
}
@media (max-width: 324px) {
  body {
    font-size: 10.368px;
  }
}
@media (max-width: 323px) {
  body {
    font-size: 10.336px;
  }
}
@media (max-width: 322px) {
  body {
    font-size: 10.304px;
  }
}
@media (max-width: 321px) {
  body {
    font-size: 10.272px;
  }
}
@media (max-width: 320px) {
  body {
    font-size: 10.24px;
  }
}
.page-title {
  position: relative;
}

.page-title .title {
  position: absolute;
  width: 100%;
  text-align: center;
}
.page-title .breadcrumb-page {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-title .breadcrumb-page .breadcrumb {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
}
.page-title .breadcrumb-page .breadcrumb a {
  color: #fff;
}
.page-title .breadcrumb-page .breadcrumb a img {
  vertical-align: top;
  margin-right: 2px;
}
.page-title .cover {
  text-align: center;
}

@media screen and (min-width: 769px) {
  .page-title:before {
    content: "";
    width: 100%;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    background: black;
    background: -moz-linear-gradient(top, black 0%, transparent 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, black), color-stop(100%, transparent));
    background: -webkit-linear-gradient(top, black 0%, transparent 100%);
    background: -o-linear-gradient(top, black 0%, transparent 100%);
    background: -ms-linear-gradient(top, black 0%, transparent 100%);
    background: linear-gradient(to bottom, black 0%, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
    filter: alpha(opacity=40);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -webkit-opacity: 0.4;
    -khtml-opacity: 0.4;
    -moz-opacity: 0.4;
    -ms-opacity: 0.4;
    -o-opacity: 0.4;
    opacity: 0.4;
    z-index: 1;
  }
}
@media print {
  .page-title:before {
    content: "";
    width: 100%;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    background: black;
    background: -moz-linear-gradient(top, black 0%, transparent 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, black), color-stop(100%, transparent));
    background: -webkit-linear-gradient(top, black 0%, transparent 100%);
    background: -o-linear-gradient(top, black 0%, transparent 100%);
    background: -ms-linear-gradient(top, black 0%, transparent 100%);
    background: linear-gradient(to bottom, black 0%, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
    filter: alpha(opacity=40);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -webkit-opacity: 0.4;
    -khtml-opacity: 0.4;
    -moz-opacity: 0.4;
    -ms-opacity: 0.4;
    -o-opacity: 0.4;
    opacity: 0.4;
    z-index: 1;
  }
}
@media only screen and (max-width: 768px) {
  .page-title .title {
    top: 58%;
  }
}
.breadcrumb {
  font-size: 12px;
  padding: 7px 0;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 35px;
}
.breadcrumb li {
  display: inline-block;
  vertical-align: middle;
}
.breadcrumb li:after {
  content: ">";
  display: inline-block;
  vertical-align: middle;
  padding: 0 2px;
  height: 18px;
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb a, .breadcrumb .ic-current {
  display: inline-block;
  padding: 4px 0;
  vertical-align: middle;
}
.breadcrumb a:hover {
  color: #c6063f;
}

@media only screen and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}
.btn-viewmore {
  display: inline-block;
  background: #333 url(../img/top/ico_bar.png) no-repeat 10px center;
  width: 206px;
  height: 36px;
  line-height: 35px;
}

.list-post .post-item {
  border: 5px solid #ccc;
  height: 320px;
  overflow: hidden;
  overflow-y: auto;
}
.list-post .post-item .labels span{
    margin-top: 5px;
}
.list-post .post-item p {
  color: #ba033a;
  text-decoration: underline;
}
.list-post .post-item .post-featured-image {
  position: relative;
  margin-bottom: 6px;
}
.list-post .post-item .post-featured-image figcaption {
  position: absolute;
  right: 10px;
  bottom: -10px;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
}
.list-post .post-item .post-entry {
  padding: 10px 10px 10px;
}
.list-post .post-item .post-entry h3 {
  font-weight: bold;
  margin-bottom: 15px;
}
.list-post a:hover .post-item {
  border-color: #ba033a;
}
.list-post .btn-viewmore {
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .list-post .post-item {
    border-width: 0.285em;
    height: auto;
  }
  .list-post .post-item .post-featured-image {
    margin-bottom: 0.2em;
  }
  .list-post .post-item .post-featured-image figcaption {
    bottom: 0.3em;
    width: 19%;
  }
  .list-post .post-item .post-entry {
    padding: 5% 5% 2%;
    height: 10em;
    overflow: hidden;
    overflow-y: auto;
  }
  .list-post .post-item .post-entry h3, .list-post .post-item .post-entry p {
    font-size: 0.917em;
  }
}
.block-news {
  background: #fff;
  margin-top: 30px;
  padding: 30px 40px;
  text-align: center;
}
.block-news .txt {
  margin-bottom: 30px;
}
.block-news .img {
  margin-bottom: 20px;
}
.block-news .txt {
  line-height: 1.7;
}
.block-news .news-col {
  float: left;
  width: 430px;
  margin-right: 40px;
}
.block-news .news-col:last-child {
  margin-right: 0;
}
.block-news h4 {
  font-size: 16px;
  color: #000;
  margin-bottom: 12px;
}
.block-news .gallery .img {
  float: left;
  width: 33.3333%;
}
.block-news .gallery .img img {
  width: 100%;
}
.block-news .map {
  margin-bottom: 18px;
  width: auto;
  padding-bottom: 0;
  height: auto;
  position: static;
}

@media only screen and (max-width: 768px) {
  .block-news {
    margin-left: -4%;
    margin-right: -4%;
    margin-top: 6%;
    padding: 6% 4% 7%;
  }
  .block-news .inner-ct {
    padding: 0 2.8%;
  }
  .block-news .cm-ttl {
    margin-bottom: 1.7em;
  }
  .block-news p, .block-news div {
    font-size: 0.917em;
  }
  .block-news .txt {
    margin-bottom: 1.5em;
  }
  .block-news div, .block-news .map, .block-news .img {
    margin-bottom: 1em;
  }
  .block-news .permalink {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .block-news .news-col {
    float: none;
    width: auto;
    margin-bottom: 5%;
    padding: 0 6.5%;
    margin-right: 0;
  }
  .block-news .news-col.last {
    margin-bottom: 0;
  }
  .block-news .news-col h4 {
    font-size: 1em;
    margin-bottom: 0.5em;
  }
}
.nav-page {
  text-align: center;
}
.nav-page p {
  margin-bottom: 10px;
}
.nav-page .link-direct {
  display: inline-block;
  width: 600px;
  height: 120px;
  background: #0c321e;
  border: 4px solid rgba(255, 255, 255, 0.31);
  color: #fff;
}
.nav-page .link-direct:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.nav-page .link-direct .thumb, .nav-page .link-direct .txt {
  display: inline-block;
  vertical-align: middle;
}
.nav-page .link-direct .txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  background: url(../img/common/arrow_lg.png) no-repeat right center;
  padding-right: 50px;
  margin-left: 50px;
}
.nav-page .link-direct .thumb {
  padding-left: 10px;
}

@media only screen and (max-width: 768px) {
  .nav-page p {
    font-size: 0.917em;
    margin-bottom: 1em;
  }
  .nav-page .link-direct {
    width: 87%;
    height: auto;
    white-space: nowrap;
    padding: 1.5% 0;
  }
  .nav-page .link-direct .thumb {
    width: 25%;
    padding-left: 0;
  }
  .nav-page .link-direct .txt {
    font-size: 1em;
    padding-right: 5%;
    margin: 0;
    background-size: 0.9em auto;
  }
}
.page-name {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: -18px;
  margin-bottom: 40px;
}
.page-name .cm-ttl {
  margin: 25px 0 40px;
}

@media only screen and (max-width: 768px) {
  .page-name {
    margin: -1em 0 2em;
  }
  .page-name .name img {
    height: 1.333em;
  }
  .page-name .cm-ttl {
    margin: 1em 0 3em;
  }
}
.box-has-thumb.thumb-left {
  margin-bottom: 80px;
  position: relative;
}
.box-has-thumb.thumb-left .outer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  padding: 30px;
}
.box-has-thumb.thumb-left .thumbnail {
  float: left;
  width: 465px;
  padding-right: 5%;
}
.box-has-thumb.thumb-left .content-r {
  float: right;
  width: 455px;
  color: #fff;
}
.box-has-thumb.thumb-left .content-r .logo-item {
  margin-bottom: 15px;
}
.box-has-thumb.thumb-left .content-r .desc {
  font-weight: bold;
  font-size: 16px;
  line-height: 2;
}
.box-has-thumb.thumb-left .link a {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  width: 160px;
  text-align: center;
  padding: 6px 0;
  margin-top: 10px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.box-has-thumb.thumb-left .link a:hover {
  background-color: #222;
}

@media only screen and (max-width: 768px) {
  .sec-cafe {
    padding: 5% 0 6%;
  }
  .sec-cafe .text-intro {
    padding: 0.8em 0 1em;
  }

  .box-has-thumb.thumb-left {
    padding: 0;
    margin: 0;
    padding-bottom: 1.333em;
  }
  .box-has-thumb.thumb-left > img.hide-pc {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
  }
  .box-has-thumb.thumb-left .outer {
    padding: 0 4%;
    text-align: center;
    z-index: 2;
    position: relative;
  }
  .box-has-thumb.thumb-left .thumbnail, .box-has-thumb.thumb-left .content-r {
    float: none;
    width: auto;
  }
  .box-has-thumb.thumb-left .thumbnail {
    margin-top: 7%;
    padding: 0 12%;
  }
  .box-has-thumb.thumb-left .content-r .logo-item {
    display: inline-block;
    width: 50%;
  }
  .box-has-thumb.thumb-left .content-r .desc {
    text-align: left;
    font-size: 1em;
    margin-bottom: 1em;
  }
  .box-has-thumb.thumb-left .content-r .link a {
    font-size: 0.583em;
    width: 39.5%;
    padding: 1.1em 0;
    margin-top: 1.333em;
  }
}
@media only screen and (max-width: 380px) {
  .box-has-thumb.thumb-left .content-r .link a {
    border-width: 1px;
  }
}
.pagination .page {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 1em;
  font-weight: normal;
  text-align: center;
  line-height: normal;
  background: #f9f7f8;
  margin: 0 1px;
}
.pagination .page.page-current {
  background-color: #333;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .pagination .page {
    width: 2.1em;
    height: auto;
    padding: 0.3em 0;
  }
}
/**
 * Title
 */
.main-title {
  text-align: center;
  font-weight: bold;
  position: relative;
  margin-bottom: 26px;
}
.main-title .wrap {
  display: inline-block;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
.main-title .en-ttl > img {
  height: 21px;
}
.main-title .en-ttl,
.main-title .jp-ttl {
  display: block;
}
.main-title .jp-ttl {
  font-size: 1em;
  font-weight: bold;
  line-height: 1;
  margin-top: 7px;
}
.main-title.has-line .wrap {
  background: #fff;
}
.main-title.has-line .wrap.gray {
  background: #f7f7f7;
}
.main-title.has-line:before {
  content: "";
  width: 100%;
  height: 7px;
  position: absolute;
  left: 0;
  top: 15px;
  border-top: 2px solid #333;
  border-bottom: 1px solid #333;
}

.cm-ttl {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 34px;
}
.cm-ttl:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: 10px auto;
  width: 60px;
  height: 2px;
  background: #000;
}

.sttl {
  text-align: center;
  font-weight: bold;
}
.sttl span {
  display: inline-block;
  padding: 0 5px 10px;
  border-bottom: 2px solid #333;
}

@media only screen and (max-width: 768px) {
  .main-title {
    margin-bottom: 0.7em;
  }
  .main-title .en-ttl > img {
    height: 1.025em;
    max-height: 25px;
  }
  .main-title .jp-ttl {
    font-size: 0.75em;
    margin-top: 0.4em;
  }
  .main-title.has-line .wrap {
    background: #f7f7f7;
  }
  .main-title.has-line:before {
    top: 40%;
  }

  .cm-ttl {
    font-size: 1em;
    margin-bottom: 3%;
  }
  .cm-ttl:before {
    margin: 0.3em auto;
    width: 4.2em;
  }
}
/**
 * Button
 */
.readmore {
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  padding-right: 18px;
  background: url(../img/common/arrow_double_right_black.png) no-repeat right center;
}

.permalink {
  display: inline-block;
  height: 36px;
  line-height: 35px;
  min-width: 206px;
  padding: 0 22px;
  text-align: center;
}
.permalink > span {
  display: inline-block;
  padding-right: 35px;
  background: #fff;
}

.permalink,
.permalink.light {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.permalink,
.permalink.light:hover,
.permalink.on:hover {
  background: #222;
}

.permalink.light:hover {
  border-color: #222;
}

.permalink > span,
.permalink.light:hover > span,
.permalink.light > span,
.permalink.on:hover > span {
  background: url(../img/common/arrow_double_right_white.png) no-repeat right center;
  color: #fff;
}

.permalink:hover,
.permalink.on {
  background: #fff;
  border: 1px solid #222;
}

.permalink.light {
  background-color: transparent;
  border: 2px solid #fff;
}

.permalink:hover > span,
.permalink.on > span {
  background: url(../img/common/arrow_double_right_black.png) no-repeat right center;
  color: #222;
}

@media only screen and (max-width: 768px) {
  .btn-viewmore, .permalink {
    min-width: 46.67%;
    padding: 0.46em 1em;
    height: auto;
    line-height: normal;
  }
}
/**
 * Box layout
 */
.row {
  margin-left: -5px;
  margin-right: -5px;
  display: block;
  *zoom: 1;
}
.row:after {
  content: " ";
  display: table;
  clear: both;
}

.md-col-2,
.md-col-3,
.md-col-4 {
  padding-left: 5px;
  padding-right: 5px;
}

@media screen and (min-width: 769px) {
  .wrap3-col {
    margin-left: -15px;
    margin-right: -15px;
  }
  .wrap3-col .box {
    float: left;
    width: 33.333333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }

  .wrap2-col {
    display: block;
    *zoom: 1;
  }
  .wrap2-col:after {
    content: " ";
    display: table;
    clear: both;
  }
  .wrap2-col .box {
    width: 475px;
    float: left;
    margin-right: 30px;
  }
  .wrap2-col .box:last-child {
    margin-right: 0;
  }

  .md-col-2,
  .md-col-3,
  .md-col-4 {
    float: left;
  }

  .md-col-2 {
    width: 16.66667%;
  }

  .md-col-3 {
    width: 25%;
  }

  .md-col-4 {
    width: 33.33333%;
  }
}
@media print {
	.wrap3-col {
    margin-left: -15px;
    margin-right: -15px;
  }
  .wrap3-col .box {
    float: left;
    width: 33.333333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }

  .wrap2-col {
    display: block;
    *zoom: 1;
  }
  .wrap2-col:after {
    content: " ";
    display: table;
    clear: both;
  }
  .wrap2-col .box {
    width: 475px;
    float: left;
    margin-right: 30px;
  }
  .wrap2-col .box:last-child {
    margin-right: 0;
  }

  .md-col-2,
  .md-col-3,
  .md-col-4 {
    float: left;
  }

  .md-col-2 {
    width: 16.66667%;
  }

  .md-col-3 {
    width: 25%;
  }

  .md-col-4 {
    width: 33.33333%;
  }
}

.wrap4-col {
  display: block;
  *zoom: 1;
}
.wrap4-col:after {
  content: " ";
  display: table;
  clear: both;
}
.wrap4-col .box {
  float: left;
  margin-right: 30px;
  width: 222.5px;
  margin-top: 30px;
}
.wrap4-col .box:nth-child(4n) {
  margin-right: 0;
}

@media only screen and (max-width: 768px) {
  .main-content {
    background: #f7f7f7;
  }

  .wrap3-col .box {
    float: left;
    width: 48.5%;
    margin-right: 3%;
  }
  .wrap3-col .box:nth-child(2n) {
    margin-right: 0;
  }
}
.box-gray {
  background: #f7f7f7;
}
.box-gray.h82 {
  height: 82px;
}

.ft-century {
  font-family: 'CenturyGothic', sans-serif;
}

.full-width {
  width: 100%;
}

.anchor-scroll {
  display: block;
  visibility: hidden;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
}

.header-inner {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.is-home .header-inner {
  padding-bottom: 0;
}

.site-header.is-home:after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  bottom: -20px;
  background: -moz-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
}

.header-top {
  position: relative;
  padding: 6px 0;
}
.header-top .logo {
  text-align: center;
}
.header-top .navbar-top {
  position: absolute;
  top: 7px;
  right: 0;
}
.header-top .navbar-top a {
  background: #f1f1f1;
}

.is-home .header-top .navbar-top a {
  background-color: #333;
}

@media only screen and (max-width: 768px) {
  .site-header {
    padding-bottom: 0;
  }
  .site-header.static {
    position: static !important;
    background: #fff;
  }
  .site-header.is-home:after {
    display: none;
  }
  .site-header .header-inner {
    padding-bottom: 0;
  }
  .site-header .header-top {
    padding: 0 4%;
    display: block;
    *zoom: 1;
  }
  .site-header .header-top:after {
    content: " ";
    display: table;
    clear: both;
  }
  .site-header .header-top .logo {
    text-align: left;
    float: left;
    padding: 2% 0;
    padding: 10px 0;
    width: 20%;
  }
  .site-header .header-top .logo img {
    width: auto;
  }
  .site-header .header-top .btn-menu {
    float: right;
    width: 40px;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    margin-top: 4.4%;
    outline: none;
  }
  .site-header .header-top .btn-menu span {
    display: block;
    height: 4px;
    background: #333;
  }
  .site-header .header-top .btn-menu span:first-child, .site-header .header-top .btn-menu span:first-child + span {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .site-header .header-top .btn-menu {
    width: 30px;
    margin-top: 4.5%;
  }
  .site-header .header-top .btn-menu span {
    height: 3px;
  }
  .site-header .header-top .btn-menu span:first-child, .site-header .header-top .btn-menu span:first-child + span {
    margin-bottom: 7px;
  }
  .site-header .header-top .logo {
    padding: 0.5em 0;
  }
}
.footer-top {
  background: #333;
  padding: 30px 0;
}
@media screen and (min-width: 769px) {
  .footer-top .sitemap {
    float: left;
    width: 590px;
  }
  .footer-top .foot-right {
    float: right;
    width: 390px;
  }
}
@media print {
  .footer-top .sitemap {
    float: left;
    width: 590px;
  }
  .footer-top .foot-right {
    float: right;
    width: 390px;
  }
}
.footer-top .sitemap {
  padding-left: 10px;
}
.footer-top .sitemap > ul > li {
  float: left;
  margin-right: 35px;
}
.footer-top .sitemap > ul > li:last-child {
  margin-right: 0;
}
.footer-top .sitemap > ul > li > a {
  font-size: 13px;
}
.footer-top .sitemap li {
  display: block;
}
.footer-top .sitemap li a {
  color: #fff;
  display: inline-block;
}
.footer-top .sitemap li ul {
  font-size: 11px;
  margin-top: 5px;
}
.footer-top .sitemap li ul li {
  margin-top: 2px;
}

.foot-right ul {
  text-align: right;
}
.foot-right ul li {
  vertical-align: top;
}
.foot-right .brand li {
  margin-left: 5px;
}
.foot-right .navbar-top li {
  margin-top: 10px;
}
.foot-right .navbar-top li a {
  background: #fff;
}

.navbar-top li {
  margin-left: 2px;
}
.navbar-top li a {
  display: inline-block;
  width: 29px;
  height: 26px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
}

.ft-contact {
  background: #4e4e4e;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
}
.ft-contact small {
  display: inline-block;
  margin-right: 40px;
}

.footer-bot {
  padding: 20px 0;
  text-align: center;
}
.footer-bot .copyright {
  font-size: 11px;
  filter: alpha(opacity=60);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  -webkit-opacity: 0.6;
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  -ms-opacity: 0.6;
  -o-opacity: 0.6;
  opacity: 0.6;
  margin-top: 10px;
}

.scroll-top {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 20px;
  right: -60px;
  z-index: 1000;
  -webkit-transition: right 0.4s ease;
  transition: right 0.4s ease;
}
.scroll-top.roll {
  right: 20px;
}

@media only screen and (max-width: 768px) {
  .ft-contact {
    font-size: 0.6em;
  }
  .ft-contact small {
    margin-right: 2em;
  }
}
.sidebar-left aside {
  margin-bottom: 25px;
}

.widget-title,
.categories > li > a {
  display: block;
  height: 44px;
  background: #666;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 44px;
  padding: 0 10px;
  position: relative;
}

a.widget-title,
.categories > li > a {
  color: #fff;
}
a.widget-title:hover,
.categories > li > a:hover {
  text-decoration: none;
  opacity: 0.7;
}
a.widget-title .icon-arrow-r,
.categories > li > a .icon-arrow-r {
  right: 10px;
}

.icon-arrow-r {
  width: 7px;
  height: 13px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-position: -43px -258px;
}
@media all and (-ms-high-contrast: none) {
  .icon-arrow-r:not(:target) {
    top: 50%;
  }
}

.categories {
  font-size: 14px;
}
.categories > li {
  margin-bottom: 25px;
}
.categories > li:last-child {
  margin-bottom: 0;
}
.categories > li > a {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  position: relative;
}
.categories li a {
  display: block;
}
.categories li a:hover {
  text-decoration: none !important;
}
.categories .sub-category li a {
  display: block;
  padding: 11px 20px;
  background: #f6f6f6;
  color: #222;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #fff;
}
.categories .sub-category li a:hover, .categories .sub-category li a.is-current {
  background: #fff;
}
.categories .sub-category li:first-child a {
  border-top: 0;
}
.categories .sub-category li:last-child a {
  border-bottom: 0;
}

.categories > li > a.as-ttl,
.widget-title {
  -webkit-border-radius: 3px 3px 0 0;
  -khtml-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  -o-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

.widget-ranking .widget-content {
  padding-left: 0;
  padding-right: 0;
}

.post-archived {
  padding: 10px 0;
}
.post-archived li {
  padding: 10px 20px;
}
.post-archived li a {
  display: block;
  color: #222;
}
.post-archived li .thumb {
  display: block;
  margin-bottom: 8px;
}
.post-archived li .thumb img {
  display: block;
  margin: 0 auto;
}
.post-archived li .ttl:after {
  content: "";
  display: table;
  clear: both;
}
.post-archived li .ttl .ordering {
  float: left;
  width: 20px;
  height: 20px;
  background: #fef300;
  line-height: 21px;
  margin-top: 3px;
  text-align: center;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.post-archived li .ttl p {
  font-size: 10px;
  display: block;
  padding-left: 30px;
}
.post-archived + .ranking-btm {
  text-align: center;
  font-size: 12px;
  background: #f6f6f6;
  padding: 11px 0;
  border-top: 1px dashed #ccc;
}

.categories > li > a + ul,
.widget-content {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  overflow: hidden;
}

.widget-content {
  padding-left: 20px;
  padding-right: 20px;
}

.widget-tag .widget-content {
  padding: 15px 15px 0;
}
.widget-tag li {
  display: inline-block;
  margin: 0 2px 15px 0;
}

.widget-social .widget-content {
  padding: 15px;
}
.widget-social .social {
  margin-left: -1px;
  margin-right: -1px;
}
.widget-social .social li {
  float: left;
  width: 30px;
  margin-right: 10px;
}
.widget-social .social li:last-child {
  margin-right: 0;
}
.widget-social .social li a {
  display: block;
  text-decoration: none !important;
}
.widget-social .social li a .ico {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.social a {
  display: block;
  text-decoration: none !important;
}
.social a .ico {
  display: block;
  background-color: #111;
  width: 30px;
  height: 30px;
}
.social a .ico-facebook {
  background-position: -141px -192px;
}
.social a .ico-twitter {
  background-position: -228px -192px;
}
.social a .ico-google {
  background-position: -322px -192px;
}
.social a .ico-fe {
  background-position: -418px -192px;
}
.social a .ico-hatena {
  background-position: -510px -192px;
}

@media only screen and (max-width: 959px) {
  .sidebar-left {
    position: fixed;
    top: 0;
    left: -235px;
    width: auto;
    height: 100% !important;
    overflow-y: auto;
    background: #222;
    z-index: 9990;
    -webkit-transition: left 0.2s linear;
    transition: left 0.2s linear;
  }
  .sidebar-left aside {
    width: 220px;
  }

  .js-sidebar-open .sidebar-left {
    left: 0;
  }

  .main-nav .nav-head {
    font-size: 14px;
    color: #ccc;
    height: 44px;
    padding: 12px 10px 0;
  }

  .categories > li, .sidebar-left aside {
    margin-bottom: 10px;
  }

  .categories > li > a, .widget-title {
    border-radius: 0 !important;
  }

  .categories .sub-category, .widget-content {
    border: 0 !important;
    border-radius: 0 !important;
  }

  .widget-ranking .widget-content {
    display: none;
  }
}
.main-nav .menu > li {
  float: left;
  width: 16.66667%;
  text-align: center;
  padding-bottom: 18px;
}
.main-nav .menu > li.item-acitve:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #c2073e;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -20px;
  margin-top: 7px;
}
.main-nav .menu > li > a {
  display: block;
  font-size: 13px;
  line-height: 1;
  color: #000;
  position: relative;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-left: 1px solid #333;
  height: 15px;
}
.main-nav .menu > li > a:after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  top: 100%;
  margin-top: 7px;
  display: none;
  background: #c71432;
}
.main-nav .menu > li > a.active:after {
  display: block;
}
.main-nav .menu > li:hover a {
  color: #c71432;
}
.main-nav .menu > li:hover a:after {
  display: block;
}
.main-nav .menu > li .nav-home {
  width: 16px;
  height: 15px;
  margin: 0 auto;
  background: transparent url(../img/common/ico_home_on.png) left top no-repeat;
}
.main-nav .menu > li .nav-home img {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.main-nav .menu > li .nav-home:hover img, .main-nav .menu > li .nav-home.active img {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
}
.main-nav .menu > li:hover .nav-page-primary {
  display: block;
}
.main-nav .menu > li:first-child {
  position: relative;
}
.main-nav .menu > li:first-child:before {
  content: "";
  width: 1px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  background: #333;
}
.main-nav .menu > li:first-child a {
  border-left: 0;
  border-right: 0;
}
.main-nav .menu > li:last-child a {
  border-right: 1px solid #333;
}

.is-home .main-nav .menu > li {
  padding-bottom: 10px;
}

.nav-page-primary {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
}

.nav-page-primary {
  background: #28270d;
  background: rgba(0, 0, 0, 0.8);
  z-index: 990;
}
.nav-page-primary a {
  display: block;
  color: #fff;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.nav-page-primary li:hover a, .nav-page-primary .active a {
  background: #c71331;
}

@media screen and (min-width: 769px) {
  .nav-page-primary ul {
    display: table;
    max-width: 980px;
    margin: 0 auto;
  }
  .nav-page-primary ul li {
    display: table-cell;
    vertical-align: top;
  }
  .nav-page-primary.col-4 li {
    width: 25%;
  }
}
@media print {
  .nav-page-primary ul {
    display: table;
    max-width: 980px;
    margin: 0 auto;
  }
  .nav-page-primary ul li {
    display: table-cell;
    vertical-align: top;
  }
  .nav-page-primary.col-4 li {
    width: 25%;
  }
}
@media only screen and (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 9999;
    display: none;
    background: rgba(255, 255, 255, 0.95);
  }
  .main-nav .menu {
    border-bottom: 1px solid #aaa;
    margin-bottom: 8%;
  }
  .main-nav .menu > li {
    float: none;
    width: auto;
    position: relative;
  }
  .main-nav .menu > li > a {
    height: auto;
    padding: 4%;
    font-size: 0.917em;
    font-weight: bold;
    color: #222;
    border-top: 1px solid #aaa;
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .main-nav .menu > li > a:after {
    display: none !important;
  }
  .main-nav .menu > li .nav-home {
    width: auto;
    height: auto;
    background: none;
  }
  .main-nav .menu > li .nav-home img {
    display: none;
  }
  .main-nav .menu > li:first-child:before {
    display: none !important;
  }
  .main-nav .nav-heading {
    padding: 6.5% 0;
  }
  .main-nav .nav-footer {
    padding-bottom: 5%;
  }
  .main-nav .nav-footer .btn-close {
    display: block;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    width: 15%;
    margin: 0 auto;
    outline: none;
  }

    #menu-second.hide-pc.fixed {
        top: 0px !important;
        position: fixed;
    }
  .main-nav .menu-second {
    margin-bottom: 10%;
  }
  .main-nav .menu-second li {
    float: left;
    width: 48.55072%;
    margin-right: 2.89855%;
    margin-bottom: 2.89855%;
    border: 0 !important;
  }
  .main-nav .menu-second li:nth-child(2n) {
    margin-right: 0;
  }
  .main-nav .menu-second li:last-child {
    width: 100% !important;
    margin: 0 !important;
  }
  .main-nav .menu-second li a {
    display: block;
    text-align: center;
  }
  .main-nav .menu-second .menu-1 a {
    background: #000;
  }
  .main-nav .menu-second .menu-2 a {
    background: #6a3807;
  }
  .main-nav .menu-second .menu-3 a {
    background: #e95412;
  }
  .main-nav .menu-second .menu-4 a {
    background: #a47d38;
  }
  .main-nav .menu-second .menu-5 a {
    background: #a1141a;
  }
  .main-nav .menu-second .menu-6 a {
    background: #b54128;
  }
  .main-nav .menu-second .menu-7 a {
    background: #a11518;
  }
  .main-nav .menu-second .menu-8 a {
    background: #0099cb;
  }
  .main-nav .menu-second .menu-9 a {
    background: #006599;
  }
}
@media only screen and (max-width: 768px) {
  .nav-page-primary {
    display: block;
    height: auto;
    top: 0;
    z-index: 9;
  }
  .nav-page-primary ul {
    display: block;
    *zoom: 1;
  }
  .nav-page-primary ul:after {
    content: " ";
    display: table;
    clear: both;
  }
  .nav-page-primary ul li {
    float: left;
    width: 16.66667%;
    border-right: 1px solid #fff;
  }
  .nav-page-primary ul li:last-child {
    border-right: 0;
  }
  .nav-page-primary.nav-four ul li {
    width: 25%
  }
  .nav-page-primary.nav-two ul li {
    width: 50%
  }

  .pt-sp0 .page-title {
    margin-bottom: 4%;
  }
  .pt-sp0 .page-title .nav-page-primary {
    position: static;
  }
}
@media screen and (min-width: 769px) {
  .main-nav {
    display: block !important;
  }
}
@media print {
  .main-nav {
    display: block !important;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide a {
  display: block;
}
.slick-slide a img {
  width: 100%;
  height: auto;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.top-slide {
  position: relative;
  padding-top: 65px;
}
.top-slide .slick-slide a {
  position: relative;
}

.top-slide .slick-dots {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: -20px;
}
.top-slide .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 4px;
}
.top-slide .slick-dots li .tab {
  width: 65px;
  padding: 0;
  background: none;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.15);
  -khtml-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;
  outline: none;
}
.top-slide .slick-dots li:hover .tab, .top-slide .slick-dots li.slick-active .tab {
  border-color: #c71432;
}

.kv {
  position: relative;
}
.kv:before {
  content: "";
  width: 100%;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  background: -moz-linear-gradient(top, white 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(40%, rgba(255, 255, 255, 0.6)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, white 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(top, white 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(top, white 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );
  z-index: 90;
}
.kv .frame-mid {
  position: absolute;
  width: 500px;
  height: 245px;
  border: 5px solid #fff;
  background: rgba(254, 241, 245, 0.53);
  text-align: center;
  padding-top: 55px;
  left: 50%;
  margin-left: -250px;
  bottom: 85px;
}
.kv .frame-mid h2 {
  color: #c2073e;
  font-size: 33px;
  font-weight: bold;
  margin-bottom: 20px;
}
.kv .frame-mid p {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.kv .frame-mid .pane-f {
  font-size: 37px;
  color: #fff;
}

.sec-topics {
  padding-top: 58px;
  margin-bottom: 0;
  padding-bottom: 40px;
  background: #f7f7f7;
}
.sec-topics .main-title .wrap {
  background: #f7f7f7;
}

.sec-service,
.sec-service {
  padding-bottom: 12px;
}

.sec-instagram {
  background: rgba(204, 204, 204, 0.33);
  border-top: 4px solid #333;
  border-bottom: 4px solid #333;
  padding: 50px 0;
}
/*200729_insta*/
.insta-box02 {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
}
.insta-box02 > a > div {
    display: flex;
    flex-wrap: wrap;
}
.insta-box02 > a div > div {
    width: 16.6%;
    padding: 0px;
    box-sizing:border-box;
}

@media screen and (min-width: 769px) {
  .inner-feed ul li:nth-child(5),
  .inner-feed ul li:last-child {
    display: none !important;
  }
}
@media print {
  .inner-feed ul li:nth-child(5),
  .inner-feed ul li:last-child {
    display: none !important;
  }
}
.sec-brand .our-brand {
  margin-bottom: 10px;
}

.sec-net-shop {
  padding-bottom: 37px;
}

.banner {
  position: relative;
}
.banner .side-ct {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  color: #fff;
}
.banner .side-ct > div {
  height: 100%;
  position: relative;
  text-align: right;
}
.banner .side-ct > div:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.banner .side-ct .box-side {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  position: relative;
  z-index: 990;
}
.banner .side-ct .box-side h3 {
  font-size: 33px;
  font-weight: bold;
  margin-bottom: 15px;
}
.banner .side-ct .box-side p {
  font-size: 16px;
  margin-bottom: 20px;
}
.banner .side-ct .parallelogram {
  background: rgba(200, 7, 64, 0.68);
  width: 520px;
  position: absolute;
  top: -20px;
  bottom: -20px;
  right: -60px;
  -webkit-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

.sec-information {
  padding-bottom: 15px;
}
.sec-information .box-news {
  padding-right: 5px;
}
.sec-information .box-social {
  padding-left: 5px;
}
.sec-information .news-inner, .sec-information .fb-pages {
  background: #eee;
  height: 410px;
}
.sec-information .news-inner {
  padding: 24px 10px 10px 15px;
}
.sec-information .fb-pages {
  padding: 27px 32px 0;
}
.sec-information .mCustomScrollbar {
  height: 376px;
}
.sec-information .page-control {
  margin-top: 38px;
}

.box-news dt {
  float: left;
  margin-top: 10px;
  padding-left: 5px;
  text-align: center;
  position: relative;
  width: 94px;
}
.box-news dt .cate {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #fff;
  line-height: 1;
  padding: 6px 5px;
  font-weight: bold;
  border-radius: 3px;
  position: absolute;
  right: 0px;
}
.box-news dt .cate.shop {
  background: #d90000;
}
.box-news dt .cate.train {
  background: #003366;
}
.box-news dd {
  display: block;
  padding: 10px 10px 10px 110px;
  border-bottom: 1px dotted #333;
}

.mCustomScrollbar {
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
}
.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
  -ms-touch-action: auto;
  touch-action: auto;
}

.mCustomScrollBox {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
  padding-left: 30px;
  padding-right: 30px;
}

.mCSB_container {
  overflow: hidden;
  width: auto;
  height: auto;
}

.mCSB_inside > .mCSB_container {
  margin-right: 20px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
}

.mCSB_scrollTools {
  /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
  position: absolute;
  width: 10px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
  right: -26px;
}

/* scrollbar position: outside */
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  /* RTL direction/left-side scrollbar */
  right: auto;
  left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px;
}

/* RTL direction/left-side scrollbar (scrollbar position: outside) */
.mCSB_scrollTools .mCSB_draggerContainer {
  /* contains the draggable element and dragger rail markup */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 10px;
  height: 100%;
  margin: 0 auto;
}

.mCSB_scrollTools .mCSB_dragger {
  /* the draggable element */
  cursor: pointer;
  width: 100%;
  height: 30px;
  /* minimum dragger height */
  z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  /* the dragger element */
  position: relative;
  width: 10px;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px;
  /* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px;
  /* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
  bottom: 0;
}

.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  -moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s,  margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,  margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  -moz-transition: width .2s ease-out .2s, height .2s ease-out .2s,  margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,  margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  -o-transition: width .2s ease-out .2s, height .2s ease-out .2s,  margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,  margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: width .2s ease-out .2s, height .2s ease-out .2s,  margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,  margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
}

/* default theme ("light") */
.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)";
}

.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #dcdcdc;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #999;
}

@media only screen and (max-width: 768px) {
  .pt-sp0 {
    padding-top: 0 !important;
  }

    .top-slide  {
        padding-top: 0px;
    }

  .kv .frame-mid {
    width: 66.667%;
    height: auto;
    padding-top: 4%;
    margin-left: -33.333%;
    border-width: 4px;
    bottom: 25%;
    padding: 9% 2% 5%;
  }
  .kv .frame-mid h2 {
    font-size: 1.553em;
  }
  .kv .frame-mid p {
    font-size: 0.75em;
  }
  .kv .frame-mid .pane-f {
    font-size: 1.541em;
  }
  .kv .top-slide .slick-dots {
    bottom: 5%;
  }
  .kv .top-slide .slick-dots li {
    margin: 0 0.4em;
  }
  .kv .top-slide .slick-dots li .tab {
    width: 10px;
    height: 10px;
    border: 0;
    box-shadow: none;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
  }
  .kv .top-slide .slick-dots li .tab img {
    display: none;
    visibility: hidden;
  }
  .kv .top-slide .slick-dots li.slick-active .tab {
    background-color: #333;
  }

  .sec-topics {
    padding-top: 3.5%;
  }
  .sec-topics .post-item {
    margin-bottom: 1em;
  }
  .sec-topics .btn-viewmore {
    width: 46.67%;
    background-position: 20% center;
    -webkit-background-size: auto 36%;
    background-size: auto 36%;
  }

  .sec-instagram {
    padding: 5.5% 0;
    border-bottom-width: 3px;
    border-top-width: 3px;
  }
  .insta-box02 > a > div > div {
      box-sizing: border-box;
      width: 50%!important;
      padding: 0px!important;    /* 横幅を割合で指定 */
  }
.insta_img {
  height: 50%!important;
}
  .sec-brand {
    margin-bottom: 5%;
  }
  .sec-brand .main-title {
    margin-bottom: 1.25em;
  }
  .sec-brand .row {
    margin: 0;
    padding: 0 6.5%;
  }
  .sec-brand .row div[class*="md-col-"] {
    padding: 0;
    margin-bottom: 0.8em;
  }
  .sec-brand .row .md-col-2 {
    float: left;
    width: 48.333%;
    margin-right: 3.334%;
  }
  .sec-brand .row .md-col-2:nth-child(2n) {
    margin-right: 0;
  }
  .sec-brand .row .md-col-2 a {
    display: block;
  }
  .sec-brand .row .md-col-2 a img {
    width: 100%;
  }

  .frame-link,
  .sec-information .page-control {
    padding: 0 6.5%;
  }
  .frame-link .box,
  .sec-information .page-control .box {
    margin-bottom: 0.8em;
    text-align: center;
  }

  .sec-ner-shop {
    padding-bottom: 1%;
  }

  .banner .side-ct .box-side h3 {
    font-size: 1.454em;
    margin-bottom: 0.3em;
  }
  .banner .side-ct .box-side p {
    font-size: 0.75em;
    margin-bottom: 1em;
  }
  .banner .side-ct .parallelogram {
    width: 65%;
    top: -1em;
    bottom: -1em;
    right: 0;
  }
  .banner .side-ct .permalink {
    padding: 0.3em 2em;
    width: auto;
  }

  .sec-information {
    padding-bottom: 4%;
    margin-bottom: 0;
  }
  .sec-information .news-inner {
    padding: 4% 2% 2% 3%;
  }
  .sec-information .fb-page, .sec-information .news-inner {
    height: auto;
  }
  .sec-information .box-news {
    padding-right: 0;
  }
  .sec-information .box-news dt {
    float: none;
    display: block;
    margin: 0 0 0.4em;
    text-align: left;
    padding: 3% 0 0;
    width: auto;
  }
  .sec-information .box-news dt .cate {
    display: inline-block;
    font-size: 0.917em;
    padding: 0.4em 2em;
    width: auto;
    position: static;
  }
  .sec-information .box-news dd {
    padding: 0 0 2%;
  }
  .sec-information .mCustomScrollbar {
    height: 20em;
  }
  .sec-information .box-social {
    padding-left: 0;
    margin-top: 6%;
  }
  .sec-information .page-control {
    margin-top: 6%;
  }
}
/**
 * PAGE:
 * MIZUKAZE
 */
.sec-mizukaze {
  margin-bottom: 0;
  padding-bottom: 120px;
}
.sec-mizukaze .main-title .wrap {
  background: #f7f7f7;
}

.business-feature .main-title .wrap,
.sec-mizakaze .main-title .wrap {
  background: #f7f7f7;
}

.sec-mizukaze .wallpaper {
  background: url(../img/business/banner_mizukaze.jpg) no-repeat 0 0;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 35px 0;
}
.sec-mizukaze .wallpaper .box-about {
  width: 590px;
  margin: 0 auto;
  background: rgba(0, 64, 40, 0.76);
  padding: 10px;
}
.sec-mizukaze .wallpaper .box-about .about-mizukaze {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 40px 60px;
  line-height: 1.7;
}
.sec-mizukaze .wallpaper .box-about .about-mizukaze h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin: 28px 0 15px;
}
.sec-mizukaze .wallpaper .box-about .about-mizukaze p {
  text-align: left;
}

.nav-page {
  margin-top: 35px;
}

.history {
  height: 170px;
  margin: 65px 0 38px;
  background: url(../img/business/bg_history.jpg) no-repeat 0 center;
  -webkit-background-size: cover;
  background-size: cover;
}
.history .img-thumb {
  width: 400px;
  margin-top: 43px;
}
.history .img-thumb, .history .desc {
  text-align: center;
  float: left;
}
.history .desc {
  color: #fff;
  margin-top: 60px;
}
.history .desc p {
  font-size: 18px;
}
.history .desc h3 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 5px;
}

.txt-intro {
  line-height: 1.7;
}

@media only screen and (max-width: 768px) {
  .sec-mizukaze {
    padding: 6% 0;
  }
  .sec-mizukaze .wallpaper {
    background-image: url(../img/business/banner_mizukaze_sp.jpg);
    padding: 6% 4%;
  }
  .sec-mizukaze .wallpaper .box-about {
    width: auto;
  }
  .sec-mizukaze .wallpaper .box-about .about-mizukaze {
    padding: 5% 8%;
  }
  .sec-mizukaze .wallpaper .box-about .about-mizukaze .certif {
    padding: 0 30%;
    margin-bottom: 1.333em;
  }
  .sec-mizukaze .wallpaper .box-about .about-mizukaze h3 {
    font-size: 1.167em;
    margin: 0 0 0.5em;
  }

  .history {
    background-image: url(../img/business/bg_history_sp.jpg);
    height: auto;
    padding: 7.25% 0;
    margin: 9% 0 5%;
  }
  .history > .container {
    display: table;
    width: 100%;
  }
  .history > .container .img-thumb, .history > .container .desc {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
    float: none;
  }
  .history > .container .img-thumb {
    width: 32%;
  }
  .history > .container .desc {
    padding-left: 3%;
  }
  .history > .container .desc p {
    font-size: 1em;
  }
  .history > .container .desc h3 {
    font-size: 1.25em;
    line-height: 1.7;
  }
}
/**
 * PAGE:
 * SHINKANSEN SERVICE
 */
.shikansen-service {
  margin-bottom: 0;
  padding-bottom: 67px;
}
.shikansen-service .main-title .wrap {
  background: #f7f7f7;
}
.shikansen-service .txt-shinkansen {
  text-align: center;
  font-size: 16px;
  line-height: 2em;
}

.block-shikansen {
  margin-top: 42px;
  margin-bottom: 52px;
}
.block-shikansen .child-kansen {
  position: relative;
  margin-bottom: 23px;
}
.block-shikansen .child-kansen .content-kansen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block-shikansen .child-kansen .content-kansen .inner-kansen {
  float: right;
  width: 384px;
  height: 280px;
  background: rgba(255, 255, 255, 0.53);
  padding: 15px 20px;
  margin-top: 15px;
  margin-right: 20px;
}
.block-shikansen .child-kansen.middle .inner-kansen {
  margin-top: 44px;
}

.content-kansen {
  text-align: center;
}
.content-kansen h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 43px;
}
.content-kansen p {
  line-height: 2em;
  margin-bottom: 15px;
  letter-spacing: -0.05em;
}
.content-kansen .img-kan {
  display: block;
  margin-bottom: 10px;
}
.content-kansen .img-kan img {
  max-height: 95px;
}

.child-kansen.middle .content-kansen h3 {
  margin-top: 0;
}

.in-car-service {
  background: #fff;
  padding-top: 25px;
  padding-bottom: 55px;
  margin-top: 20px;
}
.in-car-service .txt-in-car {
  text-align: center;
  line-height: 1.7em;
}
.in-car-service .inner-incar {
  padding: 0 39px 0 43px;
  margin-top: 30px;
}
.in-car-service .type-car {
  margin-top: 42px;
}
.in-car-service .type-car .each-type {
  float: left;
  width: 432px;
  border: 2px solid #000;
  padding: 16px 20px 17px;
}
.in-car-service .type-car .each-type:last-child {
  float: right;
}
.in-car-service .type-car .each-type.fill {
  height: 190px;
  background: #75C09D url(../img/business/bg_incar_fill.png) no-repeat 0 0;
  -webkit-background-size: auto 100%;
  background-size: auto 100%;
  color: #fff;
  border: 0;
}
.in-car-service .type-car .each-type.fill p {
  margin-top: 3px;
}
.in-car-service .type-car .each-type.fill .fz-lg {
  font-size: 16px;
}
.in-car-service .type-car .each-type .img-type-car {
  float: left;
  width: 180px;
}
.in-car-service .type-car .each-type .info-type-car {
  float: right;
  width: 190px;
}
.in-car-service .type-car .each-type .info-type-car h4 {
  font-size: 16px;
  margin-bottom: 3px;
}
.in-car-service .type-car .each-type .info-type-car p {
  line-height: 1.7em;
  display: block;
}
.in-car-service .type-car .each-type .info-type-car p span {
  display: inline-block;
  text-indent: -15px;
}

@media only screen and (max-width: 768px) {
  .shikansen-service {
    padding-bottom: 6%;
    padding-top: 6%;
  }
  .shikansen-service .txt-shinkansen {
    font-size: 1em;
    margin-bottom: 1.5em;
  }

  .block-shikansen {
    margin-top: 6px;
    margin-bottom: 5.325%;
  }
  .block-shikansen .container {
    padding: 0;
  }
  .block-shikansen .child-kansen {
    margin-bottom: 2.7%;
  }
  .block-shikansen .child-kansen .content-kansen {
    padding: 10.63% 6.533333333333333%;
  }
  .block-shikansen .child-kansen .content-kansen .inner-kansen {
    float: right;
    width: 100%;
    height: 100%;
    padding: 6% 7%;
    margin-top: 0;
    margin-right: 0;
  }
  .block-shikansen .child-kansen .content-kansen .permalink {
    width: 57.5%;
  }
  .block-shikansen .child-kansen.middle .inner-kansen {
    margin-top: 44px;
  }
  .block-shikansen .child-kansen.middle .inner-kansen {
    margin-top: 0;
  }

  .content-kansen h3 {
    font-size: 1.25em;
    margin-top: 10%;
    margin-bottom: 4%;
  }
  .content-kansen p {
    font-size: 0.9166666666666667em;
    margin-bottom: 6%;
  }
  .content-kansen .img-kan {
    margin-bottom: 4%;
  }
  .content-kansen .img-kan img {
    max-height: inherit;
    height: 6.245em;
  }

  .main-incar .container {
    padding: 0;
  }

  .in-car-service {
    padding-top: 7%;
    padding-bottom: 2%;
    margin-top: 0;
  }
  .in-car-service .txt-in-car {
    padding: 0% 6.533333333333333%;
    font-size: 0.9166666666666667em;
  }
  .in-car-service .inner-incar {
    padding: 2% 6.533333333333333%;
    margin-top: 3%;
  }
  .in-car-service .type-car {
    margin-top: 6%;
  }
  .in-car-service .type-car .each-type {
    width: 100%;
    padding: 3%;
    margin-bottom: 3%;
  }
  .in-car-service .type-car .each-type .img-type-car {
    width: 47.3%;
  }
  .in-car-service .type-car .each-type .img-type-car img {
    width: 100%;
  }
  .in-car-service .type-car .each-type .info-type-car {
    width: 49%;
  }
  .in-car-service .type-car .each-type .info-type-car h4 {
    font-size: 1em;
    margin-bottom: 4%;
  }
  .in-car-service .type-car .each-type .info-type-car p {
    font-size: 0.9166666666666667em;
  }
  .in-car-service .type-car .each-type .info-type-car p span {
    text-indent: -8%;
  }
}
.page-title.business {
  height: auto;
}
.page-title.business .cover img {
  position: static;
  transform: none;
}

.business-feature {
  padding-bottom: 6px;
}
.business-feature .main-title {
  margin-bottom: 6px;
}
.business-feature.last {
  padding-bottom: 90px;
}

.business-list-item a {
  display: block;
  border: 3px solid #000;
  position: relative;
}
.business-list-item a img {
  display: block;
  width: 100%;
  height: 100%;
}
.business-list-item a .label {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.business-list-item a .label:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.business-list-item a .label p {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  position: relative;
  z-index: 90;
}
.business-list-item a:hover .label {
  display: block;
}

@media only screen and (max-width: 768px) {
  .business-list-item {
    padding: 0 8%;
  }

  .business-feature {
    padding-bottom: 0;
  }
  .business-feature .wrap4-col .box {
    width: 47.36842%;
    margin-right: 5.26316%;
    margin-top: 5.26316%;
  }
  .business-feature .wrap4-col .box:nth-child(2n) {
    margin-right: 0;
  }
}
/**
 * PAGE:
 * CAFE
 */
.sec-cafe {
  margin-bottom: 0;
  padding-bottom: 60px;
}
.sec-cafe .text-intro {
  text-align: center;
  font-size:16px;
  line-height: 2;
  padding: 20px 0 10px;
}

.list-row {
  margin-top: 80px;
}

.cafe-type .location,
.food-type .location {
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  width: 50px;
  height: 50px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  padding-top: 15px;
  position: absolute;
  top: 10px;
  right: 10px;
}

@media screen and (min-width: 769px) {
  .cafe-type {
    height: 460px;
  }
  .cafe-type.drip-x-cafe .thumbnail {
    margin-top: 10px;
  }
  .cafe-type.drip-x-cafe .content-r .logo-item {
    margin-top: 40px;
  }
  .cafe-type.kara-cafe .thumbnail {
    margin-top: 30px;
  }
  .cafe-type.kara-cafe .content-r .logo-item {
    margin-top: 40px;
  }
  .cafe-type.deli-cafe .content-r .logo-item {
    margin: 50px 0;
  }
  .cafe-type.estacion .thumbnail {
    margin-top: 8px;
  }
  .cafe-type.estacion .content-r .logo-item {
    margin: 40px 0 50px;
  }

  .food-type {
    height: 460px;
  }
  .food-type.food1 .thumbnail {
    margin-top: 30px;
  }
  .food-type.food1 .content-r .logo-item {
    margin-top: 40px;
  }
  .food-type.food2 .thumbnail {
    margin-top: 30px;
  }
  .food-type.food2 .content-r .logo-item {
    margin-top: 40px;
  }
  .food-type.food3 .content-r .logo-item {
    margin: 80px 0 50px;
  }
  .food-type.food4 .content-r .logo-item, .food-type.food6 .content-r .logo-item {
    margin: 40px 0;
  }
  .food-type.food5 .content-r .logo-item {
    margin: 50px 0 30px;
  }
}
@media print {
  .cafe-type {
    height: 460px;
  }
  .cafe-type.drip-x-cafe .thumbnail {
    margin-top: 10px;
  }
  .cafe-type.drip-x-cafe .content-r .logo-item {
    margin-top: 40px;
  }
  .cafe-type.kara-cafe .thumbnail {
    margin-top: 30px;
  }
  .cafe-type.kara-cafe .content-r .logo-item {
    margin-top: 40px;
  }
  .cafe-type.deli-cafe .content-r .logo-item {
    margin: 50px 0;
  }
  .cafe-type.estacion .thumbnail {
    margin-top: 8px;
  }
  .cafe-type.estacion .content-r .logo-item {
    margin: 40px 0 50px;
  }

  .food-type {
    height: 460px;
  }
  .food-type.food1 .thumbnail {
    margin-top: 30px;
  }
  .food-type.food1 .content-r .logo-item {
    margin-top: 40px;
  }
  .food-type.food2 .thumbnail {
    margin-top: 30px;
  }
  .food-type.food2 .content-r .logo-item {
    margin-top: 40px;
  }
  .food-type.food3 .content-r .logo-item {
    margin: 80px 0 50px;
  }
  .food-type.food4 .content-r .logo-item, .food-type.food6 .content-r .logo-item {
    margin: 40px 0;
  }
  .food-type.food5 .content-r .logo-item {
    margin: 50px 0 30px;
  }
}
@media only screen and (max-width: 768px) {
  .list-row {
    padding: 0;
    margin-top: 12%;
  }

  .cafe-type {
    padding: 0;
  }
  .cafe-type .location {
    width: 4.2em;
    height: 4.2em;
    padding-top: 1.2em;
    font-size: 1em;
    z-index: 2;
  }
  .cafe-type.drip-x-cafe .content-r .logo-item {
    margin: 4% 0;
  }
  .cafe-type.kara-cafe .content-r .logo-item {
    margin: 6% 0;
  }
  .cafe-type.deli-cafe .thumbnail {
    margin-top: 4%;
  }
  .cafe-type.deli-cafe .content-r .logo-item {
    margin: 7% 0;
  }
  .cafe-type.deli-cafe .content-r .desc {
    margin-bottom: 0;
  }
  .cafe-type.estacion .content-r .logo-item {
    margin: 10% 0 7%;
  }

  .food-type.food1 .content-r .logo-item {
    margin: 4% 0 5%;
    width: 20%;
  }
  .food-type.food2 .thumbnail {
    margin-top: 7%;
  }
  .food-type.food2 .content-r .logo-item {
    margin: 5% 0;
  }
  .food-type.food3 .thumbnail {
    margin-top: 15%;
  }
  .food-type.food3 .content-r .logo-item {
    margin: 5% 0;
  }
  .food-type.food4 .content-r .logo-item, .food-type.food5 .content-r .logo-item, .food-type.food6 .content-r .logo-item {
    margin: 6% 0;
  }
  .food-type.food4 .logo-item {
    width: 26%;
  }
}
/**
 * PAGE:
 * BUSINESS/CAFE/DELICAFE
 */
.about-brand {
  border-bottom: 2px solid #333;
  position: relative;
  padding-bottom: 4px;
  margin-bottom: 40px;
}
.about-brand hr {
  margin: 40px 0 0;
  border: 0;
  border-bottom: 1px solid #333;
}
.about-brand .logo-brand {
  float: left;
  width: 285px;
  text-align: center;
}
.about-brand .info {
  font-size: 16px;
  line-height: 2;
  padding-left: 285px;
}
.about-brand .info .lead {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.85em;
}

.wrapper-tab {
  background: #fff;
}
.wrapper-tab .tab-header {
  background: #f7f7f7;
  border-bottom: 1px solid #333;
  margin-top: 50px;
}
.wrapper-tab .tab-header li {
  display: inline-block;
}
.wrapper-tab .tab-header li a {
  display: block;
  width: 200px;
  height: 40px;
  padding-top: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  border: 2px solid #000;
  text-align: center;
  margin-bottom: -1px;
}
.wrapper-tab .tab-header li a:hover, .wrapper-tab .tab-header li a.active {
  color: #fff;
  background-color: #000;
}

.panel-title {
  text-align: center;
  display: block;
  font-size: 18px;
  font-weight: bold;
  background: #ccc;
  padding: 8px 0;
  margin-bottom: 20px;
}

.blk-title {
  font-size: 20px;
  line-height: 2;
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.tab-content {
  padding-top: 60px;
  position: relative;
  display: none;
}
.tab-content.current {
  display: block !important;
}
.tab-content .txt-intro {
  text-align: center;
  margin-bottom: 30px;
  padding-top: 5px;
}
.tab-content .content-detail {
  width: 670px;
}
.tab-content .content-detail.full {
  width: 100%;
}
.tab-content .category {
  position: absolute;
  right: 0;
  top: 60px;
  width: 260px;
  background: #f9f7f8;
}
.tab-content .category.fixed {
  position: fixed;
  right: 50%;
  top: 87px;
  margin-right: -490px;
}
.tab-content .category h3 {
  width: auto;
  margin: 14px 10px 5px;
  border: 1px solid #333;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 7px 0;
}
.tab-content .category li {
  display: block;
  border-bottom: 1px solid #999;
  padding: 10px 22px;
}
.tab-content .category li a {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: bold;
}
.tab-content .category li a:hover, .tab-content .category li a.current {
  color: #c80740;
}
.tab-content .category li a time {
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 4px;
  color: #000 !important;
}
.tab-content .entry-meta {
  font-size: 12px;
  font-weight: normal;
  margin: -15px 0 20px !important;
  display: block;
}
.tab-content .product {
  margin-bottom: 30px;
}
.tab-content .product .list-product {
  margin-left: -3px;
  margin-right: -3px;
  display: block;
  *zoom: 1;
}
.tab-content .product .list-product:after {
  content: " ";
  display: table;
  clear: both;
}
.tab-content .product .list-product .col {
  float: left;
  padding-left: 3px;
  padding-right: 3px;
}
.tab-content .product .list-product.col-3 .col {
  width: 33.3333%;
}
.tab-content .product .list-product.col-2 .col {
  width: 50%;
}
.tab-content .product p, .tab-content .product ul {
  line-height: 2;
  margin-top: 20px;
}
.tab-content .product .price {
  font-size: 16px;
  margin-top: 15px;
}
.tab-content .detail {
  display: block;
  width: 600px;
  margin: 30px auto 0;
  background: #331506 url(../img/common/arrow_lg.png) no-repeat 93% center;
  color: #fff;
  padding: 20px 0;
  font-size: 18px;
  font-weight: bold;
}
.tab-content .detail .logo, .tab-content .detail p {
  display: inline-block;
  vertical-align: middle;
}
.tab-content .detail .logo {
  width: 190px;
  text-align: center;
}
.tab-content .group-btn-share {
  margin-top: 40px;
}
.tab-content .group-btn-share li {
  margin: 0 1px;
}
.tab-content .pagination {
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {

  .tab-content .group-btn-share li {
      width: 25vw;
  }
  .about-brand {
    margin-bottom: 5.5%;
  }
  .about-brand .logo-brand {
    float: none;
    width: 37%;
    margin: 3% auto 5%;
  }
  .about-brand .logo-brand img {
    width: auto;
  }
  .about-brand .info {
    font-size: 1em;
    padding: 0 4%;
  }

  .gallery-brand .slick-dots {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    margin-bottom: 5%;
  }
  .gallery-brand .slick-dots li {
    display: inline-block;
    margin: 0 0.5em;
  }
  .gallery-brand .slick-dots li button {
    display: inline-block;
    width: 16px;
    height: 16px;
    text-indent: -999px;
    overflow: hidden;
    background: #fff;
    -webkit-border-radius: 8px;
    -khtml-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    padding: 0;
    border: 0;
    outline: none;
    cursor: pointer;
  }
  .gallery-brand .slick-dots .slick-active button {
    background-color: #333;
  }

  .wrapper-tab .tab-header {
    margin-top: 9%;
    overflow-x: auto;
  }
  .wrapper-tab .tab-header .tabs {
    white-space: nowrap;
  }
  .wrapper-tab .tab-header li {
    min-width: 32%;
    margin-right: 1%;
  }
  .wrapper-tab .tab-header li a {
    font-size: 1.083em;
    height: auto;
    padding: 0.365em 0.2em;
    display: block;
    width: 100%;
  }
  .wrapper-tab .tab-content {
    padding: 7% 2.895% 0;
  }
  .wrapper-tab .tab-content.pd0 {
    padding-left: 0;
    padding-right: 0;
  }
  .wrapper-tab .tab-content .content-detail {
    width: auto;
  }
  .wrapper-tab .tab-content .category {
    position: static !important;
    width: auto;
    margin: 12% 0 0 !important;
    padding-top: 5%;
  }
  .wrapper-tab .tab-content .category h3 {
    margin: 0 auto;
    font-size: 1.583em;
    width: 92.35%;
    padding: 0.58em 0;
  }
  .wrapper-tab .tab-content .category li {
    padding: 0;
  }
  .wrapper-tab .tab-content .category li a {
    font-size: 1em;
    padding: 0.95em 1.65em;
  }
  .wrapper-tab .tab-content .category li a time {
    font-size: 0.833em;
  }
  .wrapper-tab .tab-content .product {
    margin-bottom: 5%;
  }
  .wrapper-tab .tab-content .product p, .wrapper-tab .tab-content .product div {
    font-size: 0.917em;
    margin-top: 1em;
  }
  .wrapper-tab .tab-content .detail {
    width: 92.35%;
    margin-top: 6%;
    font-size: 1em;
    padding: 1em 0;
    white-space: nowrap;
    background-position: 96% center;
    background-size: 0.7em auto;
  }
  .wrapper-tab .tab-content .detail .logo {
    width: 17%;
    margin: 0 3% 0 6%;
  }
  .wrapper-tab .tab-content .pagination {
    margin-top: 10%;
  }
  .wrapper-tab .tab-content .entry-meta {
    margin-bottom: 1em !important;
  }

  .panel-title {
    font-size: 1.083em;
    padding: 0.443em 0;
    margin-bottom: 1em;
  }

  .blk-title {
    font-size: 1.167em;
    padding-bottom: 0.5em;
    margin-bottom: 1.333em;
  }
}
@media only screen and (max-width: 390px) {
  .gallery-brand .slick-dots {
    bottom: 0;
  }
  .gallery-brand .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}
/**
 * PAGE
 * BUSINESS/FOOD/EKIBEN
 */
@media screen and (min-width: 769px) {
  .sec-ekiben {
    margin-bottom: 50px;
  }
  .sec-ekiben .about-brand .logo-brand {
    width: 315px;
    margin-top: 40px;
  }
  .sec-ekiben .about-brand .info {
    padding-left: 315px;
  }

  .schedule .schedule-info {
    width: 550px;
    padding: 30px 10px 30px 30px;
    float: left;
  }
  .schedule .thumb {
    width: 280px;
    float: right;
  }
}
@media print {
  .sec-ekiben {
    margin-bottom: 50px;
  }
  .sec-ekiben .about-brand .logo-brand {
    width: 315px;
    margin-top: 40px;
  }
  .sec-ekiben .about-brand .info {
    padding-left: 315px;
  }

  .schedule .schedule-info {
    width: 550px;
    padding: 30px 10px 30px 30px;
    float: left;
  }
  .schedule .thumb {
    width: 280px;
    float: right;
  }
}
.sec-ekiben .schedule {
  background: #fff;
  border: 2px solid #BE073D;
  margin-top: 40px;
  padding: 35px 65px;
}
.sec-ekiben .schedule .schedule-info strong {
  display: block;
  color: #BE063D;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 20px;
}
.sec-ekiben .txt-intro {
  text-align: center;
  margin-bottom: 30px;
  padding-top: 10px;
}

.recommend {
  padding: 50px 0 20px;
  background: url(../img/business/bg_pattern.png) repeat 0 0;
}

.recommend-list {
  margin-bottom: 30px;
}
.recommend-list li {
  float: left;
  width: 430px;
  margin-left: 42px;
}
.recommend-list li h3 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 15px 0 10px;
}
.recommend-list li h3 + p {
  text-align: center;
  margin-bottom: 5px;
}
.recommend-list li p {
  line-height: 1.7;
}

@media only screen and (max-width: 768px) {
  .sec-ekiben .about-brand .logo-brand {
    width: 63%;
    margin: 4% auto 7%;
  }
  .sec-ekiben .schedule {
    padding: 5.797%;
  }
  .sec-ekiben .schedule .schedule-info {
    font-size: 0.917em;
    padding: 6% 7%;
    margin: 5% 0;
  }
  .sec-ekiben .schedule .schedule-info strong {
    font-size: 1.181em;
    margin: 0.4em 0 0.6em;
  }
  .sec-ekiben .schedule .thumb {
    padding: 0 7%;
    text-align: center;
  }
  .sec-ekiben .txt-intro {
    margin-bottom: 1.5em;
    padding-top: 0;
  }

  .recommend {
    padding: 8% 8% 0;
    margin: 0 -4.5%;
  }

  .recommend-list {
    margin-bottom: 2%;
  }
  .recommend-list li {
    float: none !important;
    width: auto !important;
    margin: 0 0 6%;
  }
  .recommend-list li .img img {
    width: 100%;
  }
  .recommend-list li h3 {
    font-size: 1em !important;
    margin: 1em 0 0.5em;
  }
  .recommend-list li p {
    font-size: 0.917em;
  }
}
/**
 * PAGE:
 * BUSINESS-WAGON
 */
.running-jp {
  padding: 50px 0 20px;
  background: url(../img/business/bg_caro.jpg) repeat 0 0;
}
.running-jp .datetime {
  margin: 25px 0 40px;
}
.running-jp .datetime p {
  background: #d93915;
  color: #fff;
  width: 600px;
  display: inline-block;
  font-weight: bold;
  margin-top: 15px;
  padding: 5px 0;
}

.project-list li .content-pj .txt {
  text-align: left;
  margin-bottom: 20px;
  padding-top: 5px;
}
.project-list .img {
  border: 2px solid #666;
}

.limited-time {
  background: #c1d969;
  padding: 40px 0;
  margin-bottom: 50px;
}
.limited-time .recommend-list {
  margin-bottom: 50px;
}
.limited-time .recommend-list:last-of-type {
  margin-bottom: 0;
}
.limited-time .recommend-list li {
  width: 290px;
  margin-left: 30px;
}
.limited-time .recommend-list li h3 {
  font-size: 14px;
}
.limited-time .recommend-list li .content-pj .obj {
  height: 170px;
  margin-bottom: 10px;
}
.limited-time .recommend-list li .content-pj h3 + p {
  text-align: left;
}
.limited-time > p {
  margin-bottom: 30px;
}
.tab-content .limited-time .recommend-list li .content-pj .obj {
  height: auto
}
.limited-time.bg-pattern {
  background: url("../img/business/bg_caro.jpg") repeat scroll 0 0
}
.limited-logo {
  text-align: center;
  margin-bottom: 30px;
}
.limited-logo img {
  display: block;
  max-width: 100%;
  margin: 0 auto
}

.usage {
  margin-bottom: 20px;
}
.usage .heading {
  padding-bottom: 10px;
}
.usage .product-price li {
  float: left;
  width: 151px;
  margin-right: 22px;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.usage .product-price li:nth-child(4n) {
  margin-right: 0;
}
.usage .product-price li p {
  margin-top: 5px;
}

@media only screen and (max-width: 768px) {
  .sec-wagon .about-brand .logo-brand {
    width: 72.5%;
  }
  .sec-wagon .in-car-service .cm-ttl {
    margin-bottom: 5%;
  }
  .sec-wagon .in-car-service .type-car .each-type.fill {
    height: auto;
    padding: 5% 5% 18%;
  }
  .sec-wagon .in-car-service .type-car .each-type.fill > img {
    width: 52.85%;
    margin-bottom: 0.2em;
  }
  .sec-wagon .in-car-service .type-car .each-type.fill p {
    font-size: 0.917em;
  }
  .sec-wagon .in-car-service .type-car .each-type.fill p.fz-lg {
    font-size: 1em;
  }

  .running-jp {
    padding: 6% 0;
    margin-right: 5%;
  }
  .running-jp .txt-intro {
    font-size: 0.917em;
    padding-top: 0.5em;
  }
  .running-jp .datetime {
    margin: 1em 0 1.75em;
    padding: 0 2.9%;
  }
  .running-jp .datetime img {
    width: auto;
  }
  .running-jp .datetime p {
    display: block;
    width: auto;
    margin-top: 1em;
    padding: 0.45em 0;
    font-size: 0.917em;
  }
  .running-jp .recommend-list {
    margin-bottom: 5%;
    padding: 0 2.9%;
  }
  .running-jp .recommend-list li .txt {
    display: none;
  }
  .running-jp .recommend-list li .permalink {
    width: 52.635%;
    margin-top: 1em;
    padding: 0.525em 1em;
  }

  .limited-time {
    padding: 5%;
    margin-bottom: 6%;
  }
  .limited-time .recommend-list {
    margin-bottom: 0;
  }
  .limited-time .recommend-list li {
    margin-left: 0;
  }
  .limited-time .recommend-list li .content-pj .obj {
    height: auto;
  }
  .limited-time .recommend-list li .content-pj .obj p {
    display: none;
  }
  .limited-time .recommend-list li .content-pj .permalink {
    padding: 0.525em 1em;
    min-width: 55.5%;
    margin-top: 0.5em;
  }

  .usage {
    margin-bottom: 5%;
  }
  .usage .product-price li {
    width: 48%;
    margin-right: 4%;
    margin-top: 3%;
  }
  .usage .product-price li:nth-child(2n) {
    margin-right: 0;
  }
  .usage .product-price li img {
    width: 100%;
  }
  .usage .product-price li p {
    font-size: 0.917em;
    margin-top: 0.5em;
  }

  .tab-content .txt-intro {
    font-size: 0.917em;
    margin-bottom: 1em;
  }
}
/**
 * PAGE:
 * BUSINESS-Ekiben yoyaku
 */
.box-ekiben {
  background: #fff;
  margin-bottom: 40px;
}
.box-ekiben .cm-ttl {
  margin-bottom: 60px;
}
.box-ekiben .inner-ct {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 0;
}
.box-ekiben .terms {
  max-width: 700px;
  margin: 0 auto;
  border-spacing: 0 3px;
  border-collapse: separate;
}
.box-ekiben .terms th, .box-ekiben .terms td {
  vertical-align: middle;
  padding: 17px 30px;
}
.box-ekiben .terms th {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  background: #c71331;
  color: #fff;
  width: 200px;
}
.box-ekiben .terms td {
  background: #f9f7f8;
  padding-right: 10px;
  line-height: 1.7;
}
.box-ekiben .terms td .lead {
  font-weight: bold;
  color: #c00;
}

.reservation-method {
  margin-bottom: 20px;
}
.reservation-method h4 {
  background: #69c;
  color: #fff;
  padding: 5px 20px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.reservation-method h4 .ico {
  display: inline-block;
  width: 30px;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (min-width: 769px) {
  .reservation-method .method-thumb {
    float: left;
    width: 260px;
  }
  .reservation-method .detail {
    float: right;
    width: 435px;
    font-size: 16px;
  }
}
@media print {
  .reservation-method .method-thumb {
    float: left;
    width: 260px;
  }
  .reservation-method .detail {
    float: right;
    width: 435px;
    font-size: 16px;
  }
}
.reservation-method .detail p {
  line-height: 1.7;
}
.reservation-method .step-phone {
  background: #ececec;
  padding: 10px 20px;
  margin-top: 10px;
}
.reservation-method .step-phone li {
  display: block;
  margin-bottom: 8px;
}
.reservation-method .step-phone li:last-child {
  margin-bottom: 0;
}
.reservation-method .step-phone .circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  background: #69c;
  color: #fff;
  vertical-align: middle;
  margin-right: 15px;
  text-align: center;
  line-height: 20px;
}

.box-ekiben .contact-tel {
  max-width: 660px;
  margin: 0 auto;
  padding: 15px 0 10px;
  border: 3px solid #000;
}
.box-ekiben .contact-tel .logo {
  width: 190px;
  text-align: center;
  float: left;
}
.box-ekiben .contact-tel .ct {
  font-size: 16px;
  float: left;
  width: 464px;
}
.box-ekiben .contact-tel .ct p {
  margin-bottom: 4px;
  line-height: 1.7;
}
/*　駅弁予約レイアウト変更 180522 */
.box-ekiben .contact-tel .ct .lbl-tel {
  font-size: larger;
  font-weight: bold;
}
/*　駅弁予約レイアウト変更 180522 */
.box-ekiben .contact-tel .ct a {
  display: inline-block;
  font-size: larger;
  font-weight: bold;
  color: #c61332;
}
.box-ekiben .contact-tel + p {
  margin: 20px 0 0 40px;
}
.box-ekiben .box-map {
  margin-top: 40px;
}
.box-ekiben .map-detail {
  margin: 40px -25px 0;
  display: block;
  *zoom: 1;
}
.box-ekiben .map-detail:after {
  content: " ";
  display: table;
  clear: both;
}
.box-ekiben .map-detail .permalink {
  min-width: 0;
  width: 187.5px;
  margin: 0 10px 10px 0;
  float: left;
  background-color: #525252;
  border: 1px solid #525252;
  padding: 0 26px;
}
.box-ekiben .map-detail .permalink > span {
  display: block;
}
.box-ekiben .map-detail .permalink:hover {
  background-color: #fff;
}

.sec-reservation {
  padding-bottom: 7%;
}

.shin-kobe {
  background: #fff;
  padding-top: 10px;
}
.shin-kobe .panel-title, .shin-kobe .list-indent {
  width: auto;
  margin-left: 42px;
  margin-right: 42px;
}
.shin-kobe .list-indent {
  margin-bottom: 15px;
}
.shin-kobe .text-warning {
  font-weight: bold;
}
.shin-kobe .recommend-list {
  padding-bottom: 40px;
}
.shin-kobe .recommend-list li {
  margin-top: 15px;
}
.shin-kobe .recommend-list li h3 {
  margin-bottom: 5px;
}

.detail-wagon a {
  display: inline-block;
  width: 600px;
  height: 120px;
  padding: 0 35px;
  margin-top: 18px;
  background: url(../img/business/bg_wagon_link.png) no-repeat 0 0;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  vertical-align: middle;
}
.detail-wagon a span {
  display: block;
  background: url(../img/common/arrow_lg.png) no-repeat right center;
  margin-top: 44px;
}
/*　駅弁予約レイアウト変更 180522　*/
.box-ekiben p.txt-intro.contact-net {
  margin: 0 40px 20px 40px;
}
@media only screen and (max-width: 768px) {
  .sec-reservation {
    padding-top: 6%;
  }
  .sec-reservation .about-brand .logo-brand {
    width: 73%;
  }
  .sec-reservation .about-brand .info .lead {
    font-size: 1.167em;
    margin-bottom: 0.5em;
    line-height: 1.3;
  }

  .ekiben-block {
    padding: 0;
  }
  .ekiben-block .box-ekiben {
    margin-bottom: 5%;
  }
  .ekiben-block .box-ekiben .cm-ttl {
    margin-bottom: 2.25em;
  }
  .ekiben-block .box-ekiben .inner-ct {
    padding: 6% 4%;
    max-width: none;
  }
  .ekiben-block .box-ekiben .terms th, .ekiben-block .box-ekiben .terms td {
    padding: 1em 0.2em 1em 1em;
  }
  .ekiben-block .box-ekiben .terms th {
    width: 29.8%;
    font-size: 1.042em;
  }
  .ekiben-block .box-ekiben .terms td {
    font-size: 0.917em;
  }
  .ekiben-block .box-ekiben .reservation-method {
    padding: 0 2.89%;
  }
  .ekiben-block .box-ekiben .contact-tel,
  .ekiben-block .box-ekiben .contact-tel + .txt-intro {
    margin-left: 2.89%;
    margin-right: 2.89%;
  }
  .ekiben-block .box-ekiben .reservation-method h4 {
    padding: 0.175em 0.8em;
    font-size: 1.083em;
    margin-bottom: 0.8em;
  }
  .ekiben-block .box-ekiben .reservation-method h4 .ico {
    width: 1.55em;
  }
  .ekiben-block .box-ekiben .reservation-method .method-thumb {
    display: none;
  }
  .ekiben-block .box-ekiben .reservation-method .detail .step-phone {
    padding: 5% 6%;
    margin: 4% 3.8% 0;
  }
  .ekiben-block .box-ekiben .reservation-method .detail .step-phone li {
    margin-bottom: 0.6em;
  }
  .ekiben-block .box-ekiben .reservation-method .detail .step-phone .circle {
    width: 1.25em;
    height: 1.25em;
    line-height: 1.333;
    margin-right: 0.8em;
  }
  .ekiben-block .box-ekiben .contact-tel {
    max-width: none;
    padding: 6% 0;
    border-width: 0.167em;
  }
  .ekiben-block .box-ekiben .contact-tel .logo {
    width: 29%;
    padding: 0 7%;
  }
  .ekiben-block .box-ekiben .contact-tel .ct {
    float: none;
    width: auto;
    font-size: 1em;
  }
  .ekiben-block .box-ekiben .contact-tel .ct .lbl-tel {
    font-size: 1.167em;
  }
  .ekiben-block .box-ekiben .contact-tel .ct a {
    font-size: 1.875em;
    line-height: 1.5;
  }
  .ekiben-block .box-ekiben .contact-tel .ct small {
    display: block;
  }
  .ekiben-block .box-ekiben .contact-tel .ct .txt-indent {
    padding: 3% 6% 0;
    text-indent: 0;
  }
  .ekiben-block .box-ekiben .contact-tel + .txt-intro {
    margin-top: 4%;
    margin-bottom: 5%;
  }
  .ekiben-block .box-ekiben .box-map {
    margin-top: 5%;
  }
  .ekiben-block .box-ekiben .map-detail {
    margin: 5% 0 0;
    padding: 0 3%;
  }
  .ekiben-block .box-ekiben .map-detail .permalink {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
    padding: 0.375em 1em;
  }
  .ekiben-block .box-ekiben .map-detail .permalink:nth-child(2n) {
    margin-right: 0;
  }

  .shin-kobe {
    padding: 0 4%;
  }
  .shin-kobe .panel-title, .shin-kobe .list-indent {
    margin-left: 0;
    margin-right: 0;
  }
  .shin-kobe .list-indent {
    margin-bottom: 1em;
  }
  .shin-kobe .recommend-list {
    padding: 2% 4% 0;
  }
  .shin-kobe .recommend-list li {
    margin-top: 0;
  }

  .detail-wagon {
    padding: 0 4%;
  }
  .detail-wagon a {
    display: block;
    width: 100%;
    height: auto;
    padding: 7% 3%;
    margin-top: 0.5em;
    background: url(../img/business/bg_wagon_link.png) no-repeat 0 0;
    -webkit-background-size: cover;
    background-size: cover;
    font-size: 1.167em;
  }
  .detail-wagon a span {
    margin-top: 0;
    background-size: 4% auto;
  }
}
.page-name .cm-ttl.news-name {
  margin-bottom: 72px;
}

.sec-news {
  background-color: #ffffff;
  margin-bottom: 150px;
  border-top: 4px solid #000000;
}

.new-item .blk-title {
  font-size: 20px;
  padding-bottom: 0;
  margin-bottom: 12px;
  line-height: 1.8;
}

.tab-content .new-item {
  margin-bottom: 23px;
}

.tab-content .new-item .entry-meta {
  font-size: 12px !important;
  margin-top: 0 !important;
  margin-bottom: 0;
}

.tab-content .new-item .img-featured {
  float: left;
  width: 286px;
}

.tab-content .new-item .post-excerpt {
  padding-left: 322px;
  margin-top: -7px;
}

.tab-content .new-item .post-excerpt p {
  line-height: 2;
}

.tab-content .new-item .post-excerpt .list-tags {
  margin-top: 15px;
}

.tab-content .new-item .post-excerpt .post-tag {
  display: inline-block;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  color: #FFF;
  font-size: 11px;
  font-weight: bold;
  padding: 0 5px;
  line-height: 23px;
}

.new-item .post-content {
  padding-top: 10px;
}

.tab-content .new-item .post-excerpt .read-more .link {
  color: #A51033;
}

.pagination-news {
  text-align: center;
  padding: 25px 0 0 90px;
}

.pagination-news ul {
  display: inline-block;
}

.pagination-news ul > li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
}

.pagination-news ul > li a {
  color: #000000;
  display: block;
  line-height: 24px;
  min-width: 23px;
  background-color: #F9F7F8;
}

.pagination-news ul > li span {
  color: #FFFFFF;
  background-color: #000000;
  display: block;
  line-height: 24px;
  min-width: 23px;
}

.pagination-news .to-last-page {
  float: right;
  display: block;
  text-decoration: underline;
}

.pagination-news .to-last-page span {
  background-image: url(../img/common/arrow_double_right_black.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 18px;
}

/*sidebar*/
.sec-news .sidebar {
  float: right;
  width: 260px;
}
.sec-news .sidebar .content-bar {
  padding: 15px 20px 21px;
}

@media (min-width: 751px) {
  .sec-news .sidebar .content-bar {
    display: block !important;
  }
}
.sidebar aside {
  background: #f9f7f8;
  padding: 12px 0 0;
  margin-bottom: 20px;
}

.sidebar h3 {
  width: auto;
  margin: 0 10px 5px;
  border: 1px solid #333;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 6.5px 0;
}

.sec-news .sidebar aside .list-tags li {
  padding: 0;
  margin: 7px 0 0 0;
}
.sec-news .sidebar aside .list-tags li:first-child {
  margin-top: 0;
}

.sec-news .sidebar aside .list-tags li a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  line-height: 28px;
  padding: 0 6px;
}
.sec-news .sidebar aside .list-tags li a.brand-22{
    display: none;
}
.list-tags a.color-brand-22 {
    display: none !important;
}
.list-tags a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  line-height: 28px;
  padding: 0 6px;
}
.list-tags a.black {
  background-color: #000000;
}
.list-tags a.brown {
  background-color: #A54634;
}
.list-tags a.orange {
  background-color: #E95413;
}
.list-tags a.yellow {
  background-color: #A47E38;
}
.list-tags a.red {
  background-color: #B54128;
}
.list-tags a.cyan {
  background-color: #0099CC;
}
.list-tags a.blue {
  background-color: #006699;
}
.list-tags a.green {
  background-color: #336633;
}
.list-tags a.gray {
  background-color: #91888b;
}

.sec-news .tab-content .content-detail {
  float: left;
}

.widget-cat-year ul li a {
  background-image: url(../img/common/arrow_double_right_black.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 18px;
  line-height: 2;
}

.widget-cat-year .content-bar {
  margin-top: 5px;
}
.post-detail .list-tags {
  margin: -5px 0 40px;
}
.post-detail .list-tags .post-tag {
  margin-right: 10px;
}
.post-detail .img-featured {
  margin-bottom: 35px;
}
.post-detail .post-excerpt p {
  line-height: 2;
  margin-bottom: 1em;
}
.post-detail .post-excerpt p:last-of-type {
  margin-bottom: 0;
}
.post-detail .document {
  background: #f5f1f2;
  padding: 24px 20px;
  margin-top: 35px;
}
.post-detail .document h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.post-detail .document a {
  display: inline-block;
  text-decoration: underline;
  background: url(../img/common/ico_pdf.png) no-repeat right center;
  -webkit-background-size: 20px auto;
  background-size: 20px auto;
  padding-right: 30px;
}
.post-detail .document a:hover {
  text-decoration: none;
}
@media (max-width: 750px) {
  .page-name .cm-ttl.news-name {
    margin: 0.82em 0 2.4em;
  }

  .sec-news {
    background-color: #ffffff;
    margin-bottom: 0;
    padding: 0 2.898550724637681%;
    border-top: 0.1666666666666667em solid #000000;
  }

  .sec-news .tab-content {
    padding-top: 6.769230769230769%;
  }

  .new-item .blk-title {
    font-size: 1.166666666666667em;
    line-height: 1.7em;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .tab-content .new-item {
    margin-bottom: 4.94%;
  }

  .tab-content .new-item .entry-meta {
    font-size: 0.75em !important;
    margin-top: 0.94em !important;
  }

  .tab-content .new-item .img-featured {
    width: 44%;
  }

  .tab-content .new-item .post-excerpt {
    padding-left: 48.5%;
    margin-top: -0.2916666666666667em;
  }

  .tab-content .new-item .post-excerpt p {
    font-size: 0.9166666666666667em;
    text-align: justify;
    letter-spacing: -0.01em;
  }

  .tab-content .new-item .post-excerpt .list-tags {
    margin-top: 0.5833333333333333em;
  }

  .tab-content .new-item .post-excerpt .post-tag {
    border-radius: 0.2em;
    -moz-border-radius: 0.2em;
    -webkit-border-radius: 0.2em;
    font-size: 0.8333333333333333em;
    padding: 0 0.5em;
    line-height: 1.75em;
  }

  .new-item .post-content {
    padding-top: 2.153846153846154%;
  }

  .pagination-news {
    padding: 0 0 0 5.291666666666667em;
  }

  .pagination-news ul > li {
    margin: 0 0.0833333333333333em;
  }

  .pagination-news ul > li a {
    line-height: 2.083333333333333em;
    min-width: 2em;
    padding: 0 0.2em;
  }

  .pagination-news ul > li span {
    line-height: 2.083333333333333em;
    min-width: 2em;
    padding: 0 0.2em;
  }

  .pagination-news .to-last-page {
    line-height: 2.083333333333333em;
  }

  .pagination-news .to-last-page span {
    -webkit-background-size: 0.6071428571428571em auto;
    background-size: 0.6071428571428571em auto;
    padding-left: 1.166666666666667em;
  }

  /*sidebar*/
  .sec-news .sidebar {
    float: none;
    width: auto;
    background-color: #CCCCCC;
    margin: 9.230769230769231% -8% 0;
  }
  .sec-news .sidebar .content-bar {
    padding: 0 0 0;
    display: none;
  }
  .sec-news .sidebar aside {
    background: #CCCCCC;
    padding: 0 0 0;
    margin-bottom: 0;
  }
  .sec-news .sidebar h3 {
    width: auto;
    background-color: #F9F7F8;
    margin: 0 0 0;
    border: 0.0526315789473684em solid #333;
    border-left: none;
    border-right: none;
    font-size: 1.583333333333333em;
    padding: 0.7105263157894737em;
    background-image: url(../img/news/arrow_down.png);
    -webkit-background-size: 0.4210526315789474em auto;
    background-size: 0.4210526315789474em auto;
    background-position: 88.93333333333333% center;
    background-repeat: no-repeat;
  }
  .sec-news .sidebar h3.active {
    background-image: url(../img/news/arrow-up.png);
  }
  .sec-news .sidebar aside .list-tags li {
    padding: 0;
    margin: 0 0 0 0;
  }
  .sec-news .sidebar aside .list-tags li:first-child {
    margin-top: 0;
  }
  .sec-news .sidebar aside .list-tags li:first-child a {
    border-top: 0;
  }
  .sec-news .sidebar aside .list-tags li a {
    font-size: 1.25em;
    border-radius: 0.1666666666666667em;
    -webkit-border-radius: 0.1666666666666667em;
    -moz-border-radius: 0.1666666666666667em;
    line-height: 2;
    padding: 0 0;
    text-align: center;
    color: #000000;
    display: block;
    border-top: 0.0833333333333333em dotted #000000;
    padding: 0.45em 0;
    background-color: transparent !important;
  }

  .sec-news .tab-content .content-detail {
    float: none;
    width: auto;
  }

  .widget-cat-year ul li {
    text-align: center;
  }

  .widget-cat-year ul li a {
    background-image: none;
    padding: 0.45em 0;
    line-height: 2;
    display: block;
  }

  .widget-cat-year ul li a span {
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-background-size: 0.6071428571428571em auto;
    background-size: 0.6071428571428571em auto;
    padding-left: 1.166666666666667em;
    line-height: 2;
    display: inline-block;
    font-size: 1em;
  }

  .widget-cat-year .content-bar {
    margin-top: 5px;
  }

  .sidebar .widget-tags,
  .sidebar .widget-company {
    margin-top: -0.0833333333333333em;
    margin-bottom: -0.0833333333333333em;
    position: relative;
    z-index: 99;
  }

  .tab-content .pagination-news {
    margin-top: 6.461538461538462%;
  }
}


.post-pagination {
    margin-top: 10%;
  }
  .post-pagination {
  text-align: center;
  margin-top: 40px;
  position: relative;
}
.post-pagination .news {
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #333;
  padding: 7px 20px;
  -webkit-transition: background 0.3s linear;
  transition: background 0.3s linear;
  display: inline-block;
}

@media only screen and (max-width: 768px) {
    .post-pagination .news {
        font-size: 1em;
        padding: 0.5em 1em;
    }
}

.post-pagination .news:hover {
  color: #fff;
  background-color: #333;
}
.post-pagination .page {
  position: absolute;
  text-decoration: underline;
  top: 2%;
  background-repeat: no-repeat;
}
.post-pagination .page:hover {
  text-decoration: none;
}
.post-pagination .page-prev {
  left: 0;
  background-image: url(../img/common/arrow_double_left_black.png);
  background-position: 0 center;
  padding-left: 18px;
}
.post-pagination .page-next {
  right: 0;
  background-image: url(../img/common/arrow_double_right_black.png);
  background-position: right center;
  padding-right: 18px;
}


/*===== FANCYBOX =====*/
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999999;
}

.fancybox-skin {
  position: relative;
}

.fancybox-opened {
  z-index: 9999999;
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  margin: 0;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

/* #fancybox-loading, .fancybox-prev span, .fancybox-next span {
  background-image: url('../img/common/fancybox_sprite.png');
}
 */
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url('../img/common/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 10000;
  background: url("../img/common/fcb_close.png") center center no-repeat;
  background-size: 100% 100%;
}

.fancybox-nav {

}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 35px;
  height: 51px;
  margin-top: -25px;
  cursor: pointer;
  z-index: 8040;
  background-position: center center;
  background-repeat: no-repeat;
}

.fancybox-prev span {
  left: -20px;
  background-image: url(../img/common/fcb_prev.png);
}

.fancybox-next span {
  right: -20px;
  background-image: url(../img/common/fcb_next.png);
}
.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 999998;
  background: rgba(0,0,0,0.8);

}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
  visibility: hidden;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent; /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, .8);
}

/*190924_瑞風リクルート*/

.wrapper-tab02 {
  background: #fff;
}
.wrapper-tab02 .tab-header02 {
  background: #f7f7f7;
  border-bottom: 1px solid #333;
  margin-top: 50px;
}
.wrapper-tab02 .tab-header02 li {
  display: inline-block;
}
.wrapper-tab02 .tab-header02 li a {
  display: block;
  width: 200px;
  height: 40px;
  padding-top: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  border: 2px solid #000;
  text-align: center;
  margin-bottom: -1px;
}
.wrapper-tab02 .tab-header02 li a:hover, .wrapper-tab02 .tab-header02 li a.active {
  color: #fff;
  background-color: #000;
}

  .wrapper-tab02 .tab-header02 {
    margin-top: 9%;
    overflow-x: auto;
  }
  .wrapper-tab02 .tab-header02 .link02 {
    white-space: nowrap;
        display: -webkit-flex;
        justify-content: center;
        align-items: center;
    margin-bottom: 10%;
  }
  .wrapper-tab02 .tab-header02 li {
    width: 215px;
    margin-right: 1%;
  }
  .wrapper-tab02 .tab-header02 .limizu a {
    font-size: 1.083em;
    height: 50px;
    padding: 1% 0 5% 0;
    display: block;
    width: 100%;
  }
  .wrapper-tab02 .tab-header02 li a {
    font-size: 1.083em;
    height: 50px;
    padding: 6%;
    display: block;
    width: 100%;
  }
  .wrapper-tab02 .tab-content {
    padding: 7% 2.895% 0;
  }
  .wrapper-tab02 .tab-content.pd0 {
    padding-left: 0;
    padding-right: 0;
  }
  .wrapper-tab02 .tab-content .content-detail {
    width: auto;
  }
  .wrapper-tab02 .tab-content .category {
    position: static !important;
    width: auto;
    margin: 12% 0 0 !important;
    padding-top: 5%;
  }
  .wrapper-tab02 .tab-content .category h3 {
    margin: 0 auto;
    font-size: 1.583em;
    width: 92.35%;
    padding: 0.58em 0;
  }
  .wrapper-tab02 .tab-content .category li {
    padding: 0;
  }
  .wrapper-tab02 .tab-content .category li a {
    font-size: 1em;
    padding: 0.95em 1.65em;
  }
  .wrapper-tab02 .tab-content .category li a time {
    font-size: 0.833em;
  }
  .wrapper-tab02 .tab-content .product {
    margin-bottom: 5%;
  }
  .wrapper-tab02 .tab-content .product p, .wrapper-tab02 .tab-content .product div {
    font-size: 0.917em;
    margin-top: 1em;
  }
  .wrapper-tab02 .tab-content .detail {
    width: 92.35%;
    margin-top: 6%;
    font-size: 1em;
    padding: 1em 0;
    white-space: nowrap;
    background-position: 96% center;
    background-size: 0.7em auto;
  }
  .wrapper-tab02 .tab-content .detail .logo {
    width: 17%;
    margin: 0 3% 0 6%;
  }
  .wrapper-tab02 .tab-content .pagination {
    margin-top: 10%;
  }
  .wrapper-tab02 .tab-content .entry-meta {
    margin-bottom: 1em !important;
  }

  .container02 {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }

  .tab-header02 {
     display: -webkit-flex;
     display: flex;
  }
.mizu_txtleft {
  text-align: left;

}
.recruit-box01 a {
    display: inline-block;
    border: 2px solid #000;
    /* color: #fff; */
    font-weight: bold;
    width: 210px;
    text-align: center;
    padding: 6px 0;
    /* margin-top: 10px; */
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.recruit-box01 a:hover {
  background-color: #222;
  color: #fff
}

@media only screen and (max-width: 768px) {
  .container02 {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 50px;
  }
  .wrapper-tab02 .tab-header02 li {
      width: 100%;
      margin-right: auto;
      margin-bottom: 2%;
  }
  .wrapper-tab02 .tab-header02 .limizu a {
      font-size: 15px;
      height: 50px;
      padding: 1% 0 5% 0;
      display: block;
      width: 100%;
  }
  .wrapper-tab02 .tab-header02 li a {
      font-size: 15px;
      height: 50px;
      padding: 4%;
      display: block;
      width: 100%;
  }

  .wrapper-tab02 .tab-header02 .link02 {
    flex-direction: column;
  }
.mizu_txtleft {
  text-align: left!important;
}
.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

  }


/*190924_瑞風リクルートここまで*/


@media (max-width: 750px) {
  .fancybox-close {
    width: 1.666666666666667em;
    height: 1.666666666666667em;
    background-size: 100% 100%;
    /* right: 1.36667em */
  }
  .fancybox-nav span {
    width: 1.25em;
    height: 1.25em;
    background-size: 0.5833333333333333em auto;
    margin-top: -0.625em
  }
  .fancybox-prev span {
    /* left: 1.36667em */
  }
  .fancybox-next span {
    /* right: 1.36667em */
  }
}

.f-banner{
	letter-spacing:-.4em;
	margin:10px auto;
	min-width:980px;
	width:100%;
}
.f-banner li{
	display:inline-block;
	vertical-align:middle;
	letter-spacing:normal;
	margin:0 4px;
}
.f-banner li img{
	width:100%;
}
@media only screen and (max-width: 768px) {
	.f-banner{
	min-width:100%;
	}
	.f-banner li{
		margin:0 2% 2% 0;
		width:32%;
	}
	.f-banner li:nth-of-type(3n){
		margin:0 0 2% 0;
	}
}

/* 180823追加　走る日本市終了の知らせ　スタート*/
.npn_ichi {
    margin: 50px 39px 0 43px;
}
.npn_ichi span {
    font-weight: bold;
}
.npn_ichi a {
    text-decoration: underline;
}

@media only screen and (max-width: 768px) {
.npn_ichi {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* 180823追加　走る日本市終了の知らせ　終了*/

/*190319*/
/*TOPページNEWS全幅に変更*/
.top_info_01 {
  width: 100%!important;
}

.product-price {
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.rela{
  position: relative;
}
.abso{
  position: absolute;
}
.new_label{
  top: -44px;
  left: 0;
  right: unset;
  bottom: unset;
}
@media only screen and (max-width: 768px) {
  .preview .tab-content .content-detail{
    width: 100%;
  }
}

/*200313*/
.mizukaze_navi {
  display: none;
}

.mizukaze_wrapperx .mizukaze_navi {
  display: block;
}
/* 20220308 */
.in-car-service .type-car .each-type.fill .fz-lgstop {
  font-size: 16px;
  margin: 60px 0px 0px 0px ;
}

/* 221215 */
.wrap2-col .box.clm1 {
  text-align: center;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .wrap2-col .box.clm1 a {
    display: block;
  }
}

/* お弁当詳細 */
.container-bento{
  display: flex;
  justify-content: center;
}

h2.oshinagaki-title {
  font-size: 19px;
  margin: 7% auto 2%;
  text-align: center;
}
.p-txt {
  display: flex;
  gap: 2em;
  margin-top: 5em;
  justify-content: center;
}
.bento-title {
  font-size: 1.4em!important;
  margin: 0.5em 0;
  font-weight: bold;
  line-height: 2;
  /* text-align: center; */
}
.bento-txt{
  font-size: 16px;
  line-height: 1.5;
  margin-top: 4%;
}
.attention-txt{
  margin-top: 6em;
  text-align: center;
}
.p-txt {
  display: flex;
  gap: 2em;
  justify-content: center;
  margin: 5em auto 1em;
}
p.oshinagaki-txt {
font-size: 16px;
}
img.bento-image {
  margin: 37px auto;
  display: block;
}
.b-inner {
  margin: 0 17%;
}

.item-name {
  font-size: 14px;
  color: #fff;
  background-color: #4e4e4e;
  padding: 5px;
  font-weight: bold;
}

.attention-txt.no-data {
    margin-top: 0;
}

/* ▼▼多言語ボタン▼▼ */
.language-btn {
  font-weight: bold;
  justify-content: end;
  display: flex;
  margin: 4em auto 0;
  cursor: pointer;
}
.language {
  position: relative;
  border-radius: 100px;
  background: #E8E8E8;
  width: 165px;
  font-size: 12px;
  justify-content: center;
  display: flex;
}
.language span {
  padding: 10px 35px 10px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: .3s;
  z-index: 3;
}
.language span::before {
  content: '';
  width: 1.5em;
  height: 1.5em;
  background: url(../img/bento/ico_language.svg) no-repeat center / contain;
  margin-right: 5px;
}
.language span::after {
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  bottom: 3px;
  right: 13px;
  margin: auto;
  transform: rotate(45deg);
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transition: .3s;
}
.language ul {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  padding-top: 1em;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: .5s;
  overflow: hidden;
  background: #E8E8E8;
}
/* .language ul li a::after {
  content: '';
  width: 12px;
  height: 7px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  background: url(../img/bento/arrow_black.svg) no-repeat center / contain;
  transition: .3s;
} */

.language span.open + ul {
  top: 50%;
  opacity: 1;
  pointer-events: auto;
}
.language span.open + ul {
  top: 50%;
  opacity: 1;
  pointer-events: auto;
}
.p10{
  padding: 0 10px;
  line-height: 2.5;
}

/* ▲▲多言語ボタン▲▲ */


.bento-detail {
  /* text-align: center; */
}
.bento-detail p {
  margin-bottom: 3%;
}


/* お弁当詳細（追記） */
.bento-flex {
  display: flex;
    width: 100%;
    justify-content: space-between;
    flex-flow: wrap;
    align-items: center;
}
.bento-flex dt {
  width: 18%;
  margin: 2% auto;
  text-align: center;
}
.bento-flex dd {
  width: 65%;
  font-size: 16px;
}
.sales-station .label,.production-place .label {
  background-color: #4e4e4e;
  padding: 3px 9px;
  color: #fff;
  font-size: 13px;
  margin-right: 10px;
}
p.sales-station {
  font-size: 17px;
}



@media only screen and (max-width: 768px) {
.container-bento {
    display: flex;
    justify-content: center;
    width: 95%;
    margin: 0 auto;
}
.bento-title {
  font-size: 1.3em !important;
  text-align: center;
  margin-top: 0.5em;
  font-weight: bold;
  line-height: 1.1;
  margin-left: 2px;
}
.bento-detail {
  text-align: center;
}
.bento-detail p {
  margin-bottom: 3%;
}
.bento-txt{
  font-size: 14px;
  line-height: 1.5;
  margin-top: 7%;
}
h2.oshinagaki-title {
  font-size: 1.3em;
        text-align: center;
        margin: 3em auto 0.5em;
        font-weight: bold;
        line-height: 2;
}
.p-txt {
  display: flex;
  gap: 2em;
  margin-top: 2em;
  justify-content: center;
  font-size: 14px;
}
.attention-txt{
  margin-top: 2em;
  margin: 4em auto 0em;
  font-size: 16px;
}
.language-btn {
  font-weight: bold;
  justify-content: end;
  display: flex;
  padding: 1.8em 1em 3em 8em;
  margin: 0;
}
img.bento-image {
  margin: 24px auto;
  display: block;
}
.b-inner {
  margin: 0;
}
.bento-flex dd {
  width: 64%;
  font-size: 16px;
}
p.sales-station {
  font-size: 14px;
}
p.oshinagaki-txt {
  font-size: 14px;
  text-align: center;
}
.attention-txt {
  font-size: 13px;
}
/* 多言語ボタン */
.p10{
  padding: 0 10px;
  line-height: 2.5;
}
.item-name {
  font-size: 12px;
}
.bento-flex dt {
  width: 35%;
}
}
