@charset "UTF-8";
/* Scss Document */
/* transition */
/* opacity */
/* inline-block */
/* font-family */
/* font size */
.target1,
.target2,
.target2_2,
.target3,
.target4 {
  opacity: 0;
}

.btnType01 a,
.btnType01 > span {
  display: block;
  width: 200px;
  height: 50px;
  border: 2px solid #dadada;
  background-color: rgba(0, 0, 0, 0.8);
  margin: 0 auto;
  font-size: 13px;
  font-weight: 600;
  color: #ddd;
  text-align: center;
  padding-top: 16px;
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition: color 0.2s ease-in-out;
}

.btnType01 a span,
.btnType01 > span span {
  position: relative;
  z-index: 1;
}

.btnType01 a:after, .btnType01 a:before,
.btnType01 > span:after,
.btnType01 > span:before {
  content: ' ';
  display: inline-block;
  position: absolute;
  width: 120%;
  height: 200px;
  top: -2px;
  left: 0;
  opacity: 0;
  background: #f37e0a;
  background: -moz-linear-gradient(-45deg, #f37e0a 0%, #d82d0f 100%);
  background: -webkit-linear-gradient(-45deg, #f37e0a 0%, #d82d0f 100%);
  background: linear-gradient(135deg, #f37e0a 0%, #d82d0f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f37e0a', endColorstr='#d82d0f',GradientType=1 );
  z-index: 0;
}

.btnType01 a:after,
.btnType01 > span:after {
  -webkit-transform: translateX(-100%) skewX(-8deg);
  -ms-transform: translateX(-100%) skewX(-8deg);
  transform: translateX(-100%) skewX(-8deg);
  -webkit-transition: 0s cubic-bezier(0.82, 0.01, 0.28, 0.99);
  transition: 0s cubic-bezier(0.82, 0.01, 0.28, 0.99);
}

.btnType01 a:before,
.btnType01 > span:before {
  -webkit-transform: translateX(100%) skewX(-8deg);
  -ms-transform: translateX(100%) skewX(-8deg);
  transform: translateX(100%) skewX(-8deg);
  -webkit-transition: 0.4s cubic-bezier(0.82, 0.01, 0.28, 0.99);
  transition: 0.4s cubic-bezier(0.82, 0.01, 0.28, 0.99);
}

.btnType01 a:hover, .btnType01 a.hovered,
.btnType01 > span:hover,
.btnType01 > span.hovered {
  color: #fff;
}

.btnType01 a:hover:after, .btnType01 a.hovered:after,
.btnType01 > span:hover:after,
.btnType01 > span.hovered:after {
  -webkit-transition: 0.4s cubic-bezier(0.32, 0.01, 0.28, 0.99);
  transition: 0.4s cubic-bezier(0.82, 0.01, 0.28, 0.99);
  -webkit-transform: translateX(-10%) skewX(-8deg);
  -ms-transform: translateX(-10%) skewX(-8deg);
  transform: translateX(-10%) skewX(-8deg);
  opacity: 1;
}

.btnType01 a:hover:before, .btnType01 a.hovered:before,
.btnType01 > span:hover:before,
.btnType01 > span.hovered:before {
  -webkit-transition: 0s cubic-bezier(0.32, 0.01, 0.28, 0.99) 0.4s;
  transition: 0s cubic-bezier(0.82, 0.01, 0.28, 0.99) 0.4s;
  -webkit-transform: translateX(-10%) skewX(-8deg);
  -ms-transform: translateX(-10%) skewX(-8deg);
  transform: translateX(-10%) skewX(-8deg);
  opacity: 1;
}

@media screen and (max-width: 812px) {
  .btnType01 a:after, .btnType01 a:before,
  .btnType01 > span:after,
  .btnType01 > span:before {
    display: none;
  }
  .btnType01 a:hover,
  .btnType01 > span:hover {
    color: #ddd;
  }
  .btnType01 a.hovered,
  .btnType01 > span.hovered {
    color: #fff;
    background-color: #f37e0a;
  }
}

.btnType01 a img,
.btnType01 > span img {
  width: 19px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 9px;
}

@media screen and (max-width: 812px) {
  .btnType01 a {
    height: 40px;
    padding-top: 11px;
  }
}

#cookie-notice-box {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90px;
  border-top: 1px solid #f86108;
  background-color: #2a2a2a;
  z-index: 500;
  transition: transform .3s;
  transform: translateY(100%);
}

@media screen and (max-width: 812px) {
  #cookie-notice-box {
    height: 285px;
  }
}

#cookie-notice-box .cookie-notice-inner {
  width: 1230px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 812px) {
  #cookie-notice-box .cookie-notice-inner {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 4vw;
    line-height: 1.5em;
    width: 94.66667vw;
  }
}

