:root {
  --font-default: a-otf-ud-shin-go-pr6n, sans-serif;
  --transition-default: 
  cubic-bezier(0.165, 0.84, 0.44, 1);
  --zindex-header: 90;
  --zindex-fullsize-menu: 100;
  --zindex-sp-menu: 110;
  --zindex-pagetop: 10;
  --header-height: 78px;
  --globalnav-height: 58px;
  --spmenu-height: 59px;
  --contents-padding: 70px;
  --color-black: #000;
  --color-black-2: #111;
  --color-blue: #587cf7;
  --color-blue-2: #1a75ff;
  --color-gray: #f7f7f7;
  --color-red: #f03;
  --color-white-1: #fff;
  --contents-side-padding: 20;
  --contents-width: 1200;
  --design-width: 1440;
  --ff-ls-b: "LINESeedJPStd Bold";
  --ff-ls-eb: "LINESeedJPStd ExtraBold";
  --ff-ls-m: "LINESeedJPStd Regular";
  --ff-ls-t: "LINESeedJPStd Thin";
  --hover-duration: 0.3s;
  --hover-opacity-ratio: 0.6;
  --p-inline: 20px;
  --px: calc(1rem / 16);
  --root-fz: 16;
  --transition: background-color 0.3s ease-out, transform 0.3s ease-out;
}

@media screen and (max-width: 1023px) {
  :root {
    --contents-side-padding: 30;
    --contents-width: 335;
    --design-width: 375;
    --fixed-header-height: 0;
    --line-height: 1.5;
    --minwidth: 320;
  }
}

/* Reset.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body,
main,
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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
button {
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  font-family: var(--ff-ls-m);
  margin: 0;
  padding: 0;
  text-indent: 0.01px;
  touch-action: manipulation;
}
ol,
ul {
  list-style: none;
}
html,
body {
  color: var(--color-black);
  font-family: var(--ff-ls-m);
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  position: relative;
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
.l-wrapper {
  position: relative;
}

/* ---------------------------------------------
*   l-contents__inner
--------------------------------------------- */
.l-contents__inner {
  margin-inline: auto;
  max-width: 1200px;
  position: relative;
}
/* ---------------------------------------------
*   l-txt__red
--------------------------------------------- */
.l-txt__red {
  color: var(--color-red);
}
/* ---------------------------------------------
*   l-txt__bold
--------------------------------------------- */
.l-txt__bold {
  font-family: var(--ff-ls-b);
}
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
  box-sizing: border-box;
  left: 50%;
  overflow: hidden;
  padding-right: 32px;
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  z-index: 9;
}
@media screen and (max-width: 1023px) {
  .l-header {
    background: var(--color-white-1);
    border-radius: 0;
    box-shadow: none;
    height: 54px;
    left: 0;
    overflow: visible;
    padding-right: 0;
    top: 0;
    transform: none;
    width: 100%;
  }
}
.l-header::before {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.16);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999;
}
@media screen and (min-width: 1025px) {
  .l-header::before {
    content: normal;
  }
}

/*  l-header-container
--------------------------------------------- */
.l-header-container {
  align-items: center;
  display: flex;
  height: 100%;
}
@media screen and (min-width: 1025px) and (max-width: 1140px) {
  .l-header-container {
    padding-inline: 3.0701754386vw 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-header-container {
    padding-inline: 16px 0;
  }
}

/*  l-header-logo
--------------------------------------------- */
.l-header-logo {
  margin-right: auto;
  width: 215px;
}
@media screen and (min-width: 1024px) {
  .l-header-logo {
    background: var(--color-white-1);
    border-bottom-right-radius: 20px;
    flex-shrink: 0;
    padding: 34px 29px 24px 26px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header-logo {
    width: 110px;
  }
}
.l-header-logo__link {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .l-header-logo__link[href] {
    transition: opacity 0.3s;
  }
  .l-header-logo__link[href]:hover {
    opacity: 0.8;
  }
}
.l-header-logo__link img {
  height: auto;
  max-width: 160px;
  width: 100%;
}

/*  l-header-button
--------------------------------------------- */
.l-header-button {
  display: block;
  flex-shrink: 0;
  height: 100%;
  margin-left: 35px;
}
@media screen and (min-width: 1025px) and (max-width: 1140px) {
  .l-header-button {
    margin-left: 3.0701754386vw;
  }
}
@media screen and (max-width: 1023px) {
  .l-header-button {
    align-items: center;
    display: flex;
    margin-left: 0;
  }
}
.l-header-button__link {
  align-items: center;
  background-color: var(--color-blue);
  border: 2px solid var(--color-white-1);
  border-radius: 27px;
  box-shadow: 0 6px 15px rgba(25, 117, 255, 0.25);
  color: #fff;
  display: inline-flex;
  font-family: var(--ff-ls-b);
  font-size: min(16px, 14 / var(--design-width) * 100vw);
  height: 100%;
  justify-content: center;
  letter-spacing: 0.03em;
  padding: 14px 46px 14px 29px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-header-button__link {
    border: 2px solid var(--color-blue);
    border-radius: 3px;
    box-shadow: none;
    font-size: 0.875rem;
    height: auto;
    line-height: 1.8571428571;
    padding: 5px 23px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-button__link {
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .l-header-button__link:hover {
    background-color: var(--color-white-1);
    color: var(--color-blue-2);
  }
}
.l-header-button__link:after {
  border-right: 2px solid var(--color-white-1);
  border-top: 2px solid var(--color-white-1);
  content: "";
  display: inline-block;
  height: 8px;
  position: absolute;
  right: 27px;
  transform: rotate(45deg);
  width: 8px;
}
@media screen and (max-width: 1023px) {
  .l-header-button__link:after {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-button__link:hover::after {
    border-right: 2px solid var(--color-blue-2);
    border-top: 2px solid var(--color-blue-2);
  }
}
/*  l-header-menu
--------------------------------------------- */
@media screen and (min-width: 1025px) {
  .l-header-menu {
    background: var(--color-white-1);
    border-radius: 4px;
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.08);
    display: block !important;
    padding: 16px 60px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header-menu {
    inset: 54px 0 calc(100% - 54px);
    overflow-y: auto;
    overscroll-behavior-y: none;
    position: fixed;
    scrollbar-width: none;
    transition: bottom 0.5s, visibility 0.5s;
    visibility: hidden;
  }
  .l-header-menu::-webkit-scrollbar {
    display: none;
  }
  .is-menu-opened .l-header-menu {
    bottom: 0;
    visibility: visible;
  }
}
@media screen and (max-width: 1023px) {
  .l-header-menu__container {
    background-color: #f7f7f7;
    box-sizing: border-box;
    height: auto;
    overflow-y: auto;
    padding: 0 20px 30px;
  }
  .is-animating .l-header-menu__container {
    scrollbar-width: none;
  }
  .is-animating .l-header-menu__container::-webkit-scrollbar {
    display: none;
  }
}

/*  l-header-nav
--------------------------------------------- */
.l-header-nav__list {
  display: flex;
  gap: min(25px, 25 / var(--design-width) * 100vw);
}
@media screen and (max-width: 1023px) {
  .l-header-nav__list {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .l-header-nav__item {
    border-bottom: 1px solid #dbdbdb;
  }
}
.l-header-nav__link {
  font-family: var(--ff-ls-b);
  font-size: min(14px, 14 / var(--design-width) * 100vw);
  letter-spacing: 0.02em;
  position: relative;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  .l-header-nav__link {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    padding: 20px 20px 20px 5px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-nav__link:hover {
    text-decoration: underline;
  }
}
.l-header-nav__link::after {
  background: url(../img/icn_arr.svg) center no-repeat;
  background-size: contain;
  content: normal;
  height: 7px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
}
@media screen and (max-width: 1023px) {
  .l-header-nav__link::after {
    content: "";
  }
}

/*  l-header-menu-button
--------------------------------------------- */
.l-header-menu-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: none;
  margin: 2px 10px 0 11px;
  outline: none;
  padding: 0 9px 15px;
  position: relative;
  touch-action: manipulation;
}
@media screen and (max-width: 1023px) {
  .l-header-menu-button {
    animation: fadeAnim 0.3s forwards;
    display: block;
    opacity: 0;
  }
}
.l-header-menu-button::after {
  bottom: 0;
  color: #00003e;
  content: normal;
  font-size: 10px;
  font-weight: 700;
  left: 50%;
  line-height: 1;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header-menu-button::after {
    animation: rotateAnim1 0.3s forwards;
    content: "メニュー";
  }
}
@media screen and (max-width: 1023px) {
  .is-menu-opened .l-header-menu-button::after {
    animation: rotateAnim2 0.3s forwards;
    content: "閉じる";
  }
}

@keyframes fadeAnim {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotateAnim1 {
  0% {
    transform: translateX(-70%) rotate(30deg);
  }
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
}
@keyframes rotateAnim2 {
  0% {
    transform: translateX(-30%) rotate(-30deg);
  }
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
}
.l-header-menu-button__lines {
  display: block;
  height: 18px;
  position: relative;
  width: 22px;
}
.l-header-menu-button__line {
  background-color: #00003e;
  border-radius: 9999px;
  display: block;
  height: 0;
  left: 0;
  padding-top: 2px;
  position: absolute;
  transition: 0.3s;
  width: 100%;
}
.l-header-menu-button__line--top {
  top: 0;
}
.is-menu-opened .l-header-menu-button__line--top {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.l-header-menu-button__line--center {
  margin-top: -1px;
  top: 50%;
}
.is-menu-opened .l-header-menu-button__line--center {
  background-color: rgba(0, 0, 0, 0);
}

.l-header-menu-button__line--bottom {
  bottom: 0;
}
.is-menu-opened .l-header-menu-button__line--bottom {
  bottom: 50%;
  transform: translateY(50%) rotate(45deg);
}

/* ===== セクション全体 ===== */
.c-kv {
  background-color: var(--color-white-1);
  background-image: url("/sites/default/files/media/jp/service/yahoo-ads/lp/ld202508/img/img_kv_bg-2.svg");
  background-position: top center;
  background-repeat: repeat-x;
  background-size: auto;
  height: min(708px, 708 / var(--design-width) * 100vw);
  position: relative;
}
@media (max-width: 1023px) {
  .c-kv {
    background-image: url("/sites/default/files/media/jp/service/yahoo-ads/lp/ld202508/img/img_kv_bg-2_sp.svg");
    background-position: top center;
    height: auto;
  }
}
.c-kv__inner {
  display: flex;
  height: min(708px, 708 / var(--design-width) * 100vw);
}
@media (max-width: 1023px) {
  .c-kv__inner {
    flex-direction: column;
    height: auto;
  }
}
.c-kv__copy {
  padding-left: min(120px, 120 / var(--design-width) * 100vw);
  padding-top: min(127px, 127 / var(--design-width) * 100vw);
  width: 44.44%;
}
@media (max-width: 1023px) {
  .c-kv__copy {
    padding-left: 0;
    padding-top: min(70px, 70 / var(--design-width) * 100vw);
    width: 100%;
  }
}
.c-kv__copy-inner {
  align-items: flex-start;
  left: 0;
  margin: 0 auto;
  max-width: 1200px;
  padding-left: min(20px, 20 / var(--design-width) * 100vw);
  position: absolute;
  right: min(120px, 120 / var(--design-width) * 100vw);
  width: 100%;
}
@media (max-width: 1023px) {
  .c-kv__copy-inner {
    padding-inline: min(5px, 5 / var(--design-width) * 100vw);
    position: relative;
  }
}
.c-kv__eyebrow {
  font-family: var(--ff-ls-b);
  font-size: min(24px, 24 / var(--design-width) * 100vw);
}
@media (max-width: 1023px) {
  .c-kv__eyebrow {
    font-size: calc(18 * var(--px));
    padding-inline: min(15px, 15 / var(--design-width) * 100vw);
  }
}
.c-kv__title {
  font-family: var(--ff-ls-eb);
  font-size: min(60px, 60 / var(--design-width) * 100vw);
  line-height: calc(79 / 60);
  margin-top: 10px;
}
@media (max-width: 1023px) {
  .c-kv__title {
    font-size: calc(32 * var(--px));
    padding-inline: min(15px, 15 / var(--design-width) * 100vw);
  }
}
@media (min-width: 1024px) {
  .c-kv__img-sp {
    display: none;
  }
}
.c-kv__img-sp {
  margin-top: 22px;
  text-align: center;
}
.c-kv__cta {
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .c-kv__cta {
    margin-top: 0;
    padding-inline: min(30px, 30 / var(--design-width) * 100vw);
    text-align: center;
  }
}
.c-kv__link {
  align-items: center;
  background: var(--color-blue-2);
  border: 4px solid var(--color-white-1);
  border-radius: 40px;
  box-shadow: 0 8px 14px 0 rgba(25, 117, 255, 0.25);
  color: var(--color-white-1);
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: min(20px, 20 / var(--design-width) * 100vw);
  gap: min(18px, 18 / var(--design-width) * 100vw);
  height: 82px;
  justify-content: center;
  letter-spacing: 0.03em;
  max-width: 362px;
  transition: var(--transition);
}
@media (max-width: 1023px) {
  .c-kv__link {
    border: 3px solid var(--color-white-1);
    font-size: min(18px, 18 / var(--design-width) * 100vw);
    gap: min(8px, 8 / var(--design-width) * 100vw);
    height: 62px;
    margin-inline: auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-kv__link:hover {
    background: var(--color-white-1);
    border: 4px solid var(--color-blue-2);
    color: var(--color-blue-2);
    text-decoration: none;
  }
}
.c-kv__link-arrow {
  align-items: center;
  background: var(--color-white-1);
  border-radius: 50%;
  display: flex;
  height: 30px;
  justify-content: center;
  padding-right: 2px;
  position: relative;
  width: 30px;
}
@media (max-width: 1023px) {
  .c-kv__link-arrow {
    height: 24px;
    width: 24px;
  }
}
.c-kv__link-arrow::before {
  border-right: 2px solid var(--color-blue-2);
  border-top: 2px solid var(--color-blue-2);
  content: "";
  display: block;
  height: 7px;
  transform: rotate(45deg);
  width: 7px;
}
@media (max-width: 1023px) {
  .c-kv__link-arrow::before {
    height: 5px;
    width: 5px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-kv__link:hover .c-kv__link-arrow {
    background: var(--color-blue-2);
  }
  .c-kv__link:hover .c-kv__link-arrow:before {
    border-right: 2px solid var(--color-white-1);
    border-top: 2px solid var(--color-white-1);
  }
}
.c-kv__note {
  color: var(--color-black);
  font-family: var(--ff-ls-b);
  font-size: min(15px, 15 / var(--design-width) * 100vw);
  letter-spacing: 0.03em;
  margin-top: 30px;
  padding-left: 35px;
}
@media (max-width: 1023px) {
  .c-kv__note {
    font-size: calc(14 * var(--px));
    margin-top: 16px;
    padding-left: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-kv__note a:hover {
    text-decoration: underline;
  }
}
.c-kv__visual {
  overflow: hidden;
  position: relative;
  width: 55.56%;
}
@media (max-width: 1023px) {
  .c-kv__visual {
    display: none;
  }
}
.c-kv__bg img {
  height: 666px;
  margin-top: -30px;
  object-fit: cover;
  object-position: left bottom;
  width: 100%;
}
.c-kv__img {
  bottom: 34px;
  margin-right: -40px;
  position: absolute;
}

.c-kv__img img {
  max-width: 843px;
  width: 100%;
}
/* ---------------------------------------------
*   集客・売上に関して、こんなお悩みありませんか？
--------------------------------------------- */
.c-lead {
  background: var(--color-gray);
  padding-block: 50px 61px;
  padding-inline: 20px;
}
@media (max-width: 1023px) {
  .c-lead {
    margin-top: 40px;
    padding-block: 40px;
  }
}
.c-lead__h2title {
  font-family: var(--ff-ls-b);
  font-size: calc(32 * var(--px));
  letter-spacing: 0.02em;
  line-height: calc(58 / 32);
  text-align: center;
}
@media (max-width: 1023px) {
  .c-lead__h2title {
    font-size: calc(20 * var(--px));
    letter-spacing: 0.02em;
    line-height: calc(28 / 20);
  }
}
.c-lead__list {
  display: flex;
  gap: min(16px, 16 / var(--design-width) * 100vw);
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .c-lead__list {
    display: grid;
    gap: min(16px, 16 / var(--design-width) * 100vw);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .c-lead__item:nth-of-type(2n) {
    padding-top: 32px;
  }
}
.c-lead__txt01 {
  font-family: var(--ff-ls-b);
  font-size: calc(32 * var(--px));
  padding-top: 72px;
  position: relative;
  text-align: center;
}
@media (max-width: 1023px) {
  .c-lead__txt01 {
    font-size: calc(17 * var(--px));
  }
}
.c-lead__txt01:before {
  border-color: var(--color-red) transparent transparent transparent;
  border-left: 13.5px solid transparent;
  border-right: 13.5px solid transparent;
  border-top: 17px solid var(--color-red);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 35px;
  transform: translateX(-50%);
  width: 0;
}
.c-lead__txt01-red {
  color: var(--color-red);
  font-family: var(--ff-ls-eb);
  font-size: calc(52 * var(--px));
  letter-spacing: 0.03em;
}
@media (max-width: 1023px) {
  .c-lead__txt01-red {
    font-size: calc(32 * var(--px));
  }
}
/* ---------------------------------------------
*   Yahoo!広告検索広告とは？
--------------------------------------------- */
.c-about {
  background: var(--color-red);
  overflow: hidden;
  padding-block: 86px 90px;
  padding-inline: 20px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-about {
    padding-block: 40px;
  }
}
.c-about:before {
  background: url(/sites/default/files/media/jp/service/yahoo-ads/lp/ld202508/img/icon_about_bg02.svg) center center repeat-x;
  content: "";
  height: 907px;
  left: 50%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 1023px) {
  .c-about:before {
    background: url(/sites/default/files/media/jp/service/yahoo-ads/lp/ld202508/img/icon_about_bg02_sp.svg) center center repeat-x;
    background-size: cover;
    height: 100%;
  }
}
.c-about:after {
  background: url(/sites/default/files/media/jp/service/yahoo-ads/lp/ld202508/img/icon_about_bg01.svg) center center no-repeat;
  bottom: 0;
  content: "";
  height: 157px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 1217px;
}
@media (max-width: 1023px) {
  .c-about:after {
    display: none;
  }
}
.c-about__container {
  display: flex;
  gap: min(40px, 40 / var(--design-width) * 100vw);
  position: relative;
  z-index: 5;
}
@media (max-width: 1023px) {
  .c-about__container {
    align-items: center;
    flex-direction: column;
  }
}
.c-about__uiImg {
  margin-left: -140px;
  max-width: 870px;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-about__uiImg {
    margin-left: -86px;
    min-width: 443px;
    order: 1;
  }
}
@media (max-width: 1023px) {
  .c-about__body {
    text-align: center;
  }
}
.c-about__subTxt {
  background: var(--color-black);
  color: var(--color-white-1);
  font-family: var(--ff-ls-eb);
  font-size: calc(18 * var(--px));
  letter-spacing: 0.01em;
  line-height: calc(54 / 18);
  padding-inline: 6px;
}
@media (max-width: 1023px) {
  .c-about__subTxt {
    font-size: calc(12 * var(--px));
  }
}
.c-about__h2title {
  color: var(--color-white-1);
  font-family: var(--ff-ls-eb);
  font-size: calc(32 * var(--px));
  letter-spacing: 0.03em;
}
@media (max-width: 1023px) {
  .c-about__h2title {
    font-family: var(--ff-ls-b);
    font-size: calc(20 * var(--px));
  }
}
.c-about__h2title-big {
  font-size: calc(52 * var(--px));
}
@media (max-width: 1023px) {
  .c-about__h2title-big {
    font-family: var(--ff-ls-eb);
    font-size: calc(32 * var(--px));
  }
}
.c-about__txt {
  color: var(--color-white-1);
  font-family: var(--ff-ls-b);
  letter-spacing: 0.02em;
  line-height: calc(38 / 20);
}
@media (max-width: 1023px) {
  .c-about__txt {
    text-align: left;
  }
}
.c-about__txt:first-of-type {
  margin-top: 42px;
}
@media (max-width: 1023px) {
  .c-about__txt:first-of-type {
    margin-top: 20px;
  }
}
.c-about__txt:not(:first-of-type) {
  margin-top: 24px;
}
@media (max-width: 1023px) {
  .c-about__txt:not(:first-of-type) {
    margin-top: 14px;
  }
}
.c-about__txt-big {
  background: var(--color-white-1);
  border-radius: 3px;
  color: var(--color-red);
  display: inline-block;
  font-size: calc(30 * var(--px));
  line-height: calc(49 / 32);
  margin-top: 10px;
  padding-inline: 10px;
  padding-top: 2px;
}
@media (max-width: 1023px) {
  .c-about__txt-big {
    font-size: calc(18 * var(--px));
    line-height: calc(38 / 18);
  }
}
.c-about__cta {
  margin-top: 56px;
  position: relative;
  text-align: center;
  z-index: 5;
}
@media (max-width: 1023px) {
  .c-about__cta {
    margin-top: 32px;
  }
}
.c-about__link {
  align-items: center;
  background: var(--color-black);
  border: 2px solid var(--color-black);
  border-radius: 40px;
  color: var(--color-white-1);
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: calc(21 * var(--px));
  gap: min(8px, 8 / var(--design-width) * 100vw);
  margin-inline: auto;
  max-width: 385px;
  padding-block: 22px;
  padding-inline: 43px 36px;
  transition: var(--transition);
}
@media (max-width: 1023px) {
  .c-about__link {
    font-size: calc(18 * var(--px));
    justify-content: center;
    padding-block: 14px;
    padding-inline: 37px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-about__link:hover {
    background: var(--color-white-1);
    color: var(--color-black);
  }
}
.c-about__link-arrow {
  align-items: center;
  background: var(--color-white-1);
  border-radius: 50%;
  display: flex;
  height: 30px;
  justify-content: center;
  padding-right: 2px;
  position: relative;
  width: 30px;
}
@media (max-width: 1023px) {
  .c-about__link-arrow {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-about__link:hover .c-about__link-arrow {
    background: var(--color-black);
  }
}
.c-about__link-arrow::before {
  border-right: 2px solid var(--color-black);
  border-top: 2px solid var(--color-black);
  content: "";
  display: block;
  height: 7px;
  transform: rotate(45deg);
  width: 7px;
}
@media (hover: hover) and (pointer: fine) {
  .c-about__link:hover .c-about__link-arrow::before {
    border-right: 2px solid var(--color-white-1);
    border-top: 2px solid var(--color-white-1);
  }
}
/* モーダル */
.c-modal {
  display: none;
  inset: 0;
  position: fixed;
  z-index: 1000;
}

.c-modal.is-active {
  display: block;
}

.c-modal__overlay {
  background: rgba(0, 0, 0, 0.8);
  inset: 0;
  position: absolute;
}

.c-modal__content {
  background: #fff;
  border-radius: 8px;
  left: 50%;
  max-width: 1000px;
  padding: 24px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 1023px) {
  .c-modal__content {
    max-width: 600px;
    width: 80%;
  }
}
.c-modal__close {
  background: transparent;
  border: none;
  color: var(--color-white-1);
  cursor: pointer;
  font-size: calc(24 * var(--px));
  line-height: 1;
  position: absolute;
  right: 0;
  top: -30px;
}
/* ---------------------------------------------
*   リスティング広告（検索広告）の特徴
--------------------------------------------- */
.c-feature {
  padding: 100px 20px 0;
}
@media (max-width: 1023px) {
  .c-feature {
    padding-top: 40px;
  }
}
.c-feature__title {
  text-align: center;
}
.c-feature__subTxt {
  background: var(--color-red);
  color: var(--color-white-1);
  font-family: var(--ff-ls-eb);
  font-size: calc(18 * var(--px));
  line-height: calc(54 / 18);
  padding-inline: 8px;
}
@media (max-width: 1023px) {
  .c-feature__subTxt {
    font-size: calc(12 * var(--px));
    line-height: 1;
  }
}
.c-feature__h2title {
  font-family: var(--ff-ls-b);
  font-size: calc(40 * var(--px));
  letter-spacing: 0.02em;
  margin-top: 22px;
}
@media (max-width: 1023px) {
  .c-feature__h2title {
    font-size: calc(24 * var(--px));
    letter-spacing: 0.02em;
    margin-top: 12px;
  }
}
.c-feature__container {
  align-items: center;
  display: flex;
  gap: min(72px, 72 / var(--design-width) * 100vw);
  justify-content: center;
  margin-top: 72px;
}
@media (max-width: 1023px) {
  .c-feature__container {
    flex-direction: column;
    gap: min(24px, 24 / var(--design-width) * 100vw);
    margin-top: 24px;
  }
  .c-feature__container:not(:first-of-type) {
    margin-top: 40px;
  }
}
.c-feature__container:nth-of-type(odd) .c-feature__container-img {
  order: 1;
}
@media (max-width: 1023px) {
  .c-feature__container:nth-of-type(odd) .c-feature__container-img {
    order: unset;
  }
}
.c-feature__container-img {
  max-width: 600px;
  width: 100%;
}
.c-feature__h3title {
  font-family: var(--ff-ls-b);
  font-size: calc(32 * var(--px));
  letter-spacing: 0.02em;
}
@media (max-width: 1023px) {
  .c-feature__h3title {
    font-size: calc(20 * var(--px));
  }
}
.c-feature__body-txt {
  font-size: calc(14 * var(--px));
  letter-spacing: 0.03em;
  line-height: calc(28 / 14);
  margin-top: 24px;
}
@media (max-width: 1023px) {
  .c-feature__body-txt {
    line-height: calc(22 / 14);
    margin-top: 16px;
  }
}
/* ---------------------------------------------
*   いますぐYahoo!広告検索広告をはじめる
--------------------------------------------- */
.c-start {
  background-color: var(--color-blue-2);
  background-image: url("/sites/default/files/media/jp/service/yahoo-ads/lp/ld202508/img/img_start_bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  color: var(--color-white-1);
  margin-inline: auto;
  margin-top: 100px;
  max-width: 1300px;
  overflow: clip;
}
@media (max-width: 1023px) {
  .c-start {
    background-image: url("/sites/default/files/media/jp/service/yahoo-ads/lp/ld202508/img/img_start_bg_sp.svg");
    border-radius: 10px;
    margin-top: 40px;
    width: 89.33%;
  }
}
.c-start__inner {
  align-items: center;
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  grid-template-columns: 1.1fr 1fr;
  padding-bottom: 57px;
  padding-left: 110px;
  padding-top: 67px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-start__inner {
    grid-template-columns: 1fr;
    padding: 40px 22px;
  }
}
/* 左カラム */
.c-start__copy {
  max-width: 720px;
}
@media (max-width: 1023px) {
  .c-start__copy {
    margin-inline: auto;
    text-align: center;
  }
}
.c-start__title {
  font-family: var(--ff-ls-eb);
  font-size: 2.625rem;
  letter-spacing: 0.02em;
  line-height: calc(58 / 42);
  margin-top: 8px;
}
@media (max-width: 1023px) {
  .c-start__title {
    font-size: calc(26 * var(--px));
    text-align: center;
  }
}
.c-start__sub {
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: 0.75rem;
  gap: 4px;
  letter-spacing: 0.02em;
  margin-top: 16px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-start__sub {
    align-items: center;
    justify-content: center;
    margin-top: 23px;
  }
}
.c-start__sub::before {
  content: "＼";
}
.c-start__sub::after {
  content: "／";
}
.c-start__cta {
  margin-top: 12px;
}
@media (max-width: 1023px) {
  .c-start__cta {
    text-align: center;
  }
}
.c-start__link {
  align-items: center;
  background: var(--color-black);
  border: 3px solid var(--color-black);
  border-radius: 40px;
  color: var(--color-white-1);
  display: inline-flex;
  font-family: var(--ff-ls-b);
  font-size: calc(18 * var(--px));
  gap: min(13px, 13 / var(--design-width) * 100vw);
  justify-content: center;
  padding: 18px 53px;
  text-decoration: none;
  transition: var(--transition);
}
@media (max-width: 1023px) {
  .c-start__link {
    font-size: calc(14 * var(--px));
    gap: min(10px, 10 / var(--design-width) * 100vw);
    letter-spacing: 0.03em;
    padding: 16px 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-start__link:hover {
    background: var(--color-white-1);
    border: 3px solid var(--color-white-1);
    color: var(--color-black);
  }
}
.c-start__link-arrow {
  align-items: center;
  background: var(--color-white-1);
  border-radius: 50%;
  display: flex;
  height: 30px;
  justify-content: center;
  padding-right: 2px;
  position: relative;
  width: 30px;
}
@media (max-width: 1023px) {
  .c-start__link-arrow {
    height: 24px;
    width: 24px;
  }
}
.c-start__link-arrow::before {
  border-right: 2px solid var(--color-black);
  border-top: 2px solid var(--color-black);
  content: "";
  display: block;
  height: 7px;
  transform: rotate(45deg);
  width: 7px;
}
@media (hover: hover) and (pointer: fine) {
  .c-start__link:hover .c-start__link-arrow {
    background: var(--color-black);
  }
  .c-start__link:hover .c-start__link-arrow::before {
    border-right: 2px solid var(--color-white-1);
    border-top: 2px solid var(--color-white-1);
  }
}
.btn--primary {
  background: var(--color-white-1);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  color: var(--color-black);
  font-size: 1.125rem;
}

.c-start__txt-link {
  color: var(--color-white-1);
  display: inline-block;
  font-family: var(--ff-ls-b);
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin-top: 16px;
  padding-left: 18px;
}
@media (max-width: 1023px) {
  .c-start__txt-link {
    display: block;
    font-size: calc(14 * var(--px));
    margin-inline: auto;
    padding-left: 0;
    text-align: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-start__txt-link:hover {
    text-decoration: underline;
  }
}
/* 右カラム（モック画像） */
.c-start__visual {
  bottom: 0;
  position: absolute;
  right: 0;
}
@media (max-width: 1023px) {
  .c-start__visual {
    display: none;
  }
}
.c-start__img {
  max-width: 715px;
  width: 100%;
}
@media (max-width: 1120px) and (min-width: 1024px) {
  .c-start__img {
    max-width: 610px;
  }
}
/* ---------------------------------------------
*   そんなお悩みはありませんか？
--------------------------------------------- */
.c-problem {
  background: #333;
  color: var(--color-white-1);
  margin-top: 100px;
  padding-inline: 16px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-problem {
    margin-top: 40px;
  }
}
.c-problem::after {
  border-color: #333 transparent transparent transparent;
  border-radius: 2px;
  border-style: solid;
  border-width: 68px 38px 0 38px;
  bottom: -38px;
  content: "";
  display: inline-block;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
@media (max-width: 1023px) {
  .c-problem::after {
    border-width: 38px 20px 0 20px;
    bottom: -19px;
  }
}
.c-problem__inner {
  margin-inline: auto;
  max-width: 1200px;
  padding-block: 56px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-problem__inner {
    padding-block: 40px 140px;
  }
}
.c-problem__fig {
  bottom: 0;
  position: absolute;
}
.c-problem__fig-left {
  left: 30px;
}
@media (max-width: 1023px) {
  .c-problem__fig-left {
    left: unset;
    right: 30%;
    transform: translateX(50%);
  }
}
.c-problem__fig-right {
  right: 30px;
}
@media (max-width: 1023px) {
  .c-problem__fig-right {
    left: 30%;
    right: unset;
    transform: translateX(-50%);
  }
}
.c-problem__fig img {
  height: 242px;
  width: 163px;
}
@media (max-width: 1023px) {
  .c-problem__fig img {
    height: 133px;
    width: 90px;
  }
}
.c-problem__txt {
  font-family: var(--ff-ls-b);
  font-size: calc(26 * var(--px));
  letter-spacing: 0.02em;
  line-height: calc(58 / 26);
  text-align: center;
}
@media (max-width: 1023px) {
  .c-problem__txt {
    font-size: calc(20 * var(--px));
    line-height: calc(28 / 20);
  }
}
.c-problem__txt + .c-problem__txt {
  margin-top: 24px;
}
@media (max-width: 1023px) {
  .c-problem__txt + .c-problem__txt {
    margin-top: 16px;
  }
}
/* ---------------------------------------------
*   Yahoo!広告 検索広告ならサポート体制が充実しているので、はじめてでも安心！
--------------------------------------------- */
.c-support {
  margin-top: 70px;
}
@media (max-width: 1023px) {
  .c-support {
    margin-top: 44px;
    padding-inline: 20px;
  }
}
.c-support__h2title {
  font-family: var(--ff-ls-b);
  font-size: calc(40 * var(--px));
  text-align: center;
}
@media (max-width: 1023px) {
  .c-support__h2title {
    font-size: calc(24 * var(--px));
  }
}
.c-support__container {
  background: var(--color-gray);
  border-radius: 20px;
  overflow: hidden;
  padding: 60px 88px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-support__container {
    padding: 150px 28px 32px;
  }
}
.c-support__container-01 {
  margin-top: 45px;
}
.c-support__container-01::before {
  background: url(/sites/default/files/media/jp/service/yahoo-ads/lp/ld202508/img/img_support_bg.png) center center no-repeat;
  background-size: contain;
  content: "";
  height: 345px;
  left: 0;
  position: absolute;
  top: 0;
  width: 528px;
}
@media (max-width: 1023px) {
  .c-support__container-01::before {
    background: url(/sites/default/files/media/jp/service/yahoo-ads/lp/ld202508/img/img_support_bg_sp.png) center center no-repeat;
    background-size: cover;
    content: "";
    height: 122px;
    width: 100%;
  }
}
.c-support__body {
  max-width: 536px;
  position: relative;
}
.c-support__container-01 .c-support__body {
  margin-left: auto;
}
@media (max-width: 1023px) {
  .c-support__container-01 .c-support__body {
    margin-left: 0;
  }
}
.c-support__container-02 {
  align-items: center;
  display: flex;
  gap: min(52px, 52 / var(--design-width) * 100vw);
  justify-content: center;
  margin-top: 32px;
}
@media (max-width: 1023px) {
  .c-support__container-02 {
    flex-direction: column;
    gap: min(29px, 29 / var(--design-width) * 100vw);
    padding: 32px 28px;
  }
}
.c-support__container-02 img {
  max-width: 436px;
  width: 100%;
}
.c-support__num {
  background: var(--color-black);
  color: var(--color-white-1);
  font-family: var(--ff-ls-b);
  font-size: calc(17 * var(--px));
  letter-spacing: 0.01em;
  padding: 2px 12px;
}
@media (max-width: 1023px) {
  .c-support__num {
    font-size: calc(12 * var(--px));
  }
}
.c-support__h3title {
  font-family: var(--ff-ls-b);
  font-size: calc(32 * var(--px));
  margin-top: 18px;
  text-align: left;
}
@media (max-width: 1023px) {
  .c-support__h3title {
    font-size: calc(20 * var(--px));
    margin-top: 10px;
  }
}
.c-support__txt {
  font-size: calc(14 * var(--px));
  letter-spacing: 0.03em;
  margin-top: 24px;
  text-align: left;
}
@media (max-width: 1023px) {
  .c-support__txt {
    margin-top: 12px;
  }
}
.c-support__img-block {
  margin-top: 35px;
}
@media (max-width: 1023px) {
  .c-support__img-block {
    margin-top: 32px;
  }
}
.c-support__img-block p {
  align-items: center;
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: 1rem;
  gap: min(6px, 6 / var(--design-width) * 100vw);
  letter-spacing: 0.03em;
}
@media (max-width: 1023px) {
  .c-support__img-block p {
    font-size: calc(14 * var(--px));
  }
}
.c-support__img-block p:before {
  background: var(--color-red);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 6px;
  position: relative;
  width: 6px;
}
.c-support__img-block img {
  margin-top: 16px;
}
@media (max-width: 1023px) {
  .c-support__img-block img {
    display: block;
    margin-inline: auto;
  }
}
/* ---------------------------------------------
*  「興味はあるけど、一度試してから考えたい…」そんな方におすすめ！
--------------------------------------------- */
.c-present {
  aspect-ratio: 1 / 1;
  background: url(/sites/default/files/media/jp/service/yahoo-ads/lp/ld202508/img/img_present_bg.png) center center repeat-x;
  background-size: cover;
  height: 546px;
  margin-top: 160px;
  position: relative;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-present {
    height: 464px;
  }
}
.c-present__inner {
  padding-inline: var(--p-inline);
}
.c-present__bubble {
  left: 50%;
  max-width: 660px;
  position: absolute;
  top: -116px;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 1023px) {
  .c-present__bubble {
    max-width: 335px;
    top: -74px;
  }
}
.c-present__container-bg {
  left: 50%;
  max-width: 1067px;
  position: absolute;
  top: 100px;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 1023px) {
  .c-present__container-bg {
    padding-inline: 20px;
    text-align: center;
  }
}
.c-present__container-bg img {
  aspect-ratio: 1 / 1;
  height: 388px;
  max-width: 1067px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-present__container-bg img {
    height: 312px;
    max-width: 335px;
  }
}
.c-present__cta {
  bottom: 110px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 400px;
}
@media (max-width: 1023px) {
  .c-present__cta {
    bottom: 90px;
    max-width: 290px;
  }
}
.c-present__link {
  align-items: center;
  background-image: linear-gradient(90deg, rgba(247, 121, 17, 1), rgba(255, 1, 51, 1));
  border: 4px solid var(--color-white-1);
  border-radius: 40px;
  color: var(--color-white-1);
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: calc(22 * var(--px));
  gap: min(14px, 14 / var(--design-width) * 100vw);
  justify-content: center;
  padding: 22px 10px;
  transition: var(--transition);
}
@media (max-width: 1023px) {
  .c-present__link {
    font-size: calc(16 * var(--px));
    padding-block: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-present__link:hover {
    background: var(--color-white-1);
    border: 4px solid #fe102f;
    color: #fe102f;
  }
}
.c-present__link-arrow {
  align-items: center;
  background: var(--color-white-1);
  border-radius: 50%;
  display: flex;
  height: 30px;
  justify-content: center;
  padding-right: 2px;
  position: relative;
  width: 30px;
}
@media (max-width: 1023px) {
  .c-present__link-arrow {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-present__link:hover .c-present__link-arrow {
    background: #fe102f;
  }
}
.c-present__link-arrow::before {
  border-right: 2px solid #fe102f;
  border-top: 2px solid #fe102f;
  content: "";
  display: block;
  height: 7px;
  transform: rotate(45deg);
  width: 7px;
}
@media (hover: hover) and (pointer: fine) {
  .c-present__link:hover .c-present__link-arrow::before {
    border-right: 2px solid var(--color-white-1);
    border-top: 2px solid var(--color-white-1);
  }
}
/* ---------------------------------------------
*   広告掲載までの流れ
--------------------------------------------- */
.c-flow {
  margin-top: 100px;
}
@media (max-width: 1023px) {
  .c-flow {
    margin-top: 40px;
    padding-inline: 20px;
  }
}
.c-flow__title {
  text-align: center;
}
.c-flow__subTxt {
  background: var(--color-red);
  color: var(--color-white-1);
  font-family: var(--ff-ls-eb);
  font-size: calc(18 * var(--px));
  line-height: calc(54 / 18);
  padding-inline: 8px;
}
@media (max-width: 1023px) {
  .c-flow__subTxt {
    font-size: calc(12 * var(--px));
    line-height: 1;
  }
}
.c-flow__h2title {
  font-family: var(--ff-ls-b);
  font-size: calc(40 * var(--px));
  letter-spacing: 0.02em;
  margin-top: 22px;
}
@media (max-width: 1023px) {
  .c-flow__h2title {
    font-size: calc(24 * var(--px));
    letter-spacing: 0.02em;
    margin-top: 12px;
  }
}
.c-flow__item {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
}
.c-flow__item:not(:last-of-type)::after {
  border-color: transparent transparent transparent var(--color-black);
  border-style: solid;
  border-width: 7px 0 7px 12px;
  content: "";
  display: inline-block;
  position: absolute;
  right: -28px;
  top: 20px;
}
@media (max-width: 1023px) {
  .c-flow__item:not(:last-of-type)::after {
    bottom: -30px;
    left: 50%;
    right: unset;
    top: unset;
    transform: translateX(-50%) rotate(90deg);
  }
}
.c-flow__list {
  background: #f2f4f8;
  border-radius: 20px;
  display: flex;
  gap: min(45px, 45 / var(--design-width) * 100vw);
  justify-content: center;
  margin-top: 36px;
  padding: 65px 60px 75px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-flow__list {
    border-radius: 8px;
    flex-direction: column;
    gap: min(60px, 60 / var(--design-width) * 100vw);
    margin-top: 24px;
    padding: 32px 24px;
  }
}

.c-flow__h3title {
  background: var(--color-white-1);
  border-radius: 7px;
  font-family: var(--ff-ls-b);
  font-size: calc(17 * var(--px));
  letter-spacing: 0.03em;
  padding: 14px 30px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-flow__h3title {
    font-size: calc(15 * var(--px));
  }
}
.c-flow__num {
  color: var(--color-red);
  font-family: var(--ff-ls-b);
  font-size: calc(28 * var(--px));
  left: -8px;
  position: absolute;
  top: -15px;
}
.c-flow__img {
  margin-top: 28px;
}
.c-flow__txt {
  font-family: var(--ff-ls-m);
  font-size: calc(14 * var(--px));
  margin-top: 26px;
}
@media (max-width: 1023px) {
  .c-flow__txt {
    margin-top: 16px;
  }
}
.c-flow__txt a {
  color: #003e9a;
  font-family: var(--ff-ls-b);
  letter-spacing: 0.03em;
}

/* ---------------------------------------------
*   成果を実感したお客様の声
--------------------------------------------- */
.c-voice {
  background: #f2f4f8;
  margin-top: 145px;
  padding-block: 88px;
}
@media (max-width: 1023px) {
  .c-voice {
    margin-top: 40px;
    padding-block: 40px;
    padding-inline: 20px;
  }
}
.c-voice__title {
  text-align: left;
}
@media (max-width: 1023px) {
  .c-voice__title {
    text-align: center;
  }
}
.c-voice__subTxt {
  background: var(--color-red);
  color: var(--color-white-1);
  font-family: var(--ff-ls-eb);
  font-size: calc(18 * var(--px));
  line-height: calc(54 / 18);
  padding-inline: 8px;
}
@media (max-width: 1023px) {
  .c-voice__subTxt {
    font-size: calc(12 * var(--px));
    line-height: calc(42 / 12);
  }
}
.c-voice__h2title {
  font-family: var(--ff-ls-b);
  font-size: calc(40 * var(--px));
  letter-spacing: 0.02em;
  margin-top: 22px;
}
@media (max-width: 1023px) {
  .c-voice__h2title {
    font-size: calc(24 * var(--px));
    margin-top: 12px;
  }
}
.c-voice__list {
  display: grid;
  gap: min(48px, 48 / var(--design-width) * 100vw);
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
}
@media (max-width: 1023px) {
  .c-voice__list {
    gap: min(24px, 24 / var(--design-width) * 100vw);
    grid-template-columns: 1fr;
  }
}
.c-voice__item {
  background: var(--color-white-1);
  border-radius: 9px;
  box-shadow: 0 40px 40px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.c-voice__body {
  padding-inline: 40px;
  padding-top: 32px;
}
@media (max-width: 1023px) {
  .c-voice__body {
    padding-inline: 24px;
    padding-top: 24px;
  }
}
.c-voice__body-h3title {
  font-family: var(--ff-ls-b);
  font-size: calc(28 * var(--px));
  letter-spacing: 0.055em;
  line-height: calc(38 / 28);
}
@media (max-width: 1023px) {
  .c-voice__body-h3title {
    font-size: calc(23 * var(--px));
    line-height: calc(31 / 23);
  }
}
.c-voice__body-txt {
  font-family: var(--ff-ls-m);
  font-size: calc(14 * var(--px));
  letter-spacing: 0.03em;
  line-height: calc(25 / 14);
  margin-top: 14px;
}
.c-voice__company {
  background: var(--color-black);
  display: flex;
  gap: min(40px, 40 / var(--design-width) * 100vw);
  height: 110px;
  justify-content: flex-start;
  margin-top: 40px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-voice__company {
    align-items: center;
    display: flex;
    gap: min(16px, 16 / var(--design-width) * 100vw);
    height: 96px;
    justify-content: space-between;
    margin-top: 24px;
    padding: 24px 16px;
  }
}
.c-voice__company-body {
  color: var(--color-white-1);
  padding-left: 40px;
  padding-top: 16px;
}
@media (max-width: 1023px) {
  .c-voice__company-body {
    max-width: 230px;
    padding-left: 0;
    padding-top: 0;
  }
}
.c-voice__company-name {
  font-family: var(--ff-ls-b);
  font-size: calc(19 * var(--px));
}
@media (max-width: 1023px) {
  .c-voice__company-name {
    font-size: calc(14 * var(--px));
  }
}
.c-voice__company-desc {
  font-family: var(--ff-ls-m);
  font-size: calc(14 * var(--px));
}
@media (max-width: 1023px) {
  .c-voice__company-desc {
    font-size: calc(12 * var(--px));
  }
}
.c-voice__company-img {
  bottom: 18px;
  position: absolute;
  right: 40px;
}
@media (max-width: 1023px) {
  .c-voice__company-img {
    bottom: unset;
    position: relative;
    right: unset;
    width: 60px;
  }
}
/* ---------------------------------------------
*   よくある質問
--------------------------------------------- */
.c-faq {
  padding-block: 100px;
}

@media (max-width: 1023px) {
  .c-faq {
    padding-block: 40px;
    padding-inline: 20px;
  }
}
.c-faq__title {
  text-align: center;
}
.c-faq__subTxt {
  background: var(--color-red);
  color: var(--color-white-1);
  font-family: var(--ff-ls-eb);
  font-size: calc(18 * var(--px));
  line-height: calc(54 / 18);
  padding-inline: 8px;
}
@media (max-width: 1023px) {
  .c-faq__subTxt {
    font-size: calc(12 * var(--px));
    line-height: calc(42 / 12);
  }
}
.c-faq__h2title {
  font-family: var(--ff-ls-b);
  font-size: calc(40 * var(--px));
  letter-spacing: 0.02em;
  margin-top: 22px;
}
@media (max-width: 1023px) {
  .c-faq__h2title {
    font-size: calc(24 * var(--px));
    margin-top: 12px;
  }
}
/* ---------------------------------------------
*   c-block-faq
--------------------------------------------- */
.c-block-faq {
  margin-top: min(40px, 40 / var(--design-width) * 100vw);
  position: relative;
}
@media screen and (max-width: 1023px) {
  .c-block-faq {
    margin-top: calc(15 / var(--design-width) * 100vw);
  }
}
/* ---------------------------------------------
*   c-acc-faq
--------------------------------------------- */
.c-acc-faq {
  position: relative;
}
.c-acc-faq__item {
  border-bottom: 1.5px solid var(--color-black);
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__item {
    border-width: calc(1 / var(--design-width) * 100vw);
  }
}
.c-acc-faq__item.is-open .c-acc-faq__head::before {
  transform: rotate(90deg);
}
.c-acc-faq__head {
  cursor: pointer;
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
  .c-acc-faq__head:hover {
    transition: opacity var(--hover-duration);
  }
  .c-acc-faq__head:hover:hover {
    opacity: var(--hover-opacity-ratio);
  }
}
.c-acc-faq__head::before,
.c-acc-faq__head::after {
  background-color: var(--color-black-2);
  content: "";
  height: min(28px, 28 / var(--design-width) * 100vw);
  position: absolute;
  right: min(20px, 20 / var(--design-width) * 100vw);
  top: 33%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: min(2px, 2 / var(--design-width) * 100vw);
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__head::before,
  .c-acc-faq__head::after {
    height: calc(23 / var(--design-width) * 100vw);
    right: calc(11 / var(--design-width) * 100vw);
    width: calc(1.5 / var(--design-width) * 100vw);
  }
}
.c-acc-faq__head::after {
  transform: rotate(90deg);
}
.c-acc-faq__head-txt {
  color: var(--color-black-2);
  display: block;
  font-family: var(--ff-ls-b);
  font-size: calc(18 * var(--px));
  line-height: 1.6666666667;
  padding-block: min(30px, 30 / var(--design-width) * 100vw);
  padding-inline: calc(75 / 1200 * 100%) calc(40 / 1200 * 100%);
  position: relative;
  transition: 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__head-txt {
    display: block;
    font-size: calc(14 * var(--px));
    line-height: 1.5714285714;
    padding-block: calc(15 / var(--design-width) * 100vw);
    padding-inline: calc(45 / 344 * 100%) calc(60 / 344 * 100%);
    width: 100%;
  }
}
.c-acc-faq__head-txt::before {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/yahoo-ads/lp/lp202507/img/svg/icon_q.svg) no-repeat center/contain;
  content: "";
  height: min(44px, 44 / var(--design-width) * 100vw);
  left: min(6px, 6 / var(--design-width) * 100vw);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(44px, 44 / var(--design-width) * 100vw);
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__head-txt::before {
    height: calc(28 / var(--design-width) * 100vw);
    left: 0;
    width: calc(28 / var(--design-width) * 100vw);
  }
}
.c-acc-faq__body {
  background-color: #eaeaea;
  color: var(--color-black-2);
  padding-block: min(32px, 32 / var(--design-width) * 100vw);
  padding-inline: calc(115 / 1200 * 100%) calc(61 / 1200 * 100%);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__body {
    padding-block: calc(16 / var(--design-width) * 100vw);
    padding-inline: calc(60 / var(--design-width) * 100vw) calc(23 / var(--design-width) * 100vw);
  }
}
.c-acc-faq__body::before {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/yahoo-ads/lp/lp202507/img/svg/icon_a.svg) no-repeat center/contain;
  content: "";
  height: min(44px, 44 / var(--design-width) * 100vw);
  left: min(45px, 45 / var(--design-width) * 100vw);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(44px, 44 / var(--design-width) * 100vw);
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__body::before {
    height: calc(28 / var(--design-width) * 100vw);
    left: calc(20 / var(--design-width) * 100vw);
    top: 17%;
    transform: none;
    width: calc(28 / var(--design-width) * 100vw);
  }
}
.c-acc-faq__body p {
  font-family: var(--ff-ls-b);
  font-size: calc(18 * var(--px));
  line-height: 1.6666666667;
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__body p {
    font-size: calc(14 * var(--px));
  }
}
.c-acc-faq__body p + p {
  margin-top: min(8px, 8 / var(--design-width) * 100vw);
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__body p + p {
    margin-top: calc(20 / var(--design-width) * 100vw);
  }
}
.c-acc-faq__body a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .c-acc-faq__body a:hover {
    text-decoration: none;
  }
}
/*  js-acc-target
--------------------------------------------- */
.js-acc-target {
  --acc-body-height: 0;
  height: 0;
  overflow: hidden;
}
.js-acc-scope.is-close .js-acc-target {
  animation: closeAccAnim 0.5s forwards;
}

.js-acc-scope.is-open .js-acc-target {
  animation: openAccAnim 0.5s forwards;
}

@keyframes openAccAnim {
  0% {
    height: 0;
    visibility: hidden;
  }
  99% {
    height: var(--acc-body-height);
    visibility: visible;
  }
  100% {
    height: auto;
  }
}
@keyframes closeAccAnim {
  0% {
    height: var(--acc-body-height);
    visibility: visible;
  }
  100% {
    height: 0;
    visibility: hidden;
  }
}
/* ---------------------------------------------
*  フッター
--------------------------------------------- */
.c-footer {
  background-color: var(--color-blue);
  background-image: url("/sites/default/files/media/jp/service/yahoo-ads/lp/ld202508/img/img_fotter_bg.png");
  background-position: top center;
  background-repeat: repeat-x;
  background-size: auto;
  padding-block: 100px 44px;
}
@media screen and (max-width: 1023px) {
  .c-footer {
    background-image: url("/sites/default/files/media/jp/service/yahoo-ads/lp/ld202508/img/img_fotter_bg_sp.svg");
    background-size: cover;
    padding-block: 55px 35px;
    padding-inline: 20px;
  }
}
.c-footer__title {
  text-align: center;
}
.c-footer__img {
  margin-inline: auto;
}
.c-footer__h2title {
  color: var(--color-white-1);
  font-family: var(--ff-ls-eb);
  font-size: calc(48 * var(--px));
  letter-spacing: 0.06em;
  line-height: calc(69 / 48);
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .c-footer__h2title {
    font-size: calc(26 * var(--px));
    line-height: calc(38 / 26);
    margin-top: 8px;
  }
}
.c-footer__container {
  margin-top: 16px;
  text-align: center;
}
.c-footer__sub {
  color: var(--color-white-1);
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: calc(12 * var(--px));
  gap: 4px;
  justify-content: center;
  letter-spacing: 0.02em;
  position: relative;
}
@media (max-width: 1023px) {
  .c-footer__sub {
    align-items: center;
    justify-content: center;
    margin-top: 23px;
  }
}
.c-footer__sub::before {
  content: "＼";
}
.c-footer__sub::after {
  content: "／";
}
.c-footer__cta {
  margin-top: 16px;
}
.c-footer__link {
  align-items: center;
  background: var(--color-black);
  border: 3px solid var(--color-black);
  border-radius: 40px;
  color: var(--color-white-1);
  display: inline-flex;
  font-family: var(--ff-ls-b);
  font-size: calc(20 * var(--px));
  gap: min(13px, 13 / var(--design-width) * 100vw);
  justify-content: center;
  padding: 23px 43px;
  text-decoration: none;
  transition: var(--transition);
}
@media (max-width: 1023px) {
  .c-footer__link {
    font-size: calc(16 * var(--px));
    padding: 18px 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-footer__link:hover {
    background: var(--color-white-1);
    border: 3px solid var(--color-white-1);
    color: var(--color-black);
  }
}
.c-footer__link-arrow {
  align-items: center;
  background: var(--color-white-1);
  border-radius: 50%;
  display: flex;
  height: 30px;
  justify-content: center;
  padding-right: 2px;
  position: relative;
  width: 30px;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer__link:hover .c-footer__link-arrow {
    background: var(--color-black);
  }
  .c-footer__link:hover .c-footer__link-arrow::before {
    border-right: 2px solid var(--color-white-1);
    border-top: 2px solid var(--color-white-1);
  }
}
.c-footer__link-arrow::before {
  border-right: 2px solid var(--color-black);
  border-top: 2px solid var(--color-black);
  content: "";
  display: block;
  height: 7px;
  transform: rotate(45deg);
  width: 7px;
}
.c-footer__txt-link {
  color: var(--color-white-1);
  display: inline-block;
  font-family: var(--ff-ls-b);
  font-size: calc(16 * var(--px));
  margin-top: 33px;
}
@media (max-width: 1023px) {
  .c-footer__txt-link {
    font-size: calc(14 * var(--px));
    margin-top: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-footer__txt-link:hover {
    text-decoration: underline;
  }
}
.l-footer__link {
  display: flex;
  margin-top: 100px;
}
@media (max-width: 1023px) {
  .l-footer__link {
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
  }
}
.l-footer__nav-list {
  display: flex;
  gap: min(40px, 40 / var(--design-width) * 100vw);
}
@media (max-width: 1023px) {
  .l-footer__nav-list {
    align-items: center;
    flex-direction: column;
    gap: min(16px, 16 / var(--design-width) * 100vw);
  }
}
.l-footer__nav-item {
  color: var(--color-white-1);
  font-family: var(--ff-ls-b);
  font-size: calc(12 * var(--px));
}
.l-footer__copyright {
  color: var(--color-white-1);
  font-family: var(--ff-ls-m);
  font-size: calc(10 * var(--px));
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .l-footer__copyright {
    margin-left: 0;
    margin-top: 40px;
  }
}
/* ---------------------------------------------
*  汎用
--------------------------------------------- */
@media screen and (min-width: 1024px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .pc-only {
    display: none;
  }
}


/* @license GPL-2.0-or-later https://www.drupal.org/licensing/faq */
.columnList.js-moreList.ajaxed {
    margin-top: 30px;
}

div.node-preview-container {
    z-index: 10000;
}

.headerMenu .headerMenuSub__inner .views-element-container {
    display: contents;
}

@media (min-width: 1024px) {
    div.taxonomy-term-list-column .contents__side > div:first-child,body.path-column .contents__side > div:first-child {
        margin-top:-60px;
    }

    div.taxonomy-term-list-column div.pageH2Area {
        margin: 0;
    }

    .breadcrumb-sp.only-sp {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .breadcrumb-sp.only-sp .topicpath {
        display:block;
        padding-inline:20px;background-color: #F5F5F5;
        overflow-x: hidden;
    }

    .path-seminar .breadcrumb-sp.only-sp .topicpath {
        position: relative;
    }

    .breadcrumb-sp.only-sp .topicpath .topicpath__list {
        display: block;
        padding-block:12px 13px;white-space: nowrap;
        overflow-x: scroll;
    }

    .breadcrumb-sp.only-sp .topicpath .topicpath__list > li > a {
        color: #404040;
    }

    .breadcrumb-sp.only-sp .topicpath .topicpath__list > li {
        color: #404040;
    }
}

.path-frontpage .toolbar {
    display: none;
}

body.path-frontpage.toolbar-vertical.toolbar-fixed {
    margin-left: 0;
}

.hidden {
    display: none!important;
}

form[id^="views-exposed-form-column-list-page-1"] {
    display: none!important;
}

.line-ps-reaction-vote-form {
    border: 1px solid #e0e0e0;
    margin-top: 60px;
    padding: 20px;
}

.line-ps-reaction-vote-form > form > p {
}

.line-ps-reaction-vote-form .form-radios {
    margin-bottom: 10px;
}

.line-ps-reaction-vote-form .form-radios .form-item {
}

.line-ps-reaction-vote-form-header {
    margin-bottom: 20px;
    font-weight: bold;
}

.line-ps-reaction-vote-form-footer {
    margin-top: 20px;
    font-size: 80%;
}

.manual .line-ps-reaction-vote-form {
    width: 100%;
}

.manual .backBtn {
    width: 100%;
}

.page-node-type-seminar .carouseSWPanelList:not(.swiper-container-horizontal) {
    max-width: 985px;
    padding: 0;
}

.page-node-type-seminar .contents__inner--small {
    max-width: 985px;
}

.visually-hidden {
    display: none;
}

.pageColumn1:has(a) > a > .pageColumn1__img:has(.pos-center),.pageColumn1:not(a) .pageColumn1__img:has(.pos-center) .pos-center {
    justify-self: center;
}

.pageColumn1:has(a) > .pageColumn1__img:has(.pos-center) a {
    display: grid;
}

.pageColumn1:has(a) > a > .pageColumn1__img:has(.pos-right),.pageColumn1:not(a) .pageColumn1__img:has(.pos-right) .pos-right {
    justify-self: right;
}

.pageColumn1:has(a) > .pageColumn1__img:has(.pos-right) a {
    display: grid;
}

.pageColumn1:has(a) > a > .pageColumn1__img:has(.pos-left),.pageColumn1:not(a) .pageColumn1__img:has(.pos-left) .pos-left {
    justify-self: left;
}

.pageColumn1:has(a) > .pageColumn1__img:has(.pos-left) a {
    display: grid;
}

.pageColumn1Txt:not(a) .pageColumn1Txt__img:has(.pos-center) .pos-center {
    display: flex;
    justify-self: center;
}

.pageColumn1Txt:has(a) > .pageColumn1Txt__img:has(.pos-center) a {
    display: grid;
}

.pageColumn1Txt:not(a) .pageColumn1Txt__img:has(.pos-right) .pos-right {
    display: flex;
    justify-self: right;
}

.pageColumn1Txt:has(a) > .pageColumn1Txt__img:has(.pos-right) a {
    display: grid;
}

.pageColumn1Txt:not(a) .pageColumn1Txt__img:has(.pos-left) .pos-left {
    display: flex;
    justify-self: left;
}

.pageColumn1Txt:has(a) > .pageColumn1Txt__img:has(.pos-left) a {
    display: grid;
}

.pageColumn2:has(a) > .pageColumn2__box > a > .pageColumn2__img:has(.pos-center),.pageColumn2:not(a) .pageColumn2__img:has(.pos-center) .pos-center {
    justify-self: center;
}

.pageColumn2:has(a) > .pageColumn2__box > .pageColumn2__img:has(.pos-center) a {
    display: grid;
}

.pageColumn2:has(a) > .pageColumn2__box > a > .pageColumn2__img:has(.pos-right),.pageColumn2:not(a) .pageColumn2__img:has(.pos-right) .pos-right {
    justify-self: right;
}

.pageColumn2:has(a) > .pageColumn2__box > .pageColumn2__img:has(.pos-right) a {
    display: grid;
}

.pageColumn2:has(a) > .pageColumn2__box > a > .pageColumn2__img:has(.pos-left),.pageColumn2:not(a) .pageColumn2__img:has(.pos-left) .pos-left {
    justify-self: left;
}

.pageColumn2:has(a) > .pageColumn2__box > .pageColumn2__img:has(.pos-left) a {
    display: grid;
}

.pageColumn3:has(a) > .pageColumn3__box > .pageColumn3__img:has(.pos-center):not(#pageLightBox),.pageColumn3:has(a) > .pageColumn3__box > a > .pageColumn3__img:has(.pos-center),.pageColumn3:not(a) .pageColumn3__img:has(.pos-center) .pos-center {
    justify-self: center;
}

.pageColumn3:has(a) > .pageColumn3__box > .pageColumn3__img:has(.pos-center) a {
    display: grid;
}

.pageColumn3:has(a) > .pageColumn3__box > .pageColumn3__img:has(.pos-right):not(#pageLightBox),.pageColumn3:has(a) > .pageColumn3__box > a > .pageColumn3__img:has(.pos-right),.pageColumn3:not(a) .pageColumn3__img:has(.pos-right) .pos-right {
    justify-self: right;
}

.pageColumn3:has(a) > .pageColumn3__box > .pageColumn3__img:has(.pos-right) a {
    display: grid;
}

.pageColumn3:has(a) > .pageColumn3__box > .pageColumn3__img:has(.pos-left):not(#pageLightBox),.pageColumn3:has(a) > .pageColumn3__box > a > .pageColumn3__img:has(.pos-left),.pageColumn3:not(a) .pageColumn3__img:has(.pos-left) .pos-left {
    justify-self: left;
}

.pageColumn3:has(a) > .pageColumn3__box > .pageColumn3__img:has(.pos-left) a {
    display: grid;
}

.adhesion-text-bg-color.pos-right {
    text-align: right;
}

.adhesion-text-bg-color.pos-left {
    text-align: left;
}

.adhesion-text-bg-color.pos-center {
    text-align: center;
}

.adhesion-text-bg-padding > * {
    padding: 35px 10px;
}

.adhesion-text-bg-color-gray {
    background-color: #f7f7f7;
}

.adhesion-text-bg-color-navy {
    background-color: #F2F4F8;
}

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,q {
    quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-family: "UD新ゴ B";
}

del {
    text-decoration: line-through;
}

abbr[title],dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

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

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,select {
    vertical-align: middle;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul,ol {
    list-style: none;
}

sup {
    font-size: 1.0rem;
    vertical-align: top;
}

button,html input[type="button"],input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

@font-face {
    font-family: Sukhumvit;
    src: url(/static/jp/common/font/07_SukhumvitTadmai_Lig.otf) format("opentype");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'Volte Regular';
    src: url(/static/jp/common/font/Volte-Regular.otf) format("opentype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'Volte Bold';
    src: url(/static/jp/common/font/VolteBold.woff) format("woff");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "LINESeedJPStd Regular";
    src: url(/static/jp/common/font/LINESeedJP_OTF_Rg.woff2) format("woff2"),url(/static/jp/common/font/LINESeedJP_OTF_Rg.woff) format("woff");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "LINESeedJPStd Thin";
    src: url(/static/jp/common/font/LINESeedJP_OTF_Th.woff2) format("woff2"),url(/static/jp/common/font/LINESeedJP_OTF_Th.woff) format("woff");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "LINESeedJPStd Bold";
    src: url(/static/jp/common/font/LINESeedJP_OTF_Bd.woff2) format("woff2"),url(/static/jp/common/font/LINESeedJP_OTF_Bd.woff) format("woff");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "LINESeedJPStd ExtraBold";
    src: url(/static/jp/common/font/LINESeedJP_OTF_Eb.woff2) format("woff2"),url(/static/jp/common/font/LINESeedJP_OTF_Eb.woff) format("woff");
    font-style: normal;
    font-weight: normal;
}

html {
    font-size: 62.5%;
}

body {
    white-space: normal;
    font-family: "UD新ゴ M",sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    word-break: break-word;
}

input,textarea,select,button {
    font-family: "UD新ゴ M",sans-serif;
}

input::placeholder {
    font-family: sans-serif;
}

strong,b {
    font-family: "UD新ゴ B",sans-serif;
}

* {
    zoom:1;box-sizing: border-box;
    outline: none;
}

a {
    color: #003E9A;
    font-family: "UD新ゴ B";
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#lyb-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #FFF;
    z-index: var(--zindex-header);
}

#lyb-header a {
    font-family: "UD新ゴ M";
}

#lyb-header .lyb-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF;
}

#lyb-header .lyb-header__logo {
    padding: 25px 32px;
}

#lyb-header button {
    appearance: none;
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

#lyb-header .assist-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#lyb-header .sp-menu-wrap {
    display: flex;
    align-items: center;
}

#lyb-header .sp-menu-wrap > ul {
    display: flex;
    gap: 0 14px;
    margin: 0 16px;
}

#lyb-header .assist-nav__login a,#lyb-header .assist-nav__signup a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 178px;
    height: 42px;
    font-size: 1.4rem;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.2s var(--transition-default);
}

#lyb-header .assist-nav__login a {
    color: #3C3C3C;
    background-color: #E5E7EB;
    border: 2px solid #E5E7EB;
}

#lyb-header .assist-nav__signup a {
    color: #FFF;
    background-color: #F77911;
    border: 2px solid #F77911;
}

#lyb-header .assist-nav__contact,#lyb-header .assist-nav__menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 78px;
    height: 78px;
    text-decoration: none;
    font-size: 1rem;
    font-family: "UD新ゴ B";
    transition: all 0.2s var(--transition-default);
}

#lyb-header .assist-nav__contact {
    color: #000048;
    background-color: #E5E7EB;
}

#lyb-header .assist-nav__contact::before {
    content: "\e902";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 35px;
    margin-bottom: 3px;
    font-size: 26px;
    font-family: 'linebiz-icon';
    line-height: 1;
}

#lyb-header .assist-nav__menu {
    color: #FFF;
    background-color: #000048;
}

#lyb-header .assist-nav__menu span {
    display: block;
    position: relative;
    width: 37px;
    height: 35px;
    margin-bottom: 3px;
}

#lyb-header .assist-nav__menu span::before,#lyb-header .assist-nav__menu span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 37px;
    height: 3px;
    background-color: #FFF;
    border-radius: 2px;
    transition: transform 0.3s var(--transition-default);
}

#lyb-header .assist-nav__menu span::before {
    top: 12px;
}

#lyb-header .assist-nav__menu span::after {
    bottom: 8px;
}

#lyb-header .global-nav {
    position: absolute;
    top: 78px;
    z-index: -1;
    width: 100%;
    transition: top .1s linear;
    background-color: #F2F4F8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.16);
}

#lyb-header .global-nav__inner {
    position: relative;
    height: 58px;
    margin: auto;
    padding: 0 20px;
}

#lyb-header .global-nav__inner > ul {
    display: inline-flex;
    height: 100%;
}

#lyb-header .global-nav__inner > ul > li > a,#lyb-header .global-nav__inner > ul > li > span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 30px;
    font-size: 1.4rem;
    text-decoration: none;
    color: #000048;
    transition: all 0.2s var(--transition-default);
}

#lyb-header .global-nav__search,#lyb-header .global-nav__lang {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    width: 46px;
    height: 58px;
    text-decoration: none;
    color: #7F7F9B;
}

#lyb-header .global-nav__search {
    right: 52px;
}

#lyb-header .global-nav__lang {
    right: 6px;
}

#lyb-header .global-nav__search::before,#lyb-header .global-nav__lang::before {
    display: inline-block;
    font-size: 16px;
    font-family: 'linebiz-icon';
    line-height: 1;
}

#lyb-header .global-nav__search::before {
    content: "\e903";
}

#lyb-header .global-nav__lang::before {
    content: "\e904";
}

#lyb-header .global-nav__child-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    margin: auto;
}

#lyb-header .global-nav__child {
    position: absolute;
    left: 6px;
    top: 6px;
    padding: 32px 52px;
    background-color: #F2F4F8;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s linear,visibility 0.3s linear;
}

#lyb-header .global-nav__child a {
    text-decoration: none;
    color: #333;
}

#lyb-header .global-nav__child[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
}

#lyb-header .global-nav__child#child-service {
    width: 635px;
}

#lyb-header .global-nav__child#child-ebook {
    left: 350px;
    width: 635px;
}

#lyb-header .global-nav__child#child-support {
    left: auto;
    right: calc(10vw + var(--contents-padding));
    width: 635px;
}

#lyb-header .global-nav__child#child-search {
    left: auto;
    right: 6px;
    width: 380px;
    padding: 20px 30px;
}

#lyb-header .global-nav__child#child-lang {
    left: auto;
    right: 6px;
    width: 410px;
    padding: 35px;
}

#lyb-header .global-nav__child-item:not(:first-child) {
    margin-top: 20px;
}

#lyb-header .global-nav__child-category {
    display: inline-block;
    margin-bottom: 6px;
    padding: 1px 8px;
    font-size: 1rem;
    font-family: "UD新ゴ B";
    color: #000048;
    background-color: #FFF;
    border-radius: 100px;
}

#lyb-header .global-nav__child-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 20px;
}

#lyb-header .global-nav__child-list a {
    position: relative;
    padding-left: 23px;
    font-size: 1.4rem;
    color: #000048;
}

#lyb-header .global-nav__child-list a::before {
    content: "\e900";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-family: 'linebiz-icon';
    line-height: 32px;
    border-radius: 100%;
    transform: scale(0.5) translateY(-50%);
    transform-origin: 0 0;
    transition: all 0.2s var(--transition-default);
}

.sp-menu-wrap--clone {
    display: none;
}

@media (hover: hover) {
    #lyb-header .assist-nav__login a:hover {
        background-color:transparent;
        border-color: #3C3C3C;
    }

    #lyb-header .assist-nav__signup a:hover {
        color: #F77911;
        background-color: transparent;
    }

    #lyb-header .assist-nav__contact:hover {
        color: #FFF;
        background-color: #00043E;
    }

    #lyb-header .assist-nav__menu:hover {
        color: #00043E;
        background-color: #E4E8F0;
    }

    #lyb-header .assist-nav__menu:hover span::before,#lyb-header .assist-nav__menu:hover span::after {
        background-color: #00043E;
    }

    #lyb-header .global-nav__inner > ul:hover > li > a:not(:hover),html.-megamenu-open .global-nav__inner a:not([aria-expanded="true"]),#lyb-header .global-nav__inner > ul:hover > li > span:not(:hover),html.-megamenu-open .global-nav__inner span:not([aria-expanded="true"]) {
        opacity: 0.3;
    }

    #lyb-header .global-nav__child-list a:hover {
        text-decoration: underline;
    }

    #lyb-header .global-nav__child-list a:hover::before {
        color: #FFF;
        background-color: #000048;
    }
}

@media screen and (max-width: 1200px) {
    #lyb-header .global-nav__child#child-support {
        right:var(--contents-padding);
    }
}

@media screen and (max-width: 1070px) {
    #lyb-header .global-nav__inner > ul > li > a,#lyb-header .global-nav__inner > ul > li > span {
        padding-inline:26px;
    }
}

@media screen and (max-width: 1023px) {
    #lyb-header .lyb-header__logo {
        padding:14px 20px;
    }

    #lyb-header .lyb-header__logo img {
        width: 206px;
    }

    #lyb-header .sp-menu-wrap {
        display: none;
    }

    #lyb-header .global-nav {
        display: none;
    }

    #lyb-header .assist-nav__menu {
        width: 65px;
        height: 54px;
    }

    #lyb-header .assist-nav__menu span {
        height: 25px;
    }

    #lyb-header .assist-nav__menu span::before {
        top: 8px;
    }

    #lyb-header .assist-nav__menu span::after {
        bottom: 3px;
    }

    .sp-menu-wrap--clone {
        display: flex;
        align-items: center;
        position: fixed;
        bottom: 0;
        z-index: var(--zindex-sp-menu);
        width: 100%;
        background-color: #FFF;
    }

    .sp-menu-wrap--clone > ul {
        display: flex;
        flex: 1 0 0%;
        gap: 0 5px;
        margin: 0 5px;
    }

    .sp-menu-wrap--clone .assist-nav__login,.sp-menu-wrap--clone .assist-nav__signup {
        width: 100%;
    }

    .sp-menu-wrap--clone .assist-nav__login a,.sp-menu-wrap--clone .assist-nav__signup a {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: 47px;
        font-size: 1.4rem;
        font-family: "UD新ゴ B";
        text-decoration: none;
        border-radius: 100px;
        transition: all 0.2s var(--transition-default);
    }

    .sp-menu-wrap--clone .assist-nav__login a {
        color: #3C3C3C;
        background-color: #E5E7EB;
        border: 2px solid #E5E7EB;
    }

    .sp-menu-wrap--clone .assist-nav__signup a {
        color: #FFF;
        background-color: #F77911;
        border: 2px solid #F77911;
    }

    .sp-menu-wrap--clone .assist-nav__contact,.sp-menu-wrap--clone .assist-nav__menu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 78px;
        height: 78px;
        text-decoration: none;
        font-size: 1rem;
        font-family: "UD新ゴ B";
        transition: all 0.2s var(--transition-default);
    }

    .sp-menu-wrap--clone .assist-nav__contact {
        margin-left: auto;
        width: 73px;
        height: 59px;
        color: #000048;
        background-color: #E5E7EB;
    }

    .sp-menu-wrap--clone .assist-nav__contact::before {
        content: "\e902";
        display: flex;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 28px;
        margin-bottom: 0;
        font-size: 21px;
        font-family: 'linebiz-icon';
        line-height: 1;
    }
}

#child-search fieldset {
    position: relative;
}

#child-search fieldset legend {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

#child-search fieldset legend::before {
    content: "\e903";
    display: inline-block;
    font-size: 16px;
    font-family: 'linebiz-icon';
    color: #000048;
    line-height: 1;
}

#child-search fieldset input[type="text"] {
    appearance: none;
    width: 100%;
    height: 36px;
    padding: 0 15px 0 42px;
    font-size: 1.2rem;
    background-color: #FFF;
    border: 1px solid #D6D9E0;
    border-radius: 100px;
    outline: 0;
}

#child-search fieldset input[type="text"]::placeholder {
    color: #AAA;
}

#contact-modal .modal-box__content {
    max-width: 326px;
    border-radius: 6px;
}

#contact-modal .modal-box__body {
    padding: 28px;
}

#contact-modal .contact-modal__title {
    margin-bottom: 18px;
    font-size: 2rem;
    font-family: "UD新ゴ B";
}

#contact-modal .contact-modal__title::before {
    content: "\e902";
    display: inline-block;
    margin-right: 8px;
    font-size: 26px;
    font-family: 'linebiz-icon';
    line-height: 1;
    vertical-align: middle;
}

#contact-modal .contact-modal__text {
    font-size: 1.3rem;
}

#contact-modal .contact-modal__btn-list {
    margin-top: 18px;
}

#contact-modal .contact-modal__btn-list li + li {
    margin-top: 10px;
}

#contact-modal .contact-modal__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 43px;
    font-size: 1.4rem;
    text-decoration: none;
    color: #0047AF;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
}

#contact-modal .contact-modal__signup {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 50px;
    font-size: 1.8rem;
    text-decoration: none;
    border-radius: 100px;
    color: #FFF;
    background-color: #0047AF;
    border: 2px solid #0047AF;
    transition: all 0.2s var(--transition-default);
}

@media (hover: hover) {
    #contact-modal .contact-modal__signup:hover {
        color:#0047AF;
        background-color: #FFF;
    }
}

#fullsize-menu {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: var(--zindex-fullsize-menu);
    background-color: #FFF;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s linear,visibility 0.3s linear;
}

#fullsize-menu[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
}

#fullsize-menu .fullsize-menu__close {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 78px;
    height: 78px;
    background-color: #000048;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
}

#fullsize-menu .fullsize-menu__close span {
    display: block;
    position: relative;
    width: 23px;
    height: 23px;
    margin: 7px 0;
}

#fullsize-menu .fullsize-menu__close span::before,#fullsize-menu .fullsize-menu__close span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 23px;
    height: 3px;
    background-color: #FFF;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.165,0.84,0.44,1);
}

#fullsize-menu .fullsize-menu__close span::before {
    top: 5px;
    transform: translateY(5px) rotate(-45deg);
}

#fullsize-menu .fullsize-menu__close span::after {
    bottom: 5px;
    transform: translateY(-5px) rotate(45deg);
}

#fullsize-menu {
    display: flex;
    flex-direction: row-reverse;
}

#fullsize-menu::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    border-style: solid;
    border-width: 109px 58px 0 0;
    border-color: #06C755 transparent transparent transparent;
}

#fullsize-menu::after {
    content: "";
    position: fixed;
    right: calc(31% + var(--fullsizemenu-scrollbar-width-pc));
    bottom: 0;
    border-style: solid;
    border-width: 0 0 109px 58px;
    border-color: transparent transparent #FF0033 transparent;
}

#fullsize-menu .assist-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31%;
    padding: 20px;
    transform: translate3d(0,0,0);
}

#fullsize-menu .assist-menu__btns1 {
    margin-top: 47px;
    padding-inline:16px;}

#fullsize-menu .assist-menu__btns1 > li + li {
    margin-top: 20px;
}

#fullsize-menu .assist-menu__login a,#fullsize-menu .assist-menu__signup a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 60px;
    font-size: 1.4rem;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.2s var(--transition-default);
}

#fullsize-menu .assist-menu__login a {
    color: #3C3C3C;
    background-color: #E5E7EB;
    border: 2px solid #E5E7EB;
}

#fullsize-menu .assist-menu__signup a {
    color: #FFF;
    background-color: #F77911;
    border: 2px solid #F77911;
}

#fullsize-menu .assist-menu__btns2 {
    display: flex;
    gap: 0 10px;
    margin-top: 80px;
    padding-inline:16px;}

#fullsize-menu .assist-menu__btns2 > li {
    width: 100%;
}

#fullsize-menu .assist-menu__contact a,#fullsize-menu .assist-menu__lang span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 36px;
    font-size: 1rem;
    text-decoration: none;
    color: #3C3C3C;
    background-color: #E5E7EB;
    border: 1px solid #E5E7EB;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s var(--transition-default);
}

#fullsize-menu .assist-menu__contact a::before {
    content: "\e902";
    display: inline-block;
    margin-right: 8px;
    font-size: 14px;
    font-family: 'linebiz-icon';
    color: #000048;
    line-height: 1;
}

#fullsize-menu .assist-menu__lang span::before {
    content: "\e904";
    display: inline-block;
    margin-right: 8px;
    font-size: 14px;
    font-family: 'linebiz-icon';
    color: #000048;
    line-height: 1;
}

#fullsize-menu .assist-menu__search {
    margin-top: 20px;
    padding-inline:16px;}

#fullsize-menu .assist-menu__search fieldset {
    position: relative;
}

#fullsize-menu .assist-menu__search fieldset legend {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

#fullsize-menu .assist-menu__search fieldset legend::before {
    content: "\e903";
    display: inline-block;
    font-size: 16px;
    font-family: 'linebiz-icon';
    color: #000048;
    line-height: 1;
}

#fullsize-menu .assist-menu__search fieldset input[type="text"] {
    appearance: none;
    width: 100%;
    height: 36px;
    padding: 0 15px 0 42px;
    font-size: 1.2rem;
    background-color: #FFF;
    border: 1px solid #D6D9E0;
    border-radius: 100px;
    outline: 0;
}

#fullsize-menu .assist-menu__search fieldset input[type="text"]::placeholder {
    color: #AAA;
}

#fullsize-menu .global-menu {
    position: relative;
    overflow-y: auto;
    width: 69%;
    height: 100%;
    padding: 80px 60px;
    color: #FFF;
    background-color: #000048;
}

#fullsize-menu .global-menu > ul {
    max-width: 746px;
    margin-inline:auto;}

#fullsize-menu .global-menu a {
    font-family: "UD新ゴ M";
    color: #FFF;
}

#fullsize-menu .global-menu__category {
    display: flex;
}

#fullsize-menu .global-menu__category + li {
    margin-top: 50px;
}

#fullsize-menu .global-menu__category > button {
    display: none;
}

#fullsize-menu .global-menu__caption {
    width: 180px;
}

#fullsize-menu .global-menu__caption > a {
    text-decoration: none;
}

#fullsize-menu .global-menu__en {
    display: block;
    font-size: 1.3rem;
    font-family: 'Volte Regular';
    color: #7F7F9B;
}

#fullsize-menu .global-menu__top {
    display: none;
}

#fullsize-menu .global-menu__service {
    margin-bottom: 70px;
}

#fullsize-menu .global-menu__acc {
    flex: 1 0 0%;
}

#fullsize-menu .global-menu__acc > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

#fullsize-menu .global-menu__acc > ul > li {
    font-size: 1.4rem;
}

#fullsize-menu .global-menu__acc > ul > li::before {
    content: "ãƒ»";
}

#fullsize-menu .global-menu__service-child {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 4%;
}

#fullsize-menu .global-menu__service-item {
    width: 48%;
    min-width: 268px;
}

#fullsize-menu .global-menu__service-category {
    display: inline-block;
    margin-bottom: 18px;
    padding: 1px 8px;
    font-size: 1rem;
    font-family: "UD新ゴ B";
    color: #000048;
    background-color: #FFF;
    border-radius: 100px;
}

#fullsize-menu .global-menu__service-list > li {
    position: relative;
    padding-left: 24px;
    font-size: 1.6rem;
}

#fullsize-menu .global-menu__service-list > li + li {
    margin-top: 21px;
}

#fullsize-menu .global-menu__service-list > li::before {
    content: none;
}

#fullsize-menu .global-menu__service-list > li > a.f14 {
    font-size: 1.4rem;
}

#fullsize-menu .global-menu__service-list > li > a::before {
    content: "\e900";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-family: 'linebiz-icon';
    line-height: 32px;
    border-radius: 100%;
    transform: scale(0.5);
    transform-origin: 0 0;
    transition: all 0.2s var(--transition-default);
}

#fullsize-menu .assist-lang-menu {
    position: absolute;
    z-index: 1;
    max-width: 100%;
    padding: 20px 30px;
    background-color: #F2F4F8;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s linear,visibility 0.3s linear;
}

#fullsize-menu .assist-lang-menu a {
    display: block;
    text-decoration: none;
    color: #333;
}

#fullsize-menu .assist-lang-menu[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
}

#fullsize-menu .assist-lang-menu__list li + li {
    margin-top: 0.6em;
}

#fullsize-menu .assist-lang-menu__list a {
    position: relative;
    padding-left: 23px;
    font-size: 1rem;
    color: #000048;
}

#fullsize-menu .assist-lang-menu__list a::before {
    content: "\e900";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-family: 'linebiz-icon';
    line-height: 32px;
    border-radius: 100%;
    transform: scale(0.5) translateY(-50%);
    transform-origin: 0 0;
    transition: all 0.2s var(--transition-default);
}

@media (hover: hover) {
    #fullsize-menu .fullsize-menu__close:hover {
        opacity:0.8;
    }

    #fullsize-menu .assist-menu__login a:hover {
        background-color: transparent;
        border-color: #3C3C3C;
    }

    #fullsize-menu .assist-menu__signup a:hover {
        color: #F77911;
        background-color: transparent;
    }

    #fullsize-menu .assist-menu__contact a:hover,#fullsize-menu .assist-menu__lang span:hover {
        background-color: transparent;
        border-color: #3C3C3C;
    }

    #fullsize-menu .global-menu__service-list > li > a:hover::before {
        color: #000048;
        background-color: #FFF;
    }

    #fullsize-menu .assist-lang-menu__list a:hover {
        text-decoration: underline;
    }

    #fullsize-menu .assist-lang-menu__list a:hover::before {
        color: #FFF;
        background-color: #000048;
    }
}

@media screen and (min-width: 1224px) {
    #fullsize-menu .assist-menu__lang[aria-expanded="true"] span {
        background-color:transparent;
        border-color: #3C3C3C;
    }
}

@media screen and (max-width: 1229px) {
    #fullsize-menu .global-menu__service-child {
        gap:50px 0;
    }

    #fullsize-menu .global-menu__service-item {
        width: 100%;
    }
}

@media screen and (max-width: 1023px) {
    #fullsize-menu {
        overflow-y:scroll;
        background-color: #000048;
    }

    #fullsize-menu .fullsize-menu__close {
        position: fixed;
        width: 65px;
        height: 54px;
        right: var(--fullsizemenu-scrollbar-width-sp);
    }

    #fullsize-menu .fullsize-menu__close span {
        width: 19px;
        height: 19px;
    }

    #fullsize-menu .fullsize-menu__close span::before,#fullsize-menu .fullsize-menu__close span::after {
        width: 19px;
    }

    #fullsize-menu .fullsize-menu__close span::before {
        top: 4px;
        transform: translateY(4px) rotate(-45deg);
    }

    #fullsize-menu .fullsize-menu__close span::after {
        bottom: 4px;
        transform: translateY(-4px) rotate(45deg);
    }

    #fullsize-menu {
        display: block;
        padding: 70px 20px 100px;
    }

    #fullsize-menu::before {
        z-index: -1;
        border-width: 81px 43px 0 0;
    }

    #fullsize-menu::after {
        right: var(--fullsizemenu-scrollbar-width-sp);
        bottom: var(--spmenu-height);
        z-index: -1;
        border-width: 0 0 81px 43px;
    }

    #fullsize-menu .assist-menu__logo {
        display: none;
    }

    #fullsize-menu .assist-menu {
        display: block;
        width: 100%;
    }

    #fullsize-menu .assist-menu__inner {
        display: flex;
        justify-content: flex-end;
        flex-direction: row-reverse;
        gap: 10px 5px;
    }

    #fullsize-menu .assist-menu__btns1 {
        display: none;
    }

    #fullsize-menu .assist-menu__btns2 {
        margin-top: 0;
        padding-inline:0;}

    #fullsize-menu .assist-menu__contact {
        display: none;
    }

    #fullsize-menu .assist-menu__lang span {
        width: 102px;
    }

    #fullsize-menu .assist-menu__lang span:hover {
        color: #3C3C3C;
        background-color: #E5E7EB;
        border-color: #E5E7EB;
    }

    #fullsize-menu .assist-menu__search {
        margin-top: 0;
        padding-inline:0;}

    #fullsize-menu .assist-menu__search fieldset input[type="text"] {
        width: 174px;
    }

    #fullsize-menu .global-menu {
        width: 100%;
        height: auto;
        padding: 28px 0 0;
        background-color: transparent;
    }

    #fullsize-menu .global-menu a {
        font-family: "UD新ゴ M";
        color: #FFF;
    }

    #fullsize-menu .global-menu__category {
        display: block;
        position: relative;
    }

    #fullsize-menu .global-menu__top {
        display: block;
    }

    #fullsize-menu .global-menu__category + li {
        margin-top: 45px;
    }

    #fullsize-menu .global-menu__category > button {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 6px;
        right: 0;
        width: 64px;
        height: 22px;
        background-color: #000048;
        border: 2px solid #FFF;
        border-radius: 100px;
    }

    #fullsize-menu .global-menu__category > button::before {
        content: "\e900";
        display: inline-block;
        font-size: 10px;
        font-family: 'linebiz-icon';
        line-height: 1;
        color: #FFF;
        transform: rotate(90deg);
    }

    #fullsize-menu .global-menu__category > button[aria-expanded="true"]::before {
        transform: rotate(-90deg);
    }

    #fullsize-menu .global-menu__caption {
        display: block;
        width: auto;
        font-size: 2rem;
    }

    #fullsize-menu .global-menu__service {
        margin-bottom: 0;
    }

    #fullsize-menu .global-menu__acc {
        display: none;
        margin-top: 20px;
    }

    #fullsize-menu .global-menu__service-item {
        width: 47%;
    }

    #fullsize-menu .global-menu__service-list > li > a {
        display: block;
    }
}

@media screen and (max-width: 740px) {
    #fullsize-menu .global-menu__service-item {
        width:100%;
    }
}

html.-drawer-open body {
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: scroll;
    width: 100%;
}

.footerLink {
    background-color: #f5f5f5;
    padding: 30px 0 55px 0;
    width: 100%;
}

.footerLink__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 40px;
}

.footerLink__list__column {
    margin-top: 25px;
    margin-right: 60px;
}

.footerLink__list__column:last-child {
    margin-right: 0px;
}

.footerLink__item--head {
    margin-bottom: 25px;
}

.footerLink__item--head > a {
    color: #404040;
    font-size: 1.6rem;
}

.footerLink__inner__list li {
    margin-bottom: 8px;
}

.footerLink__inner__list a {
    color: #707070;
    font-size: 1.4rem;
    font-family: "UD新ゴ M";
}

@media screen and (max-width: 1023px) {
    .footerLink {
        display:none;
    }
}

#lyb-footer {
    position: relative;
    padding: 80px 70px 110px;
    background-color: #000048;
}

#lyb-footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-style: solid;
    border-width: 282px 150px 0 0;
    border-color: #06C755 transparent transparent transparent;
}

#lyb-footer::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    border-style: solid;
    border-width: 0 0 282px 150px;
    border-color: transparent transparent #FF0033 transparent;
}

#lyb-footer a {
    font-family: "UD新ゴ M";
    color: #FFF;
}

#lyb-footer .lyb-footer__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
}

#lyb-footer .footer-menu {
    display: flex;
    grid-gap: 13px;
}

#lyb-footer .footer-menu__item {
    width: 100%;
    padding: 30px 38px;
    color: #FFF;
    background-color: #000048;
    border: 1px solid #FFF;
    border-radius: 10px;
    text-decoration: none;
}

#lyb-footer .footer-menu__title {
    font-size: 1.8rem;
}

#lyb-footer .footer-menu__title i[class^="lbicon-"] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    width: 26px;
    height: 26px;
    vertical-align: middle;
}

#lyb-footer .footer-menu__title .lbicon-download {
    font-size: 24px;
}

#lyb-footer .footer-menu__title .lbicon-search_building {
    font-size: 26px;
}

#lyb-footer .footer-menu__title .lbicon-question {
    font-size: 24px;
}

#lyb-footer .footer-menu__title .lbicon-mail {
    font-size: 18px;
}

#lyb-footer .footer-menu__text {
    margin-top: 25px;
    font-size: 12px;
    font-family: "UD新ゴ M";
}

#lyb-footer .footer-nav {
    margin-top: 80px;
}

#lyb-footer .footer-nav__list {
    display: grid;
    grid-template-columns: 42% 53%;
    justify-content: space-between;
    grid-row-gap: 45px;
    color: #FFF;
}

#lyb-footer .footer-nav__list > li:nth-child(1) {
    grid-area: 1 / 1 / 8 / 2;
}

#lyb-footer .footer-nav__list > li:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

#lyb-footer .footer-nav__list > li:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
}

#lyb-footer .footer-nav__list > li:nth-child(4) {
    grid-area: 3 / 2 / 4 / 3;
}

#lyb-footer .footer-nav__list > li:nth-child(5) {
    grid-area: 4 / 2 / 5 / 3;
}

#lyb-footer .footer-nav__list > li:nth-child(6) {
    grid-area: 5 / 2 / 6 / 3;
}

#lyb-footer .footer-nav__list > li:nth-child(7) {
    grid-area: 6 / 2 / 7 / 3;
}

#lyb-footer .footer-nav__list > li:nth-child(8) {
    grid-area: 7 / 2 / 8 / 3;
}

#lyb-footer .footer-nav__list > li {
    display: flex;
}

#lyb-footer .footer-nav__caption {
    width: 180px;
}

#lyb-footer .footer-nav__caption > a {
    text-decoration: none;
}

#lyb-footer .footer-nav__en {
    display: block;
    font-size: 13px;
    font-family: 'Volte Regular';
    color: #7F7F9B;
}

#lyb-footer .footer-nav__category > ul {
    flex: 1 0 0%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

#lyb-footer .footer-nav__category > ul > li {
    font-size: 1.2rem;
}

#lyb-footer .footer-nav__category > ul > li::before {
    content: "ãƒ»";
}

#lyb-footer .footer-nav__service .footer-nav__caption {
    width: 26.6%;
}

#lyb-footer .footer-nav__service > ul {
    display: block;
}

#lyb-footer .footer-nav__service > ul > li {
    position: relative;
    padding-left: 24px;
    font-size: 1.6rem;
}

#lyb-footer .footer-nav__service > ul > li + li {
    margin-top: 21px;
}

#lyb-footer .footer-nav__service > ul > li::before {
    content: none;
}

#lyb-footer .footer-nav__service > ul > li > a {
    font-family: "UD新ゴ DB";
}

#lyb-footer .footer-nav__service > ul > li > a.f14 {
    font-size: 1.4rem;
}

#lyb-footer .footer-nav__service > ul > li > a::before {
    content: "\e900";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-family: 'linebiz-icon';
    line-height: 32px;
    border-radius: 100%;
    transform: scale(0.5);
    transform-origin: 0 0;
    transition: all 0.2s var(--transition-default);
}

#lyb-footer .lyb-fixed-pagetop {
    position: absolute;
    bottom: calc(100% + 60px);
    right: 20px;
    z-index: var(--zindex-pagetop);
}

#lyb-footer .lyb-fixed-pagetop > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    text-decoration: none;
    background-color: #000048;
    border-radius: 100%;
}

#lyb-footer .lyb-fixed-pagetop > a::before {
    content: "\e900";
    font-size: 13px;
    font-family: 'linebiz-icon';
    border-radius: 100%;
    transform: rotate(-90deg);
}

@media (hover: hover) {
    #lyb-footer .footer-menu__item:hover {
        color:#000048;
        background-color: #FFF;
    }

    #lyb-footer .conversion-box__btn:hover {
        text-decoration: none;
        color: #F77911;
        background-color: #FFF;
    }

    #lyb-footer .footer-nav__service > ul > li > a:hover::before {
        color: #000048;
        background-color: #FFF;
    }
}

@media screen and (max-width: 1280px) {
    #lyb-footer .footer-menu {
        flex-wrap:wrap;
    }

    #lyb-footer .footer-menu__item {
        width: calc(50% - 7px);
    }
}

@media screen and (max-width: 1023px) {
    #lyb-footer {
        padding:70px 20px 138px;
    }

    #lyb-footer::before {
        border-width: 100px 53px 0 0;
    }

    #lyb-footer::after {
        bottom: 59px;
        border-width: 0 0 100px 53px;
    }

    #lyb-footer .conversion-box {
        display: block;
        margin-top: -218px;
        margin-bottom: 40px;
        padding: 60px 50px 50px;
    }

    #lyb-footer .conversion-box__text-col {
        width: auto;
        font-size: 1.4rem;
        text-align: center;
    }

    #lyb-footer .conversion-box__appeal {
        margin-top: 16px;
        font-size: 2.4rem;
    }

    #lyb-footer .conversion-box__btn-col {
        width: auto;
        margin-top: 16px;
    }

    #lyb-footer .conversion-box__btn {
        max-width: 450px;
        height: 54px;
        margin-inline:auto;font-size: 1.6rem;
    }

    #lyb-footer .footer-nav {
        display: none;
    }

    #lyb-footer .lyb-fixed-pagetop {
        bottom: calc(100% + 40px);
    }
}

@media screen and (max-width: 767px) {
    #lyb-footer .footer-menu {
        display:block;
    }

    #lyb-footer .footer-menu__item {
        display: block;
        width: 100%;
        padding: 12px 24px;
        color: #FFF;
        background-color: #000048;
        border: 1px solid #FFF;
        border-radius: 6px;
        text-decoration: none;
    }

    #lyb-footer .footer-menu__item + a {
        margin-top: 12px;
    }

    #lyb-footer .footer-menu__title {
        font-size: 1.4rem;
    }

    #lyb-footer .footer-menu__text {
        display: none;
    }
}

.lyb-footer__base {
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: end;
    margin-top: 68px;
    color: #FFF;
}

.lyb-footer__pagetop {
    grid-area: 1 / 1 / 2 / 3;
    justify-self: flex-end;
}

.lyb-footer__logo {
    grid-area: 2 / 1 / 3 / 3;
}

.lyb-footer__sns {
    grid-area: 3 / 1 / 4 / 3;
}

.lyb-footer__utility-nav {
    grid-area: 4 / 1 / 5 / 2;
}

.lyb-footer__copyright {
    grid-area: 4 / 2 / 5 / 3;
}

.lyb-footer__pagetop > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 69px;
    height: 36px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Volte Regular';
    text-decoration: none;
    color: #FFF;
    background-color: #333364;
    border-radius: 100px;
}

.lyb-footer__pagetop > a::before {
    content: "\e900";
    font-size: 16px;
    font-family: 'linebiz-icon';
    border-radius: 100%;
    transform: scale(0.5) rotate(-90deg);
}

.lyb-footer__logo {
    margin-top: 17px;
}

.lyb-footer__sns {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.lyb-footer__utility-nav {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    font-size: 12px;
}

.lyb-footer__copyright {
    font-size: 1.2rem;
    font-family: 'Volte Regular';
    text-align: right;
}

@media screen and (max-width: 1023px) {
    .lyb-footer__pagetop {
        position:absolute;
        right: 0;
        bottom: -5px;
    }

    .lyb-footer__pagetop > a {
        width: 60px;
        height: 27px;
    }

    .lyb-footer__base {
        display: block;
        position: relative;
        margin-top: 86px;
    }

    .lyb-footer__logo {
        text-align: center;
    }

    .lyb-footer__sns {
        justify-content: center;
        gap: 20px;
        margin-top: 45px;
    }

    .lyb-footer__sns img {
        width: 44px;
    }

    .lyb-footer__utility-nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 14px;
        margin-top: 80px;
    }

    .lyb-footer__copyright {
        display: block;
        margin-top: 48px;
        font-size: 1.5rem;
        text-align: center;
    }
}

.wrap {
    position: relative;
    margin: calc(var(--header-height) + var(--globalnav-height)) auto 0;
    padding: 0;
}

.wrap > main {
    display: block;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1023px) {
    body {
        font-size:1.4rem;
        -webkit-text-size-adjust: 100%;
    }

    .wrap {
        margin: 0;
        width: 100%;
        margin-top: var(--header-height);
        -webkit-transition: 0.4s all ease;
        transition: 0.4s all ease;
    }

    .is-spOpen {
        overflow: hidden;
    }

    .is-spOpen .wrap {
        -webkit-transform: translateX(-100%) translateX(50px);
        transform: translateX(-100%) translateX(50px);
        position: fixed;
    }

    .is-spOpen .wrap main {
        pointer-events: none;
    }
}

.is-pcDisplay {
    display: block !important;
}

.is-pcDisplay--inline {
    display: inline !important;
}

.is-spDisplay {
    display: none !important;
}

@media screen and (max-width: 1023px) {
    .is-pcDisplay {
        display:none !important;
    }

    .is-pcDisplay--inline {
        display: none !important;
    }

    .is-spDisplay {
        display: block !important;
    }

    body.is-menu {
        cursor: pointer;
    }
}

@media print {
    body {
        min-width: 1280px;
    }

    .wrap {
        padding: 0;
    }

    .header {
        position: static;
    }
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,.swiper-wrapper {
    -webkit-transform: translate3d(0px,0,0);
    transform: translate3d(0px,0,0);
}

.swiper-container-multirow > .swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
}

.swiper-invisible-blank-slide {
    visibility: hidden;
}

.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height,-webkit-transform;
    transition-property: height,-webkit-transform;
    transition-property: transform,height;
    transition-property: transform,height,-webkit-transform;
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
    background-image: linear-gradient(to left,rgba(0,0,0,0.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
    background-image: linear-gradient(to right,rgba(0,0,0,0.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
    background-image: linear-gradient(to top,rgba(0,0,0,0.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
    background-image: linear-gradient(to bottom,rgba(0,0,0,0.5),rgba(0,0,0,0));
}

.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-container-wp8-vertical,.swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

.swiper-button-next,.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px,-50%,0);
    transform: translate3d(0px,-50%,0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: 200ms top,200ms -webkit-transform;
    transition: 200ms top,200ms -webkit-transform;
    transition: 200ms transform,200ms top;
    transition: 200ms transform,200ms top,200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 3px 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left,200ms -webkit-transform;
    transition: 200ms left,200ms -webkit-transform;
    transition: 200ms transform,200ms left;
    transition: 200ms transform,200ms left,200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms right,200ms -webkit-transform;
    transition: 200ms right,200ms -webkit-transform;
    transition: 200ms transform,200ms right;
    transition: 200ms transform,200ms right,200ms -webkit-transform;
}

.swiper-pagination-progressbar {
    background: rgba(0,0,0,0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255,255,255,0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0,0,0,0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000000;
}

.swiper-pagination-lock {
    display: none;
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0,0,0,0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container > canvas,.swiper-zoom-container > img,.swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12,end) infinite;
    animation: swiper-preloader-spin 1s steps(12,end) infinite;
}

.swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next + .swiper-slide,.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px;
}

@-webkit-keyframes bounce {
    20%,53%,80%,from,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(0.755,0.05,0.855,0.06);
        animation-timing-function: cubic-bezier(0.755,0.05,0.855,0.06);
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755,0.05,0.855,0.06);
        animation-timing-function: cubic-bezier(0.755,0.05,0.855,0.06);
        -webkit-transform: translate3d(0,-15px,0);
        transform: translate3d(0,-15px,0);
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0);
    }
}

@keyframes bounce {
    20%,53%,80%,from,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(0.755,0.05,0.855,0.06);
        animation-timing-function: cubic-bezier(0.755,0.05,0.855,0.06);
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755,0.05,0.855,0.06);
        animation-timing-function: cubic-bezier(0.755,0.05,0.855,0.06);
        -webkit-transform: translate3d(0,-15px,0);
        transform: translate3d(0,-15px,0);
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    50%,from,to {
        opacity: 1;
    }

    25%,75% {
        opacity: 0;
    }
}

@keyframes flash {
    50%,from,to {
        opacity: 1;
    }

    25%,75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05);
    }

    to {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05);
    }

    to {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }

    30% {
        -webkit-transform: scale3d(1.25,0.75,1);
        transform: scale3d(1.25,0.75,1);
    }

    40% {
        -webkit-transform: scale3d(0.75,1.25,1);
        transform: scale3d(0.75,1.25,1);
    }

    50% {
        -webkit-transform: scale3d(1.15,0.85,1);
        transform: scale3d(1.15,0.85,1);
    }

    65% {
        -webkit-transform: scale3d(0.95,1.05,1);
        transform: scale3d(0.95,1.05,1);
    }

    75% {
        -webkit-transform: scale3d(1.05,0.95,1);
        transform: scale3d(1.05,0.95,1);
    }

    to {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }

    30% {
        -webkit-transform: scale3d(1.25,0.75,1);
        transform: scale3d(1.25,0.75,1);
    }

    40% {
        -webkit-transform: scale3d(0.75,1.25,1);
        transform: scale3d(0.75,1.25,1);
    }

    50% {
        -webkit-transform: scale3d(1.15,0.85,1);
        transform: scale3d(1.15,0.85,1);
    }

    65% {
        -webkit-transform: scale3d(0.95,1.05,1);
        transform: scale3d(0.95,1.05,1);
    }

    75% {
        -webkit-transform: scale3d(1.05,0.95,1);
        transform: scale3d(1.05,0.95,1);
    }

    to {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    from,to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0);
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0);
    }
}

@keyframes shake {
    from,to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0);
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0,0,1,15deg);
        transform: rotate3d(0,0,1,15deg);
    }

    40% {
        -webkit-transform: rotate3d(0,0,1,-10deg);
        transform: rotate3d(0,0,1,-10deg);
    }

    60% {
        -webkit-transform: rotate3d(0,0,1,5deg);
        transform: rotate3d(0,0,1,5deg);
    }

    80% {
        -webkit-transform: rotate3d(0,0,1,-5deg);
        transform: rotate3d(0,0,1,-5deg);
    }

    to {
        -webkit-transform: rotate3d(0,0,1,0deg);
        transform: rotate3d(0,0,1,0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0,0,1,15deg);
        transform: rotate3d(0,0,1,15deg);
    }

    40% {
        -webkit-transform: rotate3d(0,0,1,-10deg);
        transform: rotate3d(0,0,1,-10deg);
    }

    60% {
        -webkit-transform: rotate3d(0,0,1,5deg);
        transform: rotate3d(0,0,1,5deg);
    }

    80% {
        -webkit-transform: rotate3d(0,0,1,-5deg);
        transform: rotate3d(0,0,1,-5deg);
    }

    to {
        -webkit-transform: rotate3d(0,0,1,0deg);
        transform: rotate3d(0,0,1,0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }

    10%,20% {
        -webkit-transform: scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg);
        transform: scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg);
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
    }

    40%,60%,80% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
    }

    to {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }

    10%,20% {
        -webkit-transform: scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg);
        transform: scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg);
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
    }

    40%,60%,80% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
    }

    to {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

@-webkit-keyframes wobble {
    from {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    15% {
        -webkit-transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
        transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
    }

    30% {
        -webkit-transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
        transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
        transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
    }

    60% {
        -webkit-transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
        transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
        transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes wobble {
    from {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    15% {
        -webkit-transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
        transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
    }

    30% {
        -webkit-transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
        transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
        transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
    }

    60% {
        -webkit-transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
        transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
        transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes jello {
    11.1%,from,to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
        transform: skewX(0.39063deg) skewY(0.39063deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg);
    }
}

@keyframes jello {
    11.1%,from,to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
        transform: skewX(0.39063deg) skewY(0.39063deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg);
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
    20%,40%,60%,80%,from,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3,0.3,0.3);
        transform: scale3d(0.3,0.3,0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9,0.9,0.9);
        transform: scale3d(0.9,0.9,0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97,0.97,0.97);
        transform: scale3d(0.97,0.97,0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
}

@keyframes bounceIn {
    20%,40%,60%,80%,from,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3,0.3,0.3);
        transform: scale3d(0.3,0.3,0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9,0.9,0.9);
        transform: scale3d(0.9,0.9,0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97,0.97,0.97);
        transform: scale3d(0.97,0.97,0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
}

.bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    60%,75%,90%,from,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-3000px,0);
        transform: translate3d(0,-3000px,0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,25px,0);
        transform: translate3d(0,25px,0);
    }

    75% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0);
    }

    90% {
        -webkit-transform: translate3d(0,5px,0);
        transform: translate3d(0,5px,0);
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes bounceInDown {
    60%,75%,90%,from,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-3000px,0);
        transform: translate3d(0,-3000px,0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,25px,0);
        transform: translate3d(0,25px,0);
    }

    75% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0);
    }

    90% {
        -webkit-transform: translate3d(0,5px,0);
        transform: translate3d(0,5px,0);
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    60%,75%,90%,from,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px,0,0);
        transform: translate3d(-3000px,0,0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px,0,0);
        transform: translate3d(25px,0,0);
    }

    75% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0);
    }

    90% {
        -webkit-transform: translate3d(5px,0,0);
        transform: translate3d(5px,0,0);
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes bounceInLeft {
    60%,75%,90%,from,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px,0,0);
        transform: translate3d(-3000px,0,0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px,0,0);
        transform: translate3d(25px,0,0);
    }

    75% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0);
    }

    90% {
        -webkit-transform: translate3d(5px,0,0);
        transform: translate3d(5px,0,0);
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    60%,75%,90%,from,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px,0,0);
        transform: translate3d(3000px,0,0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px,0,0);
        transform: translate3d(-25px,0,0);
    }

    75% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0);
    }

    90% {
        -webkit-transform: translate3d(-5px,0,0);
        transform: translate3d(-5px,0,0);
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes bounceInRight {
    60%,75%,90%,from,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px,0,0);
        transform: translate3d(3000px,0,0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px,0,0);
        transform: translate3d(-25px,0,0);
    }

    75% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0);
    }

    90% {
        -webkit-transform: translate3d(-5px,0,0);
        transform: translate3d(-5px,0,0);
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    60%,75%,90%,from,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0,3000px,0);
        transform: translate3d(0,3000px,0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0);
    }

    75% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0);
    }

    90% {
        -webkit-transform: translate3d(0,-5px,0);
        transform: translate3d(0,-5px,0);
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes bounceInUp {
    60%,75%,90%,from,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0,3000px,0);
        transform: translate3d(0,3000px,0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0);
    }

    75% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0);
    }

    90% {
        -webkit-transform: translate3d(0,-5px,0);
        transform: translate3d(0,-5px,0);
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9,0.9,0.9);
        transform: scale3d(0.9,0.9,0.9);
    }

    50%,55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3,0.3,0.3);
        transform: scale3d(0.3,0.3,0.3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9,0.9,0.9);
        transform: scale3d(0.9,0.9,0.9);
    }

    50%,55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3,0.3,0.3);
        transform: scale3d(0.3,0.3,0.3);
    }
}

.bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0);
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0);
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px,0,0);
        transform: translate3d(20px,0,0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px,0,0);
        transform: translate3d(20px,0,0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px,0,0);
        transform: translate3d(-20px,0,0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px,0,0);
        transform: translate3d(-20px,0,0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0);
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,20px,0);
        transform: translate3d(0,20px,0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0);
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,20px,0);
        transform: translate3d(0,20px,0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0);
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0);
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0);
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0);
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        transform: perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        transform: perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
        transform: perspective(400px) rotate3d(1,0,0,10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
        transform: perspective(400px) rotate3d(1,0,0,-5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
        transform: perspective(400px) rotate3d(1,0,0,10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
        transform: perspective(400px) rotate3d(1,0,0,-5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-20deg);
        transform: perspective(400px) rotate3d(0,1,0,-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,10deg);
        transform: perspective(400px) rotate3d(0,1,0,10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-5deg);
        transform: perspective(400px) rotate3d(0,1,0,-5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-20deg);
        transform: perspective(400px) rotate3d(0,1,0,-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,10deg);
        transform: perspective(400px) rotate3d(0,1,0,10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-5deg);
        transform: perspective(400px) rotate3d(0,1,0,-5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-15deg);
        transform: perspective(400px) rotate3d(0,1,0,-15deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-15deg);
        transform: perspective(400px) rotate3d(0,1,0,-15deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(100%,0,0) skewX(30deg);
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(100%,0,0) skewX(30deg);
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0,0,1,-200deg);
        transform: rotate3d(0,0,1,-200deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0,0,1,-200deg);
        transform: rotate3d(0,0,1,-200deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,-45deg);
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,-45deg);
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,45deg);
        transform: rotate3d(0,0,1,45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,45deg);
        transform: rotate3d(0,0,1,45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,45deg);
        transform: rotate3d(0,0,1,45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,45deg);
        transform: rotate3d(0,0,1,45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,-90deg);
        transform: rotate3d(0,0,1,-90deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,-90deg);
        transform: rotate3d(0,0,1,-90deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0,0,1,200deg);
        transform: rotate3d(0,0,1,200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0,0,1,200deg);
        transform: rotate3d(0,0,1,200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,45deg);
        transform: rotate3d(0,0,1,45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,45deg);
        transform: rotate3d(0,0,1,45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,-45deg);
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,-45deg);
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,-45deg);
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,-45deg);
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,90deg);
        transform: rotate3d(0,0,1,90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,90deg);
        transform: rotate3d(0,0,1,90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%,60% {
        -webkit-transform: rotate3d(0,0,1,80deg);
        transform: rotate3d(0,0,1,80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%,80% {
        -webkit-transform: rotate3d(0,0,1,60deg);
        transform: rotate3d(0,0,1,60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(0,700px,0);
        transform: translate3d(0,700px,0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%,60% {
        -webkit-transform: rotate3d(0,0,1,80deg);
        transform: rotate3d(0,0,1,80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%,80% {
        -webkit-transform: rotate3d(0,0,1,60deg);
        transform: rotate3d(0,0,1,60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(0,700px,0);
        transform: translate3d(0,700px,0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
        transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
        transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

@-webkit-keyframes rollOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg);
        transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg);
    }
}

@keyframes rollOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg);
        transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3,0.3,0.3);
        transform: scale3d(0.3,0.3,0.3);
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3,0.3,0.3);
        transform: scale3d(0.3,0.3,0.3);
    }

    to {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);
        transform: scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
        animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(0,60px,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
        animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);
        transform: scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
        animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(0,60px,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
        animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);
        transform: scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
        animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(10px,0,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
        animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);
        transform: scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
        animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(10px,0,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
        animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);
        transform: scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
        animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
        animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);
        transform: scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
        animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
        animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);
        transform: scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
        animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
        animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);
        transform: scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
        animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
        animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3,0.3,0.3);
        transform: scale3d(0.3,0.3,0.3);
    }

    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3,0.3,0.3);
        transform: scale3d(0.3,0.3,0.3);
    }

    to {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
        animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);
        transform: scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
        animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
        animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);
        transform: scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
        animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(42px,0,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(42px,0,0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px,0,0);
        transform: scale(0.1) translate3d(-2000px,0,0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(42px,0,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(42px,0,0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px,0,0);
        transform: scale(0.1) translate3d(-2000px,0,0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(-42px,0,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(-42px,0,0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px,0,0);
        transform: scale(0.1) translate3d(2000px,0,0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(-42px,0,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(-42px,0,0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px,0,0);
        transform: scale(0.1) translate3d(2000px,0,0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(0,60px,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
        animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);
        transform: scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
        animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475,0.475,0.475) translate3d(0,60px,0);
        transform: scale3d(0.475,0.475,0.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
        animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);
        transform: scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
        animation-timing-function: cubic-bezier(0.175,0.885,0.32,1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 0;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.animated.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.animated.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.animated.delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.animated.delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.animated.fast {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
}

.animated.faster {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}

.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}

@media (prefers-reduced-motion) {
    .animated {
        -webkit-animation: unset !important;
        animation: unset !important;
        -webkit-transition: none !important;
        transition: none !important;
    }
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-arrow,button.mfp-close {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

button.mfp-close {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background: url("/static/jp/common/img/btn_modalClose01.png") 0 0 no-repeat;
    background-size: cover;
}

button.mfp-close:hover {
    opacity: 0.9;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 60px;
    height: 60px;
    position: absolute;
    right: -30px;
    top: -30px;
    text-decoration: none;
    text-align: center;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial,Baskerville,monospace;
}

.mfp-close:focus,.mfp-close:hover {
    opacity: 1;
}

.mfp-close:active {
    top: -28px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:focus,.mfp-arrow:hover {
    opacity: 1;
}

.mfp-arrow:after,.mfp-arrow:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.6);
    box-shadow: 0 0 8px rgba(0,0,0,0.6);
    background: #000;
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0;
    margin: 0 auto;
}

.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.6);
    box-shadow: 0 0 8px rgba(0,0,0,0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.5;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

@media screen and (max-width: 800px) and (orientation:landscape),screen and (max-height:300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left:0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0,0,0,0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0,0,0,0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 1023px) {
    .mfp-arrow {
        -webkit-transform:scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mfp-close {
        width: 30px;
        height: 30px;
        right: -10px;
        top: -10px;
    }

    .mfp-close:active {
        top: -8px;
    }
}

.mt0 {
    margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

.mt55 {
    margin-top: 55px !important;
}

.mt60 {
    margin-top: 60px !important;
}

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

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

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

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

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

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

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

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

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

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

.mr55 {
    margin-right: 55px !important;
}

.mr60 {
    margin-right: 60px !important;
}

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

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

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

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

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

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

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

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

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

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

.mb55 {
    margin-bottom: 55px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

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

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

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

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

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

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

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

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

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

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

.ml55 {
    margin-left: 55px !important;
}

.ml60 {
    margin-left: 60px !important;
}

.w1p {
    width: 1% !important;
}

.w2p {
    width: 2% !important;
}

.w3p {
    width: 3% !important;
}

.w4p {
    width: 4% !important;
}

.w5p {
    width: 5% !important;
}

.w6p {
    width: 6% !important;
}

.w7p {
    width: 7% !important;
}

.w8p {
    width: 8% !important;
}

.w9p {
    width: 9% !important;
}

.w10p {
    width: 10% !important;
}

.w11p {
    width: 11% !important;
}

.w12p {
    width: 12% !important;
}

.w13p {
    width: 13% !important;
}

.w14p {
    width: 14% !important;
}

.w15p {
    width: 15% !important;
}

.w16p {
    width: 16% !important;
}

.w17p {
    width: 17% !important;
}

.w18p {
    width: 18% !important;
}

.w19p {
    width: 19% !important;
}

.w20p {
    width: 20% !important;
}

.w21p {
    width: 21% !important;
}

.w22p {
    width: 22% !important;
}

.w23p {
    width: 23% !important;
}

.w24p {
    width: 24% !important;
}

.w25p {
    width: 25% !important;
}

.w26p {
    width: 26% !important;
}

.w27p {
    width: 27% !important;
}

.w28p {
    width: 28% !important;
}

.w29p {
    width: 29% !important;
}

.w30p {
    width: 30% !important;
}

.w31p {
    width: 31% !important;
}

.w32p {
    width: 32% !important;
}

.w33p {
    width: 33% !important;
}

.w34p {
    width: 34% !important;
}

.w35p {
    width: 35% !important;
}

.w36p {
    width: 36% !important;
}

.w37p {
    width: 37% !important;
}

.w38p {
    width: 38% !important;
}

.w39p {
    width: 39% !important;
}

.w40p {
    width: 40% !important;
}

.w41p {
    width: 41% !important;
}

.w42p {
    width: 42% !important;
}

.w43p {
    width: 43% !important;
}

.w44p {
    width: 44% !important;
}

.w45p {
    width: 45% !important;
}

.w46p {
    width: 46% !important;
}

.w47p {
    width: 47% !important;
}

.w48p {
    width: 48% !important;
}

.w49p {
    width: 49% !important;
}

.w50p {
    width: 50% !important;
}

.w51p {
    width: 51% !important;
}

.w52p {
    width: 52% !important;
}

.w53p {
    width: 53% !important;
}

.w54p {
    width: 54% !important;
}

.w55p {
    width: 55% !important;
}

.w56p {
    width: 56% !important;
}

.w57p {
    width: 57% !important;
}

.w58p {
    width: 58% !important;
}

.w59p {
    width: 59% !important;
}

.w60p {
    width: 60% !important;
}

.w61p {
    width: 61% !important;
}

.w62p {
    width: 62% !important;
}

.w63p {
    width: 63% !important;
}

.w64p {
    width: 64% !important;
}

.w65p {
    width: 65% !important;
}

.w66p {
    width: 66% !important;
}

.w67p {
    width: 67% !important;
}

.w68p {
    width: 68% !important;
}

.w69p {
    width: 69% !important;
}

.w70p {
    width: 70% !important;
}

.w71p {
    width: 71% !important;
}

.w72p {
    width: 72% !important;
}

.w73p {
    width: 73% !important;
}

.w74p {
    width: 74% !important;
}

.w75p {
    width: 75% !important;
}

.w76p {
    width: 76% !important;
}

.w77p {
    width: 77% !important;
}

.w78p {
    width: 78% !important;
}

.w79p {
    width: 79% !important;
}

.w80p {
    width: 80% !important;
}

.w81p {
    width: 81% !important;
}

.w82p {
    width: 82% !important;
}

.w83p {
    width: 83% !important;
}

.w84p {
    width: 84% !important;
}

.w85p {
    width: 85% !important;
}

.w86p {
    width: 86% !important;
}

.w87p {
    width: 87% !important;
}

.w88p {
    width: 88% !important;
}

.w89p {
    width: 89% !important;
}

.w90p {
    width: 90% !important;
}

.w91p {
    width: 91% !important;
}

.w92p {
    width: 92% !important;
}

.w93p {
    width: 93% !important;
}

.w94p {
    width: 94% !important;
}

.w95p {
    width: 95% !important;
}

.w96p {
    width: 96% !important;
}

.w97p {
    width: 97% !important;
}

.w98p {
    width: 98% !important;
}

.w99p {
    width: 99% !important;
}

.w100p {
    width: 100% !important;
}

.headerMenu__list--Services .headerMenuSub__item--head {
    width: 265px;
}

.headerMenu__inner__list {
    width: calc(100% - 240px);
}

.headerMenu__inner__list > li + li {
    margin-top: 30px;
}

.innerList--divide {
    border-top: 1px solid #707070;
    padding-top: 30px;
    margin-top: 40px;
}

.headerMenu__inner__list > li > span {
    color: #fff;
    font-size: 1.2rem;
    font-family: "UD新ゴ M";
}

.headerMenuSub--Services .headerMenuSub__inner {
    padding: 05px 0 0 0;
}

.headerMenuSub--Services .headerMenuSub__itemBox .headerMenuSub__item {
}

.headerMenuSub--Services .headerMenuSub__itemBox .headerMenuSub__item:nth-child(3n+1) {
}

.headerMenuSub--Services .headerMenuSub__itemBox .headerMenuSub__item > .headerMenuSub__item {
    width: 100%;
    margin-top: 15px;
    margin-left: 15px;
    line-height: 1.25;
}

@media screen and (max-width: 1023px) {
    .headerMenu__inner__list {
        width:100%;
        margin-top: 10px;
    }

    .headerMenu__inner__list > li + li {
        margin-top: 0px;
        padding-bottom: 20px;
    }

    .innerList--divide {
        padding-top: 15px;
    }

    .headerMenu__inner__list > li > span {
        color: #aaaaaa;
        position: relative;
        text-align: left;
        padding: 10px 35px 10px 0;
        margin-bottom: 0;
        border-top: none;
        font-size: 1.2rem;
        cursor: pointer;
        display: block;
        cursor: pointer;
    }

    .headerMenu__inner__list .headerMenuSub--Services .headerMenuSub__inner {
        padding: 0;
    }

    .headerMenu__list--Services > .headerMenuSub > .headerMenuSub__inner {
        padding: 0 25px 15px 25px;
    }

    .headerMenuSub__itemBox {
        flex-direction: column;
    }

    .headerMenuSub__itemBox .headerMenuSub__item > .headerMenuSub__item {
        margin-left: 15px!important;
    }

    .headerMenu__inner__list > li > span:after,.headerMenu__inner__list > li > span:before {
        display: none;
        content: '';
        background: #fff !important;
        position: absolute;
        width: 16px !important;
        height: 2px;
        top: 50%;
        right: 10px;
        left: inherit;
        z-index: 2;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .headerMenu__inner__list > li > span:before {
        width: 2px !important;
        height: 16px;
        right: 17px;
    }

    .headerMenu__inner__list > li > span.is-active:before {
        content: normal;
    }

    .headerMenu__inner__list > li > span.is-active:after {
        width: 16px;
        background: #fff;
    }

    .headerMenuSub--Services {
        display: block;
        border-top: none;
    }

    .headerMenu__list--Services .headerMenuSub__icoBlank:after {
        content: none;
    }

    .headerMenu__list--Services .headerMenuSub__icoBlank:before {
        content: "";
        width: 12px;
        height: 12px;
        background: url(/static/jp/common/img/ico_blank01.png) 0 0 no-repeat;
        background-size: cover;
    }
}

.headerMenu__list > li.headerMenu__list--notIcon > a::after {
    display: none;
}

.headerNavList__item--search {
    display: none;
}

.headerNavList__item--search.is-active {
    align-items: center;
    margin-left: auto;
    position: absolute;
    top: calc(100% + 1px);
    right: 80px;
    padding: 20px;
    height: 80px;
    background-color: rgba(64,64,64,1);
}

.headerSearch__input input {
    background-color: #ededed;
    background-image: url("/static/jp/common/img/ico_headerSearch01.png");
    background-position: 12px center;
    background-repeat: no-repeat;
    width: 380px;
    border-radius: 30px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-size: 14px;
    padding: 12px 20px 11px 40px;
    font-size: 1.6rem;
}

.headerSearch__input input::-webkit-input-placeholder {
    color: #707070;
    font-size: 1.4rem;
}

.headerSearch__input input::-moz-placeholder {
    color: #707070;
    font-size: 1.4rem;
}

.headerSearch__input input:-ms-input-placeholder {
    color: #707070;
    font-size: 1.4rem;
}

.headerSearch__input input:-moz-placeholder {
    color: #707070;
    font-size: 1.4rem;
}

.scrollHeaderMenuBtn {
    background-color: rgba(92,92,92,0.8);
    border: none;
    display: none;
    position: absolute;
    bottom: -40px;
    right: 0;
    height: 40px;
    width: 40px;
    font-size: 0;
    z-index: -1;
}

.is-scroll .scrollHeaderMenuBtn,.scrollHeaderMenuBtn.is-active,.header:not(.is-scroll) .scrollHeaderMenuBtn.is-inactive {
    display: block;
}

.header:not(.is-scroll) .scrollHeaderMenuBtn:not(.is-inactive):not(.is-active) {
    display: none;
}

.scrollHeaderMenuBtn::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 17px;
    left: calc(50% - 5px);
    width: 10px;
    height: 6px;
    background: url(/static/jp/common/img/ico_headerArrow02.png) 0 0 no-repeat;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.scrollHeaderMenuBtn.is-active::after {
    bottom: 15px;
    transform: rotateX(180deg);
}

@media screen and (min-width: 1024px) {
    .headerSearch {
        display:none !important;
    }
}

@media screen and (max-width: 1279px) {
    .headerMenu__list > li > a {
        padding:20px 20px 20px 19px;
    }

    .headerNavList {
        padding-left: 0;
    }

    .headerNavList__item > a {
        padding: 20px 20px 19px 20px;
    }
}

@media screen and (max-width: 1023px) {
    .header__inner {
        display:flex;
        position: relative;
        justify-content: flex-end;
    }

    .header__firstLine {
        padding: 0;
    }

    .header__logo {
        position: absolute;
        left: 0px;
        top: 0;
        padding: 14px 0;
        width: 127px;
        max-width: 127px;
    }

    .header__info {
        width: 100%;
    }

    .headerNavList {
        order: 4;
        display: flex;
        align-items: center;
        margin-left: 0px;
        padding-left: 0px;
        min-height: 62px;
    }

    .headerNavList__item {
        display: flex;
        margin: 0;
        height: 100%;
        width: 50%;
    }

    .headerNavList:before {
    }

    .headerNavList__item > a {
        color: #ffffff;
        border: 1px solid #707070;
        border-left: none;
        padding: 8px 35px 8px 20px;
        width: 100%;
        text-align: left;
    }

    .headerNavList__item > a:hover {
        border-bottom: 1px solid #707070;
    }

    .headerNavList__item > a::after {
        display: block;
        content: '';
        width: 6px !important;
        height: 10px;
        position: absolute;
        top: calc(50% - 5px);
        right: 19px;
        background-image: url(/static/jp/common/img/ico_rightArrow02.png);
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: transparent !important;
    }

    .headerNavList__item:last-child > a {
        border-right: none;
    }

    .is-scroll .header__info {
        width: calc(100% - 105px);
    }

    .headerMenu__list .headerMenu__list--notIcon {
        margin-left: 0;
    }

    .headerMenu__list .headerMenu__list--notIcon a {
        padding: 25px 15px;
    }

    .headerMenu__list > li {
        margin-left: 0px;
    }
}

@media screen and (max-width: 1023px) {
    .headerSearchBtn {
        display:none;
        height: 100%;
    }

    .header__logo {
        order: 1;
        position: relative;
        left: 0;
    }

    .headerMenu__list > li.headerMenu__list--notIcon > a:after {
        width: 6px !important;
        height: 10px;
        background-image: url("/static/jp/common/img/ico_rightArrow02.png");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: transparent !important;
    }

    .headerSpNav__item--type03 a:before,.headerSpNav__item--type03 a:after {
        display: none;
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 1px;
        height: 41px;
        background: #fff;
    }

    .headerSpNav__item--type03 a:before {
        left: -1px;
    }

    .headerSpNav__item--type03 a:after {
        right: -1px;
    }

    .headerMenu__list .headerMenu__list--notIcon a {
        padding: 19px 35px 19px 20px;
    }

    .headerMenu__list .headerMenu__list--notIcon a:before {
        content: "";
        display: inline-block;
        margin-left: 10px;
        width: 6px !important;
        height: 10px;
        right: 18px;
        background: url(/static/jp/common/img/ico_rightArrow02.png) 0 0 no-repeat;
        background-size: cover;
        background-color: transparent !important;
    }

    .headerNavList__item--search {
        background-color: rgba(64,64,64,1);
        display: inline-block;
        order: 2;
        padding: 15px 20px 30px 20px;
        width: 100%;
        height: auto;
    }

    .headerSearch__input input {
        background-position: 93% center;
        padding: 12px 40px 11px 20px;
        height: 40px;
        width: 100%;
        font-size: 1.6rem;
    }

    .headerSearch__input {
        background-color: rgba(64,64,64,1);
        width: 100%;
    }

    .headerSearch__input input::-webkit-input-placeholder,.headerSearch__input input::-moz-placeholder,.headerSearch__input input:-ms-input-placeholder,.headerSearch__input input:-moz-placeholder {
        font-size: 1.4rem;
    }

    .headerSearch__txt {
        font-size: 1.6rem;
    }
}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {
    .header__info {
        width: calc(100% - 170px);
    }

    .is-scroll .header__info {
        width: calc(100% - 108px);
    }

    .headerSearch__input input {
        padding-top: 10px;
    }
}

@media screen and (max-width: 1023px),(-ms-high-contrast:active),(-ms-high-contrast:none) {
    .header__info {
        width:calc(100%);
    }
}

@media screen and (max-width: 1279px),(-ms-high-contrast:active),(-ms-high-contrast:none) {
}

@supports (-moz-appearance: meterbar) and (background-blend-mode:difference,normal) {
    @media screen and (max-width:1279px) {
        .is-scroll .header__info {
            width:calc(100% - 107px);
        }
    }
}

.headerMenu__list--Services .headerMenuSub__item--head {
    width: 206px;
}

.headerMenu__list > li {
    display: flex;
    align-items: center;
}

.headerMenu__list > li > .navMenu > .navMenu__tit {
    position: relative;
    display: block;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
    padding: 20px 30px 20px 30px;
    color: #333;
    font-family: "UD新ゴ B";
}

.headerMenu__list > li > .navMenu > .navMenu__tit::after {
    content: "";
    display: none;
    position: static;
    right: 0;
    top: 50%;
    width: 10px;
    height: 6px;
    background: url("/static/jp/common/img/ico_headerArrow01.png") 0 0 no-repeat;
    margin-top: 2px;
    margin-left: 12px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.headerMenu__list > li:not(.disableHover) > .navMenu > .navMenu__tit:hover,.headerMenu__list > li > .navMenu.is-active > .navMenu__tit {
    background-color: rgba(64,64,64,1);
    color: #ffffff;
    border-bottom: none;
}

.headerMenu__list > li.disableHover > .navMenu > .navMenu__tit:hover {
    text-decoration: none;
}

.headerMenu__list > li .navMenu > .navMenu__btn {
    display: none;
}

@media screen and (max-width: 1023px) {
    .headerMenu__list > li {
        display:block;
    }

    .headerMenu__list > li > .navMenu {
        position: relative;
    }

    .headerMenu__list > li > .navMenu > .navMenu__tit {
        text-align: left;
        padding: 20px 69px 20px 19px;
        margin-bottom: 0;
        border-top: 1px solid #707070;
        font-size: 1.4rem;
        color: #fff;
        cursor: pointer;
    }

    .headerMenu__list > li .navMenu > .navMenu__btn {
        display: block;
        width: 50px;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        border-left: 1px solid #707070;
    }

    .headerMenu__list > li .navMenu > .navMenu__btn:before,.headerMenu__list > li .navMenu > .navMenu__btn:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 23px;
        width: 2px;
        height: 15px;
        margin-top: -7px;
        background: #fff;
    }

    .headerMenu__list > li .navMenu > .navMenu__btn:after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .headerMenu__list > li .navMenu.is-active > .navMenu__btn:before {
        display: none;
    }

    .headerMenu__list > li .navMenu.is-navMenuSpNone > .navMenu__btn {
        display: none;
    }
}

.headerMenuSub__itemBox.headerMenuSub__itemBox--3col .headerMenuSub__item,.headerMenuSub__itemBox.headerMenuSub__itemBox--3col .headerMenuSub__innerItemBox {
    margin-top: 25px;
}

.headerMenuSub__itemBox.headerMenuSub__itemBox--3col .headerMenuSub__item:nth-of-type(1),.headerMenuSub__itemBox.headerMenuSub__itemBox--3col .headerMenuSub__item:nth-of-type(2),.headerMenuSub__itemBox.headerMenuSub__itemBox--3col .headerMenuSub__item:nth-of-type(3) {
    margin-top: 0;
}

.headerMenuSub__itemBox.headerMenuSub__itemBox--4col > .headerMenuSub__item {
    width: calc(100% / 4);
}

.headerMenuSub__itemBox.headerMenuSub__itemBox--4col .headerMenuSub__item,.headerMenuSub__itemBox.headerMenuSub__itemBox--4col .headerMenuSub__innerItemBox {
    margin-top: 25px;
}

.headerMenuSub__itemBox.headerMenuSub__itemBox--4col .headerMenuSub__item:nth-of-type(1),.headerMenuSub__itemBox.headerMenuSub__itemBox--4col .headerMenuSub__item:nth-of-type(2),.headerMenuSub__itemBox.headerMenuSub__itemBox--4col .headerMenuSub__item:nth-of-type(3),.headerMenuSub__itemBox.headerMenuSub__itemBox--4col .headerMenuSub__item:nth-of-type(4) {
    margin-top: 0;
}

.headerMenuSub__itemBox .headerMenuSub__innerItemBox {
    display: block;
    width: 100%;
}

.headerMenuSub__itemBox .headerMenuSub__innerItemBox > .headerMenuSub__innerItemBox {
    display: block;
    width: 100%;
}

.headerMenuSub__itemBox .headerMenuSub__innerItemBox:first-child {
    margin-top: 0;
}

.headerMenuSub__itemBox .headerMenuSub__innerItemBox > .headerMenu__inner__list--accCnt {
    margin-top: 10px;
}

.headerMenuSub__item--head {
    width: 206px;
    min-width: 206px;
}

.headerMenuSub__item--head + * {
    flex: 1;
}

.headerMenuSub__item > * {
    margin-top: 30px;
}

.headerMenuSub__item > *:first-child {
    margin-top: 0;
}

.headerMenuSub__item > a#sv_search .headerMenuSub__til {
    margin-top: 0;
}

.headerMenuSub__item > a .headerMenuSub__til.headerMenuSub__til--accTit {
    padding-right: 25px;
    position: relative;
}

.headerMenuSub__item > .headerMenuSub__itemElm > a .headerMenuSub__til.headerMenuSub__til--accTit:before,.headerMenuSub__item > .headerMenuSub__itemElm > a .headerMenuSub__til.headerMenuSub__til--accTit:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 7px;
    width: 2px;
    height: 14px;
    margin-top: -8px;
    border-radius: 5px;
    background: #06C755;
}

.headerMenuSub__item > .headerMenuSub__itemElm > a .headerMenuSub__til.headerMenuSub__til--accTit:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.headerMenuSub__item > .headerMenuSub__itemElm > a.is-hAccOpen {
    color: #06C755;
}

.headerMenuSub__item > .headerMenuSub__itemElm > a.is-hAccOpen .headerMenuSub__til.headerMenuSub__til--accTit:before {
    display: none;
}

.headerMenu__inner__list--accCnt {
    display: none;
    width: 100%;
}

@media screen and (max-width: 1023px) {
    .headerMenuSub__inner,.headerMenu__list--Services > .headerMenuSub > .headerMenuSub__inner {
        padding:0;
    }

    .headerMenuSub__item > * {
        margin-top: 0;
    }

    .headerMenuSub__item > a,.headerMenuSub__item > .headerMenuSub__itemElm > a {
        display: block;
        padding: 8px 25px;
        border-top: 1px solid #707070;
        font-size: 1.4rem;
    }

    .headerMenuSub__item > a .headerMenuSub__til.headerMenuSub__til--accTit {
        padding-right: 0;
    }

    .headerMenuSub__item > .headerMenuSub__itemElm > a .headerMenuSub__til.headerMenuSub__til--accTit:before,.headerMenuSub__item > .headerMenuSub__itemElm > a .headerMenuSub__til.headerMenuSub__til--accTit:after {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .headerLangBtn > a:first-child {
        border-top:1px solid #707070;
    }
}

@media screen and (max-width: 1279px) {
    .headerMenu__list > li > .navMenu > .navMenu__tit {
        padding:20px 20px 20px 19px;
    }
}

:root {
    --font-default: a-otf-ud-shin-go-pr6n,sans-serif;
    --transition-default: cubic-bezier(0.165,0.84,0.44,1);
    --zindex-header: 90;
    --zindex-fullsize-menu: 100;
    --zindex-sp-menu: 110;
    --zindex-pagetop: 10;
    --header-height: 78px;
    --globalnav-height: 58px;
    --spmenu-height: 59px;
    --contents-padding: 70px;
}

@media screen and (max-width: 1023px) {
    :root {
        --header-height:54px;
    }
}

@media screen and (min-width: 1024px) {
    .sp-only {
        display:none;
    }
}

@media screen and (max-width: 1023px) {
    .pc-only {
        display:none;
    }
}

.modal-box {
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    overflow: auto;
    padding: 30px;
    background-color: rgba(0,0,0,0.7);
    animation: modal-fadein 0.5s var(--transition-default);
    transition: opacity 0.5s var(--transition-default);
    -webkit-overflow-scrolling: touch;
}

.modal-box .modal-box__content {
    position: relative;
    width: 100%;
    margin: auto;
    pointer-events: auto;
    background-color: #fff;
}

.modal-box .modal-box__body {
    padding: 60px 100px;
}

.modal-box .modal-box__body > *:first-child {
    margin-top: 0;
}

.modal-box .modal-box__body > *:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
    .modal-box {
        padding:10px;
    }

    .modal-box .modal-box__body {
        padding: 45px 20px 40px;
    }
}

.-modal-show {
    overflow: hidden;
}

.-modal-show body {
    overflow: hidden;
    width: 100%;
}

.-modal-show .modal-box {
    opacity: 1;
}

.-modal-active .modal-box {
    visibility: visible;
}

@keyframes modal-fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

[role="tabpanel"] {
    display: none;
    opacity: 0;
}

[role="tabpanel"][aria-hidden="false"] {
    display: block;
    animation: fadeIn 2s var(--transition-default) forwards;
}

@font-face {
    font-family: 'linebiz-icon';
    src: url('/static/jp/common/font/linebiz-icon.ttf?5xtbae') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="lbicon-"],[class*=" lbicon-"] {
    font-family: 'linebiz-icon' !important;
    font-style: normal;
    font-family: "UD新ゴ M";
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lbicon-arrow:before {
    content: "\e900";
}

.lbicon-arrow_thin:before {
    content: "\e901";
}

.lbicon-comment:before {
    content: "\e902";
}

.lbicon-search:before {
    content: "\e903";
}

.lbicon-global:before {
    content: "\e904";
}

.lbicon-information:before {
    content: "\e905";
}

.lbicon-download:before {
    content: "\e906";
}

.lbicon-search_building:before {
    content: "\e907";
}

.lbicon-question:before {
    content: "\e909";
}

.lbicon-mail:before {
    content: "\e90a";
}

.lbicon-communication:before {
    content: "\e908";
}

.lbicon-advertisement:before {
    content: "\e90b";
}

.lbicon-coupon:before {
    content: "\e90c";
}

.lbicon-data:before {
    content: "\e90d";
}

.lbicon-new_customer:before {
    content: "\e90e";
}

.lbicon-shop_search:before {
    content: "\e90f";
}

.lbicon-rising_graph:before {
    content: "\e910";
}

.lbicon-shopping:before {
    content: "\e911";
}

.lbicon-rotate_human:before {
    content: "\e912";
}

.lbicon-handshake:before {
    content: "\e913";
}

.lbicon-device:before {
    content: "\e914";
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        visibility: visible;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes moveLine {
    0% {
        top: 0;
        bottom: 100%;
    }

    25% {
        top: 0;
        bottom: 0;
    }

    50% {
        top: 100%;
        bottom: 0;
    }

    100% {
        top: 100%;
        bottom: 0;
    }
}

.topicpath {
    max-width: 1200px;
    padding: 0 15px;
}

.topicpath--outside {
    margin: 0 auto;
}

.topicpath--bdGray {
    background: #F7F7F7;
}

.topicpath.topicpath--pos {
    width: 100%;
    top: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    z-index: 10;
}

.topicpath__list {
    padding-top: 10px;
    font-size: 0;
}

.topicpath__list > li {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    color: #fff;
    font-size: 1.2rem;
}

.topicpath__list > li:before {
    content: "";
    position: absolute;
    left: 6px;
    color: #fff;
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
    transform: rotate(45deg);
    top: 7px
}

.topicpath__list > li:first-child {
    padding-left: 0;
}

.topicpath__list > li:first-child:before {
    content: normal;
}

.topicpath__list > li > a {
    color: #fff;
    font-family: "UD新ゴ M";
}

.topicpath__list > li > a:hover {
    text-decoration: underline;
}

.topicpath__list--black > li {
    color: #000;
}

.topicpath__list--black > li:before {
    color: #707070;
}

.topicpath__list--black > li > a {
    color: #000;
}

.topicpath.topicpath--pos .topicpath__list {
    padding-top: 0;
}

.topicpath.topicpath--pos .topicpath__list--black > li {
    color: #fff;
}

.topicpath.topicpath--pos .topicpath__list--black > li:before {
    color: #fff;
}

.topicpath.topicpath--pos .topicpath__list--black > li > a {
    color: #fff;
}

.topicpath--bottom {
    display: none;
}

.mainH1Area {
    position: relative;
    padding: 0 40px;
    height: 440px;
    background: url("/static/jp/line-biz-solutions/img/bg_index01.jpg") 50% 50% no-repeat;
    background-size: cover;
}

.mainH1Area__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.mainH1Area__tit {
    position: relative;
    max-width: 470px;
    text-align: center;
    margin: 50px auto 0;
    padding-bottom: 50px;
}

.mainH1Area__titInner {
    display: block;
    margin: 0 auto 35px;
    color: #1ebd92;
    font-size: 2.0rem;
    font-family: "UD新ゴ B";
    text-align: center;
}

.mainH1Area__titInner:after,.mainH1Area__titInner:before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 8px;
    height: 5px;
    border-radius: 8px;
}

.mainH1Area__titInner:before {
    background: rgba(33,181,203,0.8);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.mainH1Area__titInner:after {
    background: rgba(30,189,146,0.8);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.mainH1Area__txt {
    margin: 0 auto;
    max-width: 490px;
    text-align: center;
}

.pageTxt {
    position: relative;
    line-height: 1.82;
    margin-top: 30px;
    font-size: 1.4rem;
    letter-spacing: 0.04rem
}

.pageTxt--red {
    color: #c80000;
}

.pageTxt--center {
    text-align: center;
}

.pageTxt--bold {
    font-family: "UD新ゴ B";
}

.pageTxt--voice {
    font-family: "UD新ゴ B";
    padding-left: 12px;
}

.pageTxt--voice:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0px;
    width: 4px;
    height: calc(100% - 7px);
    background: #000000;
}

.pageH2Area--tit01.pageH2Area--forTplPage + .pageTxt {
    margin-top: -10px;
    margin-bottom: 60px;
}

.pageH2Area--forTplPage + .pageH3Area + .pageTxt {
    margin-top: -10px;
}

.pageTxtList {
    margin-top: 30px;
    counter-reset: num;
    font-size: 1.4rem
}

.pageTxtList--mSmall {
    margin-top: 15px;
}

.pageTxtList--center {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.pageTxtList__item {
    position: relative;
    margin-top: 34px;
    padding-left: 19px;
    text-align: left;
    letter-spacing: 0.044rem;
    line-height: 1.75
}

.pageTxtList__item.pageTxt--center {
    text-align: center;
}

.pageTxtList__item:before {
    content: "ãƒ»";
    position: absolute;
    left: 0;
}

.pageTxtList__item.pageTxtList__item--num:before {
    left: 2px;
}

.pageTxtList__item--notes {
    margin: 10px auto 0;
    padding-left: 1.6em;
    color: #000000;
    font-size: 1.2rem;
    font-family: "UD新ゴ R";
    line-height: 1.35
}

.pageTxtList__item--notes--left {
    text-align: left;
}

.pageTxtList__item--notes > p {
    display: inline;
    letter-spacing: 0;
}

.pageH2Area--tit01.pageH2Area--forTplPage + .pageTxtList__item--notes {
    margin-top: 10px;
}

.pageH2Area--tit01.pageH2Area--forTplPage + .pageTxt + .pageTxtList__item--notes {
    margin-top: -40px;
    margin-bottom: 50px;
}

.pageTxtList__item--notes:before {
    position: absolute;
    left: 0;
    content: "â€»";
    font-size: 1.15rem
}

.pageTxtList__item--num {
    counter-increment: num;
    padding-left: 28px;
}

.pageTxtList__item--num:before {
    content: counter(num) ".";
    left: 2px;
    top: -1px;
    font-family: 'Volte Regular';
    font-weight: 700;
    font-size: 17px
}

.pageTxtList__item--notesNum {
    color: #070707;
    counter-increment: num;
    font-size: 1.4rem;
    padding-left: 2.2em;
    margin-top: 5px;
}

.pageTxtList__item--notesNum:before {
    content: "â€»" counter(num);
}

.pageTxtList__item--notesNoneNum {
    display: block;
    color: #707070;
    counter-increment: num;
    font-size: 1.2rem;
    padding-left: 1em;
    margin-top: 15px;
}

.pageTxtList__item--notesNoneNum:before {
    content: "â€»";
}

.pageTxtList__item:first-child {
    margin-top: 0;
}

.pageTxtList__item .pageTxtList {
    margin-top: 15px;
}

.pageTxtList__item--notes--service {
    margin: 5px auto 0;
    padding-left: 0;
    color: #707070;
    font-size: 1.2rem
}

.pageTxtList__tag {
    margin-right: 11px
}

.serviceTopTxt + .pageTxtList__item--notes--service {
    margin-top: -50px;
    margin-bottom: 60px;
}

.defaultBtn {
    margin: 14px 0;
    text-align: center;
}

.defaultBtn--mSmall {
    margin: 14px 0;
}

.defaultBtn a {
    display: inline-flex;
    padding: 3px 46px 3px 29px;
    min-height: 52px;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 1.4rem;
    font-family: "UD新ゴ M";
    line-height: 1.5;
    text-align: left;
    border-radius: 50px;
    background-image: linear-gradient(135deg,#d6d9e0 50%,#000048 50%);
    background-position: 100%;
    background-size: 300%;
    min-width: 187px;
    text-decoration: none;
    transition: background 600ms ease-in-out;
    letter-spacing: 0.17rem
}

.defaultBtn a:hover {
    background-position: 0;
    text-decoration: none;
    transition: background 600ms ease-in-out;
}

.defaultBtn a span {
    color: #fff;
    transition: 0.3s
}

.defaultBtn a span {
    color: #fff;
}

.defaultBtn a:hover span {
    color: #000048;
    transition: 0.5s
}

.defaultBtn a:hover .defaultBtn__arrow01:after {
    background-image: url("/static/jp/common/img/ico_rightArrow01.svg");
}

.defaultBtn__arrow01:after {
    content: "";
    position: absolute;
    top: calc(50% - 14px);
    right: 13px;
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url("/static/jp/common/img/ico_rightArrow02.svg") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.aboutAccount {
    background-color: #06C755;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

.modal + .aboutAccount {
    margin-top: 50px;
}

.contents__inner--confirm .aboutAccount {
    margin-top: 0;
}

.aboutAccount__box {
    margin: 48px 0 50px 0;
    padding: 0 1em 0 1em;
    min-width: 550px;
    max-width: calc(600px + 2em);
    text-align: center;
}

.aboutAccount__box + .aboutAccount__box {
    border-left: 1px solid #ffffff;
}

.aboutAccount__txt {
    display: inline-block;
    font-size: 32px;
    font-family: "UD新ゴ B";
    color: #fff;
    text-align: center;
}

.aboutAccount__subTxt {
    color: #fff;
}

.aboutAccount__txt + .aboutAccount__subTxt {
    margin-top: 10px;
}

.aboutAccount__box .defaultBtn {
    margin-top: 25px;
}

.aboutAccount__btn {
    margin-top: 30px;
}

.btnColumn2--aboutAccount .aboutAccount__btn {
    height: 100%;
}

.aboutAccount__btn > a {
    display: inline-block;
    background-color: #ff6851;
    border: 2px solid#ff6851;
    font-size: 1.4rem;
    padding: 9px 35px 8px 35px;
    position: relative;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: "UD新ゴ B";
    color: #fff;
    min-width: 260px;
    border-radius: 50px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.btnColumn2--aboutAccount .aboutAccount__btn > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.aboutAccount__btn--contact a {
    background-color: #06C755;
    border: 2px solid#ffffff;
    color: #ffffff;
}

.aboutAccount__btn > a:hover {
    color: #ff6851;
    background-color: #ffffff;
    border-color: #ff6851;
    text-decoration: none;
}

.aboutAccount__btn .defaultBtn__arrow01:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow02.svg") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.aboutAccount__btn .aboutAccount__arrow01::before {
    content: "";
    display: inline-block;
    margin-right: 9px;
    margin-top: -0.1em;
    width: 18px;
    height: 15px;
    background: url("/static/jp/common/img/ico_headerSp02.png") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.aboutAccount__btn a:hover .aboutAccount__arrow01--salesPro::before {
    background-image: url("/static/jp/service/line-sales-promotion/img/ico_headerSp02_active_orange.png");
}

.aboutAccount__btn--contact a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #06c405;
    text-decoration: none;
}

.aboutAccount__btn a:hover .defaultBtn__arrow01:after {
    background-image: url("/static/jp/common/img/ico_rightArrow07.png");
}

.aboutAccount__btn--contact a:hover .aboutAccount__arrow01::before {
    background-image: url("/static/jp/common/img/ico_headerSp02_active.png");
}

@media screen and (min-width: 1024px) {
    .aboutAccount__btn > a {
    }
}

@media screen and (max-width: 1023px) {
    .aboutAccount {
        margin-top:50px;
        padding: 0px 20px;
        flex-direction: column;
    }

    .aboutAccount__box {
        margin: 0 20px 0 20px;
        padding: 48px 0 43px 0;
        width: 100%;
        min-width: auto;
        text-align: center;
    }

    .aboutAccount__box + .aboutAccount__box {
        border-top: 1px solid #ffffff;
        border-left: none;
    }

    .aboutAccount__box .defaultBtn.defaultBtn--orange a {
        min-width: 260px;
    }

    .aboutAccount__txt {
        font-size: 3.6rem;
        font-family: "UD新ゴ B";
        color: #fff;
        margin-bottom: 18px;
    }

    .aboutAccount__txt.aboutAccount__txt--small {
        font-size: 2.1rem;
    }

    .btnColumn2--aboutAccount {
        margin-top: 0;
        display: flex;
        flex-direction: column;
    }

    .aboutAccount__btn {
        width: auto;
    }

    .aboutAccount__btn > a {
        display: inline-block;
        align-items: center;
        justify-content: center;
        padding: 8px 28px 8px;
        min-width: 220px;
        width: auto;
        height: 100%;
        font-size: 1.4rem;
    }

    .aboutAccount__btn > a span:after {
        display: none;
    }

    .btnColumn2--aboutAccount .aboutAccount__btn > a {
        width: auto;
    }
}

.defaultBtn--orange a {
    background-color: #ff6851;
    border: 2px solid#ff6851;
}

.defaultBtn--orange a:hover {
    color: #ff6851;
    background-color: #ffffff;
    border-color: #ff6851;
    text-decoration: none;
}

.defaultBtn--orange a:hover span {
    color: #ff6851;
}

.defaultBtn--orange a:hover .defaultBtn__arrow01:after {
    background-image: url(/static/jp/common/img/ico_rightArrow07.png);
}

.printBtn {
    margin-top: 20px;
    text-align: right;
}

.printBtn a {
    display: inline-block;
    padding: 2px 0;
    font-size: 1.6rem;
    font-family: "UD新ゴ DB";
    color: #333;
    border-radius: 50px;
    text-align: center;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.printBtn a:after {
    content: "";
    display: inline-block;
    margin-left: 9px;
    width: 20px;
    height: 23px;
    background: url("/static/jp/common/img/ico_print01.png") 0 0 no-repeat;
    background-size: 100% auto;
    vertical-align: -0.4em;
}

.printBtn a:hover {
    color: #000048;
}

.whiteBtn {
    margin-block:14px;text-align: center;
}

.whiteBtn--left {
    text-align: left;
}

.whiteBtn--right {
    text-align: right;
}

.whiteBtn__arrow01:after {
    content: "";
    position: absolute;
    top: calc(50% - 14px);
    right: 13px;
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url("/static/jp/common/img/ico_rightArrow01.svg") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
    transition: 0.5s;
}

.whiteBtn a:hover .whiteBtn__arrow01:after {
    background: url("/static/jp/common/img/ico_rightArrow02.svg") 0 0 no-repeat;
    transition: 0.5s;
}

.orangeBtn,.blueBtn {
    margin-block:18px;text-align: center;
}

.orangeBtn a,.blueBtn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 18px;
    position: relative;
    font-size: 1.8rem;
    line-height: 1.2;
    min-width: 360px;
    color: #fff;
    border-radius: 50px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
    letter-spacing: 0.2rem;
    min-height: 66px
}

.orangeBtn a {
    border: 2px solid #F77911;
    background: #F77911;
}

.blueBtn a {
    border: 2px solid #000048;
    background: #000048;
}

.orangeBtn a:hover {
    color: #F77911;
    background-color: #ffffff;
    border-color: #F77911;
    text-decoration: none;
}

.blueBtn a:hover {
    color: #000048;
    background-color: #ffffff;
    border-color: #000048;
    text-decoration: none;
}

.orangeBtn .orangeBtn__arrow01:after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 17px;
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_rightArrow02.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.orangeBtn a:hover .orangeBtn__arrow01:after {
    background-image: url(/static/jp/common/img/ico_rightArrow07.png);
}

.backBtn {
    margin-block:14px;text-align: center;
}

.contents__inner > .backBtn:first-child {
    margin-top: 60px;
    text-align: center;
}

.backBtn a {
    display: inline-flex;
    padding: 3px 46px 3px 29px;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 1.4rem;
    font-family: "UD新ゴ M";
    line-height: 1.5;
    text-align: left;
    border-radius: 40px;
    background-image: linear-gradient(135deg,#000048 50%,#fff 50%);
    background-position: 100%;
    background-size: 300%;
    border: 2px solid #000048;
    text-decoration: none;
    transition: background 600ms ease-in-out;
    min-width: 187px;
    letter-spacing: 0.1rem;
    min-height: 52px
}

.whiteBtn a {
    display: inline-flex;
    min-height: 52px;
    padding: 3px 50px 3px 28px;
    position: relative;
    font-size: 1.4rem;
    font-family: "UD新ゴ M";
    line-height: 1.5;
    text-align: left;
    border-radius: 40px;
    background-image: linear-gradient(135deg,#000048 50%,#fff 50%);
    background-position: 100%;
    background-size: 300%;
    border: 2px solid #000048;
    text-decoration: none;
    transition: background 600ms ease-in-out;
    min-width: 187px;
    letter-spacing: 0.1rem;
    justify-content: center;
    align-items: center
}

.backBtn a:hover,.whiteBtn a:hover {
    background-position: 0;
    text-decoration: none;
    transition: background 600ms ease-in-out;
}

.backBtn a span,.whiteBtn a span {
    color: #000048;
    transition: 0.6s
}

.backBtn a:hover span,.whiteBtn a:hover span {
    color: #fff;
    transition: 0.6s
}

.backBtn a:hover .backBtn__arrow01:after {
    background-image: url("/static/jp/common/img/ico_rightArrow02.svg");
    transition: 0.5s;
}

.backBtn__arrow01:before {
    content: "";
    position: absolute;
    top: calc(50% - 14px);
    right: 13px;
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url("/static/jp/common/img/ico_rightArrow01.svg") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
    transition: 0.5s;
}

.backBtn a:hover .backBtn__arrow01:before {
    background: url("/static/jp/common/img/ico_rightArrow02.svg") 0 0 no-repeat;
}

.pageMoreBtn {
    margin-top: 60px;
    text-align: center;
}

.pageMoreBtn a {
    display: inline-block;
    border: 2px solid #707070;
    background: #707070;
    padding: 9px 35px 8px 35px;
    position: relative;
    min-width: 260px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: "UD新ゴ B";
    color: #fff;
    border-radius: 50px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.pageMoreBtn a:hover {
    background-color: #ffffff;
    color: #707070;
    text-decoration: none;
}

.pageMoreBtn a:hover .pageMoreBtn__arrow:after {
    background-image: url(/static/jp/common/img/ico_rightArrow06.png);
}

.pageMoreBtn__arrow:after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 17px;
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_rightArrow02.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.pageMoreBtn__arrow--leftArrow:after {
    right: auto;
    left: 17px;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.bottomBtn {
    margin-top: 60px;
}

.manualList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.manualList > * {
    width: calc(50% - 30px);
    margin-left: 30px;
}

.manualList > *:nth-of-type(2n + 1) {
    margin-left: 0;
}

.manualList > *:nth-of-type(1) {
    margin-top: 0;
}

.manualList > *:nth-of-type(2) {
    margin-top: 0;
}

.grayBtn--shortMT {
    margin-block:14px;}

.grayBtn {
    margin-block:14px;text-align: center;
}

.contents--carouseSWlPanelList .grayBtn {
    display: none;
}

.grayBtn--left {
    text-align: left;
}

.grayBtn--right {
    text-align: right;
}

.grayBtn a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 3px 52px 3px 24px;
    position: relative;
    font-size: 1.4rem;
    line-height: 1.4;
    font-family: "UD新ゴ M";
    border-radius: 50px;
    background-image: linear-gradient(135deg,#000048 50%,#E4E8F0 50%);
    background-position: 100%;
    background-size: 300%;
    text-decoration: none;
    transition: background 600ms ease-in-out;
    min-width: 195px;
    min-height: 52px;
    text-align: left
}

.grayBtn a:hover {
    background-position: 0;
    text-decoration: none;
    transition: background 600ms ease-in-out;
}

.grayBtn a span {
    color: #000048;
    transition: 0.6s
}

.grayBtn a:hover span {
    color: #fff;
    transition: 0.6s
}

.grayBtn .grayBtn__arrow01:after {
    content: "";
    position: absolute;
    top: calc(50% - 14px);
    right: 13px;
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url("/static/jp/common/img/ico_rightArrow02.svg") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
    transition: 0.5s;
}

.grayBtn a:hover {
    background-color: #ffffff;
    color: #000048;
    text-decoration: none;
    border-color: #000048
}

.grayBtn a:hover .grayBtn__arrow01:after {
    background-image: url("/static/jp/common/img/ico_rightArrow03.svg");
    transition: 0.5s;
}

.pageTxtLink {
    margin-top: 20px;
}

.pageTxtLink__item {
    margin-top: 10px;
    text-align: left;
}

.pageTxtLink__item:not(.pageTxtLink__item--top) {
    margin-left: 1em;
}

.pageTxtLink a {
    position: relative;
    display: inline-block;
    color: #333;
    font-family: "UD新ゴ DB";
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
    letter-spacing: 0.04rem
}

.pageTxtLink a:hover {
    color: #003E9A;
}

.pageTxtLink a:after {
    display: inline-block;
    margin-left: 11px;
}

.pageTxtLink a.is-current {
    color: #06C755;
}

.pageTxtLink--manual a {
    font-family: "UD新ゴ B";
}

.pageTxtLink a:before {
    display: inline-block;
    margin-right: 15.5px;
}

.pageTxtLink__arrow01:before {
    content: "";
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow01.png") 0 0 no-repeat;
    background-size: cover;
}

.pageTxtLink__arrow02 {
    margin-right: 5px;
}

.pageTxtLink__arrow02:after {
    content: "";
    width: 10px;
    height: 6px;
    background: url("/static/jp/common/img/ico_bottomArrow01.png") 0 0 no-repeat;
    background-size: cover;
    margin-bottom: 3px
}

.pageTxtLink__blank01 {
    margin-right: 5px;
}

.pageTxtLink__blank01:after {
    content: "";
    width: 19.5px;
    height: 15px;
    background: url("/static/jp/common/img/ico_blank01.png") 0 0 no-repeat;
    background-size: contain;
}

.pageTxtLink__download01 {
    margin-right: 5px;
}

.pageTxtLink__download01:after {
    content: "";
    width: 15px;
    height: 16px;
    background: url("/static/jp/common/img/ico_download01.png") 0 0 no-repeat;
    background-size: contain;
    margin-bottom: -2px
}

.pageColumn1 {
    margin-top: 60px;
}

.pageColumn1__img {
    text-align: center;
    display: grid;
    justify-content: center;
}

.pageColumn1__ttl:not(:empty) {
    margin-bottom: 16px;
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
}

.pageColumn1__cap:not(:empty) {
    margin-top: 16px;
    padding: 8px 10px;
    font-size: 1.4rem;
    background-color: #F2F4F8;
}

.pageColumn1__txt {
    margin-top: 16px;
    font-size: 1.4rem;
    letter-spacing: 0.045rem
}

.pageColumn1 img,.pageColumn2 img,.pageColumn3 img,.pageColumn1Txt__img img {
    border-radius: 6px;
    width: auto
}

.pageColumn2 {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px
}

.pageColumn2__box {
    display: inline-block;
    width: calc(50% - 12px);
    vertical-align: top;
}

.pageColumn2__img {
    text-align: center;
    display: grid;
    justify-content: center;
}

.pageColumn2__ttl:not(:empty) {
    margin-bottom: 16px;
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
}

.pageColumn2__cap:not(:empty) {
    margin-top: 16px;
    padding: 8px 10px;
    font-size: 1.4rem;
    background-color: #F2F4F8;
}

.pageColumn2__txt {
    margin-top: 16px;
    font-size: 1.4rem;
    letter-spacing: 0.04rem
}

.pageColumn3 {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pageColumn3--small .pageColumn3__item {
    width: calc(100% / 3 - 10px);
    margin-left: 15px;
}

.pageColumn3--large .pageColumn3__item {
    margin-left: 130px;
}

.pageColumn3--center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pageColumn3__item {
    width: calc(99% / 3 - 20px);
    margin-left: 30px;
}

.pageColumn3__item:nth-child(3n+1) {
    margin-left: 0 !important;
}

.pageColumn3__item:nth-child(n+4) {
    margin-top: 30px;
}

.linkColumn3 {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.linkColumn3--small .linkColumn3__item {
    width: calc(100% / 3 - 10px);
    margin-left: 15px;
}

.linkColumn3__item {
    width: calc(100% / 3 - 20px);
    margin-left: 30px;
}

.linkColumn3__item > *:first-child {
    margin-top: 0;
}

.linkColumn3__item:first-child {
    margin-left: 0 !important;
}

.pageColumn1Txt {
    margin-top: 60px;
    overflow: hidden;
}

.pageColumn1Txt__ttl:not(:empty) {
    margin-bottom: 16px;
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
}

.pageColumn1Txt__img {
    float: left;
    max-width: 390px;
    margin: 0 20px 16px 0
}

.pageColumn1Txt__cap:not(:empty) {
    margin-top: 16px;
    padding: 8px 10px;
    font-size: 1.4rem;
    text-align: center;
    background-color: #F2F4F8;
}

.pageColumn1Txt__txt {
    font-size: 1.4rem;
    line-height: 1.71;
    letter-spacing: 0.035rem;
    margin-top: -5px
}

#LightBoxEnable {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%!important;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
}

#LightBoxEnable img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 100%;
    z-index: 1000;
}

@media screen and (max-width: 1023px) {
    #LightBoxEnable img {
        max-width:100%;
    }
}

#LightBoxEnable p {
    position: absolute;
    color: white;
    z-index: 1001;
}

.LightBox__close {
    position: absolute;
    display: inline-block;
    top: -24px;
    left: -24px;
    width: 32px;
    height: 32px;
    border: 0;
    background-color: black;
    border-radius: 32px;
    margin: 0;
    padding: 0;
    transform: scale(0.5);
    cursor: pointer;
}

.LightBox__close:before {
    content: "";
    position: absolute;
    display: inline-block;
    top: 4px;
    left: 13px;
    width: 6px;
    height: 24px;
    border: 0;
    margin: 0;
    padding: 0;
    background-color: white;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.LightBox__close:after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 4px;
    left: 13px;
    width: 6px;
    height: 24px;
    border: 0;
    margin: 0;
    padding: 0;
    background-color: white;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.LightBox__close:hover {
    background-color: red;
}

.pageBorderBox {
    border: 1px solid #e0e0e0;
    margin: 30px 0;
    padding: 70px 79.5px 77px 79.5px;
    text-align: center;
    border-radius: 6px
}

.pageBorderBox--bgGray {
    background-color: #f7f7f7;
    border: none;
}

.pageBorderBox > *:first-child {
    margin-top: 0;
}

.pageBorderBox--small {
    padding: 20px 40px;
}

.pageBorderBox--mtMedium {
    margin-top: 70px;
}

.pageBorderBox--partner {
    padding: 25px 60px;
}

.pageBorderBox--seminar {
    margin-bottom: 60px;
    padding: 40px 30px;
}

.pageBorderBox__tit {
    display: inline-block;
    margin-bottom: 0px;
    padding: 0 0 1.5px 0;
    border-bottom: 2px solid #D6D9E0;
    font-size: 2.4rem;
    line-height: 1.8;
    font-family: "UD新ゴ B";
    color: #333;
    text-align: center;
    letter-spacing: 0.33rem;
    margin-bottom: 42px
}

.pageBorderBox__txt {
    margin-bottom: 37.5px;
    text-align: left;
    font-size: 1.4rem;
    letter-spacing: 0.04rem
}

.pageBorderBox__txt:last-child {
    margin-bottom: 0px;
}

.pageBorderBox__txt--bold {
    font-family: "UD新ゴ B";
}

.pageColorBox {
    position: relative;
    background: #f7f7f7;
    margin: 30px 0;
    padding: 70px 76px 75px 76px;
    text-align: center;
    border-radius: 6px
}

.pageColorBox > *:first-child {
    margin-top: 0;
}

.pageColorBox--memo {
    padding: 55px 80px 72px 80px;
}

.pageColorBox__memoInner {
    padding: 64.5px 0px 64px 0;
    position: relative;
    font-size: 1.4rem;
}

.pageColorBox__memoInner::before,.pageColorBox__memoInner::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 23.5px;
    left: 0px;
    width: 36px;
    height: 28px;
    background: url("/static/jp/common/img/bg_memo01.png") 0 0 no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.pageColorBox__memoInner::after {
    top: auto;
    left: auto;
    bottom: 20px;
    right: 0px;
    transform: rotate(180deg);
}

.pageColorBox--plus:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 60px;
    height: 60px;
    background-image: url("/static/jp/common/img/bg_plus01.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.pageColorBox__tit {
    display: inline-block;
    margin-bottom: 34px;
    padding: 0px;
    border-bottom: 2px solid #D6D9E0;
    font-size: 2.4rem;
    line-height: 1.8;
    font-family: "UD新ゴ B";
    color: #333;
    text-align: center;
}

.pageColorBox__txt {
    margin-top: 36px;
    text-align: left;
    letter-spacing: 0.043rem;
    line-height: 1.75
}

.pageColorBox__memoInner > .pageColorBox__txt:first-child {
    margin-top: 0;
}

.pageColorBox__tag {
    margin-right: 18px
}

.pageColorBox__txt--bold {
    font-family: "UD新ゴ B";
}

.pageColorBox__txt--cite {
    margin-top: 12.5px;
    padding-left: 4.3em;
    text-indent: -4.3em;
    font-size: 87%
}

.pageColorBox__link {
    margin-top: 10px;
    text-align: left;
}

.pageColorBox__link a {
    padding-left: 19.5px;
    position: relative;
    display: inline-block;
    color: #333;
    font-family: "UD新ゴ B";
    letter-spacing: 0.05rem
}

.pageColorBox__link a::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 8px;
    left: 1px;
    width: 11px;
    height: 9px;
    background: url("/static/jp/common/img/ico_rightArrow08.png") 0 0 no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.shareList {
    margin-top: 20px;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    line-height: 1;
}

.shareList > li {
    display: inline-block;
    margin-right: 5px;
    vertical-align: top;
}

.tagBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tagBox__term {
    width: 6em;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    vertical-align: top;
}

.tagBox__desp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -10px;
    width: 99%;
    font-size: 0;
    vertical-align: top;
}

.tagBox__item {
    background: #f2f2f2;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 2px 5px;
    font-size: 1.3rem;
    font-family: "UD新ゴ M";
    color: #333;
    border-radius: 2px;
    vertical-align: middle;
}

.movieBox {
    margin-top: 30px;
    text-align: center;
}

.movieBox--small {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.movieBox iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.movieBox div.movieBox__inner,.movieBox a.movieBox__inner {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
    max-width: 760px;
    margin: 0 auto
}

.movieBox__img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.movieBox__img img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 16/9.0108;
}

.movieBox div.movieBox__inner:before {
    content: normal;
}

.movieBox div.movieBox__inner:hover {
    opacity: 1;
}

.movieBox__inner {
    position: relative;
    display: block;
    text-align: center;
}

.movieBox__inner:hover {
    opacity: 0.8;
}

.movieBox__inner:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    background: url("/static/jp/common/img/ico_player01.svg") 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 2
}

.pageH1Area {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-inline:70px;color: #FFF;
    background-color: #000048;
}

.pageH1Area__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1200px;
    min-height: 200px;
    margin: auto;
    padding: 50px 0;
    font-size: 3rem;
    font-family: "UD新ゴ B";
    line-height: 1.5;
    text-align: center;
}

.pageH1Area::before,.pageH1Area::after {
    content: "";
    position: absolute;
    border-style: solid;
}

.pageH1Area::before {
    left: 0;
    top: 0;
    border-width: min(200px,10.52vw) min(106px,5.52vw) 0 0;
    border-color: #06C755 transparent transparent transparent;
}

.pageH1Area::after {
    right: 0;
    bottom: 0;
    border-width: 0 0 min(200px,10.52vw) min(106px,5.52vw);
    border-color: transparent transparent #FF0033 transparent;
}

.pageH1Area .topicpath {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
}

.pageH1Area .topicpath__list {
    padding-top: 20px;
}

.pageH1Area .topicpath__list > li:before {
    border-color: #FFF;
}

.pageH1Area.pageH1Area--green::after {
    border-bottom-color: #06C755;
}

.pageH1Area.pageH1Area--red::before {
    border-top-color: #FF0033;
}

.pageH1Area .pageH1Area__txt {
    margin-top: 20px;
    font-size: 1.5rem;
    font-family: "UD新ゴ M";
}

.pageH1Area.pageH1Area--image {
    min-height: 300px;
}

.pageH1Area.pageH1Area--image-thin {
    min-height: 200px;
}

.pageH1Area.pageH1Area--image-thick {
    min-height: 500px;
    background-color: transparent;
    padding: 0;
}

.pageH1Area.pageH1Area--image::before,.pageH1Area.pageH1Area--image-thin:before {
    left: 50%;
    top: auto;
    bottom: 0;
    z-index: 1;
    border-width: 685px 362px 0 0;
    border-top-color: #000048;
}

.pageH1Area.pageH1Area--image-thick:before {
    content: none;
}

.pageH1Area.pageH1Area--image-thick:before {
    left: 34%;
}

.pageH1Area.pageH1Area--image::after,.pageH1Area.pageH1Area--image-thin::after,.pageH1Area.pageH1Area--image-thick::after {
    content: none;
}

.pageH1Area.pageH1Area--image .pageH1Area__inner {
    justify-content: flex-start;
    min-height: 300px;
}

.pageH1Area.pageH1Area--image-thin .pageH1Area__inner {
    justify-content: flex-start;
    min-height: 200px;
}

.pageH1Area.pageH1Area--image-thick .pageH1Area__inner {
    justify-content: flex-start;
    min-height: 300px;
    padding: 0;
    max-width: none;
}

.pageH1Area.pageH1Area--image .topicpath,.pageH1Area.pageH1Area--image-thin .topicpath,.pageH1Area.pageH1Area--image-thick .topicpath {
    z-index: 2;
}

.pageH1Area.pageH1Area--image-thick .topicpath {
    padding-left: var(--contents-padding);
}

.pageH1Area.pageH1Area--image .pageH1Area__tit,.pageH1Area.pageH1Area--image-thin .pageH1Area__tit,.pageH1Area.pageH1Area--image-thick .pageH1Area__tit {
    position: relative;
    z-index: 1;
    width: 50%;
    max-width: 540px;
    margin: 0;
    padding-inline:50px;text-align: left;
}

.pageH1Area.pageH1Area--image-thick .pageH1Area__tit {
    background-color: #000048;
}

.pageH1Area.pageH1Area--image-thick .pageH1Area__tit:before {
    content: "";
    position: absolute;
    left: calc(100% - 1px);
    top: 0;
    bottom: 0;
    width: 270px;
    z-index: 1;
    background-color: #000048;
    clip-path: polygon(0 0,100% 0,1px 100%,0 100%);
}

.pageH1Area.pageH1Area--image-thick .pageH1Area__tit {
    width: calc(400px + var(--contents-padding));
    max-width: none;
    min-height: 500px;
    padding: 97px 0 59px var(--contents-padding);
}

.pageH1Area.pageH1Area--image .pageH1Area__image,.pageH1Area.pageH1Area--image-thin .pageH1Area__image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
}

.pageH1Area.pageH1Area--image-thick .pageH1Area__image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    padding-left: calc(400px + var(--contents-padding));
}

.pageH1Area.pageH1Area--image-thick .pageH1Area__image div {
    height: 100%;
}

.pageH1Area.pageH1Area--image .pageH1Area__image img,.pageH1Area.pageH1Area--image-thin .pageH1Area__image img,.pageH1Area.pageH1Area--image-thick .pageH1Area__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.pageH1Area.pageH1Area--image-thick h1 {
    position: relative;
    z-index: 1;
    margin-right: -69px;
    font-size: 6rem;
}

.pageH1Area.pageH1Area--image-thick .pageH1Area__txt {
    line-height: calc(30 / 16);
}

.pageH1Area.pageH1Area--image-thick .pageH1Area__label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 240px;
    min-height: 38px;
    margin-bottom: 20px;
    padding: 3px 20px;
    font-size: 1.8rem;
    font-family: "UD新ゴ B";
    ;color: #06C755;
    background-color: #FFF;
    border-radius: 100px;
}

.pageH1Area.pageH1Area--image-thick.pageH1Area--green .pageH1Area__tit {
    background-color: #06C755;
}

.pageH1Area.pageH1Area--image-thick.pageH1Area--red .pageH1Area__tit {
    background-color: #FF0033;
}

.pageH1Area.pageH1Area--image-thick.pageH1Area--green .pageH1Area__tit:before {
    background-color: #06C755;
}

.pageH1Area.pageH1Area--image-thick.pageH1Area--red .pageH1Area__tit:before {
    background-color: #FF0033;
}

.pageH1Area.pageH1Area--image-thick.pageH1Area--green .pageH1Area__label,.pageH1Area.pageH1Area--image-thick.pageH1Area--red .pageH1Area__label {
    color: #FFF;
    background-color: #000048;
}

.pageH1Area.pageH1Area--lower::before {
    clip-path: polygon(calc(100% - 8px) 0,100% 0,0 100%,0 calc(100% - 15px));
}

.pageH1Area.pageH1Area--lower::after {
    clip-path: polygon(100% 0,100% 15px,8px 100%,0 100%);
}

.pageH1Area.pageH1Area--lower-gray {
    color: #000048;
    background-color: #E4E8F0;
}

.pageH1Area.pageH1Area--lower-gray .topicpath__list > li {
    color: #000048;
}

.pageH1Area.pageH1Area--lower-gray .topicpath__list > li > a {
    color: #000048;
}

.pageH1Area.pageH1Area--lower-gray .topicpath__list > li:before {
    border-color: #000048;
}

.pageH1Area.pageH1Area--lower-gray::before {
    border-top-color: #000048;
    clip-path: polygon(calc(100% - 8px) 0,100% 0,0 100%,0 calc(100% - 15px));
}

.pageH1Area.pageH1Area--lower-gray::after {
    border-bottom-color: #000048;
    clip-path: polygon(100% 0,100% 15px,8px 100%,0 100%);
}

.pageH1Area--login {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--manual {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--manual--detail {
    background: url("/static/jp/common/img/bg_title03.jpg") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--download {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--faq {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--privacy {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--contact {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--partnerOffer {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--partner {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--service {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--ebook {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--logo {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--signup {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--entry {
    background: url("/static/jp/common/img/bg_index01.png") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--error {
    background: #679bc6;
    background: linear-gradient(118.86716deg,#79cfa1 25.28125%,#78cea1 25.28125%,#61cbcc 50.36719%,#679bc6 74.03125%);
    background: linear-gradient(118.86716deg,#679bc6 25.28125%,#61cbcc 48.28125%,#78cea1 62.36719%,#79cfa1 84.03125%);
}

.pageH1Area--default {
    background: url("/static/jp/common/img/bg_title03.jpg") 50% 50% no-repeat;
    background-size: cover;
}

.pageH1Area--default .pageH1Area__inner {
    max-width: 760px;
}

.pageH1Area--default .pageH1Area__inner--long {
    max-width: 1200px;
}

.pageH1Area--default .pageH1Area__tit {
    color: #fff;
}

.pageH1Area--default .pageH1Area__tit:not(:only-child) {
    margin-bottom: 0;
}

.pageH1Area--default .pageH1Area__lead {
    color: #333;
}

.pageH1Area--default .pageH1Area__lead--research {
    font-size: 1.6rem;
    color: #ffffff;
    font-family: "UD新ゴ B";
}

.pageH1Area--manual .pageH1Area__tit {
    margin-top: 0;
}

.pageH1Area--manual .pageH1Area__tit--index {
    margin-top: auto;
}

.pageH1Area--default--news:not(.pageH1Area--manual--detail) .pageH1Area__tit {
    line-height: 3.5rem;
    font-size: 3rem;
}

.pageH1Area__tit--pl0 {
    padding-left: 0;
}

.pageH1Area__tit--adsNet--sub {
    font-size: 1.6rem;
    display: block;
}

.pageH1Area__bgTxt {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    color: #fff;
    font-size: 5.2rem;
    font-family: "UD新ゴ B";
    font-family: Arial,sans-serif;
    opacity: 0.25;
    -webkit-transform: translate(-50%,-80%);
    transform: translate(-50%,-80%);
}

.pageH1Area__lead {
    max-width: 1200px;
    margin: 10px auto auto;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
}

.pageH2Area {
    margin: 70px auto 35px;
    text-align: center;
}

.pageH2Area--tit01 {
    margin: 70px auto 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.pageH2Area__tit01 .pageH2Area__tit01__txt {
    letter-spacing: 0.32rem
}

.pageH2Area--tit01.pageH2Area--forTplPage {
    margin: 30px auto 60px;
}

.contents__inner > .pageH2Area--tit01.pageH2Area--forTplPage:first-child {
    margin-top: 0px;
}

.contents__main > .pageH2Area--tit01.pageH2Area--forTplPage:first-child {
    margin-top: 0px;
}

.pageH2--red.pageH2Area--tit01:before,.pageH2--red.pageH2Area--tit01:after {
    background-color: #FF0033
}

.pageH2--navy.pageH2Area--tit01:before,.pageH2--navy.pageH2Area--tit01:after {
    background-color: #000048
}

.pageH2Area__tit01 {
    padding: 0 46px;
    font-size: 3rem;
    line-height: 1.4;
    font-family: "UD新ゴ B";
    color: #404040;
    text-align: center;
    display: inline-flex;
    position: relative;
}

.pageH2Area__tit01:before,.pageH2Area__tit01:after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    content: "";
    width: 22px;
    height: 3px;
    background-color: #06C755;
}

.pageH2Area__tit01:before {
    left: 0;
}

.pageH2Area__tit01:after {
    right: 0
}

.pageH2--red .pageH2Area__tit01:after,.pageH2--red .pageH2Area__tit01:before {
    background-color: #FF0033;
}

.pageH2--navy .pageH2Area__tit01:after,.pageH2--navy .pageH2Area__tit01:before {
    background-color: #000048;
}

.pageH2Area span {
    margin-right: -0.32rem
}

.pageH2Area__tit01__smallTxt {
    display: block;
    font-size: 1.6rem;
}

.pageH2Area__tit01--left {
    display: block;
    text-align: left;
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
    margin-right: auto;
    margin-left: auto;
    letter-spacing: 0.43rem
}

.pageH2Area__tit01.pageH2Area__tit01--left:before,.pageH2Area__tit01.pageH2Area__tit01--left:after {
    display: none
}

.pageH2Area__tit02 {
    position: relative;
    display: block;
    border-bottom: 3px solid #06C755;
    font-size: 3rem;
    font-family: "UD新ゴ B";
    line-height: 1.65;
    color: #333;
    text-align: left;
    padding-bottom: 12px;
    letter-spacing: 0.43rem
}

.pageH2--red .pageH2Area__tit02 {
    border-color: #FF0033;
}

.pageH2--navy .pageH2Area__tit02 {
    border-color: #000048;
}

.pageH2Area__tit02.pageH2Area__tit02--center {
    letter-spacing: 0.4rem
}

.pageH2Area__tit02--center {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    font-size: 2.8rem;
    padding-bottom: 15px;
    line-height: 1.42;
}

.pageH2Area__tit01--fontVR {
    font-family: Volte Regular;
}

div[class*="layoutBox--type"] .pageH2Area {
    display: flex;
    align-items: center;
    margin: 0px auto 20px;
    text-align: left;
}

div[class*="layoutBox--type"] .pageH2Area__tit01 {
    position: relative;
    display: inline-block;
    padding-left: 0px;
    margin-bottom: 15px;
    font-size: 4.8rem;
    font-family: "UD新ゴ B";
    color: #404040;
    text-align: left;
}

div[class*="layoutBox--type"] .pageH2Area .pageTxtLink {
    margin: 0 0 0 auto;
}

div[class*="layoutBox--type"] .pageH2Area__tit01:after,div[class*="layoutBox--type"] .pageH2Area__tit01:before {
    display: none;
}

.pageH3Area {
    margin: 30px auto 20px;
}

.pageH2Area--tit01.pageH2Area--forTplPage + .pageH3Area {
    margin: -10px auto 60px;
}

.pageH3Area--center {
    text-align: center
}

.pageH3Area__tit01 {
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
    position: relative;
    padding-left: 22px;
    letter-spacing: 0.13rem;
}

.pageH3Area__tit01::before {
    display: block;
    content: "";
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 4px;
    height: calc(100% - 0.56em);
    background-color: #06C755;
}

.txtColumn2 .pageH3Area__tit01::before {
    height: calc(100% - 0.6em);
    top: 0.3em;
}

.pageH3--red .pageH3Area__tit01::before {
    background-color: #FF0033
}

.pageH3--navy .pageH3Area__tit01::before {
    background-color: #000048
}

.pageH3Area__tit02 {
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
    position: relative;
}

.pageH3Area__tit02--center {
    display: block;
    text-align: left;
    letter-spacing: 0.08rem
}

.pageH3Area__tit02--left {
    display: block;
    text-align: left;
    letter-spacing: 0.063rem;
    padding-left: 3px;
}

.pageH3Area__tit02--left::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 20px;
    height: 6px;
    border-radius: 8px;
    background-color: #06C755;
}

.pageH3--navy .pageH3Area__tit02--left::before {
    background-color: #000048;
}

.pageH3--red .pageH3Area__tit02--left::before {
    background-color: #FF0033;
}

.pageH3Area__tit04 {
    position: relative;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 10px;
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
    color: #333;
    text-align: left;
}

.pageH3Area__tit04::before {
    content: "";
    position: absolute;
    top: 6px;
    width: 6px;
    height: 23px;
    border-radius: 8px;
    background-color: #06C755;
}

.pageH3Area__tit04Inner {
    display: block;
    margin-left: 16px;
}

.pageH4Area {
    margin: 30px auto 20px;
}

.pageH2Area__tit03,.pageH4Area__tit01 {
    font-size: 2.0rem;
    font-family: "UD新ゴ B";
    position: relative;
    padding-left: 23px;
    letter-spacing: 0.063rem
}

.pageH2Area__tit03::before,.pageH4Area__tit01::before {
    display: block;
    content: "";
    position: absolute;
    top: calc((1em * 1.6) / 2 - 5px);
    left: 0;
    width: 9px;
    height: 9px;
    background-color: #06C755;
}

.pageH2--navy .pageH2Area__tit03::before,.pageH4--navy .pageH4Area__tit01::before {
    background-color: #000048;
}

.pageH2--red .pageH2Area__tit03::before,.pageH4--red .pageH4Area__tit01::before {
    background-color: #FF0033;
}

.pageH4Area__tit01 {
    color: #404040;
}

.pageH4Area__tit02 {
    color: #404040;
    font-size: 2.0rem;
    font-family: "UD新ゴ B";
    position: relative;
    padding-left: 22px;
    padding-bottom: 4.7px;
    border-bottom: 3px solid #06C755;
    letter-spacing: 0.063rem
}

.pageH4--navy .pageH4Area__tit02 {
    border-color: #000048;
}

.pageH4--red .pageH4Area__tit02 {
    border-color: #FF0033;
}

.pageH4Area__tit02::before,.pageH4Area__tit02::after {
    display: block;
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #9b9b9b;
    opacity: 0.7;
}

.pageH4Area__tit02::after {
    background-color: #06C755;
    left: 4px;
    top: 12px;
}

.pageH4--navy .pageH4Area__tit02::after {
    background-color: #000048;
}

.pageH4--red .pageH4Area__tit02::after {
    background-color: #FF0033;
}

@media screen and (min-width: 560px) and (max-width:1023px) {
    .pageH1Area.pageH1Area--login,.pageH1Area.pageH1Area--manual,.pageH1Area.pageH1Area--manual--detail,.pageH1Area.pageH1Area--download,.pageH1Area.pageH1Area--faq,.pageH1Area.pageH1Area--privacy,.pageH1Area.pageH1Area--contact,.pageH1Area.pageH1Area--partnerOffer,.pageH1Area.pageH1Area--partner,.pageH1Area.pageH1Area--service,.pageH1Area.pageH1Area--ebook,.pageH1Area.pageH1Area--logo,.pageH1Area.pageH1Area--signup,.pageH1Area.pageH1Area--entry {
        padding:15px 15px 15px;
        display: flex;
        align-items: center;
    }

    .pageH1Area--login {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--manual {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--manual--detail {
        background: url("/static/jp/common/img/bg_title04.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--download {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--faq {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--privacy {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--contact {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--partnerOffer {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--partner {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--service {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--ebook {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--logo {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--signup {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--entry {
        background: url("/static/jp/common/img/bg_index01_tb.png") 60% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area__inner {
        width: 100%;
    }

    .pageH1Area--manual--detail .pageH1Area__inner {
        width: auto;
    }
}

@media screen and (max-width: 559px) {
    .pageH1Area.pageH1Area--login,.pageH1Area.pageH1Area--manual,.pageH1Area.pageH1Area--manual--detail,.pageH1Area.pageH1Area--download,.pageH1Area.pageH1Area--faq,.pageH1Area.pageH1Area--privacy,.pageH1Area.pageH1Area--contact,.pageH1Area.pageH1Area--partnerOffer,.pageH1Area.pageH1Area--partner,.pageH1Area.pageH1Area--service,.pageH1Area.pageH1Area--ebook,.pageH1Area.pageH1Area--logo,.pageH1Area.pageH1Area--signup,.pageH1Area.pageH1Area--entry {
        padding:15px 15px 15px;
        display: flex;
        align-items: center;
    }

    .pageH1Area--login {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--manual {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--manual--detail {
        background: url("/static/jp/common/img/bg_title04.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--download {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--faq {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--privacy {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--contact {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--partnerOffer {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--partner {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--service {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--ebook {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--logo {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--signup {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }

    .pageH1Area--entry {
        background: url("/static/jp/common/img/bg_index01_sp.png") 67% 50% no-repeat;
        background-size: cover;
    }
}

@media screen and (max-width: 1023px) {
    .pageH1Area {
        padding-inline:40px;
    }

    .pageH1Area__inner {
        min-height: 102px;
        padding: 40px 0;
        font-size: 2.2rem;
    }

    .pageH1Area::before {
        top: auto;
        bottom: 50%;
        border-width: 174px 92px 0 0;
    }

    .pageH1Area::after {
        top: 50%;
        border-width: 0 0 174px 92px;
    }

    .pageH1Area .pageH1Area__txt {
        font-size: 1.4rem;
    }

    .pageH1Area.pageH1Area--image,.pageH1Area.pageH1Area--image-thin,.pageH1Area.pageH1Area--image-thick {
        padding-inline:0;min-height: auto;
    }

    .pageH1Area.pageH1Area--image::before,.pageH1Area.pageH1Area--image-thin:before,.pageH1Area.pageH1Area--image-thick:before {
        content: none;
    }

    .pageH1Area.pageH1Area--image .pageH1Area__inner,.pageH1Area.pageH1Area--image-thin .pageH1Area__inner,.pageH1Area.pageH1Area--image-thick .pageH1Area__inner {
        justify-content: center;
        min-height: auto;
        padding: 40px 20px;
    }

    .pageH1Area.pageH1Area--image .pageH1Area__tit,.pageH1Area.pageH1Area--image-thin .pageH1Area__tit,.pageH1Area.pageH1Area--image-thick .pageH1Area__tit {
        width: auto;
        max-width: none;
        padding-inline:0;text-align: center;
    }

    .pageH1Area.pageH1Area--image-thick .pageH1Area__tit {
        min-width: auto;
        padding: 40px 20px;
    }

    .pageH1Area.pageH1Area--image .pageH1Area__image,.pageH1Area.pageH1Area--image-thin .pageH1Area__image {
        position: static;
        width: 100%;
        height: 140px;
    }

    .pageH1Area.pageH1Area--image-thick .pageH1Area__image {
        position: static;
        width: 100%;
        height: 200px;
        padding-left: 0;
    }

    .pageH1Area.pageH1Area--image-thick .pageH1Area__tit:before {
        content: none;
    }

    .pageH1Area.pageH1Area--image-thick .pageH1Area__label {
        min-width: 174px;
        min-height: 30px;
        margin-bottom: 30px;
        font-size: 1.3rem;
    }

    .pageH1Area.pageH1Area--image-thick h1 {
        margin-right: 0;
    }

    .pageH1Area.pageH1Area--image-thick .pageH1Area__tit {
        padding: 0;
        min-height: auto;
    }

    .pageH1Area.pageH1Area--image-thick h1 {
        margin-right: 0;
        font-size: 3.4rem;
    }

    .pageH1Area.pageH1Area--image-thick .pageH1Area__txt {
        text-align: left;
    }

    .pageH1Area.pageH1Area--image-thick .pageH1Area__inner {
        background-color: #000048;
    }

    .pageH1Area.pageH1Area--image-thick.pageH1Area--green .pageH1Area__inner {
        background-color: #06C755;
    }

    .pageH1Area.pageH1Area--image-thick.pageH1Area--red .pageH1Area__inner {
        background-color: #FF0033;
    }

    .pageH1Area.pageH1Area--lower::before,.pageH1Area.pageH1Area--lower-gray::before {
        clip-path: polygon(calc(100% - 5px) 0,100% 0,0 100%,0 calc(100% - 9px));
    }

    .pageH1Area.pageH1Area--lower::after,.pageH1Area.pageH1Area--lower-gray::after {
        clip-path: polygon(100% 0,100% 9px,5px 100%,0 100%);
    }
}

.layoutBox__Wrapper {
    width: 100%;
    display: flex;
    justify-content: stretch;
    align-items: center;
    position: relative;
}

.layoutBox--typeParallel02.layoutBox__Wrapper {
    flex-flow: row-reverse;
}

.layoutBox__Wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.layoutBox--typeParallel02.layoutBox__Wrapper:after {
    right: auto;
    left: 0;
}

.layoutBox__box {
    padding: 70px 100px 75px 0;
    width: 50%;
}

.layoutBox--typeParallel02 .layoutBox__box {
    padding: 70px 0 75px 100px;
}

.layoutBox__tit {
    position: relative;
    margin: 0 0 30px 0;
    color: #06C755;
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
    text-align: left;
}

.layoutBox__txt {
    padding: 0 0 15px 0;
    font-size: 1.6rem;
}

@media screen and (max-width: 1023px) {
    .layoutBox__Wrapper {
        flex-direction:column-reverse;
    }

    .layoutBox__Wrapper + .layoutBox__Wrapper {
        margin-top: 30px;
    }

    .layoutBox__Wrapper:after {
        display: none;
    }

    .layoutBox__txt {
        position: relative;
        font-size: 1.4rem;
    }

    .layoutBox__txt:after {
        content: "";
        display: block;
        position: relative;
        top: auto;
        right: 0;
        width: 100%;
        height: 210px;
        margin-top: 23px;
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: cover;
        -webkit-transition: 0.4s all ease;
        transition: 0.4s all ease;
    }

    .topContents--service .layoutBox__txt:after {
        background-image: url(/static/jp/img/bg_service01.jpg);
    }

    .topContents--advertisement .layoutBox__txt:after {
        background-image: url(/static/jp/img/bg_service02.jpg);
    }

    .topContents--Promotion .layoutBox__txt:after {
        background-image: url(/static/jp/img/bg_service03.jpg);
    }

    div[class*="layoutBox--typeParallel"] .layoutBox__box {
        width: 100%;
        margin: 15px 0 15px 0;
        padding: 0px 0px 0px 0;
    }

    div.topContents--service .layoutBox__box,div.topContents--advertisement .layoutBox__box,div.topContents--Promotion .layoutBox__box {
        margin-top: 5px;
    }

    .layoutBox__tit {
        margin-bottom: 15px;
        font-size: 2.0rem;
    }
}

.contents--carouseSWlPanelList .pageH2Area,.contents--nonCarouseSWlPanelList .pageH2Area {
    display: flex;
    align-items: center;
    margin: 0px auto 20px;
    text-align: left;
}

.contents--carouseSWlPanelList .pageH2Area__tit01,.contents--nonCarouseSWlPanelList .pageH2Area__tit01 {
    position: relative;
    display: inline-block;
    padding-left: 0px;
    font-size: 4.8rem;
    font-family: "UD新ゴ B";
    color: #404040;
    text-align: left;
}

.contents--carouseSWlPanelList .pageH2Area .pageTxtLink,.contents--nonCarouseSWlPanelList .pageH2Area .pageTxtLink {
    margin: 0 0 0 auto;
}

.contents--carouseSWlPanelList .pageH2Area__tit01:after,.contents--carouseSWlPanelList .pageH2Area__tit01:before,.contents--nonCarouseSWlPanelList .pageH2Area__tit01:after,.contents--nonCarouseSWlPanelList .pageH2Area__tit01:before {
    display: none;
}

.contents--carouseSWlPanelList .topH2Area__titInner,.contents--nonCarouseSWlPanelList .topH2Area__titInner {
    display: inline-block;
    margin-left: 25px;
    font-size: 2.0rem;
    font-family: "UD新ゴ B";
    vertical-align: middle;
}

.casePanel__ico {
    margin-top: 12px;
    margin-right: 5px;
}

.casePanel__ico:last-child {
    margin-right: 0px;
}

.carouseSWPanelList,.nonCarouseSWPanelList {
    margin: 40px -10px -10px;
    padding: 10px;
}

.carouseSWPanelList--noEvent {
    margin-top: 30px;
}

.carouseSWPanelList .swiper-slide,.nonCarouseSWPanelList .swiper-slide {
    width: 100%;
    max-width: 308px;
    margin-right: 30px;
    height: auto;
}

.carouseSWPanelList.swiper-container-horizontal .swiper-slide,.nonCarouseSWPanelList.swiper-container-horizontal .swiper-slide {
    margin-right: 0;
}

.carouseSWPanelList.js-relationCarousel_02 .swiper-slide,.nonCarouseSWPanelList.js-relationCarousel_02 .swiper-slide {
    max-width: 100%;
}

.noEventsNote {
    padding: 17px 0;
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
}

.nonCarouseSWPanelList .pagePannel__txt--seminar {
    margin-top: 15px;
}

.casePanel__icoBox {
    padding-bottom: 1px;
    text-align: left;
}

.pagePannel--gray .casePanel__icoBox {
    margin-top: 10px;
    padding-right: 0px;
    padding-left: 0px;
}

.pagePannel--gray.case__study__page .casePanel__icoBox {
    padding-right: 10px;
    padding-left: 10px;
}

.pagePannel--gray.case__study__page .pagePannel__detail {
    padding: 20px 12px 25px;
}

.nonCarouseSWPanelList .casePanel__icoBox--column {
    margin-top: 0;
}

.contents--carouseSWlPanelList .whiteBtn,.contents--nonCarouseSWlPanelList .whiteBtn {
    display: none;
}

.casePanel__ttl {
    float: left;
}

.casePanel__icoList {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 1023px) {
    .contents.contents--carouseSWlPanelList,.contents.contents--nonCarouseSWlPanelList {
        padding:0 20px;
    }

    .contents--carouseSWlPanelList .pageH2Area .pageTxtLink,.contents--nonCarouseSWlPanelList .pageH2Area .pageTxtLink {
        display: none;
    }

    .contents--carouseSWlPanelList .contents__inner,.contents--nonCarouseSWlPanelList .contents__inner {
        padding: 60px 0 70px 0;
    }

    .contents--nonCarouseSWlPanelList .contents__inner {
        padding-bottom: 40px;
    }

    .contents--carouseSWlPanelList .pageH2Area,.contents--nonCarouseSWlPanelList .pageH2Area {
        margin-bottom: 30px;
    }

    .contents--carouseSWlPanelList .pageH2Area__tit01,.contents--nonCarouseSWlPanelList .pageH2Area__tit01 {
        line-height: 1.2;
        font-size: 2.7rem;
    }

    .contents--carouseSWlPanelList .topH2Area__titInner,.contents--nonCarouseSWlPanelList .topH2Area__titInner {
        display: block;
        margin-left: 0px;
        font-size: 1.2rem;
    }

    .carouseSWPanelList,.nonCarouseSWPanelList,.articleCarousel {
        overflow: visible;
    }

    .nonCarouseSWPanelList .swiper-wrapper {
        display: flex;
        flex-direction: column;
    }

    .carouseSWPanelList .swiper-slide,.nonCarouseSWPanelList .swiper-slide {
        max-width: 100%;
    }

    .nonCarouseSWPanelList .swiper-slide {
        width: 100%;
        margin-right: 0;
    }

    .nonCarouseSWPanelList .swiper-slide + .swiper-slide {
        margin-top: 30px;
    }

    .dataNotation__desc {
        font-size: 1.4rem;
    }

    .dataNotation__def {
        font-size: 1.4rem;
    }

    .whiteBtn--borderGreen a {
        border-color: #06C755;
    }

    .carouseSWPanelList .swiper-button-prev,.carouseSWPanelList .swiper-button-next {
        display: block;
        background: rgba(64,64,64,0.65);
        width: 22px;
        height: 66px;
        left: 0;
    }

    .case__study__page.carouseSWPanelList .swiper-button-prev,.case__study__page.carouseSWPanelList .swiper-button-next {
        top: calc(52vw - 25px);
    }

    .carouseSWPanelList .swiper-button-next {
        left: auto;
        right: 0;
    }

    .contents--carouseSWlPanelList .whiteBtn {
        display: block;
        margin-top: 50px;
    }

    .contents--carouseSWlPanelList .whiteBtn a {
        padding: 8px 30px 7px;
    }
}

.dataNotation {
    display: flex;
}

.dataNotation__def {
    margin-left: 8px;
    padding-left: 8px;
    position: relative;
}

.dataNotation__def::before {
    content: "";
    position: absolute;
    top: calc(50% - 0.6em);
    left: 0px;
    width: 1px;
    height: 1.1em;
    background-color: #d0d0d0;
}

.txtColumn2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
    margin-right: auto;
    margin-left: auto;
    gap : 65px;
}

.txtColumn2__item {
    width: calc(50% - 63.2px);
    vertical-align: top;
}

.txtColumn2__item:nth-of-type(2n+1) {
    margin-left: 0;
}

.txtColumn2__item:nth-of-type(n+3) {
    margin-top: 60px;
}

.txtColumn2__item > *:first-child {
    margin-top: 0;
}

.btnColumn2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 0px;
}

.btnColumn2--aboutAccount {
    margin-top: 30px;
    justify-content: center;
    align-items: stretch;
}

.btnColumn2__item {
    width: calc(100% / 2 - 30px);
    margin-left: 30px;
    vertical-align: top;
}

.btnColumn2__item--hAlignCenter {
    width: calc(100% / 2 - 15px);
    justify-content: space-between;
}

.btnColumn2__item--hAlignCenter:only-child {
    width: auto;
}

center .btnColumn2__item {
    margin-top: 60px;
    margin-bottom: 70px;
}

.btnColumn2__item:first-child {
    margin-left: 0;
}

.btnColumn2__item > *:first-child {
    margin-top: 0;
}

.btnColumn2--oneline a {
    padding: 8px 35px 8px 23px;
}

@media screen and (max-width: 1023px) {
    .btnColumn2--oneline a {
        min-width:260px;
    }

    center .btnColumn2__item {
        margin-bottom: 0px;
    }

    .btnColumn2--aboutAccount {
        margin-top: 10px;
    }

    .btnColumn2__item--hAlignCenter {
        display: flex;
        justify-content: center;
        min-width: auto;
        width: 100%;
        margin-left: 0px;
    }

    .btnColumn2__item--hAlignCenter:last-child {
        margin-top: 10px;
        margin-left: 0px;
    }

    .btnColumn2__item--mgNone:first-child {
        margin-top: 0;
    }
}

.btnColumn3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-block:14px;margin-right: auto;
    margin-left: auto;
    max-width: 585px;
    gap: 12px
}

.btnColumn3__item {
    vertical-align: top;
    width: 33%
}

.btnColumn3__item a {
    width: 100%;
    min-width: auto;
}

.btnColumn3__item:first-child {
    margin-left: 0;
}

.btnColumn3__item > *:first-child {
    margin-top: 0;
}

.relatedArticle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    height: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.relatedArticle__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    color: #333;
}

.relatedArticle__inner:hover .relatedArticle__img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.relatedArticle__inner:hover * {
    text-decoration: underline;
}

.relatedArticle__imgArea {
    width: 100%;
    max-width: 271px;
    overflow: hidden;
}

.relatedArticle__img {
    display: block;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.relatedArticle__img:before {
    content: "";
    display: block;
    width: 271px;
    padding-top: 71.22%;
}

.relatedArticle__detail {
    padding: 40px;
}

.relatedArticle__detail > *:first-child {
    margin-top: 0;
}

.relatedArticle__txt {
    margin-top: 5px;
    font-family: "UD新ゴ M";
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
    line-height: 1.8
}

.relatedArticle__txt--bold {
    font-family: "UD新ゴ B";
    font-size: 1.6rem;
    letter-spacing: 0rem;
    line-height: 1.8
}

.contents {
    padding: 0 40px;
}

.contents--gray {
    background: #F7F7F7;
}

.contents--gray--beforeFooterLink {
    margin-bottom: 65px;
}

.contents--gradation {
    background: #7ad3e0;
    background: -webkit-gradient(linear,left top,right top,from(#7ad3e0),to(#78d7be));
    background: linear-gradient(to right,#7ad3e0 0%,#78d7be 100%);
}

.contents--research {
    background-color: #06C755;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contents--confirm {
    border-bottom: 1px solid #d0d0d0;
}

.contents--confirm--noneBorderBt {
    border-bottom: 0px solid #d0d0d0;
}

.contents--partner {
    position: relative;
    background: url("/static/jp/common/img/bg_conversion01.png") top left no-repeat,url(/static/jp/common/img/bg_conversion02.png) bottom right no-repeat,url("/static/jp/common/img/bg_conversion03.png") bottom left no-repeat,url(/static/jp/common/img/bg_conversion04.png) top right no-repeat;
    background-color: #f2f2f2;
    background-size: auto 93%,auto 93%,contain,contain;
}

.contents--bottomMenu {
    border-top: 1px solid #d0d0d0;
}

.aboutAccount + .contents--bottomMenu {
    border-top: none;
}

.contents--adsPartner + .contents--bottomMenu {
    border-top: none;
}

.contents--confirm + .contents--bottomMenu {
    border-top: none;
}

.contents__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 0;
}

.contents__inner--media {
    padding: 108px 0 103px;
}

.contents__inner--bottomMenu {
    padding: 60px 0 45px 0;
}

.layoutBox--typeParallel .contents__inner {
    padding-bottom: 0;
}

.contents__inner > *:first-child {
}

.contents__inner:after {
    content: "";
    display: table;
    clear: both;
}

.contents__inner--small {
    max-width: 980px;
}

.contents__inner--conversion {
    padding: 25px 0;
}

.contents__inner--research {
    padding: 30px 0;
}

.contents__inner--partner {
    padding: 30px 0;
}

.contents__inner--confirm {
    padding: 98px 0 68px 0;
}

.contents__inner--FeePlan {
    padding-bottom: 0px;
}

.contents__inner--sales {
    padding-bottom: 0px;
}

.contents__inner--option {
    padding-bottom: 0px;
}

.contents__inner--case {
    padding-top: 46px;
}

.contents__inner--normal {
    padding-bottom: 0px;
}

.contents__main {
    float: left;
    max-width: 790px;
    width: calc(100% - 370px);
}

.contents__main > *:first-child {
    margin-top: 0;
}

.contents--topMenu .contents__main {
    padding: 0 20px;
}

.contents--topMenu .contents__main--media {
    width: calc(100% - 350px);
    max-width: 100%;
    padding: 0;
}

.contents__side {
    float: right;
    max-width: 330px;
    min-width: 330px;
}

.contents__side > *:first-child {
    margin-top: 0;
}

.sideTitArea {
    margin: 60px auto 30px;
}

.pageH2Area.sideTitArea {
    text-align: left;
}

.sideTitArea__tit {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    font-size: 2.0rem;
    font-family: "UD新ゴ B";
    color: #333;
    text-align: left;
}

.sideTitArea__tit:after,.sideTitArea__tit:before {
    content: "";
    position: absolute;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.sideTitArea__tit:before {
    left: 0;
    background: rgba(33,181,203,0.8);
}

.sideTitArea__tit:after {
    top: 12px;
    left: 4px;
    background: rgba(30,189,146,0.8);
}

.sideTitArea__titInner {
    display: inline-block;
    margin-left: 5px;
    font-size: 1.4rem;
    color: #777;
}

.sideQrcode {
    margin-top: 30px;
}

.sideQrcode__tit {
    font-family: "UD新ゴ B";
}

.sideQrcode__txt {
    margin-top: 5px;
    font-size: 1.4rem;
}

.sideQrcode__img {
    margin-top: 20px;
}

.sideQrcode__btn {
    display: none;
}

.sideBanner {
    margin-top: 30px;
}

.sideBanner__tit {
    font-family: "UD新ゴ B";
}

.sideBanner__txt {
    margin-top: 5px;
    font-size: 1.4rem;
}

.sideBanner__img {
    margin-top: 20px;
}

.sideCategory {
    margin-top: 30px;
}

.sideCategory__item {
    border-bottom: 1px solid #e0e0e0;
}

.sideCategory__item:first-child {
    margin-top: -18px;
}

.sideCategory__item > a {
    position: relative;
    display: block;
    padding: 18px 20px 17px 10px;
    font-size: 1.6rem;
    color: #333;
}

.sideCategory__item > a.is-current {
    color: #003E9A;
    font-family: "UD新ゴ B";
}

.sideCategory__item > a.is-current:after {
    background: url("/static/jp/common/img/ico_rightArrow01.png") 0 0 no-repeat;
    background-size: cover;
}

.sideCategory__item.sideCategory__item--anc > a.is-current:after {
    background: url("/static/jp/common/img/ico_bottomArrow01.png") 0 0 no-repeat;
    background-size: cover;
}

.sideCategory__item > a:hover {
    color: #003E9A;
}

.sideCategory__item > a:hover:after {
    background: url("/static/jp/common/img/ico_rightArrow01.png") 0 0 no-repeat;
    background-size: cover;
}

.sideCategory__item.sideCategory__item--anc > a:hover:after {
    background: url("/static/jp/common/img/ico_bottomArrow01.png") 0 0 no-repeat;
    background-size: cover;
}

.sideCategory__item > a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow01.png") 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sideCategory__item.sideCategory__item--anc > a:after {
    width: 10px;
    height: 6px;
    background: url("/static/jp/common/img/ico_bottomArrow05.png") 0 0 no-repeat;
    background-size: cover;
}

.sideCategoryFaq__btn > * {
    margin-top: 0;
}

.sideTagList {
    margin-top: 30px;
}

.sideTagList__item {
    display: inline-block;
    background: #f2f2f2;
    margin-right: 2px;
    margin-bottom: 8px;
    padding: 5px 8px 4px;
    font-size: 1.3rem;
    color: #333;
    border-radius: 2px;
}

.regulation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.regulation__right {
    margin-left: auto;
}

.select {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

.select:after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: calc(50% - 14px);
    right: 13px;
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url(/static/jp/common/img/ico_rightArrow01.svg) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
    transform: rotate(90deg);
}

.select__item {
    appearance: none;
    outline: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 3px 52px 3px 24px;
    position: relative;
    font-size: 1.6rem;
    line-height: 46px;
    border: none;
    border-radius: 50px;
    background-color: #E4E8F0;
    background-position: 100%;
    background-size: 300%;
    text-decoration: none;
    min-width: 195px;
    min-height: 52px;
    text-align: left;
    cursor: pointer;
}

.selectBtn > li {
    position: relative;
    display: inline-block;
    padding: 0 30px;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
}

.selectBtn > li:first-child:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 80%;
    background: #d0d0d0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.selectBtn > li:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 80%;
    background: #d0d0d0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.selectBtn > li > a {
    display: inline-block;
    color: #333;
}

.selectBtn > li > a:hover {
    color: #06C755;
}

.selectBtn > li > a.is-current {
    color: #06C755;
}

.caseSelect {
    display: flex;
    height: 100%;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

.caseSelect:after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 6px;
    background: url("/static/jp/common/img/ico_bottomArrow01.png") 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
}

.caseSelect__label {
    padding: 8px 28px 6px;
    margin: 0;
    background: none;
    border: 1px solid #d0d0d0;
    vertical-align: middle;
    outline: none;
    width: 100%;
    min-width: 150px;
    max-width: 285px;
    min-height: 40px;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    letter-spacing: 1px;
    border-radius: 30px;
    background: transparent;
    cursor: pointer;
    text-align: center;
}

.caseSelect__item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    background: none;
    border: none;
    vertical-align: middle;
    outline: none;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
    color: #333;
    display: block;
    letter-spacing: 1px;
    background: transparent;
    opacity: 0;
    padding: 0 10px;
}

.seminarSelect {
    display: flex;
    height: 100%;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

.seminarSelect:after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 6px;
    background: url("/static/jp/common/img/ico_bottomArrow01.png") 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
}

.seminarSelect__label {
    padding: 8px 28px 6px;
    margin: 0;
    background: none;
    border: 1px solid #d0d0d0;
    vertical-align: middle;
    outline: none;
    width: 100%;
    min-width: 150px;
    max-width: 285px;
    min-height: 40px;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    letter-spacing: 1px;
    border-radius: 30px;
    background: transparent;
    cursor: pointer;
    text-align: center;
}

.seminarSelect__item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    background: none;
    border: none;
    vertical-align: middle;
    outline: none;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
    color: #333;
    display: block;
    letter-spacing: 1px;
    background: transparent;
    opacity: 0;
    padding: 0 10px;
}

.sideRanking {
    counter-reset: rank;
}

.sideRanking__item {
    position: relative;
    margin-top: 10px;
}

.sideRanking__item:before {
    position: absolute;
    top: 0;
    left: -12px;
    content: counter(rank);
    counter-increment: rank;
    background: #1ebd92;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
    color: #fff;
    border-radius: 50%;
    z-index: 5;
}

.sideRanking__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #333;
}

.sideRanking__inner:hover {
    text-decoration: underline;
}

.sideRanking__inner:hover .sideRanking__thumbnail {
    opacity: 0.8;
}

.sideRanking__thumbnail {
    width: 120px;
    min-width: 120px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sideRanking__txt {
    width: 100%;
    padding-left: 20px;
    font-size: 1.4rem;
}

.newsList {
    margin-top: 60px;
    min-height: 700px;
    width: 100%;
}

.newsList__item {
    border-bottom: none;
    padding: 0;
}

.newsList__item + .newsList__item {
    margin-top: 35px;
}

.newsBox {
    display: flex;
    align-items: flex-start;
    width: 100%;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
}

.newsBox__heading {
    display: inline-block;
    width: auto;
    min-width: 17.5em;
    font-size: 1.6rem;
    vertical-align: top;
}

.newsBox__description {
    display: table-cell;
    font-size: 1.4rem;
    vertical-align: middle;
}

.newsBox__description > a {
    color: #333;
    display: inline-block;
    padding-left: 40px;
    position: relative;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    z-index: 2;
}

.newsBox__description > a:hover {
    text-decoration: underline;
}

.newsBox__headingIco {
    background-color: #ffffff;
    display: inline-block;
    color: #707070;
    margin: 0 0 0 20px;
    padding: 2px 16px 2px 16px;
    position: relative;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    width: auto;
    min-width: 10em;
    border-radius: 3px;
    text-align: center;
    background-color: transparent;
}

.newsBox__headingIco::before {
    content: "";
    position: absolute;
    top: calc(50% - 0.6em);
    left: 0px;
    width: 1px;
    height: 1.1em;
    background-color: #d0d0d0;
}

.newsBox__headingIco::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.6em);
    right: 0px;
    width: 1px;
    height: 1.1em;
    background-color: #d0d0d0;
}

.newsBox__headingIco--gray {
}

.newsBox__headingIco--yellow {
}

.newsBox__headingIco--black {
}

.recommendCase {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
}

.recommendCase__item {
    width: 630px;
    margin-left: 30px;
}

.recommendCase__item:first-child {
    margin-left: 0;
    width: 540px;
}

.casePannel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    background-color: transparent;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
}

.casePannel__inner {
    display: block;
    width: 100%;
    color: #333;
}

.casePannel__inner:hover .casePannel__img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.casePannel__imgArea {
    max-height: 360px;
    overflow: hidden;
}

.casePannel__img {
    display: block;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.casePannel__img:before {
    content: "";
    display: block;
    padding-top: 67%;
}

.casePannel__detail {
    padding: 25px 0 0 0;
}

.casePannel__detail > *:first-child {
    margin-top: 0;
}

.casePannel__tit {
    position: relative;
    display: table-cell;
    padding-left: 12px;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    text-align: left;
    vertical-align: middle;
}

.casePannel__tit:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow03.png") 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-62%);
    transform: translateY(-62%);
}

.casePannel__txt {
    margin-top: 10px;
    font-size: 1.6rem;
    text-align: left;
}

.casePannel2 {
    margin-top: 30px;
    border: 1px solid #e0e0e0;
    height: calc(50% - 15px);
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 2px -2px #f2f2f2;
    box-shadow: 0 4px 2px -2px #f2f2f2;
    overflow: hidden;
}

.casePannel2:first-of-type {
    margin-top: 0;
}

.casePannel2__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    color: #333;
}

.casePannel2__inner:hover .casePannel2__img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.casePannel2__imgArea {
    max-height: 360px;
    overflow: hidden;
}

.casePannel2__img {
    display: block;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.casePannel2__img:before {
    content: "";
    display: block;
    width: 360px;
    padding-top: 67%;
}

.casePannel2__detail {
    max-width: 270px;
    padding: 20px 30px;
}

.casePannel2__detail > *:first-child {
    margin-top: 0;
}

.casePannel2__tit {
    position: relative;
    padding-left: 12px;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    text-align: left;
}

.casePannel2__tit:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow03.png") 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-62%);
    transform: translateY(-62%);
}

.casePannel2__txt {
    margin-top: 10px;
    font-size: 1.6rem;
    text-align: left;
}

.pagePannel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #D6D9E0;
    border-radius: 6px;
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: all 0.4s ease;
}

.pagePannel.pagePannel--gray.case__study__page {
    background-color: #f9f9f9;
    padding-bottom: 10px;
}

.pagePannel__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: #333;
    font-family: "UD新ゴ M";
}

@media (hover: hover) {
    .pagePannel__inner:hover {
        text-decoration:none;
        box-shadow: 2px 2px 8px rgba(90,90,90,0.32);
    }

    .pagePannel__inner:hover .pagePannel__img {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    .pagePannel__inner:hover .pagePannel__tit {
        text-decoration: none;
    }

    .pagePannel__inner:hover .pagePannel__company {
        text-decoration: none;
    }

    .pagePannel__inner:hover .pagePannel__txt {
        text-decoration: none;
    }
}

.pagePannel__imgArea {
    position: relative;
    max-height: 250px;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

.pagePannel__img {
    display: block;
    max-height: 250px;
    background-image: url("/static/jp/common/img/bg_pannel01.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(1.001);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.pagePannel__img:before {
    content: "";
    display: block;
    padding-top: 67%;
}

.pagePannel__detail {
    flex: 1 0 0%;
    display: flex;
    flex-direction: column;
    padding: 20px 12px 25px;
}

.pagePannel__detail > *:first-child {
    margin-top: 0;
}

.pagePannel__info {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pagePannel__time {
    color: #404040;
    margin-top: 5px;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Volte Regular';
    text-align: left;
}

.pagePannel__time {
    color: #707070;
    font-family: "UD新ゴ M";
}

.pagePannel--seminar .pagePannel__time {
    color: #333333;
    font-size: 1.4rem;
    font-family: "UD新ゴ M";
}

.pagePannel__label,.pagePannel__label--close,.pagePannel__label--end,.pagePannel__label--coming {
    display: inline-block;
    align-self: flex-start;
    font-size: 1.1rem;
    line-height: 1;
    padding: 6px 12px;
    background: #003E9A;
    border-radius: 3px;
    color: #fff;
    text-align: center;
}

.pagePannel__label--close {
    background: #393939 !important;
    color: #fff !important;
}

.pagePannel__label--end {
    background: #E4E8F0 !important;
    color: #000048 !important;
}

.pagePannel__label--coming {
    border: 1px solid #003E9A;
    background: #ffffff !important;
    color: #003E9A !important;
    padding: 5px 12px;
}

.pagePannel__tit {
    position: relative;
    margin-top: 10px;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    text-align: left;
    vertical-align: middle;
}

.pagePannel__tit--seminar {
    margin-top: 5px;
    font-size: 1.6rem;
}

.pagePannel__tit--column {
    margin-top: 5px;
    font-size: 1.6rem;
}

.pagePannel__txt,.pagePannel__txt02 {
    color: #000;
    margin: 5px 0 10px;
    font-size: 1.4rem;
    font-family: "UD新ゴ DB";
    text-align: left;
}

.pagePannel--seminar .pagePannel__label {
    min-width: 80px;
    background: #febd15;
    color: #333;
}

.pagePannel--seminar .pagePannel__txt {
    font-size: 1.4rem;
    font-family: "UD新ゴ M";
    color: #333333;
}

div.pagePannel__txt {
    margin-top: 5px;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
    color: #999999;
}

.pagePannel__company {
    position: relative;
    color: #7F7F9B;
    padding-left: 0px;
    margin-top: 10px;
    font-size: 1.4rem;
    text-align: left;
    vertical-align: middle;
}

.pagePannel__company:before {
    display: none;
}

.pagePannel__date {
    position: relative;
    color: #7F7F9B;
    padding-left: 0px;
    margin-top: 10px;
    font-size: 1.4rem;
    font-family: 'Volte Regular';
    font-weight: 700;
    line-height: 1.6;
    text-align: left;
    vertical-align: middle;
}

.pagePannel__update {
    display: flex;
    align-items: center;
    gap: 0 5px;
    margin-top: 10px;
}

.pagePannel__update-label {
    margin-top: -1px;
    padding: 3px 7px;
    font-size: 1.2rem;
    line-height: 1;
    color: #7F7F9B;
    border: 1px solid #7F7F9B;
    border-radius: 6px;
}

.pagePannel__update-date {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Volte Regular';
}

.pagePannel .pagePannel__update-date {
    color: #7F7F9B;
    margin-bottom: -0.1em;
}

.pagePannel--seminar02 {
    border: none;
    max-width: 100%;
}

.pagePannel--seminar02 .pagePannel__inner:hover {
    box-shadow: none;
}

.columnList {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.columnList__item {
    width: calc((100% - 50px) / 3);
    vertical-align: top;
}

.selectList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
}

.selectList__item {
    padding-left: 40px;
    background: url("/static/jp/common/img/ico_and01.png") 13px 50% no-repeat;
    background-size: 12px 12px;
}

.selectList__item:first-child {
    padding-left: 0;
    background: none;
}

.relationList {
    margin-top: 60px;
}

.relationList .swiper-slide {
    width: calc(100% / 3 - 20px);
    margin-right: 30px;
}

.relationList .swiper-slide:last-child {
    margin-right: 0;
}

.relationList .swiper-button-next {
    display: none;
    background: #3ac6c8;
    width: 40px;
    height: 40px;
    right: 5px;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 15;
}

.relationList .swiper-button-next:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 6px;
    background: url("/static/jp/common/img/ico_slideArrow02.png") 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.relationList .swiper-button-next:hover:before {
    -webkit-transform: translate(-38%,-50%);
    transform: translate(-38%,-50%);
}

.relationList .swiper-button-prev {
    display: none;
    background: #3ac6c8;
    width: 40px;
    height: 40px;
    left: 5px;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 15;
}

.relationList .swiper-button-prev:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 6px;
    background: url("/static/jp/common/img/ico_slideArrow01.png") 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.relationList .swiper-button-prev:hover:before {
    -webkit-transform: translate(-62%,-50%);
    transform: translate(-62%,-50%);
}

@media screen and (max-width: 1023px) {
    .relationList {
        margin-top:30px;
    }

    .relationList .swiper-button-next {
        display: block;
    }

    .relationList .swiper-button-prev {
        display: block;
    }
}

.caseList {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.caseList__item {
    width: calc(100% / 3 - 21px);
    margin-left: 30px;
    vertical-align: top;
}

.caseList__item:nth-of-type(3n + 1) {
    margin-left: 0;
}

.caseList__item:nth-of-type(n + 4) {
    margin-top: 30px;
}

.seminarList {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.seminarList + .seminarList {
    margin-top: 30px !important;
}

.seminarList__item {
    width: calc(100% / 3 - 21px);
    margin-left: 30px;
    vertical-align: top;
}

.seminarList__item:nth-of-type(3n + 1) {
    margin-left: 0;
}

.seminarList__item:nth-of-type(n + 4) {
    margin-top: 30px;
}

.controlBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
    padding: 30px 50px;
    margin-top: 30px;
    border-radius: 5px;
}

.controlBox__item {
    margin-left: 30px;
}

.controlBox__item:first-child {
    margin-left: 0;
}

.controlBox__item > *:first-child {
    margin-top: 0;
}

.controlBox__tit {
    position: relative;
    display: inline-block;
    padding-left: 15px;
    margin-left: -15px;
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
    color: #333;
    text-align: left;
}

.controlBox__tit:after,.controlBox__tit:before {
    content: "";
    position: absolute;
    top: 0;
    width: 8px;
    height: 5px;
    border-radius: 8px;
}

.controlBox__tit:before {
    left: 0;
    background: rgba(33,181,203,0.8);
}

.controlBox__tit:after {
    left: 5px;
    background: rgba(30,189,146,0.8);
}

.controlBox__txt {
    margin-top: 10px;
    font-size: 1.6rem;
}

.controlBox__txt--bold {
    font-family: "UD新ゴ B";
}

.controlBox__link {
    margin-top: 10px;
}

.controlBox__link > a {
    position: relative;
    display: inline-block;
    color: #111111;
    font-family: "UD新ゴ B";
}

.controlBox__link > a:after {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-60%);
    transform: translateY(-60%);
}

.controlBox__linkArrow01 {
    padding-right: 20px;
    margin-right: 5px;
}

.controlBox__linkArrow01:after {
    content: "";
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow01.png") 0 0 no-repeat;
    background-size: cover;
}

.controlBox__linkBlank01 {
    padding-right: 20px;
    margin-right: 5px;
}

.controlBox__linkBlank01:after {
    content: "";
    display: inline-block;
    margin-left: 5px;
    width: 12px;
    height: 12px;
    background: url("/static/jp/common/img/ico_blank01.png") 0 0 no-repeat;
    background-size: contain;
}

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

.faqBox__tit {
    position: relative;
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 50px;
    padding-left: 70px;
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
}

.faqBox__tit:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 50px;
    background: url("/static/jp/faq/img/ico_faq01.png") 0 0 no-repeat;
    background-size: cover;
}

.faqBox__detail {
    position: relative;
    margin-top: 40px;
    padding-left: 70px;
}

.faqBox__detail:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 50px;
    background: url("/static/jp/faq/img/ico_faq02.png") 0 0 no-repeat;
    background-size: cover;
}

.faqBox__detail > *:first-child {
    margin-top: 0;
}

.faqBox__txt {
    margin-top: 30px;
}

.faqBox__txt--bold {
    font-family: "UD新ゴ B";
}

.faqList {
    margin-top: 30px;
}

.faqList__item {
    border-bottom: 1px solid #d0d0d0;
}

.faqList__item:first-child {
    border-top: 1px solid #d0d0d0;
}

.faqList__item a {
    position: relative;
    display: block;
    padding: 20px 20px 20px 40px;
    font-family: "UD新ゴ B";
    color: #333;
}

.faqList__item a:before {
    content: "";
    position: absolute;
    top: 22px;
    left: 5px;
    width: 24px;
    height: 25px;
    background: url("/static/jp/faq/img/ico_faq01.png") 0 0 no-repeat;
    background-size: cover;
}

.faqList__item a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow01.png") 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.faqList__item:hover {
    text-decoration: underline;
}

.faqMoreBtn {
    margin-top: 30px;
    text-align: center;
}

.faqMoreBtn a {
    display: inline-block;
    border: 1px solid #06C755;
    background: #fff;
    padding: 10px 20px 9px;
    min-width: 200px;
    font-size: 1.3rem;
    font-family: "UD新ゴ B";
    color: #06C755;
    border-radius: 50px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.faqMoreBtn a span {
    display: block;
}

.faqMoreBtn a span:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    margin-right: -10px;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow01.png") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.faqMoreBtn a:hover {
    background: #06C755;
    color: #fff;
}

.faqMoreBtn a:hover span:after {
    background-image: url("/static/jp/common/img/ico_rightArrow02.png");
}

.articleCarousel {
    position: relative;
}

.articleCarousel__inner {
    position: relative;
    overflow: hidden;
    display: block;
    color: #fff;
}

.articleCarousel__inner:hover .articleCarousel__img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.articleCarousel__img {
    padding-top: 80%;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.articleCarousel__img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0 -13em 8em -8em rgba(34,56,76,0.6) inset;
    box-shadow: 0 -13em 8em -8em rgba(34,56,76,0.6) inset;
    z-index: 6;
}

.articleCarousel__txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    line-height: 1.4;
    font-family: "UD新ゴ B";
    z-index: 7;
}

.articleCarousel .swiper-button-prev,.articleCarousel .swiper-button-next {
    display: block;
    background: rgba(64,64,64,0.65);
    width: 50px;
    height: 89px;
    top: 50%;
    left: 5%;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 100px;
    z-index: 15;
}

.articleCarousel .swiper-button-prev {
    left: 30px;
}

.articleCarousel .swiper-button-prev:before,.articleCarousel .swiper-button-next:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 4px);
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_leftArrow02.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.articleCarousel .swiper-button-next {
    left: auto;
    right: 30px;
}

.articleCarousel .swiper-button-next:before {
    left: calc(50% - 2px);
    background-image: url(/static/jp/common/img/ico_rightArrow02.png);
}

.articleCarousel .swiper-pagination-bullets {
    bottom: 0;
    width: 100%;
}

.articleCarousel .swiper-pagination-bullets > .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin-inline:16px;}

.articleCarousel .swiper-pagination-bullet-active {
    background-color: #000048;
}

.articleCarousel .swiper-container {
    padding-bottom: 50px;
}

.articleCarousel .js-articleCarousel--column {
    overflow: visible;
}

@media screen and (max-width: 1023px) {
    .articleCarousel .swiper-pagination-bullets > .swiper-pagination-bullet {
        margin-inline:11px;
    }

    .articleCarousel .swiper-container {
        padding-bottom: 45px;
    }
}

.seminarMainArea {
    background: #F7F7F7;
}

.seminarMainArea__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    height: 100%;
    overflow: hidden;
}

.seminarMainArea__imgArea {
    width: 510px;
    overflow: hidden;
    border-radius: 6px;
}

.seminarMainArea__img {
    display: block;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
}

.seminarMainArea__img:before {
    content: "";
    display: block;
    padding-top: 67%;
}

.seminarMainArea__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 730px;
    padding: 0 0 0 30px;
}

.seminarMainArea__detail > *:first-child {
    margin-top: 0;
}

.seminarMainArea__detail > *:last-child {
    padding-top: 20px;
    margin-top: auto;
}

.seminarMainArea__label {
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1;
    padding: 6px 12px;
    background: #003E9A;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    float: none;
    border-radius: 3px;
}

.seminarMainArea__label--close {
    background: #393939 !important;
    color: #ffffff !important;
}

.seminarMainArea__label--end {
    background: #E4E8F0 !important;
    color: #000048 !important;
}

.seminarMainArea__label--coming {
    border: 1px solid #003E9A;
    padding: 5px 12px;
    background: #ffffff !important;
    color: #003E9A !important;
}

.seminarMainArea__tag {
    display: flex;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.seminarMainArea__tit {
    margin-top: 12px;
    font-size: 3rem;
    font-family: "UD新ゴ B";
}

.seminarMainArea__data {
    margin-top: 50px;
    font-size: 1.4rem;
}

.seminarMainArea__data dt {
    clear: both;
    float: left;
    font-family: "UD新ゴ B";
}

.seminarMainArea__data dd {
    margin-bottom: 5px;
    overflow: hidden;
}

.seminarMainArea__data dd:last-child {
    margin-bottom: 0;
}

.seminarMainArea__tagArea {
    font-size: 0;
}

.seminarMainArea__tags {
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
    font-size: 1.4rem;
}

.newsMainArea {
    background: #f7f7f7;
}

.newsMainArea__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
}

.newsMainArea__inner > *:first-child {
    margin-top: 0;
}

.newsMainArea__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 0;
}

.newsMainArea__label {
    margin-right: 10px;
}

.newsMainArea__time {
    margin-right: 15px;
    color: #7F7F9B;
    font-size: 1.6rem;
    font-family: 'Volte Regular';
    font-weight: 700;
}

.newsMainArea__tit {
    margin-top: 20px;
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
    text-align: center;
}

.newsMainArea .shareList {
    margin-top: 0;
}

.manualMainArea {
    margin-top: 15px;
    background: #eff4f9;
}

.manualMainArea__inner {
    max-width: 1020px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 15px 0;
    min-height: 160px;
    overflow: hidden;
}

.manualMainArea__info {
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
    color: #ffffff;
    z-index: 1;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    padding-inline:70px;}

.manualMainArea__infoInner {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin-inline:auto;}

.manualMainArea__tit {
    margin: 10px 0 15px;
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
    text-align: center;
}

.columnMainArea {
    background: #f5f5f5;
}

.columnMainArea__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    overflow: hidden;
}

.columnMainArea__imgArea {
    width: 510px;
    overflow: hidden;
}

.columnMainArea__img {
    display: block;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 6px;
}

.columnMainArea__img:before {
    content: "";
    display: block;
    width: 360px;
    padding-top: 67%;
}

.columnMainArea__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    max-width: 690px;
    width: 100%;
    padding: 0 0 0 30px;
}

.columnMainArea__detail > *:first-child {
    margin-top: 0;
}

.columnMainArea__detail > *:last-child {
    margin-top: auto;
}

.columnMainArea__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.columnMainArea__label {
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1;
    padding: 6px 18px 5px 18px;
    background: #06C755;
    border-radius: 0px;
    color: #fff;
    font-family: "UD新ゴ B";
    text-align: center;
}

.columnMainArea__info .pagePannel__update-label {
    margin-right: 8px;
}

.columnMainArea__time {
    margin-left: 15px;
    font-size: 1.4rem;
    font-family: 'Volte Regular';
    font-weight: bold;
}

.columnMainArea__info .columnMainArea__time {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
}

.columnMainArea__info .columnMainArea__time-date {
    font-family: 'Volte Regular';
    font-weight: bold;
    vertical-align: 1px;
}

.columnMainArea__tit {
    margin-top: 20px;
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
}

.columnMainArea__titSubArea {
    margin: 30px auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.columnMainArea__titSubArea--firstTit {
    margin-top: 0;
}

.columnMainArea__titSub {
    position: relative;
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
    color: #333;
    text-align: left;
}

.columnMainArea__titSub:before {
    content: "";
    position: absolute;
    top: 5px;
    width: 6px;
    height: 23px;
    border-radius: 8px;
    background-color: #06C755;
}

.columnMainArea__titSub:after {
    left: 5px;
    background: rgba(30,189,146,0.8);
}

.columnMainArea__titSubInner {
    margin-left: 16px;
}

.partnerArea {
    background: #f7f7f7;
}

.partnerArea__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    overflow: hidden;
}

.partnerArea__imgArea {
    width: 510px;
    overflow: hidden;
}

.partnerArea__img {
    display: block;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
}

.partnerArea__img:before {
    content: "";
    display: block;
    width: 360px;
    padding-top: 67%;
}

.partnerArea__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    max-width: 730px;
    width: 100%;
    padding: 0 0 0 30px;
}

.partnerArea__detail > *:first-child {
    margin-top: 0;
}

.partnerArea__detail > *:nth-last-child(2) {
    margin-bottom: auto;
}

.partnerArea__titArea {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 15px;
    color: #333;
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
    text-align: left;
    margin-bottom: 15px;
}

.partnerArea__tit {
    position: relative;
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
    color: #333;
    text-align: left;
}

.partnerArea__tit:before {
    content: "";
    position: absolute;
    top: 5px;
    width: 6px;
    height: 23px;
    border-radius: 8px;
    background-color: #000048;
}

.partnerArea__titInner {
    margin-left: 16px;
}

.partnerArea__logo {
    border: 1px solid #e0e0e0;
    background: #fff;
    width: 140px;
    min-width: 140px;
    height: 70px;
    text-align: center;
}

.partnerArea__logo > img {
    height: 100%;
}

.partnerArea__labelBox {
    margin-top: 3px;
}

.partnerArea__label {
    display: inline-block;
    background: #ffffff;
    border: 1px solid #c2c2c2;
    border-radius: 4px;
    margin-top: 12px;
    margin-right: 5px;
    padding: 5px 8px 3px 8px;
    color: #06C755;
    font-size: 1.2rem;
    font-family: "UD新ゴ B";
    text-align: center;
}

.partnerArea__label:last-child {
    margin-right: 0;
}

.partnerArea__txt {
    margin-top: 15px;
    font-size: 1.4rem;
}

.partnerArea__companyLink {
    margin-top: 10px;
    font-size: 1.4rem;
}

.caseMainArea {
    background: #F7F7F7;
}

.caseMainArea__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    height: 100%;
    overflow: hidden;
}

.caseMainArea__imgArea {
    width: 510px;
    overflow: hidden;
    border-radius: 6px;
}

.caseMainArea__img {
    display: block;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
}

.caseMainArea__img:before {
    content: "";
    display: block;
    width: 360px;
    padding-top: 67%;
}

.caseMainArea__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    max-width: 690px;
    width: 100%;
    padding: 0 0 0 30px;
}

.caseMainArea__detail > *:first-child {
    margin-top: 0;
}

.caseMainArea__detail > *:last-child {
    margin-top: auto;
    padding-top: 20px;
}

.caseMainArea__tag {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.caseMainArea__tit {
    font-size: 3rem;
    font-family: "UD新ゴ B";
}

.caseMainArea__titSubArea {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.caseMainArea__titSub {
    position: relative;
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
    color: #333;
    text-align: left;
}

.caseMainArea__titSub:before {
    content: "";
    position: absolute;
    top: 6px;
    width: 6px;
    height: 23px;
    border-radius: 8px;
    background-color: #000048;
}

.caseMainArea__titSub:after {
    left: 5px;
    background: rgba(30,189,146,0.8);
}

.caseMainArea__titSubInner {
    margin-left: 16px;
}

.caseMainArea__date {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Volte Regular';
}

.caseMainArea__logo {
    border: 1px solid #e0e0e0;
    background: #fff;
    width: 140px;
    min-width: 140px;
    height: 70px;
    padding: 10px;
    text-align: center;
}

.caseMainArea__logo > img {
    height: 100%;
}

.caseMainArea__txt {
    font-size: 1.4rem;
}

.caseMainArea__detail .pageTxtLink {
    margin-top: 15px;
}

.caseMainArea__tagArea {
    font-size: 0;
}

.caseMainArea__tags {
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
    font-size: 1.4rem;
}

.process {
    position: relative;
    margin-top: 40px;
    border: 0px solid #cccccc;
    border-radius: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #ffffff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.process::before {
    display: none;
    content: "";
    width: 29px;
    height: 17px;
    position: absolute;
    background: url(/static/jp/common/img/ico_bottomArrow06.png) no-repeat;
    z-index: 1;
    top: -36px;
    left: 52px;
}

.process--goal::before {
    content: none;
}

.process--result {
    margin-bottom: 60px;
}

.process__tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 27px;
    padding: 6px 24px 6px 24px;
    background: #06C755;
    width: auto;
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
    color: #fff;
    border-radius: 5px;
}

.process__detail {
    margin: 10px 0;
    border-left: 1px solid #e5e5e5;
    padding: 12px 24px;
    width: calc(100% - 146px);
}

.process__detail > *:first-child {
    margin-top: 0;
}

.example {
    background: #F2F4F8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    margin-top: 60px;
    padding: 60px;
}

.example__tit {
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
    text-align: center;
    margin-top: -8px
}

.example__detail {
    width: calc(100% - 259px);
}

.example__img {
    width: 200px;
}

.example__box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 51px;
    background: #fff;
    padding: 45px 40px 35px 40px;
    border-radius: 5px;
}

.example__boxTit {
    position: absolute;
    top: -20px;
    left: 50%;
    background: #06C755;
    padding: 6px 20px 5px 25px;
    width: 75%;
    font-size: 1.8rem;
    font-family: "UD新ゴ B";
    color: #fff;
    text-align: center;
    border-radius: 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    min-height: 40px;
    max-width: 414px;
    letter-spacing: 0.04rem
}

.example__txt {
    letter-spacing: 0.04rem;
    line-height: 1.72;
    margin-top: -5px
}

.example__boxDetail {
    width: calc(100% - 144px);
    font-size: 1.4rem
}

.example__boxImg {
    border: 1px solid #e0e0e0;
    width: 110px;
}

.example__link {
    margin-top: 8px;
    font-family: "UD新ゴ B";
    font-size: 1.6rem
}

.example__link > a {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    margin-right: 39px;
    color: #333;
    font-family: "UD新ゴ B";
}

.example__link > a:after {
    content: "";
    position: absolute;
    top: 51%;
    right: 0;
    -webkit-transform: translateY(-60%);
    transform: translateY(-60%);
    width: 7px;
    height: 13px;
    background: url("/static/jp/common/img/ico_rightArrow04.png") 0 0 no-repeat;
    background-size: cover;
}

.example__btn {
    display: none;
}

.example__addFriends {
    display: none;
}

.partnerPannel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 2px -2px #f2f2f2;
    box-shadow: 0 4px 2px -2px #f2f2f2;
    overflow: hidden;
}

.partnerPannel__inner {
    display: block;
    width: 100%;
    color: #333;
}

.partnerPannel__detail {
    padding: 20px;
    text-align: center;
}

.partnerPannel__detail > *:first-child {
    margin-top: 0;
}

.partnerPannel__tit {
    position: relative;
    margin-top: 10px;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    vertical-align: middle;
}

.partnerPannel__txt {
    margin-top: 10px;
    font-size: 1.4rem;
}

.partnerPannel__btn {
    margin-top: 20px;
    text-align: center;
}

.partnerPannel__btn a {
    display: inline-block;
    border: 1px solid #d0d0d0;
    background: #fff;
    padding: 10px 30px 9px;
    min-width: 200px;
    font-size: 1.3rem;
    font-family: "UD新ゴ B";
    color: #333;
    border-radius: 50px;
    text-align: center;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.partnerPannel__btn a:hover {
    color: #06C755;
}

.partnerPannel__icoArrow01:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    margin-right: -10px;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow01.png") 0 0 no-repeat;
    background-size: cover;
    vertical-align: baseline;
}

.partnerPannel__icoBlank01:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    margin-right: -10px;
    width: 12px;
    height: 13px;
    background: url("/static/jp/common/img/ico_blank01.png") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.researchPannel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 2px -2px #f2f2f2;
    box-shadow: 0 4px 2px -2px #f2f2f2;
    overflow: hidden;
}

.researchPannel__inner {
    display: block;
    width: 100%;
    color: #333;
    font-family: "UD新ゴ M";
}

.researchPannel__inner:hover .researchPannel__img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.researchPannel__imgArea {
    max-height: 250px;
    overflow: hidden;
}

.researchPannel__img {
    display: block;
    background-image: url("/static/jp/common/img/bg_pannel01.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.researchPannel__img:before {
    content: "";
    display: block;
    padding-top: 67%;
}

.researchPannel__detail {
    padding: 20px;
}

.researchPannel__detail > *:first-child {
    margin-top: 0;
}

.researchPannel__info {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.researchPannel__time {
    font-size: 1.4rem;
    color: #999999;
}

.researchPannel__label {
    display: inline-block;
    min-width: 50px;
    font-size: 1.3rem;
    padding: 2px 5px;
    border-radius: 2px;
    color: #fff;
    background: #febd15;
    color: #333;
    font-family: "UD新ゴ B";
    text-align: center;
}

.researchPannel__tit {
    position: relative;
    margin-top: 10px;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    text-align: left;
    vertical-align: middle;
}

.researchPannel__txt {
    margin-top: 10px;
    font-size: 1.4rem;
    text-align: left;
}

.servicePolicy {
    text-align: center;
}

.servicePolicy__tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
}

.servicePolicy__titInner {
    display: inline-block;
    padding: 0 5px;
    border-bottom: 3px solid #1ebd92;
}

.servicePolicy__ico {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 30px;
    padding-top: 150px;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 120px 120px;
}

.servicePolicy__ico--type01 {
    background-image: url("/static/jp/service/line-sales-promotion/img/ico_index01.png");
}

.servicePolicy__ico--type02 {
    background-image: url("/static/jp/service/line-sales-promotion/img/ico_index02.png");
}

.servicePolicy__ico--type03 {
    background-image: url("/static/jp/service/line-sales-promotion/img/ico_index03.png");
}

.servicePolicy__ico--type04 {
    background-image: url("/static/jp/service/line-sales-promotion/img/ico_index07.png");
}

.servicePolicy__ico--typeNone {
    padding-top: 0;
}

.servicePolicy__list {
    margin-top: 10px;
    display: inline-block;
    max-width: 290px;
}

.servicePolicy__listItem {
    position: relative;
    margin-top: 5px;
    padding-left: 1em;
    text-align: left;
}

.servicePolicy__listItem:first-child {
    margin-top: 0;
}

.servicePolicy__listItem:before {
    content: "ãƒ»";
    position: absolute;
    left: 0;
}

.voiceTxt {
    margin-top: 30px;
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
    text-align: center;
}

.voiceTxt__inner {
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.voiceTxt__inner:before {
    content: "";
    background: url("/static/jp/common/img/img_voice_left01.png") no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.voiceTxt__inner:after {
    content: "";
    background: url("/static/jp/common/img/img_voice_right01.png") no-repeat center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.researchCourseFuction {
    width: 95%;
    margin: 60px auto 0;
    border: 1px solid #1ebd92;
    border-radius: 3px;
    overflow: hidden;
}

.researchCourseFuction__inner {
    padding: 30px;
}

.researchCourseFuction__tit {
    margin-bottom: 35px;
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
    text-align: center;
}

.researchCourseFuction__titInner {
    display: inline-block;
    padding: 0 5px;
    border-bottom: 3px solid #1ebd92;
}

.researchCourseFuction__txt {
    margin-top: 15px;
}

.researchCourseFuction__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.researchCourseFuction__item dt {
    margin-top: 15px;
    width: 100px;
    padding: 2px 0.5em;
    background: #1ebd92;
    font-family: "UD新ゴ B";
    color: #fff;
    text-align: center;
    border-radius: 5px;
}

.researchCourseFuction__item dd {
    margin-top: 15px;
    padding: 2px 0;
    margin-left: 20px;
    width: calc(100% - 120px);
}

.researchCourseFuction__price {
    background: #eff4f9;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.researchCourseFuction__priceTxt {
    color: #1ebd92;
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
}

.researchCourseFuction__priceTxt span {
    font-size: 1.6rem;
}

.researchCourseFuction__notes > li {
    position: relative;
    font-size: 1.4rem;
    padding-left: 1.2em;
}

.researchCourseFuction__notes > li:before {
    content: "â€»";
    position: absolute;
    left: 0;
}

.researchCourseBtn {
    margin-top: 30px;
    text-align: center;
}

.researchCourseBtn + .researchCourseBtn {
    margin-top: 20px;
}

.researchCourseBtn a {
    position: relative;
    display: inline-block;
    background: #fff;
    border: 2px solid #404040;
    padding: 9px 35px 8px 35px;
    color: #111;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 30px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
    width: 360px;
}

.researchCourseBtn a:hover {
    color: #06C755;
    border-color: #d0d0d0;
    text-decoration: none;
}

.researchCourseBtn__aroow01:after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 17px;
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_rightArrow06.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.researchCourseBtn a:hover .researchCourseBtn__aroow01:after {
    background-image: url(/static/jp/common/img/ico_rightArrow01.png);
}

.conversionBtn {
    margin-top: 30px;
    text-align: center;
}

.conversionBtn > a {
    display: inline-block;
    padding: 15px 30px;
    min-width: 360px;
    background: #1ebd92;
    border: 1px solid #1ebd92;
    color: #fff;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 30px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.conversionBtn > a:hover {
    background: #fff;
    color: #1ebd92;
    text-decoration: none;
}

.conversionBtn > a:hover .conversionBtn__arrow01:after {
    background-image: url("/static/jp/common/img/ico_rightArrow01.png");
}

.conversionBtn__arrow01:after {
    content: "";
    display: inline-block;
    margin-left: 15px;
    margin-right: -15px;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow02.png") 0 0 no-repeat;
    background-size: cover;
    vertical-align: baseline;
}

.researchContact {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.researchContact__btn {
    margin-left: 30px;
}

.researchContact__btn > a {
    display: block;
    border: 1px solid #1ebd92;
    padding: 15px 30px;
    min-width: 360px;
    background: #1ebd92;
    color: #fff;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 30px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.researchContact__btn > a:hover {
    background: #fff;
    color: #1ebd92;
    text-decoration: none;
}

.researchContact__btn > a > span:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    margin-right: -10px;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow02.png") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.researchContact__btn > a:hover > span:after {
    background-image: url("/static/jp/common/img/ico_rightArrow01.png");
}

.researchContact__btn:first-child {
    margin-left: 0;
}

.confirm_btn {
    margin-top: 30px;
    text-align: center;
}

.confirm_btn > a {
    display: inline-block;
    padding: 8px 30px 7px;
    min-width: 260px;
    background: #707070;
    border: 1px solid #707070;
    color: #fff;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 30px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.confirm_btn > a:hover {
    background: #fff;
    color: #1ebd92;
    text-decoration: none;
}

.confirm_btn > a:hover .confirm_btn__arrow01:after {
    background-image: url("/static/jp/common/img/ico_rightArrow01.png");
}

.confirm_btn__arrow01:after {
    content: "";
    display: inline-block;
    margin-left: 15px;
    margin-right: -15px;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow02.png") 0 0 no-repeat;
    background-size: cover;
    vertical-align: baseline;
}

.information {
    margin-top: 60px;
}

.information > *:first-child {
    margin-top: 0;
}

.information__bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.information__bnrItem {
    position: relative;
    margin-left: 40px;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 580px;
    width: 100%;
    overflow: hidden;
}

.information__bnrItem--seminar:after {
    content: "";
    background: url("/static/jp/common/img/bg_infomation01.png") 0 0 no-repeat;
    background-size: cover;
}

.information__bnrItem--download:after {
    content: "";
    background: url("/static/jp/common/img/bg_infomation02.png") 0 0 no-repeat;
    background-size: cover;
}

.information__bnrItem:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.information__bnrItem:hover:after {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.information__bnrItem a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    font-size: 3.6rem;
    font-family: "UD新ゴ B";
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 11.5% 10%;
    width: 100%;
    height: 100%;
    background: url("/static/jp/common/img/ico_arrow01.png") 95% 80% no-repeat;
    background-size: 30px 11px;
    z-index: 2;
}

.information__bnrItem:first-child {
    margin-left: 0;
}

.information__bnrTxt {
    padding-left: 15px;
    font-size: 1.6rem;
}

.information__bnrIco {
    position: relative;
    padding-left: 15px;
}

.information__bnrIco:after,.information__bnrIco:before {
    content: "";
    position: absolute;
    top: 0;
    width: 8px;
    height: 5px;
    border-radius: 8px;
}

.information__bnrIco:before {
    left: 0;
    background: rgba(33,181,203,0.8);
}

.information__bnrIco:after {
    left: 5px;
    background: rgba(30,189,146,0.8);
}

.information__list {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.information__listBox {
    margin-left: 30px;
    padding: 30px 2%;
    width: calc(100% / 3 - 20px);
    background: #fff;
    text-align: center;
    border-radius: 5px;
}

.information__listBox:first-of-type {
    margin-left: 0;
}

.information__ico {
    position: relative;
    display: block;
    padding-top: 143px;
}

.information__ico:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 126px;
    height: 126px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.information__ico--type01:before {
    background: url("/static/jp/common/img/ico_info01.png") 0 0 no-repeat;
}

.information__ico--type02:before {
    background: url("/static/jp/common/img/ico_info02.png") 0 0 no-repeat;
}

.information__ico--type03:before {
    background: url("/static/jp/common/img/ico_info03.png") 0 0 no-repeat;
}

.information__tit {
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
}

.information__txt {
    margin-top: 15px;
}

.information__btn {
    margin-top: 20px;
    text-align: center;
}

.information__btn > a {
    position: relative;
    display: inline-block;
    background: #fff;
    border: 1px solid #d0d0d0;
    padding: 10px 15%;
    color: #111;
    font-size: 1.3rem;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 30px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.information__btn > a:hover {
    color: #06c405;
}

.information__btn > a > span:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow01.png") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.information__btn > a.information__icoBlank01 > span:after {
    margin-left: 5px;
    width: 12px;
    height: 12px;
    background: url("/static/jp/common/img/ico_blank01.png") 0 0 no-repeat;
    background-size: contain;
}

.partnerTable {
    margin-top: 30px;
    width: 100%;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.partnerTable td,.partnerTable th {
    background: #fff;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px;
    font-size: 1.4rem;
    text-align: left;
    font-family: "UD新ゴ M";
}

.partnerTable thead th {
    background: #b3b3b3;
    color: #fff;
    font-family: "UD新ゴ B";
}

.partnerTable__middle {
    vertical-align: middle !important;
}

.partnerTable__center {
    text-align: center !important;
}

.partnerTable__right {
    text-align: right !important;
}

.priceTable {
    position: relative;
    margin-top: 30px;
}

.priceTable__item {
    width: 100%;
}

.priceTable__item thead th {
    border-top: 1px solid #e0e0e0;
}

.priceTable__item td,.priceTable__item th {
    background: #fff;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 5px;
    width: 72px;
    font-size: 1.2rem;
    text-align: center;
}

.priceTable__item th {
    background: #b3b3b3;
    color: #fff;
}

.priceTable__item--fixed {
    border-left: 1px solid #e0e0e0;
}

.priceTable__notes {
    margin-top: 10px;
    font-size: 1.4rem;
}

.priceTable__notes--right {
    float: right;
}

.seminarTable {
    margin: 30px 0 60px;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    width: 100%;
    table-layout: fixed;
}

.seminarTable td,.seminarTable th {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
}

.seminarTable th {
    background: #f2f2f2;
    width: 180px;
    font-family: "UD新ゴ B";
    text-align: center;
    vertical-align: middle;
}

.seminarTable__day {
    display: inline-block;
    margin-right: 1em;
}

.seminarTable__time {
    display: inline-block;
}

.seminarTable__startTime {
    display: block;
}

.seminarTable__startPeriod {
    display: inline-block;
}

.seminarTable__endPeriod {
    display: inline-block;
}

.seminarTable__map {
    position: relative;
    margin-top: 20px;
    padding: 200px 0;
    height: 0;
    overflow: hidden;
}

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

.manualLinkList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.manualLinkList__btn {
    width: calc(25% - 15px);
    margin-left: 20px;
}

.manualLinkList__btn:nth-of-type(4n + 1) {
    margin-left: 0;
}

.manualLinkList__btn:nth-of-type(n + 5) {
    margin-top: 20px;
}

.manualLinkList__btn > a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f2f2f2;
    padding: 12px 25px 11px;
    height: 100%;
    color: #333;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 150px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.manualLinkList__btn > a:after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 6px;
    background: url("/static/jp/common/img/ico_bottomArrow01.png") 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
}

.manualLinkList__btn > a:hover {
    color: #06C755;
}

.manualBox {
    margin-top: 60px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.manualBox__tit {
    display: block;
    background: #06C755;
    padding: 15px 15px 12px;
    font-size: 2.6rem;
    font-family: "UD新ゴ B";
    color: #fff;
    text-align: center;
}

.manualBox__inner {
    padding: 40px 30px;
}

.manualBox__inner > *:first-child {
    margin-top: 0;
}

.downloadLinkList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.downloadLinkList__btn {
    width: calc(25% - 15px);
    margin-left: 20px;
}

.downloadLinkList__btn:nth-of-type(4n + 1) {
    margin-left: 0;
}

.downloadLinkList__btn:nth-of-type(n + 5) {
    margin-top: 20px;
}

.downloadLinkList__btn > a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f2f2f2;
    padding: 12px 25px 11px;
    height: 100%;
    color: #333;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 150px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.downloadLinkList__btn > a:after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 6px;
    background: url("/static/jp/common/img/ico_bottomArrow01.png") 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
}

.downloadLinkList__btn > a:hover {
    color: #06C755;
}

.downloadBox {
    margin-top: 60px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.downloadBox__tit {
    display: block;
    background: #06C755;
    padding: 15px 15px 12px;
    font-size: 2.6rem;
    font-family: "UD新ゴ B";
    color: #fff;
    text-align: center;
    display: block;
}

.downloadBox__inner {
    padding: 40px 30px;
}

.downloadBox__inner > *:first-child {
    margin-top: 0;
}

.modal {
    display: none;
}

.modalContents {
    position: relative;
    margin: auto;
    max-width: 700px;
    background: #fff;
    padding: 40px 35px;
    border-radius: 4px;
}

.modalPartnerWord__tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modalPartnerWord__titInner {
    display: block;
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
    color: #21b5ca;
    background: -webkit-linear-gradient(0deg,#21b5ca,#1ebd92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modalPartnerWord__titNum {
    display: block;
    margin-right: 30px;
    line-height: 1;
    font-size: 8.2rem;
    font-family: "UD新ゴ B";
    font-family: Arial;
    color: #21b5ca;
    background: -webkit-linear-gradient(0deg,#21b5ca,#1ebd92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1023px) {
    .topicpath {
        display:none;
    }

    .topicpath--bottom {
        display: block;
        padding-inline:20px;background-color: #F5F5F5;
        overflow-x: hidden;
    }

    .topicpath--bottom .topicpath__list {
        display: block;
        padding-block:12px 13px;white-space: nowrap;
        overflow-x: scroll;
    }

    .topicpath--bottom .topicpath__list > li {
        color: #404040;
    }

    .topicpath--bottom .topicpath__list > li > a {
        color: #404040;
    }

    .contents {
        padding: 0 20px;
    }

    .contents--gray--beforeFooterLink {
        margin-bottom: 0px;
    }

    .contents--research {
        background-size: 81px 85px,81px 85px,131px 137px,131px 137px;
    }

    .contents--adsDistribution {
        padding: 0;
    }

    .contents__inner {
        max-width: 800px;
        margin: auto;
        padding: 30px 0;
    }

    .contents--confirm .contents__inner {
        padding: 48px 0 45px 0;
    }

    .contents__inner--confirm {
        padding: 30px 0;
    }

    .contents__main {
        float: none;
        width: 100%;
        max-width: 100%;
    }

    .contents__inner--topMenu .contents__main {
        float: none;
        width: 100%;
        max-width: 100%;
    }

    .contents__inner--topMenu .contents__main > *:first-child {
        margin-top: 70px;
    }

    .contents--topMenu .contents__main--media {
        padding: 0 20px;
    }

    .contents__side {
        float: none;
        margin-top: 40px;
        width: 100%;
        max-width: inherit;
        min-width: inherit;
    }

    .contents__side--spTopsideCategory .sideCategory {
        background: #707070;
    }

    .contents__main + .contents__side {
        margin-top: 90px;
    }

    .contents__inner--topMenu .contents__main + .contents__side {
        margin-top: 0;
    }

    .contents--gradation {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .pageMoreBtn {
        margin-top: 60px;
        margin-bottom: 20px;
    }

    .pageMoreBtn a {
        min-width: 220px;
        font-size: 1.4rem;
        padding: 9px 37px 8px;
    }

    .bottomBtn {
        margin-top: 40px;
    }

    .mainH1Area {
        background: none;
        height: inherit;
        padding: 0 15px 15px;
        border-bottom: 1px solid #f2f2f2;
    }

    .mainH1Area:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 16vw 16vw 0 0;
        border-color: #21b4cb transparent transparent transparent;
    }

    .mainH1Area:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 16vw 16vw 0;
        border-color: transparent #1ebd93 transparent transparent;
    }

    .mainH1Area__tit {
        margin-top: 25px;
    }

    .mainH1Area__titInner {
        margin: 0 auto 20px;
    }

    .mainH1Area__tit img {
        width: 50%;
        min-width: 200px;
    }

    .mainH1Area__txt {
        text-align: left;
    }

    .mainH1Area__txt > br {
        display: none;
    }

    .pageH1Area--default {
        background-image: url("/static/jp/common/img/bg_title04.png");
        background-size: cover;
        padding: 40px;
        height: inherit;
        display: flex;
        align-items: center;
    }

    .pageH1Area--default .pageH1Area__lead--research {
        font-size: 1.4rem;
    }

    .pageH1Area--default--news {
        padding: 40px 20px;
    }

    .pageH1Area__bgTxt {
        font-size: 4.0rem;
        line-height: 1.2;
    }

    .pageH1Area__lead {
        font-size: 1.2rem;
    }

    .pageH2Area {
        margin: 30px auto 50px;
    }

    .pageH2Area.pageH2Area--forTplPage {
        margin: 60px auto 50px;
    }

    .pageH2Area--mtMedium {
        margin-top: 50px;
    }

    .pageH2Area--tit01 {
        position: relative;
        display: block;
        align-items: center;
        width: auto;
        font-size: 2.2rem;
        max-width: 277px
    }

    .pageH2Area--tit01:before {
        background-color: #707070;
        display: block;
        width: 16px;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .pageH2Area--tit01:after {
        background-color: #707070;
        display: block;
        width: 16px;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .pageH2Area--tit01--medium {
        padding: 0;
    }

    div[class*="layoutBox--type"] .pageH2Area .pageTxtLink {
        display: none;
    }

    div[class*="layoutBox--type"] .contents__inner {
        padding: 60px 0 60px 0;
    }

    div.layoutBox--typeParallel > .contents__inner {
        padding-top: 40px;
    }

    div[class*="layoutBox--type"] .pageH2Area {
        margin-bottom: 5px;
    }

    div[class*="layoutBox--type"] .pageH2Area__tit01 {
        font-size: 2.7rem;
        line-height: 1.2;
    }

    div[class*="layoutBox--type"] .topH2Area__titInner {
        display: block;
        margin-left: 0px;
        font-size: 1.2rem;
        font-family: "UD新ゴ B";
    }

    .pageH2Area__tit01 {
        color: #404040;
        line-height: 1.5;
        padding: 0 25px;
        position: relative;
        flex: auto;
        width: inherit
    }

    .pageH2Area--tit01 .pageH2Area__tit01 {
        font-size: 2.0rem;
        padding: 0 29px;
        min-width: 175px;
        z-index: 2;
        width: inherit;
        justify-content: center;
    }

    .pageH2Area__tit01:before,.pageH2Area__tit01:after {
        width: 16px
    }

    .pageH2Area--tit01 .pageH2Area__tit01__txt {
        display: inline-block;
        background-color: #ffffff;
        width: inherit;
    }

    .contents--gray .pageH2Area--tit01 .pageH2Area__tit01__txt {
        background-color: #f7f7f7;
    }

    .pageH2Area__tit01--left {
        padding-left: 0;
        padding-right: 0px;
        font-size: 2.0rem;
        letter-spacing: 0.56rem;
        line-height: 1.2
    }

    .pageH2Area__tit02 {
        font-size: 2.2rem;
        line-height: 1.15;
        padding-left: 0;
        padding-bottom: 6px;
        letter-spacing: 0.3rem
    }

    .pageH2Area__tit02.pageH2Area__tit02--center {
        max-width: 280px;
        padding: 0;
        letter-spacing: 0.07rem;
        line-height: 1.3;
        padding-bottom: 3.8px
    }

    .pageH3Area {
        margin: 30px auto;
    }

    .pageH2Area--tit01.pageH2Area--forTplPage + .pageH3Area {
        margin: -10px auto 50px;
    }

    .pageH3Area__tit01 {
        text-align: left;
        font-size: 1.8rem;
        font-family: "UD新ゴ B";
    }

    .pageH3Area__tit01:before {
        top: 0.2em;
        height: calc(100% - 0.5em);
    }

    .pageH3Area__tit02 {
        text-align: center;
        font-size: 1.8rem;
        font-family: "UD新ゴ B";
        letter-spacing: 0;
        line-height: 1.2
    }

    .pageH3Area__tit02--left {
        text-align: left;
        padding-left: 0;
        line-height: 1.25;
        letter-spacing: 0.037rem;
    }

    .pageH3Area__tit02--left::before {
        top: -9px;
        width: 15px;
        height: 5px;
        border-radius: 12px;
    }

    .pageH3Area__tit04 {
        font-size: 1.8rem;
    }

    .pageH3Area__tit04::before {
        top: 4px;
        height: 18px;
    }

    .pageH2Area__tit03,.pageH4Area__tit01 {
        padding-left: 14px;
        font-size: 1.6rem;
        letter-spacing: 0
    }

    .pageH2Area__tit03::before,.pageH4Area__tit01::before {
        top: calc((1em * 1.5) / 2 - 5px);
    }

    .pageH4Area__tit02 {
        padding-left: 14px;
        font-size: 1.6rem;
        padding-bottom: 0px;
        letter-spacing: 0
    }

    .pageH4Area__tit02::before,.pageH4Area__tit02::after {
        display: block;
        content: "";
        position: absolute;
        top: calc((1em * 1.6) / 2 - 0.5px);
        width: 8px;
        height: 8px;
    }

    .pageH4Area__tit02::after {
        background-color: #06C755;
        left: 4px;
        top: calc((1em * 1.6) / 2 - 4px);
    }

    .pageTxt {
        position: relative;
        line-height: 1.7;
        margin-top: 15px;
    }

    .pageTxt--red {
        color: #c80000;
    }

    .pageTxt--center {
        text-align: center;
    }

    .pageTxt--center--spLeft {
        text-align: left;
    }

    .pageTxtList__item.pageTxt--center--spLeft {
        text-align: left;
    }

    .pageTxt--bold {
        font-family: "UD新ゴ B";
    }

    .pageTxt--voice {
        font-family: "UD新ゴ B";
        padding-left: 21px;
        letter-spacing: 0;
        line-height: 1.6;
    }

    .pageTxt--voice:before {
        content: "";
        position: absolute;
        top: 4px;
        left: 0px;
        width: 4px;
        height: calc(100% - 10px);
        background: #000000;
    }

    .pageH2Area--tit01.pageH2Area--forTplPage + .pageTxt {
        margin-top: initial;
        margin-bottom: 50px;
    }

    .pageTxtList {
        margin-top: 15px;
        counter-reset: num;
    }

    .pageTxtList--mSmall {
        margin-top: 15px;
    }

    .pageTxtList__item {
        position: relative;
        margin-top: 15px;
        padding-left: 19px;
        text-align: left;
        line-height: 1.7
    }

    .pageTxtList__item:before {
        content: "ãƒ»";
        position: absolute;
    }

    .pageTxtList__item--notes {
        font-size: 1.2rem;
        font-family: "UD新ゴ R";
        padding-left: 18px;
        margin-top: 13px;
    }

    :not(li).pageTxtList__item--notes {
        margin-top: 15px;
        padding-left: 0px;
    }

    :not(li).pageTxtList__item--notes.pageTxtList__item--notes.pageTxt--center--spLeft {
        padding-left: 1.2rem;
        position: relative;
    }

    .pageTxtList__item--notes:before {
        content: "â€»";
        left: 0
    }

    .pageTxtList__item--notes.pageTxt--center--spLeft:before {
        position: absolute;
        left: 0;
    }

    .pageTxtList__item--num {
        counter-increment: num;
        padding-left: 27px;
        line-height: 1.71
    }

    .pageTxtList__item.pageTxtList__item--num:before {
        content: counter(num) ".";
    }

    .pageTxtList__item--notesNum {
        counter-increment: num;
        font-size: 1.2rem;
        padding-left: 2.2em;
        margin-top: 5px;
    }

    .pageTxtList__item--notesNum:before {
        content: "â€»" counter(num);
    }

    .pageTxtList__item--notesNoneNum:before {
        content: "â€»";
    }

    .pageTxtList__item:first-child {
        margin-top: 0;
    }

    .pageTxtList__item .pageTxtList {
        margin-top: 15px;
    }

    .pageTxtList__item--inFlowColumnSet {
        margin-top: 15px;
        font-size: 1.3rem;
    }

    .txtColumn2 {
        display: block;
        margin-top: 30px;
    }

    .txtColumn2__item {
        width: 100%;
        margin-left: 0;
    }

    .txtColumn2__item:nth-of-type(n + 2) {
        margin-top: 30px;
    }

    .defaultBtn {
        margin: 14px 0;
    }

    .defaultBtn a {
        width: auto;
        font-size: 1.4rem;
    }

    .pageTxtList__item--notes > p {
        font-size: 1.1rem
    }

    .pageTxtList__item.pageTxtList__item--notes {
        font-size: 1.1rem
    }

    .pageTxtList__tag {
        margin-right: 12px;
        letter-spacing: 0.033rem
    }

    .defaultBtn--orange a {
        width: auto;
    }

    .printBtn {
        display: none;
    }

    .btnColumn3 {
        display: block;
        margin-block:14px;}

    .btnColumn3__item {
        width: 100%;
        margin-left: 0;
    }

    .btnColumn3__item:nth-of-type(n+2) {
        margin-top: 10px;
    }

    .contents__inner > .backBtn:first-child {
        margin-top: 60px;
        margin-bottom: 20px;
    }

    .backBtn--mtMedium {
        margin-top: 60px;
    }

    .backBtn a {
        font-size: 1.4rem;
        min-width: 183px;
        padding-left: 18px
    }

    .backBtn__arrow01:before {
        right: 12px
    }

    .whiteBtn a {
        font-size: 1.4rem;
        min-width: 220px;
    }

    .whiteBtn--medium a {
        min-width: auto;
        min-width: 183px;
        padding-left: 18px;
    }

    .orangeBtn a,.blueBtn a {
        font-size: 1.4rem;
        width: 100%;
        min-width: inherit;
        max-width: 335px;
        min-height: 54px;
        letter-spacing: 0.4rem
    }

    .pageColumn1 {
        margin-top: 30px;
    }

    .pageColumn1--shortMT {
        margin-top: 0px;
    }

    .pageColumn1__txt {
        font-size: 1.4rem;
        margin-top: 15px
    }

    .pageColumn2 {
        margin-top: 30px;
    }

    .pageColumn2__txt {
        font-size: 1.4rem;
    }

    .pageColumn2__box {
        width: 100%;
        margin-left: 0;
    }

    .pageColumn2__box:nth-of-type(n + 2) {
        margin-top: 30px;
    }

    .pageColumn3 {
        margin-top: 30px;
        display: block;
    }

    .pageColumn3--small .pageColumn3__item {
        width: 100%;
        margin-left: 0;
    }

    .pageColumn3--large .pageColumn3__item {
        margin-left: 0;
    }

    .pageColumn3__item {
        width: 100%;
        margin-top: 30px;
        margin-left: 0;
    }

    .pageColumn1__img {
        align-items: baseline;
    }

    .pageColumn1Txt {
        margin-top: 30px;
    }

    .pageColumn1Txt__ttl {
        text-align: center;
    }

    .pageColumn1Txt__img {
        display: grid;
        justify-content: center;
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 16px;
    }

    .pageColumn1 img,.pageColumn2 img,.pageColumn3 img,.pageColumn1Txt__img img {
        border-radius: 4px;
        max-width: 100%
    }

    .pageColumn1Txt__txt {
        font-size: 1.4rem;
    }

    .pageBorderBox {
        margin-top: 30px;
        padding: 35px 20px;
    }

    .pageBorderBox--small {
        padding: 10px;
    }

    .pageBorderBox--mtMedium {
        margin-top: 50px;
    }

    .pageBorderBox__tit {
        font-size: 1.8rem;
        line-height: 1.5;
        letter-spacing: 0;
        margin-bottom: 25px
    }

    .pageBorderBox__txt {
        margin-bottom: 20px;
        line-height: 1.75
    }

    .pageColorBox {
        margin-top: 30px;
        padding: 30px 15px;
    }

    .pageColorBox--plus {
        margin-top: 40px;
        padding: 30px 20px 20px;
    }

    .pageColorBox--memo {
        padding: 0 17px 34px 17px;
    }

    .pageColorBox__memoInner {
        padding: 70px 0px 35px 0;
    }

    .pageColorBox__memoInner::before,.pageColorBox__memoInner::after {
        top: 37px;
        left: 5px;
        width: 32px;
        height: 32px;
    }

    .pageColorBox__memoInner::after {
        top: auto;
        left: auto;
        bottom: 10px;
        right: 5px;
    }

    .pageColorBox__link {
        margin-top: 0px;
        font-size: 1.4rem;
    }

    .relatedArticle__txt--bold {
        font-size: 1.4rem
    }

    .pageColorBox__tit + .pageColorBox__link {
        margin-top: 5px;
    }

    .pageColorBox__tit {
        font-size: 1.8rem;
        margin-bottom: 20px
    }

    .pageColorBox__txt {
        margin-top: 16px;
        font-size: 100%
    }

    .pageColorBox__tag {
        margin-right: 0
    }

    .pageColorBox__txt--cite {
        padding-left: 3em;
        text-indent: -3em;
    }

    .relatedArticle__inner {
        display: flex;
        align-items: stretch;
        width: 100%;
    }

    .relatedArticle__detail {
        padding: 12px 14px;
        width: 59.7%;
    }

    .relatedArticle__imgArea {
        width: 40.3%;
    }

    .newsList {
        margin-top: 30px;
    }

    .newsList__item {
        padding: 0;
    }

    .newsList__item + .newsList__item {
        margin-top: 25px;
    }

    .tagBox__term {
        width: 8em;
        font-size: 1.4rem;
    }

    .newsBox {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .newsBox__heading {
        display: block;
    }

    .newsBox__description {
        display: block;
        margin-top: 20px;
        font-size: 1.4rem;
    }

    .newsBox__description > a {
        padding-left: 0px;
        font-size: 1.6rem;
    }

    .select__item {
        min-width: auto;
        max-width: 100%;
        padding: 8px 30px 6px 20px;
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .regulation .select:not(.regulation__right) .select__item {
        width: 120px;
    }

    .linkColumn3 {
        display: block;
    }

    .linkColumn3__item {
        width: 100%;
        margin-left: 0;
    }

    .selectList {
        display: block;
        margin-top: 30px;
    }

    .selectList__item {
        padding-left: 0;
        padding-top: 40px;
        background-position: 50% 13px;
        text-align: center;
    }

    .selectList__item > .select {
        width: 80%;
    }

    .selectList__item:first-child {
        padding-top: 0;
        background: none;
    }

    .caseSelect {
        display: block;
    }

    .caseSelect__label {
        display: block;
        max-width: 100%;
        width: 100%!important;
    }

    .seminarSelect {
        display: block;
    }

    .seminarSelect__label {
        display: block;
        max-width: 100%;
        width: 100%!important;
    }

    .caseList {
        display: block;
        margin-top: 30px;
    }

    .caseList__item {
        width: 100%;
        margin-left: 0;
    }

    .caseList__item:nth-of-type(n + 2) {
        margin-top: 30px;
    }

    .seminarList {
        display: block;
        margin-top: 30px;
    }

    .seminarList__item {
        width: 100%;
        margin-left: 0;
    }

    .seminarList__item:nth-of-type(n + 2) {
        margin-top: 30px;
    }

    .controlBox {
        display: block;
        padding: 30px;
    }

    .controlBox__item {
        margin-left: 0;
    }

    .controlBox__item:nth-of-type(n+2) {
        margin-top: 30px;
    }

    .controlBox__tit {
        font-size: 1.8rem;
    }

    .controlBox__txt {
        font-size: 1.4rem;
    }

    .recommendCase {
        display: block;
        margin-top: 30px;
    }

    .recommendCase__item {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }

    .recommendCase__item:first-child {
        margin-top: 0;
        width: 100%;
    }

    .partnerPannel__img img {
        width: 100%;
    }

    .partnerPannel__detail {
        padding: 15px;
    }

    .partnerPannel__tit {
        font-size: 1.4rem;
    }

    .partnerPannel__txt {
        font-size: 1.2rem;
    }

    .partnerPannel__btn a {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
        font-size: 1.1rem;
    }

    .casePannel__detail {
        padding: 15px;
    }

    .casePannel__imgArea {
        max-height: inherit;
    }

    .casePannel__tit {
        font-size: 1.4rem;
    }

    .casePannel__txt {
        font-size: 1.4rem;
    }

    .casePannel2__detail {
        padding: 15px;
    }

    .casePannel2__tit {
        font-size: 1.4rem;
    }

    .casePannel2__txt {
        font-size: 1.4rem;
    }

    .pagePannel__detail {
        padding: 20px;
    }

    .pagePannel--gray .pagePannel__detail {
        padding: 20px 10px;
    }

    .pagePannel__company {
        font-family: "UD新ゴ M";
        font-size: 1.4rem;
    }

    .pagePannel__imgArea {
        max-height: inherit;
    }

    .pagePannel__img {
        max-height: inherit;
    }

    .pagePannel__tit {
        font-size: 1.6rem;
    }

    .pagePannel__txt,.pagePannel__txt02 {
        font-size: 1.6rem;
    }

    div.pagePannel__txt {
        font-size: 1.2rem;
    }

    .carouseSWPanelList .pagePannel__txt {
        font-size: 1.6rem;
    }

    .pagePannel__time {
        font-size: 1.4rem;
    }

    .pagePannel__label,.pagePannel__label--close,.pagePannel__label--end,.pagePannel__label--coming {
        font-size: 1.2rem;
        padding: 6px 7px 5px 7px;
    }

    .pagePannel--seminar .pagePannel__txt {
        font-size: 1.2rem;
    }

    .example {
        display: block;
        padding: 35px 20px
    }

    .example__tit {
        font-size: 1.6rem;
    }

    .example__detail {
        width: 100%;
    }

    .example__box {
        display: none;
    }

    .example__img {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .example__btn {
        display: block;
        text-align: center;
        max-width: 150px;
        margin: 24px auto 0;
    }

    .example__addFriends {
        display: block;
        max-width: 165px;
        width: 100%;
        margin: 16px auto 0;
    }

    .example__addButton {
        display: flex;
        display: -ms-flexbox;
        align-items: center;
        background: #07b53b;
        color: #fff;
        font-size: 1.8rem;
        height: 40px;
        border-radius: 5px;
        padding: 0 20px;
    }

    .example__addButton span {
        padding: 7px 0 5px;
        display: inline-block;
    }

    .example__addButton::before {
        content: "";
        background: url(/static/jp/common/img/line_icon.svg) no-repeat 0 0 / cover;
        display: inline-block;
        width: 23px;
        height: 21px;
        margin-right: 8px;
    }

    .newsMainArea {
        margin-top: 0;
    }

    .newsMainArea__inner {
        padding: 15px;
    }

    .newsMainArea__tit {
        font-size: 2.0rem;
    }

    .partnerArea {
        margin-top: 0;
    }

    .partnerArea__inner {
        display: block;
        padding: 0;
    }

    .partnerArea__imgArea {
        width: 100%;
    }

    .partnerArea__detail {
        display: block;
        max-width: 100%;
        padding: 25px 15px;
    }

    .partnerArea__titArea {
        margin-top: 15px;
    }

    .partnerArea__logo {
        width: 68px;
        min-width: 68px;
        height: 33px;
        padding: 0;
    }

    .partnerArea__logoImg {
        vertical-align: inherit;
    }

    .partnerArea__tit {
        font-size: 2.0rem;
    }

    .partnerArea__companyLink {
        margin-top: 5px;
    }

    .caseMainArea {
        margin-top: 0;
    }

    .caseMainArea__inner {
        display: block;
        padding: 0;
    }

    .caseMainArea__img {
        background-size: cover;
    }

    .caseMainArea__imgArea {
        width: 100%;
        border-radius: 0;
    }

    .caseMainArea__detail {
        max-width: 100%;
        padding: 15px;
    }

    .caseMainArea__tit {
        font-size: 2.0rem;
    }

    .contents__side--spTop .caseMainArea__titSub {
        width: 100%;
        padding-right: 20px;
    }

    .caseMainArea__titSubArea {
        margin-top: 15px;
    }

    .caseMainArea__titSub:before {
        top: 2px;
    }

    .contents__side--spTop .caseMainArea__titSub:before {
        top: calc(50% - 9px);
        background: url(/static/jp/common/img/ico_menu01.png);
        background-size: cover;
        width: 17px;
        height: 13px;
        border-radius: 0;
    }

    .contents__side--spTop .caseMainArea__titSub:after {
        content: "";
        position: absolute;
        top: calc(50% - 10px);
        right: 0;
        left: inherit;
        background: url(/static/jp/common/img/ico_accordion_open01.png);
        background-size: cover;
        width: 16px;
        height: 16px;
        margin-right: 20px;
    }

    .contents__side--spTop.is-open .caseMainArea__titSub:after {
        content: "";
        position: absolute;
        top: calc(50% - 3px);
        right: 0;
        left: inherit;
        background: url(/static/jp/common/img/ico_accordion_close01.png);
        background-size: cover;
        width: 16px;
        height: 2px;
        margin-right: 20px;
    }

    .contents__side--spTop .columnMainArea__titSubInner {
        margin-left: 30px;
    }

    .caseMainArea__logo {
        width: 69px;
        min-width: 69px;
        height: 34px;
        margin-top: 6px;
        padding: 6px;
    }

    .caseMainArea__titSub {
        font-size: 1.8rem;
    }

    .contents__side--spTop .caseMainArea__titSub {
        padding: 20px;
    }

    .caseMainArea__tags {
        font-size: 1.2rem;
    }

    .caseMainArea__txt {
        margin: 0 13px 0 0;
        font-size: 1.2rem;
    }

    .process {
        margin-top: 30px;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .process::before {
        content: none;
    }

    .process--result {
        margin-bottom: 60px;
    }

    .process__tit {
        display: inline-block;
        margin: 0 auto;
        padding: 3px 28px 2px 28px;
        width: auto;
        height: auto;
        font-size: 1.6rem;
        text-align: center;
    }

    .process__detail {
        width: 100%;
        margin: 15px 0 0 0;
        border: 1px solid #e5e5e5;
        padding: 15px 14px 15px 14px;
    }

    .seminarMainArea {
        margin-top: 0;
    }

    .seminarMainArea__inner {
        display: block;
        padding: 0;
    }

    .seminarMainArea__imgArea {
        width: 100%;
        border-radius: 0;
    }

    .seminarMainArea__detail {
        padding: 15px;
        max-width: 100%;
    }

    .seminarMainArea__tit {
        font-size: 2.0rem;
    }

    .seminarMainArea__tags {
        font-size: 1.2rem;
    }

    .manualMainArea {
        margin-top: 0;
    }

    .manualMainArea__inner {
        display: block;
        padding: 15px 15px 0;
        min-height: 110px;
    }

    .manualMainArea__info {
        position: static;
        font-size: 1.2rem;
        padding: 0;
    }

    .manualMainArea__tit {
        font-size: 2.0rem;
    }

    .columnMainArea {
        margin-top: 0;
    }

    .columnMainArea__inner {
        display: block;
        padding: 0;
    }

    .columnMainArea__imgArea {
        width: 100%;
    }

    .columnMainArea__img {
        border-radius: 0;
    }

    .columnMainArea__detail {
        padding: 30px 20px;
        max-width: 100%;
    }

    .columnMainArea__detail > *:last-child {
        margin-top: 20px;
    }

    .columnMainArea__tit {
        font-size: 2.0rem;
    }

    .columnMainArea__titSubArea {
        margin: 30px auto;
    }

    .columnMainArea__titSubArea--firstTit {
        margin-top: 30px;
    }

    .contents__side--spTop .columnMainArea__titSubArea--firstTit {
        background: #f1f1f1;
        margin: 0;
    }

    .columnMainArea__titSub:before {
        top: 1px;
    }

    .columnMainArea__titSub {
        font-size: 1.8rem;
    }

    .sideTitArea {
        margin: 30px auto 20px;
    }

    .contents__side--spTop .sideTitArea {
        margin: 0;
    }

    .sideTitArea__tit {
        font-size: 1.6rem;
    }

    .sideTitArea__titInner {
        font-size: 1.2rem;
    }

    .sideQrcode {
        margin-top: 15px;
    }

    .sideQrcode__tit {
        font-family: "UD新ゴ B";
    }

    .sideQrcode__txt {
        margin-top: 5px;
        font-size: 1.2rem;
    }

    .sideQrcode__img {
        display: none;
    }

    .sideQrcode__btn {
        display: block;
        margin-top: 15px;
        text-align: center;
    }

    .sideBanner {
        margin-top: 15px;
    }

    .sideBanner__tit {
        font-family: "UD新ゴ B";
    }

    .sideBanner__txt {
        margin-top: 5px;
        font-size: 1.2rem;
    }

    .sideBanner__img {
        display: none;
    }

    .sideBanner__btn {
        display: block;
        margin-top: 15px;
        text-align: center;
    }

    .contents__side--spTop .is-spAccordionMenu {
        display: none;
    }

    .contents__side--spTop.is-open .is-spAccordionMenu {
        display: block;
    }

    .contents__side--spTop .sideCategory {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        background: #707070;
        margin-top: 0;
    }

    .contents__side--spTop .sideCategory__item {
        border-bottom: 1px solid #cfcfcf;
        border-right: 1px solid #cfcfcf;
        width: 50%;
    }

    .contents__side--spTop .sideCategory__item:first-child {
        margin-top: 0;
    }

    .contents__side--spTop .sideCategory__item:nth-child(2n) {
        border-right: none;
    }

    .sideCategory__item > a {
        padding: 14px 20px 13px 10px;
        font-size: 1.4rem;
    }

    .contents__side--spTop .sideCategory__item.sideCategory__item--anc > a:after {
        background: url(/static/jp/common/img/ico_bottomArrow02.png) 0 0 no-repeat;
        background-size: cover;
    }

    .contents__side--spTop .sideCategory__item > a {
        color: #fdfdfd;
    }

    .contents__side--spTop .sideCategory__closeBtn {
        text-align: center;
    }

    .contents__side--spTop .sideCategory__closeBtnArea {
        background: #707070;
        margin: 0 auto;
        padding: 15px 0;
    }

    .contents__side--spTop .sideCategory__closeBtn button {
        min-width: 220px;
        font-size: 1.4rem;
        padding: 9px 37px 8px;
        display: inline-block;
        border: 2px solid #fff;
        background: #707070;
        position: relative;
        line-height: 1.5;
        font-family: "UD新ゴ B";
        color: #fff;
        border-radius: 50px;
        transition: color 0.4s,background-color 0.4s;
    }

    .contents__side--spTop .sideCategory__closeBtnArrow01::after {
        content: "";
        position: absolute;
        top: calc(50% - 4px);
        right: 17px;
        width: 6px;
        height: 10px;
        background: url(/static/jp/common/img/ico_rightArrow02.png) 0 0 no-repeat;
        background-size: cover;
    }

    .sideRanking__txt {
        font-size: 1.2rem;
    }

    .sideTagList {
        margin-top: 15px;
    }

    .sideTagList__item {
        font-size: 1.1rem;
    }

    .sideTwitter iframe {
        width: 1023px !important;
    }

    .columnList {
        margin-top: 30px;
    }

    .columnList__item {
        width: 100%;
        margin-left: 0;
    }

    .articleCarousel .swiper-button-prev,.articleCarousel .swiper-button-next {
        display: block;
        background: rgba(64,64,64,0.65);
        width: 22px;
        height: 66px;
        left: 0;
    }

    .articleCarousel .swiper-button-next {
        left: auto;
        right: 0;
    }

    .articleCarousel .swiper-button-prev:before,.articleCarousel .swiper-button-next:before {
        content: "";
        display: inline-block;
        position: absolute;
        top: calc(50% - 5px);
        left: calc(50% - 4px);
        width: 6px;
        height: 10px;
        background: url(/static/jp/common/img/ico_leftArrow02.png) 0 0 no-repeat;
        background-size: cover;
        vertical-align: middle;
    }

    .articleCarousel .swiper-button-prev:before {
        background-image: url(/static/jp/common/img/ico_leftArrow02.png);
    }

    .articleCarousel .swiper-button-next:before {
        background-image: url(/static/jp/common/img/ico_rightArrow02.png);
    }

    .seminarTable td,.seminarTable th {
        display: block;
        width: 100%;
        padding: 15px;
    }

    .seminarTable__map {
        padding: 160px 0;
    }

    .faqBox__tit {
        padding-top: 6px;
        padding-bottom: 20px;
        font-size: 2.0rem;
    }

    .faqBox__detail {
        margin-top: 20px;
    }

    .faqBox__txt {
        margin-top: 15px;
    }

    .faqMoreBtn {
        margin-top: 20px;
    }

    .faqMoreBtn a {
        font-size: 1.2rem;
    }

    .sideCategoryFaq {
        margin-top: 30px;
        border: 1px solid #e0e0e0;
        border-bottom: none;
    }

    .sideCategoryFaq__btn {
        position: relative;
        border-bottom: 1px solid #e0e0e0;
        padding: 14px 28px 13px 10px;
        cursor: pointer;
    }

    .sideCategoryFaq__btn > * {
        margin: 0;
    }

    .sideCategoryFaq__btn:after,.sideCategoryFaq__btn:before {
        display: block;
        content: "";
        background: #e0e0e0;
        position: absolute;
        width: 16px;
        height: 2px;
        top: 50%;
        right: 10px;
        left: inherit;
        z-index: 2;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .sideCategoryFaq__btn:before {
        width: 2px;
        height: 16px;
        right: 17px;
    }

    .sideCategoryFaq__btn.is-open:before {
        content: normal;
    }

    .sideCategoryFaq__item {
        display: none;
        margin-top: 18px;
    }

    .sideCategoryFaq__item > *:first-child {
        margin-top: 0;
    }

    .manualLinkList__btn {
        width: calc(50% - 8px);
        margin-left: 15px;
    }

    .manualLinkList__btn > a {
        padding: 12px 25px 11px 15px;
        font-size: 1.2rem;
    }

    .manualLinkList__btn > a:after {
        right: 10px;
    }

    .manualLinkList__btn:nth-of-type(4n + 1) {
        margin-left: 15px;
    }

    .manualLinkList__btn:nth-of-type(2n + 1) {
        margin-left: 0;
    }

    .manualLinkList__btn:nth-of-type(n + 3) {
        margin-top: 15px;
    }

    .manualBox {
        margin-top: 30px;
    }

    .manualBox__tit {
        padding: 15px;
        font-size: 2.4rem;
    }

    .manualBox__inner {
        padding: 20px 14px;
    }

    .manualList {
        display: block;
    }

    .manualList > * {
        margin-left: 0;
        width: 100%;
    }

    .manualList > *:nth-of-type(n+2) {
        margin-top: 20px;
    }

    .downloadLinkList__btn {
        width: calc(50% - 8px);
        margin-left: 15px;
    }

    .downloadLinkList__btn > a {
        padding: 12px 25px 11px 15px;
        font-size: 1.2rem;
    }

    .downloadLinkList__btn > a:after {
        right: 10px;
    }

    .downloadLinkList__btn:nth-of-type(4n + 1) {
        margin-left: 15px;
    }

    .downloadLinkList__btn:nth-of-type(2n + 1) {
        margin-left: 0;
    }

    .downloadLinkList__btn:nth-of-type(n + 3) {
        margin-top: 15px;
    }

    .downloadBox {
        margin-top: 30px;
    }

    .downloadBox__tit {
        padding: 15px;
        font-size: 2.4rem;
    }

    .downloadBox__inner {
        padding: 30px;
    }

    .information {
        margin-top: 30px;
    }

    .information__bnr {
        display: block;
    }

    .information__bnrItem {
        margin-left: 0;
        margin-top: 20px;
        max-width: 100%;
    }

    .information__bnrItem > a {
        padding: 10.5% 5%;
        font-size: 2.4rem;
    }

    .information__bnrItem:first-child {
        margin-top: 0;
    }

    .information__bnrTxt {
        font-size: 1.4rem;
    }

    .information__list {
        margin-top: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .information__listBox {
        text-align: left;
    }

    .information__ico {
        padding-top: 0;
        padding-left: 125px;
        min-height: 110px;
    }

    .information__ico:before {
        background-size: cover;
        width: 110px;
        height: 110px;
        left: 0;
        -webkit-transform: none;
        transform: none;
    }

    .information__listBox {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
        padding: 30px 15px;
    }

    .information__listBox:first-of-type {
        margin-top: 0;
    }

    .researchContact {
        display: block;
    }

    .researchContact__btn {
        margin-left: 0;
        margin-top: 20px;
    }

    .researchContact__btn > a {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        min-width: auto;
    }

    .researchContact__btn:first-child {
        margin-top: 0;
    }

    .researchCourseFuction {
        margin-top: 30px;
        width: 100%;
    }

    .researchCourseFuction__inner {
        padding: 15px;
    }

    .researchCourseFuction__tit {
        margin-bottom: 25px;
        font-size: 1.8rem;
    }

    .researchCourseFuction__item dt {
        width: 90px;
    }

    .researchCourseFuction__item dd {
        margin-left: 10px;
        width: calc(100% - 100px);
    }

    .researchCourseFuction__price {
        padding: 15px;
    }

    .researchCourseFuction__priceTxt {
        font-size: 2.4rem;
    }

    .researchCourseFuction__notes > li {
        font-size: 1.2rem;
    }

    .researchCourseBtn {
        margin-top: 15px;
    }

    .researchCourseBtn + .researchCourseBtn {
        margin-top: 15px;
    }

    .researchCourseBtn > a {
        width: auto;
        max-width: 600px;
        min-width: auto;
        font-size: 1.4rem;
    }

    .partnerTable {
        margin-top: 20px;
    }

    .partnerTable td,.partnerTable th {
        font-size: 1.2rem;
    }

    .priceTable {
        margin-top: 20px;
    }

    .priceTable__inner {
        margin-left: 72px;
        padding-bottom: 1px;
        overflow: auto;
    }

    .priceTable__item {
        width: 100%;
        display: block;
    }

    .priceTable__item tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .priceTable__item--fixed {
        position: absolute;
        left: 0;
    }

    .priceTable__notes {
        font-size: 1.2rem;
    }

    .modalContents {
        padding: 20px;
        max-width: 560px;
    }

    .modalPartnerWord__tit {
        display: block;
    }

    .modalPartnerWord__titInner {
        margin-top: 10px;
        text-align: center;
    }

    .modalPartnerWord__titNum {
        margin-right: 0;
        font-size: 6.2rem;
    }

    .movieBox__inner:before {
        width: 60px;
        height: 60px
    }
}

.partnerBtnColumn3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 60px auto 0;
    max-width: 900px;
}

.partnerBtnColumn3__item {
    width: calc(100% / 3 - 15px);
    margin-left: 30px;
    vertical-align: top;
}

.partnerBtnColumn3__item:first-child {
    margin-left: 0;
}

.partnerBtnColumn3__item > *:first-child {
    margin-top: 0;
}

.partnerBtnColumn3__btn a {
    position: relative;
    display: block;
    border: 1px solid #f2f2f2;
    background: #f2f2f2;
    padding: 12px 40px 11px;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    color: #333;
    text-align: center;
    border-radius: 50px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.partnerBtnColumn3__btn a:hover {
    color: #06C755;
}

.partnerBtnColumn3__btn a:after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 6px;
    background: url("/static/jp/common/img/ico_bottomArrow01.png") 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
}

.partnerColumn3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 40px auto 0;
}

.partnerColumn3__item {
    width: calc(100% / 3 - 15px);
    margin-left: 30px;
    vertical-align: top;
}

.partnerColumn3__item:first-child {
    margin-left: 0;
}

.partnerColumn3__item > *:first-child {
    margin-top: 0;
}

.partnerColumn3__ico {
    position: relative;
    display: block;
    padding-top: 220px;
    font-family: "UD新ゴ B";
}

.partnerColumn3__ico:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 200px;
    height: 200px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.partnerColumn3__ico--type01:before {
    background: url("/static/jp/partner-offer/img/ico_index01.png") 0 0 no-repeat;
    background-size: contain;
}

.partnerColumn3__ico--type02:before {
    background: url("/static/jp/partner-offer/img/ico_index02.png") 0 0 no-repeat;
    background-size: contain;
}

.partnerColumn3__ico--type03:before {
    background: url("/static/jp/partner-offer/img/ico_index03.png") 0 0 no-repeat;
    background-size: contain;
}

@media screen and (max-width: 1023px) {
    .conversionBtn > a {
        min-width:inherit;
        max-width: 600px;
        width: 100%;
    }

    .partnerBtnColumn3__item {
        width: calc(50% - 8px);
        margin-left: 15px;
    }

    .partnerBtnColumn3__item:nth-child(2n+1) {
        margin-left: 0;
    }

    .partnerBtnColumn3__item:nth-child(n+3) {
        margin-top: 20px;
    }

    .partnerBtnColumn3__btn a {
        padding: 12px 20px 11px;
        font-size: 1.4rem;
    }

    .partnerColumn3 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 20px auto 0;
    }

    .partnerColumn3__item {
        width: calc(50% - 8px);
        margin-left: 15px;
    }

    .partnerColumn3__item:nth-child(2n+1) {
        margin-left: 0;
    }

    .partnerColumn3__item:nth-child(n+3) {
        margin-top: 20px;
    }

    .partnerColumn3__ico {
        padding-top: 86%;
    }

    .partnerColumn3__ico:before {
        width: 80%;
        height: 100%;
    }
}

.howToUseList__item {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.howToUseList__item:first-child {
    margin-top: 0;
}

.howToUseList__item:before {
    content: "";
    display: inline-block;
    width: 180px;
    height: 180px;
}

.howToUseList__item--lite01:before {
    background: url("/static/jp/service/line-research/lite/img/ico_index01.png") 0 0 no-repeat;
    background-size: cover;
}

.howToUseList__item--lite02:before {
    background: url("/static/jp/service/line-research/lite/img/ico_index02.png") 0 0 no-repeat;
    background-size: cover;
}

.howToUseList__item--lite03:before {
    background: url("/static/jp/service/line-research/lite/img/ico_index03.png") 0 0 no-repeat;
    background-size: cover;
}

.howToUseList__item--support01:before {
    background: url("/static/jp/service/line-research/support/img/ico_index01.png") 0 0 no-repeat;
    background-size: cover;
}

.howToUseList__item--support02:before {
    background: url("/static/jp/service/line-research/support/img/ico_index02.png") 0 0 no-repeat;
    background-size: cover;
}

.howToUseList__item--support03:before {
    background: url("/static/jp/service/line-research/support/img/ico_index03.png") 0 0 no-repeat;
    background-size: cover;
}

.howToUseList__txtArea {
    width: calc(100% - 210px);
    margin-left: 30px;
}

.howToUseList__txtArea > *:first-child {
    margin-top: 0;
}

.howToUseList__tit {
    font-size: 1.8rem;
    font-family: "UD新ゴ B";
}

.howToUseList__txt {
    margin-top: 15px;
}

.howToUseList__notes {
    position: relative;
    margin-top: 10px;
    padding-left: 1.2em;
    font-size: 1.4rem;
    text-align: left;
}

.howToUseList__notes:before {
    content: "â€»";
    position: absolute;
    left: 0;
}

.partnerLogoList {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.partnerLogoList__item {
    border: 1px solid #e6e6e6;
    width: calc(100% / 3 - 20px);
    margin-left: 30px;
}

.partnerLogoList__item:nth-child(3n+1) {
    margin-left: 0;
}

.partnerLogoList__item:nth-child(n+4) {
    margin-top: 30px;
}

.partnerLogoList__item a {
    display: block;
    padding: 20px 0;
    text-align: center;
}

.mainService {
    margin-top: 20px;
    background: #f2f2f2;
}

.mainServiceList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    padding: 35px 50px;
}

.mainServiceList__item {
    position: relative;
    z-index: 3;
    text-align: center;
}

.mainServiceList__item:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25em 0 25em 6em;
    border-color: transparent transparent transparent #f2f2f2;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 2;
}

.mainServiceList__item:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -53%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25em 0 25em 6em;
    border-color: transparent transparent transparent #fff;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}

.mainServiceList__item:last-of-type:after,.mainServiceList__item:last-of-type:before {
    content: normal;
}

.mainServiceList__inner {
    position: relative;
    z-index: 5;
}

.mainServiceList__heading {
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
    text-align: center;
}

.mainServiceList__heading-label {
    display: block;
    text-align: center;
}

.mainServiceList__ico {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mainServiceList__icoItem {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-left: -10px;
    z-index: 3;
}

.mainServiceList__icoItem:first-of-type {
    margin-left: 0;
    margin-right: -10px;
    z-index: 1;
}

.mainServiceList__icoItem--type01 {
    background: rgba(33,181,203,0.9) url("/static/jp/img/ico_service01.png") 50% 30px no-repeat;
}

.mainServiceList__icoItem--type02 {
    background: rgba(53,134,201,0.9) url("/static/jp/img/ico_service02.png") 50% 25px no-repeat;
}

.mainServiceList__icoItem--type03 {
    background: rgba(30,189,146,0.9) url("/static/jp/img/ico_service03.png") 50% 30px no-repeat;
}

.mainServiceList__icoItem--type04 {
    background: rgba(33,181,203,0.9) url("/static/jp/img/ico_service04.png") 50% 25px no-repeat;
}

.mainServiceList__icoItem--type05 {
    background: rgba(53,134,201,0.9) url("/static/jp/img/ico_service05.png") 50% 30px no-repeat;
}

.mainServiceList__icoItem--type06 {
    background: rgba(30,189,146,0.9) url("/static/jp/img/ico_service06.png") 50% 25px no-repeat;
}

.mainServiceList__icoItem > span {
    display: block;
    padding-top: 75px;
    color: #fff;
    font-family: "UD新ゴ B";
}

.mainServiceList__btn {
    margin-top: 25px;
}

.mainServiceList__btn > a {
    position: relative;
    display: inline-block;
    background: #fff;
    padding: 10px 15%;
    color: #111;
    font-size: 1.3rem;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 30px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.mainServiceList__btn > a > span:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow01.png") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.mainServiceList__btn > a:hover {
    color: #06c405;
}

@media screen and (max-width: 1200px) {
    .mainServiceList__heading {
        font-size:1.8rem;
    }

    .mainServiceList__icoItem {
        width: 120px;
        height: 120px;
        font-size: 1.4rem;
    }

    .mainServiceList__icoItem > span {
        padding-top: 70px;
    }

    .mainServiceList__icoItem--type01 {
        background-position: 50% 25px;
    }

    .mainServiceList__icoItem--type02 {
        background-position: 50% 20px;
    }

    .mainServiceList__icoItem--type03 {
        background-position: 50% 25px;
    }

    .mainServiceList__icoItem--type04 {
        background-position: 50% 20px;
    }

    .mainServiceList__icoItem--type05 {
        background-position: 50% 25px;
    }

    .mainServiceList__icoItem--type06 {
        background-position: 50% 20px;
    }

    .mainServiceList__btn > a {
        padding: 10px 10%;
        font-size: 1.2rem;
    }
}

.mainScene {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 60px;
}

.mainScene + .mainScene {
    margin-top: 80px;
}

.mainScene__txtArea {
    position: relative;
    margin-left: 40px;
    max-width: 562px;
    padding: 40px 80px 70px 40px;
    background: #f3f3f3;
}

.mainScene__txtArea:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -40px;
    width: 54px;
    height: 55px;
    background: url("/static/jp/line-biz-solutions/img/ico_index01.png") 0 0 no-repeat;
}

.mainScene__txtArea:after {
    content: "";
    position: absolute;
    bottom: 30px;
    right: 80px;
    width: 80px;
    height: 2px;
    background-color: #21b5cb;
}

.mainScene__label {
    color: #21b5cb;
    font-size: 5.0rem;
    font-family: "UD新ゴ B";
    font-family: Arial,sans-serif;
}

.mainScene__labelNum {
    font-size: 8.8rem;
    line-height: 1;
}

.mainScene__tit {
    margin-top: 10px;
    font-size: 2.4rem;
}

.mainScene__txt {
    margin-top: 10px;
}

.mainScene__imgArea {
    position: relative;
    margin-left: -40px;
    max-width: 600px;
    min-width: 470px;
}

.mainScene__imgArea:after {
    content: "";
    position: absolute;
    top: -45px;
    right: -40px;
    width: 92px;
    height: 95px;
    background: url("/static/jp/line-biz-solutions/img/ico_index02.png") 0 0 no-repeat;
}

@media screen and (max-width: 1023px) {
    .partnerLogoList {
        margin-top:15px;
    }

    .partnerLogoList__item {
        width: calc(100% / 2 - 8px);
        margin-left: 15px;
    }

    .partnerLogoList__item:nth-child(3n+1) {
        margin-left: 15px;
    }

    .partnerLogoList__item:nth-child(2n+1) {
        margin-left: 0;
    }

    .partnerLogoList__item:nth-child(n+3) {
        margin-top: 15px;
    }

    .partnerLogoList__item a {
        display: block;
        padding: 15px 0;
    }

    .voiceTxt {
        font-size: 1.8rem;
    }

    .researchPannel__imgArea {
        max-height: none;
    }

    .researchPannel__tit {
        font-size: 1.4rem;
    }

    .howToUseList__item {
        margin-top: 20px;
    }

    .howToUseList__item:before {
        margin: 0 auto;
    }

    .howToUseList__txtArea {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    .howToUseList__tit {
        font-size: 1.6rem;
    }

    .mainServiceList {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 15px;
    }

    .mainServiceList__item {
        margin-top: 0;
        width: 100%;
        padding: 30px 15px 60px;
    }

    .mainServiceList__item:last-child {
        padding: 30px 15px;
    }

    .mainServiceList__item:before {
        top: 98%;
        right: 50%;
        border-width: 10vw 60vw 0 60vw;
        border-color: #f2f2f2 transparent transparent transparent;
        -webkit-transform: translate(50%,-100%);
        transform: translate(50%,-100%);
    }

    .mainServiceList__item:after {
        top: 100%;
        right: 50%;
        border-width: 10vw 60vw 0 60vw;
        border-color: #fff transparent transparent transparent;
        -webkit-transform: translate(50%,-100%);
        transform: translate(50%,-100%);
    }

    .mainServiceList__heading {
        font-size: 1.8rem;
    }

    .mainScene {
        display: block;
        margin-top: 30px;
    }

    .mainScene + .mainScene {
        margin-top: 40px;
    }

    .mainScene__txtArea {
        margin-left: 0;
        margin-right: 20px;
        max-width: 700px;
        padding: 20px 20px 60px;
        background: #f3f3f3;
    }

    .mainScene__txtArea:before {
        content: normal;
    }

    .mainScene__txtArea:after {
        bottom: 40px;
        right: 30px;
        width: 25%;
    }

    .mainScene__label {
        color: #21b5cb;
        font-size: 3.0rem;
    }

    .mainScene__labelNum {
        font-size: 4.4rem;
    }

    .mainScene__tit {
        margin-top: 10px;
        font-size: 2.0rem;
    }

    .mainScene__imgArea {
        margin-top: -20px;
        margin-left: 20px;
        max-width: 780px;
        min-width: inherit;
        text-align: right;
    }

    .mainScene__imgArea:after {
        content: normal;
    }
}

.bottomMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.bottomMenu .bottomMenu_item {
    margin-right: 60px;
    width: 268px;
}

.bottomMenu .bottomMenu_item:last-child {
    margin-right: 0px;
}

.bottomMenu_item a {
    padding-left: 30px;
    position: relative;
}

.bottomMenu_item a::before {
    display: inline-block;
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0.1em;
    left: 0;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 20px auto;
}

.bottomMenu_item.bottomMenu_item--search a::before {
    background-image: url(/static/jp/common/img/ico_search01.png);
}

.bottomMenu_item.bottomMenu_item--download a::before {
    background-image: url(/static/jp/common/img/ico_download02.png);
}

.bottomMenu_item.bottomMenu_item--faq a::before {
    background-image: url(/static/jp/common/img/ico_faq01.png);
}

.bottomMenu_item.bottomMenu_item--inquiries a::before {
    background-image: url(/static/jp/common/img/ico_inquiries01.png);
}

.bottomMenu_inItem {
    display: inline-block;
    font-size: 1.4rem;
    margin-top: 14px;
}

@media screen and (max-width: 1023px) {
    .contents.contents--bottomMenu {
        padding:0;
    }

    .contents.contents--topMenu {
        padding: 0;
    }

    .contents.contents--bottomMenu .contents__inner {
        padding: 0;
    }

    .contents--nextAcctLinkElm .contents__inner {
        padding-top: 10px;
    }

    .contents__inner--media {
        padding: 0 0 50px;
    }

    .contents__inner--topMenu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        max-width: 100%;
    }

    .bottomMenu {
        margin-top: 0;
        justify-content: center;
        flex-direction: column;
    }

    .contents--adsPartner + .contents--bottomMenu .bottomMenu_item {
        border-top: none;
    }

    .contents--confirm + .contents--bottomMenu .bottomMenu_item {
        border-top: none;
    }

    .bottomMenu .bottomMenu_item {
        margin-right: 0px;
        width: 100%;
    }

    .bottomMenu_inItem {
        display: none;
    }

    .bottomMenu_item {
        border-bottom: 1px solid #dbdbdb;
    }

    .bottomMenu_item a {
        padding: 28px 32px 27px 50px;
        font-size: 1.6rem;
        width: 100%;
    }

    .bottomMenu_item a::before {
        top: calc(50% - 10px);
        left: 20px;
    }

    .pageTxtLink a:after {
        position: static;
        top: calc(50% - 5px);
        right: 20px;
    }

    .pageTxtLink a.pageTxtLink__blank01:after {
        margin-left: 10px;
        margin-bottom: -3px;
    }

    .pageTxtLink a.pageTxtLink__download01:after {
        margin-left: 9px;
        margin-bottom: -3px;
    }
}

.topMessage {
    background-color: #06C755;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topMessage__box {
    margin: 48px 0 40px 0;
    padding: 0 1em 10px 1em;
    width: 50%;
    text-align: center;
}

.topMessage__box + .topMessage__box {
    border-left: 1px solid #ffffff;
}

.topMessage__txt {
    display: inline-block;
    font-size: 3.6rem;
    font-family: "UD新ゴ B";
    color: #fff;
    text-align: center;
}

.topMessage__box .defaultBtn {
    margin-top: 25px;
}

.topMessage__btn {
    margin-top: 30px;
}

.topMessage__btn > a {
    display: inline-block;
    padding: 17px 80px;
    border: 1px solid #fff;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    color: #fff;
    text-align: center;
    border-radius: 30px;
    -webkit-transition: color 0.4s,background-color 0.4s,border-color 0.4s;
    transition: color 0.4s,background-color 0.4s,border-color 0.4s;
}

.topMessage__btn > a:hover {
    background: #06c405;
    border-color: #06c405;
}

.topMessage__btn > a span:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow02.png") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

@media screen and (max-width: 1023px) {
    .topMessage {
        padding:0px 20px;
        flex-direction: column;
    }

    .topMessage__box {
        margin: 0 20px 0 20px;
        padding: 48px 0 38px 0;
        width: 100%;
        text-align: center;
    }

    .topMessage__box + .topMessage__box {
        border-top: 1px solid #ffffff;
        border-left: none;
    }

    .topMessage__box .defaultBtn.defaultBtn--orange a {
        min-width: 260px;
    }

    .topMessage__txt {
        font-size: 3.6rem;
        font-family: "UD新ゴ B";
        color: #fff;
    }

    .topMessage__btn > a {
        padding: 15px 30px;
        line-height: 1;
        max-width: 600px;
        width: 100%;
        font-size: 1.5rem;
    }

    .grayBtn {
        text-align: center;
    }

    .grayBtn--shortMT {
        text-align: center;
    }

    .contents--carouseSWlPanelList .grayBtn {
        display: inherit;
        margin-top: 50px;
    }

    .grayBtn--left {
        text-align: left;
    }

    .grayBtn--right {
        text-align: right;
    }

    .grayBtn a {
        font-size: 1.4rem;
        padding: 3px 48px 3px 25px;
        min-width: 182px;
        letter-spacing: 0.18rem;
    }

    .grayBtn a:hover {
        color: #707070;
    }
}

.contents__inner--serviceTop {
    padding: 60px 0;
}

.contents__inner--com {
    padding: 90px 0 60px;
}

.contents--serviceOther .contents__inner--serviceTop {
    padding: 120px 0;
}

.contents--pb--large {
    margin-bottom: 60px
}

@media screen and (max-width: 1023px) {
    .contents--pb--large {
        margin-bottom:0;
    }
}

.clear {
    overflow: auto;
}

.pageColumn3__box {
    display: inline-block;
    width: calc((100% - 80px)/3);
    margin-left: 40px;
    vertical-align: top;
}

.pageColumn3__box:nth-child(3n+1) {
    margin-left: 0;
}

.pageColumn3__img {
    text-align: center;
    display: grid;
    justify-content: center;
}

.pageColumn3__ttl:not(:empty) {
    margin-bottom: 16px;
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
}

.pageColumn3__cap:not(:empty) {
    margin-top: 16px;
    padding: 8px 10px;
    font-size: 1.4rem;
    background-color: #F2F4F8;
}

@media screen and (max-width: 1023px) {
    .pageColumn3__box {
        width:100%;
        margin-left: 0;
    }

    .pageColumn3__box:nth-of-type(n + 2) {
        margin-top: 30px;
    }
}

.pageColumn1Txt__txt.clear {
    clear: inherit;
}

.new__ico {
    position: absolute;
    left: 5px;
    bottom: 5px;
    color: #FFF;
    background: #F77911;
    border-radius: 3px;
    display: inline-block;
    font-size: 1.1rem;
    font-family: 'Volte Regular';
    line-height: 1;
    margin-top: 24px;
    min-width: 50px;
    padding: 6px 12px;
    text-align: center;
}

.pagePannel__detail.new .pagePannel__company {
    display: block;
}

.pagePannel__detail.new.no_ico > *:first-child {
    padding-top: 36px;
}

.casePanel__ico {
    margin-top: 10px;
}

.casePanel__ttl {
    color: #838383;
    font-size: 14px;
    font-family: "UD新ゴ B";
    margin-top: 10px;
}

.top_pagePannel .swiper-slide {
    width: calc(100% /4 - 20px);
    margin-right: 30px;
}

p.casePanel__ico+p.casePanel__ico {
    margin-top: 5px;
}

.contents--top_pagePannel {
    position: relative;
}

.contents--top_pagePannel .swiper-button-prev,.contents--top_pagePannel .swiper-button-next {
    display: block;
    background: rgba(64,64,64,0.65);
    width: 50px;
    height: 50px;
    top: 275px;
    left: 0;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 15;
    box-shadow: -30px 80px 120px 100px #eee;
}

.contents--top_pagePannel .swiper-button-next {
    left: auto;
    right: 0;
    box-shadow: 30px 80px 120px 100px #eee;
}

.contents--top_pagePannel .swiper-button-prev:after,.contents--top_pagePannel .swiper-button-next:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 4px);
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_leftArrow02.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.contents--top_pagePannel .swiper-button-next:after {
    left: calc(50% - 2px);
    background-image: url("/static/jp/common/img/ico_rightArrow02.png");
}

.top_pagePannel .pagination {
    text-align: center;
    margin-top: 20px;
}

.top_pagePannel .swiper-pagination-bullet {
    background-color: #d9d9d9;
    margin-left: 8px;
    opacity: 1;
}

.top_pagePannel .swiper-pagination-bullet-active {
    background: #707070
}

.top_pagePannel .swiper-slide:nth-child(1) {
    margin-right: -10px!important;
}

.contents--top_pagePannel .contents__inner {
    position: relative;
}

.top_pagePannel.top_pagePannelhorizontal {
    max-width: 1150px;
}

.pc_only {
    display: block!important;
}

.sp_only {
    display: none!important;
}

.new__ico.hide {
    position: relative;
    height: 23px;
    background: transparent;
}

@media screen and (max-width: 1023px) {
    .casePanel__ttl {
        margin-top:8px
    }

    .carouseSWPanelList .swiper-button-prev,.carouseSWPanelList .swiper-button-next {
        width: 22px;
        height: 66px;
        border-radius: 100px;
    }

    .pc_only {
        display: none!important;
    }

    .sp_only {
        display: block!important;
    }

    .contents--top_pagePannel .swiper-button-prev {
        left: -10px;
        box-shadow: none;
        top: calc(52vw - 25px);
    }

    .contents--top_pagePannel .swiper-button-next {
        right: -10px;
        box-shadow: none;
        top: calc(52vw - 25px);
    }

    .top_pagePannel .carouseSWPanelList,.top_pagePannel .grayBtn,.contents--carouseSWlPanelList .grayBtn {
        margin-top: 25px;
    }

    .pagePannel__detail.new.no_ico > *:first-child {
        padding-top: 0;
    }

    .top_pagePannel .swiper-slide:nth-child(1) {
        margin-right: 30px!important;
    }

    .top_pagePannel .pagePannel__txt {
        height: auto!important;
    }

    .new__ico.hide {
        display: none;
    }

    .articleCarousel .new__ico.hide {
        display: inline-block;
    }
}

.articleCarousel div:not(.swiper-container-horizontal):not(.js-relationCarousel_02horizontal) > .swiper-button-next,.articleCarousel div:not(.swiper-container-horizontal):not(.js-relationCarousel_02horizontal) > .swiper-button-prev,.articleCarousel div:not(.swiper-container-horizontal):not(.js-relationCarousel_02horizontal) > .swiper-pagination {
    display: none;
}

.js-relationCarousel_02:not(.js-relationCarousel_02horizontal) > .swiper-wrapper > .swiper-slide {
    max-width: 640px;
    margin: auto;
}

.partnerArea__time {
    font-size: 1.4rem;
    color: #999999;
    font-family: "UD新ゴ B";
    text-align: right;
    margin-top: 6px;
}

.lyb-contents--news .lyb-contents__inner {
    position: relative;
}

.news-list {
    display: flex;
    gap: 8.3%;
}

.news-list__wrap {
    flex: 1 0 0%;
}

.news-list__select {
    width: 100%;
    margin-bottom: 20px;
}

.news-list__select .select__item {
    width: 100%;
}

.news-list__item:not(:first-child) {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #D6D9E0;
}

.news-list__context {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-list__data {
    font-size: 1.8rem;
    font-weight: 500;
    color: #7F7F9B;
    font-family: 'Volte Regular';
    white-space: nowrap;
}

.top-label-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-list__text {
    margin-top: 15px;
}

.news-list__text > a {
    font-family: "UD新ゴ M";
    color: #000;
}

@media screen and (min-width: 1024px) {
    .news-list__tab {
        width:212px;
    }

    .news-list__tab .swiper-wrapper {
        display: block;
        height: auto;
    }

    .news-list__tab .swiper-slide + li {
        margin-top: 10px;
    }

    .news-list__tab .swiper-slide > button {
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
        height: 52px;
        padding: 2px 10px 2px 53px;
        font-size: 1.8rem;
        font-family: "UD新ゴ M";
        text-decoration: none;
        color: #000048;
        border-radius: 100px;
        transition: all 0.2s var(--transition-default);
        appearance: none;
        background-color: transparent;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .news-list__tab .swiper-slide > button::before {
        content: "";
        position: absolute;
        left: 21px;
        top: calc(50% - 5px);
        width: 10px;
        height: 10px;
        background-color: #000048;
        border-radius: 100%;
        transition: all 0.2s var(--transition-default);
    }

    .news-list__tab .swiper-slide > button:hover,.news-list__tab .swiper-slide > button[aria-expanded="true"] {
        background-color: #D6D9E0;
    }

    .news-list__tab .swiper-slide > button[aria-expanded="true"]::before {
        background-color: #FFF;
    }

    .news-list__tab .swiper-slide > button[aria-expanded="true"]:hover {
        color: #FFF;
        background-color: #000048;
    }

    .news-list__tab .swiper-button-next,.news-list__tab .swiper-button-prev {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .news-list {
        display:block;
    }

    .news-list__tab {
        position: relative;
        margin: -30px -20px;
        padding: 20px;
        background-color: #F5F5F5;
    }

    .news-list__select::after {
        width: 19px;
        height: 19px;
        right: 5px;
        top: calc(50% - 9px);
    }

    .news-list__select .select__item {
        min-height: 30px;
        color: #000;
    }

    .news-list__tab .swiper-slide {
        width: auto;
    }

    .news-list__tab .swiper-slide > button {
        display: flex;
        align-items: center;
        height: 30px;
        padding: 1px 16px;
        font-size: 1.4rem;
        font-family: "UD新ゴ M";
        text-decoration: none;
        color: #000048;
        background-color: #FFF;
        border: 1px solid #D6D9E0;
        border-radius: 100px;
    }

    .news-list__tab .swiper-slide > button[aria-expanded="true"] {
        background-color: #D6D9E0;
    }

    .news-list__wrap {
        margin-top: 42px;
    }

    .news-list__item:not(:first-child) {
        margin-top: 16px;
        padding-top: 16px;
    }

    .news-list__context {
        align-items: flex-start;
    }

    .news-list__data {
        padding: 4px 0;
        font-size: 1.3rem;
    }

    .news-list__text {
        margin-top: 13px;
        font-size: 1.4rem;
    }

    .news-list .swiper-button-next,.news-list .swiper-button-prev {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: auto;
        bottom: 24px;
        width: 22px;
        height: 22px;
        margin-top: 0;
        z-index: 10;
        cursor: pointer;
        background: #F2F4F8;
        box-shadow: 0 3px 6px rgba(0,0,0,0.16);
        border-radius: 100px;
    }

    .news-list .swiper-button-prev {
        left: 0;
    }

    .news-list .swiper-button-next {
        right: 0;
    }

    .news-list .swiper-button-next::after,.news-list .swiper-button-prev::after {
        content: "\e900";
        font-size: 16px;
        font-family: 'linebiz-icon';
        color: #000048;
        transform: scale(0.5);
    }

    .news-list .swiper-button-prev::after {
        transform: rotate(180deg) scale(0.5);
    }

    .news-list .swiper-button-next.swiper-button-disabled,.news-list .swiper-button-prev.swiper-button-disabled {
        opacity: 0;
    }
}

.pagination {
    margin-top: 60px;
    text-align: center;
}

.pagination__list {
    display: inline-flex;
    gap: 20px;
}

.pagination__list > li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 27px;
    height: 27px;
    font-size: 1.4rem;
    color: #000048;
}

.pagination__list > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-family: "UD新ゴ M";
    color: #C6C6D8;
}

.pagination__list > .pagination__prev > a,.pagination__list > .pagination__next > a,.pagination__list > .pagination__first > a,.pagination__list > .pagination__last > a {
    position: relative;
    color: #000048;
}

.pagination__list > .pagination__prev > a::before,.pagination__list > .pagination__next > a::before,.pagination__list > .pagination__first > a::before,.pagination__list > .pagination__last > a::before,.pagination__list > .pagination__first > a::after,.pagination__list > .pagination__last > a::after {
    content: "\e900";
    font-size: 10px;
    font-family: 'linebiz-icon';
}

.pagination__list > .pagination__first > a::before,.pagination__list > .pagination__last > a::before,.pagination__list > .pagination__first > a::after,.pagination__list > .pagination__last > a::after {
    margin: 0 -2px;
}

.pagination__list > .pagination__prev > a::before,.pagination__list > .pagination__first > a::before,.pagination__list > .pagination__first > a::after {
    transform: rotate(180deg);
}

.pagination__list > .pagination__disabled > a {
    color: #C6C6D8;
    pointer-events: none;
}

@media (hover: hover) {
    .pagination__list > li > a:hover {
        color:#000048;
    }
}

@media screen and (max-width: 1023px) {
    .pagination__list {
        gap:10px;
    }
}

.cp_actab {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #000048;
    letter-spacing: 0.23rem
}

.cp_actab input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.cp_actab label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 43px;
    position: relative;
    line-height: 1.4;
    padding: 9px 50px 9px 20px;
    cursor: pointer;
    margin: 0 0 2px 0;
    background: #F2F4F8;
}

.cp_actab .cp_actab-content {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.35s;
    transition: max-height 0.35s;
    color: #333333;
    background: #ffffff;
}

.cp_actab .cp_actab-content p {
    padding: 9px 20px;
    line-height: 1.4;
}

.cp_actab input:checked ~ .cp_actab-content {
    max-height: 20em;
}

.cp_actab label::after,.cp_actab label::before {
    line-height: 3;
    position: absolute;
    content: "";
    display: block;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    background: #000048;
}

.cp_actab input[type=checkbox] + label::after {
    display: block;
    width: 1px;
    height: 9px;
    right: 25px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.cp_actab input[type=checkbox] + label::before {
    display: block;
    top: 0px;
    bottom: 0;
    margin: auto 0;
    width: 9px;
    height: 1px;
    right: 21px;
}

.cp_actab input[type=checkbox]:checked + label::after,.cp_actab input[type=checkbox]:checked + label::before {
    transform: rotate(315deg);
}

.cp_actab__wrap .pageH2Area__tit01 .pageH2Area__tit01__txt,.pageBorderBox02 .pageH2Area__tit01 .pageH2Area__tit01__txt {
    line-height: 1.2667;
    letter-spacing: .42rem
}

.cp_actab__wrap .pageH2Area--tit01 {
    margin-bottom: 39px
}

.cp_actab__wrap .pageH2Area__tit01:after,.pageBorderBox02 .pageH2Area__tit01:after {
    right: 3px
}

.cp_actab__wrap .pageH2Area__tit01:before,.pageBorderBox02 .pageH2Area__tit01:before {
    left: 3px
}

@media screen and (max-width: 1023px) {
    .cp_actab label {
        line-height:1.75;
        padding: 6.4px 55px 6.4px 20px;
        letter-spacing: 0.2rem
    }

    .cp_actab__wrap .pageH2Area {
        margin-bottom: 17px;
    }

    .cp_actab__wrap .pageH2Area__tit01 .pageH2Area__tit01__txt {
        letter-spacing: 0.45rem;
        margin-left: -3px;
        margin-right: -7px;
    }

    .cp_actab input[type=checkbox] + label::after {
        width: 2px;
        height: 12px;
        right: 25px;
    }

    .cp_actab input[type=checkbox] + label::before {
        width: 12px;
        height: 2px;
        right: 20px;
    }
}

a.newsCard {
    margin-top: 60px;
    width: 100%;
    max-width: 236px;
    border-radius: 6px;
    background-color: #fff;
    display: block;
    box-shadow: 2px 2px 8px 0px rgba(90,90,90,0.32);
}

a.newsCard:hover {
    text-decoration: none!important
}

.newsCard__img {
    width: 100%;
    aspect-ratio: 1/0.6653;
    overflow: hidden;
    border-radius: 6px;
}

.newsCard__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition : 0.3s;
}

a.newsCard:hover .newsCard__img img {
    transform: scale(1.05,1.05)
}

.newsCard__txt {
    padding: 18.5px 12px 20.55px 12px;
}

.newsCard__date {
    color: #7F7F9B;
    display: block;
    font-size: 15px;
    line-height: 1;
    font-family: "UD新ゴ B";
    letter-spacing: 0.13rem;
}

.newsCard__date span {
    font-family: 'Volte Regular';
}

.newsCard__date.newsCard__marker:before {
    content: "æ›´æ–°æ—¥";
    display: inline-flex;
    border: 1px solid #7F7F9B;
    border-radius: 6px;
    letter-spacing: .06rem;
    font-size: 12px;
    font-family: "UD新ゴ DB";
    height: 16px;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0.2px 1.8px 0 3px;
    margin-right: 5px;
    line-height: 1;
}

.newsCard__date02 {
    display: block;
    margin-top: 11px;
    position: relative;
    padding-left: 55px;
    line-height: 1.7143;
    letter-spacing: .056rem;
    font-size: 14px;
    font-family: "UD新ゴ DB";
    color: #000000;
}

.newsCard__date02:before {
    content: "æ›´æ–°æ—¥";
    line-height: 0.0;
    display: inline-flex;
    position: absolute;
    left: 0;
    border: 1px solid #000;
    border-radius: 6px;
    top: 2px;
    letter-spacing: .06rem;
    font-size: 12px;
    font-family: "UD新ゴ DB";
    height: 18px;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0 0 0px 2px;
}

.newsCard__tit {
    transition: 0.2s;
    display: block;
    margin-top: 15px;
    line-height: 1.3333;
    letter-spacing: .072rem;
    font-size: 18px;
    font-family: "UD新ゴ DB";
    color: #000000;
}

.newsCard__tag__wrap {
    margin-top: 16px
}

.newsCard__tag {
    display: inline-block;
    background-color: #E4E8F0;
    border-radius: 27px;
    padding: 6px 12px;
    line-height: 1;
    letter-spacing: .033rem;
    font-size: 11px;
    font-family: "UD新ゴ M";
    color: #000048;
}

@media screen and (max-width: 1023px) {
    a.newsCard {
        width:100%;
        margin-right: auto;
        margin-left: auto;
        max-width: 300px;
    }

    .newsCard__img {
        aspect-ratio: 1/0.75825;
    }

    .newsCard__txt {
        padding: 17px 8px 29px 8px;
    }

    .newsCard__date {
        letter-spacing: 0.1rem;
        font-size: 22px
    }

    .newsCard__tit {
        margin-top: 16px;
        line-height: 1.5;
        letter-spacing: .064rem;
        font-size: 16px;
        font-family: "UD新ゴ DB";
    }

    .newsCard__tag {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-height: 20px;
        letter-spacing: .03rem;
        font-size: 10px;
    }

    .newsCard__img {
        aspect-ratio: 1/0.6667;
    }

    .newsCard__img img {
        transform: inherit
    }

    a.newsCard:hover .newsCard__img img {
        transform: scale(1.05,1.05)
    }
}

.table__common {
    width: 100%;
    letter-spacing: 0.02rem;
}

.table__common td,.table__common th {
    text-align: left;
    font-family: "UD新ゴ M";
    line-height: 1.25;
    letter-spacing: 0.064rem;
}

.table__common thead th {
    padding: 15px 21px;
}

.table01 thead th {
    background: #000048;
    color: #fff;
    font-family: "UD新ゴ M";
    text-align: left;
    border-right: 2px solid #fff;
}

.table01--small {
    font-size: 12px;
    line-height: 1.66;
    letter-spacing: .048rem;
}

.table01 thead th:last-child {
    border: none;
}

.table01 tbody th,.table01 tbody td {
    background: #F2F4F8;
    color: #000000;
    padding: 22.6px 20.5px 18.5px 20.5px;
}

.table01 tbody th {
    width: 327px;
    color: #fff;
    background-color: #000048;
    border-right: 2px solid #fff;
    vertical-align: top;
}

.table01 tbody td {
    border-right: 2px solid #fff;
}

.table01 thead + tbody tr:first-child {
    border-top: 2px solid #fff;
}

.table01 tbody td:last-child {
    border: none;
}

.table01 tbody td[rowspan] {
    border-left: 2px solid #fff;
}

.table01 tbody tr {
    border-top: 2px solid #fff;
}

.table01 tbody tr:first-child {
    border: none;
}

.table01__wrap {
    overflow: hidden;
    border-radius: 6px;
    margin: 14px 0;
}

.table02 th {
    background: #F2F4F8;
    width: 327px;
    padding: 23px 22px 19px 21px;
}

.table02 td {
    padding: 23px 22px 19px 23px;
    line-height: 1.25;
    letter-spacing: .064rem;
    font-size: 16px;
}

.table02 tr:first-child th,.table02 tr:first-child td {
    padding-top: 21px;
}

.table02 tr {
    border-bottom: 2px solid #DDDDDD;
}

.table02 tr:first-child {
    border-top: 2px solid #DDDDDD;
}

@media screen and (max-width: 1023px) {
    .table01__wrap {
        overflow-x:auto;
        border-radius: 6px 0 0 6px;
        margin-top: 41px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .table01 {
        width: 1200px;
        position: relative;
    }

    .table01 thead th:first-child {
        border-radius: 6px 0 0 0;
    }

    .table01 thead th:last-child {
        border-radius: 0 6px 0 0;
    }

    .table01 tbody tr:last-child th {
        border-radius: 0 0 0 6px;
    }

    .table01 tbody tr:last-child td:last-child {
        border-radius: 0 0 6px 0;
    }

    .table01 tbody tr th {
        width: 400px;
    }

    .table__common thead th {
        padding: 16.25px 21px;
    }

    .table02 tbody,.table02,.table02 thead,.table02 tr,.table02 td,.table02 th {
        display: block;
        width: 100%;
    }

    .table02 tr {
        border-bottom: 2px solid #DDDDDD;
    }

    .table02 tr:first-child {
        border-top: 2px solid #DDDDDD;
    }
}

.pageCompanyBox {
    padding: 38px 67px 48px 38px;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    border: 2px solid #E4E8F0;
    border-radius: 6px
}

.pageCompanyBox__img {
    width: 203px;
    display: flex;
    align-items: center
}

.pageCompanyBox__img img {
    width: 100%;
    margin-top: 9px
}

.pageCompanyBox__txt {
    width: calc(100% - 203px);
    padding-left: 43px
}

.pageCompanyBox__txt a {
    font-family: "UD新ゴ M";
}

.pageCompanyBox__txt table,.pageCompanyBox__txt tbody {
    display: block
}

.pageCompanyBox__txt table tr {
    min-height: 46px;
    display: flex;
    border-bottom: 1px solid #E4E8F0
}

.pageCompanyBox__txt table th {
    padding-right: 20px;
    font-size: 18px;
    line-height: 1.3333;
    letter-spacing: .072rem;
    width: 111px;
    padding-top: 12px;
    color: #333364;
    font-family: "UD新ゴ DB";
}

.pageCompanyBox__txt table td {
    width: calc(100% - 121px);
    padding-top: 8px;
    font-family: "UD新ゴ M";
    line-height: 1.75;
    letter-spacing: .064rem;
}

.pageCompanyBox__txt table th,.pageCompanyBox__txt table td {
    text-align: left;
    margin-bottom: 9px
}

.pageCompanyBox a.pageTxtLink__blank01:after {
    display: inline-block;
    margin-left: 11px;
}

.pageCompanyBox a.pageTxtLink__blank01 {
    color: #000000;
    line-height: 1.75;
    letter-spacing: .064rem;
    font-weight: normal;
    transition: color 0.4s;
}

.pageCompanyBox a.pageTxtLink__blank01:hover {
    color: #003E9A;
}

@media screen and (max-width: 1023px) {
    .pageCompanyBox {
        padding:41px 20px 20.34px 20px;
        flex-direction: column;
        align-items: center;
    }

    .pageCompanyBox__img {
        max-width: 202px;
        width: 100%;
        padding-top: 0;
        margin-bottom: 17px;
        margin-top: 0
    }

    .pageCompanyBox__img img {
        margin-top: 0
    }

    .pageCompanyBox__txt {
        width: 100%;
        padding-left: 0
    }

    .pageCompanyBox__txt table th {
        padding-right: 20px;
        width: 100%;
        padding-top: 22px;
        line-height: 1.5;
        letter-spacing: .064rem;
        font-size: 16px;
    }

    .pageCompanyBox__txt table td {
        width: 100%;
        display: block;
        padding-top: 7px;
        line-height: 2;
        letter-spacing: .056rem;
        font-size: 14px;
        margin-bottom: 14px;
    }

    .pageCompanyBox__txt table tr {
        min-height: inherit;
        display: block
    }

    .pageCompanyBox__txt table tr {
        border-bottom: 2px solid #E4E8F0
    }

    .pageCompanyBox a.pageTxtLink__blank01:after {
        display: inline-block;
        margin-left: 9px;
        margin-bottom: -3px
    }
}

.pageRowBox {
    margin-top: 60px;
    padding: 49px 50px 48.43px 50px;
    background-color: #F7F7F7;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-radius: 6px;
}

.pageRowBox > div {
    display: flex;
    min-height: 31px
}

.pageRowBox__tit {
    line-height: 1.3333;
    letter-spacing: .072rem;
    font-size: 18px;
    font-family: "UD新ゴ B";
    width: 85px;
    padding: 3px 20px 0px 12px;
    position: relative
}

.pageRowBox__tit:before {
    width: 4px;
    height: 24px;
    background: rgb(0,0,72);
    background: linear-gradient(20deg,rgba(0,0,72,1) 60%,rgba(127,127,155,1) 60%);
    display: block;
    position: absolute;
    left: 0;
    top: 3px;
    content: "";
}

.pageRowBox__txt {
    width: calc(100% - 85px);
    padding-top: 0px;
}

.pageRowBox__txt .pageTxtList {
    margin-top: 0
}

.pageRowBox__txt ul.pageTxtList li.pageTxtList__item {
    line-height: 1.7;
    letter-spacing: 0rem;
    font-size: 14px;
    padding-left: 8px;
    position: relative;
    margin-top: 0
}

.pageRowBox__txt ul.pageTxtList li.pageTxtList__item:before {
    content: "ãƒ»";
    position: absolute;
    left: -5px
}

@media screen and (max-width: 1023px) {
    .pageRowBox {
        margin-top:21px;
        padding: 40px 20px 38px 20px;
        gap: 24px;
    }

    .pageRowBox__tit:before {
        top: 0
    }

    .pageRowBox__tit {
        line-height: 1.5;
        letter-spacing: .064rem;
        font-size: 16px;
        width: 100%;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 20px;
    }

    .pageRowBox > div {
        flex-direction: column;
    }

    .pageRowBox__txt {
        width: 100%;
        padding-top: 0px;
    }

    .pageRowBox__txt ul.pageTxtList li.pageTxtList__item {
        padding-left: 0;
        letter-spacing: -0.02rem
    }

    .pageRowBox__txt ul.pageTxtList li.pageTxtList__item:before {
        position: static;
    }
}

.pageColumn3Box {
    margin-top: 30px;
    padding: 43px 15px 29.91px;
    background: #F7F7F7;
    border-radius: 6px;
    display: flex;
    justify-content: center;
}

.pageColumn3Box > div {
    width: calc(100% / 3)
}

.pageColumn3Box__tit span {
    line-height: 0.9;
    letter-spacing: .284rem;
    font-size: 71px;
    font-family: "UD新ゴ B";
    display: inline-block;
}

.pageColumn3Box__tit {
    line-height: 1.1;
    letter-spacing: .144rem;
    font-size: 36px;
    font-family: "UD新ゴ B";
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 74.12px;
    margin-bottom: 23px;
}

.pageColumn3Box__tit .pageColumn3Box__tit--up {
    width: 73.79px;
    height: 74.12px;
    display: inline-block;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    margin-left: 4px;
}

.pageColumn3Box__txt {
    line-height: 1.3333;
    letter-spacing: .072rem;
    font-size: 18px;
    text-align: center
}

.pageColumn3Box__txt span {
    line-height: 1.5;
    letter-spacing: .064rem;
    font-size: 16px;
}

@media screen and (max-width: 1023px) {
    .pageColumn3Box {
        border-radius:none;
        margin-top: 19px;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 30px;
        background-color: transparent
    }

    .pageColumn3Box > div {
        width: 100%;
        background: #F7F7F7;
        border-radius: 6px;
        overflow: hidden;
        padding: 53px 20px 40.91px
    }
}

.pageBorderBox02 .pageH2Area--tit01 {
    margin-top: 0px;
    margin-bottom: 35px
}

.pageBorderBox02 {
    margin-top: 50px;
    padding: 31px 20px 49px;
    border: 2px solid #E4E8F0;
    border-radius: 6px;
}

.pageBorderBox02__txt {
    line-height: 1.6923;
    letter-spacing: .053rem;
    font-size: 13px;
    max-width: 788px;
    width: 100%;
    margin: 0 auto
}

@media screen and (max-width: 1023px) {
    .pageBorderBox02 {
        margin-top:30px;
        padding: 36px 19.5px 49px;
    }

    .pageBorderBox02 .pageH2Area__tit01 .pageH2Area__tit01__txt {
        letter-spacing: 0.45rem;
    }

    .pageBorderBox02 .pageH2Area__tit01:before {
        left: 0
    }

    .pageBorderBox02 .pageH2Area--tit01 {
        margin-bottom: 23px;
    }

    .pageBorderBox02__txt {
        line-height: 1.4286;
        letter-spacing: -0.005rem;
        font-size: 14px;
    }
}

@media screen and (max-width: 1023px) {
    .contents.fullwide {
        padding-right:0!important;
        padding-left: 0!important
    }
}

.categoryTag,.categoryTag--red,.categoryTag--navy,.categoryTag--gray {
    position: relative;
    overflow: hidden;
    background-color: #000048 !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 2px 12px;
    min-height: 29px;
    border-radius: 100px;
    font-size: 1.1rem;
    color: #FFF !important;
}

.categoryTag {
    background: linear-gradient(130deg,#06C755 0%,#06C755 13px,#000048 13px,#000048 100%) !important;
}

.categoryTag--red {
    background: linear-gradient(130deg,#FF0033 0%,#FF0033 13px,#000048 13px,#000048 100%) !important;
}

.categoryTag--gray {
    color: #000048 !important;
    background-color: #E4E8F0 !important;
}

.seminar-label-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.seminar-label,.seminar-label--close,.seminar-label--close-soon,.seminar-label--end,.seminar-label--coming,.seminar__label--now {
    display: inline-block;
    align-self: flex-start;
    font-size: 1.1rem;
    line-height: 1;
    padding: 6px 12px;
    background: #003E9A;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    float: none;
    border-radius: 3px;
}

.seminar-label--close {
    background: #393939;
    color: #ffffff;
}

.seminar-label--close-soon {
    background: #FF6851;
    color: #ffffff;
}

.seminar-label--end {
    background: #E4E8F0;
    color: #000048;
}

.seminar-label--coming {
    border: 1px solid #003E9A;
    padding: 5px 12px;
    background: #ffffff;
    color: #003E9A;
}

.seminar__label--now {
    border: 1px solid #003E9A;
    padding: 5px 12px;
    background: #ffffff;
    color: #003E9A;
}

.seminar-label--online {
    padding-left: 21px;
    font-size: 1.2rem;
    color: #333;
    background: url(/static/jp/seminar/img/ico_online.svg) -2px 50% no-repeat;
}

.anchorLinkArea {
    padding-inline:70px;background-color: #F2F4F8;
}

.anchorLinkArea__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

.anchorLinkArea__list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(252px,auto));
    justify-content: center;
    grid-gap: 20px 28px;
}

.anchorLinkArea__btn {
    margin-top: 0;
}

.anchorLinkArea__btn > a {
    width: 100%;
    min-height: 44px;
    font-family: "UD新ゴ M";
    line-height: 1.2;
    color: #000048;
    border: none;
    transition: all 0.6s;
}

.anchorLinkArea__btn > a:hover {
    color: #FFF;
    transition: all 0.6s;
}

.anchorLinkArea__btn > a:after {
    content: "";
    position: absolute;
    top: calc(50% - 14px);
    right: 13px;
    display: inline-block;
    width: 27px;
    height: 27px;
    color: #000048;
    background: url(/static/jp/common/img/ico_rightArrow01.svg) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
    transform: rotate(90deg);
    transition: 0.5s;
}

.anchorLinkArea__btn > a:hover:after {
    background: url(/static/jp/common/img/ico_rightArrow02.svg) 0 0 no-repeat;
}

.anchorLinkArea__btn > a > span::after {
    content: none;
}

@media screen and (max-width: 1023px) {
    .anchorLinkArea {
        padding-inline:20px;
    }

    .anchorLinkArea__list {
        grid-template-columns: repeat(auto-fit,minmax(335px,auto));
        grid-gap: 10px;
    }

    .anchorLinkArea__btn > a {
        justify-content: flex-start;
    }
}

.serviceH2Area {
    margin: 70px auto 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.serviceH2Area__tit {
    letter-spacing: 0.32rem;
    padding: 0 46px;
    font-size: 3rem;
    line-height: 1.4;
    font-family: "UD新ゴ B";
    color: #404040;
    text-align: center;
    display: inline-flex;
    position: relative;
}

.serviceH2Area__tit:after,.serviceH2Area__tit:before {
    background-color: #000048;
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    content: "";
    width: 22px;
    height: 3px;
}

.serviceH2Area__tit:before {
    left: 0;
}

.serviceH2Area__tit:after {
    right: 0;
}

.news {
    padding-left: 75px;
    padding-right: 75px;
    width: 100%;
}

.news__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-family: "UD新ゴ B";
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news__text,.news__text a,.news__day {
    font-family: "UD新ゴ B";
    position: relative;
    line-height: 1.82;
    font-size: 1.4rem;
    letter-spacing: 0.04rem;
}

.news__text {
    width: 82%;
}

.news__day {
    width: 16%;
    font-family: 'Volte Regular';
}

.mt-24 {
    margin-top: 24px;
}

@media screen and (max-width: 1023px) {
    .news__box {
        display:block;
    }

    .news__text {
        text-align: left;
        width: 100%;
    }

    .news {
        padding-left: 0;
        padding-right: 0;
    }

    .news__day {
        text-align: left;
        width: 100%;
    }

    .serviceH2Area__tit:before,.serviceH2Area__tit:after {
        width: 16px
    }

    .serviceH2Area__tit {
        font-size: 2.0rem;
        padding: 0 29px;
        min-width: 175px;
        z-index: 2;
        width: inherit;
        justify-content: center;
        line-height: 1.5;
        position: relative;
    }

    .serviceH2Area {
        margin: 30px auto 50px;
        position: relative;
        display: block;
        align-items: center;
        width: auto;
        font-size: 2.2rem;
        max-width: 277px;
    }
}

.conversion-box {
    padding: 0 40px 60px;
}

.conversion-box__inner {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 45px;
    margin-inline:auto;padding: 50px 7.5%;
    color: #03003E;
    background-color: #F2F4F8;
    border-radius: 6px;
}

.conversion-box__text-col {
    width: 525px;
}

.conversion-box__appeal {
    margin-top: 6px;
    font-size: 3.1rem;
    font-family: "UD新ゴ B";
}

.conversion-box__btn-col {
    flex: 1 0 0%;
}

.conversion-box__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 68px;
    font-size: 2.1rem;
    font-family: "UD新ゴ DB";
    text-decoration: none;
    color: #FFF;
    background-color: #F77911;
    border: 2px solid #F77911;
    border-radius: 100px;
    transition: all 0.2s var(--transition-default);
}

.conversion-box__btn-inner {
    position: relative;
}

@media (hover: hover) {
    .conversion-box__btn:hover {
        text-decoration:none;
        color: #F77911;
        background-color: #FFF;
    }
}

@media screen and (max-width: 1023px) {
    .conversion-box {
        display:block;
        padding: 0 20px 40px;
    }

    .conversion-box__inner {
        display: block;
        padding: 60px 50px 50px;
    }

    .conversion-box__text-col {
        width: auto;
        font-size: 1.4rem;
        text-align: center;
    }

    .conversion-box__appeal {
        margin-top: 16px;
        font-size: 2.4rem;
    }

    .conversion-box__btn-col {
        width: auto;
        margin-top: 16px;
    }

    .conversion-box__btn {
        max-width: 450px;
        height: 54px;
        margin-inline:auto;font-size: 1.6rem;
    }
}

.trd-comp-container > *,.trd-comp-container a {
    font-family: sans-serif;
}

.aboutAccount + .contents:not(.contents--bottomMenu) {
    margin-top: 0px;
}

.contents--basicFunctions {
    margin-top: 0px;
}

.contents + .contents.contents--nextAcctLinkElm {
    margin-top: 140px;
}

.contents.contents--encloseAccountLink + .contents.contents--nextAcctLinkElm {
    margin-top: 0px;
}

.contents + .contents.contents--nextAcctLinkElm {
    margin-top: 130px;
}

.contents + .contents.contents--Case {
    margin-top: 0px;
}

.contents + .contents.contents--option {
    margin-top: 0px;
}

.contents + .contents.contents--FeePlan {
    margin-top: 0px;
}

.contents + .contents.contents--sales {
    margin-top: 0px;
}

.aboutAccount + .contents:not(.contents--bottomMenu):not(.contents--serviceOther) .contents__inner:not(.contents__inner--confirm) {
    padding-bottom: 0px;
}

.contents--bottomMenu .contents__inner {
    padding-bottom: 70px;
}

.contents--encloseAccountLink + .contents--nextAcctLinkElm .contents__inner {
    padding-top: 70px;
    padding-bottom: 0;
}

.contents--basicFunctions .contents__inner {
    padding-top: 70px;
    padding-bottom: 0;
}

.contents__inner--case {
    padding-bottom: 70px;
}

.contents--confirm + .contents .contents__inner--case {
    padding-top: 32px;
}

.contents--Case .contents__inner {
    padding-bottom: 0;
}

.contents--adsCase .contents__inner {
    padding-bottom: 0;
}

.contents--adsFlow .contents__inner {
    padding-bottom: 0;
}

.contents--adsPartner .contents__inner {
    padding-bottom: 0;
}

.contents--adsDld .contents__inner {
    padding-bottom: 0;
}

.contents--planInfo .contents__inner {
    padding-bottom: 0;
}

.contents .contents__inner--pb0 {
    padding-bottom: 0;
}

.contents__inner--confirm {
    padding-bottom: 68px;
}

.serviceH1Area .topicpath {
    width: 100%;
    position: relative;
    top: calc(1.6rem * 1.6 + 10px);
    left: 0;
    padding-left: 50px;
    text-align: left;
    z-index: 1;
}

.serviceH1Area .topicpath--ab {
    position: absolute;
    top: 6px;
    left: 30px;
    padding: 0;
}

.serviceH1Area {
    position: relative;
    padding: 0px;
    height: auto;
}

.serviceH1Area--l {
    margin-top: 7px;
}

.serviceH1Area--research {
    background: url("/static/jp/service/line-research/img/bg_index01.jpg") 50% 50% no-repeat;
    background-size: cover;
}

.serviceH1Area--platform {
    background: url("/static/jp/service/line-ads/img/bg_index01.jpg") 50% 50% no-repeat;
    background-size: cover;
}

.serviceH1Area--promotion {
    background: url("/static/jp/service/line-sales-promotion/img/bg_index01.jpg") 50% 50% no-repeat;
    background-size: cover;
}

.serviceH1Area--account {
    margin-top: calc(-1 * (1.2rem * 1.6 + 15px));
}

.serviceH1Area--lineAds {
    margin-top: calc(-1 * (1.2rem * 1.6 + 15px));
}

.serviceH1Area--media {
    background: url("/static/jp/service/media-service/img/bg_index01.jpg") 50% 50% no-repeat;
    background-size: cover;
}

.serviceH1Area__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.serviceH1Area__lead {
    margin-top: 50px;
    color: #1ebd92;
    font-size: 2rem;
    font-family: "UD新ゴ B";
    text-align: center;
}

.serviceH1Area__txt .serviceH1Area__lead {
    margin-top: 0px;
    color: #ffffff;
    font-size: 2rem;
    font-family: "UD新ゴ M";
    text-align: center;
}

.serviceH1Area__txt--pr {
    position: relative;
}

.serviceH1Area__tit {
    position: relative;
    margin-top: 30px;
    padding-bottom: 30px;
    font-size: 4rem;
    font-family: "UD新ゴ B";
    text-align: center;
}

.serviceH1Area__tit:after,.serviceH1Area__tit:before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 8px;
    height: 5px;
    border-radius: 8px;
}

.serviceH1Area__tit:before {
    background: rgba(33,181,203,0.8);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.serviceH1Area__tit:after {
    background: rgba(30,189,146,0.8);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.serviceH1Area__tit--2line span {
    display: block;
    font-size: 1.6rem;
}

.serviceH1Area__txt .serviceH1Area__bkAllBlock {
    display: block;
}

.mainVisual {
    background-image: url(/static/jp/service/line-official-account/img/bg_index01.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 58.59%;
}

.mainVisual--flyer {
    background-image: url(/static/jp/service/line-flyer/img/bg_flyer02.jpg);
}

.mainVisual--research {
    background-image: url(/static/jp/service/line-research/img/bg_research02.jpg);
}

.mainVisual--media {
    background-image: url(/static/jp/service/media-service/img/bg_media.jpg);
}

.mainVisual--lineAds {
    background-image: url(/static/jp/service/line-ads/img/bg_index02.jpg);
}

.serviceH1Area__box .serviceH1Area__tit {
    font-size: 4.6rem;
    margin-top: 5px;
    padding-bottom: 6px;
    text-align: center;
}

.serviceH1Area__box .serviceH1Area__tit--2line {
    margin-top: 20px;
    padding-bottom: 20px;
}

.serviceH1Area__box .serviceH1Area__tit--l {
    margin-top: 25px;
}

.serviceH1Area__box .serviceH1Area__tit--img {
    width: 246px;
    margin: 22px auto 0;
}

.serviceH1Area__box .serviceH1Area__tit::after,.serviceH1Area__box .serviceH1Area__tit::before {
    display: none;
}

.serviceH1Area__logo--pc {
    display: initial;
}

.serviceH1Area__logo--sp {
    display: none;
}

.serviceH1Area__iconArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
}

.serviceH1Area__icon {
    margin-left: 32px;
}

.serviceH1Area__icon:first-child {
    margin-left: 0;
}

.serviceH1Area__icon a:hover,.serviceH1Area__icon .serviceH1Area__iconImg:hover {
    opacity: 0.6;
}

.serviceH1Area__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #0c0c0c;
    font-size: 1.2rem;
}

.serviceH1Area__txt {
    margin: 0 auto;
    max-width: 530px;
    text-align: center;
}

.serviceH1Area__box .serviceH1Area__txt {
    font-size: 1.3rem;
    line-height: 2;
}

.serviceH1Area__box {
    display: flex;
    justify-content: space-between;
    min-height: 440px;
    overflow: hidden;
}

.serviceH1Area__box .serviceH1Area__txt--large {
    font-size: 1.4rem;
}

.serviceH1Area__txtWarp--white .serviceH1Area__txt {
    color: #333;
}

.serviceH1Area__txtWarp {
    background-image: url("/static/jp/service/line-official-account/img/bg_index03.gif");
    background-color: #535252;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 41.41%;
    min-width: 530px;
}

.serviceH1Area__txtWarp--white {
    background-image: url("/static/jp/service/img/bg_title01.png");
    background-color: #fcfcfc;
}

.serviceH1Area__txtWarp div.serviceH1Area__txt {
    color: #ffffff;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 52px 44px 40px 44px;
}

.serviceH1Area__txt .defaultBtn,.serviceH1Area__txt .researchContact__btn > a {
    margin-top: 0px;
    min-width: 260px;
}

.serviceH1Area__txt .serviceH__btn > a {
    display: inline-block;
    background-color: #ff6851;
    border: 2px solid #ff6851;
    padding: 8px 33px 9px 33px;
    min-width: 260px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: "UD新ゴ B";
    position: relative;
    color: #fff;
    border-radius: 50px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.serviceH1Area__txt .serviceH__btn > a:hover {
    color: #ff6851;
    background-color: #ffffff;
    border-color: #ff6851;
    text-decoration: none;
}

.serviceH1Area__txt .defaultBtn.serviceH__btn > a:hover .defaultBtn__arrow01:after {
    background-image: url(/static/jp/common/img/ico_rightArrow07.png);
}

.serviceH1Area__txt .serviceH__btn--or02 > a {
    background-color: #ff6851;
    border-color: #ff6851;
}

.serviceH1Area__txt .serviceH__btn--or02 > a {
    background-color: transparent;
    border: 2px solid #ffffff;
    margin-top: 0px;
}

.serviceH1Area__txt .serviceH__btn--or02 > a:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

.serviceH1Area__2ndLyrBtn:first-child > a {
    background-color: #ff6851;
    border-color: #ff6851;
}

.serviceH1Area__2ndLyrBtn:last-child > a:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

.serviceH1Area__2ndLyrBtn:last-child > a:hover {
    border-color: #ff6851;
}

.serviceH1Area__2ndLyrBtn > a {
    line-height: 2;
}

.serviceH1Area__2ndLyrBtnArea--research .serviceH1Area__2ndLyrBtn > a {
    line-height: 1.4;
}

.serviceH1Area__2ndLyrBtn > a:hover {
    background-color: #ffffff;
}

.serviceH1Area__2ndLyrBtn:nth-of-type(n + 2) {
    margin-left: 20px;
}

.serviceH1Area__2ndLyrBtn:first-child > a {
    width: 100%;
    margin: 0 auto 10px;
}

.serviceH1Area__2ndLyrBtn:last-child > a {
    width: 100%;
    margin: 0 auto;
}

.serviceH1Area__2ndLyrBtn > a:hover span {
    color: #ff6851;
}

.serviceH__btn .serviceH1Area__btn__arrow01 {
    color: #ffffff;
}

.serviceH__btn > a:hover .serviceH1Area__btn__arrow01 {
    color: #ff6851;
}

.serviceH__btn--or02 > a:hover .serviceH1Area__btn__arrow01 {
    color: #06C755;
}

.serviceH1Area__btn__arrow01:after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 17px;
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_rightArrow02.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.serviceH__btn > a:hover .serviceH1Area__btn__arrow01:after {
    background-image: url(/static/jp/common/img/ico_rightArrow07.png);
}

.serviceH1Area__2ndLyrBtn > a:hover .service2ndArrow01:after {
    background-image: url(/static/jp/common/img/ico_rightArrow07.png);
}

.serviceH__btn a:hover .serviceH__btn__arrow01:after {
    content: "";
    display: inline-block;
    margin-top: -0.1em;
    margin-left: 10px;
    margin-right: -10px;
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_rightArrow01.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.serviceH1Area__txt .serviceH__btn--or02 a:hover .serviceH1Area__btn__arrow01:after {
    background-image: url(/static/jp/common/img/ico_rightArrow01.png);
}

.serviceH1Area__txt .serviceH__btn--or a:hover .serviceH1Area__btn__arrow01:after {
    background-image: url(/static/jp/common/img/ico_rightArrow07.png);
}

.serviceH1Area__txt .serviceH1Area__btn__arrow01:after {
    margin-left: 12px;
}

.serviceH1Area__2ndLyrBtn .serviceH1Area__btn__arrow01 {
    position: relative;
}

.serviceH1Area__2ndLyrBtn .serviceH1Area__btn__arrow01:after {
    position: absolute;
    top: 6px;
    right: -16px;
}

.serviceH1Area__2ndLyrBtn .defaultBtn__arrow01.defaultBtn__2line:after {
    top: 20px;
    right: -20px;
}

.serviceH1Area__2ndLyrBtnArea .pc_br {
    display: block;
}

.serviceH1Area__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
}

.serviceH__btn--vertical {
    flex-direction: column;
}

.serviceH1Area__2ndLyrBtnArea {
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 26px;
}

.serviceH1Area__btn--flyer {
    margin-top: 84px;
}

.serviceH1Area__btn--media {
    margin-top: 53px;
}

.serviceH__btn--vertical .serviceH__btn--or02 {
    margin-top: 10px;
    margin-left: 0px;
}

.serviceH1Area__2ndLyrBtn {
    margin-left: 15px;
    width: 290px;
    margin: 0 auto;
    text-align: center;
}

.serviceH1Area__2ndLyrBtn a {
    display: inline-block;
    border: 2px solid #ff6851;
    background: #ff6851;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
    color: #fff;
    border-radius: 50px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
    padding: 5px 30px 5px;
}

.serviceH1Area__2ndLyrBtn a:hover {
    text-decoration: none;
}

.serviceH1Area__2ndLyrBtn a span {
    position: relative;
}

.service2ndArrow01:after {
    position: absolute;
    top: 0;
    right: -24px;
    bottom: 0;
    margin: auto;
    content: "";
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_rightArrow02.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.serviceH1Area__img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-240%,-46%);
    transform: translate(-240%,-46%);
}

.serviceH3Area {
    margin: 100px auto 50px;
    max-width: 960px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.serviceH3Area__tit {
    padding: 0 30px;
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
    color: #21b5ca;
    background: -webkit-linear-gradient(0deg,#21b5ca,#1ebd92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.serviceH3Area:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #21b5ca;
}

.serviceH3Area:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #1ebd92;
}

.servicePoint {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: flex-start;
    padding-left: 83px;
    padding-right: 83px;
}

.servicePoint > div:nth-of-type(2) {
    margin-left: 70px;
}

.servicePoint__imgBox {
    display: block;
    width: 450px;
    max-width: 450px;
}

.servicePoint__img {
    text-align: center;
}

.servicePoint__txtBox {
    width: 499px;
}

.servicePoint__point {
    color: #06C755;
    position: relative;
    margin-top: calc(76px - (1em * 1.3));
    padding-left: 24px;
    z-index: 2;
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
}

.servicePoint__pointNum {
    padding-left: 15px;
    font-size: 7.2rem;
}

.servicePoint__point:after,.servicePoint__point:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 5px;
    border-radius: 8px;
}

.servicePoint__point:after {
    left: 5px;
    background: rgba(30,189,146,0.8);
}

.servicePoint__point:before {
    left: 0;
    background: rgba(33,181,203,0.8);
}

.servicePoint__target {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    color: #1ebd92;
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
}

.servicePoint__target:after,.servicePoint__target:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 5px;
    border-radius: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.servicePoint__target:after {
    left: 5px;
    background: rgba(30,189,146,0.8);
}

.servicePoint__target:before {
    left: 0;
    background: rgba(33,181,203,0.8);
}

.servicePoint__tit {
    color: #06C755;
    position: relative;
    margin-top: calc(76px - (1em * 1.3));
    padding-left: 24px;
    z-index: 2;
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
}

.servicePoint__tit::before {
    display: block;
    content: "";
    position: absolute;
    top: 0.3em;
    left: 0;
    width: 4px;
    height: calc(100% - 0.8em);
    background-color: #06C755;
}

.servicePoint__tit::after {
    content: "";
    display: block;
    width: 97px;
    height: 74px;
    position: absolute;
    bottom: 0.3em;
    right: 0;
    z-index: -1;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.servicePoint__tit__line2 {
    margin-top: calc(76px - ((1.5em * 2)));
}

.servicePoint__txt {
    margin-top: 10px;
}

.servicePoint__txtBox .servicePoint__txt {
    margin-top: 30px;
}

.serviceList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
}

.serviceList__item {
    background: #fff;
    width: calc(100% / 3 - 20px);
    margin-left: 30px;
    padding: 3%;
    border-radius: 4px;
}

.serviceList__item:nth-child(3n + 1) {
    margin-left: 0;
}

.serviceList__item:nth-child(n + 4) {
    margin-top: 30px;
}

.serviceList__img {
    max-width: 305px;
    margin: 0 auto;
}

.serviceList__tit {
    margin-top: 40px;
    font-size: 2rem;
    font-family: "UD新ゴ B";
    text-align: center;
}

.serviceList__txt {
    margin-top: 20px;
}

.serviceList__btn {
    margin-top: 20px;
    text-align: center;
}

.serviceList__btn > a {
    position: relative;
    display: inline-block;
    background: #fff;
    border: 1px solid #d0d0d0;
    padding: 10px 15%;
    color: #111;
    font-size: 1.3rem;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 30px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.serviceList__btn > a.serviceList__icoBlank01:after {
    margin-left: 5px;
    width: 12px;
    height: 12px;
    background: url("/static/jp/common/img/ico_blank01.png") 0 0 no-repeat;
    background-size: contain;
}

.serviceList__btn > a:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow01.png") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.serviceList__btn > a:hover {
    color: #06C755;
}

.contents__serviceTop .contents__inner--com {
    padding: 60px 0 40px;
}

.contents__inner--serviceTop {
    padding: 60px 0 40px;
}

.serviceTopList {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.serviceTopList__com {
    margin-top: 50px;
}

.serviceTopH2Area {
    width: 100%;
    max-width: 940px;
    margin: 0px auto 60px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.serviceTopH2Area--first {
    margin-top: 0;
}

.serviceTopH2Area:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #333;
}

.serviceTopH2Area:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #333;
}

.serviceTopH2Area__tit {
    padding: 0 50px;
    display: inline-block;
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
    color: #444444;
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.serviceTopTxt {
    text-align: center;
    margin: 50px 0 0;
    font-size: 14px;
    color: #444444;
}

.serviceTopH2Area + .serviceTopTxt,.serviceTopH2Area + .pageTxt {
    margin-top: -10px;
    margin-bottom: 60px;
}

.serviceCtns {
    padding-top: 0px;
    width: 100%;
}

.serviceCtns__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.contents--serviceOther {
    border-bottom: 1px solid #d0d0d0;
}

.contents--serviceOther .contents__inner--serviceTop {
    padding: 100px 0 40px;
}

.contents--serviceOther .serviceCtns {
    padding-top: 0px;
    padding-bottom: 60px;
}

.contents--serviceOther .serviceCtns .servicePanel__imgInner {
    border: 1px solid #ccc;
}

.contents--serviceOther .serviceCtns .servicePanel {
    width: calc(100% / 2 - 50px);
}

.contents--serviceOther + .contents--bottomMenu {
    border-top: 0;
}

.servicePanel {
    width: calc(100% / 2 - 20px);
}

.servicePanel:nth-of-type(n + 3) {
    margin-top: 50px;
}

.servicePanel a {
    display: block;
    text-decoration: none;
}

.servicePanel__linkInner--oneline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.servicePanel__imgInner {
    overflow: hidden;
}

.servicePanel__img01 span {
    background: url(/static/jp/service/img/img_tmb11.jpg) 0 0 no-repeat;
}

.servicePanel__img02 span {
    background: url(/static/jp/service/img/img_tmb12.jpg) 0 0 no-repeat;
}

.servicePanel__img03 span {
    background: url(/static/jp/service/img/img_tmb13.jpg) 0 0 no-repeat;
}

.servicePanel__img04 span {
    background: url(/static/jp/service/img/img_tmb14.jpg) 0 0 no-repeat;
}

.servicePanel__img05 span {
    background: url(/static/jp/service/img/img_tmb15.jpg) 0 0 no-repeat;
}

.servicePanel__img06 span {
    background: url(/static/jp/service/img/img_tmb16.jpg) 0 0 no-repeat;
}

.servicePanel__img07 span {
    background: url(/static/jp/service/img/img_tmb17.jpg) 0 0 no-repeat;
}

.servicePanel__img08 span {
    background: url(/static/jp/service/img/img_tmb24.png) 0 0 no-repeat;
}

.servicePanel__img09 span {
    background: url(/static/jp/service/img/img_tmb18.png) 0 0 no-repeat;
}

.servicePanel__img10 span {
    background: url(/static/jp/service/img/img_tmb19.png) 0 0 no-repeat;
}

.servicePanel__img11 span {
    background: url(/static/jp/service/img/img_tmb20.png) 0 0 no-repeat;
}

.servicePanel__img12 span {
    background: url(/static/jp/service/img/img_tmb21.png) 0 0 no-repeat;
}

.servicePanel__img13 span {
    background: url(/static/jp/service/img/img_tmb22.png) 0 0 no-repeat;
}

.servicePanel__img14 span {
    background: url(/static/jp/service/img/img_tmb23.png) 0 0 no-repeat;
}

.servicePanel__img15 span {
    background: url(/static/jp/service/img/img_tmb24.png) 0 0 no-repeat;
}

.servicePanel__img16 span {
    background: url(/static/jp/service/img/img_tmb25.png) 0 0 no-repeat;
}

.servicePanel__img17 span {
    background: url(/static/jp/service/img/img_tmb27.png) 0 0 no-repeat;
}

.servicePanel__img span {
    display: block;
    width: 100%;
    background-size: cover;
    transition: 0.4s ease;
}

.servicePanel__img span:before {
    width: 360px;
    padding-top: 66%;
    content: "";
    display: block;
}

.servicePanel__linkInner--oneline .servicePanel__img {
    max-width: 240px;
}

.servicePanel a:hover .servicePanel__linkInner--oneline .servicePanel__img span {
    transform: none;
}

.servicePanel .servicePanel__img--scale a:hover span {
    transform: scale(1.05);
    transition: 0.4s ease;
}

.servicePanel__detail {
    padding: 25px 0 0;
}

.servicePanel__linkInner--oneline .servicePanel__detail {
    width: 70%;
    padding-top: 15px;
    margin-left: 25px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.servicePanel__tit {
    font-size: 2rem;
    color: #06C755;
    margin-bottom: 15px;
}

.servicePanel__subTxt {
    font-size: 1.4rem;
}

.servicePanel__subTxt--newLine {
    display: block;
}

.servicePanel a:hover .servicePanel__tit {
    text-decoration: underline;
}

.servicePanel__txt {
    color: #333333;
    font-family: "UD新ゴ M";
}

.servicePanel a:hover .servicePanel__txt {
    text-decoration: underline;
}

.contents--serviceOther .serviceMethod__btn {
    display: none;
    text-align: center;
}

.contents--confirm + .aboutAccount {
    margin-top: 0px;
}

.aboutAccount.aboutAccount__serviceTop {
    margin-top: 60px;
}

.aboutAccount__subTxt--ads {
    margin-top: 20px;
    color: #fff;
    display: inline-block;
    text-align: center;
}

.aboutAccount__subTxt--ads--pc {
    margin-bottom: 20px;
}

.aboutAccount__subTxt--ads a {
    color: #fff;
    text-decoration: underline;
    font-family: "UD新ゴ M";
}

.aboutAccount__txtList--ads {
    padding-top: 20px;
    text-align: left;
    color: #fff;
    display: block;
}

.aboutAccount.aboutAccount--ads {
    margin-top: 65px;
}

.aboutAccount.aboutAccount--price .btnColumn2--aboutAccount {
    margin-top: 0;
}

@media screen and (max-width: 1023px) {
    .serviceCtns {
        padding-top:0;
    }

    .servicePanel__tit {
        margin-bottom: 20px;
    }

    .contents__serviceTop .contents__inner--com {
        padding: 30px 0 20px;
    }

    .contents__inner--serviceTop {
        padding: 30px 0 20px;
    }
}

.serviceH1Area__adsBtnArea {
    margin-top: 50px;
}

.serviceH1Area__adsBtn {
    width: 260px;
    margin: 0 auto;
}

.serviceH1Area__adsBtn a {
    display: block;
    background-color: #ff6851;
    border: 2px solid #ff6851;
    color: #fff;
    border-radius: 50px;
    padding: 6px 0 6px;
    margin-bottom: 6px;
    text-decoration: none;
    box-sizing: border-box;
}

.serviceH1Area__adsBtn:nth-of-type(2) a {
    display: block;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #fff;
    border-radius: 50px;
    padding: 6px 0 6px;
    margin-bottom: 6px;
    text-decoration: none;
    box-sizing: border-box;
}

.serviceH1Area__adsBtn a:hover {
    display: block;
    background-color: #fff;
    color: #ff6851;
    transition: 0.4s all;
}

.serviceH1Area__adsBtn02 a:hover {
    color: #06C755;
}

.serviceH1Area__adsBtn span:after {
    content: "";
    display: inline-block;
    margin-top: -0.1em;
    margin-left: 10px;
    margin-right: -10px;
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_rightArrow02.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.serviceH1Area__adsBtn a:hover span:after {
    background-image: url(/static/jp/common/img/ico_rightArrow07.png);
}

.serviceH1Area__adsBtn02 a:hover span:after {
    background-image: url(/static/jp/common/img/ico_rightArrow01.png);
}

.serviceH2Area__txt {
    text-align: center;
    margin-top: 50px;
}

.serviceH2Area + .serviceH2Area__txt {
    margin-top: -10px;
}

.serviceH2Area__txt + .pageTxtList__item--notes {
    margin-top: 10px;
}

.pageTxtListAds {
    margin-top: 15px;
}

.pageTxtListAds__notes {
    color: #707070;
    font-size: 1.2rem;
}

.contents--ads {
    padding-bottom: 0px;
}

.contents--adsInfo .serviceH2Area__txt {
    margin-top: 50px;
}

.contents--adsPartner {
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 68px;
}

.contents--adsPartner .serviceH2Area__txt {
    margin-top: 50px;
}

.contents--adsPartner .serviceH2Area__subTxt {
    margin-top: 15px;
    color: #707070;
    font-size: 1.2rem;
    text-align: center;
}

.contents--adsDistribution .serviceH2Area__txt {
    padding: 0 20px;
    margin-top: 50px;
}

.contents--adsDistribution .serviceH2Area {
    padding: 0 20px;
}

.serViceAdsInfo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 60px 0 0;
    padding-left: 83px;
    padding-right: 83px;
    flex-flow: row-reverse;
}

.serViceAdsInfo02 {
    margin-top: 85px;
}

.serViceAdsInfo .serViceAdsInfo__imgBox {
    display: block;
    width: 450px;
}

.serViceAdsInfo .serViceAdsInfo__imgBox01Inner {
    width: 450px;
}

.serViceAdsInfo .serViceAdsInfo__imgBox02Inner {
    width: 450px;
}

.serViceAdsInfo .serViceAdsInfo__imgBox03Inner {
    width: 450px;
}

.serViceAdsInfo .serViceAdsInfo__imgBox04Inner {
    width: 450px;
}

.serViceAdsInfo02,.serViceAdsInfo04 {
    flex-flow: row;
}

.serViceAdsInfo__descBox {
    margin-left: 70px;
    width: 499px;
}

.serViceAdsInfo__descBoxInner {
}

.serViceAdsInfo__descBox02Inner {
    margin-left: 0px;
    margin-right: 70px;
}

.serViceAdsInfo__descBox04Inner {
    margin-left: 0px;
    margin-right: 70px;
}

.serViceAdsInfo__ttiBox {
    position: relative;
    height: 110px;
}

.serViceAdsInfo__tti {
    position: absolute;
    top: 80px;
    font-size: 24px;
    color: #06C755;
    padding-left: 24px;
}

.serViceAdsInfo__tti::before {
    display: block;
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 4px;
    height: 1em;
    background-color: #06C755;
}

.serViceAdsInfo__ttiBox .serViceAdsInfo__num {
    position: absolute;
    display: none;
    content: "";
    top: 0;
    right: 0;
    width: 160px;
    height: 110px;
    z-index: -10;
}

.serViceAdsInfo__descBox01 .serViceAdsInfo__num {
    background: url(/static/jp/service/line-ads/img/ads_number01.png) right top no-repeat;
}

.serViceAdsInfo__descBox02 .serViceAdsInfo__num {
    background: url(/static/jp/service/line-ads/img/ads_number02.png) right top no-repeat;
}

.serViceAdsInfo__descBox03 .serViceAdsInfo__num {
    background: url(/static/jp/service/line-ads/img/ads_number03.png) right top no-repeat;
}

.serViceAdsInfo__descBox04 .serViceAdsInfo__num {
    background: url(/static/jp/service/line-ads/img/ads_number04.png) right top no-repeat;
}

.serViceAdsInfo__tti--2line::before {
    height: 80%;
}

.serViceAdsInfo__txt {
    margin-top: 30px;
    font-size: 16px;
}

.serViceAdsInfo__subTxt {
    margin-top: 15px;
    color: #707070;
    font-size: 1.2rem;
}

.serViceAdsInfo__subTxt li {
    margin-top: 5px;
    padding-left: 2.5rem;
    text-indent: -2.5rem;
}

.serViceAdsInfo__subTxt li:first-child {
    margin-top: 0;
}

.serViceAdsInfo__notes {
    font-size: 1.2rem;
    vertical-align: text-top;
}

.adsCarousel {
    margin-top: 60px;
    background-color: #f2f2f2;
    overflow: hidden;
}

.adsCarousel__inner {
    padding: 40px 0 80px;
}

.adsCarousel__arrow {
    top: auto;
    bottom: 35px;
    right: 120px;
    width: 40px;
    height: 20px;
    padding-top: 10px;
    background: url(/static/jp/common/img/ico_arrow02.png) 0 bottom no-repeat;
    background-size: 40px 15px;
    -webkit-animation: sdb 1.5s infinite;
    animation: sdb 1.5s infinite;
    box-sizing: border-box;
}

.adsCarousel__arrow--prev {
    background: url(/static/jp/common/img/ico_arrow02_rev.png) 0 bottom no-repeat;
    background-size: 40px 15px;
    -webkit-animation: sdb-prev 1.5s infinite;
    animation: sdb-prev 1.5s infinite;
    transform: scale(-1,1);
}

.adsCarousel__arrow--prev {
    left: 120px;
    right: auto;
}

@-webkit-keyframes sdb {
    0% {
        -webkit-transform: translate(0,0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(20px,0);
        opacity: 0;
    }
}

@keyframes sdb {
    0% {
        transform: translate(0,0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(20px,0);
        opacity: 0;
    }
}

@-webkit-keyframes sdb-prev {
    0% {
        -webkit-transform: translate(0,0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(-20px,0);
        opacity: 0;
    }
}

@keyframes sdb-prev {
    0% {
        transform: translate(0,0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-20px,0);
        opacity: 0;
    }
}

.adsCtnsBox__inner {
    display: block;
    padding: 10px 10px 5px 10px;
    border: 1px solid #cccccc;
    background-color: #fff;
}

.adsCtnsBox__img01 {
    background: url(/static/jp/service/line-ads/img/adsCarousel01.jpg) center top no-repeat;
}

.adsCtnsBox__img02 {
    background: url(/static/jp/service/line-ads/img/adsCarousel02.jpg) center top no-repeat;
}

.adsCtnsBox__img03 {
    background: url(/static/jp/service/line-ads/img/adsCarousel03.jpg) center top no-repeat;
}

.adsCtnsBox__img04 {
    background: url(/static/jp/service/line-ads/img/adsCarousel04.jpg) center top no-repeat;
}

.adsCtnsBox__img05 {
    background: url(/static/jp/service/line-ads/img/adsCarousel05.jpg) center top no-repeat;
}

.adsCtnsBox__img06 {
    background: url(/static/jp/service/line-ads/img/adsCarousel06.jpg) center top no-repeat;
}

.adsCtnsBox__img07 {
    background: url(/static/jp/service/line-ads/img/adsCarousel07.jpg) center top no-repeat;
}

.adsCtnsBox__img08 {
    background: url(/static/jp/service/line-ads/img/adsCarousel08.jpg) center top no-repeat;
}

.adsCtnsBox__img {
    background-size: contain;
    height: 290px;
    display: block;
}

.adsCtnsBox__tti {
    margin-top: 20px;
    text-align: center;
    font-size: 2rem;
    font-family: "UD新ゴ B";
    color: #06C755;
}

.adsCtnsBox__txt {
    margin-top: 5px;
    text-align: center;
    color: #333;
    font-family: "UD新ゴ M";
}

.adsCtnsBox__inner:hover {
    text-decoration: none;
}

.adsCtnsBox__btn {
    margin-top: 25px;
}

.adsCtnsBox .serviceMethod__btn {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 15px;
}

.adsCase__item01 {
    background-image: url(https://www.linebiz.com/system/files/jp/case-study/pernod-ricard-japan/prernod%20ricard_main.jpg);
}

.adsCase__item02 {
    background-image: url(https://www.linebiz.com/system/files/jp/case-study/bulkhomme/_03A9514_s.jpg);
}

.adsCase__item03 {
    background-image: url(https://www.linebiz.com/system/files/jp/case-study/i-kasa/thumbnail%281%29.jpg);
}

.adsInfo {
    padding-top: 50px;
}

.adsInfo__inner:nth-of-type(n + 2) {
    margin-top: 95px;
}

.adsInfoCtns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}

.adsInfoCtns--rStart {
    flex-direction: row-reverse;
}

.adsInfoCtns__img {
    width: 500px;
    text-align: center;
}

.adsInfoCtns__desc {
    width: 500px;
}

.adsInfoCtns__tit {
    position: relative;
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
    color: #06C755;
    padding-left: 20px;
    padding-right: 20px;
}

.adsInfoCtns__tit:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    display: block;
    width: 4px;
    height: 2.4rem;
    background-color: #06C755;
}

.adsInfoCtns__tit--2line:before {
    height: 6rem;
}

.adsInfoCtns__txt {
    position: relative;
    padding-top: 50px;
    padding-right: 20px;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.adsInfoCtns__txt01:before {
    background: url(/static/jp/service/line-ads/img/ads_number01.png) right 0 no-repeat;
}

.adsInfoCtns__txt02:before {
    background: url(/static/jp/service/line-ads/img/ads_number02.png) right 0 no-repeat;
}

.adsInfoCtns__txt03:before {
    background: url(/static/jp/service/line-ads/img/ads_number03.png) right 0 no-repeat;
}

.adsInfoCtns__txt:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 110px;
    background-size: auto;
    z-index: -1;
}

.adsInfoCtns__notesList {
    font-size: 1.2rem;
}

.adsIntroBox {
    margin-top: 60px;
}

.adsIntroBox > *:first-child {
    margin-top: 0;
}

.adsIntroBox__list {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.adsIntroBox__listBox:first-of-type {
    margin-left: 0;
}

.adsIntroBox__listBox {
    margin-left: 30px;
    padding: 30px 2%;
    width: calc(100% / 3 - 20px);
    background: #fff;
    text-align: center;
    border: 1px solid #d9d9d9;
}

.adsIntroBox__img01 {
    background: url(/static/jp/service/line-ads/img/ads_dl01.png);
}

.adsIntroBox__img02 {
    background: url(/static/jp/service/line-ads/img/ads_dl02.png);
}

.adsIntroBox__img03 {
    background: url(/static/jp/service/line-ads/img/ads_dl03.png);
}

.adsIntroBox__img {
    background-size: cover;
    padding-bottom: 65.8%;
    margin-bottom: 20px;
}

.adsIntroBox__icoBox {
    margin-bottom: 45px;
}

.adsIntroBox__ico--type01:before {
    background: url(/static/jp/service/line-ads/img/ads_sup01.png) 0 0 no-repeat;
}

.adsIntroBox__ico--type02:before {
    background: url(/static/jp/service/line-ads/img/ads_sup02.png) 0 0 no-repeat;
}

.adsIntroBox__ico--type03:before {
    background: url(/static/jp/service/line-ads/img/ads_sup03.png) 0 0 no-repeat;
}

.adsIntroBox__ico {
    display: block;
    height: 180px;
}

.adsIntroBox__tit {
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    color: #06C755;
    margin-bottom: 20px;
}

.adsIntroBox__btn {
    margin-top: 20px;
    text-align: center;
}

.adsIntroBox__btn > a {
    position: relative;
    display: inline-block;
    background: #fff;
    border: 2px solid #404040;
    padding: 9px 15px;
    color: #111;
    font-size: 1.3rem;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 30px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
    min-width: 140px;
}

.adsIntroBox__btn > a:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_rightArrow06.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.adsIntroBox__btn > a:hover {
    color: #06C755;
    border-color: #d0d0d0;
}

.adsIntroBox__btn > a:hover:after {
    background: url(/static/jp/common/img/ico_rightArrow01.png) 0 0 no-repeat;
    background-size: cover;
}

.adsIntroDldBox {
    margin-top: 60px;
}

.adsIntroDldBox > *:first-child {
    margin-top: 0;
}

.adsIntroDldBox__list {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.adsIntroDldBox__listBox:first-of-type {
    margin-left: 0;
}

.adsIntroDldBox__listBox {
    margin-left: 30px;
    padding: 30px 2%;
    width: calc(100% / 3 - 20px);
    background: #fff;
    text-align: center;
    border: 1px solid #d9d9d9;
}

.adsIntroDldBox__img01 {
    background: url(/static/jp/service/line-ads/img/ads_dl01.png);
}

.adsIntroDldBox__img02 {
    background: url(/static/jp/service/line-ads/img/ads_dl02.png);
}

.adsIntroDldBox__img03 {
    background: url(/static/jp/service/line-ads/img/ads_dl03.png);
}

.adsIntroDldBox__img {
    background-size: cover;
    padding-bottom: 65.8%;
    margin-bottom: 20px;
}

.adsIntroDldBox__icoBox {
    margin-bottom: 45px;
}

.adsIntroDldBox__listBox {
    padding: 0;
}

.adsIntroDldBox__icoBox {
    margin: 10px 10px 45px;
}

.adsIntroDldBox__ico--type04 {
    background: url(/static/jp/service/line-ads/img/ads_dl01.png) 0 0 no-repeat;
}

.adsIntroDldBox__ico--type05 {
    background: url(/static/jp/service/line-ads/img/ads_dl02.jpg) 0 0 no-repeat;
}

.adsIntroDldBox__ico--type06 {
    background: url(/static/jp/service/line-ads/img/ads_dl03.png) 0 0 no-repeat;
}

.adsIntroDldBox__ico {
    display: block;
    height: 225px;
}

.adsIntroDldBox__ico {
    background-size: contain;
}

.adsIntroBox__ico:before {
    content: "";
    display: block;
    width: 180px;
    padding-bottom: 100%;
    margin: 0 auto;
    background-size: contain;
}

.adsIntroDldBox__ico:before {
    content: "";
    display: block;
    width: 180px;
    padding-bottom: 100%;
    margin: 0 auto;
    background-size: contain;
}

.adsIntroDldBox__txtBox {
    padding: 0 20px;
}

.adsIntroDldBox__tit {
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    color: #06C755;
    margin-bottom: 20px;
}

.adsIntroDldBox__btn {
    margin: 20px 0 30px;
    text-align: center;
}

.adsIntroDldBox__btn > a {
    position: relative;
    display: inline-block;
    background: #fff;
    border: 2px solid #404040;
    padding: 9px 15px;
    color: #111;
    font-size: 1.3rem;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 30px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
    min-width: 140px;
}

.adsIntroDldBox__btn > a:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_rightArrow06.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.adsIntroDldBox__btn > a:hover {
    color: #06C755;
    border-color: #d0d0d0;
}

.adsIntroDldBox__btn > a:hover:after {
    background: url(/static/jp/common/img/ico_rightArrow01.png) 0 0 no-repeat;
    background-size: cover;
}

.serviceAdsBtn {
    margin-top: 60px;
    text-align: center;
}

.serviceAdsBtn a {
    display: inline-block;
    border: 2px solid #707070;
    background: #707070;
    padding: 8px 30px 8px;
    min-width: 260px;
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    color: #fff;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
}

.serviceAdsBtn a:hover {
    border: 2px solid #707070;
    background: #ffffff;
    color: #707070;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.serviceAdsBtn__arrow01:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    margin-right: -10px;
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_rightArrow02.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.serviceAdsBtn a:hover .serviceAdsBtn__arrow01:after {
    background: url(/static/jp/common/img/ico_rightArrow04.png) 0 0 no-repeat;
    background-size: cover;
}

.serviceDeliveryFlow--ads {
    margin-top: 50px;
}

.serviceDeliveryFlow--ads .serviceDeliveryFlow__ico--type01:before {
    background-image: url(/static/jp/service/line-ads/img/ads_flow01.png);
}

.serviceDeliveryFlow--ads .serviceDeliveryFlow__ico--type02:before {
    background-image: url(/static/jp/service/line-ads/img/ads_flow02.png);
}

.serviceDeliveryFlow--ads .serviceDeliveryFlow__ico--type03:before {
    background-image: url(/static/jp/service/line-ads/img/ads_flow03.png);
}

.serviceDeliveryFlow--ads .serviceDeliveryFlow__ico--type04:before {
    background-image: url(/static/jp/service/line-ads/img/ads_flow04.png);
}

.serviceDeliveryFlow--ads .serviceDeliveryFlow__tit {
    color: #07b539;
}

.researchExample--column2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.researchExample--column2 .researchExample__item {
    margin-top: 0;
    margin-left: 15px;
}

.researchExample--column2 .researchExample__item:first-child {
    margin-left: 0;
}

.researchExample__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #e0e2e4;
    width: 100%;
    border-radius: 5px;
}

.researchExample__item:first-child {
    margin-top: 0;
}

.researchExample__item dd {
    margin-bottom: 10px;
}

.researchExample__item dd:last-child {
    margin-bottom: 0;
}

.researchExample__tit {
    margin-bottom: 10px;
    font-family: "UD新ゴ B";
}

.researchExample__price {
    margin-top: auto;
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
    color: #00b900;
    text-align: right;
}

.researchExample__terms {
    font-size: 1.4rem;
}

.researchExample__txt {
    font-size: 1.4rem;
}

.researchExample__txt--notes {
    position: relative;
    font-size: 1.3rem;
    padding-left: 1.2em;
}

.researchExample__txt--notes:before {
    content: "â€»";
    position: absolute;
    left: 0;
}

.researchExample__termsList {
    display: inline-block;
    width: calc(100% - 3em);
    margin-left: 5px;
    vertical-align: top;
}

.researchExample__termsList > li {
    position: relative;
    display: inline;
    padding-left: 15px;
}

.researchExample__termsList > li:first-child {
    padding-left: 0;
}

.researchExample__termsList > li:first-child:before {
    content: normal;
}

.researchExample__termsList > li:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 5px;
    width: 1px;
    height: 12px;
    border-left: 1px solid #a9a9a9;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.researchExample__table {
    width: 100%;
    border-bottom: 1px solid #a9a9a9;
}

.researchExample__table tr {
    display: block;
    padding: 10px 0;
    border-top: 1px solid #a9a9a9;
}

.researchExample__table tr > *:first-child {
    padding-top: 0;
}

.researchExample__table td,.researchExample__table th {
    display: block;
    padding: 10px 0 0;
    font-size: 1.4rem;
}

.researchExample__table th {
    font-family: "UD新ゴ M";
    text-align: left;
}

.researchExample__table td {
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    text-align: right;
}

.researchPartner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
}

.researchPartner + .researchPartner {
    border-top: none;
}

.researchPartner__logo {
    width: 260px;
}

.researchPartner__info {
    width: calc(100% - 290px);
    margin-left: 30px;
}

.researchPartner__info > *:first-child {
    margin-top: 0;
}

.researchPartner__tit {
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    margin-top: 20px;
}

.researchPartner__txt {
    margin-top: 10px;
    font-size: 1.4rem;
}

.researchPartner__icoList {
    margin-top: 10px;
    margin-bottom: -5px;
    font-size: 0;
}

.researchPartner__icoList > li {
    display: inline-block;
    border: 1px solid #d8d9dd;
    border-radius: 3px;
    padding: 0 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    color: #474a52;
    font-size: 1.1rem;
}

.researchCourse {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.researchCourse__box {
    width: calc(50% - 15px);
    margin-left: 30px;
}

.researchCourse__box:first-child {
    margin-left: 0;
}

.researchCourse__tit {
    padding: 15px;
    background: #21b5ca;
    background-color: #06C755;
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
    color: #fff;
    text-align: center;
    border-radius: 5px 5px 0 0;
}

.researchCourse__boxInner {
    border: 1px solid #e0e0e0;
    border-top: none;
    padding: 30px;
    border-radius: 0 0 5px 5px;
}

.researchCourse__titSub {
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
    color: #21b5ca;
    text-align: center;
}

.researchCourse__txt {
    margin-top: 10px;
}

.researchCourse__notes {
    margin-top: 15px;
}

.researchCourse__notes > li {
    position: relative;
    font-size: 1.4rem;
    padding-left: 1.2em;
}

.researchCourse__notes > li:before {
    content: "â€»";
    position: absolute;
    left: 0;
}

.researchCourse__img {
    margin-top: 20px;
    text-align: center;
}

.serviceSampleScreen {
    margin: 60px auto 0;
    max-width: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.serviceSampleScreen__item {
    width: calc(100% / 3 - 20px);
    margin-left: 30px;
    text-align: center;
}

.serviceSampleScreen__item:nth-child(3n + 1) {
    margin-left: 0;
}

.serviceSampleScreen__item:nth-child(n + 4) {
    margin-top: 60px;
}

.serviceSampleScreen__txt {
    margin-bottom: 15px;
    font-family: "UD新ゴ B";
}

.serviceDeliveryFlow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.serviceDeliveryFlow__item {
    position: relative;
    width: 130px;
    margin-left: 54px;
}

.serviceDeliveryFlow__item:before {
    content: "";
    position: absolute;
    left: -41px;
    top: 50px;
    width: 30px;
    height: 11px;
    background: url("/static/jp/common/img/ico_arrow03.png") 0 0 no-repeat;
    background-size: contain;
}

.serviceDeliveryFlow--ads .serviceDeliveryFlow__item:before {
    background: url("/static/jp/service/line-flyer/img/ico_flow01_gray.png") 0 0 no-repeat;
    background-size: 100% auto;
}

.serviceDeliveryFlow__item:first-child {
    margin-left: 0;
}

.serviceDeliveryFlow__item:first-child:before {
    content: normal;
}

.serviceDeliveryFlow--ads .serviceDeliveryFlow__item {
    width: 135px;
}

.serviceDeliveryFlow__ico {
    padding-top: 170px;
}

.serviceDeliveryFlow__ico:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 130px;
    height: 130px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.serviceDeliveryFlow__ico--type01:before {
    background-image: url("/static/jp/service/line-ads/img/ico_index01.png");
}

.serviceDeliveryFlow__ico--type02:before {
    background-image: url("/static/jp/service/line-ads/img/ico_index02.png");
}

.serviceDeliveryFlow__ico--type03:before {
    background-image: url("/static/jp/service/line-ads/img/ico_index03.png");
}

.serviceDeliveryFlow__ico--type04:before {
    background-image: url("/static/jp/service/line-ads/img/ico_index04.png");
}

.serviceDeliveryFlow__tit {
    color: #07b539;
    font-family: "UD新ゴ B";
    text-align: center;
}

.serviceDeliveryFlow__txt {
    margin-top: 10px;
}

.serviceAncList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.serviceAncList__item {
    width: 170px;
    margin-left: 20px;
}

.serviceAncList__item:first-child {
    margin-left: 0;
}

.serviceAncList__btn {
    position: relative;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    width: 100%;
    height: 100%;
    min-height: 60px;
    text-align: center;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 0 #e0e0e0;
    box-shadow: 0 2px 0 #e0e0e0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.serviceAncList__btn img {
    max-width: 88px;
}

.serviceAncList__btn:hover {
    top: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.serviceMedia {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.serviceMedia__inner {
    margin: 56px 30px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 47%;
    border: 1px solid #cccccc;
    padding: 30px 40px;
}

.serviceMedia__inner:first-child,.serviceMedia__inner:nth-child(2) {
    margin-top: 0px;
}

.serviceMedia__inner:nth-child(2n) {
    margin-right: 0;
}

.serviceMedia__inner--livedoorBlog {
    padding: 30px 31px 30px 40px;
}

.serviceMedia__img {
    min-width: 500px;
    text-align: center;
}

.serviceMedia__info {
    margin-left: 40px;
    max-width: 500px;
}

.serviceMedia__slogan {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    height: 100%;
    margin-bottom: 50px;
}

.serviceMedia__slogan--livedoorBlog,.serviceMedia__btn--livedoorBlog,.serviceMedia__document--livedoorBlog {
    margin-right: 9px;
}

.serviceMedia__logo {
    height: 100%;
}

.serviceMedia__logo img {
    margin: 0 auto;
}

.serviceMedia__link {
    margin-top: 25px;
    display: inline-block;
    color: #333;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.serviceMedia__link:hover {
    color: #06C755;
}

.serviceMedia__link:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow01.png") 0 0 no-repeat;
    background-size: cover;
    margin-left: 10px;
}

.serviceMedia__btn {
    margin-top: 50px;
}

.modalService__tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modalService__tit img {
    max-width: 205px;
}

.modalService__titInner {
    display: block;
    margin-left: 20px;
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
    color: #21b5ca;
    background: -webkit-linear-gradient(0deg,#21b5ca,#1ebd92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modalService__txt {
    margin-top: 30px;
}

.modalService__box {
    background: #f2f2f2;
    max-width: 600px;
    margin: 30px auto 0;
    padding: 40px;
    border-radius: 5px;
}

.modalService__notes {
    margin-top: 30px;
    font-size: 1.4rem;
}

.modalServiceColumn1__item {
    max-width: 520px;
    margin: 0 auto;
}

.modalServiceColumn2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.modalServiceColumn2__item {
    max-width: 210px;
    width: 100%;
}

.modalServiceColumn2__item:first-child {
    margin-left: 0;
}

.modalServiceColumn2__img {
    margin-top: 20px;
}

.modalServiceColumn2__tit {
    background: #21b5ca;
    background: -webkit-gradient(linear,left top,right top,from(#21b5ca),color-stop(30%,#20b7ba),color-stop(30%,#20b7ba),color-stop(70%,#1fbba1),to(#1ebd92));
    background: linear-gradient(to right,#21b5ca 0%,#20b7ba 30%,#20b7ba 30%,#1fbba1 70%,#1ebd92 100%);
    padding: 10px 0;
    color: #fff;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 50px;
}

.serviceTab {
    margin-top: 60px;
}

.serviceTab__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #06C755;
}

.serviceTab__item {
    width: 100%;
    margin-left: 30px;
}

.serviceTab__item:first-child {
    margin-left: 0;
}

.serviceTab__item a {
    position: relative;
    display: block;
    color: #fff;
    font-family: "UD新ゴ B";
    padding: 15px;
    font-size: 2.2rem;
    text-align: center;
    background: #cccccc;
    border-radius: 5px 5px 0 0;
}

.serviceTab__item a:hover {
    text-decoration: none;
}

.serviceTab__item .is-current {
    background-color: #06C755;
}

.serviceTab__flag {
    position: absolute;
    top: -25px;
    left: 50px;
    background: #cccccc;
    border-radius: 50px;
}

.is-current .serviceTab__flag {
    background: #21b5ca;
    background: -webkit-gradient(linear,left top,right top,from(#21b5ca),color-stop(30%,#20b7ba),color-stop(30%,#20b7ba),color-stop(70%,#1fbba1),to(#1ebd92));
    background: linear-gradient(to right,#21b5ca 0%,#20b7ba 30%,#20b7ba 30%,#1fbba1 70%,#1ebd92 100%);
}

.is-current .serviceTab__flagInner span {
    color: #21b5ca;
    background: -webkit-linear-gradient(0deg,#21b5ca,#1ebd92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.serviceTab__flagInner {
    position: relative;
    display: block;
    margin: 2px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 50px;
}

.serviceTab__flagInner:before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #fff transparent transparent transparent;
    left: 0;
    right: 0;
    bottom: -6px;
    margin-left: auto;
    margin-right: auto;
}

.serviceTab__flagInner span {
    display: block;
    line-height: 1;
    font-size: 1.6rem;
    color: #cccccc;
}

.serviceTabContents {
    border: 1px solid #06C755;
    border-top: none;
    padding: 40px;
    border-radius: 0 0 5px 5px;
}

.serviceTabContents__item {
    display: none;
}

.serviceTabContents__item > *:first-child {
    margin-top: 0;
}

.servicePolicySub {
    position: relative;
    text-align: left;
}

.servicePolicySub__flag {
    display: inline-block;
    padding: 2px 10px;
    background: #1ebd92;
    font-size: 1.3rem;
    font-family: "UD新ゴ B";
    color: #fff;
    border-radius: 3px;
}

.servicePolicySub__flag--type01 {
    background: #21b5cb;
}

.servicePolicySub__tit {
    margin-top: 10px;
    font-family: "UD新ゴ B";
}

.servicePolicySub__tit--type01 {
    color: #1ebd92;
}

.servicePolicySub__txt {
    margin-top: 10px;
}

.servicePolicySub__list {
    margin-top: 10px;
    display: inline-block;
}

.servicePolicySub__listItem {
    position: relative;
    padding-left: 1em;
    text-align: left;
}

.servicePolicySub__listItem:before {
    content: "ãƒ»";
    position: absolute;
    left: 0;
}

.serviceAccontColumn2 {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.serviceAccontColumn2 > div:nth-of-type(2) {
    margin-left: 60px;
}

.serviceAccontColumn2__img {
    text-align: center;
}

.serviceAccontColumn2__txtBox {
    width: 480px;
}

.serviceAccontColumn2__tit {
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
}

.serviceAccontColumn2__txt {
    margin-top: 10px;
}

.serviceMethod,.serviceContent {
    padding-left: 75px;
    padding-right: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.serviceMethod {
    margin-top: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.serviceMethod + .serviceMethod {
    margin-top: 85px;
}

.serviceMethod--option {
    align-items: flex-start;
    margin-top: 0px;
    padding-left: 0;
    padding-right: 0;
}

.serviceMethod__imgBox,.serviceContent__imgBox {
    max-width: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.serviceMethod__imgBox--option {
    max-width: 240px;
    width: 240px;
}

.serviceMethod__img,.serviceContent__img {
    text-align: center;
    padding-top: 10px;
}

.serviceMethod__txtBox,.serviceContent__txtBox {
    width: 500px;
}

.serviceMethod__txtBox--option {
    width: 255px;
    margin-left: 50px;
}

.serviceMethod > div:not(.serviceMethod__txtBox--option):nth-of-type(2) {
    margin-left: 70px;
}

.serviceMethod__tit,.serviceContent__slogan {
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
}

.serviceMethod__tit--lv3 {
    color: #06C755;
    position: relative;
    padding-left: 24px;
    z-index: 2;
}

.serviceH2Area + .serviceMethod__tit--lv3 {
    margin-top: -30px;
    margin-bottom: 30px;
}

.serviceMethod__tit--lv3::before {
    display: block;
    content: "";
    position: absolute;
    bottom: 0.4em;
    left: 0;
    width: 4px;
    height: calc(100% - 0.8em);
    background-color: #06C755;
}

.serviceMethod__tit--lv4 {
    font-family: "UD新ゴ B";
}

.serviceMethod__tit--lv4--option {
    font-family: "UD新ゴ M";
}

.serviceColumn2 {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.serviceColumn2__box {
    display: inline-block;
    width: calc(50% - 50px);
    margin-left: 100px;
    vertical-align: top;
}

.serviceColumn2__box:nth-child(2n + 1) {
    margin-left: 0;
}

.serviceColumn2__box:nth-child(n + 3) {
    margin-top: 50px;
}

.serviceColumn2__img {
    text-align: center;
}

.serviceColumn2__txt {
    margin-top: 10px;
    font-size: 1.6rem;
}

.serviceMethod__tit--lv3 {
    font-size: 2.4rem;
}

.serviceMethod__tit--lv3 small {
    font-size: 1.4rem;
}

.serviceMethod__tit--lv3 + .serviceMethod__tit {
    margin-top: 20px;
}

.serviceMethod__tit--lv3--option {
    font-size: 2rem;
    padding-left: 0;
}

.serviceMethod__tit--lv3--option::before {
    display: none;
}

.serviceMethod__txt,.serviceContent__txt {
    color: #333333;
    margin-top: 10px;
    font-size: 1.6rem;
}

.serviceMethod__btn {
    margin-top: 20px;
}

.serviceMethod__btn > a {
    position: relative;
    display: inline-block;
    background: #fff;
    border: 2px solid #404040;
    padding: 9px 15px;
    color: #111;
    font-size: 1.3rem;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 30px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
    min-width: 140px;
}

.serviceMethod__btn > .serviceMethod__btn--noLink {
    position: relative;
    display: inline-block;
    background: #fff;
    border: 2px solid #404040;
    padding: 9px 35px 8px 35px;
    color: #111;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 30px;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
    min-width: 140px;
}

.serviceMethod__btn > a:hover {
    color: #06C755;
    border-color: #d0d0d0;
}

.serviceMethod__btn > a:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 6px;
    height: 10px;
    background: url("/static/jp/common/img/ico_rightArrow06.png") 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.serviceMethod__btn > .serviceMethod__btn--noLink:after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 17px;
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_rightArrow06.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.serviceMethod__btn > a:hover:after {
    background-image: url("/static/jp/common/img/ico_rightArrow01.png");
}

a.adsCtnsBox__inner:hover .serviceMethod__btn--noLink {
    color: #06C755;
    border-color: #d0d0d0;
}

a.adsCtnsBox__inner:hover .serviceMethod__btn--noLink:after {
    background-image: url("/static/jp/common/img/ico_rightArrow01.png");
}

.serviceMethod__imgBox--ads {
    display: block;
}

.serviceMethod__img--adsPlan {
    max-width: 240px;
}

.serviceMethod__img--adsMerit {
    max-width: 458px;
}

.serviceMethod__bg01--ads {
    background: url(/static/jp/service/line-ads/img/ads_number01.png) no-repeat top 20% right 8%;
}

.serviceMethod__bg02--ads {
    background: url(/static/jp/service/line-ads/img/ads_number02.png) no-repeat top 16% left 43%;
}

.serviceMethod__bg03--ads {
    background: url(/static/jp/service/line-ads/img/ads_number03.png) no-repeat top 0 right 5%;
}

.serviceMethod__bg02--ads .serviceMethod__tit--lv3--option--ads:before {
    height: 6rem;
}

.serviceMethod__bg03--ads .serviceMethod__tit--lv3--option--ads:before {
    height: 6rem;
}

.serviceContent {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 110px 0 10px;
}

.serviceContent__tit {
    margin-bottom: 40px;
}

.serviceContent__imgBox {
    width: 100%;
}

.serviceMethod__txt--plan--ads {
    margin-top: 17px;
}

.serviceColumn3__subTxt--adsMerit {
    margin-top: 20px;
    font-size: 1.4rem;
}

.serviceTablePlan {
    margin-top: 40px;
    border: 1px solid #d0d0d0;
    width: 100%;
    table-layout: fixed;
}

.serviceTablePlan td,.serviceTablePlan th {
    height: 68px;
    text-align: center;
    vertical-align: middle;
}

.serviceTablePlan thead tr th:first-child {
    border-right: none;
}

.serviceTablePlan thead tr th:last-child {
    border-right: none;
}

.serviceTablePlan thead th {
    border-right: 1px solid #fff;
    background: #1ebd92;
    color: #fff;
}

.serviceTablePlan thead th:empty {
    background: #048674;
}

.serviceTablePlan tbody tr:last-child th {
    border-bottom: none;
}

.serviceTablePlan tbody th {
    border-bottom: 1px solid #fff;
    background: #21b5cb;
    color: #fff;
}

.serviceTablePlan tbody td {
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    background: #fff;
}

.serviceTablePlan td > *:first-child {
    margin-top: 0;
}

.contentsBnr {
    margin: 80px auto 0;
    text-align: center;
}

.contentsBnr-link {
    display: inline-block;
    vertical-align: bottom;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 800px;
    height: 84px;
    background-image: url(/static/jp/service/line-official-account/img/bnr_simulation_pc.png);
    background-position: center;
    background-size: 100% auto;
    background-position: top center;
}

.serviceTableAccount {
    margin-top: 40px;
    border: 1px solid #d0d0d0;
    width: 100%;
    table-layout: fixed;
}

.serviceTableAccount td,.serviceTableAccount th {
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    background: #fff;
    padding: 25px 30px;
    vertical-align: middle;
}

.serviceTableAccount thead tr th:last-child {
    border-right: none;
}

.serviceTableAccount thead th {
    border-right: 1px solid #fff;
    border-bottom: none;
    background: #1ebd92;
    color: #fff;
}

.serviceTableAccount tbody th {
    text-align: left;
}

.serviceTableAccount tbody td {
    text-align: left;
    vertical-align: top;
}

.serviceTableAccount__ico:before {
    display: inline-block;
    margin-right: 10px;
    width: 28px;
    height: 30px;
    vertical-align: middle;
}

.serviceTableAccount__ico--type01:before {
    content: "";
    background: url("/static/jp/service/line-official-account/img/ico_account01.gif") 0 0 no-repeat;
}

.serviceTableAccount__ico--type02:before {
    content: "";
    background: url("/static/jp/service/line-official-account/img/ico_account02.gif") 0 0 no-repeat;
}

.serviceTableAccount__ico--type03:before {
    content: "";
    background: url("/static/jp/service/line-official-account/img/ico_account03.gif") 0 0 no-repeat;
}

.serviceBox {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.serviceBox__item {
    width: calc(100% / 3 - 28px);
    margin-left: 40px;
}

.serviceBox__item:nth-child(3n + 1) {
    margin-left: 0;
}

.serviceBox__item:nth-child(n + 4) {
    margin-top: 60px;
}

.serviceBox--column2 .serviceBox__item {
    width: calc(100% / 2 - 20px);
    margin-left: 40px;
}

.serviceBox--column2 .serviceBox__item:nth-child(2n + 1) {
    margin-left: 0;
}

.serviceBox--column2 .serviceBox__item:nth-child(n + 4) {
    margin-top: 0;
}

.serviceBox--column2 .serviceBox__item:nth-child(n + 3) {
    margin-top: 60px;
}

.serviceBox--column4 .serviceBox__item {
    width: calc(100% / 4 - 30px);
    margin-left: 30px;
}

.serviceBox--column4 .serviceBox__item:nth-child(4n + 1) {
    margin-left: 0;
}

.serviceBox--column4 .serviceBox__item:nth-child(n + 4) {
    margin-top: 0;
}

.serviceBox--column4 .serviceBox__item:nth-child(n + 5) {
    margin-top: 60px;
}

.serviceBox__img {
    text-align: center;
}

.serviceBox__tit {
    margin-top: 40px;
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
    color: #06C755;
    text-align: center;
}

.serviceBox__txt {
    margin-top: 20px;
}

.serviceBox__txt--center {
    text-align: center;
}

.serviceAccontLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.serviceAccontLink__item {
    position: relative;
    padding: 0 15px;
}

.serviceAccontLink__item:first-child:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 10px;
    margin-top: -6px;
    border-left: 1px solid #d0d0d0;
}

.serviceAccontLink__item:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 10px;
    margin-top: -6px;
    border-right: 1px solid #d0d0d0;
}

.serviceAccontLink__item > a {
    color: #333;
}

.serviceAccontLink__item > a.is-current {
    color: #999999;
}

.serviceAdvantageColumn2 {
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1040px;
}

.serviceAdvantageColumn2__txtArea {
    width: calc(100% - 300px);
}

.serviceAdvantageColumn2__tit {
    display: inline-block;
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
    color: #21b5ca;
    background: -webkit-linear-gradient(0deg,#21b5ca,#1ebd92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.serviceAdvantageColumn2__titSub {
    margin-top: 30px;
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
}

.serviceAdvantageColumn2__txt {
    margin-top: 20px;
}

.serviceAdvantageColumn2__imgArea {
    max-width: 280px;
}

.serviceAdvantageColumn2 > div:nth-child(2n + 2) {
    margin-left: 20px;
}

.serviceAdvantageBox {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1040px;
    padding: 40px;
    background: #f2f2f2;
    border-radius: 4px;
}

.serviceAdvantageList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.serviceAdvantageList__item {
    margin-left: 40px;
    width: calc(100% / 3 - 27px);
}

.serviceAdvantageList__item:first-child {
    margin-left: 0;
}

.serviceAdvantageList__ico {
    position: relative;
    padding-left: 60px;
    font-size: 1.8rem;
    font-family: "UD新ゴ B";
}

.serviceAdvantageList__ico--type01:before {
    background: url("/static/jp/service/line-official-account/advantage3/img/ico_index01.png") 0 0 no-repeat;
}

.serviceAdvantageList__ico--type02:before {
    background: url("/static/jp/service/line-official-account/advantage3/img/ico_index02.png") 0 0 no-repeat;
}

.serviceAdvantageList__ico--type03:before {
    background: url("/static/jp/service/line-official-account/advantage3/img/ico_index03.png") 0 0 no-repeat;
}

.serviceAdvantageList__ico:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 38px;
    height: 38px;
    margin-top: -24px;
}

.serviceAdvantageList__txt {
    margin-top: 20px;
}

.serviceGraphBox {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.serviceGraphBox__tit {
    font-size: 2.2rem;
    font-family: "UD新ゴ B";
    text-align: center;
}

.contents--encloseAccountLink {
    background-color: #ffffff;
}

.accountLink {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.accountLink > li {
    display: flex;
    align-items: flex-end;
    width: auto;
    min-width: 210px;
    text-align: center;
    padding-bottom: 6px;
    position: relative;
}

.accountLink > li > a {
    display: flex;
    align-items: center;
    color: #333333;
    padding: 5px 0px;
    position: relative;
    transition: 0.4s all ease;
    width: 100%;
    height: 100%;
}

.accountLink > li::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0px;
    left: calc(50% - 5px);
    margin-top: 12px;
    width: 10px;
    height: 6px;
    background: url(/static/jp/common/img/ico_bottomArrow05.png) 0 0 no-repeat;
    background-size: 10px auto;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.accountLink > li > a:hover {
    color: #06C755;
    text-decoration: underline;
}

.accountLink .accountLink__text {
    display: inline-block;
    padding: 0 50px;
    position: relative;
    width: 100%;
}

.accountLink > li > a::before,.accountLink > li > a::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 1em);
    width: 1px;
    height: 2em;
    background-color: #d0d0d0;
}

.accountLink .accountLink__text::before {
    display: none;
    left: 0px;
}

.accountLink > li > a::after {
    display: none;
    right: 0;
}

.accountLink > li:first-child a::before {
    display: block;
}

.accountLink > li:last-child a::after {
    display: block;
}

@media screen and (max-width: 1023px) {
    .aboutAccount + .contents:not(.contents--bottomMenu):not(.contents--serviceOther):not(.contents--confirm) {
        margin-top:30px;
        padding-bottom: 0px;
    }

    .contents + .contents.contents--nextAcctLinkElm {
        margin-top: 150px;
    }

    .contents + .contents.contents--option {
        margin-top: 0px;
    }

    .contents + .contents.contents--Case {
        margin-top: 0px;
    }

    .contents + .contents.contents--FeePlan {
        margin-top: 0px;
    }

    .contents + .contents.contents--sales {
        margin-top: 0px;
    }

    .contents__inner {
    }

    .contents__inner--confirm {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .contents--encloseAccountLink + .contents--nextAcctLinkElm .contents__inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .contents--encloseAccountLink + .contents--nextAcctLinkElm .contents__inner:only-of-type {
        padding-top: 0px;
    }

    .contents--encloseAccountLink + .contents--nextAcctLinkElm .contents__inner:first-child {
        padding-top: 0px;
    }

    .serviceH1Area + .contents:not(.contents--encloseAccountLink) .contents__inner {
        padding-top: 0px;
    }

    .contents--basicFunctions .contents__inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .contents--Case .contents__inner {
        padding-bottom: 30px;
    }

    .aboutAccount + .contents .contents__inner:not(.contents__inner--confirm) {
        padding-bottom: 0;
    }

    .aboutAccount + .contents:not(.contents--bottomMenu):not(.contents--serviceOther) .contents__inner:not(.contents__inner--confirm) {
        padding-bottom: 30px;
    }

    .aboutAccount + .contents--confirm .contents__inner {
        padding-top: 60px;
    }

    .contents--confirm .contents__inner {
        padding: 30px 0 50px 0;
    }

    .contents--planInfo .contents__inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .contents--adsFlow .contents__inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .contents--adsDld .contents__inner {
        padding-bottom: 30px;
    }

    .contents--confirm + .contents .contents__inner--case {
        padding-top: 0;
    }

    .contents--gray .contents__inner {
        overflow: hidden;
        padding-bottom: 30px;
    }

    .serviceH1Area {
        margin-top: 0;
        background-image: none;
        height: inherit;
        padding: 0;
    }

    .serviceH1Area--l {
        margin-top: 0;
    }

    .serviceH1Area:before {
        display: none;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 16vw 16vw 0 0;
        border-color: #21b4cb transparent transparent transparent;
    }

    .serviceH1Area:after {
        display: none;
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 16vw 16vw 0;
        border-color: transparent #1ebd93 transparent transparent;
    }

    .serviceH1Area__lead {
        margin-top: 25px;
    }

    .serviceH1Area__txtWarp {
        order: 2;
        width: 100%;
        max-width: initial;
        min-width: 100%;
    }

    .serviceH1Area__txt .serviceH1Area__lead {
        font-size: 1.6rem;
        font-family: "UD新ゴ M";
    }

    .serviceH1Area__tit {
        font-size: 3.2rem;
    }

    .serviceH1Area__box .serviceH1Area__tit {
        font-size: 2.8rem;
        margin-top: 5px;
        padding-bottom: 25px;
    }

    .serviceH1Area__box .serviceH1Area__tit--img {
        width: 160px;
        margin: 0 auto;
    }

    .serviceH1Area__logo--pc {
        display: none;
    }

    .serviceH1Area__logo--sp {
        display: initial;
    }

    .serviceH1Area__img {
        position: static;
        -webkit-transform: none;
        transform: none;
        width: 98px;
        min-width: 98px;
        margin-right: 10px;
    }

    .serviceH1Area__adsBtnArea {
        margin-top: 30px;
    }

    .mainVisual {
        display: block;
        order: 1;
        height: 220px;
        width: 100%;
        background-image: url(/static/jp/service/line-official-account/img/bg_index01_sp.jpg);
    }

    .mainVisual--lineAds {
        background-image: url(/static/jp/service/line-ads/img/bg_index02_sp.jpg);
    }

    .mainVisual--media {
        background-image: url(/static/jp/service/media-service/img/bg_media_sp.jpg);
    }

    .mainVisual--flyer {
        background-image: url(/static/jp/service/line-flyer/img/bg_flyer02_sp.jpg);
    }

    .mainVisual--research {
        background-image: url(/static/jp/service/line-research/img/bg_research02_sp.jpg);
    }

    .serviceH1Area__box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        max-width: 100%;
        margin: 0 auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        align-items: baseline;
        position: relative;
        height: auto;
        width: 100%;
        min-height: initial;
    }

    .serviceH1Area__box--mh {
        min-height: initial;
    }

    .serviceH1Area__iconArea {
        margin-top: 15px;
    }

    .serviceH1Area__txt {
        text-align: center;
    }

    .serviceH1Area__box div.serviceH1Area__txt {
        flex-grow: 1;
        flex-shrink: 1;
        order: 2;
        display: block;
        padding: 24px 18px 28px 18px;
        max-width: 100%;
        height: 100%;
        width: 100%;
    }

    .serviceH1Area__btn {
        flex-direction: inherit;
        justify-content: space-between;
        align-items: stretch;
    }

    .serviceH__btn--vertical {
        flex-direction: column;
    }

    .serviceH1Area__2ndLyrBtnArea {
        margin-top: 26px;
    }

    .serviceH1Area__txt .defaultBtn {
        display: flex;
        min-width: auto;
        width: calc(100% / 2 - 7.5px);
    }

    .serviceH1Area__txt .defaultBtn:last-child {
        margin-left: 15px;
    }

    .serviceH1Area__txt .researchContact__btn > a {
    }

    .serviceH1Area__txt .defaultBtn:last-child > a {
        margin-top: 0;
    }

    .defaultBtn__arrow01:after {
        display: none;
    }

    .serviceH1Area__txt .serviceH__btn > a {
        display: inline-block;
        padding: 9px 18px 8px;
        line-height: 1.5;
        min-width: 220px;
    }

    .serviceH1Area__txt .serviceH1Area__2ndLyrBtnArea {
        display: block;
    }

    .serviceH1Area__2ndLyrBtnArea--research .serviceH1Area__2ndLyrBtn > a {
        line-height: 2;
    }

    .serviceH1Area__2ndLyrBtn {
        margin: 0 auto;
    }

    .serviceH1Area__2ndLyrBtn:nth-of-type(n + 2) {
        margin: 0 auto;
    }

    .service2ndArrow01:after {
        display: none;
    }

    .serviceH1Area__2ndLyrBtnArea .pc_br {
        display: none;
    }

    .serviceH1Area__txt > br {
    }

    .serviceTopH2Area {
        margin: 10px auto 50px;
    }

    .pageH1Area + .contents .serviceTopH2Area {
        margin-top: 10px;
    }

    .serviceTopH2Area__tit {
        padding: 0 25px;
        font-size: 2.4rem;
    }

    .serviceTopH2Area + .serviceTopTxt {
        margin-top: initial;
        margin-bottom: 50px;
    }

    .serviceH3Area {
        position: relative;
        margin: 50px auto 25px;
        display: block;
    }

    .serviceH3Area:before {
        display: block;
        width: 25px;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .serviceH3Area:after {
        display: block;
        width: 25px;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .serviceH3Area__tit {
        font-size: 2.4rem;
    }

    .servicePoint {
        margin-top: 0px;
        padding-left: 0;
        padding-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: left;
    }

    .servicePoint--reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .servicePoint > div:nth-of-type(2) {
        margin-left: 0;
    }

    .servicePoint__txtBox {
        width: 100%;
    }

    .servicePoint__tit + .servicePoint__txt {
        margin-top: 0px;
    }

    .servicePoint__imgBox {
        max-width: 100%;
        width: 100%;
        display: block;
        text-align: center;
    }

    .servicePoint__img {
        max-width: 100%;
        margin-top: 40px;
    }

    .servicePoint__point {
        padding-left: 25px;
        font-size: 3.4rem;
    }

    .servicePoint__pointNum {
        font-size: 5.2rem;
    }

    .servicePoint__tit {
        text-align: left;
        font-size: 2.2rem;
        font-family: "UD新ゴ B";
        margin-top: 60px;
        margin-bottom: 30px;
    }

    .servicePoint__tit__line2 {
        margin-top: 60px;
        margin-bottom: 30px;
    }

    .servicePoint__tit::after {
        display: none;
    }

    .serviceList {
        display: block;
    }

    .serviceList__item {
        padding: 30px 15px;
        margin: 0 auto;
        max-width: 700px;
        width: 100%;
    }

    .serviceList__item:nth-child(3n + 1) {
        margin-left: auto;
    }

    .serviceList__item:nth-child(n + 2) {
        margin-top: 30px;
    }

    .serviceList__img {
        max-width: none;
        text-align: center;
    }

    .serviceList__tit {
        margin-top: 40px;
        font-size: 1.8rem;
    }

    .serviceList__txt {
        margin-top: 10px;
    }

    .serviceList__btn {
        margin-top: 10px;
    }

    .serviceTopList {
        display: block;
    }

    .servicePanel {
        width: 100%;
        margin-top: 45px;
    }

    .servicePanel:first-of-type {
        margin-top: 0px;
    }

    .servicePanel:nth-of-type(n + 2) {
        margin-top: 50px;
    }

    .servicePanel__frame {
        display: flex;
        flex-direction: column;
    }

    .servicePanel__frame .servicePanel__img {
        order: 2;
    }

    .servicePanel__frame .servicePanel__detail {
        order: 1;
        padding: 0 0 20px;
    }

    .servicePanel__linkInner--oneline {
        display: block;
    }

    .servicePanel__linkInner--oneline .servicePanel__img {
        display: none;
    }

    .servicePanel__linkInner--oneline .servicePanel__detail {
        width: 100%;
        margin-left: 0;
        padding-top: 0;
    }

    .servicePanel__linkInner--oneline .servicePanel__txt {
        text-decoration: none;
    }

    .servicePanel a:hover .servicePanel__linkInner--oneline .servicePanel__txt {
        text-decoration: none;
    }

    .servicePanel__txt {
        font-size: 16px;
    }

    .contents--serviceOther .contents__inner--serviceTop {
        padding-top: 50px;
    }

    .contents--serviceOther .servicePanel__link {
        pointer-events: none;
    }

    .contents--serviceOther .serviceMethod__btn {
        display: block;
    }

    .contents--serviceOther .serviceCtns .serviceCtns__list {
        display: block;
    }

    .contents--serviceOther .serviceCtns .servicePanel {
        width: 100%;
    }

    .adsInfoCtns {
        display: block;
    }

    .adsInfoCtns__img {
        width: 100%;
    }

    .adsInfoCtns__tit {
        margin-top: 30px;
    }

    .adsInfoCtns__desc {
        width: 100%;
    }

    .contents--ads {
        padding-bottom: 0px;
    }

    .contents--adsInfo {
        font-size: 16px;
    }

    .contents--adsInfo .serviceH2Area__tit {
        font-size: 24px;
    }

    .contents--adsCase {
        margin-bottom: 30px;
    }

    .contents--adsFlow {
        font-size: 16px;
    }

    .contents--adsFlow .serviceH2Area__tit {
        font-size: 24px;
    }

    .contents--adsDistribution .serviceH2Area__txt {
        font-size: 16px;
    }

    .contents--adsDistribution .orangeBtn {
        margin-left: 20px;
        margin-right: 20px;
    }

    .serViceAdsInfo {
        display: block;
        margin: 65px 0 50px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .serViceAdsInfo .serViceAdsInfo__imgBox {
        margin: 30px auto 0;
    }

    .serViceAdsInfo .serViceAdsInfo__descBox {
        margin: 0 auto;
    }

    .serViceAdsInfo .serViceAdsInfo__imgBox01Inner {
        margin-right: 0px;
        width: auto;
    }

    .serViceAdsInfo .serViceAdsInfo__descBox01Inner {
        margin-left: 0;
    }

    .serViceAdsInfo .serViceAdsInfo__imgBox02Inner {
        margin-left: 0;
        width: auto;
    }

    .serViceAdsInfo .serViceAdsInfo__descBox02Inner {
        margin-right: 0;
    }

    .serViceAdsInfo .serViceAdsInfo__imgBox03Inner {
        margin-right: 0;
        width: auto;
    }

    .serViceAdsInfo .serViceAdsInfo__imgBox04Inner {
        margin-left: 0;
        width: auto;
    }

    .serViceAdsInfo .serViceAdsInfo__descBox03Inner {
        margin-left: 0;
    }

    .serViceAdsInfo__tti {
        font-size: 2rem;
        top: inherit;
        bottom: 10px;
        position: relative;
        margin: 60px 0 30px 0;
    }

    .serViceAdsInfo__descBoxInner {
        max-width: 100%;
    }

    .serViceAdsInfo__txt {
        margin-top: 37px;
    }

    .serViceAdsInfo__ttiBox {
        height: 110px;
    }

    .serViceAdsInfo__ttiBox .serViceAdsInfo__num {
        top: inherit;
        bottom: 0;
    }

    .adsCarousel {
        margin-bottom: 50px;
    }

    .adsCarousel__inner {
        margin-left: 0;
    }

    .adsCarousel__arrow {
        right: 55px;
    }

    .adsCarousel__arrow--prev {
        left: 55px;
    }

    .adsIntroBox {
        margin-top: 30px;
    }

    .adsIntroBox__list {
        margin-top: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .adsIntroBox__listBox:first-of-type {
        margin-top: 0;
    }

    .adsIntroBox__listBox:last-child {
        padding-bottom: 0;
    }

    .adsIntroBox__listBox {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .adsIntroBox__listBox {
        text-align: left;
        border: none;
    }

    .adsIntroBox__box {
        display: flex;
        justify-content: flex-start;
    }

    .adsIntroBox__icoBox {
        width: 43%;
        max-width: 180px;
        border: 1px solid #d9d9d9;
        padding: 20px;
        margin-bottom: 0;
        min-height: 110px;
    }

    .adsIntroBox__icoBox:before {
        background-size: cover;
        width: 110px;
        height: 110px;
        margin: 20px;
        -webkit-transform: none;
        transform: none;
    }

    .adsIntroBox__ico {
        height: auto;
    }

    .adsIntroBox__txtBox {
        margin-left: 20px;
    }

    .adsIntroDldBox__listBox:first-of-type {
        margin-top: 0;
    }

    .adsIntroDldBox__listBox {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .adsIntroDldBox__listBox {
        text-align: left;
        border: none;
    }

    .adsIntroDldBox__listBox:last-child .adsIntroDldBox__btn:last-child {
        margin-bottom: 0;
    }

    .adsIntroDldBox__box {
        display: flex;
        justify-content: flex-start;
    }

    .adsIntroDldBox__icoBox {
        width: 43%;
        max-width: 180px;
        border: 1px solid #d9d9d9;
        padding: 20px;
        min-height: 110px;
    }

    .adsIntroDldBox__icoBox:before {
        background-size: cover;
        width: 110px;
        height: 110px;
        margin: 20px;
        -webkit-transform: none;
        transform: none;
    }

    .adsIntroDldBox__ico {
        height: auto;
    }

    .adsIntroDldBox__txtBox {
        padding: 0;
        margin-left: 20px;
    }

    .adsIntroDldBox__icoBox {
        margin: 0;
    }

    .adsIntroDldBox__icoBox {
        padding: 0;
        margin: 0;
        border: none;
    }

    .adsIntroDldBox__ico:before {
        padding-bottom: 67%;
    }

    .adsCase__list .adsCase__item {
        width: 100%;
    }

    .adsCase__list .adsCase__item:nth-of-type(n + 2) {
        margin-top: 60px;
    }

    .contents--adsPartner .serviceH2Area__tit {
        padding: 0;
    }

    .modalService__tit {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .modalService__tit img {
        max-width: 136px;
    }

    .modalService__titInner {
        margin-left: 15px;
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .modalService__txt {
        margin-top: 15px;
    }

    .modalService__box {
        background: #f2f2f2;
        max-width: 600px;
        margin: 15px auto 0;
        padding: 20px;
        border-radius: 5px;
    }

    .modalService__notes {
        margin-top: 15px;
        font-size: 1.2rem;
    }

    .modalServiceColumn1__item {
        max-width: 520px;
        margin: 0 auto;
    }

    .modalServiceColumn2 {
        display: block;
    }

    .modalServiceColumn2__item {
        margin: 30px auto 0;
        max-width: 420px;
    }

    .modalServiceColumn2__item:first-child {
        margin-top: 0;
    }

    .modalServiceColumn2__img {
        margin-top: 20px;
    }

    .researchExample {
        display: block;
    }

    .researchExample--column2 {
        display: block;
    }

    .researchExample--column2 .researchExample__item {
        margin-left: 0;
        margin-top: 20px;
    }

    .researchExample__item {
        margin-left: 0;
        margin-top: 20px;
    }

    .researchPartner {
        display: block;
        padding: 15px 0;
    }

    .researchPartner__logo {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .researchPartner__info {
        max-width: 600px;
        margin: 15px auto 0;
        width: 100%;
    }

    .researchPartner__tit {
        font-size: 1.4rem;
    }

    .researchPartner__txt {
        font-size: 1.2rem;
    }

    .researchCourse {
        margin-top: 30px;
        display: block;
    }

    .researchCourse__box {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }

    .researchCourse__box:first-child {
        margin-top: 0;
    }

    .researchCourse__tit {
        font-size: 2.4rem;
    }

    .researchCourse__titSub {
        font-size: 2.4rem;
    }

    .researchCourse__boxInner {
        padding: 15px;
    }

    .researchCourse__notes > li {
        font-size: 1.2rem;
    }

    .serviceSampleScreen {
        margin: 30px auto 0;
        max-width: 600px;
    }

    .serviceSampleScreen__item {
        width: calc(100% / 2 - 8px);
        margin-left: 15px;
    }

    .serviceSampleScreen__item:nth-child(3n + 1) {
        margin-left: 15px;
    }

    .serviceSampleScreen__item:nth-child(2n + 1) {
        margin-left: 0;
    }

    .serviceSampleScreen__item:nth-child(n + 3) {
        margin-top: 30px;
    }

    .serviceDeliveryFlow {
        display: block;
    }

    .serviceDeliveryFlow__item {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: flex-start;
        -ms-flex-align: flex-start;
        align-items: flex-start;
        width: 100%;
        min-height: 130px;
        margin-top: 60px;
        margin-left: 0;
        padding-bottom: 36px;
    }

    .serviceDeliveryFlow__item:before {
        top: -45px;
        left: 50%;
        margin-left: -5px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        width: 11px;
        height: 30px;
    }

    .serviceDeliveryFlow--ads .serviceDeliveryFlow__item:before {
        background-image: url("/static/jp/service/line-flyer/img/ico_flow01_gray_sp.png");
    }

    .serviceDeliveryFlow__item:first-child {
        margin-top: 0;
    }

    .serviceDeliveryFlow__item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .serviceDeliveryFlow__ico {
        padding-top: 0;
        padding-left: 120px;
        text-align: left;
    }

    .serviceDeliveryFlow__ico:before {
        top: 0;
        left: 0;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
        width: 94px;
        height: 94px;
    }

    .serviceDeliveryFlow__tit {
        text-align: left;
    }

    .serviceDeliveryFlow__txt {
        font-size: 1.4rem;
    }

    .serviceDeliveryFlow--ads .serviceDeliveryFlow__item {
        width: 100%;
    }

    .serviceAncList {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .serviceAncList__item {
        width: calc(100% / 2 - 8px);
        margin-left: 15px;
    }

    .serviceAncList__item:nth-child(2n + 1) {
        margin-left: 0;
    }

    .serviceAncList__item:nth-child(n + 3) {
        margin-top: 15px;
    }

    .serviceAncList__btn {
        position: relative;
        top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: #fff;
        width: 100%;
        min-height: 60px;
        text-align: center;
        border-radius: 5px;
    }

    .serviceAncList__btn:hover {
        top: 0;
        -webkit-box-shadow: 0 2px 0 #e0e0e0;
        box-shadow: 0 2px 0 #e0e0e0;
    }

    .serviceMedia {
        margin-top: 30px;
    }

    .serviceMedia__inner {
        display: block;
        width: 100%;
        margin: 0 0 25px;
        padding: 30px;
    }

    .serviceMedia__inner:first-child {
        margin-top: 0;
    }

    .serviceMedia__inner--livedoorBlog {
        padding: 30px 21px 30px 30px;
    }

    .serviceMedia__img {
        margin: auto;
        max-width: 500px;
        min-width: inherit;
    }

    .serviceMedia__info {
        margin: 35px auto 0;
        max-width: 500px;
    }

    .serviceMedia__slogan {
        display: block;
        height: inherit;
        font-size: 1.4rem;
    }

    .serviceMedia__logo {
        height: inherit;
        margin: 0 auto;
        text-align: center;
    }

    .serviceMedia__document {
        text-align: center;
    }

    .serviceMedia__link {
        margin-top: 25px;
    }

    .serviceMedia__link:hover {
        color: #333;
    }

    .grayBtn.serviceMedia__btn {
        margin-top: 55px;
    }

    .serviceTab__item {
        width: 100%;
        margin-left: 15px;
    }

    .serviceTab__item:first-child {
        margin-left: 0;
    }

    .serviceTab__item a {
        position: relative;
        display: block;
        color: #fff;
        font-family: "UD新ゴ B";
        padding: 15px 10px;
        font-size: 1.6rem;
        text-align: center;
        background: #cccccc;
    }

    .serviceTab__flag {
        display: table;
        top: -30px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .serviceTab__flagInner span {
        font-size: 1.3rem;
    }

    .serviceTab__flagOuter {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        top: -30px;
        left: 0;
        width: 100%;
    }

    .serviceTab__flagOuter > .serviceTab__flag {
        position: static;
        -webkit-transform: none;
        transform: none;
    }

    .serviceTab__item--heightMax a {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .serviceTabContents {
        padding: 20px 15px;
    }

    .serviceAccontColumn2 {
        margin-top: 25px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .serviceAccontColumn2 > div:nth-of-type(2) {
        margin-top: 30px;
        margin-left: 0;
    }

    .serviceAccontColumn2--reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .serviceAccontColumn2--reverse > div:nth-of-type(1) {
        margin-top: 30px;
    }

    .serviceAccontColumn2--reverse > div:nth-of-type(2) {
        margin-top: 0;
    }

    .serviceAccontColumn2__txtBox {
        width: 100%;
    }

    .serviceAccontColumn2__tit {
        font-size: 1.8rem;
    }

    .serviceMethod,.serviceContent {
        margin-top: 0px;
        padding-left: 0;
        padding-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: left;
    }

    .serviceMethod > div:nth-of-type(2) {
        margin-top: 50px;
        margin-left: 0;
    }

    .serviceMethod + .serviceMethod {
        margin-top: 60px;
    }

    .serviceMethod--reverse,.serviceContent--reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .serviceMethod--reverse > div:nth-of-type(1) {
        margin-top: 30px;
    }

    .serviceMethod--reverse > div:nth-of-type(2),.serviceMethod--reverse > div:nth-of-type(2) {
        margin-top: 0;
    }

    .serviceMethod > div:not(.serviceMethod__txtBox--option):nth-of-type(2) {
        margin-left: 0;
    }

    .serviceMethod > .serviceMethod__txtBox--option:nth-of-type(2) {
        margin-top: 100px;
    }

    .serviceMethod__imgBox,.serviceContent__imgBox {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .serviceMethod__imgBox {
        display: none;
    }

    .serviceMethod__imgBox--spDisplay {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .serviceMethod__img {
        padding-top: 0;
    }

    .serviceMethod__txtBox,.serviceContent__txtBox {
        width: 100%;
    }

    .serviceMethod__tit,.serviceContent__slogan {
        font-size: 1.8rem;
    }

    .serviceMethod__btn {
        text-align: center;
    }

    .serviceMethod__img--adsMerit {
        max-width: 100%;
    }

    .serviceMethod__bg01--ads {
        background: url(/static/jp/service/line-ads/img/ads_number01.png) no-repeat top 8% right 0;
        padding-top: 88px;
    }

    .serviceMethod__bg02--ads {
        background: url(/static/jp/service/line-ads/img/ads_number02.png) no-repeat top 16% right 0;
    }

    .serviceMethod__bg03--ads {
        background: url(/static/jp/service/line-ads/img/ads_number03.png) no-repeat top 24% right 0;
    }

    .serviceMethod__tit--lv3--option--ads {
        font-size: 2.4rem;
    }

    .serviceMethod__tit--lv3::before {
    }

    .serviceContent {
        margin-bottom: 0;
    }

    .serviceContent__tit {
        text-align: center;
        margin-top: 120px;
    }

    .serviceContent__slogan {
        font-size: 1.4rem;
    }

    .serviceContent__img {
        padding-top: 35px;
    }

    .serviceContent--reverse > div:nth-of-type(1) {
        margin-top: 0;
    }

    .serviceTablePlan {
        margin-top: 20px;
    }

    .serviceTablePlan td,.serviceTablePlan th {
        padding: 8px 5px;
        height: auto;
        font-size: 1.2rem;
    }

    .contentsBnr {
        margin-top: 40px;
    }

    .contentsBnr-link {
        width: 100%;
        height: 0;
        padding-top: 24.348%;
        background-image: url(/static/jp/service/line-official-account/img/bnr_simulation_sp.png);
    }

    .serviceTableAccount {
        margin-top: 20px;
    }

    .serviceTableAccount td,.serviceTableAccount th {
        font-size: 1.2rem;
        padding: 10px;
    }

    .serviceTableAccount__ico {
        text-align: center !important;
    }

    .serviceTableAccount__ico:before {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
        width: 28px;
        height: 30px;
    }

    .serviceBox {
        margin-top: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .serviceBox__item {
        width: 100%;
        margin-left: 0;
    }

    .serviceBox__item:nth-child(3n + 1) {
        margin-left: 0;
    }

    .serviceBox__item:nth-child(n + 2) {
        margin-top: 30px;
    }

    .serviceBox--column2 .serviceBox__item {
        width: 100%;
        margin-left: 0;
    }

    .serviceBox--column2 .serviceBox__item:nth-child(2n + 1) {
        margin-left: 0;
    }

    .serviceBox--column2 .serviceBox__item:nth-child(n + 4) {
        margin-top: 0;
    }

    .serviceBox--column2 .serviceBox__item:nth-child(n + 2) {
        margin-top: 30px;
    }

    .serviceBox--column4 .serviceBox__item {
        width: 100%;
        margin-left: 0;
    }

    .serviceBox--column4 .serviceBox__item:nth-child(4n + 1) {
        margin-left: 0;
    }

    .serviceBox--column4 .serviceBox__item:nth-child(n + 4) {
        margin-top: 0;
    }

    .serviceBox--column4 .serviceBox__item:nth-child(n + 2) {
        margin-top: 30px;
    }

    .serviceBox__tit {
        margin-top: 20px;
        font-size: 1.8rem;
    }

    .serviceBox__txt {
        margin-top: 15px;
    }

    .serviceAccontLink__item {
        padding: 0 10px;
    }

    .serviceAdvantageColumn2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 50px;
    }

    .serviceAdvantageColumn2__txtArea {
        width: 100%;
    }

    .serviceAdvantageColumn2__tit {
        font-size: 2.4rem;
    }

    .serviceAdvantageColumn2__titSub {
        margin-top: 15px;
        font-size: 1.8rem;
    }

    .serviceAdvantageColumn2__txt {
        margin-top: 10px;
    }

    .serviceAdvantageColumn2__imgArea {
        width: 100%;
        max-width: 280px;
        margin-left: auto !important;
        margin-right: auto;
    }

    .serviceAdvantageColumn2 > div:nth-child(2n + 2) {
        margin-left: 0;
        margin-top: 20px;
    }

    .serviceAdvantageBox {
        margin-top: 20px;
        padding: 30px 20px;
    }

    .serviceAdvantageList {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .serviceAdvantageList__item {
        margin-left: 0;
        width: 100%;
    }

    .serviceAdvantageList__item:nth-child(n + 2) {
        margin-top: 30px;
    }

    .serviceAdvantageList__ico {
        position: relative;
        padding-left: 60px;
        font-size: 1.6rem;
        font-family: "UD新ゴ B";
    }

    .serviceAdvantageList__ico:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 38px;
        height: 38px;
        margin-top: -24px;
    }

    .serviceAdvantageList__txt {
        margin-top: 15px;
    }

    .serviceGraphBox {
        margin-top: 15px auto 0;
        padding: 15px;
        border: 1px solid #e0e0e0;
    }

    .serviceGraphBox__tit {
        font-size: 1.8rem;
    }

    .aboutAccount.aboutAccount--ads {
        margin-top: 50px;
    }

    .aboutAccount.contents--confirm {
        margin-top: 50px;
    }

    .contents--confirm + .aboutAccount {
        margin-top: 0px;
    }

    .contents--adsFlow + .aboutAccount {
        margin-top: 20px;
    }

    .aboutAccount.aboutAccount__serviceTop {
        margin-top: 30px;
    }
}

.maxWidth__260 {
    max-width: 260px !important;
}

.researchCourse2 .researchCourse__tit {
    font-size: 2.4rem;
    position: relative;
}

.researchCourse2 .researchCourse__tit span {
    position: absolute;
    right: 10px;
    top: 15px;
    display: block;
    padding: 3px;
    border: 2px solid #fff;
    font-size: 1rem;
    border-radius: 5px;
    line-height: 1.3;
    text-align: center;
}

.researchCourse2 .researchCourse__titSub {
    color: #404040;
    font-size: 2.2rem;
}

.researchCourse2 .researchCourseFuction {
    width: 100%;
    margin-top: 25px;
    border: none;
}

.researchCourse2 .researchCourseFuction__inner {
    background-color: #f2f2f2;
}

.researchCourse2 .researchCourse__img {
    margin: 20px auto 0;
}

.researchCourse2 .researchCourseFuction__tit {
    margin: 30px 0 0;
}

.researchCourse2 .researchCourseFuction__titInner {
    color: #404040;
    font-size: 2rem;
    font-family: "UD新ゴ B";
    position: relative;
    padding-left: 19px;
    padding: 0 0 0 19px;
    border-bottom: none;
}

.researchCourse2 .researchCourseFuction__titInner::before {
    display: block;
    content: "";
    position: absolute;
    top: calc((1em * 1.6) / 2 - 5px);
    left: 0;
    width: 9px;
    height: 9px;
    background-color: #06C755;
}

.researchCourse__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.researchCourse__list li {
    margin-top: 20px;
    width: calc(50% - 5px);
}

.researchCourse2 .researchCourseFuction__inner {
    padding: 0;
}

.researchCourseFuction__innerSpace {
    padding: 30px;
}

.researchCourseFuction__innerTitle {
    padding: 15px;
    background-color: #06C755;
    font-size: 2rem;
    font-family: "UD新ゴ B";
    color: #fff;
    text-align: center;
    border-radius: 5px 5px 0 0;
}

.supportH4Title {
    color: #1ebd92;
    font-size: 1.8rem;
}

.supportH5Title {
    font-size: 1.6rem;
    font-family: "UD新ゴ M";
    margin-top: 80px;
    padding-left: 14px;
    background: url(/static/jp/service/line-research/support/img/ico_index08.gif) no-repeat 0 center;
    background-size: 11px 6px;
}

.support__box {
    margin-top: 20px;
}

.serviceSupportList__ico--type01:before {
    background: url("/static/jp/service/line-research/support/img/ico_index01_2.png") 0 0 no-repeat;
}

.serviceSupportList__ico--type02:before {
    background: url("/static/jp/service/line-research/support/img/ico_index02_2.png") 0 0 no-repeat;
}

.serviceSupportList__ico--type03:before {
    background: url("/static/jp/service/line-research/support/img/ico_index03_2.png") 0 0 no-repeat;
}

.serviceSupportList__ico:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 38px;
    margin-top: -24px;
}

.packageBox {
    margin-top: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.packageBox dt {
    border-radius: 5px 5px 0 0;
    background: #21b5ca;
    background: -webkit-gradient(linear,left top,right top,from(#21b5ca),color-stop(30%,#20b7ba),color-stop(30%,#20b7ba),color-stop(70%,#1fbba1),to(#1ebd92));
    background: linear-gradient(to right,#21b5ca 0%,#20b7ba 30%,#20b7ba 30%,#1fbba1 70%,#1ebd92 100%);
    font-size: 1.6rem;
    font-family: "UD新ゴ B";
    text-align: center;
    color: #fff;
    padding: 5px;
}

.packageBox dd {
    padding: 15px 15px 15px 25px;
}

.packageBox li {
    margin-bottom: 10px;
}

.packageBox li:last-child {
    margin-bottom: 0px;
}

.serviceSupportFlow__ico--type01:before {
    background-image: url("/static/jp/service/line-research/support/img/ico_index04.png");
}

.serviceSupportFlow__ico--type02:before {
    background-image: url("/static/jp/service/line-research/support/img/ico_index05.png");
}

.serviceSupportFlow__ico--type03:before {
    background-image: url("/static/jp/service/line-research/support/img/ico_index06.png");
}

.serviceSupportFlow__ico--type04:before {
    background-image: url("/static/jp/service/line-research/support/img/ico_index07.png");
}

.rcNotes {
    margin-top: 30px;
    font-size: 1.4rem;
}

.functionH3Title {
    margin-top: 25px;
    font-size: 1.8rem;
    color: #1ebd92;
    border-bottom: 1px solid #d0d0d0;
}

.functionH4Title {
}

.functionTable {
    position: relative;
    width: 100%;
}

.functionTable th,.functionTable td {
    padding: 15px 15px;
    font-size: 1.6rem;
}

.functionTable td {
    vertical-align: middle;
}

.functionTable td span {
    font-family: "UD新ゴ B";
}

.functionTable2 table {
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    width: 100%;
}

.functionTable2 th,.functionTable2 td {
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    padding: 10px 5px;
    text-align: center;
    vertical-align: middle;
}

.functionTable2 th {
    background: #b3b3b3;
    color: #fff;
    width: 44%;
}

.functionTable2 td span {
    font-family: "UD新ゴ B";
}

.functionUnit {
    font-size: 1.4rem;
    text-align: right;
}

.mt0 {
    margin-top: 0 !important;
}

.pLR30 {
    padding-right: 30px;
    padding-left: 30px;
}

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

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

.pL50 {
    padding-left: 50px;
}

.fwNormal {
    font-family: "UD新ゴ M";
}

.btG {
    border-top: 1px solid #e0e0e0;
}

@media screen and (min-width: 1024px) {
    .spOnly {
        display:none;
    }

    .researchCourse2 {
        display: flex;
    }

    .researchCourse2 .researchCourse__img {
        max-width: 220px;
    }

    .researchCourse2 .researchCourse__box.light {
        width: 35%;
    }

    .researchCourse2 .researchCourse__box.support {
        width: 65%;
    }

    .support .researchCourseFuction {
        display: flex;
        justify-content: space-between;
    }

    .support .researchCourseFuction__inner {
        width: calc(50% - 10px);
        min-height: 573px;
    }

    .light .researchCourseBtn a {
        width: 80%;
    }

    .support__box {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .support__box__imgArea {
        max-width: 384px;
        margin-left: 20px;
    }

    .support__box__txtArea {
        width: calc(100% - 404px);
    }

    .supportLinkList .downloadLinkList__btn {
        width: calc(100% / 3 - 15px);
    }

    .functionTable th,.functionTable td {
        width: auto;
    }

    .functionH3Title {
        padding: 0 0 10px 6px;
    }

    .pageColorBox.research {
        padding: 30px;
    }

    .research .linkColumn3__item {
        width: auto;
        margin-left: 60px;
    }

    .mtTitle {
        margin-top: 110px;
    }

    .mtTitle2 {
        margin-top: 70px;
    }

    .w50_p {
        width: 50% !important;
    }
}

@media screen and (max-width: 1023px) {
    .researchCourse__titSub {
        font-size:2rem;
    }

    .researchCourse2 .researchCourse__tit {
        font-size: 2rem;
    }

    .support__box__imgArea {
        text-align: center;
        margin-bottom: 20px;
    }

    .researchCourse2 .researchCourse__img {
        padding: 0 20px;
    }

    .supportH5Title {
        margin-top: 40px;
    }

    .light .researchCourseBtn a {
        min-width: 190px;
    }

    .serviceSupportList__ico {
        position: relative;
        padding-left: 60px;
        font-size: 1.6rem;
        font-family: "UD新ゴ B";
    }

    .serviceSupportList__ico:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 40px;
        height: 38px;
        margin-top: -24px;
    }

    .functionTable th,.functionTable td {
        font-size: 1.2rem;
    }

    .w1 .priceTable__inner {
        margin-left: 120px;
    }

    .w1 .priceTable__item th {
        width: 120px;
    }

    .w1 .priceTable__item td {
        width: 250px;
    }

    .w2 .priceTable__inner {
        margin-left: 215px;
    }

    .w2 th:first-child {
        width: 215px;
    }

    .w2 th:nth-child(n + 2),.w2 td {
        width: 180px;
    }

    .w3 .priceTable__inner {
        margin-left: 210px;
    }

    .w3 .priceTable__item th {
        width: 210px;
    }

    .w3 .priceTable__item td {
        width: 180px;
    }

    .he1 {
        height: 62px;
    }

    .he2 {
        height: 69px;
    }

    .mtTitle {
        margin-top: 60px;
    }

    .mtTitle2 {
        margin-top: 35px;
    }

    .contents--encloseAccountLink {
        background-color: #ffffff;
        padding: 0 0;
        margin-bottom: 30px;
    }

    .contents__inner--conversion {
        padding: 0 0 0 0;
        max-width: 100%;
    }

    .accountLink {
        border: none;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
    }

    .accountLink > li {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffffff;
        width: 100%;
        border-right: none;
        border-bottom: none;
        padding-bottom: 5px;
        min-width: auto;
        min-height: 58px;
    }

    .accountLink > li:first-child {
        border-left: none;
    }

    .accountLink > li:nth-child(odd) {
        border-right: none;
    }

    .accountLink > li:nth-child(even) {
        border-right: none;
    }

    .accountLink > li > a {
        display: flex;
        align-items: center;
        background-color: #f5f5f5;
        padding: 9px 44px 9px 20px;
        font-size: 1.4rem;
        text-align: left;
        height: 100%;
    }

    .accountLink > li::after {
        margin-top: 0;
        bottom: initial;
        top: calc(50% - 3px);
        right: 20px;
        left: initial;
    }

    .accountLink > li:first-child a::before,.accountLink > li:last-child a::after {
        display: none;
    }

    .accountLink > li > a span {
        border: none;
        padding: 0;
    }

    .accountLink .accountLink__text {
        border: none;
        padding: 0 0;
    }

    .accountLink > li > a::before,.accountLink > li > a::after,.accountLink > li:first-child .accountLink__text::before {
        display: none;
    }
}

.ServiceSampleAd {
    margin: 60px auto 0;
    max-width: 1104px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ServiceSampleAd__item {
    width: calc(100% / 2 - 45px);
    margin-left: 90px;
    display: flex;
}

.ServiceSampleAd__item:nth-child(2n + 1) {
    margin-left: 0;
}

.ServiceSampleAd__item:nth-child(n + 3) {
    margin-top: 55px;
}

.ServiceSampleAd__img {
    width: 35.57%;
}

.ServiceSampleAd__txt {
    width: calc(64.43% - 40px);
    margin-left: 40px;
}

.ServiceSampleAd__tit {
    color: #1ebd92;
    font-family: "UD新ゴ B";
    font-size: 2.2rem;
}

.ServiceSampleAd__txt p + p {
    margin-top: 10px;
}

@media screen and (max-width: 1023px) {
    .ServiceSampleAd {
        margin:30px auto 0;
        max-width: 600px;
    }

    .ServiceSampleAd__item {
        width: 100%;
        margin-left: 0;
    }

    .ServiceSampleAd__item:nth-child(n + 1) {
        margin-top: 30px;
    }

    .ServiceSampleAd__img {
        width: 35.57%;
    }

    .ServiceSampleAd__txt {
        width: calc(64.43% - 20px);
        margin-left: 20px;
    }
}

.servicePolicy__txt {
    max-width: 290px;
    margin: 30px auto 0;
    text-align: left;
}

.ServiceNews_box {
    max-width: 520px;
    margin: 40px auto 0;
}

.ServiceNews_box2 {
    max-width: 760px;
    margin: 40px auto 0;
}

.ServiceNewsColumn2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ServiceNewsColumn2__item {
    max-width: 210px;
    width: 100%;
}

.ServiceNewsColumn2__item2L {
    max-width: 260px;
}

.ServiceNewsColumn2__item2R {
    max-width: 480px;
}

.ServiceNewsColumn2__tit {
    background: #21b5ca;
    background: -webkit-gradient(linear,left top,right top,from(#21b5ca),color-stop(30%,#20b7ba),color-stop(30%,#20b7ba),color-stop(70%,#1fbba1),to(#1ebd92));
    background: linear-gradient(to right,#21b5ca 0%,#20b7ba 30%,#20b7ba 30%,#1fbba1 70%,#1ebd92 100%);
    padding: 10px 0;
    color: #fff;
    font-family: "UD新ゴ B";
    text-align: center;
    border-radius: 50px;
}

.ServiceNewsColumn2__img {
    margin-top: 25px;
}

.ServiceNews__notes {
    margin-top: 30px;
    font-size: 1.4rem;
}

@media screen and (max-width: 1023px) {
    .ServiceNewsColumn2 {
        display:block;
    }

    .ServiceNewsColumn2__item {
        margin: 30px auto 0;
        max-width: 420px;
    }

    .ServiceNewsColumn2__item:first-child {
        margin-top: 0;
    }

    .ServiceNewsColumn2__item2L,.ServiceNewsColumn2__item2R {
        margin: 30px auto 0;
        max-width: 420px;
    }

    .ServiceNewsColumn2__item2L {
        margin-top: 0;
    }
}

.serviceTxtList {
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    counter-reset: num;
    width: 800px;
}

.downloadBtn {
    margin-top: 30px;
    text-align: center;
}

.downloadBtn a {
    display: inline-block;
    border: 2px solid #06C755;
    color: #06C755;
    background-color: #ffffff;
    padding: 8px 44px 8px;
    min-width: 260px;
    font-size: 1.4rem;
    font-family: "UD新ゴ B";
    border-radius: 50px;
    text-align: center;
    -webkit-transition: color 0.4s,background-color 0.4s;
    transition: color 0.4s,background-color 0.4s;
}

.downloadBtn a:hover {
    border: 2px solid #ffffff;
    background-color: #06C755;
    color: #ffffff;
}

.downloadBtn__arrow01 {
    position: relative;
    display: inline-block;
    width: 100%;
}

.downloadBtn__arrow01:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(/static/jp/common/img/ico_rightArrow01.png) 0 0 no-repeat;
    background-size: cover;
    vertical-align: middle;
    position: absolute;
    top: calc(50% - 5px);
    right: -20px;
}

.downloadBtn a:hover .downloadBtn__arrow01:after {
    background-image: url(/static/jp/common/img/ico_rightArrow02.png);
}

@media screen and (max-width: 1023px) {
    .serviceTxtList {
        margin-left:0;
        width: auto;
    }

    .downloadBtn a {
        min-width: 220px;
        font-size: 1.4rem;
        padding: 8px 37px 7px;
    }

    .downloadBtn__arrow01:after {
        margin-top: -0.1em;
        margin-left: 0px;
        margin-right: 0px;
        width: 6px;
        height: 10px;
        right: -10px;
    }
}

.serviceList.serviceListColumn2 {
    width: 100%;
    max-width: 800px;
    margin: 30px auto 0;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.serviceListColumn2 .serviceList__item {
    width: calc(100% / 2);
    margin-left: 0;
    border-radius: 0;
    position: relative;
    margin-top: 0;
    padding: 3.75%;
}

.serviceListColumn2 .serviceList__item.serviceList__item--nobdr:nth-child(odd):after,.serviceListColumn2 .serviceList__item.serviceList__item--nobdr:nth-child(even):after {
    border: none;
}

.serviceListColumn2 .serviceList__item:nth-child(odd):after {
    content: "";
    height: 85%;
    border-left: 1px solid #e0e0e0;
    position: absolute;
    top: 7.5%;
    right: 0;
}

.serviceListColumn2 .serviceList__item:nth-child(even):after {
    content: "";
    width: 185%;
    border-top: 1px solid #e0e0e0;
    position: absolute;
    bottom: 0;
    right: 7.5%;
}

@media screen and (max-width: 1023px) {
    .serviceList.serviceListColumn2 {
        max-width:700px;
        padding: 0 15px;
    }

    .serviceListColumn2 .serviceList__item {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
        padding: 30px 0;
    }

    .serviceListColumn2 .serviceList__item:nth-child(odd):after,.serviceListColumn2 .serviceList__item:nth-child(even):after {
        content: none;
    }

    .serviceListColumn2 .serviceList__item:last-child {
        border: none;
    }

    .serviceListColumn2 .serviceList__item.serviceList__item--nobdr {
        border-bottom: none;
    }
}

.service__contents {
    padding: 0 40px;
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.08);
}

.service__contents--orange {
    background: rgba(247,108,38,0.2);
}

.service__contents__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.contentsBnr--link {
    padding-bottom: 87px;
}

.service__contents__inner > *:first-child {
    margin-top: 0;
}

.service__contents__inner:after {
    content: "";
    display: table;
    clear: both;
}

.service__contents__inner--conversion {
    padding: 15px 0;
}

.serviceNews__list {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.serviceNews__list > dt {
    display: table-cell;
    width: 10em;
    font-size: 1.4rem;
    vertical-align: top;
}

.serviceNews__list > dd {
    display: table-cell;
    font-size: 1.4rem;
    vertical-align: middle;
    font-family: "UD新ゴ B";
}

.serviceNews__list > dd > a {
    color: #333;
}

.serviceNews__list > dd > a:hover {
    text-decoration: underline;
}

.serviceNews__list + .topNews__list {
    margin-top: 18px;
}

.serviceNews__listIco {
    display: inline-block;
    width: 9em;
    padding: 2px 0.5em;
    margin-right: 20px;
    font-size: 1.3rem;
    font-family: "UD新ゴ B";
    color: #fff;
    border-radius: 3px;
    text-align: center;
}

.serviceNews__listIco--orange {
    background: #f76c26;
}

@media screen and (max-width: 1023px) {
    .service__contents {
        padding:0 15px;
    }

    .service__contents__inner--conversion {
        padding: 10px 0;
    }

    .serviceNews__list {
        display: block;
    }

    .serviceNews__list > dt {
        display: block;
        width: 100%;
    }

    .serviceNews__list > dd {
        display: block;
        margin-top: 10px;
    }
}

.ServiceSampleAd__box {
    position: relative;
}

.ServiceSampleAd__box p:last-of-type {
    position: absolute;
    bottom: 0;
}

.coution__list li {
    font-size: 1.2rem;
}

.serviceColumnSet--nextAcctLinkElm {
    display: flex;
    flex-direction: column;
}

.serviceH2Area {
    margin: 30px auto 60px;
    width: 940px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.serviceH1Area + .contents .serviceH2Area {
    margin-top: 0;
}

.contents--nextAcctLinkElm .contents__inner:first-child .serviceH2Area {
    margin-top: 0px;
}

.serviceH2Area--nextAcctLinkElm {
    margin-top: 0px;
}

.serviceH2Area--shortMB {
    margin-bottom: 60px;
}

.serviceH2Area__tit {
    padding: 0 50px;
    font-size: 2.8rem;
    font-family: "UD新ゴ B";
    color: #404040;
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.serviceH2Area:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #707070;
}

.serviceH2Area:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #707070;
}

.serviceH2Area__subTit {
    margin-top: 15px;
    font-size: 1.6rem;
    text-align: center;
}

.serviceColumn3 {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.serviceH2Area + .serviceColumn3 {
    margin-top: 0;
}

.serviceColumn3--FeePlan {
    align-items: baseline;
    padding-bottom: 45px;
}

.serviceColumn3--linePointAd {
    justify-content: space-around;
    flex-wrap: nowrap;
}

.serviceColumn3__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: calc((99% / 3) - 100px);
    margin: 0 50px;
    min-height: 0%;
}

.serviceColumn3__item--clmReverse {
    flex-direction: column-reverse;
}

.serviceColumn3__menuList {
    color: #404040;
    margin-top: 13px;
    font-size: 1.4rem;
    text-align: center;
}

.serviceColumn3__tit {
    color: #06C755;
    font-size: 2rem;
    margin-top: 40px;
    text-align: center;
    min-height: 0%;
}

.serviceColumn3__tit.serviceColumn3__tit--sticker {
    margin-top: 0;
}

.serviceColumn3__tit--FeePlan {
    color: #404040;
    font-size: 1.6rem;
    text-align: center;
}

.serviceColumn3__tit--shortMT {
    margin-top: 0px;
}

.serviceColumn3__tit strong {
    color: #06C755;
}

.serviceColumn3__tit--FeePlan strong {
    font-size: 2rem;
}

.serviceColumn3__item .pageTxt--matchHeight {
    width: 100%;
}

.serviceH2Area + .serviceColumn3__tit {
    margin-top: -10px;
}

.serviceColumn3__img {
    margin-top: 45px;
    min-height: 0%;
}

.canDo_flexColumn--swOrder04 .serviceColumn3__img {
    max-height: 180px;
}

.serviceColumn3__item--clmReverse .serviceColumn3__img {
    margin-top: 0px;
}

.serviceTxt {
    position: relative;
    line-height: 1.8;
    margin-top: 60px;
}

.contents--confirm .serviceTxt {
    margin-top: 0;
}

.contents__inner--confirm .serviceTxt {
    margin-top: 0;
}

.serviceH2Area + .serviceTxt {
    margin-top: -10px;
}

.serviceTxt.pageTxt--big {
    margin-top: 60px;
    font-size: 1.6rem;
}

.serviceTxt--fSize {
    font-size: 1.2rem;
}

.serviceTxt--color707070 {
    color: #707070;
}

.serviceColumnSet .pageTxtList {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.serviceColumnSet .pageTxtList__item--notesNum {
    display: block;
    color: #707070;
    font-size: 1.2rem;
    text-align: center;
}

.serviceColumnSet .canDo_flexColumn--swOrder03 .pageTxtList__item--notesNum {
    margin-top: 0px;
    padding-top: 5px;
    min-height: 0%;
    overflow: hidden;
}

.serviceColumnSet .canDo_flexColumn--swOrder03 .pageTxtList__item--notesNum:first-child {
    padding-top: 0px;
}

.serviceColumnSet .canDo_flexColumn--swOrder03 .pageTxtList__item--notesNum::before {
    position: relative;
    padding-right: 0.6em;
}

.pageTxtList__item--notes--adsCarousel {
    padding-left: 0;
    margin-top: 10px;
    font-family: "UD新ゴ M";
}

.pageTxtList__serviceTop {
    width: 100%;
}

.pageTxtList__serviceTop--notesNum {
    position: relative;
    counter-increment: num;
    padding-left: 2.2em;
    margin-top: 5px;
    color: #707070;
    font-size: 1.2rem;
    text-align: center;
}

.pageTxtList__serviceTop--notesNum:before {
    content: "â€»";
    position: absolute;
    left: 0;
}

.serviceColumn2.serviceColumn2--servUnderlayer {
    margin-top: 10px;
}

.serviceColumn2--servUnderlayer .serviceColumn2__box {
    margin-left: 100px;
    width: calc(50% - 100px);
}

.serviceColumn2--servUnderlayer .serviceColumn2__box:nth-child(2n + 1) {
    margin-left: 0;
}

.contents--flow .pageTxtList {
    display: inline-block;
    margin-top: 25px;
}

.carouseSWPanelList + .grayBtn,.carouseSWPanelList + .whiteBtn {
    margin-top: 60px;
}

ã€€ .pageH2Area {
    margin-top: 0;
}

.serviceH1Area + .contents .pageH2Area {
}

.aboutAccount + .contents .whiteBtn {
    margin-top: 30px;
}

@media screen and (max-width: 1023px) {
    .contents + .contents--basicFunctions {
        margin-top:0px;
    }

    .canDo_flexColumn--swOrder01 {
        order: 1;
    }

    .canDo_flexColumn--swOrder02 {
        order: 2;
    }

    .canDo_flexColumn--swOrder03 {
        order: 3;
    }

    .canDo_flexColumn--swOrder04 {
        order: 4;
    }

    .canDo_flexColumn--swOrder05 {
        order: 5;
    }

    .serviceTxt {
        margin-top: 0;
        font-size: 1.6rem;
    }

    .serviceTxt--fSize {
        font-size: 1.2rem;
    }

    center + .serviceTxt {
        margin-top: 15px;
    }

    .contents--adsDistribution .serviceTxt {
        padding-left: 20px;
        padding-right: 20px;
    }

    .serviceTxt.pageTxt--big {
        margin-top: 0;
    }

    .serviceColumnSet {
        text-align: center;
    }

    .serviceH2Area {
        position: relative;
        margin: 0px auto 50px;
        display: flex;
        align-items: center;
        width: auto;
        font-size: 2.4rem;
    }

    .serviceH1Area + .contents .serviceH2Area {
        margin-top: 30px;
    }

    .serviceH2Area:before {
        background-color: #707070;
        display: block;
        width: 100%;
        position: relative;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .serviceH2Area:after {
        background-color: #707070;
        display: block;
        width: 100%;
        position: relative;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .serviceH2Area--shortMB {
        margin-bottom: 50px;
    }

    .serviceH2Area--nextSubTit {
        margin-bottom: 30px;
    }

    .serviceH2Area.canDo_flexColumn--swOrder01 {
        margin-right: 0;
        margin-left: 0;
    }

    .serviceH2Area--nextAcctLinkElm {
        margin-top: 0;
    }

    .serviceH2Area__tit {
        color: #404040;
        font-size: 2.4rem;
        padding: 0 25px;
    }

    .serviceH2Area:before {
        left: 0;
    }

    .serviceH2Area:after {
        right: 0;
    }

    .serviceH2Area__subTit {
        margin-top: 15px;
        font-size: 1.4rem;
        text-align: center;
    }

    .serviceColumn3 {
        margin-top: 0px;
    }

    .serviceColumn3--FeePlan {
        padding-bottom: 0;
    }

    .serviceColumn3.canDo_flexColumn--swOrder04 {
        margin-top: 60px;
    }

    .serviceColumn3__img--FeePlan {
        margin-left: 10px;
    }

    .serviceColumn3__item {
        width: 100%;
    }

    .serviceColumn3__item--FeePlan {
        margin: 0 0;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .serviceColumn3__item:nth-child(3n + 1) {
        margin-left: 0px !important;
        margin-right: 0px;
    }

    .serviceColumn3__item + .serviceColumn3__item {
        margin-top: 30px;
    }

    .serviceColumn3__item--FeePlan + .serviceColumn3__item--FeePlan {
        margin-top: 60px;
    }

    .serviceColumn3__tit {
        margin-top: 0px;
    }

    .serviceColumn3__tit--linePointAd {
        line-height: 1.2;
    }

    .serviceH2Area + .serviceColumn3__tit {
        margin-top: initial;
    }

    .serviceColumn3__item + .serviceColumn3__item .serviceColumn3__tit {
        margin-top: 30px;
    }

    .serviceColumn3__item + .serviceColumn3__item .serviceColumn3__tit--linePointAd {
        margin-top: 18px;
    }

    .serviceColumn3__menuList {
        margin-top: 10px;
        font-size: 1.3rem;
    }

    .serviceColumn3__tit--FeePlan {
        margin-left: 42px;
        font-size: 1.6rem;
        text-align: left;
    }

    .serviceColumn3__item + .serviceColumn3__item .serviceColumn3__tit--FeePlan {
        margin-top: 0px;
    }

    .serviceColumn3__tit--FeePlan strong {
        font-size: 2rem;
    }

    .serviceColumn3__img {
        margin-top: 20px;
    }

    .canDo_flexColumn--swOrder04 .serviceColumn3__img {
        max-height: initial;
    }

    .serviceColumnSet .pageTxt.pageTxt--big {
        text-align: center;
    }

    .serviceColumnSet .pageTxtList__item--notesNum {
        text-align: left;
        font-size: 1.2rem;
        width: 100%;
    }

    .serviceColumnSet .canDo_flexColumn--swOrder03 .pageTxtList__item--notesNum {
        padding-left: 2.2em;
        text-indent: -2.2em;
    }

    .serviceMethod__tit--lv3 {
        text-align: left;
        font-size: 2.2rem;
        font-family: "UD新ゴ B";
    }

    .serviceMethod__tit--lv3--option {
        font-size: 2rem;
        font-family: "UD新ゴ B";
        text-align: center;
    }

    .serviceMethod__tit--lv4 {
        font-size: 1.6rem;
        font-family: "UD新ゴ B";
    }

    .serviceMethod__tit--lv4--option {
        font-family: "UD新ゴ M";
    }

    .serviceColumn2__box {
        margin-top: 0px;
        margin-left: 0px;
        width: 100%;
    }

    .serviceMethod__txt,.serviceContent__txt {
        font-size: 1.4rem;
    }

    .js-serviceOptionCarousel {
        display: block;
        margin: 0 auto;
        position: relative;
        overflow: visible;
        list-style: none;
        padding: 0;
        z-index: 1;
    }

    .js-serviceOptionCarousel__wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 1;
        margin-top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: nowrap;
        -webkit-transition-property: -webkit-transform;
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform,-webkit-transform;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        -webkit-transform: translate3d(0px,0,0);
        transform: translate3d(0px,0,0);
    }

    .serviceColumn2__box.js-serviceOptionCarousel__slide {
        width: calc(100% / 4 - 20px);
        margin-top: 40px;
        margin-right: 30px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        height: 100%;
        position: relative;
        -webkit-transition-property: -webkit-transform;
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform,-webkit-transform;
    }

    .serviceColumn2__box:not(.js-serviceOptionCarousel__slide) + .serviceColumn2__box {
        margin-top: 65px;
    }

    .serviceMethod__btn > a {
        min-width: 140px;
    }

    .serviceMethod__btn > .serviceMethod__btn--noLink {
        min-width: 140px;
    }

    .js-serviceOptionCarousel .swiper-button-prev,.js-serviceOptionCarousel .swiper-button-next {
        display: block;
        background: rgba(64,64,64,0.65);
        width: 50px;
        height: 50px;
        top: calc(50% - 25px);
        left: -10px;
        margin-top: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        border-radius: 50%;
        z-index: 15;
    }

    .js-serviceOptionCarousel .swiper-button-next {
        left: auto;
        right: -10px;
    }

    .js-serviceOptionCarousel .swiper-button-prev:after,.js-serviceOptionCarousel .swiper-button-next:after {
        content: "";
        display: inline-block;
        position: absolute;
        top: calc(50% - 5px);
        left: calc(50% - 4px);
        width: 6px;
        height: 10px;
        background: url(/static/jp/common/img/ico_leftArrow02.png) 0 0 no-repeat;
        background-size: cover;
        vertical-align: middle;
    }

    .js-serviceOptionCarousel .swiper-button-next:after {
        left: calc(50% - 2px);
        background-image: url(/static/jp/common/img/ico_rightArrow02.png);
    }

    @media screen and (max-width: 1023px) {
        .carouseSWPanelList .prev_whitebtn,.carouseSWPanelList .next_whitebtn {
            display:block;
            background: rgba(233,233,233,0.65);
            width: 50px;
            height: 50px;
            top: calc(50% - 25px);
            left: -10px;
            margin-top: 0;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            border-radius: 50%;
            z-index: 15;
        }

        .carouseSWPanelList .next_whitebtn {
            left: auto;
            right: -10px;
        }

        .carouseSWPanelList .prev_whitebtn:after,.carouseSWPanelList .next_whitebtn:after {
            content: "";
            display: inline-block;
            position: absolute;
            top: calc(50% - 5px);
            left: calc(50% - 4px);
            width: 6px;
            height: 10px;
            background: url(/static/jp/common/img/ico_leftArrow01.png) 0 0 no-repeat;
            background-size: cover;
            vertical-align: middle;
        }

        .carouseSWPanelList .next_whitebtn:after {
            left: calc(50% - 2px);
            background-image: url("/static/jp/common/img/ico_rightArrow06.png");
        }

        .contents--carouseSWlPanelList .whiteBtn {
            display: block;
            margin-top: 50px;
        }

        .contents--carouseSWlPanelList .whiteBtn a {
            padding: 8px 30px 7px;
        }
    }

    .contents--flow .pageTxtList {
        margin-top: 30px;
    }

    .grayBtn,.whiteBtn {
        margin-top: 60px;
    }

    .carouseSWPanelList + .grayBtn,.carouseSWPanelList + .whiteBtn {
        margin-top: 20px;
    }
}

.serviceColumn2Area__box {
    margin-top: 50px;
}

.serviceColumn2Area__box + .serviceColumn2Area__box {
    margin-top: 57px;
}

.serviceColumn2__subTit--serviceMediaChild {
    font-size: 2.4rem;
    font-family: "UD新ゴ B";
    text-align: center;
}

.serviceColumn2__subTit--serviceMediaChild + .serviceColumn2--serviceMediaChild {
    margin-top: 10px;
}

@media screen and (max-width: 1023px) {
    .serviceColumn2__subTit--serviceMediaChild {
        font-size:1.9rem;
    }

    .serviceColumn2__subTit--serviceMediaChild + .serviceColumn2--serviceMediaChild {
        margin-top: 25px;
    }
}
