@charset "utf-8";

/* -------------------------------------------
 * initialize
 */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section, main {
  display:block;
}

ul li {
  list-style: none;
}

input, select {
  vertical-align: middle;
}


/* --------------------------------------------------
 * common styles
 */
html, body {
  height: 100%;
}

body {
  font-family: Arial, "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic","游ゴシック Medium","Yu Gothic Medium","Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,MS UI Gothic,AppleGothic,sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #fff;
  background: #000;
}

body:lang(en) {
  font-family: Arial,sans-serif;
}

a {
  color: #fff;
  -webkit-transition: 0.4s ease opacity;
  transition: 0.4s ease opacity;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

*, *:before, *:after {
  box-sizing: border-box;
}

/* --------------------------------------------------
 * common style
 */
.preload * {
  transition: none !important;
}

.sp {
  display: none;
}

.hide {
  display: none;
}

.clear {
  clear: both;
}

.clearfix:before, .clearfix:after{content:""; display:table;}
.clearfix:after{clear:both;}
.clearfix{zoom:1;}

.site-wrap {
  position: relative;
  overflow-x: hidden;
}

.wrapper {
  overflow-x: hidden;
}

.wrap {
  width: 93.5%;
  max-width: 1000px;
  margin: 0 auto;
}

.arial {
  font-family: Arial,sans-serif;
}
/* =============== sp =============== */
@media screen and (max-width: 768px) {
  body {
    font-size: 0.28rem;
  }

  a {
    transition: none;
  }

  a:hover {
    opacity: 1;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }

  .wrapper {
    min-width: 320px;
    overflow-x: hidden;
  }

  .wrap {
    width: 89.33333%;
    max-width: 89.33333%;
    margin: 0 auto;
  }
}


/* --------------------------------------------------
* site-header
*/
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100px;
  background: #000000;
  z-index: 1000;
  -webkit-transition: 0.25s ease-in-out transform;
  transition: 0.25s ease-in-out transform;
}

.site-header.is-fixed {
  position: fixed;
}
.site-header.is-hide {
  transform: translateY(-100%);
}

.site-header h1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 16.66667%;
  max-width: 200px;
  height: 100%;
  padding: 0 15px;
}

.site-header h1 img {
  width: 100%;
  max-width: 127px;
}

.site-header .gnavi {
  display: -ms-flexbox;
  display: flex;
}

.site-header .mega-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.site-header .mega-menu .menu-item.is-active .menu-container {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

.site-header .mega-menu .menu-item > a {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: bold;
}

.site-header .mega-menu .menu-item > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 64%;
  height: 4px;
  background: #91070e;
  background: linear-gradient(to right, #91070e 0%, #d60d18 100%);
  background: linear-gradient(#d60d18 0%, #91070e 100%);
  -webkit-transition: 0.25s ease-in-out transform;
  transition: 0.25s ease-in-out transform;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.site-header .mega-menu .menu-item > a:hover {
  opacity: 1;
  background: #2B2B2B;
}

.site-header .mega-menu .menu-item > a:hover:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/* language */

.site-header .mega-menu .lang-item .lang-selection{
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  padding: 0px 6px;
}
.site-header .mega-menu .lang-item .lang-box{
  background: #333333;
  padding: 11px;
  position: relative;
}
.site-header .mega-menu .lang-item .lang-box span{
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
}

.site-header .mega-menu .lang-item .lang-box span::before{
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: url(/img/common/icon_lang.png) no-repeat;
    background-size: 100% auto;
    vertical-align: middle;
}

.site-header .mega-menu .lang-item .lang-box span::after{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 12px;
  background: url(/img/common/icon_down.png) no-repeat;
  background-size: 100% auto;
  vertical-align: middle;
}
.site-header .mega-menu .lang-item .lang_list{
  position: absolute;
  top : 46px;
  left: 0;
  width: 100%;
  background: #2B2B2B;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}
.site-header .mega-menu .lang-item .lang_list li{
  border-top: 1px solid #666666;
  text-align: center;
}

.site-header .mega-menu .lang-item .lang_list li:hover{
  background: linear-gradient(#d60d18 0%, #91070e 100%);
}

.site-header .mega-menu .lang-item .lang_list li a{
  display: inline-block;
  padding: 12px 0;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}

.site-header .mega-menu .lang-item:hover .lang_list{
  opacity: 1;
  visibility: visible;
}
/* end of language */

.site-header .mega-menu .lang-item .toggle-lang {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  padding: 0 50px 0 27px;
  font-size: 14px;
  font-weight: bold;
}

.site-header .mega-menu .lang-item .toggle-lang .lang-jp::after,
.site-header .mega-menu .lang-item .toggle-lang .lang-en::after {
  content: "/";
  margin: 0 2px;
}

.site-header .mega-menu .lang-item .toggle-lang .lang-en a {
  color: #999999;
}

.site-header .mega-menu .menu-container {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  background: #2B2B2B;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  z-index: -10;
}

.site-header .mega-menu .menu-container .menu-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
  padding: 37px 0 25px;
}

.site-header .mega-menu .menu-container .menu-wrap .sub-menu-col {
  width: 30%;
  max-width: 265px;
  margin: 0px 5.15% 0 0;
  line-height: 1;
}

.site-header .mega-menu .menu-container .menu-wrap .sub-menu-col:nth-of-type(3n) {
  margin-right: 0;
}

.site-header .mega-menu .menu-container .menu-wrap .sub-menu-col .sub-menu-item > a {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}

.site-header .mega-menu .menu-container .menu-wrap .sub-menu-col .in-menu {
  margin-bottom: 38px;
}

.site-header .mega-menu .menu-container .menu-wrap .sub-menu-col .in-menu li {
  font-size: 13px;
  line-height: 26px;
}

.site-header .mega-menu .menu-container .menu-wrap .sub-menu-col .in-menu li:before {
  content: "-";
  margin-right: 5px;
}

.site-header .mega-menu .is-active a {
  background: #2B2B2B;
}

.site-header .mega-menu .is-active a:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.site-header .search-item .btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  padding: 0 36px 0 40px;
  -webkit-transition: 0.4s ease background-color;
  transition: 0.4s ease background-color;
  cursor: pointer;
}

.site-header .search-item .icon {
  display: block;
  width: 24px;
  height: 26px;
  background: url(/img/common/icon_search.png) no-repeat;
  background-size: 100% auto;
}

.site-header .search-item.is-active .btn {
  background: #fff;
}

.site-header .search-item.is-active .icon {
  background-image: url(/img/common/icon_search_on.png);
}

.site-header .search-item.is-active .menu-container {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

.site-header .search-item .menu-container {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  z-index: -10;
}

.site-header .search-item .menu-container .menu-wrap {
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}

.site-header .search-item .menu-container .menu-wrap #SS_searchForm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  border: 1px solid #666;
}

.site-header .search-item .menu-container .menu-wrap #SS_searchForm #SS_searchQuery {
  width: 87.5%;
  max-width: 838px;
  height: 60px;
  padding: 24px 10px 22px 64px;
  border: none;
  border-radius: 0;
  font-size: 14px;
  background: url(/img/common/icon_search_pre.png) no-repeat center left 30px;
  background-size: 24px auto;
}

.site-header .search-item .menu-container .menu-wrap #SS_searchForm #SS_searchQuery:focus {
  border: none;
  outline: 0;
}

.site-header .search-item .menu-container .menu-wrap #SS_searchForm #SS_searchQuery:placeholder-shown {
  color: #ccc;
}