#cookie-notice-box .cookie-notice-inner div.cookie-left {
  color: #fff;
  width: 850px;
  flex-shrink: 0;
  font-size: 12px;
  padding-right: 10px;
}

@media screen and (max-width: 812px) {
  #cookie-notice-box .cookie-notice-inner div.cookie-left {
    width: 100%;
    margin-bottom: 4vw;
    font-size: 10px;
    padding-right: 0;
  }
}

#cookie-notice-box .cookie-notice-inner div.cookie-right ul {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}

#cookie-notice-box .cookie-notice-inner div.cookie-right ul li a {
  font-size: 14px;
}

@media screen and (max-width: 812px) {
  #cookie-notice-box .cookie-notice-inner div.cookie-right ul li:nth-child(1) a {
    width: 36vw;
  }
}

#cookie-notice-box .cookie-notice-inner div.cookie-right ul li:nth-child(2) {
  margin-left: 20px;
}

@media screen and (max-width: 812px) {
  #cookie-notice-box .cookie-notice-inner div.cookie-right ul li:nth-child(2) {
    margin-left: 2vw;
  }
}

#cookie-notice-box .cookie-notice-inner div.cookie-right > p {
  color: white;
  text-align: center;
  font-size: 12px;
  margin-top: 3px;
}

#cookie-notice-box .cookie-notice-inner div.cookie-right > p a {
  color: white;
  text-decoration: underline;
}

@media screen and (max-width: 812px) {
  #cookie-notice-box .cookie-notice-inner div.cookie-right > p {
    margin-top: 10px;
  }
}

#main {
  display: block;
  position: relative;
  z-index: 1;
  min-width: 1200px;
}

@media screen and (max-width: 812px) {
  #main {
    width: 100%;
    min-width: 0;
  }
}

#loader_cover {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #222;
}

#loader_cover #loader_wrap {
  position: absolute;
  z-index: 10;
  width: 300px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loader_cover #loader_wrap #load_bar {
  height: 1px;
  width: 100%;
  background: #333;
}

#loader_cover #loader_wrap #load_bar > div {
  position: relative;
}

#loader_cover #loader_wrap #load_bar > div > span {
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  height: 1px;
  width: 0;
  background: #e94a25;
  background: -moz-linear-gradient(90deg, rgba(233, 74, 37, 0.9) 0%, rgba(255, 151, 15, 0.9) 100%);
  background: -webkit-linear-gradient(90deg, rgba(233, 74, 37, 0.9) 0%, rgba(255, 151, 15, 0.9) 100%);
  background: linear-gradient(90deg, rgba(233, 74, 37, 0.9) 0%, rgba(255, 151, 15, 0.9) 100%);
  animation: load-bar 1s ease-in-out infinite;
}

#loader_cover #loader_wrap p {
  color: #aaa;
  margin-top: 5px;
  font-family: 'Beleren';
  font-size: 12px;
  letter-spacing: 0.1em;
  animation: load-txt 0.1s linear infinite;
}

@media screen and (max-width: 812px) {
  #loader_cover #loader_wrap {
    width: 70%;
  }
}

#loader_cover #load_logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  opacity: 0.1;
}

@keyframes load-bar {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}

@keyframes load-txt {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

/************************************************************
header
************************************************************/
#header {
  /* CSS Document */
  /************************************************************
    FONT SIZE
    ************************************************************/
  /*html.fontChange1{font-size:62.5%;}
    html.fontChange2{font-size:70%;}*/
  /************************************************************
    HTML TAGS
    ************************************************************/
  min-width: 1100px;
  padding: 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

#header html {
  font-size: 62.5%;
}

#header body {
  font-size: 16px;
  font-size: 1.6rem;
}

#header p, #header li, #header dt, #header dd, #header th, #header td, #header textarea {
  font-size: 16px;
  font-size: 1.6rem;
}

#header * {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
}

