@charset "UTF-8";
/* ==========================================================================
* 
*  Foundation
*  ブラウザのデフォルトスタイルの初期化や基本的なスタイル。
* 
*  ========================================================================*/
/* -----------------------------------------------------------------
*  reset
*  ---------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

main {
  display: block;
}

img {
  background-color: transparent;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
}

ol,
ul {
  list-style: none;
}

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

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

select::-ms-expand {
  display: none;
}

/* -----------------------------------------------------------------
*  base
*  ---------------------------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  position: relative;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  min-width: 1200px;
  color: #2A2A2A;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

sup {
  font-size: 50%;
  vertical-align: super;
}

input::-webkit-input-placeholder {
  color: #A2A2A2;
}

input::-moz-placeholder {
  color: #A2A2A2;
}

input:-ms-input-placeholder {
  color: #A2A2A2;
}

input::placeholder {
  color: #A2A2A2;
}

/* IE */
input:-ms-input-placeholder {
  color: #A2A2A2;
}

/* Edge */
input::-ms-input-placeholder {
  color: #A2A2A2;
}

/* ==========================================================================
* 
*  Vendor
*  外部提供CSS
* 
*  ========================================================================*/
/* ==========================================================================
* 
*  Layout
*  ヘッダー、フッター、サイドバー、メインコンテンツエリアなど、サイト全体のブロックに関するもの。
* 
*  ========================================================================*/
/* -----------------------------------------------------------------
*  loader
*  ---------------------------------------------------------------*/
.l-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 9999;
}

/* -----------------------------------------------------------------
/* -----------------------------------------------------------------
*  container
*  ---------------------------------------------------------------*/
/* -----------------------------------------------------------------
*  header
*  ---------------------------------------------------------------*/
.l-header {
  width: 100%;
}

.l-header__lgContents__holder {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 170px;
  height: 100vh;
  background-color: #fff;
  border-right: 1px solid #E3E3E3;
}

.l-header__lgContents__holder__logo {
  width: 128px;
  display: block;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1);
}

.l-header__lgContents__holder__logo:hover {
  transform: scale(1.05);
}

.l-header__lgContents__holder__nav__list__item__anchor {
  position: relative;
  display: block;
  padding: 12px 20px;
  color: #2A2A2A;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}

.l-header__lgContents__holder__nav__list__item__anchor:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  left: 20px;
  background-color: #006FFF;
  width: 0;
  height: 1px;
  transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}

.l-header__lgContents__holder__nav__list__item__anchor[target="_blank"]:after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url(/assets/images/common/icon_blank.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-left: 10px;
}

.l-header__lgContents__holder__nav__list__item__anchor:hover {
  color: #006FFF;
}

.l-header__lgContents__holder__nav__list__item__anchor.is-selected {
  color: #006FFF;
}

.l-header__lgContents__holder__nav__list__item__anchor.is-selected:before {
  width: calc(100% - 20px);
}

.l-header__lgContents__holder__nav__list__item__anchor.is-current {
  color: #006FFF;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder {
  position: absolute;
  top: 0;
  left: 170px;
  background-color: #fff;
  width: 0;
  overflow: hidden;
  height: 100vh;
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  box-shadow: 13px 0px 13px 0 rgba(0, 0, 0, 0.06);
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder__fig {
  width: 257px;
  margin-bottom: 30px;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder__head {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 0 30px;
  width: 257px;
  opacity: 0;
  transform: translateX(-10px);
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder__list {
  width: 257px;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder__list__item {
  opacity: 0;
  transform: translateX(-10px);
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder__list__item__anchor {
  position: relative;
  display: block;
  padding: 12px 30px 12px 45px;
  color: #2A2A2A;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder__list__item__anchor:hover {
  color: #006FFF;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder__list__item__anchor.is-current {
  color: #006FFF;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder__list__item__anchor:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #006FFF;
  position: absolute;
  left: 30px;
  top: 22px;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder.is-slided {
  width: 257px;
  z-index: 2;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder.is-slided .l-header__lgContents__holder__nav__list__item__subMenuHolder__head {
  opacity: 1;
  transform: translateX(0);
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder.is-slided .l-header__lgContents__holder__nav__list__item__subMenuHolder__list__item {
  opacity: 1;
  transform: translateX(0);
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder.is-slided .l-header__lgContents__holder__nav__list__item__subMenuHolder__list__item:nth-child(1) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder.is-slided .l-header__lgContents__holder__nav__list__item__subMenuHolder__list__item:nth-child(2) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.35s;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder.is-slided .l-header__lgContents__holder__nav__list__item__subMenuHolder__list__item:nth-child(3) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder.is-slided .l-header__lgContents__holder__nav__list__item__subMenuHolder__list__item:nth-child(4) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.45s;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder.is-slided .l-header__lgContents__holder__nav__list__item__subMenuHolder__list__item:nth-child(5) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
}

.l-header__lgContents__holder__nav__list__item__subMenuHolder.is-slided .l-header__lgContents__holder__nav__list__item__subMenuHolder__list__item:nth-child(6) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.55s;
}

.l-header__lgContents__holder__language {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 0;
  border-top: 1px solid #E3E3E3;
}

.l-header__lgContents__holder__language__eachLanguage {
  display: inline-block;
  width: 50%;
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  font-size: 1.4rem;
  color: #2A2A2A;
  text-align: center;
  padding: 20px;
  background-color: #fff;
}

.l-header__lgContents__holder__language__eachLanguage[data-language="en"] {
  border-left: 1px solid #E3E3E3;
}

.l-header__lgContents__holder__language__eachLanguage.is-current, .l-header__lgContents__holder__language__eachLanguage:hover {
  font-weight: 600;
  color: #006FFF;
}

.l-header__xsContents__holder {
  position: fixed;
  width: 100%;
  height: 64px;
  background-color: #fff;
  box-shadow: 0px 0px 13px 0 rgba(0, 0, 0, 0.12);
  z-index: 5000;
}

.l-header__xsContents__holder__logo {
  width: 90px;
  display: block;
  position: absolute;
  top: 10px;
  left: 6.666666666%;
}

.l-header__xsContents__holder__menuBtn {
  position: absolute;
  top: 10px;
  right: 6.666666666%;
  width: 40px;
  height: 40px;
  transform: translateX(10px);
}

.l-header__xsContents__holder__menuBtn > span {
  display: block;
  width: 50%;
  height: 2px;
  background-color: #006FFF;
  position: absolute;
  left: 50%;
  margin-left: -30%;
  top: 50%;
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1);
}

.l-header__xsContents__holder__menuBtn > span:nth-child(1) {
  margin-top: -10px;
  width: 65%;
}

.l-header__xsContents__holder__menuBtn > span:nth-child(3) {
  margin-top: 10px;
  width: 35%;
}

.l-header__xsContents__holder__menuBtn.is-clicked > span:nth-child(1) {
  margin-top: 0;
  width: 50%;
  transform: rotate(45deg);
}

.l-header__xsContents__holder__menuBtn.is-clicked > span:nth-child(2) {
  width: 0;
}

.l-header__xsContents__holder__menuBtn.is-clicked > span:nth-child(3) {
  margin-top: 0;
  width: 50%;
  transform: rotate(-45deg);
}

.l-header__xsContents__slideMenu {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  overflow: auto;
  background-color: #fff;
  z-index: 5000;
  transform: translateX(100%);
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1);
}

.l-header__xsContents__slideMenu__nav {
  padding: 0 6.666666666%;
  overflow: auto;
  height: calc(100vh - 64px - 60px);
}

.l-header__xsContents__slideMenu__nav__list {
  overflow: hidden;
}

.l-header__xsContents__slideMenu__nav__list__item {
  opacity: 0;
  transform: translateX(30px);
  border-bottom: 1px solid #E3E3E3;
}

.l-header__xsContents__slideMenu__nav__list__item__anchor {
  position: relative;
  color: #2A2A2A;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 15px 0;
}

.l-header__xsContents__slideMenu__nav__list__item__anchor > i {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.l-header__xsContents__slideMenu__nav__list__item__anchor > i:before {
  content: "";
  width: 70%;
  height: 1px;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2A2A2A;
}

.l-header__xsContents__slideMenu__nav__list__item__anchor > i:after {
  content: "";
  width: 70%;
  height: 1px;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  background-color: #2A2A2A;
}

.l-header__xsContents__slideMenu__nav__list__item__anchor.is-clicked > i:after {
  display: none;
}

.l-header__xsContents__slideMenu__nav__list__item__anchor[target="_blank"]:after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url(/assets/images/common/icon_blank.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-left: 10px;
}

.l-header__xsContents__slideMenu__nav__list__item__list {
  padding-bottom: 10px;
  display: none;
}

.l-header__xsContents__slideMenu__nav__list__item__list__item__anchor {
  position: relative;
  color: #2A2A2A;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 5px 0 5px 12px;
}

.l-header__xsContents__slideMenu__nav__list__item__list__item__anchor:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #006FFF;
  position: absolute;
  left: 0;
  top: 15px;
}

.l-header__xsContents__slideMenu__language {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 0;
  text-align: center;
  padding: 20px 0;
}

.l-header__xsContents__slideMenu__language__eachLanguage {
  display: inline-block;
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  font-size: 1.4rem;
  color: #2A2A2A;
  text-align: center;
  padding: 0 20px;
  background-color: #fff;
}

.l-header__xsContents__slideMenu__language__eachLanguage[data-language="en"] {
  border-left: 1px solid #E3E3E3;
}

.l-header__xsContents__slideMenu__language__eachLanguage.is-current, .l-header__xsContents__slideMenu__language__eachLanguage:hover {
  font-weight: 600;
  color: #006FFF;
}

.l-header__xsContents__slideMenu.is-slided {
  transform: translateX(0);
}

.l-header__xsContents__slideMenu.is-slided .l-header__xsContents__slideMenu__nav__list__item {
  opacity: 1;
  transform: translateX(0);
}

.l-header__xsContents__slideMenu.is-slided .l-header__xsContents__slideMenu__nav__list__item:nth-child(1) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

.l-header__xsContents__slideMenu.is-slided .l-header__xsContents__slideMenu__nav__list__item:nth-child(2) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.25s;
}

.l-header__xsContents__slideMenu.is-slided .l-header__xsContents__slideMenu__nav__list__item:nth-child(3) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.l-header__xsContents__slideMenu.is-slided .l-header__xsContents__slideMenu__nav__list__item:nth-child(4) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.35s;
}

.l-header__xsContents__slideMenu.is-slided .l-header__xsContents__slideMenu__nav__list__item:nth-child(5) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
}

.l-header__xsContents__slideMenu.is-slided .l-header__xsContents__slideMenu__nav__list__item:nth-child(6) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.45s;
}

.l-header__xsContents__slideMenu.is-slided .l-header__xsContents__slideMenu__nav__list__item:nth-child(7) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
}