.site-header .search-item .menu-container .menu-wrap #SS_searchForm #SS_searchQuery::-webkit-input-placeholder {
  color: #ccc;
}

.site-header .search-item .menu-container .menu-wrap #SS_searchForm #SS_searchQuery:-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

.site-header .search-item .menu-container .menu-wrap #SS_searchForm #SS_searchQuery::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

.site-header .search-item .menu-container .menu-wrap #SS_searchForm #SS_searchQuery:-ms-input-placeholder {
  color: #ccc;
}

.site-header .search-item .menu-container .menu-wrap #SS_searchForm #SS_searchSubmit {
  width: 12.5%;
  max-width: 120px;
  height: 60px;
  border: none;
  border-radius: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 60px;
  text-align: center;
  color: #fff;
  background: #d60d18;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: 0.4s ease opacity;
  transition: 0.4s ease opacity;
}

.site-header .search-item .menu-container .menu-wrap #SS_searchForm #SS_searchSubmit:hover {
  opacity: 0.7;
}

.site-header .contact-item a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  padding: 0 25px;
  font-size: 16px;
  font-weight: bold;
  background: #91070e;
  background: linear-gradient(to right, #91070e 0%, #d60d18 100%);
  background: linear-gradient(#d60d18 0%, #91070e 100%);
}

/* =============== tablet =============== */
@media screen and (max-width: 1199px) {
  .site-header .mega-menu .menu-item > a {
    padding: 0 13px;
  }

  .site-header .mega-menu .lang-item .toggle-lang {
    padding: 0 22px;
  }

  .site-header .search-item .btn {
    padding: 0 25px;
  }

  .site-header .contact-item a {
    padding: 0 7px;
  }
  .site-header .mega-menu .menu-container .menu-wrap .sub-menu-col {
    margin-right: 1%;
  }
}

@media screen and (min-width: 800px){
    .site-header .gnavi {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

@media screen and (max-width: 949px) {
  .site-header .mega-menu .menu-item > a {
    padding: 0 14px;
  }

  .site-header .mega-menu .lang-item .toggle-lang {
    padding: 0 10px;
  }
  .site-header .search-item .btn {
    padding: 0 18px;
  }
  .site-header .contact-item a {
    padding: 0 4px;
    font-size: 15px;
  }

  .site-header .mega-menu .lang-item .lang-selection {
      padding: 0px;
  }
}
@media all and (-ms-high-contrast: none) and (max-width: 1199px) {
  *::-ms-backdrop, .site-header .mega-menu .menu-item > a {
    padding: 0 18px;
  }
}
@media all and (-ms-high-contrast: none) and (max-width: 949px) {
  *::-ms-backdrop, .site-header .mega-menu .menu-item > a {
    padding: 0 13px;
  }
  .site-header .contact-item a {
     padding: 0 10px;
  }
}

/* =============== sp =============== */
@media screen and (max-width: 768px) {
  .site-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-width: 0;
    height: 1.3rem;
  }

  .site-header h1 {
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 48.66667%;
    max-width: 48.66667%;
    padding: 0 0 0 0.47rem;
    background: #000000;
  }

  .site-header h1 img {
    max-width: 1.52rem;
  }

  .site-header .mega-menu {
    display: none !important;
  }

  .site-header .sp-menu {
    position: absolute;
    top: 1.3rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 1.3rem);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    overflow: auto;
    overflow-anchor: none;
    -ms-touch-action: auto;
    touch-action: auto;
    /*
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    */
  }

  .site-header .sp-menu .menu {
    padding: 1rem 0.3rem 1.5rem;
    background: #2B2B2B;
  }

  .site-header .sp-menu .menu-item {
    width: 100%;
    border-bottom: 1px solid #666;
  }

  .site-header .sp-menu .menu-item:first-child {
    border-top: 1px solid #666;
  }

  .site-header .sp-menu .menu-item.none-border {
    border-bottom: none;
  }

  .site-header .sp-menu .menu-item > a {
    position: relative;
    display: block;
    height: auto;
    padding: 0.38rem 0.2rem;
    font-size: 0.28rem;
    font-weight: bold;
    z-index: 1;
  }

  .site-header .sp-menu .menu-item > a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0.45rem;
    width: 0.16rem;
    height: 0.16rem;
    border-top: 0.06rem solid #FF0000;
    border-right: 0.06rem solid #FF0000;
    border-radius: 1px;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
  }

  .site-header .sp-menu .menu-item .ac-trigger {
    position: relative;
    padding: 0.38rem 0.2rem;
    font-size: 0.28rem;
    font-weight: bold;
    cursor: pointer;
  }

  .site-header .sp-menu .menu-item .ac-trigger a {
    position: relative;
    z-index: 1;
  }

  .site-header .sp-menu .menu-item .ac-trigger .icon {
    position: absolute;
    top: 50%;
    right: 0.26rem;
    width: 0.4rem;
    height: 0.4rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
  }

  .site-header .sp-menu .menu-item .ac-trigger .icon:before, .site-header .sp-menu .menu-item .ac-trigger .icon:after {
    content: "";
    display: block;
    position: absolute;
    width: 0.24rem;
    height: 0.06rem;
    border-radius: 2px;
    background: #FF0000;
  }

  .site-header .sp-menu .menu-item .ac-trigger .icon:before {
    top: 0.18rem;
    left: 0.08rem;
  }

  .site-header .sp-menu .menu-item .ac-trigger .icon:after {
    top: 0.18rem;
    left: 0.08rem;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
  }

  .site-header .sp-menu .menu-item .ac-trigger.opened .icon:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .site-header .sp-menu .lang-item .toggle-lang {
    display: block;
    padding: 0.4rem 0.2rem;
    border-bottom: 1px solid #666;
    font-size: 0.28rem;
  }

  .site-header .sp-menu .lang-item .toggle-lang .lang-jp::after,
    .site-header .sp-menu .lang-item .toggle-lang .lang-en::after {
    content: "/";
    margin: 0 0.1rem;
  }

  .site-header .sp-menu .lang-item .toggle-lang .lang-en a {
    color: #fff;
  }

  /* language */

  .sp-lang-item .lang-selection{
    width: 1.3rem;
    height: 1.3rem;
    padding: 0 0.46rem 0 0.47rem;
    background: #2B2B2B;
    transition: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border-right: 0.01rem solid #000000;
  }
  .sp-lang-item .lang-box span img{
      width: 0.37rem;
      height: auto;
  }
  .sp-lang-item .lang_list{
    position: absolute;
    top : 1.3rem;
    left: 0;
    width: 100%;
    background: #2B2B2B;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
  }
  .sp-lang-item .lang_list li{
    border-top: 0.02rem solid #666666;
    text-align: center;
  }
  
  .sp-lang-item .lang_list li:hover{
    background: linear-gradient(#d60d18 0%, #91070e 100%);
  }

  .sp-lang-item .lang_list li a{
    display: inline-block;
    padding: 0.22rem 0;
    font-size: 0.24rem;
    color: #ffffff;
    line-height: 1.5;
  }

  .sp-lang-item.opened .lang_list{
    opacity: 1;
    visibility: visible;
  }
  /* end of language */

  .site-header .sp-menu .close-btn {
    margin-top: 1rem;
    text-align: center;
    cursor: pointer;
  }

  .site-header .sp-menu .close-btn span {
    display: inline-block;
    margin: 0 0.08rem;
    vertical-align: middle;
  }

  .site-header .sp-menu .close-btn .icon {
    position: relative;
    width: 0.45rem;
    height: 0.45rem;
    border: 1px solid #fff;
  }

  .site-header .sp-menu .close-btn .icon:before, .site-header .sp-menu .close-btn .icon:after {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0.08rem;
    display: block;
    width: 0.26rem;
    height: 0.02rem;
    background: #fff;
  }

  .site-header .sp-menu .close-btn .icon:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .site-header .sp-menu .close-btn .icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .site-header .sp-menu .close-btn .text {
    font-size: 0.28rem;
    font-weight: bold;
  }

  .site-header .sp-menu .menu-container {
    position: static;
    background: #222222;
    opacity: 1;
    visibility: visible;
  }

  .site-header .sp-menu .menu-container .menu-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0.1rem 0.26rem 0.2rem 0.35rem;
  }

  .site-header .sp-menu .menu-container .menu-wrap .sub-menu-col {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .site-header .sp-menu .menu-container .menu-wrap .sub-menu-col .sub-menu-item > a {
    position: relative;
    display: block;
    margin-bottom: 0;
    padding: 0.2rem 0;
    font-size: 0.28rem;
    font-weight: bold;
    text-decoration: none;
  }

  .site-header .sp-menu .menu-container .menu-wrap .sub-menu-col .sub-menu-item > a:before {
    content: "-";
    margin-right: 0.1rem;
    color: #FF0000;
  }

  .site-header .sp-menu .menu-container .menu-wrap .sub-menu-col .sub-menu-item > a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0.22rem;
    width: 0.16rem;
    height: 0.16rem;
    border-top: 0.06rem solid #FF0000;
    border-right: 0.06rem solid #FF0000;
    border-radius: 1px;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
  }

  .site-header .sp-menu .menu-container .menu-wrap .sub-menu-col .ac-trigger {
    padding: 0.2rem 0.2rem 0.2rem 0;
  }

  .site-header .sp-menu .menu-container .menu-wrap .sub-menu-col .ac-trigger a:before {
    content: "-";
    margin-right: 0.1rem;
    color: #FF0000;
  }

  .site-header .sp-menu .menu-container .menu-wrap .sub-menu-col .ac-trigger .icon {
    right: 0;
  }

  .site-header .sp-menu .menu-container .menu-wrap .sub-menu-col .in-menu {
    margin-bottom: 0;
  }

  .site-header .sp-menu .menu-container .menu-wrap .sub-menu-col .in-menu li {
    padding-left: 0.4rem;
    font-size: 0.28rem;
    line-height: 2.3;
  }

  .site-header .sp-menu .menu-container .menu-wrap .sub-menu-col .in-menu li:before {
    content: "";
    margin-right: 0;
  }

  .site-header .sp-menu .ac-target {
    display: none;
  }

  .site-header .sp-menu.open-menu {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
  }

  .site-header .search-item .btn {
    width: 1.3rem;
    height: 1.3rem;
    padding: 0 0.46rem 0 0.47rem;
    background: #2B2B2B;
    transition: none;
  }

  .site-header .search-item .icon {
    width: 0.37rem;
    height: 0.40rem;
  }

  .site-header .search-item:hover .btn {
    background: #2B2B2B;
  }
  .site-header .search-item:hover .icon {
    background-image: url(/img/common/icon_search.png);
  }

  .site-header .search-item:hover .menu-container {
    opacity: 0;
    visibility: hidden;
    z-index: 0;
  }

  .site-header .search-item .is-sch-open.btn {
    background: #fff;
  }

  .site-header .search-item .is-sch-open .icon {
    background-image: url(/img/common/icon_search_on.png);
  }

  .site-header .search-item .menu-container {
    position: absolute;
    top: 100%;
    opacity: 0;
    visibility: hidden;
  }

  .site-header .search-item .menu-container .menu-wrap {
    padding: 0.3rem 0.4rem;
    width: 100%;
    max-width: 100%;
  }

  .site-header .search-item .menu-container .menu-wrap #SS_searchForm {
    height: 0.7rem;
  }

  .site-header .search-item .menu-container .menu-wrap #SS_searchForm #SS_searchQuery {
    width: 81.79104%;
    max-width: 81.79104%;
    height: 0.7rem;
    padding: 0.18rem 0.2rem 0.2rem 0.6rem;
    font-size: 0.26rem;
    background: url(/img/common/icon_search_pre.png) no-repeat center left 0.16rem;
    background-size: 0.28rem auto;
  }

  .site-header .search-item .menu-container .menu-wrap #SS_searchForm #SS_searchSubmit {
    width: 17.91045%;
    max-width: 17.91045%;
    height: 0.68rem;
    padding: 0.2rem;
    font-size: .28rem;
    line-height: 1;
  }

  .site-header .search-item .menu-container.open-sch-menu {
    opacity: 1;
    visibility: visible;
    z-index: 100;
  }

  .site-header .contact-item {
    width: 1.3rem;
  }

  .site-header .contact-item a {
    height: 1.3rem;
    padding: 0 0.45rem;
    font-size: 0;
  }

  .site-header .contact-item a:before {
    content: "";
    display: block;
    width: 0.40rem;
    height: 0.40rem;
    background: url(/img/common/icon_contact.png) no-repeat;
    background-size: 100% auto;
  }

  .site-header .menu-btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 1.3rem;
    height: 1.3rem;
    background: #2B2B2B;
    cursor: pointer;
  }

  .site-header .menu-btn .btn {
    position: relative;
    width: 0.48rem;
    height: 0.44rem;
  }

  .site-header .menu-btn .btn .line, .site-header .menu-btn .btn:before, .site-header .menu-btn .btn:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 0.04rem;
    background: #fff;
    -webkit-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
  }

  .site-header .menu-btn .btn .line {
    top: 0.2rem;
  }

  .site-header .menu-btn .btn:before {
    content: "";
    top: 0;
  }

  .site-header .menu-btn .btn:after {
    content: "";
    top: 0.4rem;
  }

  .site-header .menu-btn.is-open .btn .line {
    opacity: 0;
  }

  .site-header .menu-btn.is-open .btn:before {
    top: 0.2rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .site-header .menu-btn.is-open .btn:after {
    top: 0.2rem;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

/* --------------------------------------------------
* site-footer
*/
.site-footer {
  position: relative;
  padding: 81px 0 88px;
  background: url(/img/common/footer_bg.jpg) no-repeat center;
  background-size: cover;
}

.site-footer .foot-wrap {
  position: relative;
  width: 93.5%;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 100;
}

.site-footer .foot-wrap .foot-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 72px;
}

.site-footer .foot-wrap .foot-nav .row-block {
  width: 23%;
  max-width: 250px;
}

.site-footer .foot-wrap .foot-nav .head-text {
  margin-bottom: 19px;
  font-size: 14px;
  font-weight: bold;
}

.site-footer .foot-wrap .foot-nav ul li {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
}

.site-footer .foot-wrap .foot-nav ul li:before {
  content: "-";
  margin-right: 3px;
  color: #D60D18;
}

.site-footer .foot-wrap .foot-nav ul li a {
  color: #ccc;
  -webkit-transition: 0.4s ease color;
  transition: 0.4s ease color;
}

.site-footer .foot-wrap .foot-nav ul li a:hover {
  opacity: 1;
  color: #fff;
}

.site-footer .foot-wrap .foot-nav .sub-block {
  margin-top: 20px;
}

.site-footer .foot-wrap .foot-nav .sub-block .head-text {
  margin-bottom: 5px;
}

.site-footer .foot-bottom {
  position: relative;
  width: 100%;
  max-width: 1000px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0 auto;
  padding: 24px 0 0;
  border-top: 1px solid #666;
  z-index: 100;
  word-wrap: break-word;
  word-break: break-all;
}

.site-footer .foot-bottom .address {
  width: 66.9%;
  max-width: 669px;
}

.site-footer .foot-bottom .address h1 {
  display: inline-block;
  width: 204px;
  vertical-align: middle;
}

.site-footer .foot-bottom .address p {
  display: inline-block;
  margin-left: 7px;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  vertical-align: middle;
}

.site-footer .foot-bottom .copy {
  padding-bottom: 10px;
  font-size: 10px;
}

/* =============== sp =============== */
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 1.56rem 0.3rem 0.9rem;
    background: url(/img/common/footer_bg_sp.jpg) no-repeat bottom center;
    background-size: 100% auto;
  }

  .site-footer .foot-wrap, .site-footer .foot-bottom {
    width: 100%;
    max-width: 100%;
  }

  .site-footer .foot-wrap .foot-nav {
    display: block;
    padding-bottom: 0;
  }

  .site-footer .foot-wrap .foot-nav .row-block {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #EEEEEE;
  }

  .site-footer .foot-wrap .foot-nav .row-block:first-of-type {
    border-top: 1px solid #EEEEEE;
  }

  .site-footer .foot-wrap .foot-nav .row-block:last-of-type .head-text:first-child {
    border-bottom: 1px solid #EEEEEE;
  }

  .site-footer .foot-wrap .foot-nav .head-text {
    margin-bottom: 0;
  }

  .site-footer .foot-wrap .foot-nav .head-text.bt-line {
    border-top: 1px solid #EEEEEE;
  }

  .site-footer .foot-wrap .foot-nav .bt-line:nth-of-type(2) {
    margin-bottom: 0;
  }

  .site-footer .foot-wrap .foot-nav .head-text a {
    position: relative;
    display: block;
    padding: 0.4rem 0.2rem;
    font-size: 0.28rem;
    cursor: pointer;
  }

  .site-footer .foot-wrap .foot-nav .head-text:not(.ac-trigger) a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0.43rem;
    width: 0.16rem;
    height: 0.16rem;
    border-top: 0.06rem solid #FF0000;
    border-right: 0.06rem solid #FF0000;
    border-radius: 2px;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
  }

  .site-footer .foot-wrap .foot-nav .ac-trigger {
    position: relative;
    padding: 0.4rem 0.2rem;
    font-size: 0.28rem;
    cursor: pointer;
  }

  .site-footer .foot-wrap .foot-nav .ac-trigger a {
    display: inline;
    padding: 0;
    z-index: 1;
  }

  .site-footer .foot-wrap .foot-nav .ac-trigger .icon {
    position: absolute;
    top: 50%;
    right: 0.23rem;
    width: 0.4rem;
    height: 0.4rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
    cursor: pointer;
  }

  .site-footer .foot-wrap .foot-nav .ac-trigger .icon:before, .site-footer .foot-wrap .foot-nav .ac-trigger .icon:after {
    content: "";
    display: block;
    position: absolute;
    width: 0.24rem;
    height: 0.06rem;
    border-radius: 2px;
    background: #FF0000;
  }

  .site-footer .foot-wrap .foot-nav .ac-trigger .icon:before {
    top: 0.18rem;
    left: 0.08rem;
  }

  .site-footer .foot-wrap .foot-nav .ac-trigger .icon:after {
    top: 0.18rem;
    left: 0.08rem;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
  }

  .site-footer .foot-wrap .foot-nav .ac-trigger.opened .icon:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .site-footer .foot-wrap .foot-nav ul {
    padding: 0 0 0.2rem;
  }

  .site-footer .foot-wrap .foot-nav ul li {
    margin-bottom: 0;
    padding: 0.2rem 0;
    font-size: 0.28rem;
    line-height: 1.3;
  }

  .site-footer .foot-wrap .foot-nav ul li:before {
    content: "-";
    margin-right: 0.1rem;
  }

  .site-footer .foot-wrap .foot-nav ul li a {
    color: #fff;
  }

  .site-footer .foot-wrap .foot-nav .ac-target {
    display: none;
  }

  .site-footer .foot-wrap .foot-nav .sub-block {
    margin-top: 0;
  }

  .site-footer .foot-wrap .foot-nav .sub-block .head-text {
    margin-bottom: 0;
  }

  .site-footer .foot-bottom {
    display: block;
    padding: 0.8rem 0 0;
    width: 100%;
    border-top: none;
  }

  .site-footer .foot-bottom .address {
    width: 100%;
    max-width: 100%;
  }

  .site-footer .foot-bottom .address h1 {
    display: block;
    width: 3.3rem;
    margin: 0 0 0.39rem;
  }

  .site-footer .foot-bottom .address p {
    display: block;
    margin-left: 0;
    font-size: 0.26rem;
    line-height: 22px;
    line-height: 1.61;
    text-align: left;
  }

  .site-footer .foot-bottom .copy {
    padding-top: 0.77rem;
    padding-bottom: 0;
    font-size: 0.22rem;
    line-height: 1.2;
    text-align: center;
  }
}