#header html, #header body {
  color: #222;
  font-family: 'Noto Sans JP',"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.03em;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  background: #fff;
}

#header p {
  line-height: 2;
  font-weight: 400;
  letter-spacing: normal;
  font-size: 16px;
  font-size: 1.6rem;
}

#header dd, #header dt {
  line-height: 1.6;
  letter-spacing: normal;
  font-size: 14px;
}

#header dt {
  font-weight: bold;
  letter-spacing: normal;
}

#header li {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: normal;
}

#header th {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: normal;
}

#header td {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: normal;
}

#header ul, #header ol {
  list-style-type: none;
}

#header img {
  vertical-align: bottom;
  letter-spacing: normal;
  max-width: 100%;
}

#header hr {
  margin: 0px;
  padding: 0px;
}

#header address {
  font-style: normal;
}

#header a {
  color: #222;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

#header a img {
  border: none;
}

@media screen and (max-width: 812px) {
  #header p {
    line-height: 1.8;
  }
  #header p, #header li, #header dt, #header dd, #header th, #header td {
    font-size: 14px;
    font-size: 1.4rem;
  }
  #header a {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }
}

#header #site_id {
  width: 142px;
  margin-right: 35px;
}

@media screen and (max-width: 1200px) {
  #header #site_id {
    width: 130px;
    margin-right: 20px;
  }
}

#header.active {
  padding-top: 10px;
  padding-bottom: 11px;
  height: auto;
  background: rgba(0, 0, 0, 0.8);
  /*background: rgb(17,17,17);
    background: -moz-linear-gradient(153deg, rgba(17,17,17,1) 20%, rgba(174,51,39,0.8) 90%, rgba(195,94,23,0.5) 100%);
    background: -webkit-linear-gradient(153deg, rgba(17,17,17,1) 20%, rgba(174,51,39,0.8) 90%, rgba(195,94,23,0.5) 100%);
    background:linear-gradient(153deg, rgba(17,17,17,1) 20%, rgba(174,51,39,0.8) 90%, rgba(195,94,23,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111111",endColorstr="#581007",GradientType=1); 
		*/
}

#header.active #site_id {
  opacity: 1;
}

#header.active #gnavi {
  padding-top: 3px;
}

@media screen and (max-width: 812px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 7px 2vw 0;
  }
}

#header #header_search_bt {
  padding-right: 15px;
  cursor: pointer;
}

#header #header_search_bt a:hover {
  text-decoration: none;
}

#header #header_search_bt a:hover span {
  color: #f55d0b;
}

#header #header_search_bt a:hover i {
  background: black;
}

#header #header_search_bt i {
  width: 34px;
  height: 34px;
  text-align: center;
  background: rgba(17, 17, 17, 0.7);
  border-radius: 50px;
  position: relative;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

#header #header_search_bt i img {
  width: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#header #header_search_bt span {
  color: #fff;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotateZ(0.03deg);
  font-weight: 700;
  font-size: 13px;
  margin-left: 9px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1350px) {
  #header #header_search_bt span {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  #header #header_search_bt {
    padding-right: 0;
  }
}

#header #header_shop_bt {
  line-height: 1;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotateZ(0.03deg);
  margin-right: 25px;
}

#header #header_shop_bt img {
  width: 22px;
  margin-right: 8px;
  margin-bottom: 2px;
}

@media screen and (max-width: 812px) {
  #header #header_shop_bt img {
    margin-bottom: 0;
    margin-top: 2px;
    width: 20px;
  }
}

@media screen and (max-width: 1350px) {
  #header #header_shop_bt span {
    display: none;
  }
}

#header #header_shop_bt a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

@media screen and (max-width: 1350px) {
  #header #header_shop_bt {
    margin-right: 10px;
  }
}

@media screen and (max-width: 812px) {
  #header {
    width: 100%;
    min-width: 0;
  }
}

@media screen and (max-width: 812px) {
  #header #header_r {
    padding-right: 50px;
  }
}

/* remodal */
.remodal-overlay {
  background: rgba(0, 0, 0, 0.85) !important;
}

.remodal-close:before {
  font-family: 'Noto Sans JP',"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  color: #aaa !important;
  font-size: 30px !important;
}

@media screen and (max-width: 812px) {
  .remodal-close:before {
    font-size: 20px !important;
  }
}