.l-header__xsContents__slideMenu.is-slided .l-header__xsContents__slideMenu__nav__list__item:nth-child(8) {
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1) 0.55s;
}

/* -----------------------------------------------------------------
*  main
*  ---------------------------------------------------------------*/
.l-main {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-left: 170px;
}

@media only screen and (max-width: 767px) {
  .l-main {
    padding-left: 0;
    padding-top: 64px;
  }
}

/* -----------------------------------------------------------------
*  aside
*  ---------------------------------------------------------------*/
/* -----------------------------------------------------------------
*  footer
*  ---------------------------------------------------------------*/
.l-footer {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #F6F7F8;
  padding-left: 170px;
  padding-top: 50px;
  padding-bottom: 150px;
}

@media only screen and (max-width: 767px) {
  .l-footer {
    height: auto;
    padding-left: 0;
    padding-bottom: 60px;
  }
}

.l-footer__logo {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1);
}

.l-footer__logo:hover {
  transform: scale(1.05);
}

@media only screen and (max-width: 767px) {
  .l-footer__logo {
    position: static;
    margin-bottom: 30px;
    text-align: center;
  }
}

.l-footer__logo > img {
  width: 148px;
}

@media only screen and (max-width: 767px) {
  .l-footer__logo > img {
    width: 116px;
  }
}

.l-footer__linkList {
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .l-footer__linkList {
    position: static;
    margin-bottom: 35px;
  }
}

.l-footer__linkList__item {
  float: left;
  position: relative;
  padding-left: 20px;
  margin-left: 20px;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .l-footer__linkList__item {
    margin-left: 10%;
    padding-left: 0;
    width: 45%;
    margin-bottom: 10px;
  }
  .l-footer__linkList__item:nth-child(2n+1) {
    clear: both;
    margin-left: 0;
  }
}

.l-footer__linkList__item:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "/";
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  color: #2A2A2A;
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .l-footer__linkList__item:before {
    display: none;
  }
}

.l-footer__linkList__item:first-child {
  padding-left: 0;
  margin-left: 0;
}

.l-footer__linkList__item:first-child:before {
  display: none;
}

.l-footer__linkList__item__anchor {
  font-weight: 500;
  color: #2A2A2A;
  display: block;
  font-size: 0;
}

.l-footer__linkList__item__anchor[target="_blank"] {
  background-image: url(/assets/images/common/icon_blank.svg);
  background-repeat: no-repeat;
  background-position: right 50%;
  background-size: 13px auto;
  padding-right: 20px;
}

@media only screen and (max-width: 767px) {
  .l-footer__linkList__item__anchor[target="_blank"] {
    background-position: 130px 50%;
  }
}

.l-footer__linkList__item__anchor__icon {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .l-footer__linkList__item__anchor__icon {
    margin-bottom: 10px;
  }
}

.l-footer__linkList__item__anchor__icon > img {
  vertical-align: middle;
  width: 37px;
  border-radius: 4px;
}

.l-footer__linkList__item__anchor__icon[data-sns="twitter"]:after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 14px;
  height: 14px;
  background-image: url(/assets/images/common/icon_twitter.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  display: inline-block;
}

.l-footer__linkList__item__anchor__text {
  position: relative;
  padding-bottom: 6px;
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  font-size: 1.2rem;
}

.l-footer__linkList__item__anchor__text:after {
  background-color: #006FFF;
  content: "";
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}

.l-footer__linkList__item__anchor:hover {
  color: #006FFF;
}

.l-footer__linkList__item__anchor:hover .l-footer__linkList__item__anchor__text:after {
  width: 100%;
}

.l-footer__otherLinkList {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 140px;
}

@media only screen and (max-width: 767px) {
  .l-footer__otherLinkList {
    position: static;
    float: left;
  }
}

.l-footer__otherLinkList__item {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

@media only screen and (max-width: 767px) {
  .l-footer__otherLinkList__item {
    display: block;
    margin-left: 0;
  }
}

.l-footer__otherLinkList__item:first-child {
  margin-left: 0;
}

.l-footer__otherLinkList__item__anchor {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #2A2A2A;
}

.l-footer__otherLinkList__item__anchor:after {
  background-color: #006FFF;
  content: "";
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}

.l-footer__otherLinkList__item__anchor:hover {
  color: #006FFF;
}

.l-footer__otherLinkList__item__anchor:hover:after {
  width: 100%;
}

.l-footer__copyright {
  display: inline-block;
  position: absolute;
  bottom: 8px;
  right: 0;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (max-width: 767px) {
  .l-footer__copyright {
    position: static;
    float: right;
    transform: translateY(70px);
  }
}

/* ==========================================================================
* 
*  Object
*  サイト内で繰り返されるパターン。
* 
*  ========================================================================*/
/* -----------------------------------------------------------------
*  Component
*  ---------------------------------------------------------------*/
.c-btn_type01 {
  position: relative;
  color: #2A2A2A;
  display: block;
  border: 1px solid #878E9F;
  padding: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  transition: 0.4s;
}

@media only screen and (max-width: 767px) {
  .c-btn_type01 {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 15px;
  }
}

.c-btn_type01 > span {
  position: relative;
  z-index: 2;
}

.c-btn_type01:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background-color: #333;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: 0.4s transform cubic-bezier(0.23, 1, 0.32, 1);
}

.c-btn_type01:hover {
  color: #fff;
}

.c-btn_type01:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.c-btn_type02, .c-btn_type02_white {
  position: relative;
  width: 29px;
  height: 29px;
  border: 1px solid #2E2D33;
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .c-btn_type02, .c-btn_type02_white {
    width: 38px;
    height: 38px;
  }
}

.c-btn_type02:before, .c-btn_type02_white:before {
  content: "";
  width: 27px;
  height: 5px;
  background-size: contain;
  background-image: url(/assets/images/common/arrow_pager_right.svg);
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-15px, -50%);
  transition: 0.2s transform cubic-bezier(0.23, 1, 0.32, 1);
}