/* --------------------------------------------------
* main-contents
*/
.main-contents {
  padding-top: 0px;
}
/* =============== sp =============== */
@media screen and (max-width: 768px) {
  .main-contents {
    padding-top: 1.3rem;
  }
}

/* --------------------------------------------------
* contact-area
*/
.contact-area {
  min-height: 230px;
  padding: 40px 10px 44px;
  background: #91070e;
  background: linear-gradient(to right, #91070e 0%, #d60d18 100%);
  background: linear-gradient(#d60d18 0%, #91070e 100%);
}

.contact-area h2 {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.contact-area ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-area ul li {
  width: 46%;
  max-width: 460px;
  height: 90px;
  margin: 0 41px;
  text-align: center;
}

.contact-area ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.contact-area ul li a .small {
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
}

.contact-area ul li a .large {
  display: block;
  font-weight: bold;
  line-height: 24px;
}

.contact-area ul li.type-tel {
  color: #fff;
  border: 1px solid #fff;
}

.contact-area ul li.type-tel .large {
  margin-top: 6px;
  font-family: Helvetica,sans-serif;
  font-size: 36px;
  font-style: italic;
}

.contact-area ul li.type-tel .large:before {
  content: "";
  display: inline-block;
  width: 31px;
  height: 40px;
  margin-right: 8px;
  background: url(/img/common/icon_tel.png) no-repeat;
  background-size: 100% auto;
  vertical-align: middle;
}

.contact-area ul li.type-form {
  background: #eee;
}

.contact-area ul li.type-form a {
  color: #222222;
}

.contact-area ul li.type-form .large {
  margin-top: 10px;
  font-size: 26px;
}

/* =============== tablet =============== */
@media screen and (max-width: 1199px) {
  .contact-area ul li {
    margin: 0 2%;
  }
}

/* =============== sp =============== */
@media screen and (max-width: 768px) {
  .contact-area {
    height: auto;
    min-height: 0;
    padding: 0.75rem 0.65rem 0.8rem;
  }

  .contact-area h2 {
    margin-bottom: 0.6rem;
    font-size: 0.32rem;
    line-height: 1.875;
    text-align: left;
  }

  .contact-area ul {
    display: block;
  }

  .contact-area ul li {
    width: 100%;
    max-width: 100%;
    height: 1.5rem;
    margin: 0;
  }

  .contact-area ul li a {
    padding: 0.3rem 0.1rem;
    height: auto;
  }

  .contact-area ul li a .small {
    font-size: 0.28rem;
    line-height: 1.2;
  }

  .contact-area ul li a .large {
    line-height: 1.2;
  }

  .contact-area ul li.type-tel {
    margin-bottom: 0.46rem;
  }

  .contact-area ul li.type-tel .large {
    margin-top: 0.03rem;
    font-size: 0.54rem;
  }

  .contact-area ul li.type-tel .large:before {
    content: "";
    width: 0.39rem;
    height: 0.49rem;
    margin-right: 0.1rem;
    background: url(/img/common/icon_tel.png) no-repeat;
    background-size: 100% auto;
  }

  .contact-area ul li.type-form .large {
    margin-top: 0.12rem;
    font-size: 0.34rem;
  }
}

/* --------------------------------------------------
 * mainvisual-area
*/
.mainvisual-area {
  position: relative;
  padding: 86px 0 75px;
}

.mainvisual-area:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: -moz-linear-gradient(left, #000000 0%, rgba(84, 84, 84, 0) 100%);
  background: -webkit-linear-gradient(left, #000000 0%,rgba(84, 84, 84, 0) 100%);
  background: linear-gradient(to right, #000000 0%,rgba(84, 84, 84, 0) 100%);
  opacity: 0.6;
}

.mainvisual-area .wrap {
  position: relative;
  z-index: 1;
}

.mainvisual-area .common-title {
  margin-bottom: 40px;
  font-size: 0;
}

.mainvisual-area .common-title .bold {
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  vertical-align: bottom;
}

.mainvisual-area .common-title .main {
  display: block;
  font-size: 0;
}

.mainvisual-area .common-title .sub {
  display: inline-block;
  width: 61px;
  height: auto;
  margin: 0 0 5px 14px;
  vertical-align: text-bottom;
  line-height: 1;
}

.mainvisual-area .lead {
  font-size: 14px;
}


/* =============== sp =============== */
@media screen and (max-width: 768px) {
  .mainvisual-area {
    padding: 1.28rem 0;
  }

  .mainvisual-area .common-title {
    margin-bottom: 0.2rem;
  }

  .mainvisual-area .common-title .bold {
    margin-bottom: 0.2rem;
    font-size: 0.5rem;
  }

  .mainvisual-area .common-title .sub {
    width: 0.89rem;
    margin: 0 0 0.2rem 0.2rem;
  }

  .mainvisual-area .lead {
    font-size: 0.26rem;
  }
}

/* --------------------------------------------------
 * breadcrumb
*/
.breadcrumb {
  margin: 16px 0 30px;
  font-size: 12px;
}

.breadcrumb a,
.breadcrumb span {
  display: inline-block;
  line-height: 1;
  color: #ccc;
}

.breadcrumb a:after {
  content: "＞";
  display: inline-block;
  padding: 0 0 0 5px;
  font-size: 12px;
}

/* =============== sp =============== */
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin: 0.22rem 0 0.56rem;
    font-size: 0.22rem;
  }

  .breadcrumb a:after {
    content: "＞";
    padding: 0 0 0 0.1rem;
    font-size: 0.22rem;
  }
}

/* --------------------------------------------------
 * page-top
 */
.page-top {
  display: none;
  position: fixed;
  bottom: 280px;
  right: 25px;
  width: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  z-index: 100;
}

.page-top.is-absolute {
  position: absolute;
  top: 108px;
  right: 25px;
}

.page-top .text {
  display: inline-block;
  margin-left: 20px;
  font-size: 13px;
  font-style: italic;
  color: #d60d18;
  vertical-align: middle;
}

.page-top .line {
  display: inline-block;
  width: 60px;
  height: 1px;
  vertical-align: middle;
  overflow: hidden;
}

.page-top .line:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-animation: bottomToTopLine 1.5s cubic-bezier(.58,.29,.48,.81) 0.1s infinite;
  -ms-animation: bottomToTopLine 1.5s cubic-bezier(.58,.29,.48,.81) 0.1s infinite;
  animation: bottomToTopLine 1.5s cubic-bezier(.58,.29,.48,.81) 0.1s infinite;
}

@-webkit-keyframes bottomToTopLine {
  0% {
    width: 100%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    width: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bottomToTopLine {
  0% {
    width: 100%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    width: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* =============== sp =============== */
@media screen and (max-width: 768px) {
  .page-top {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
    width: auto;
    height: 0;
    text-align: center;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .page-top.is-absolute {
    top: 0;
    right: 0;
  }

  .page-top a {
    display: inline-block;
  }

  .page-top .text {
    display: inline-block;
    margin-left: 0;
    padding-top: 0.5rem;
    font-size: 0.26rem;
    vertical-align: bottom;
  }

  .page-top .line {
    display: block;
    width: 0.6rem;
    height: 0.03rem;
    margin: auto;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

/* --------------------------------------------------
* cmn-bg-btn
*/
.cmn-bg-btn {
  text-align: right;
}

.cmn-bg-btn a {
  position: relative;
  display: inline-block;
  width: 250px;
  height: 50px;
  padding: 0 0 0 60px;
  border: 1px solid #fff;
  font-size: 16px;
  line-height: 48px;
  text-align: left;
  color: #fff;
}

.cmn-bg-btn a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
  transition: 0.4s ease transform;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.cmn-bg-btn a:hover {
  color: #000;
  opacity: 1;
}

.cmn-bg-btn a:hover:before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/* =============== sp =============== */
@media screen and (max-width: 768px) {
  .cmn-bg-btn {
    text-align: center;
  }

  .cmn-bg-btn a {
    width: 4.3rem;
    height: 0.9rem;
    padding: 0 0 0 0.96rem;
    font-size: 0.28rem;
    line-height: 0.88rem;
  }

  .cmn-bg-btn a:before {
    content: "";
    transition: none;
  }

  .cmn-bg-btn a:hover {
    color: #fff;
  }

  .cmn-bg-btn a:hover:before {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
}

/* --------------------------------------------------
* loading
*/
.loading {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1000;
}
.loading img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.site-header .mega-menu .lang-item .toggle-lang .lang-en a {
  color: #fff;
}

.site-header .sp-menu .lang-item .toggle-lang .lang-en a {
  color: #fff;
}

/* --------------------------------------------------
* en
  --------------------------------------------------*/
/*
.lang-cn .site-header .mega-menu .lang-item .toggle-lang .lang-jp a {
  color: #999999;
}
.lang-cn .site-header .mega-menu .lang-item .toggle-lang .lang-en a {
  color: #999999;
}
.lang-cn .site-header .mega-menu .lang-item .toggle-lang .lang-cn a {
  color: #fff;
}

.lang-en .site-header .mega-menu .lang-item .toggle-lang .lang-jp a {
  color: #999999;
}
.lang-en .site-header .mega-menu .lang-item .toggle-lang .lang-en a {
  color: #fff;
}
.lang-en .site-header .mega-menu .lang-item .toggle-lang .lang-cn a {
  color: #999999;
}

.lang-jp .site-header .mega-menu .lang-item .toggle-lang .lang-jp a {
  color: #fff;
}
.lang-jp .site-header .mega-menu .lang-item .toggle-lang .lang-en a {
  color: #999999;
}
.lang-jp .site-header .mega-menu .lang-item .toggle-lang .lang-cn a {
  color: #999999;
}
*/
.lang-cn .site-footer .foot-bottom .address {
  width: 75.8%;
  max-width: 770px;
}

.lang-cn .contact-area h2 {
  max-width: 61.3%;
  margin: 0 auto 24px;
  text-align: center;
}
.lang-cn .contact-area ul li.type-form {
  height: auto;
  min-height: 42px;
}
.lang-cn .contact-area ul li.type-form a span {
  margin: 0;
}

.lang-cn .mainvisual-area {
  padding: 100px 0 80px;
}
/* =============== sp =============== */
@media screen and (max-width: 768px) {
  .lang-cn .site-header .sp-menu .lang-item .toggle-lang .lang-en a {
    color: #ffffff;
  }
  .lang-cn .site-header .sp-menu .lang-item .toggle-lang .lang-jp a {
    color: #999999;
  }
  .lang-cn .site-footer .foot-bottom .address {
    width: 100%;
    max-width: 100%;
  }
  .lang-cn .contact-area h2 {
    max-width: 100%;
  }
  .lang-cn .contact-area ul li.type-form {
    height: 1rem;
    height: auto;
    min-height: 0;
  }
  .lang-cn .mainvisual-area {
    padding: 1.32rem 0;
  }
}


/* --------------------------------------------------
* en
  --------------------------------------------------*/
.lang-en .site-header .mega-menu .lang-item .toggle-lang .lang-jp a {
  color: #fff;
}
.lang-en .site-header .mega-menu .lang-item .toggle-lang .lang-en a {
  color: #fff;
}

.lang-en .site-footer .foot-bottom .address {
  width: 75.8%;
  max-width: 770px;
}

.lang-en .contact-area h2 {
  max-width: 61.3%;
  margin: 0 auto 24px;
  text-align: center;
}
.lang-en .contact-area ul li.type-form {
  height: auto;
  min-height: 42px;
}
.lang-en .contact-area ul li.type-form a span {
  margin: 0;
}

.lang-en .mainvisual-area {
  padding: 100px 0 80px;
}

/* =============== sp =============== */
@media screen and (max-width: 768px) {
  .lang-en .site-header .sp-menu .lang-item .toggle-lang .lang-en a {
    color: #ffffff;
  }
  .lang-en .site-header .sp-menu .lang-item .toggle-lang .lang-jp a {
    color: #999999;
  }
  .lang-en .site-footer .foot-bottom .address {
    width: 100%;
    max-width: 100%;
  }
  .lang-en .contact-area h2 {
    max-width: 100%;
  }
  .lang-en .contact-area ul li.type-form {
    height: 1rem;
    height: auto;
    min-height: 0;
  }
  .lang-en .mainvisual-area {
    padding: 1.32rem 0;
  }
}

/*Cookie*/
.cookie{
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: rgba(11,18,27,0.80);
    color: #fff;
    width: 100%;
    z-index: 999;
}

.cookie_box{
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lang-en .cookie_box p{
  line-height: 1.7;
}

.cookie_box p{
    width: 100%;
    margin-right: -200px;
    padding-right: 200px;
}

.cookie_box a{
  text-decoration: underline;
  position: relative;
  padding-left: 8px;
  margin: 0 10px;
}

.cookie_box a:after{
    content: "";
    position: absolute;
    top: 0.1em;
    left: -.6em;
    height: 0.7em;
    width: 0.7em;
    display: inline-block;
    background-image: url(/img/common/icon_link_wh.svg);
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.cookie_btn{
    float: right;
    width: 185px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.cookie_btn span{
    display: block;
    text-align: center;
    background: linear-gradient(#d60d18 0%, #91070e 100%);
    color: #fff;
    padding: 15px 0;
}

.cookie_btn :hover{
    background: #d60d18;
}


@media only screen and (max-width: 1300px){
  .cookie_box{
    width: auto;
    margin: 0 40px;
    padding: 20px 0;
  }
}

@media screen and (max-width: 768px){
  .cookie_box{
    margin: 0 .15rem;
    padding: .15rem 0;
    display: block;
  }

  .cookie_box p{
    margin-right: 0;
    padding-right: 0;
  }

  .cookie_box a:after{
    content: "";
    position: absolute;
    top: 0.2em;
    left: -.05rem;
    height: 0.7em;
    width: 0.7em;
  }

  .cookie_btn{
    width: 50%;
    float: none;
    margin: .15rem auto 0;
  }

  .cookie_btn span{
    padding: .15rem 0;
  }

}