@media screen and (max-width: 812px) {
  .remodal-close {
    top: -30px !important;
  }
}

.remodal.search_modal {
  background: none !important;
}

.remodal.search_modal p {
  font-size: 24px;
  text-align: center;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotateZ(0.03deg);
  color: #eee;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

@media screen and (max-width: 812px) {
  .remodal.search_modal p {
    font-size: 16px;
  }
}

.remodal.search_modal input[type="text"] {
  width: 80%;
  max-width: 700px;
  font-size: 16px;
  padding: 15px;
  border-radius: 5px;
  border: none;
  background: #eee;
}

.remodal.search_modal button.modal_search_bt {
  display: block;
  width: 200px;
  padding: 11px 0;
  background: #111;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotateZ(0.03deg);
  font-weight: 700;
  color: #f55d0b;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin: 30px auto;
  border: 1px solid #454545;
  cursor: pointer;
  line-height: normal;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.remodal.search_modal button.modal_search_bt img {
  vertical-align: bottom;
  margin-bottom: 3px;
  margin-right: 4px;
}

.remodal.search_modal button.modal_search_bt:hover {
  background: #000;
}

@media screen and (max-width: 812px) {
  .remodal.search_modal button.modal_search_bt {
    margin: 20px auto;
    font-size: 14px;
  }
}

/************************************************************
g navigation
************************************************************/
nav#gnavi {
  padding-top: 5px;
}

nav#gnavi ul {
  letter-spacing: -.40em;
  text-align: left;
  position: relative;
  z-index: 1;
}

nav#gnavi ul > li {
  display: inline-block;
  vertical-align: top;
  margin-right: 27px;
  text-align: center;
  color: #fff;
  letter-spacing: normal;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotateZ(0.03deg);
  font-weight: 700;
  font-size: 14px;
}

nav#gnavi ul > li:last-child {
  margin-right: 0;
}

nav#gnavi ul > li a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px 0 10px;
  position: relative;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

nav#gnavi ul > li a span {
  font-size: 15px;
  display: block;
  color: #222;
}

nav#gnavi ul > li a:after {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  width: 0;
  height: 2px;
  content: '';
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

@media screen and (max-width: 812px) {
  nav#gnavi ul > li a:after {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }
}

nav#gnavi ul > li a.parentLink:after, nav#gnavi ul > li a.current:after, nav#gnavi ul > li a:hover:after {
  opacity: 1;
  right: auto;
  left: 0;
  width: 100%;
  height: 2px;
}

nav#gnavi ul > li.pulldown_bt {
  position: relative;
}

nav#gnavi ul > li.pulldown_bt ul {
  position: absolute;
  top: 36px;
  left: 0;
  display: none;
  background: #191919;
  padding: 10px 0 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

nav#gnavi ul > li.pulldown_bt ul li {
  display: block;
  width: 195px;
  text-align: left;
  margin-right: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

nav#gnavi ul > li.pulldown_bt ul li a {
  padding: 15px;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotateZ(0.03deg);
  background: url("../image/icon_arrow.svg") 10px center no-repeat;
  background-size: 5px;
  padding-left: 22px;
}

nav#gnavi ul > li.pulldown_bt ul li a:hover {
  color: #f55d0b;
  background-color: rgba(255, 255, 255, 0.05);
}

nav#gnavi ul > li.pulldown_bt ul li a:after {
  content: none;
}

@media screen and (max-width: 1200px) {
  nav#gnavi ul > li {
    font-size: 13px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 812px) {
  nav#gnavi {
    display: none;
  }
}

nav#gnavi > div.flex_bet p {
  font-size: 15px;
  width: auto;
}

nav#gnavi > div.flex_bet p a {
  background: #ffc300;
  display: block;
  padding: 9px 20px;
  color: #223C61;
  letter-spacing: normal;
  border-radius: 50px;
  font-weight: 700;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

nav#gnavi > div.flex_bet p a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/************************************************************
pagetop
************************************************************/
#topcontrol {
  z-index: 2;
}

#topcontrol a {
  display: block;
  width: 50px;
  height: 50px;
  background: #000;
  position: relative;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  opacity: 0.4;
  border-radius: 100%;
  background-blend-mode: overlay;
}

@media screen and (max-width: 812px) {
  #topcontrol a {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }
}

