@charset "utf-8";

/* ----------------------------------------------------
 全端末共通
---------------------------------------------------- */

/* common reset ==== */
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, ection, summary,time, mark, audio, video { margin: 0; padding : 0; border: 0; font-style : normal; font-weight: normal;font-size: 100%; vertical-align: baseline; }
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section { display: block; }
html { overflow-y: scroll; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,q:before, q:after { content: ''; content: none; }
input, textarea{ margin: 0; padding: 0; vertical-align: middle; }
ol, ul{ list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
caption, th { text-align: left; }
a:focus { outline: none; }
a { -webkit-tap-highlight-color: transparent; }
main { display: block; overflow: hidden; }

*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
/* common ==== */

html { -webkit-text-size-adjust: 100%; /* フォントサイズ自動調整OFF */ font-size: 62.5%;/* 10px */overflow-x: hidden;}



body {
	color: #333333;
	/* letter-spacing : 0.04em; */
	font-size: 14px;font-size: 1.4rem;/* 14px */
	line-height: 1;
	position: relative;/* page top ボタン用 */
  overflow: hidden;
  font-family: 'Roboto',"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "M+ 1p", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
button, input, select, textarea, option {
  font-family : inherit;
}

/*IE11用 フォント指定*/
@media all and (-ms-high-contrast:none) {
	body {
		font-family: -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, YuGothic, "Original Yu Gothic", "Yu Gothic", sans-serif;
	}
}

/* clearFix ==== */
.cf:after { content: "."; display: block; clear: both; height: 0; visibility: hidden; }
.cf { min-height: 1px; }
* html .cf {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/* particular case ==== */
.fl { float: left; }
.fr { float: right; }
.cl { clear: both; }

.tc { text-align: center !important; }
.tl { text-align: left; }
.tr { text-align: right !important; }
.vt { vertical-align : top; }

.mt-1 { margin-top: -1px !important; }
.mt-15 { margin-top: -15px !important; }
.mt-30 { margin-top: -30px !important; }
.mt0 { margin-top: 0px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mb0 { margin-bottom: 0 !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb50 { margin-bottom: 50px !important; }
.mr0 { margin-right: 0 !important; }
.mr5 { margin-right: 5px !important; }
.mr10 { margin-right: 10px !important; }
.mr15 { margin-right: 15px !important; }
.mr20 { margin-right: 20px !important; }
.mr30 { margin-right: 30px !important; }
.mr50 { margin-right: 50px !important; }
.ml0 { margin-left: 0 !important; }
.ml10 { margin-left: 10px !important; }
.ml15 { margin-left: 15px !important; }
.ml20 { margin-left: 20px !important; }
.ml40 { margin-left: 40px !important; }
.ml-20 { margin-left: -20px !important; }
.pr40 { padding-right: 40px !important; }
.pt0 { padding-top: 0 !important; }
.pt15 { padding-top: 15px !important; }
.pl0 { padding-left: 0 !important; }
.pl30 { padding-left: 30px !important; }
.pr0 { padding-right: 0 !important; }
.pb0 { padding-bottom: 0 !important; }
.pb15 { padding-bottom: 15px !important; }

/*アニメーション-------------*/

/*スライド*/
.inSlide{
	opacity: 0;
	-webkit-transition: all 1.0s;
	transition: all 1.0s;	
}
.fadeSlide{
	opacity: 1;
	-webkit-transform: translate(0,0); 
	transform: translate(0,0);	
}

/*フェードイン*/
.infadeIn {opacity: 0;transition: 1.5s;}    
.fadeIn {opacity: 1.0;}

/*フェードイン 上スライド*/
.infadeUp{
  opacity: 0;
  -webkit-transform: translate(0, 30px);
  transform: translate(0, 30px);
  transition: .8s;
}    
.fadeInUp{
  opacity: 1.0 !important;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}

img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
input[type="text"]:focus,button{ outline: 0; }
/* ----------------------------------------------------
メディアクエリ設定 All
---------------------------------------------------- */


/* 
header
------------------------------------- */
.nav-search .drawer-dropdown-menu{ font-size: 0; }
.nav-search form{ display:flex; }
.nav-search input[type="text"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 14px;font-size: 1.4rem;
  border: 1px solid #dbdbdb;
  border-radius: 3px 0 0 3px;
  padding: 3px 8px;
  flex: 1;
  display: inline-block;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
  box-sizing: content-box;
  background: #fff !important;
  text-indent: 0px !important;
}
.nav-search button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  background: #b80f0d;
  font-size: 12px;font-size: 1.2rem;
  color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
  padding: 3px 20px 3px;
  vertical-align: bottom;
  border-radius: 0 3px 3px 0;
  box-sizing: content-box;
}

.pagetop{ right: 15px; z-index: 100; }
/*All END*/


/* ----------------------------------------------------
メディアクエリ設定 (PC) 1000px～ 
---------------------------------------------------- */
@media screen and (min-width: 1000px) {
	
header{ overflow: hidden; }
header h1,header .logo{
  width: 200px;
  background: #CD2B1E;
  text-align: center;
  float: left;
  position: relative;
  z-index: 10;
}
.drawer-hamburger{ display: none; }
.drawer-nav{
  background: none;
  width: 100%;
  top: 0;
  right: 0 !important;
  padding-left: 200px;
  height: 67px;
  position: absolute;
  overflow: visible;
}
.drawer-nav a{
  text-decoration: none;
  display: block;
  font-size: 12px;font-size: 1.2rem;
}
.gnavi,.subnavi{ display: table; }
.gnavi > li,.subnavi > li{ display: table-cell; text-align: center; }
.gnavi{
  width: calc(660/1160*100%);
  float: left;
  position: relative;
  z-index: 9999;
}
.gnavi > li{ vertical-align: top; width: 25%; }
.gnavi > li > a{
  display: block;
  height: 70px;
  position: relative;
  padding-top: 25px;
}
.gnavi > li > a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #b40200;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.gnavi > li > a:hover::after,.gnavi .active a::after{
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.drawer-nav a span{ position: relative; }
.drawer-nav a span:before{ margin-right: 8px; vertical-align: -3px; }
.subnavi{
  width: calc(330/1160*100%);
  margin-left: calc(10/1160*100%);
  float: left;
}
.subnavi > li{ width: calc(100% / 4); }
.subnavi > li > a{
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
  .subnavi > li span{
    padding: 10px;
    border-radius: 3px;
  }
.othernavi{
  float: right;
  width: calc(150/1160*100%);
  overflow: hidden;
}
.othernavi > li{
  width: 50%;
  float: left;
  text-align: center;
}
.othernavi > li a{
  font-size: 10px;font-size: 1.0rem;
  padding: 40px 0 18px;
  display: block;
  position: relative;
}
.othernavi > li > a::before{
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0; bottom: 0;
  display: block;
}
.othernavi > li > a::after{
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0; top: 0;
  display: block;
}
.nav-lang > a{ background:url(/common/img/ico_lang.png) no-repeat center 15px; }
.contact-navi{ display: none; }
  
/*ドロップダウン設定*/
.drawer-dropdown-menu{
  display: block;
  visibility: hidden;
  opacity: 0;
  transition:opacity 0.2s, left 0s;
  position: fixed;
  overflow-y: auto;
  z-index: 0;
  height: 0;
  top: -9999px;
  right: -9999px;
}
.drawer-dropdown.active .drawer-dropdown-menu{
  opacity:1;
  display: block;
  visibility: visible;
  top: 67px;
  right: 0;
  height: auto;
  z-index: 9999;
  border-bottom: 1px solid #e5e5e5;
}
.gnavi .drawer-dropdown-menu .close-btn{
  position: absolute;
  top: 5px;
  left: 96vw;
  cursor: pointer;
}
.gnavi .drawer-dropdown-menu .close-btn p{
  position: relative;
  font-size: 40px;font-size: 4.0rem;
}
.close-box{ opacity: 0 !important; height: 0 !important; }
	
/*ドロップダウンの中身*/
.gnavi .drawer-dropdown-menu{
  width:calc(100% + 200px);
	z-index: 9999;
  overflow-x: hidden;
}
*::-ms-backdrop, .gnavi .drawer-dropdown-menu{ width: 100% !important; }
.gnavi .drawer-dropdown-menu::-webkit-scrollbar { display: none; }
.gnavi .drawer-dropdown-menu > li{
  position: relative;
  display: flex;
  z-index: 9999;
  overflow-y: auto;
  box-sizing: content-box;
  padding-right: 35px;
	height: 580px;
}
.nav-form .drawer-dropdown-menu > li{ height: 550px; }
/*.drawer-dropdown-menu a:hover{ opacity: 0.7; }*/
.gnavi-tit{
  flex-basis: calc(265/1360*100%);
  text-align: left;
  padding: 60px 0 80px 0;
  font-size: 12px;font-size: 1.2rem;
  align-self: stretch;
}
.gnavi-tit dl{ margin:0 calc(20/265*100%); }
.gnavi-tit dt{
  font-weight: bold;
  font-size: 20px;font-size: 2.0rem;
  margin-bottom: 40px;
  padding-bottom: 40px;
  position: relative;
}
.gnavi-tit dt::before{
  content: "";
  width: 14px;
  height: 3px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.gnavi-tit dt span{
  font-weight: bold;
  margin-bottom: 25px;
  display: inline-block;
  font-size: 12px;font-size: 1.2rem;
}
.gnavi-tit dd{ line-height: 2; margin-bottom: 28px; }
.gnavi-tit a{
  display: block;
  max-width: 180px;
  padding: 15px 0;
  text-align: center;
  margin: 0 auto;
  color: #fff !important;
}
.gnavi-main{
  display: flex;
  flex-basis: calc(1095/1360*100%);
  padding: 40px 0;
  flex-wrap: wrap;
}
.gnavi-menu {
  width: calc(825/1095*100%);
  padding: 0 30px;
  display: flex;
  justify-content:space-between;
  border-right: 1px solid #e8e8e8;
	flex-wrap: wrap;
}
.gnavi-menu > li{
  height: auto;
  display: block;
	flex-basis: calc(33.33333% - 1em);
  text-align: left !important;
  overflow: hidden;
	margin-bottom: 15px;
}
.gnavi-menu a figure,.gnavi-menu a p{ transition: .3s; width: 100%;}
.gnavi-menu a:hover figure,.gnavi-menu a:hover p{
    opacity: .7;
}
.gnavi-menu figure img{
  margin-bottom: 10px;
  width: 100%;
  max-width: none;
}
.gnavi-menu a{
  color: #333 !important;
  display: inline-block;
  text-align: left !important;
  font-size: 12px;font-size: 1.2rem;
  line-height: 1.8;
}
.gnavi-menu a p,.gnavi-mb p a{
  font-weight: bold;
  font-size: 14px;font-size: 1.4rem;
  display: inline;
  padding-right: 15px;
  line-height: 1.4;
  background: url(/common/img/arrow_red.png) right center / 6px auto no-repeat;
}
.gnavi-menu li .mini{ 
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gnavi-svf .mini ul,.gnavi-spa .mini ul,.gnavi-ds .mini ul,.gnavi-mb .mini ul,
.gnavi-svfc .mini ul,.gnavi-mbc .mini ul{ width: 49%;}
.gnavi-menu li .mini ul li,.gnavi-sf dl li{
  font-size: 12px;font-size: 1.2rem;
  position: relative;
  padding-left: 17px;
  margin-bottom: 5px;
  text-align: left;
}
.gnavi-menu li .mini ul li::before,.gnavi-sf dl li::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 2px;
  background: #b40100;
}
.gnavi-menu li .mini ul li a:hover,.gnavi-sf dl li a:hover{
  text-decoration: underline;
}
.gnavi-menu .btn01 a{ color: #fff !important; margin-top: 10px; }
.gnavi-menu .btn01 a,.gnavi-menu .btn02 a{
  display: block;
  width: 99%;
  text-align: center !important;
  padding: 8px 0;
  margin-bottom: 5px;
  transition: .3s;
}
.gnavi-menu .btn01 a:hover,
.gnavi-menu .btn02 a:hover,
.gnavi-other li a:hover{ opacity: .7;}
.gnavi-other{
  width:calc(100% - 40px);
  border-top: 1px solid #e8e8e8;
  margin: 15px 20px 0;
  padding: 15px 0;
}
.gnavi-other ul{
  width: calc(825/1095*100%);
  display: flex;
  justify-content: space-between;
}
.gnavi-other ul li{ width: 48%; }
.gnavi-other li a{
  font-size: 14px;font-size: 1.4rem;
  display: block;
  padding: 18px 0 13px;
  color: #333 !important;
  transition: .3s;
}
.gnavi-other li a span{ padding-right: 18px; }
.gnavi-other li a span::before{ content: "" !important; }
.gnavi-sf{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.gnavi-sf dl{
  display: flex;
  align-items: center;
  border: 1px solid #e8e8e8;
  margin: 0 20px 0;
  width: 61%;
  padding: 15px 15px;
}
.gnavi-sf dl dt{
  width: 20%;
  position: relative;
  text-align: center;
  padding: 0 15px 0 0;
}
.gnavi-sf dl dt::before{
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 44px;
  right: 0;
  top: calc(50% - 22px);
  background: #e8e8e8;
}
.gnavi-sf dl dt dd{ flex: 1; }
.gnavi-sf dl ul{ margin-left: 20px; }
.gnavi-sf dl li a{ color: #333 !important; line-height: 1.8; }
.gnavi-sub{ width: calc(270/1095*100%); padding-left: 30px; }
.gnavi-sub li{
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  text-align: left;
}
.gnavi-sub a{
  color: #333 !important;
  padding-left: 20px;
  background: url(/common/img/arrow_red.png) left center / 6px auto no-repeat;
  display: inline-block;
  font-size: 14px;font-size: 1.4rem;
}
.gnavi-sub a:hover{ text-decoration: underline; }
.gnavi-sf .gnavi-sub{ 
  width: 38%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 9px 0;
}
.gnavi-sf .gnavi-sub li{ 
  width: 50%;
  font-size: 12px; font-size: 1.2rem;
  padding-right: 10px;
}
.gnavi-sf .gnavi-sub a{ font-size: 12px; font-size: 1.2rem; }
/*bi 個別設定*/
.gnavi-mb p a{ background-position: right bottom 5px; }
.gnavi-mb p a:nth-of-type(1){
  margin-right: 15px;
}
.gnavi-mb p{ display: flex;}  
/*クラウド　個別設定*/
	
.nav-cloud .w100p{
	flex-basis: 100% !important;
}
	.nav-cloud 	.gnavi-sf{ margin-top: 10px;}
.nav-cloud 	.gnavi-sf dl{
	margin: 0;
	width: 100%;
}
/*.nav-cloud .gnavi-menu{ width: 100%; }
*::-ms-backdrop, .nav-cloud .gnavi-menu{ width: calc(1210/1360*100%) !important; }
.nav-cloud .gnavi-menu > li{ flex-basis: calc(100% / 4 - 1em); }
.nav-cloud .gnavi-other,.nav-cloud .gnavi-menu{ border: none; }
.nav-cloud .gnavi-other{ padding-bottom: 30px; width: 100%; }
*/

  
  
  
/*色設定*/
.nav-form .drawer-dropdown-menu{ background:linear-gradient(90deg,#ebeef7 0%,#ebeef7 calc(265/1360*100%),#fff calc(265/1360*100%),#fff 100%); }

.gnavi-svf .btn02 a,
.gnavi-3rd .btn02 a,.nav-form .gnavi-other a{
  background: #ebeef7;
}
.nav-form .gnavi-tit dt span{ color: #395cad; }
.nav-form .gnavi-tit dt::before,.nav-form .gnavi-tit a,
.gnavi-svf .btn01 a,.gnavi-3rd .btn01 a{
  background: #395cad;
  color: #fff !important;
}
.nav-form .gnavi-other a span{ background:url(/common/img/arrow_blue.png) right center / 6px auto no-repeat; }

.nav-bi .drawer-dropdown-menu{ background:linear-gradient(90deg,#fdf4e5 0%,#fdf4e5 calc(265/1360*100%),#fff calc(265/1360*100%),#fff 100%); }
.nav-bi .gnavi-other a{ background: #fdf4e5; }
.nav-bi .gnavi-tit dt span{ color: #f09700; }
.nav-bi .gnavi-tit dt::before,.nav-bi .gnavi-tit a{
  background: #f09700;
  color: #fff !important;
}
.nav-bi .gnavi-other a span{ background: url(/common/img/arrow_orange.png) right center / 6px auto no-repeat; }
.nav-cloud .drawer-dropdown-menu{ background:linear-gradient(90deg,#e6f6fc 0%,#e6f6fc calc(265/1360*100%),#fff calc(265/1360*100%),#fff 100%); }
.gnavi-svfc .btn02 a,.nav-cloud .gnavi-other a{
  background: #e6f6fc;
}
.nav-cloud .gnavi-tit dt span{ color: #0da6e6; }
.nav-cloud .gnavi-tit dt::before,.nav-cloud .gnavi-tit a,
.gnavi-svfc .btn01 a{ 
  background: #0da6e6;
  color: #fff !important;
}
.nav-cloud .gnavi-other a span{ background:url(/common/img/arrow_sky.png) right center / 6px auto no-repeat; }

.nav-sol .drawer-dropdown-menu{ background:linear-gradient(90deg,#e7f6d9 0%,#e7f6d9 calc(265/1360*100%),#fff calc(265/1360*100%),#fff 100%); }
.nav-sol .gnavi-tit dt span{ color: #7db54b; }
.nav-sol .gnavi-tit dt::before,.nav-data .gnavi-tit a{
  background: #7db54b;
}
  
.nav-data .gnavi-tit{ background: #f8e9f4; }
.nav-data .gnavi-tit dt span{ color: #a71680; }
.nav-data .gnavi-tit dt::before,.nav-data .gnavi-tit a{
  background: #a71680;
}
.gnavi-spa .btn01 a{ background: #20a6b0; }
.gnavi-spa .btn02 a{ background: #c7e8ea; }
.gnavi-ds .btn01 a{ background: #c40561; }
.gnavi-ds .btn02 a{ background: #f6e8ef; }
.gnavi-mb .btn01 a,.gnavi-mbc .btn01 a,.nav-sol .btn01 a{ background: #525252; }
.gnavi-mb .btn02 a,.gnavi-mbc .btn02 a,.nav-sol .btn02 a{ background: #ededed; }
.gnavi-vyndex .btn01 a{ background: #3d6e16; }
.gnavi-vyndex .btn02 a{ background: #e8f4de; }
  
  
  
/*検索・言語*/
.nav-search .drawer-dropdown-menu{
  width: 350px; padding: 20px;
}
.nav-lang .drawer-dropdown-menu{
  width: 138px; padding-left: 15px;
}
.nav-lang li{
  display: inline-block;
  width: 40%;
  margin-right: 15px;
}
.nav-lang li:last-of-type { margin-right: 0; }
.nav-lang .drawer-dropdown-menu a{
  color: #000;
  padding: 15px 0 15px 10px;
  display: block;
  background: url(/common/img/arrow_red.png) left center / 5px auto no-repeat;
  text-align: left;
}
.nav-lang li a:hover{ text-decoration: underline; }

/*セミナー*/  
.nav-sem .drawer-dropdown-menu{
  width: auto; padding: 20px;
}
.nav-sem.active .drawer-dropdown-menu{
  right: auto;
  text-align: left;
  border-right: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}
  .nav-sem ul li +li{
    margin-top: 10px;
  }
.nav-sem ul li a{
  color: #333;
  position: relative;
  padding-left: 15px;
}
.nav-sem ul li a:hover{ color: #b40100; opacity: 1;}
.nav-sem li a::before{
  content: "";
  display: block;
  position: absolute;
  left: 0; top: 0; bottom: 0;
  margin: auto;
  width: 7px; height: 2px;
  background: #b40100;
}

/*PC END*/
}
@media screen and (max-height: 665px) {
	.gnavi .drawer-dropdown-menu > li{  max-height: 90vh !important; }
}
@media only screen and (min-width: 1000px) and (max-width: 1160px) {
	.subnavi li a,.gnavi li a{
		font-size: 10px !important;font-size: 1.0rem !important;
	}
}

 /* ----------------------------------------------------
メディアクエリ設定 (tablet and PC) 769px～ 
---------------------------------------------------- */
@media only screen and (min-width: 769px){
	
.sp-only { display: none !important; }

footer{ background: #3a3a3a; }
.f-navi{
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.f-navi > ul{
  width:calc(100% / 6);
  line-height: 2;
  margin-bottom: 30px;
}
.f-navi a{ color: #fff; text-decoration: none; }
.f-navi a:hover{ text-decoration: underline; }
.f-navi .ico_window{
  background: url(/common/img/ico_window.png) right center no-repeat;
  padding-right: 15px;
}
.f-navi > ul > li{ color: #fff; font-weight: bold; }
  .f-navi > ul > li.home{
    background: url(/common/img/ico_home.png) left center no-repeat;
    padding-left: 20px;
  }
.f-navi > ul > li > a{
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;font-size: 1.4rem;
}
.f-navi > ul > li li a{ 
  font-size: 12px;font-size: 1.2rem;
}
.f-navi > ul > li li::before{
  content: "－";
  margin-right: 5px;
}
.f-navi > ul:nth-last-child(1) a,.f-navi > ul:nth-last-child(2) a{
  font-size: 12px;font-size: 1.2rem;
  font-weight: normal;
}
  .f-navi > ul:last-child a{
    display: inline-flex;
    align-items: center;
  }
  .f-navi > ul:nth-last-child(1) img{ margin-right: 5px; }
footer .contact-navi,.f-logo{ display: none; }
.copy{
  background: #2c2c2c;
  text-align: center;
  font-size: 10px;font-size: 1.0rem;
  padding: 100px 0;
  color: #fff;
}
/*tablet PC END*/
}

 /* ----------------------------------------------------
メディアクエリ設定 (tablet　only)  769～999px
---------------------------------------------------- */
@media only screen and (min-width: 769px) and (max-width: 999px) {

}

 /* ----------------------------------------------------
メディアクエリ設定 (smartPhone only)   0～999px
---------------------------------------------------- */
@media screen and (max-width: 999px) {
header{
  height: 56px;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}
header h1,header .logo{ padding: 10px 0 0 10px; }
header h1 img,header .logo img{ display: none; }
header h1 a,header .logo a{
  display: block;
  background: url(/common/img/logo_sp.png) center center / 120px auto no-repeat;
  width: 120px;
  height: 31px;
}
.drawer-hamburger{
  background: #b80f0d;
  padding: 17px 21px 27px;
  font-size: 0;
  z-index: 9999;
}
.drawer-hamburger:hover{ background: #b80f0d; }
.drawer-hamburger-icon, .drawer-hamburger-icon::after, .drawer-hamburger-icon::before{
  background: #fff;
  width: 105%;
}
	.drawer--right.drawer-open .drawer-hamburger{ right: 260px; }
.drawer--right .drawer-nav{ right: -260px; }
.drawer-nav{
  width: 260px;
  background: #570002;
  z-index: 9999;
}
.drawer-menu{
	padding: 10px 10px 50px;
	height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.drawer-nav a{
  color: #fff;
  text-decoration: none;
  display: block;
  line-height: 1.5;
}
.gnavi li{ background: #98010d; }
.gnavi li a{
  padding: 20px 15px;
  background:  url(/common/img/arrow_white.png) 92% center / 7px auto no-repeat;
  margin-bottom: 1px;
}
.gnavi .drawer-dropdown a{ background:  url(/common/img/ico_plus.png) 92% center / 10px auto no-repeat; }
.gnavi .open a{ background:  url(/common/img/ico_minus.png) 92% center / 10px auto no-repeat; }
.gnavi li a span{ font-weight: bold; }
.gnavi .drawer-dropdown-menu{ background: #4d0006; }
.gnavi .drawer-dropdown-menu li{
  background: #80000b;
  margin-bottom: 1px;
  height: auto !important;
}
.gnavi .drawer-dropdown-menu a{
  background:  url(/common/img/arrow_white.png) 92% center / 7px auto no-repeat;
  margin-bottom: 0;
  border-top: 1px solid #4d0006;
  color: #fff;
}
.subnavi{
  margin: 15px 0 15px;
  padding: 10px 0;
  border-bottom: 1px solid #8a4d4e;
  border-top: 1px solid #8a4d4e;
}
.subnavi a{
  display: block;
  padding: 10px 0 10px 35px;
  font-size: 12px;font-size: 1.2rem;
  position: relative;
}
.subnavi a::before{
  content: '';
  width: 6px;  height: 6px;
  border: 0px;
  border-top: solid 1px #8a4d4e;
  border-right: solid 1px #8a4d4e;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;  left: 15px;
  margin-top: -2px;
}
  .subnavi .drawer-dropdown-menu{background: none;}
  .subnavi .drawer-dropdown-menu li{
    background: #80000b;
    margin-bottom: 1px;
  }
  .subnavi .drawer-dropdown-menu li a::before{
    border-color: #fff;
  }
.othernavi{
  position: relative;
  border-bottom: 1px solid #8a4d4e;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.othernavi > li{
  float: left;
  width: 50%;
  text-align: center;
  position: relative;
}
.othernavi > li:first-of-type::before{
  content: "";
  position: absolute;
  width: 1px;
  height: 34px;
  background: #8a4d4e;
  display: block;
  top: 0;
  right: 0;
}
.othernavi > li a{ padding: 10px 0; font-size: 12px;font-size: 1.2rem; }
.othernavi .drawer-dropdown-menu{
  position: relative;
  width: 200%;
  z-index: 9999;
  background: rgba(255,255,255,0.4);
  margin-top: 15px;
}
.nav-search .drawer-dropdown-menu{ padding: 10px; }
.nav-search input[type="text"]{
  width: 62%;
  font-size: 16px;font-size: 1.6rem;
}
.nav-search button{ padding: 3px 11px; margin-left: -2px; }
.nav-lang .drawer-dropdown-menu{ margin-left: -120px; }
.nav-lang ul li a{ display: block; padding: 15px 0; }
.nav-lang ul li:first-of-type a{ border-bottom: 1px solid #8a4d4e; }
.contact-navi a{
  display: block;
  background: #fff url(/common/img/arrow_red.png) 95% center / 7px auto no-repeat;
  padding: 40px 0 40px 20px;
  text-decoration: none;
  color: #000;
  position: relative;
  z-index: 10;
  font-size: 13px;font-size: 1.3rem;
}
.gnavi .close-btn,.gnavi-tit,
.gnavi-menu figure,.gnavi-menu > li ul,
.gnavi-menu .btn01,.gnavi-menu .btn02,
.gnavi-sub,.gnavi-other,.gnavi-sf{
  display: none;
}
/*smartPhone END*/
}

 /* ----------------------------------------------------
メディアクエリ設定 (smartPhone only)   0～768px
---------------------------------------------------- */
@media screen and (max-width: 768px) {
body {
  font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.pc-only { display: none; }
.pagetop{ right: 0; }
.pagetop img{ width: 70%; }
.f-navi{ display: none; }
.f-logo{
  background: #98000d;
  padding: 20px 0;
  text-align: center;
}
footer .contact-navi{ background: #f2f2f2; padding: 20px; }
footer .contact-navi a{
  text-align: center;
  font-weight: bold;
  padding-left: 0;
  z-index: 1;
}
 .f-logo img{ max-width: 120px; }
.copy{
  background: #79000a;
  text-align: center;
  color: #fff;
  padding: 30px 0;
  font-size: 10px;font-size: 1.0rem;
}

/*smartPhone END*/
}