@media only screen and (max-width: 767px) {
  .c-btn_type02:before, .c-btn_type02_white:before {
    transform: translate(-10px, -50%);
    width: 42px;
    height: 6px;
  }
}

.c-btn_type02:hover, .c-btn_type02_white:hover {
  cursor: pointer;
}

.c-btn_type02:hover:before, .c-btn_type02_white:hover:before {
  transform: translate(0, -50%);
  background-image: url(/assets/images/common/arrow_pager_right_blue.svg);
}

.c-btn_type02_white {
  border-color: #fff;
}

.c-btn_type02_white:before {
  background-image: url(/assets/images/common/arrow_pager_right_white.svg);
}

.c-btn_type02_white:hover:before {
  background-image: url(/assets/images/common/arrow_pager_right_white.svg);
}

.c-btn_type03 {
  position: relative;
  width: 100%;
  height: 120px;
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .c-btn_type03 {
    height: 70px;
  }
}

.c-btn_type03__anchor {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 35px, #006FFF 35px);
  background-position: top left;
  background-repeat: no-repeat;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

@media only screen and (max-width: 767px) {
  .c-btn_type03__anchor {
    background: linear-gradient(135deg, transparent 20px, #006FFF 20px);
  }
}

.c-btn_type03__anchor > span {
  color: #fff;
}

.c-btn_type03:before {
  content: "";
  width: 50px;
  height: 8px;
  background-size: contain;
  background-image: url(../images/common/arrow_pager_right_white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-45px, -50%);
  transition: 0.2s transform cubic-bezier(0.23, 1, 0.32, 1);
}

@media only screen and (max-width: 767px) {
  .c-btn_type03:before {
    transform: translate(-10px, -50%);
    width: 23px;
  }
}

.c-btn_type03:hover {
  cursor: pointer;
}

.c-btn_type03:hover:before {
  transform: translate(-15px, -50%);
  background-image: url(../images/common/arrow_pager_right_white.svg);
}

.c-hl_type01 {
  font-size: 40px;
  font-size: 4rem;
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .c-hl_type01 {
    font-size: 29px;
    font-size: 2.9rem;
  }
}

.c-hl_type01 > span {
  font-size: 12px;
  font-size: 1.2rem;
  display: block;
  margin-top: 5px;
}

@media only screen and (max-width: 767px) {
  .c-hl_type01 > span {
    font-size: 10px;
    font-size: 1rem;
  }
}

.c-hl_type02 {
  position: relative;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 600;
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .c-hl_type02 {
    font-size: 23px;
    font-size: 2.3rem;
  }
}

.c-hl_type02:after {
  content: "";
  width: 15%;
  height: 1px;
  border-bottom: 1px solid #006FFF;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-hl_type03 {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 1.28px;
  line-height: 1.6875;
}

@media only screen and (max-width: 767px) {
  .c-hl_type03 {
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: 0.8px;
  }
}

.c-hl_type04 {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 1.04px;
  line-height: 1.6923;
}

@media only screen and (max-width: 767px) {
  .c-hl_type04 {
    font-size: 17px;
    font-size: 1.7rem;
    letter-spacing: 0.68px;
  }
}

.c-hl_type05 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.75;
}

@media only screen and (max-width: 767px) {
  .c-hl_type05 {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.57143;
  }
}

.c-hl_type06 {
  font-size: 14px;
  font-size: 1.4rem;
  color: #999999;
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}

@media only screen and (max-width: 767px) {
  .c-hl_type06 {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5714;
  }
}

.c-hl_type06 > span {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 600;
  display: block;
  line-height: 1.15625;
  color: #2A2A2A;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  margin-top: 8px;
}

@media only screen and (max-width: 767px) {
  .c-hl_type06 > span {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.35;
  }
}

.c-hl_type07 {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.44px;
  line-height: 1.72727;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .c-hl_type07 {
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.3px;
    line-height: 1.26667;
  }
}

.c-hl_type08 {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.15625;
}

@media only screen and (max-width: 767px) {
  .c-hl_type08 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.35;
  }
}

.c-hl_type09 {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.642857;
}

@media only screen and (max-width: 767px) {
  .c-hl_type09 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.55556;
  }
}

.c-hl_type10 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .c-hl_type10 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-hl_type11 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .c-hl_type11 {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

.c-hl_type12 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.1875;
}