#topcontrol a:before {
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
  display: block;
  position: absolute;
  top: 45%;
  left: 40%;
}

#topcontrol a:hover {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  opacity: 1;
}

@media screen and (max-width: 812px) {
  #topcontrol a:hover {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }
}

@media screen and (max-width: 812px) {
  #topcontrol {
    transform: scale(0.85);
  }
}

/************************************************************
title
************************************************************/
.t1 {
  position: relative;
}

.t1 > span {
  padding-left: 73px;
  display: block;
  font-size: 40px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  letter-spacing: 0.05em;
  transform: translate(-20px, 0);
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  transition-delay: 0.4s;
}

.t1 > span > span {
  display: block;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotateZ(0.03deg);
  font-size: 14px;
  margin-top: 3px;
  letter-spacing: normal;
}

@media screen and (max-width: 812px) {
  .t1 > span > span {
    font-size: 2.66667vw;
    margin-top: 0;
  }
}

@media screen and (max-width: 812px) {
  .t1 > span {
    font-size: 7.2vw;
    padding-left: 5.33333vw;
    transform: translate(-15px, 0);
  }
}

.t1:before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #f55d0b;
  transform: translate(-60px, 0);
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

@media screen and (max-width: 812px) {
  .t1:before {
    width: 4.53333vw;
    top: 3.5vw;
    transform: translate(-34px, 0);
  }
}

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

.t1.pt2 > span {
  padding-left: 0;
  transition-delay: 0;
}

.t1.pt2:before {
  content: none;
}

.t1.active > span {
  transform: translate(0, 0);
  opacity: 1;
}

.t1.active:before {
  transform: translate(0, 0);
}

@media screen and (max-width: 812px) {
  .t1 {
    margin-bottom: 6.66667vw;
  }
}

/************************************************************
topics
************************************************************/
.topics_list ul li {
  margin-bottom: 15px;
}

.topics_list ul li a > time {
  font-family: 'Beleren';
  font-size: 17px;
  width: 90px;
}

@media screen and (max-width: 1500px) {
  .topics_list ul li a > time {
    width: 85px;
  }
}

@media screen and (max-width: 812px) {
  .topics_list ul li a > time {
    font-size: 3.2vw;
    width: 15vw;
    padding-top: 2px;
  }
}

.topics_list ul li a > i.topics_cat {
  margin-right: 10px;
  color: #fff;
  width: 76px;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  line-height: 1.1;
  padding-top: 3px;
}

.topics_list ul li a > i.topics_cat.strategy > span {
  background: #3a69b8;
}

.topics_list ul li a > i.topics_cat.secret > span {
  background: #81af27;
}

.topics_list ul li a > i.topics_cat.info > span {
  background: #df4343;
}

.topics_list ul li a > i.topics_cat.pr > span {
  background: #cf973f;
}

.topics_list ul li a > i.topics_cat.story > span {
  background: #2fb6a1;
}

.topics_list ul li a > i.topics_cat.column > span {
  background: #c2559d;
}

.topics_list ul li a > i.topics_cat.reading > span {
  background: #7952d3;
}

.topics_list ul li a > i.topics_cat > span {
  background: #df4343;
  display: block;
  width: 100%;
  padding: 2px 0 4px;
}

@media screen and (max-width: 1500px) {
  .topics_list ul li a > i.topics_cat {
    margin-right: 10px;
  }
}

@media screen and (max-width: 812px) {
  .topics_list ul li a > i.topics_cat {
    font-size: 2.4vw;
    width: 13.5vw;
  }
}

.topics_list ul li a > span {
  font-size: 15px;
  width: calc(100% - 210px);
}

@media screen and (max-width: 1500px) {
  .topics_list ul li a > span {
    width: calc(100% - 200px);
  }
}

@media screen and (max-width: 812px) {
  .topics_list ul li a > span {
    font-size: 3.2vw;
    width: calc(100% - 35vw);
    line-height: 1.5;
  }
}

.topics_list ul li a:hover {
  text-decoration: none;
  transform: translate(5px, 0);
}

@media screen and (max-width: 812px) {
  .topics_list ul li a:hover {
    transform: none;
  }
}

/************************************************************
footer arena
************************************************************/
#footer_arena_block {
  padding: 100px 0 105px;
  text-align: center;
  background: url("../image/footer_arena_bg.jpg") center top no-repeat;
  background-size: cover;
}

