@charset "UTF-8";
.btn_white {
  display: block;
  border: 1px solid #f58030;
  background: #fff;
  color: #f58030;
  text-align: center;
  padding: 1em;
  border-radius: 40px;
  text-decoration: none;
}

.btn_orange, header .menu_content .btn a {
  display: block;
  border: 1px solid #f58030;
  background: #f58030;
  color: #fff;
  text-align: center;
  padding: 1em;
  border-radius: 40px;
  text-decoration: none;
}

@media all and (min-width: 768px) {
  .btn_white {
    display: inline-block;
    padding: 1em 65px;
  }
  .btn_orange, header .menu_content .btn a {
    display: inline-block;
    padding: 1em 65px;
  }
}

/* arrow_s */
.arrow_s {
  position: relative;
  padding: 0 0 0 32px;
  display: inline-block;
  vertical-align: middle;
}

.arrow_s:before,
.arrow_s:after {
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
}

.arrow_s:before {
  left: 0px;
  width: 14px;
  height: 1px;
  background: #f58030;
}

.arrow_s:after {
  left: 8px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #f58030;
  border-right: 1px solid #f58030;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* arrow_m */
.arrow_m {
  position: relative;
  padding: 0 0 0 45px;
  display: inline-block;
  vertical-align: middle;
}

.arrow_m:before,
.arrow_m:after {
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
}

.arrow_m:before {
  left: 0;
  width: 18px;
  height: 1px;
  background: #f58030;
}

.arrow_m:after {
  left: 12px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #f58030;
  border-right: 1px solid #f58030;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* arrow_w */
.arrow_w {
  position: relative;
  padding: 0 0 0 45px;
  display: inline-block;
  vertical-align: middle;
}

.arrow_w:before,
.arrow_w:after {
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
}

.arrow_w:before {
  left: 0;
  width: 18px;
  height: 1px;
  background: #fff;
}

.arrow_w:after {
  left: 12px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ---------------------------------------------------------
$ useful
----------------------------------------------------------*/
/* ホバーアニメ */
@media all and (min-width: 768px) {
  .hover {
    -webkit-transition-property: opacity;
    -webkit-transition-duration: 0.2s;
    -o-transition-property: opacity;
    transition-property: opacity;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }
  .hover:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha(opacity=60)";
  }
}

/* 文字・インデント関係 */
.ti_1 {
  text-indent: -1em;
  padding-left: 1em;
}

.ls_05 {
  letter-spacing: 0.5px;
}

.t_center {
  text-align: center;
}

.t_left {
  text-align: left;
}

.t_right {
  text-align: right;
}

.fw_800 {
  font-weight: bold;
}

.fw_500 {
  font-weight: 500;
}

/* list style */
.disc {
  list-style: disc;
  text-indent: -1em;
  padding-left: 1em;
}

.decimal {
  list-style: decimal;
  text-indent: -1em;
  padding-left: 1em;
}

body {
  color: #333;
  font-family: Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
}

@media all and (min-width: 768px) {
  body {
    min-width: 1200px;
  }
}

.inner {
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

@media all and (min-width: 768px) {
  .inner {
    width: 1200px;
  }
}

/* useful.css */
@media all and (min-width: 768px) {
  .pc_obj {
    display: block;
    overflow: hidden;
  }
  .sp_obj {
    display: none;
  }
}

@media all and (max-width: 768px) {
  .pc_obj {
    display: none;
  }
  .sp_obj {
    display: block;
  }
  img {
    width: 100%;
    height: auto;
  }
}

.orange {
  color: #f58030;
}

.w100 {
  width: 100%;
  height: auto;
}

.icon_dl:before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 18px;
  vertical-align: top;
  background: url(/common/img/icon_download.png) center no-repeat;
  background-size: contain;
  margin-right: 1.2em;
  margin-left: -14px;
}

.underline_y span {
  display: inline-block;
  padding: 0 0.5em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ffe352), color-stop(100%, #ffe352), to(transparent));
  background: -webkit-linear-gradient(transparent 50%, #ffe352 50%, #ffe352 100%, transparent 100%);
  background: -o-linear-gradient(transparent 50%, #ffe352 50%, #ffe352 100%, transparent 100%);
  background: linear-gradient(transparent 50%, #ffe352 50%, #ffe352 100%, transparent 100%);
  letter-spacing: 0.05em;
}

.backline span {
  display: inline-block;
  padding: 0.25em 0.25em 0.15em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(8%, transparent), color-stop(8%, #f58030), color-stop(92%, #f58030), color-stop(92%, transparent));
  background: -webkit-linear-gradient(transparent 8%, #f58030 8%, #f58030 92%, transparent 92%);
  background: -o-linear-gradient(transparent 8%, #f58030 8%, #f58030 92%, transparent 92%);
  background: linear-gradient(transparent 8%, #f58030 8%, #f58030 92%, transparent 92%);
  letter-spacing: 0.08em;
  color: #ffffff;
}

@media all and (min-width: 768px) {
  .backline span {
    padding: 0.15em 0.25em 0.05em;
  }
}

/* ---------------------------------------------------------
$ header footer
----------------------------------------------------------*/
/*--------------------
  header
--------------------*/
header {
  position: fixed;
  width: 100%;
  padding-top: 13%;
  background: transparent;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  z-index: 1000;
}

.scrolled header {
  background: rgba(255, 255, 255, 0.98);
}

.scrolled header:after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background: url(../img/shadow.png) center repeat-x;
  position: absolute;
  bottom: -5px;
}

header .header_logo {
  position: absolute;
  width: 39%;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 0;
}

@media all and (max-width: 768px) {
  header .header_logo img {
    width: 100%;
    height: auto;
  }
}

header .menu_open {
  position: absolute;
  top: 50%;
  right: 5.3%;
  width: 7.2%;
  line-height: 0;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

header .menu_open img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

header .menu_content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.96);
  display: none;
  z-index: 10000;
}

header .menu_content .menu_close {
  text-align: right;
  margin-top: 4.9%;
  margin-right: -2%;
  line-height: 0;
}

header .menu_content .menu_close img {
  width: 6.3%;
  cursor: pointer;
}

header .menu_content .menu_main {
  margin-top: 5%;
  margin-bottom: 9.2%;
}

header .menu_content .menu_main li {
  line-height: 2.5;
  font-size: 17px;
}

header .menu_content .menu_main li a {
  font-size: 17px;
  color: #000;
  text-decoration: none;
}

header .menu_content .menu_app {
  width: 100%;
}

header .menu_content .btn {
  margin-top: 5.6%;
}

header .menu_content .btn a {
  display: block;
}

@media all and (min-width: 768px) {
  header {
    padding: 0;
    height: 88px;
  }
  header .header_logo {
    width: auto;
    left: 44px;
    z-index: 1;
  }
  header .header_logo a {
    display: block;
    width: 257px;
    height: 33px;
    background: url(../img/logo_pc_black.png) center no-repeat;
    -webkit-transition: background 0.2s;
    -o-transition: background 0.2s;
    transition: background 0.2s;
  }
  body.scrolled header .header_logo a {
    background: url(../img/logo_pc_black.png) center no-repeat;
  }
  header .header_app {
    position: absolute;
    right: 44px;
    top: 11px;
  }
  header .header_app li {
    display: inline-block;
  }
  header .header_app li + li {
    margin-left: 5px;
  }
  header .menu_content {
    display: block !important;
    position: static;
    height: auto;
    background: none;
    /* SPメニューは非表示 */
  }
  header .menu_content .sp_obj {
    display: none !important;
  }
  header .menu_content .inner {
    width: 100%;
    min-width: 1200px;
    position: relative;
  }
  header .menu_content ul {
    text-align: center;
    line-height: 25px;
    padding-top: 19px;
    /* padding-right: 21%; */
    float: left;
  }
  header .menu_content ul li {
    display: inline-block;
    position: relative;
    margin: 0 15px;
    padding: 0 15px;
    display: table-cell;
    vertical-align: middle;
  }
  header .menu_content ul li a {
    color: #333333;
    font-size: 14px;
  }
  header .menu_content ul li a:before {
    content: '';
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  header .menu_content ul li a:hover:before {
    background: #f36b30;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  header .menu_content .download {
    position: absolute;
    right: 47px;
    top: 14px;
    margin-top: 0;
  }
  header .menu_content .download01 {
    width: 155px;
    float: left;
    /* position: absolute; */
    /* right: 180px; */
    /* top: 14px; */
    margin-top: 0;
    padding-top: 19px;
  }
  header .menu_content .download02 {
    width: 155px;
    float: left;
    /* position: absolute; */
    /* right: 10px; */
    /* top: 14px; */
    margin-top: 0;
    padding-top: 19px;
  }
  header .menu_content .download01 img,
  header .menu_content .download02 img {
    width: 100%;
  }
}

/* アプリDLパーツ */
@media all and (max-width: 768px) {
  .menu_app {
    width: 89.5%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .menu_app li {
    float: left;
    width: 48.8%;
  }
  .menu_app li + li {
    float: right;
  }
  .menu_mymdl {
    width: 89.5%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    }
  .menu_mymdl a {
        color: #f58030;
        font-weight: 700;
    }
}

@media all and (min-width: 768px) {
  .menu_app {
    width: 392px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .menu_app li {
    float: left;
    width: 191px;
  }
  .menu_app li + li {
    float: right;
  }
  .menu_app li img {
    width: 100%;
    height: auto;
  }
  .menu_mymdl {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    text-align: center;
    }
  .menu_mymdl a {
        color: #f58030;
        font-weight: 700;
    }
}

/*--------------------
  footer
--------------------*/
footer .links {
  border-top: 1px solid #e1e1e1;
}

footer .links li {
  float: left;
/* 2列の時はこちら */
/*  width: 50%;*/
  width: 100%;
  text-align: center;
}

footer .links li + li {
  border-left: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

footer .links li a {
  color: #000;
  padding: 1.5em 0;
  display: block;
  font-weight: bold;
  letter-spacing: 0.08em;
  font-size: 16px;
}

footer .footer_app {
  background: url(../img/bg_footer_01_sp.jpg) center no-repeat #f58030;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding-top: 18%;
  padding-bottom: 22.6%;
}

footer .footer_app .ttl {
  margin-bottom: 4.75%;
}

footer .footer_app .ttl + p {
  font-size: 25px;
  line-height: 1.46;
  font-weight: bold;
  margin-bottom: 7.9%;
  letter-spacing: 0.06em;
}

@media all and (max-width: 320px) {
  footer .footer_app .ttl + p {
    font-size: 22px;
  }
}

footer .footer_menu {
  padding-top: 11.5%;
  padding-bottom: 6.6%;
  background: #1c1b20;
  border-bottom: 1px solid #49494c;
}

@media all and (max-width: 768px) {
  footer .footer_menu .pc_only {
    width: 100%;
  }
}

footer .footer_menu .menu {
  text-align: center;
  margin-bottom: 1em;
  padding: 0 1em;
  font-size: 14px;
}

@media all and (max-width: 320px) {
  footer .footer_menu .menu {
    padding: 0;
    font-size: 13px;
  }
}

footer .footer_menu .menu li {
  display: inline-block;
}

footer .footer_menu .menu li + li {
  margin-left: calc(2em - 4px);
}

footer .footer_menu .menu li a {
  color: #fff;
}

footer .footer_menu .sns {
  display: table;
  width: 100%;
  margin-top: 12.4%;
  margin-bottom: 15%;
}

footer .footer_menu .sns p, footer .footer_menu .sns ul {
  display: table-cell;
  width: 50%;
}

footer .footer_menu .sns p {
  font-size: 15px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}

footer .footer_menu .sns ul li {
  width: 32%;
  float: left;
}

footer .footer_menu .sns ul li + li {
  margin-left: 9.2%;
}

footer .footer_menu .copyright {
  text-align: center;
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
}

@media all and (min-width: 768px) {
  footer .links li a {
    font-size: 24px;
    letter-spacing: 0.08em;
  }
  footer .footer_app {
    background: url(../img/bg_footer_01_pc.jpg) center no-repeat #f58030;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding-top: 154px;
    padding-bottom: 138px;
  }
  footer .footer_app .ttl {
    margin-bottom: 35px;
  }
  footer .footer_app .ttl + p {
    font-size: 38px;
    line-height: 1.44;
    font-weight: bold;
    margin-bottom: 45px;
    letter-spacing: 0.06em;
  }
  footer .footer_menu {
    padding-top: 40px;
    padding-bottom: 52px;
  }
  footer .footer_menu .menu {
    text-align: center;
    margin-bottom: 0;
    padding: 0;
    font-size: 14px;
    display: inline-block;
    float: left;
    line-height: 50px;
    min-height: 50px;
  }
  footer .footer_menu .menu + .menu {
    padding-left: calc(2em - 4px);
  }
  footer .footer_menu .menu li {
    display: inline-block;
  }
  footer .footer_menu .menu li + li {
    margin-left: calc(2em - 4px);
  }
  footer .footer_menu .menu li a:hover {
    text-decoration: underline;
  }
  footer .footer_menu .sns {
    display: table;
    float: right;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  footer .footer_menu .sns p, footer .footer_menu .sns ul {
    width: auto;
  }
  footer .footer_menu .sns p {
    text-align: right;
    padding-right: 14px;
  }
  footer .footer_menu .sns ul li {
    width: 50px;
    float: left;
  }
  footer .footer_menu .sns ul li + li {
    margin-left: 14px;
  }
  footer .footer_menu .sns ul li img {
    width: 100%;
    height: auto;
  }
  footer .footer_menu .copyright {
    clear: both;
    text-align: left;
    font-size: 11px;
    line-height: 1;
  }
}

/*--------------------
  下層共通
--------------------*/
#content .inner {
  width: 89.33333%;
  margin-left: auto;
  margin-right: auto;
}

@media all and (min-width: 768px) {
  #content .inner {
    width: 1200px;
  }
}

#content .mv_under {
  background: url(../img/bg_under_sp.jpg) center no-repeat;
  text-align: center;
  vertical-align: middle;
  background-size: cover;
  width: 100%;
  padding-top: 60%;
  position: relative;
  margin-bottom: 9%;
}

#content .mv_under .ttl_under {
  position: absolute;
  top: 50%;
  width: 100%;
  font-size: 35px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0.5em;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

#content .mv_under .ttl_under span {
  display: inline-block;
  padding: 0 10px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffe352), color-stop(90%, #ffe352), color-stop(90%, transparent));
  background: -webkit-linear-gradient(transparent 60%, #ffe352 60%, #ffe352 90%, transparent 90%);
  background: -o-linear-gradient(transparent 60%, #ffe352 60%, #ffe352 90%, transparent 90%);
  background: linear-gradient(transparent 60%, #ffe352 60%, #ffe352 90%, transparent 90%);
}

@media all and (min-width: 768px) {
  #content .mv_under {
    width: 100%;
    padding-top: 368px;
    background: url(../img/bg_under_pc.jpg) center no-repeat;
    background-size: cover;
    margin-bottom: 58px;
  }
  #content .mv_under .ttl_under {
    font-size: 58px;
  }
  #content .mv_under .ttl_under span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffe352), color-stop(85%, #ffe352), color-stop(85%, transparent));
    background: -webkit-linear-gradient(transparent 60%, #ffe352 60%, #ffe352 85%, transparent 85%);
    background: -o-linear-gradient(transparent 60%, #ffe352 60%, #ffe352 85%, transparent 85%);
    background: linear-gradient(transparent 60%, #ffe352 60%, #ffe352 85%, transparent 85%);
  }
  #content .mv_under .ttl_under span ~ span {
    margin-left: -10px;
    text-indent: -10px;
  }
}

/* ---------------------------------------------------------
$ arrow_anime ホバーで矢印アニメーション
----------------------------------------------------------*/
/*--------------------
  親BOX arrow_anime
--------------------*/
.arrow_anime a {
  display: block;
  text-align: center;
  font-size: 28px;
  color: #ff790c;
  -webkit-transition-property: background color;
  -o-transition-property: background color;
  transition-property: background color;
  -webkit-transition-duration: .6s;
  -o-transition-duration: .6s;
  transition-duration: .6s;
}

.arrow_anime a:hover {
  background: #ff790c;
  color: #fff;
}

.arrow_anime a > span {
  padding-left: 10px;
}

@media all and (max-width: 768px) {
  .arrow_anime a {
    font-size: 14px;
    font-weight: 700;
  }
}

.arrow_anime .c-arrow {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  line-height: 1;
  width: 14px;
  height: 10px;
}

/*--------------------
  基本設定 オレンジ→
--------------------*/
/* 線の指定 */
.c-arrow__line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-arrow__line:before, .c-arrow__line:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  top: calc(50% - 0.5px);
  height: 1px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-arrow__line:before {
  right: 0px;
  top: 5px;
  width: 4px;
  height: 4px;
  background: transparent;
  border-top: 1px solid #ff790c;
  border-right: 1px solid #ff790c;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.c-arrow__line:after {
  width: 14px;
  background: #ff790c;
}

.c-arrow__line.c-arrow__line--02 {
  opacity: 0;
}

.c-arrow__line.c-arrow__line--02:before {
  border-top: 1px solid #ff790c;
  border-right: 1px solid #ff790c;
}

.c-arrow__line.c-arrow__line--02:after {
  background: #ff790c;
}

/*--------------------
  オプション
--------------------*/
/* 白色→ */
.c-arrow--white .c-arrow__line--01:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.c-arrow--white .c-arrow__line--01:after {
  background: #fff;
}

.c-arrow--white .c-arrow__line--02:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.c-arrow--white .c-arrow__line--02:after {
  background: #fff;
}

/* 大きさ size14 */
.c-arrow--size14 {
  width: 14px;
  height: 12px;
  position: relative;
}

.c-arrow--size14 .c-arrow__line:before {
  right: 1px;
  top: 5px;
  width: 4px;
  height: 4px;
}

.c-arrow--size14 .c-arrow__line:after {
  width: 14px;
}

@media all and (min-width: 768px) {
  .c-arrow--size14 {
    width: 20px;
    height: 12px;
    position: relative;
  }
  .c-arrow--size14 .c-arrow__line:before {
    width: 6px;
    height: 6px;
  }
  .c-arrow--size14 .c-arrow__line:after {
    width: 20px;
  }
}

/* 大きさ size17 */
.c-arrow--size17 {
  width: 17px;
  height: 13px;
  position: relative;
}

.c-arrow--size17 .c-arrow__line:before {
  right: 1px;
  top: 5px;
  width: 5px;
  height: 5px;
}

.c-arrow--size17 .c-arrow__line:after {
  width: 17px;
}

@media all and (min-width: 768px) {
  .c-arrow--size17 {
    width: 24px;
    height: 14px;
    position: relative;
  }
  .c-arrow--size17 .c-arrow__line:before {
    width: 8px;
    height: 8px;
  }
  .c-arrow--size17 .c-arrow__line:after {
    width: 25px;
  }
}

/* アニメーションの向きを指定 */
a:hover .c-arrow--right .c-arrow__line--01 {
  -webkit-animation: toRight01 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: toRight01 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

a:hover .c-arrow--right .c-arrow__line--02 {
  -webkit-animation: toRight02 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s forwards;
  animation: toRight02 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s forwards;
}

/*--------------------
  keyframes
--------------------*/
/* toRight01 前 */
@-webkit-keyframes toRight01 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(8px, 0);
    transform: translate(8px, 0);
    opacity: 0;
  }
}

@keyframes toRight01 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(8px, 0);
    transform: translate(8px, 0);
    opacity: 0;
  }
}

/* toRight02 後 */
@-webkit-keyframes toRight02 {
  0% {
    -webkit-transform: translate(-8px, 0);
    transform: translate(-8px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes toRight02 {
  0% {
    -webkit-transform: translate(-8px, 0);
    transform: translate(-8px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@media all and (min-width: 768px) {
  header .menu_content .inner .pc_obj {
    float:right;
  }
  header .menu_content ul {
    text-align: center;
    line-height: 25px;
    padding-top: 19px;
    /* padding-right: 21%; */
    float: left;
  }
  header .menu_content ul li {
    display: inline-block;
    position: relative;
    margin: 0 15px;
    padding: 0 15px;
    display: table-cell;
    vertical-align: middle;
  }
  header .menu_content .download01 {
    width: 155px;
    float: left;
    /* position: absolute; */
    /* right: 180px; */
    /* top: 14px; */
    margin-top: 0;
    padding-top: 19px;
    padding-right: 15px;
  }
  header .menu_content .download02 {
    width: 155px;
    float: left;
    /* position: absolute; */
    /* right: 10px; */
    /* top: 14px; */
    margin-top: 0;
    padding-top: 19px;
    padding-right: 15px;
  }
}
@media all and (min-width: 1400px) {
  .pc-only-br{
    display:none;
  }
  header .menu_content ul {
    padding-top: 30px;
  }
}