@media only screen and (max-width: 767px) {
  .c-hl_type12 {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-inner {
  position: relative;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.c-inner_990 {
  width: 990px;
}

@media only screen and (max-width: 767px) {
  .c-inner_990 {
    width: 100%;
    padding: 0 6.666666666%;
  }
}

.c-inner_850 {
  width: 850px;
}

@media only screen and (max-width: 767px) {
  .c-inner_850 {
    width: 100%;
    padding: 0 6.666666666%;
  }
}

.c-rt_type01 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.14285714286;
}

@media only screen and (max-width: 767px) {
  .c-rt_type01 {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-rt_type02 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .c-rt_type02 {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-rt_type03 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5714;
}

@media only screen and (max-width: 767px) {
  .c-rt_type03 {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-formCheckbox_type01 > input[type="checkbox"]:checked + label > span:after {
  display: block;
}

.c-formCheckbox_type01 > label {
  position: relative;
}

.c-formCheckbox_type01 > label > span {
  font-size: 0;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  vertical-align: middle;
  border: 1px solid #878E9F;
  margin-right: 10px;
  pointer-events: none;
  border-radius: 2px;
  overflow: hidden;
}

.c-formCheckbox_type01 > label > span:after {
  font-size: 0;
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background-color: #000;
}

.c-formCheckbox_type01 > label > div {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-size: 1.6rem;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .c-formCheckbox_type01 > label > div {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-formCheckbox_type01 > label:hover {
  cursor: pointer;
}

.c-formRadio_type01 > input[type="radio"]:checked + label > span:after {
  display: block;
}

.c-formRadio_type01 > label {
  position: relative;
  display: inline-block;
}

.c-formRadio_type01 > label > span {
  font-size: 0;
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border: 1px solid #878E9F;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .c-formRadio_type01 > label > span {
    width: 18px;
    height: 18px;
  }
}

.c-formRadio_type01 > label > span:after {
  font-size: 0;
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 767px) {
  .c-formRadio_type01 > label > span:after {
    width: 10px;
    height: 10px;
  }
}

.c-formRadio_type01 > label > div {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .c-formRadio_type01 > label > div {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-formRadio_type01 > label:hover {
  cursor: pointer;
}

.c-formSelect_type01 {
  position: relative;
}

.c-formSelect_type01:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #221f1d transparent transparent transparent;
}

.c-formSelect_type01 > select {
  padding: 15px;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  background-color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #878E9F;
  color: #222222;
}

.c-formText_type01 {
  padding: 10px;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #878E9F;
  color: #222222;
}

.c-formText_type01[data-role="postal"] {
  width: 180px;
  margin-left: 10px;
}

.c-formText_type01[data-role="age"] {
  width: 180px;
  margin-right: 10px;
}

.c-formTextArea_type01 {
  padding: 10px;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #878E9F;
  color: #222222;
}

.c-formBtn_type01 {
  position: relative;
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: 0.4s;
  color: #2A2A2A;
  text-align: center;
  border: 1px solid #2A2A2A;
  background-color: #fff;
  padding: 15px 40px;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 4px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .c-formBtn_type01 {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 10px 20px;
  }
}

.c-formBtn_type01:hover {
  cursor: pointer;
  box-shadow: 2px 1px 27px 0 rgba(0, 0, 0, 0.12);
}

.c-formBtn_type02 {
  position: relative;
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: 0.4s;
  color: #fff;
  text-align: center;
  border: 1px solid #006FFF;
  background-color: #006FFF;
  padding: 15px 40px;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 4px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .c-formBtn_type02 {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 10px 20px;
  }
}

.c-formBtn_type02:hover {
  cursor: pointer;
  box-shadow: 2px 1px 27px 0 rgba(0, 0, 0, 0.12);
}

.c-anim_fadeInUp {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s ease;
}

.c-anim_fadeInUp.is-animated {
  transform: translateY(0);
}

.c-anim_fadeIn {
  opacity: 0;
  transition: 0.4s all 0.4s ease;
}

.c-anim.is-animated {
  opacity: 1;
}

/* -----------------------------------------------------------------
*  Project
*  ---------------------------------------------------------------*/
.p-breadList {
  text-align: right;
  padding: 15px 0px;
}

.p-breadList__list {
  display: inline-block;
  line-height: 1;
}

.p-breadList__list__item {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-left: 10px;
  font-size: 12px;
  font-size: 1.2rem;
}

@media only screen and (max-width: 767px) {
  .p-breadList__list__item {
    font-size: 10px;
    font-size: 1rem;
    padding-left: 15px;
    margin-left: 5px;
  }
}

.p-breadList__list__item:before {
  content: "＞";
  position: absolute;
  bottom: 50%;
  left: 0;
  transform: translateY(calc(50% - 2px));
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
}

@media only screen and (max-width: 767px) {
  .p-breadList__list__item:before {
    font-size: 10px;
    font-size: 1rem;
  }
}

.p-breadList__list__item:first-child {
  padding-left: 0;
  margin-right: 0;
}

.p-breadList__list__item:first-child:before {
  display: none;
}

.p-breadList__list__item__anchor {
  position: relative;
  display: block;
  color: #2A2A2A;
  padding-bottom: 4px;
  line-height: 1;
}

.p-breadList__list__item__anchor:after {
  background-color: #006FFF;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}

.p-breadList__list__item__anchor:hover {
  color: #006FFF;
}

.p-breadList__list__item__anchor:hover:after {
  width: 100%;
}

.p-worksMenu {
  width: 566px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .p-worksMenu {
    width: 100%;
  }
}

.p-worksMenu__list__item {
  float: left;
  width: 33.33333%;
}

.p-worksMenu__list__item__anchor {
  position: relative;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #2A2A2A;
  display: block;
  padding: 15px;
}

@media only screen and (max-width: 767px) {
  .p-worksMenu__list__item__anchor {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 10px;
  }
}

.p-worksMenu__list__item__anchor:after {
  background-color: #E9E9E9;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-worksMenu__list__item__anchor.is-current {
  color: #006FFF;
}

.p-worksMenu__list__item__anchor.is-current:after {
  background-color: #006FFF;
}

.p-worksMenu__list__item__anchor:hover {
  color: #006FFF;
}

.p-products__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -60px;
}

@media only screen and (max-width: 767px) {
  .p-products__list {
    margin-left: -4%;
  }
}

.p-products__list__item {
  width: 290px;
  margin-left: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #E3E3E3;
}

@media only screen and (max-width: 767px) {
  .p-products__list__item {
    width: 46%;
    margin-left: 4%;
    margin-bottom: 40px;
  }
}

.p-products__list__item__photo {
  position: relative;
  overflow: hidden;
}

.p-products__list__item__photo:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #006FFF;
  transition: all 0.4s ease 0.4s;
}

.p-products__list__item__photo:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.4s ease;
}

.p-products__list__item__status {
  padding: 20px 0;
  background-color: #fff;
  opacity: 0;
  transition: all 0.4s ease 0.4s;
}

@media only screen and (max-width: 767px) {
  .p-products__list__item__status {
    padding: 10px 0;
  }
}

.p-products__list__item__status__categoryList {
  font-size: 0;
  margin-left: -5px;
  opacity: 0;
  transition: all 0.4s ease 0.4s;
  margin-bottom: 10px;
}

.p-products__list__item__status__categoryList__item {
  font-size: 12px;
  font-size: 1.2rem;
  background-color: #006FFF;
  color: #fff;
  line-height: 1;
  padding: 5px;
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .p-products__list__item__status__categoryList__item {
    font-size: 10px;
    font-size: 1rem;
  }
}

.p-products__list__item__status__title {
  color: #2A2A2A;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
  line-height: 1.625;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .p-products__list__item__status__title {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
}

.p-products__list__item__status__publisher {
  color: #2A2A2A;
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.66666666667;
}

@media only screen and (max-width: 767px) {
  .p-products__list__item__status__publisher {
    font-size: 10px;
    font-size: 1rem;
  }
}

.p-products__list__item__status__publisher > a {
  text-decoration: underline;
  color: #2A2A2A;
}

.p-products__list__item__status__publisher > a:hover {
  text-decoration: none;
}

.p-products__list__item__status__publisher > a[target="_blank"] {
  background-image: url(/assets/images/common/icon_blank.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 13px auto;
  padding-right: 20px;
}

.p-products__list__item__status__others {
  color: #2A2A2A;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66666666667;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .p-products__list__item__status__others {
    font-size: 10px;
    font-size: 1rem;
  }
}

.p-products__list__item__status__details {
  margin-bottom: 5px;
}

.p-products__list__item__status__details__table {
  width: 100%;
}

.p-products__list__item__status__details__table > tbody > tr > th,
.p-products__list__item__status__details__table > tbody > tr > td {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66666666667;
}

@media only screen and (max-width: 767px) {
  .p-products__list__item__status__details__table > tbody > tr > th,
  .p-products__list__item__status__details__table > tbody > tr > td {
    font-size: 10px;
    font-size: 1rem;
  }
}

.p-products__list__item__status__details__table > tbody > tr > th {
  font-weight: 400;
}

.p-products__list__item__status__details__table[data-type="genre"] > tbody > tr > th {
  width: 60px;
}

.p-products__list__item__status__details__table[data-type="release"] > tbody > tr > th {
  width: 60px;
}

.p-products__list__item__status__details__table[data-type="price"] > tbody > tr > th {
  width: 36px;
}

.p-products__list__item__status__copyright {
  color: #999999;
  font-size: 10px;
  font-size: 1rem;
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.66666666667;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .p-products__list__item__status__copyright {
    font-size: 8px;
    font-size: 0.8rem;
    margin-top: 10px;
  }
}

.p-products__list__item__status__buy {
  color: #2A2A2A;
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.66666666667;
}

@media only screen and (max-width: 767px) {
  .p-products__list__item__status__buy {
    font-size: 10px;
    font-size: 1rem;
  }
}

.p-products__list__item__status__buy > a {
  text-decoration: underline;
  color: #2A2A2A;
}

.p-products__list__item__status__buy > a:hover {
  text-decoration: none;
}

.p-products__list__item__status__buy > a[target="_blank"] {
  background-image: url(/assets/images/common/icon_blank.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 13px auto;
  padding-right: 20px;
}

.p-products__list__item__status__description {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66666666667;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .p-products__list__item__status__description {
    font-size: 10px;
    font-size: 1rem;
  }
}

.p-products__list__item.is-animated .p-products__list__item__photo:before {
  width: 0;
}

.p-products__list__item.is-animated .p-products__list__item__photo:after {
  width: 0;
}

.p-products__list__item.is-animated .p-products__list__item__status {
  opacity: 1;
}

.p-products__list__item.is-animated .p-products__list__item__status__categoryList {
  opacity: 1;
}

.p-contactForm {
  width: 850px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .p-contactForm {
    width: 100%;
  }
}

.p-contactForm__form__holder {
  margin-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  .p-contactForm__form__holder {
    margin-bottom: 40px;
  }
}

.p-contactForm__form__holder__hl {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #E3E3E3;
  margin-bottom: 40px;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .p-contactForm__form__holder__hl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-contactForm__form__holder__inputObj {
  margin-bottom: 30px;
}

.p-contactForm__form__holder__inputObj > dt {
  position: relative;
  width: 230px;
  float: left;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  padding-left: 70px;
}

@media only screen and (max-width: 767px) {
  .p-contactForm__form__holder__inputObj > dt {
    width: 100%;
    float: none;
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 60px;
    margin-bottom: 10px;
  }
}

.p-contactForm__form__holder__inputObj > dt > em {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #CC0000;
  font-style: normal;
  margin-right: 5px;
}

.p-contactForm__form__holder__inputObj > dd {
  width: 600px;
  float: right;
}

@media only screen and (max-width: 767px) {
  .p-contactForm__form__holder__inputObj > dd {
    width: 100%;
    float: none;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-contactForm__form__holder__inputObj > dd > p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 10px;
}

.p-contactForm__form__holder__inputObj__choiceList[data-layout="vertical"] .p-contactForm__form__holder__inputObj__choiceList__item {
  margin-top: 10px;
}

.p-contactForm__form__holder__inputObj__choiceList[data-layout="vertical"] .p-contactForm__form__holder__inputObj__choiceList__item:first-child {
  margin-top: 0;
}

.p-contactForm__form__holder__inputObj__choiceList[data-layout="horizon"] {
  margin-left: -10px;
  margin-bottom: -10px;
}

.p-contactForm__form__holder__inputObj__choiceList[data-layout="horizon"] .p-contactForm__form__holder__inputObj__choiceList__item {
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 10px;
}

.p-contactForm__form__holder__inputObj__birthday {
  font-size: 0;
}

.p-contactForm__form__holder__inputObj__birthday__year {
  display: inline-block;
  width: 180px;
}

@media only screen and (max-width: 767px) {
  .p-contactForm__form__holder__inputObj__birthday__year {
    display: block;
    margin-bottom: 10px;
  }
}

.p-contactForm__form__holder__inputObj__birthday__month {
  display: inline-block;
  width: 180px;
  margin-left: 20px;
}

@media only screen and (max-width: 767px) {
  .p-contactForm__form__holder__inputObj__birthday__month {
    display: block;
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.p-contactForm__form__holder__inputObj__birthday__day {
  display: inline-block;
  width: 180px;
  margin-left: 20px;
}

@media only screen and (max-width: 767px) {
  .p-contactForm__form__holder__inputObj__birthday__day {
    display: block;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .p-contactForm__form__holder__inputObj_notRequired > dt {
    padding-left: 0;
  }
}

.p-contactForm__form__remarks {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.83333333333;
}

@media only screen and (max-width: 767px) {
  .p-contactForm__form__remarks {
    text-align: left;
  }
}

.p-contactForm__form__remarks > a {
  color: #2A2A2A;
  text-decoration: underline;
}

.p-contactForm__form__remarks > a:hover {
  text-decoration: none;
}

.p-contactForm__form__btnList {
  text-align: center;
  margin-top: 70px;
}

@media only screen and (max-width: 767px) {
  .p-contactForm__form__btnList {
    margin-top: 40px;
  }
}

.p-contactForm__form__btnList__item {
  display: inline-block;
  margin-left: 20px;
  width: 240px;
}

@media only screen and (max-width: 767px) {
  .p-contactForm__form__btnList__item {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}

.p-contactForm__form__btnList__item:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 767px) {
  .p-contactForm__form__btnList__item:first-child {
    margin-top: 0;
  }
}

.p-newsList__item__anchor {
  display: block;
  color: #2A2A2A;
  padding: 0 20px;
  transform: translate(0, 0);
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1);
  border-bottom: 1px solid #E3E3E3;
  backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .p-newsList__item__anchor {
    padding: 10px;
  }
}

.p-newsList__item__anchor__table {
  width: 100%;
}

.p-newsList__item__anchor__table > tbody > tr > td {
  vertical-align: middle;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 30px 0;
}

@media only screen and (max-width: 767px) {
  .p-newsList__item__anchor__table > tbody > tr > td {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 5px 0 0;
  }
}

.p-newsList__item__anchor__table__date {
  width: 120px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #999999;
  vertical-align: middle;
  text-align: center;
  padding: 30px 0;
}

@media only screen and (max-width: 767px) {
  .p-newsList__item__anchor__table__date {
    width: 80px;
    font-size: 12px;
    font-size: 1.2rem;
    display: inline-block;
    text-align: left;
    padding: 0;
  }
}

.p-newsList__item__anchor__table__category {
  width: 120px;
  vertical-align: middle;
  padding: 30px 0;
}

@media only screen and (max-width: 767px) {
  .p-newsList__item__anchor__table__category {
    display: inline-block;
    padding: 0;
  }
}

.p-newsList__item__anchor__table__category__tag {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  min-width: 72px;
  display: inline-block;
  text-align: center;
  line-height: 1;
  padding: 5px;
  background-color: #F0F1F4;
}

@media only screen and (max-width: 767px) {
  .p-newsList__item__anchor__table__category__tag {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-newsList__item__anchor:hover {
  color: #006FFF;
  box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.06);
  transform: translate(-4px, -4px);
}

.p-newsList__item__anchor:hover .p-newsList__item__anchor__table__category__tag {
  background-color: #006FFF;
  color: #fff;
}

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

.p-pager__btn {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #2E2D33;
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .p-pager__btn {
    width: 30px;
    height: 30px;
  }
}

.p-pager__btn:before {
  content: "";
  width: 32px;
  height: 5px;
  background-size: contain;
  background-image: url(/assets/images/common/arrow_pager.svg);
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(15px, -50%);
  transition: 0.2s transform cubic-bezier(0.23, 1, 0.32, 1);
}

@media only screen and (max-width: 767px) {
  .p-pager__btn:before {
    width: 23px;
    transform: translate(10px, -50%);
  }
}

.p-pager__btn[data-ui="next"] {
  transform: rotate(180deg);
}

.p-pager__btn:hover {
  cursor: pointer;
}

.p-pager__btn:hover:before {
  transform: translate(0, -50%);
  background-image: url(/assets/images/common/arrow_pager_on.svg);
}

.p-pager__list {
  display: inline-block;
  font-size: 0;
  margin: 0 40px;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .p-pager__list {
    margin: 0 20px;
  }
}

.p-pager__list__item {
  display: inline-block;
  margin-left: 30px;
}

@media only screen and (max-width: 767px) {
  .p-pager__list__item {
    margin-left: 10px;
  }
}

.p-pager__list__item:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 767px) {
  .p-pager__list__item:nth-child(4) {
    display: none;
  }
}

.p-pager__list__item__anchor {
  position: relative;
  font-size: 24px;
  font-size: 2.4rem;
  color: #2E2D33;
  padding-bottom: 4px;
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
}

@media only screen and (max-width: 767px) {
  .p-pager__list__item__anchor {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.p-pager__list__item__anchor:after {
  background-color: #2E2D33;
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}

.p-pager__list__item__anchor:hover:after {
  width: 50%;
}

.p-pager__list__item__anchor.is-current {
  color: #006FFF;
}

.p-pager__list__item__anchor.is-current:after {
  background-color: #006FFF;
  width: 50%;
}

.p-groupList {
  text-align: center;
  font-size: 0;
  margin-bottom: -20px;
  margin-left: -20px;
}

@media only screen and (max-width: 767px) {
  .p-groupList {
    margin-bottom: -10px;
    margin-left: -10px;
  }
}

.p-groupList__item {
  display: inline-block;
  padding: 0 30px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .p-groupList__item {
    padding: 0 20px;
    margin-bottom: 10px;
  }
}

.p-groupList__item__anchor {
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2E2D33;
  padding-bottom: 6px;
}

@media only screen and (max-width: 767px) {
  .p-groupList__item__anchor {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-groupList__item__anchor:after {
  background-color: #2E2D33;
  content: "";
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
}

.p-groupList__item__anchor:hover:after {
  width: 100%;
}

.p-groupList__item__anchor.is-current {
  color: #006FFF;
}

.p-groupList__item__anchor.is-current:after {
  background-color: #006FFF;
  width: 100%;
}

.p-article {
  padding: 70px 0;
}

.p-article__head__status {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .p-article__head__status {
    margin-bottom: 10px;
  }
}

.p-article__head__status__date {
  width: 100px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #999999;
  vertical-align: middle;
  text-align: left;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .p-article__head__status__date {
    width: 80px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-article__head__status__category {
  width: 120px;
  vertical-align: middle;
  display: inline-block;
}

.p-article__head__status__category__tag {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  min-width: 72px;
  display: inline-block;
  text-align: center;
  line-height: 1;
  padding: 5px;
  background-color: #F0F1F4;
}

@media only screen and (max-width: 767px) {
  .p-article__head__status__category__tag {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-article__head__status__title {
  position: relative;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .p-article__head__status__title {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

.p-article__head__status__title:after {
  content: "";
  width: 15%;
  height: 1px;
  border-bottom: 1px solid #006FFF;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-article__body {
  padding: 50px 0;
}

.p-article__body > figure {
  margin-bottom: 40px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-article__body > figure {
    margin-bottom: 30px;
  }
}

.p-article__body > h2 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .p-article__body > h2 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

.p-article__body > h3 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .p-article__body > h3 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-article__body > p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.85714285714;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .p-article__body > p {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
}

.p-article__body > p > a {
  color: #2a2a2a;
  text-decoration: underline;
}

.p-article__body > p > a:hover {
  text-decoration: none;
}

.p-article__body__embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 40px;
}

.p-article__body__embed > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-article__body > form > p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.85714285714;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .p-article__body > form > p {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
}

.p-article__body > form > p input[type="password"] {
  padding: 10px;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #878E9F;
  color: #222222;
  width: 180px;
}

.p-article__body > form > p input[type="submit"] {
  display: inline-block;
  position: relative;
  z-index: 2;
  transition: 0.4s;
  color: #fff;
  text-align: center;
  border: 1px solid #006FFF;
  background-color: #006FFF;
  padding: 10px 20px;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 4px;
  font-weight: 500;
  margin-left: 10px;
}

.p-article__data {
  border-top: 1px solid #E3E3E3;
}

.p-article__data table > tbody > tr > th {
  padding: 20px 0;
  width: 150px;
  text-align: left;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .p-article__data table > tbody > tr > th {
    font-size: 12px;
    font-size: 1.2rem;
    width: 100px;
  }
}

.p-article__data table > tbody > tr > td {
  padding: 20px 0;
}

.p-article__data table > tbody > tr > td > ul {
  margin-left: -20px;
  margin-bottom: -10px;
}

.p-article__data table > tbody > tr > td > ul > li {
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 10px;
}

.p-article__data table > tbody > tr > td > ul > li > a {
  position: relative;
  color: #006FFF;
  display: block;
  padding-left: 36px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .p-article__data table > tbody > tr > td > ul > li > a {
    font-size: 12px;
    font-size: 1.2rem;
    padding-left: 30px;
  }
}

.p-article__data table > tbody > tr > td > ul > li > a:after {
  content: "";
  width: calc(100% - 36px);
  height: 2px;
  background-color: #006FFF;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media only screen and (max-width: 767px) {
  .p-article__data table > tbody > tr > td > ul > li > a:after {
    width: calc(100% - 30px);
  }
}

.p-article__data table > tbody > tr > td > ul > li > a[data-format="pdf"]:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(/assets/images/common/icon_pdf.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  color: #fff;
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .p-article__data table > tbody > tr > td > ul > li > a[data-format="pdf"]:before {
    width: 20px;
    height: 20px;
  }
}

.p-article__data table > tbody > tr > td > ul > li > a:hover:after {
  display: none;
}

.p-article__pager {
  border-top: 1px solid #E3E3E3;
  padding-top: 50px;
}

.p-article__pager__anchor {
  display: inline-block;
  height: 40px;
}

.p-article__pager__anchor__obj {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #2E2D33;
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .p-article__pager__anchor__obj {
    width: 30px;
    height: 30px;
  }
}

.p-article__pager__anchor__obj:before {
  content: "";
  width: 32px;
  height: 5px;
  background-size: contain;
  background-image: url(/assets/images/common/arrow_pager.svg);
  background-position: center center;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(15px, -50%);
  transition: 0.2s transform cubic-bezier(0.23, 1, 0.32, 1);
}

@media only screen and (max-width: 767px) {
  .p-article__pager__anchor__obj:before {
    width: 26px;
  }
}

.p-article__pager__anchor__text {
  color: #2A2A2A;
  display: inline-block;
  margin-left: 20px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  .p-article__pager__anchor__text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-article__pager__anchor:hover .p-article__pager__anchor__obj:before {
  transform: translate(0, -50%);
  background-image: url(/assets/images/common/arrow_pager_on.svg);
}

.p-article__pager__anchor:hover .p-article__pager__anchor__text {
  color: #006FFF;
}

.p-photoItem {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.p-photoItem:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #006FFF;
  transition: all 0.4s ease 0.4s;
}

.p-photoItem:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.4s ease;
}

.p-photoItem.is-animated:before {
  width: 0;
}

.p-photoItem.is-animated:after {
  width: 0;
}

.p-anounce {
  position: fixed;
  width: calc(100% - 170px);
  top: 0;
  left: 170px;
  background-color: rgba(135, 142, 159, 0.92);
  z-index: 100;
}

@media only screen and (max-width: 767px) {
  .p-anounce {
    width: 100%;
    left: 0;
    top: 64px;
  }
}

.p-anounce > dl {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 15px 30px;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .p-anounce > dl {
    font-size: 10px;
    font-size: 1rem;
    padding: 5px;
  }
}

.p-anounce > dl > dt {
  width: 130px;
  float: left;
  line-height: 1.5;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-anounce > dl > dt {
    width: 100px;
  }
}

.p-anounce > dl > dd {
  width: calc(100% - 130px);
  float: left;
  border-left: 1px solid #fff;
  padding-left: 30px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .p-anounce > dl > dd {
    width: calc(100% - 100px);
    padding-left: 15px;
  }
}

.p-anounce > dl > dd > a {
  color: #fff;
  text-decoration: underline;
}

.p-anounce > dl > dd > a:hover {
  text-decoration: none;
}

.p-key {
  position: relative;
}

.p-key__lgContents {
  position: relative;
  text-align: center;
}

.p-key__lgContents__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.p-key__lgContents__image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #006FFF;
  transition: all 0.4s ease 0.4s;
}

.p-key__lgContents__image:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.4s ease;
}

.p-key__lgContents__image.is-animated:before {
  width: 0;
}

.p-key__lgContents__image.is-animated:after {
  width: 0;
}

.p-key__lgContents__image > img {
  width: 100%;
}

.p-key__lgContents__titlebox_top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0px 3px 6px #00000029;
}

.p-key__lgContents__titlebox_top__title {
  font-size: 76px;
  font-size: 7.6rem;
  line-height: 118px;
  letter-spacing: 1.8px;
  font-family: sofia-pro, sans-serif;
}

.p-key__lgContents__titlebox_top__text {
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0px;
}

.p-key__lgContents__titlebox_products {
  position: absolute;
  bottom: 64px;
  left: 103px;
  color: #fff;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
  text-align: left;
}

.p-key__lgContents__titlebox_products__title {
  font-size: 48px;
  font-size: 4.8rem;
  font-family: sofia-pro, sans-serif;
  letter-spacing: 0;
  line-height: 74px;
}

.p-key__lgContents__titlebox_products_title_56 {
  font-size: 56px;
  font-size: 5.6rem;
  font-family: sofia-pro, sans-serif;
  letter-spacing: 2.52px;
  line-height: 74px;
}

.p-key__lgContents__titlebox_products__text {
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 1.02px;
}

.p-key__lgContents__titlebox_products__text_24 {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0px;
}

.p-key__xsContents {
  position: relative;
}

.p-key__xsContents__image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.p-key__xsContents__image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #006FFF;
  transition: all 0.4s ease 0.4s;
}

.p-key__xsContents__image:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.4s ease;
}

.p-key__xsContents__image.is-animated:before {
  width: 0;
}

.p-key__xsContents__image.is-animated:after {
  width: 0;
}

.p-key__xsContents__image > img {
  width: 100%;
}

.p-key__xsContents__image > img {
  width: 100%;
}

.p-key__xsContents__titlebox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  color: #fff;
  font-family: a-otf-futo-go-b101-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
  padding-bottom: 20px;
  text-shadow: 0px 3px 4px #00000029;
  text-align: center;
}

.p-key__xsContents__titlebox__title {
  font-size: 45px;
  font-size: 4.5rem;
  letter-spacing: 0px;
  line-height: 1.544;
}

.p-key__xsContents__titlebox__text {
  font-size: 21px;
  font-size: 2.1rem;
  letter-spacing: 1.26px;
}

.p-key__xsContents__titlebox_products {
  position: absolute;
  bottom: 23px;
  left: 25px;
  color: #fff;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
  text-align: left;
}

.p-key__xsContents__titlebox_products__title {
  font-size: 31px;
  font-size: 3.1rem;
  letter-spacing: 0;
  line-height: 33px;
  margin-bottom: 11px;
  display: inline-block;
}

.p-key__xsContents__titlebox_products__text {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 1.2px;
  display: inline-blok;
}

.p-contacts {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .p-contacts {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.p-contacts__hl {
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .p-contacts__hl {
    display: block;
    margin-bottom: 30px;
  }
}

.p-contacts__rt {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71428571429;
  margin-left: 20px;
}

@media only screen and (max-width: 767px) {
  .p-contacts__rt {
    display: block;
    margin-left: 0;
    text-align: center;
    margin-bottom: 30px;
  }
}

.p-contacts__selectBox {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  /*Styling Selectbox*/
}

@media only screen and (max-width: 767px) {
  .p-contacts__selectBox {
    position: relative;
    bottom: auto;
    right: auto;
  }
}

.p-contacts__selectBox .dropdown {
  position: relative;
  width: 350px;
  display: inline-block;
  background-color: #fff;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #006FFF;
  text-align: center;
  border: 1px solid #006FFF;
  transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1);
}

.p-contacts__selectBox .dropdown:hover {
  box-shadow: 2px 1px 27px 0 rgba(0, 0, 0, 0.12);
}

.p-contacts__selectBox .dropdown:after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #006FFF;
  border-bottom: 2px solid #006FFF;
  transform: translateY(-50%) rotate(45deg);
  margin-top: -2px;
}

@media only screen and (max-width: 767px) {
  .p-contacts__selectBox .dropdown {
    display: block;
    width: 240px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.p-contacts__selectBox .dropdown .select {
  cursor: pointer;
  display: block;
  padding: 15px;
}

.p-contacts__selectBox .dropdown:active {
  background-color: #f8f8f8;
}

.p-contacts__selectBox .dropdown.active:hover,
.p-contacts__selectBox .dropdown.active {
  background-color: #f8f8f8;
}

.p-contacts__selectBox .dropdown.active .select > i {
  transform: rotate(-90deg);
}

.p-contacts__selectBox .dropdown .dropdown-menu {
  position: absolute;
  background-color: #fff;
  width: 100%;
  left: 0;
  margin-top: 1px;
  box-shadow: 0 1px 2px #cccccc;
  overflow: hidden;
  display: none;
  overflow-y: auto;
  z-index: 9;
}

.p-contacts__selectBox .dropdown .dropdown-menu li {
  padding: 15px;
  cursor: pointer;
}

.p-contacts__selectBox .dropdown .dropdown-menu {
  padding: 0;
}

.p-contacts__selectBox .dropdown .dropdown-menu li:hover {
  background-color: #f2f2f2;
}

.p-contacts__selectBox .dropdown .dropdown-menu li:active {
  background-color: #e2e2e2;
}

.p-heading_type01 {
  margin: 65px 0 70px;
}

@media only screen and (max-width: 767px) {
  .p-heading_type01 {
    margin: 33px 0 51px;
  }
}

.p-heading_type01__wrapper {
  margin: 0 auto;
  text-align: center;
}

.p-heading_type01__wrapper__title {
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 65px;
  letter-spacing: 0px;
}

@media only screen and (max-width: 767px) {
  .p-heading_type01__wrapper__title {
    font-size: 29px;
    font-size: 2.9rem;
    line-height: 45px;
    letter-spacing: 0px;
  }
}

.p-heading_type01__wrapper__caption {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 27px;
  letter-spacing: 0.72px;
}

@media only screen and (max-width: 767px) {
  .p-heading_type01__wrapper__caption {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 13px;
    letter-spacing: 0.54px;
  }
}

.p-heading_type02 {
  position: relative;
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .p-heading_type02 {
    margin-bottom: 35px;
  }
}

.p-heading_type02.border_bottom.p-heading_type02 {
  padding-bottom: 25px;
  border-bottom: 1px solid #E3E3E3;
}

@media only screen and (max-width: 767px) {
  .p-heading_type02.border_bottom.p-heading_type02 {
    padding-bottom: 23px;
  }
}

.p-heading_type02.border_bottom:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 163px;
  background-color: #006FFF;
}

@media only screen and (max-width: 767px) {
  .p-heading_type02.border_bottom:after {
    width: 53px;
  }
}

/* -----------------------------------------------------------------
*  Utility
*  ---------------------------------------------------------------*/
.u-ta_c {
  text-align: center !important;
}

.u-ta_l {
  text-align: left !important;
}

.u-ta_r {
  text-align: right !important;
}

.u-alpha {
  -ms-filter: "alpha(opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  transition: 0.4s opacity ease;
}

.u-alpha:hover {
  -ms-filter: "alpha( opacity=70 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

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

.u-clearfix:after {
  clear: both;
}

.u-visible_xs,
.u-visible_lg {
  display: none !important;
}

.u-visible_xs_block,
.u-visible_xs_inline,
.u-visible_xs_inline-block,
.u-visible_lg_block,
.u-visible_lg_inline,
.u-visible_lg_inline-block {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .u-visible_xs {
    display: block !important;
  }
  table.u-visible_xs {
    display: table !important;
  }
  tr.u-visible_xs {
    display: table-row !important;
  }
  th.u-visible_xs,
  td.u-visible_xs {
    display: table-cell !important;
  }
}

@media only screen and (max-width: 767px) {
  .u-visible_xs_block {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .u-visible_xs_inline {
    display: inline !important;
  }
}

@media only screen and (max-width: 767px) {
  .u-visible_xs_inline-block {
    display: inline-block !important;
  }
}

@media only screen and (min-width: 768px) {
  .u-visible_lg {
    display: block !important;
  }
  table.u-visible_lg {
    display: table !important;
  }
  tr.u-visible_lg {
    display: table-row !important;
  }
  th.u-visible_lg,
  td.u-visible_lg {
    display: table-cell !important;
  }
}

@media only screen and (min-width: 768px) {
  .u-visible_lg_block {
    display: block !important;
  }
}

@media only screen and (min-width: 768px) {
  .u-visible_lg_inline {
    display: inline !important;
  }
}

@media only screen and (min-width: 768px) {
  .u-visible_lg_inline-block {
    display: inline-block !important;
  }
}

@media only screen and (max-width: 767px) {
  .u-hidden_xs {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .u-hidden_lg {
    display: none !important;
  }
}

.u-noEvent {
  pointer-events: none;
}

.u-fw_normal {
  font-weight: normal !important;
}

.u-fw_bold {
  font-weight: bold !important;
}

.u-fs_normal {
  font-style: normal !important;
}

.u-fs_italic {
  font-style: italic !important;
}

.u-m_auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-m_00 {
  margin: 0 !important;
}

.u-m_05 {
  margin: 5px !important;
}

.u-m_10 {
  margin: 10px !important;
}

.u-m_15 {
  margin: 15px !important;
}

.u-m_20 {
  margin: 20px !important;
}

.u-m_25 {
  margin: 25px !important;
}

.u-m_30 {
  margin: 30px !important;
}

.u-m_35 {
  margin: 35px !important;
}

.u-m_40 {
  margin: 40px !important;
}

.u-m_45 {
  margin: 45px !important;
}

.u-m_50 {
  margin: 50px !important;
}

.u-mt_00 {
  margin-top: 0 !important;
}

.u-mt_05 {
  margin-top: 5px !important;
}

.u-mt_10 {
  margin-top: 10px !important;
}

.u-mt_15 {
  margin-top: 15px !important;
}

.u-mt_20 {
  margin-top: 20px !important;
}

.u-mt_25 {
  margin-top: 25px !important;
}

.u-mt_30 {
  margin-top: 30px !important;
}

.u-mt_35 {
  margin-top: 35px !important;
}

.u-mt_40 {
  margin-top: 40px !important;
}

.u-mt_45 {
  margin-top: 45px !important;
}

.u-mt_50 {
  margin-top: 50px !important;
}

.u-mb_00 {
  margin-bottom: 0 !important;
}

.u-mb_05 {
  margin-bottom: 5px !important;
}

.u-mb_10 {
  margin-bottom: 10px !important;
}

.u-mb_15 {
  margin-bottom: 15px !important;
}

.u-mb_20 {
  margin-bottom: 20px !important;
}

.u-mb_25 {
  margin-bottom: 25px !important;
}

.u-mb_30 {
  margin-bottom: 30px !important;
}

.u-mb_35 {
  margin-bottom: 35px !important;
}

.u-mb_40 {
  margin-bottom: 40px !important;
}

.u-mb_45 {
  margin-bottom: 45px !important;
}

.u-mb_50 {
  margin-bottom: 50px !important;
}

.u-ml_00 {
  margin-left: 0 !important;
}

.u-ml_05 {
  margin-left: 5px !important;
}

.u-ml_10 {
  margin-left: 10px !important;
}

.u-ml_15 {
  margin-left: 15px !important;
}

.u-ml_20 {
  margin-left: 20px !important;
}

.u-ml_25 {
  margin-left: 25px !important;
}

.u-ml_30 {
  margin-left: 30px !important;
}

.u-ml_35 {
  margin-left: 35px !important;
}

.u-ml_40 {
  margin-left: 40px !important;
}

.u-ml_45 {
  margin-left: 45px !important;
}

.u-ml_50 {
  margin-left: 50px !important;
}

.u-mr_00 {
  margin-right: 0 !important;
}

.u-mr_05 {
  margin-right: 5px !important;
}

.u-mr_10 {
  margin-right: 10px !important;
}

.u-mr_15 {
  margin-right: 15px !important;
}

.u-mr_20 {
  margin-right: 20px !important;
}

.u-mr_25 {
  margin-right: 25px !important;
}

.u-mr_30 {
  margin-right: 30px !important;
}

.u-mr_35 {
  margin-right: 35px !important;
}

.u-mr_40 {
  margin-right: 40px !important;
}

.u-mr_45 {
  margin-right: 45px !important;
}

.u-mr_50 {
  margin-right: 50px !important;
}

.u-p_00 {
  padding: 0 !important;
}

.u-p_05 {
  padding: 5px !important;
}

.u-p_10 {
  padding: 10px !important;
}

.u-p_15 {
  padding: 15px !important;
}

.u-p_20 {
  padding: 20px !important;
}

.u-p_25 {
  padding: 25px !important;
}

.u-p_30 {
  padding: 30px !important;
}

.u-p_35 {
  padding: 35px !important;
}

.u-p_40 {
  padding: 40px !important;
}

.u-p_45 {
  padding: 45px !important;
}

.u-p_50 {
  padding: 50px !important;
}

.u-pt_00 {
  padding-top: 0 !important;
}

.u-pt_05 {
  padding-top: 5px !important;
}

.u-pt_10 {
  padding-top: 10px !important;
}

.u-pt_15 {
  padding-top: 15px !important;
}

.u-pt_20 {
  padding-top: 20px !important;
}

.u-pt_25 {
  padding-top: 25px !important;
}

.u-pt_30 {
  padding-top: 30px !important;
}

.u-pt_35 {
  padding-top: 35px !important;
}

.u-pt_40 {
  padding-top: 40px !important;
}

.u-pt_45 {
  padding-top: 45px !important;
}

.u-pt_50 {
  padding-top: 50px !important;
}

.u-pb_00 {
  padding-bottom: 0 !important;
}

.u-pb_05 {
  padding-bottom: 5px !important;
}

.u-pb_10 {
  padding-bottom: 10px !important;
}

.u-pb_15 {
  padding-bottom: 15px !important;
}

.u-pb_20 {
  padding-bottom: 20px !important;
}

.u-pb_25 {
  padding-bottom: 25px !important;
}

.u-pb_30 {
  padding-bottom: 30px !important;
}

.u-pb_35 {
  padding-bottom: 35px !important;
}

.u-pb_40 {
  padding-bottom: 40px !important;
}

.u-pb_45 {
  padding-bottom: 45px !important;
}

.u-pb_50 {
  padding-bottom: 50px !important;
}

.u-pl_00 {
  padding-left: 0 !important;
}

.u-pl_05 {
  padding-left: 5px !important;
}

.u-pl_10 {
  padding-left: 10px !important;
}

.u-pl_15 {
  padding-left: 15px !important;
}

.u-pl_20 {
  padding-left: 20px !important;
}

.u-pl_25 {
  padding-left: 25px !important;
}

.u-pl_30 {
  padding-left: 30px !important;
}

.u-pl_35 {
  padding-left: 35px !important;
}

.u-pl_40 {
  padding-left: 40px !important;
}

.u-pl_45 {
  padding-left: 45px !important;
}

.u-pl_50 {
  padding-left: 50px !important;
}

.u-pr_00 {
  padding-right: 0 !important;
}

.u-pr_05 {
  padding-right: 5px !important;
}

.u-pr_10 {
  padding-right: 10px !important;
}

.u-pr_15 {
  padding-right: 15px !important;
}

.u-pr_20 {
  padding-right: 20px !important;
}

.u-pr_25 {
  padding-right: 25px !important;
}

.u-pr_30 {
  padding-right: 30px !important;
}

.u-pr_35 {
  padding-right: 35px !important;
}

.u-pr_40 {
  padding-right: 40px !important;
}

.u-pr_45 {
  padding-right: 45px !important;
}

.u-pr_50 {
  padding-right: 50px !important;
}

.u-position_relative {
  position: relative !important;
}

.u-position_abs {
  position: absolute !important;
}

.u-position_fixed {
  position: fixed !important;
}

.u-position_static {
  position: static !important;
}

.u-vertical_mid {
  vertical-align: middle !important;
}

.u-vertical_bottom {
  vertical-align: bottom !important;
}

.u-vertical_base {
  vertical-align: baseline !important;
}

.u-vertical_sup {
  vertical-align: super !important;
}

.u-vertical_sub {
  vertical-align: sub !important;
}

.u-vertical_tb {
  vertical-align: text-bottom !important;
}

.u-vertical_tt {
  vertical-align: text-top !important;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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