#footer_arena_block h3 {
  width: 230px;
  margin: 0 auto;
}

@media screen and (max-width: 812px) {
  #footer_arena_block h3 {
    width: 165px;
  }
}

#footer_arena_block p {
  font-size: 34px;
  letter-spacing: 0.2em;
  color: #fff;
  line-height: 1.1;
  font-weight: 300;
  margin: 70px 0 100px;
}

@media screen and (max-width: 812px) {
  #footer_arena_block p {
    font-size: 4.8vw;
    letter-spacing: 0.12em;
    margin-top: 12vw;
    margin-bottom: 10.66667vw;
  }
}

#footer_arena_block .flex_center {
  margin-top: 35px;
}

#footer_arena_block .flex_center li {
  width: 180px;
  margin: 0 15px;
}

#footer_arena_block .flex_center li:first-child {
  width: 165px;
}

@media screen and (max-width: 812px) {
  #footer_arena_block .flex_center li {
    width: 40vw;
    margin: 0 1.5vw;
  }
  #footer_arena_block .flex_center li:first-child {
    width: 40vw;
    padding: 0 2vw;
  }
}

@media screen and (max-width: 812px) {
  #footer_arena_block .flex_center {
    margin-top: 0;
  }
}

@media screen and (max-width: 812px) {
  #footer_arena_block {
    padding: 23.46667vw 0 32vw;
    background: url("../image/footer_arena_bg_sp.jpg") center top no-repeat;
    background-size: cover;
  }
}

/************************************************************
common bt
************************************************************/
.common_bt {
  display: inline-block;
  text-align: center;
  line-height: 1;
  max-width: 260px;
  width: 80%;
  margin-top: 60px;
}

.common_bt a {
  position: relative;
  width: 100%;
  display: block;
  text-decoration: none;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.07em;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotateZ(0.03deg);
  -webkit-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -moz-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -ms-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -o-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  font-weight: 700;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
  background: #e94a25;
  background: -moz-linear-gradient(90deg, rgba(233, 74, 37, 0.9) 0%, rgba(255, 151, 15, 0.9) 100%);
  background: -webkit-linear-gradient(90deg, rgba(233, 74, 37, 0.9) 0%, rgba(255, 151, 15, 0.9) 100%);
  background: linear-gradient(90deg, rgba(233, 74, 37, 0.9) 0%, rgba(255, 151, 15, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e94a25",endColorstr="#ff970f",GradientType=1);
}

@media screen and (max-width: 812px) {
  .common_bt a {
    font-size: 13px;
    letter-spacing: normal;
  }
}

.common_bt a:before {
  position: absolute;
  content: '';
  top: -3px;
  left: -3px;
  width: 15px;
  height: 15px;
  border-top: 1px solid #ef7a5f;
  border-left: 1px solid #ef7a5f;
  -webkit-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -moz-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -ms-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -o-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
}

.common_bt a:after {
  position: absolute;
  content: '';
  bottom: -3px;
  right: -3px;
  width: 15px;
  height: 15px;
  border-bottom: 1px solid #ef7a5f;
  border-right: 1px solid #ef7a5f;
  -webkit-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -moz-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -ms-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -o-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
}

.common_bt a > span {
  overflow: hidden;
  display: block;
  position: relative;
  padding: 20px 8px 18px;
  z-index: 1;
}

.common_bt a > span:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 0;
  border-color: #fff transparent transparent transparent;
  -webkit-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -moz-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -ms-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -o-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  z-index: -1;
}

.common_bt a > span:after {
  content: '';
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 11px 11px;
  border-color: transparent transparent #fff transparent;
  -webkit-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -moz-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -ms-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -o-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  z-index: -1;
}

@media screen and (max-width: 812px) {
  .common_bt a > span {
    padding: 15px 5px 14px;
  }
}

.common_bt a:hover {
  letter-spacing: 0.2em;
}

.common_bt a:hover:before, .common_bt a:hover:after {
  width: 100%;
  height: 100%;
}

.common_bt a:hover span:before {
  left: 0;
  top: 0;
  border-width: 200px 200px 0 0;
  border-color: #fff transparent transparent transparent;
  opacity: 0.1;
}

.common_bt a:hover span:after {
  right: 0;
  bottom: 0;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent #fff transparent;
  opacity: 0.1;
}

.common_bt.pt2 {
  width: 220px;
}

.common_bt.pt2 a > span {
  padding: 15px 8px 13px;
}

.common_bt.eng a {
  letter-spacing: 0.2em;
}

.common_bt.eng a:hover {
  letter-spacing: 0.3em;
}

.common_bt2 {
  display: inline-block;
  text-align: center;
  line-height: 1;
  max-width: 380px;
  width: 80%;
  margin-top: 30px;
}

.common_bt2 a {
  position: relative;
  width: 100%;
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.07em;
  font-family: 'M PLUS 1p', sans-serif;
  transform: rotateZ(0.03deg);
  -webkit-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -moz-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -ms-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -o-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  font-weight: 700;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
  background: #e94a25;
  background: -moz-linear-gradient(90deg, rgba(233, 74, 37, 0.8) 0%, rgba(255, 151, 15, 0.8) 100%);
  background: -webkit-linear-gradient(90deg, rgba(233, 74, 37, 0.8) 0%, rgba(255, 151, 15, 0.8) 100%);
  background: linear-gradient(90deg, rgba(233, 74, 37, 0.8) 0%, rgba(255, 151, 15, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e94a25",endColorstr="#ff970f",GradientType=1);
}

@media screen and (max-width: 812px) {
  .common_bt2 a {
    font-size: 18px;
    letter-spacing: normal;
    padding: 18px 10px 16px;
  }
}

.common_bt2 a:before {
  position: absolute;
  content: '';
  top: -3px;
  left: -3px;
  width: 15px;
  height: 15px;
  border-top: 1px solid #e9e9e9;
  border-left: 1px solid #e9e9e9;
  -webkit-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -moz-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -ms-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -o-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
}

.common_bt2 a:after {
  position: absolute;
  content: '';
  bottom: -3px;
  right: -3px;
  width: 15px;
  height: 15px;
  border-bottom: 1px solid #e9e9e9;
  border-right: 1px solid #e9e9e9;
  -webkit-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -moz-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -ms-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -o-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
}

.common_bt2 a > span {
  overflow: hidden;
  display: block;
  position: relative;
  padding: 23px 8px 21px;
  z-index: 1;
}

.common_bt2 a > span:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 0;
  border-color: #e9e9e9 transparent transparent transparent;
  -webkit-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -moz-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -ms-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -o-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  z-index: -1;
}

.common_bt2 a > span:after {
  content: '';
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 11px 11px;
  border-color: transparent transparent #e9e9e9 transparent;
  -webkit-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -moz-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -ms-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  -o-transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  transition: all 0.5s cubic-bezier(0.66, 0.12, 0, 0.98);
  z-index: -1;
}

.common_bt2 a:hover {
  letter-spacing: 0.2em;
}

.common_bt2 a:hover:before, .common_bt2 a:hover:after {
  width: 100%;
  height: 100%;
}

.common_bt2 a:hover span:before {
  left: 0;
  top: 0;
  border-width: 250px 250px 0 0;
  border-color: #fff transparent transparent transparent;
  opacity: 0.1;
}

.common_bt2 a:hover span:after {
  right: 0;
  bottom: 0;
  border-width: 0 0 250px 250px;
  border-color: transparent transparent #fff transparent;
  opacity: 0.1;
}

.common_bt2.pt2 {
  width: 220px;
}

.common_bt2.pt2 a {
  letter-spacing: 0.2em;
}

.common_bt2.pt2 a > span {
  padding: 15px 8px 13px;
}

.common_bt2.pt2 a:hover {
  letter-spacing: 0.3em;
}

@media screen and (max-width: 812px) {
  .common_bt2 {
    width: 100%;
  }
}

/************************************************************
footer
************************************************************/
footer {
  /* CSS Document */
  /************************************************************
    FONT SIZE
    ************************************************************/
  /*html.fontChange1{font-size:62.5%;}
    html.fontChange2{font-size:70%;}*/
  /************************************************************
    HTML TAGS
    ************************************************************/
  min-width: 1200px;
  position: relative;
  z-index: 1;
  padding: 40px 0 15px;
  background: #111111;
  background: -moz-linear-gradient(153deg, #111111 20%, #581007 100%);
  background: -webkit-linear-gradient(153deg, #111111 20%, #581007 100%);
  background: linear-gradient(153deg, #111111 20%, #581007 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111111",endColorstr="#581007",GradientType=1);
}

footer html {
  font-size: 62.5%;
}

footer body {
  font-size: 16px;
  font-size: 1.6rem;
}

footer p, footer li, footer dt, footer dd, footer th, footer td, footer textarea {
  font-size: 16px;
  font-size: 1.6rem;
}

footer * {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
}

footer html, footer body {
  color: #222;
  font-family: 'Noto Sans JP',"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.03em;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  background: #fff;
}

footer p {
  line-height: 2;
  font-weight: 400;
  letter-spacing: normal;
  font-size: 16px;
  font-size: 1.6rem;
}

footer dd, footer dt {
  line-height: 1.6;
  letter-spacing: normal;
  font-size: 14px;
}

footer dt {
  font-weight: bold;
  letter-spacing: normal;
}

footer li {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: normal;
}

footer th {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: normal;
}

footer td {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: normal;
}

footer ul, footer ol {
  list-style-type: none;
}

footer img {
  vertical-align: bottom;
  letter-spacing: normal;
  max-width: 100%;
}

footer hr {
  margin: 0px;
  padding: 0px;
}

footer address {
  font-style: normal;
}

footer a {
  color: #222;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

footer a:hover {
  text-decoration: underline;
  /*color: #00bfaf;*/
  color: #222;
}

footer a img {
  border: none;
}

@media screen and (max-width: 812px) {
  footer p {
    line-height: 1.8;
  }
  footer p, footer li, footer dt, footer dd, footer th, footer td {
    font-size: 14px;
    font-size: 1.4rem;
  }
  footer a {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }
}

footer .footer_sns_box li {
  width: 37px;
  margin: 0 7px;
}

@media screen and (max-width: 812px) {
  footer .footer_sns_box li {
    width: 40px;
    margin: 0 9px;
  }
}

footer .footer_sales_link_box {
  margin-top: 20px;
}

footer .footer_sales_link_box li {
  margin: 0 15px;
  width: 125px;
}

footer .footer_sales_link_box li:last-child {
  width: 85px;
}

@media screen and (max-width: 812px) {
  footer .footer_sales_link_box li:last-child {
    width: 80px;
  }
}

@media screen and (max-width: 812px) {
  footer .footer_sales_link_box li {
    width: 120px;
  }
}

footer .footer_link_box {
  width: 700px;
  margin: 60px auto 0;
}

footer .footer_link_box ul li {
  font-size: 13px;
  margin: 0 12px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 10px;
}

footer .footer_link_box ul li a {
  color: #aaa;
}

@media screen and (max-width: 812px) {
  footer .footer_link_box ul li {
    font-size: 3.2vw;
    width: 50%;
    margin: 0 0 4.8vw;
    letter-spacing: -0.03em;
    padding-left: 2vw;
  }
}

@media screen and (max-width: 812px) {
  footer .footer_link_box ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 812px) {
  footer .footer_link_box {
    width: 90%;
    text-align: left;
    margin-top: 12vw;
  }
}

footer .footer_logo_box {
  margin-top: 25px;
}

footer .footer_logo_box ul li {
  margin: 0 18px;
}

footer .footer_logo_box ul li:first-child {
  width: 150px;
}

@media screen and (max-width: 812px) {
  footer .footer_logo_box ul li:first-child {
    width: 34vw;
  }
}

footer .footer_logo_box ul li:last-child {
  width: 95px;
}

@media screen and (max-width: 812px) {
  footer .footer_logo_box ul li:last-child {
    width: 25vw;
  }
}

@media screen and (max-width: 812px) {
  footer .footer_logo_box ul li {
    margin: 0 3vw;
  }
}

@media screen and (max-width: 812px) {
  footer .footer_logo_box {
    margin-top: 5.33333vw;
  }
}

footer #copyright {
  display: block;
  text-align: center;
  font-size: 14px;
  font-family: 'Cormorant Garamond', serif;
  color: #888;
  line-height: 1.3;
  margin-top: 32px;
}

@media screen and (max-width: 812px) {
  footer #copyright {
    font-size: 12px;
    margin-top: 5.33333vw;
  }
}

@media screen and (max-width: 812px) {
  footer {
    min-width: 0;
    width: 100%;
  }
}

/*# sourceMappingURL=parts.css.map */