@charset "UTF-8";
/* 202508　ファーストビューのsvgアニメーション停止 */
.imagearea ul li {
  animation: none !important;
  transition: none !important;
}

/* 202501　WA エラー修正　is-show削除 */
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;
  color: inherit;
  text-decoration: none;
}

/* change colours to suit your needs */
/* change colours to suit your needs */
/* change border colour to suit your needs */
img, video {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

li {
  list-style: none;
}

main {
  display: block;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

img {
  -ms-interpolation-mode: bicubic;
}

img {
  max-width: 100%;
  height: auto;
}

.lb-loader, .lightbox {
  text-align: center;
  line-height: 0;
} /*body:after{content:url(/web/jp/bpstorage/images/close.png) url(/web/jp/bpstorage/images/loading.gif) url(/web/jp/bpstorage/images/prev.png) url(/web/jp/bpstorage/images/next.png);display:none}*/
.lb-dataContainer:after, .lb-outerContainer:after {
  content: "";
  clear: both;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
  filter: alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  font-weight: 400;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  border: 4px solid #fff;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: #fff;
}

.lb-loader, .lb-nav {
  position: absolute;
  left: 0;
}

.lb-outerContainer:after {
  display: table;
}

.lb-loader {
  top: 43%;
  height: 25%;
  width: 100%;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/web/jp/bpstorage/images/loading.gif) no-repeat;
}

.lb-nav {
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: 0;
  background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==);
}

.lb-next, .lb-prev {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left; /*background:url(/web/jp/bpstorage/images/prev.png) left 48% no-repeat*/
  filter: alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right; /*background:url(/web/jp/bpstorage/images/next.png) right 48% no-repeat*/
  filter: alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  display: table;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px; /*background:url(/web/jp/bpstorage/images/close.png) top right no-repeat*/
  text-align: right;
  outline: 0;
  filter: alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: alpha(Opacity=100);
  opacity: 1;
}

/* --------------------------------------------------------------------------------
web fonts　ウェブフォントファイルを変更した場合はv=1.0の数字を変更（キャッシュ対策）
-------------------------------------------------------------------------------- */
@font-face {
  font-family: "design_plus";
  src: url("/web/jp/bpstorage/fonts/design_plus.woff?v=1.0") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* -------------------------------------------------------------------------------- keyframes
-------------------------------------------------------------------------------- */
/* fadeIn */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* loading-anime */
@-webkit-keyframes loading-anime {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading-anime {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* slideDown */
@-webkit-keyframes slideDown {
  0% {
    top: -70px;
  }
  100% {
    top: 0;
  }
}
@keyframes slideDown {
  0% {
    top: -70px;
  }
  100% {
    top: 0;
  }
}
/* ========================================================================== Layout ========================================================================== */
/* Header ----------------------------------------------------------------- */
.l-header {
  background: rgba(255, 255, 255, 0.9);
  height: 70px;
  line-height: 70px;
  width: 100%;
  position: relative;
  z-index: 999;
}

.l-header.is-fixed {
  position: absolute;
  top: 0;
}

.l-header.is-active {
  height: 70px;
  line-height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  -webkit-animation: slideDown 0.5s ease;
  animation: slideDown 0.5s ease;
}

.l-header--large {
  height: 70px;
  line-height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 88.28125%;
  max-width: 1130px;
  height: 100%;
}

.l-header__logo {
  display: flex;
}

.l-header__logo a {
  line-height: 1;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  overflow: hidden;
  word-wrap: break-word;
}

.l-header__logo img {
  vertical-align: middle;
}

/* Inner ----------------------------------------------------------------- */
.l-inner {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 88.28125%;
  max-width: 1130px;
}

/* Component ----------------------------------------------------------------- */
@-webkit-keyframes opacityAnimation {
  100% {
    opacity: 1;
  }
}
@keyframes opacityAnimation {
  100% {
    opacity: 1;
  }
}
/**
	* Load
	*/
@-webkit-keyframes loading-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading-square-base {
  0% {
    bottom: 10px;
    opacity: 0;
  }
  5%, 50% {
    bottom: 0;
    opacity: 1;
  }
  55%, 100% {
    bottom: -10px;
    opacity: 0;
  }
}
@keyframes loading-square-base {
  0% {
    bottom: 10px;
    opacity: 0;
  }
  5%, 50% {
    bottom: 0;
    opacity: 1;
  }
  55%, 100% {
    bottom: -10px;
    opacity: 0;
  }
}
@-webkit-keyframes loading-dots-fadein {
  100% {
    opacity: 1;
  }
}
@keyframes loading-dots-fadein {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes loading-dots-first-dot {
  100% {
    -webkit-transform: translate(1em);
    transform: translate(1em);
    opacity: 1;
  }
}
@keyframes loading-dots-first-dot {
  100% {
    -webkit-transform: translate(1em);
    transform: translate(1em);
    opacity: 1;
  }
}
@-webkit-keyframes loading-dots-middle-dots {
  100% {
    -webkit-transform: translate(1em);
    transform: translate(1em);
  }
}
@keyframes loading-dots-middle-dots {
  100% {
    -webkit-transform: translate(1em);
    transform: translate(1em);
  }
}
@-webkit-keyframes loading-dots-last-dot {
  100% {
    -webkit-transform: translate(2em);
    transform: translate(2em);
    opacity: 0;
  }
}
@keyframes loading-dots-last-dot {
  100% {
    -webkit-transform: translate(2em);
    transform: translate(2em);
    opacity: 0;
  }
}
#site-wrap {
  display: none;
}

#site_loader_overlay {
  background: #fff;
  opacity: 1;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
}

/* type1 */
.c-load--type1 {
  width: 48px;
  height: 48px;
  font-size: 10px;
  text-indent: -9999em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  -webkit-animation: loading-circle 1.1s infinite linear;
  animation: loading-circle 1.1s infinite linear;
}

#site_loader_animation i {
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  vertical-align: middle;
  background: #e0e0e0;
  border-radius: 50%;
  margin: 0 0.25em;
  -webkit-animation: loading-dots-middle-dots 0.5s linear infinite;
  animation: loading-dots-middle-dots 0.5s linear infinite;
}

#site_loader_animation i:first-child {
  -webkit-animation: loading-dots-first-dot 0.5s infinite;
  animation: loading-dots-first-dot 0.5s linear infinite;
  opacity: 0;
  -webkit-transform: translate(-1em);
  transform: translate(-1em);
}

#site_loader_animation i:last-child {
  -webkit-animation: loading-dots-last-dot 0.5s linear infinite;
  animation: loading-dots-last-dot 0.5s linear infinite;
}

.c-menu-button {
  color: #5d5d5d;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}

.c-menu-button::before {
  content: "\f0c9";
  font-family: "design_plus";
  font-size: 18px;
}

/* Project ----------------------------------------------------------------- */
/**
	* global nav
	*/
.p-global-nav {
  font-size: 16px;
}

@media only screen and (min-width: 1200px) {
  .p-global-nav {
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  .p-global-nav {
    background: rgba(51, 51, 51, 0.9);
  }
}
.p-global-nav > li {
  float: left;
  line-height: inherit;
}

.p-global-nav > li.menu-item-has-children:hover > .sub-menu {
  top: 100%;
}

.p-global-nav > li > a {
  padding-left: 20px;
  padding-right: 20px;
}

.p-global-nav > li > .sub-menu {
  top: 75%;
  left: 0;
}

.p-global-nav a {
  color: #fff;
  display: block;
}

.p-global-nav .menu-item-has-children {
  position: relative;
}

.p-global-nav .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  top: 0;
  visibility: visible;
}

.p-global-nav .sub-menu {
  line-height: 1.2;
  opacity: 0;
  position: absolute;
  top: -25%;
  left: 100%;
  transition: 0.3s;
  visibility: hidden;
  z-index: 99;
}

.p-global-nav .sub-menu .menu-item-has-children > a {
  position: relative;
}

.p-global-nav .sub-menu .menu-item-has-children > a::after {
  content: "\e910";
  font-family: "design_plus";
  position: absolute;
  right: 16px;
}

.p-global-nav .sub-menu a {
  background: #00ac97;
  box-sizing: border-box;
  padding: 15px 19px;
  width: 220px;
}

/**
	* lightbox
	*/
.lb-nav {
  background: #222;
  top: calc(100% + 50px);
  height: 50px;
}

.lb-nav a.lb-prev, .lb-nav a.lb-next {
  background: #333;
  opacity: 1;
  line-height: 50px;
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 9999;
}

.lb-nav a.lb-prev {
  left: calc(50% - 51px);
}

.lb-nav a.lb-prev::before {
  color: #fff;
  content: "\e90f";
  font-family: "design_plus";
}

.lb-nav a.lb-next {
  left: calc(50% + 1px);
}

.lb-nav a.lb-next::after {
  color: #fff;
  content: "\e910";
  font-family: "design_plus";
}

.lb-dataContainer {
  height: 100px;
  padding-top: 0;
}

.lb-data {
  background: #000;
  height: 50px;
  line-height: 50px;
  padding: 0;
}

.lb-data .lb-details {
  box-sizing: border-box;
  float: none;
  padding: 0 10px;
  text-align: center;
  width: 100%;
}

.lb-data .lb-caption {
  display: block !important;
  height: 50px;
  line-height: 50px;
}

.lb-data .lb-number {
  padding-bottom: 0;
}

.lb-data .lb-close {
  float: right;
  line-height: 50px;
  opacity: 1;
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 999;
}

.lb-data .lb-close::before {
  color: #aaa;
  content: "\e91a";
  font-size: 18px;
  font-family: "design_plus";
  position: absolute;
  right: 18px;
}

.lightbox .lb-image {
  border: 0;
  border-radius: 0;
}

.p-logo a {
  color: #fff;
}

/**
	* menu button
	*/
.p-menu-button {
  line-height: 60px;
  width: 60px;
  height: 60px;
}

/** pagebuilder extend
	*/
/**
	* pager
	*/
/**
	* pagetop
	*/
.p-pagetop a {
  background: #333;
  color: #fff;
  display: block;
  height: 56px;
  position: relative;
}

.p-pagetop a:hover {
  background: #444;
}

.p-pagetop a::after {
  content: "\e911";
  font-family: "design_plus";
  font-size: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
}

.slick-dots li {
  border-radius: 50%;
  margin: 0 14px 0 0;
  width: 12px;
  height: 12px;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.slick-dots li:last-child {
  margin-right: 0;
}

.slick-dots li.slick-active, .slick-dots li:hover {
  background: #fdca00;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
}

.slick-dots li button::before {
  content: "";
}

.slick-prev:before {
  content: "";
}

[dir=rtl] .slick-prev:before {
  content: "";
}

.slick-next:before {
  content: "";
}

[dir=rtl] .slick-next:before {
  content: "";
}

/* Utility ----------------------------------------------------------------- */
/** clearfix */
.u-clearfix::after {
  clear: both;
  content: " ";
  display: table;
}

/** hidden */
.u-hidden {
  display: none;
}

/** font-size - フォントサイズ */
.text70 {
  font-size: 70%;
}

.text80 {
  font-size: 80%;
}

.text90 {
  font-size: 90%;
}

.text100 {
  font-size: 100%;
}

.text110 {
  font-size: 110%;
}

.text120 {
  font-size: 120%;
}

.text130 {
  font-size: 130%;
}

.text140 {
  font-size: 140%;
}

.text150 {
  font-size: 150%;
}

.text160 {
  font-size: 160%;
}

.text170 {
  font-size: 170%;
}

.text180 {
  font-size: 180%;
}

.text190 {
  font-size: 190%;
}

.text200 {
  font-size: 200%;
}

.text210 {
  font-size: 210%;
}

.text220 {
  font-size: 220%;
}

.b {
  font-weight: 700;
}

/* 太字 */
.u {
  text-decoration: underline;
}

/* 下線 */
.del {
  text-decoration: line-through;
}

/* 打ち消し線 */
/** font-color - フォントカラー */
.red {
  color: red;
}

/* 赤色 */
.blue {
  color: #2ca9e1;
}

/* 青色 */
.green {
  color: #82ae46;
}

/* 緑色 */
.orange {
  color: #ff7d00;
}

/* 橙色 */
.yellow {
  color: #fff000;
}

/* 黄色 */
.pink {
  color: #ff0084;
}

/* ピンク */
.gray {
  color: #999999;
}

/* グレー */
/** background-color - 背景色 */
/* 青色の文字背景 */
.bg-blue {
  background-color: #4ab0f5;
  padding: 2px;
}

/* 赤色の文字背景 */
.bg-red {
  background-color: red;
  padding: 2px;
}

/* 黄色の文字背景 */
.bg-yellow {
  background-color: #ff0;
  padding: 2px;
}

/** text-align - 配置 */
.align1 {
  text-align: center !important;
}

/* 中央寄せ */
.align2 {
  text-align: right !important;
}

/* 右寄せ */
.align3 {
  text-align: left !important;
}

/* 左寄せ */
/** float - 回り込み */
/* 右に回り込み */
.r-flo {
  float: right;
  margin: 10px;
}

/* 左に回り込み */
.l-flo {
  float: left;
  margin: 10px;
}

.f-clear {
  clear: both;
}

/* 回り込みの解除 */
/** hover - 画像リンクマウスオーバー時の不透明度 */
a img.fade {
  background: none !important;
  outline: none;
  transition: all 0.3s;
}

a:hover img.fade {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
  background: none !important;
}

/** margin - 要素の外側の余白 */
.m0 {
  margin: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

/** padding - 要素の内側の余白 */
.p0 {
  padding: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.fa {
  margin-right: 5px;
}

@media only screen and (max-width: 1200px) {
  .l-header,
  .l-header--large,
  .l-header.is-fixed {
    height: 70px;
    line-height: 70px;
  }
  .l-header.is-fixed ~ .l-main {
    margin-top: 0px;
  }
  .l-header__inner {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
  }
  .l-header__logo {
    position: relative;
    height: 100%;
    padding-left: 10px;
  }
  .l-header__logo a {
    line-height: 70px;
    height: 70px;
  }
}
@media screen and (max-width:767px) {
  .l-inner {
    width: 88.88889%;
  }
  .l-inner--narrow {
    width: 100%;
  }
  .c-load--type1 {
    width: 30px;
    height: 30px;
  }
  .c-load--type2::after,
  .c-load--type2::before {
    width: 8px;
    height: 8px;
  }
  #site_loader_animation i {
    width: 0.25em;
    height: 0.25em;
    margin: 0 0.125em;
  }
}
@media only screen and (max-width: 1200px) {
  .c-menu-button {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .c-share__btn {
    margin-bottom: 5px;
  }
  .p-address {
    display: block;
  }
}
@media screen and (max-width:767px) {
  .p-button {
    font-size: 16px;
    line-height: 35px;
    width: 160px;
    height: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .p-global-nav li.current-menu-item a,
  .p-global-nav > li > a:hover {
    color: #fff;
  }
  .p-global-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 99;
    width: 100%;
  }
  .is-fixed .p-global-nav {
    height: 100vh;
    overflow: auto;
  }
  .p-global-nav > li {
    float: none;
  }
  .p-global-nav li {
    width: 100%;
  }
  .p-global-nav .menu-item-has-children > a > span.is-active::before {
    content: "-";
  }
  .p-global-nav .menu-item-has-children > a > span::before {
    border: 1px solid #555;
    border-radius: 100%;
    color: #aaa;
    content: "+";
    line-height: 24px;
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    right: 17px;
    bottom: 0;
    text-align: center;
    width: 24px;
    height: 24px;
  }
  .p-global-nav .sub-menu {
    display: none;
    opacity: 1;
    position: static;
    visibility: visible;
    width: 100%;
    transition-property: none;
  }
  .p-global-nav .sub-menu li {
    box-sizing: border-box;
    padding-left: 1em;
  }
  .p-global-nav .sub-menu .menu-item-has-children > a::after {
    content: "";
  }
  .p-global-nav .sub-menu a {
    background: 0 0 !important;
    height: 50px;
    line-height: 50px;
    padding: 0 22px;
    width: 100%;
  }
  .p-global-nav a {
    color: #fff !important;
    box-sizing: border-box;
    font-size: 13px;
    height: 50px;
    line-height: 50px;
    position: relative;
  }
}
@media screen and (max-width:767px) {
  .p-pagetop {
    line-height: 50px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
  }
  .p-pagetop a {
    width: 50px;
    height: 50px;
    text-align: center;
  }
  .p-pagetop a::after {
    position: static;
  }
}
/* --------------------------------------------------
Common
-------------------------------------------------- */
.c-load--type1 {
  border-top-color: #ca5b9d !important;
}

.lb-nav,
.lb-data {
  background: none;
}

.lb-data .lb-details {
  box-sizing: border-box;
  float: none;
  padding: 0 10px;
  text-align: center;
  width: 100%;
}

.lb-data .lb-caption {
  display: block !important;
  height: 50px;
  line-height: 50px;
}

.lb-data .lb-close::before {
  font-size: 30px;
}

body {
  color: #474241;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

body .common-btn {
  max-width: 100%;
  height: 46px;
  font-size: 16px;
  font-weight: 700;
  color: #474241;
}

body .common-btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ca5b9d;
  border-radius: 70px;
  border: solid 2px #ca5b9d;
  box-sizing: border-box;
  color: #fff;
}

body .common-btn.h56 {
  height: 56px;
}

body .common-btn.h56 a {
  border-radius: 80px;
}

@media print, screen and (min-width: 768px) {
  body .common-btn a {
    transition: all 0.4s ease 0s;
  }
  body .common-btn a:hover {
    background-color: #fff;
    color: #ca5b9d;
  }
  body .common-btn a:hover::after {
    -webkit-transform: scale(1.2) translate(3px, 0);
            transform: scale(1.2) translate(3px, 0);
  }
}
body .p-base {
  color: rgba(71, 66, 65, 0.8);
  font-size: 16px;
  line-height: 26px;
}

body .p-base a {
  color: #0094FF;
}

body .p-base + .p-base {
  margin: 26px 0 0;
}

@media print, screen and (min-width: 768px) {
  body .p-base {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.5px;
  }
  body .p-base a {
    transition: opacity 0.4s ease 0s;
  }
  body .p-base a:hover {
    opacity: 0.5;
  }
  body .p-base + .p-base {
    margin: 28px 0 0;
  }
}
main {
  margin-top: 0 !important;
}

@media screen and (max-width:767px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* --------------------------------------------------
Header
-------------------------------------------------- */
@-webkit-keyframes effect1 {
  0% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  40% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  50% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
  100% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
}
@keyframes effect1 {
  0% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  40% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  50% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
  100% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
}
@-webkit-keyframes effect2 {
  0% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  50% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  60% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
  100% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
}
@keyframes effect2 {
  0% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  50% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  60% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
  100% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
}
#site_wrap {
  padding: 53px 0 0;
}

#site_wrap .l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 53px;
  box-shadow: none;
  transition: -webkit-transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s;
}

#site_wrap .l-header .l-header__inner {
  display: flex;
  align-items: center;
}

#site_wrap .l-header .l-header__inner .l-header__logo {
  width: 100px;
  padding: 0 0 0 24px;
  height: auto;
}

#site_wrap .l-header .l-header__inner .l-header__logo a {
  height: auto;
  line-height: 1;
}

#site_wrap .l-header .l-header__inner .c-menu-button {
  width: 75px;
  height: 53px;
  line-height: 53px;
  right: 0;
}

#site_wrap .l-header .l-header__inner .p-global-nav {
  top: 53px;
  height: 100vh;
}

#site_wrap .l-header .l-header__inner .p-global-nav .menu-item-has-children > a {
  display: none;
}

#site_wrap .l-header .l-header__inner .p-global-nav .menu-item-has-children .sub-menu {
  display: block !important;
}

#site_wrap .l-header .l-header__inner .p-global-nav .menu-item-has-children .sub-menu li {
  padding: 0;
}

#site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(2),
#site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) {
  font-size: 16px;
  font-weight: 700;
  width: calc(100% - 44px);
  height: 46px;
  margin: 20px auto;
  position: relative;
}

#site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(2) a,
#site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit !important;
  padding: 0;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: #FFFFFF !important;
  border: solid 2px #ca5b9d;
  border-radius: 70px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease 0s;
}

#site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(2) a span,
#site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) a span {
  position: relative;
  z-index: 2;
}

#site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(2) a::after,
#site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) a::after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 12px;
  background-image: url(/web/jp/bpstorage/images/icon-arrow-g.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 8px;
  transition: -webkit-transform 0.4s ease 0s;
  transition: transform 0.4s ease 0s;
  transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
}

#site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) a {
  background: #ca5b9d !important;
  color: #fff !important;
}

#site_wrap .l-header.is-hidden {
  -webkit-transform: translate(0, -101%);
          transform: translate(0, -101%);
}

@media screen and (min-width: 1201px) {
  #site_wrap {
    padding: 84px 0 0;
  }
  #site_wrap .l-header {
    height: 84px;
  }
  #site_wrap .l-header .l-header__inner {
    width: calc(100% - 96px);
    max-width: 1350px;
  }
  #site_wrap .l-header .l-header__inner .l-header__logo {
    width: 168px;
    padding: 0;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container {
    width: calc(100% - 242px);
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav {
    position: static;
    display: flex !important;
    align-items: center;
    height: auto;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li {
    float: none;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li .sub-menu {
    position: static;
    opacity: 1;
    display: flex !important;
    align-items: center;
    visibility: visible;
    white-space: nowrap;  
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:first-child .sub-menu{
    column-gap: 25px;  
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li .sub-menu li {
    font-size: 14px;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li .sub-menu li a {
    background: none;
    color: #474241;
    padding: 0;
    width: auto;
    transition: all 0.4s ease 0s;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li .sub-menu li a:hover {
    opacity: 0.5;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(1) {
    margin: 0 auto;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(1) .sub-menu li + li {
    margin: 0 0 0 /*50px*/;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(2),
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) {
    font-size: 12px;
    width: 145px;
    height: 36px;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(2) a,
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) a {
    z-index: 1;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(2) a::after,
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) a::after {
    display: none;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(2) a::before,
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) a::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
    background: #ca5b9d;
  /* ボタン背景のアニメーション停止	  
  -webkit-animation: effect1 6s linear 0s infinite;
            animation: effect1 6s linear 0s infinite;*/
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(2) a:hover,
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) a:hover {
    background: #ca5b9d !important;
    color: #fff !important;
    opacity: 1;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) a::before {
    background: #FFFFFF;
    -webkit-animation-name: effect2;
            animation-name: effect2;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) a:hover {
    background: #FFFFFF !important;
    color: #474241 !important;
  }
  #site_wrap .l-header .l-header__inner .menu-header-container .p-global-nav > li:nth-child(2) .sub-menu li + li {
    margin: 0 0 0 24px;
  }
}
/* --------------------------------------------------
Footer
-------------------------------------------------- */
@-webkit-keyframes f-effect1 {
  0% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  40% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  46.6% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
  100% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
}
@keyframes f-effect1 {
  0% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  40% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  46.6% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
  100% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
}
@-webkit-keyframes f-effect2 {
  0% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  46.6% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  53.3% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
  100% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
}
@keyframes f-effect2 {
  0% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  46.6% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  53.3% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
  100% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
}
@-webkit-keyframes f-effect3 {
  0% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  55.3% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  60% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
  100% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
}
@keyframes f-effect3 {
  0% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  55.3% {
    -webkit-transform: translate(-101%, 0);
            transform: translate(-101%, 0);
  }
  60% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
  100% {
    -webkit-transform: translate(101%, 0);
            transform: translate(101%, 0);
  }
}
.l-footer #toggle-cta-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 94px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px -2px 20px 0px rgba(71, 66, 65, 0.2);
  transition: -webkit-transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s;
}

.l-footer #toggle-cta-footer .toggle-cta-footer-inner {
  width: 342px;
  max-width: calc(100% - 48px);
}

.l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li a {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li a::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-101%, 0);
          transform: translate(-101%, 0);
  background: #FFFFFF;
/* ボタン背景のアニメーション停止
  -webkit-animation: f-effect1 9s linear 0s infinite;
          animation: f-effect1 9s linear 0s infinite;*/
}

.l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li:nth-child(-n+2) {
  display: none;
}

.l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li:nth-child(-n+2) a::before {
  background: #ca5b9d;
}

.l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li:nth-child(2) a::before {
  -webkit-animation-name: f-effect2;
          animation-name: f-effect2;
}

.l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li:nth-child(3) a::before {
  -webkit-animation-name: f-effect3;
          animation-name: f-effect3;
}

.l-footer #toggle-cta-footer.is-hidden {
  -webkit-transform: translate(0, 101%) translate(0, 22px);
          transform: translate(0, 101%) translate(0, 22px);
}

@media print, screen and (min-width: 768px) {
  .l-footer #toggle-cta-footer {
    height: 88px;
  }
  .l-footer #toggle-cta-footer .toggle-cta-footer-inner {
    width: calc(100% - 64px);
    max-width: calc(100% - 64px);
  }
  .l-footer #toggle-cta-footer .toggle-cta-footer-inner ul {
    display: flex;
    justify-content: flex-end;
  }
  .l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li:nth-child(-n+2) {
    display: block;
  }
  .l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li:nth-child(-n+2) a {
    background: #FFFFFF;
    color: #474241;
  }
  .l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li:nth-child(-n+2) a:hover {
    background: #ca5b9d;
    color: #fff;
  }
  .l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li:nth-child(1) {
    width: 191px;
  }
  .l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li:nth-child(2) {
    width: 269px;
  }
  .l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li:nth-child(3) {
    width: 257px;
  }
  .l-footer #toggle-cta-footer .toggle-cta-footer-inner ul li + li {
    margin: 0 0 0 32px;
  }
}
/* --------------------------------------------------
donation
-------------------------------------------------- */
body #donation .inner .donationbox {
    text-align: center;
    border: solid 4px #ca5b9d;
    padding: 10px;
}
body #donation .inner .donationbox p {
    margin: 10px 0;
    color: rgba(71, 66, 65, 0.8);
}
body #donation .inner .donationbox b {
    font-size: 24px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 0;
    color: #474241;
}
body #donation .inner .donationbox a {
    color: #0094FF;
}
body #donation .inner .donationbox a:hover {
    opacity: .5;
}

@media print, screen and (min-width: 768px) {
  body #donation .inner .donationbox b {
    line-height: 60px;
  }
}
/* --------------------------------------------------
Start invox
-------------------------------------------------- */
body #startinvox {
  padding: 60px 0;
}

body #startinvox .inner .start .single .imagearea {
  width: 160px;
  margin: 0 auto 24px;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

body #startinvox .inner .start .single .textarea {
  text-align: center;
  opacity: 0;
}

body #startinvox .inner .start .single .textarea .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
}

body #startinvox .inner .start .single .textarea .p-base {
  margin: 0 0 24px;
    font-size: 14px;
}

body #startinvox .inner .start .single .textarea .common-btn {
  max-width: 216px;
  margin: 0 auto;
}

body #startinvox .inner .start .single + .single {
  margin: 36px 0 0;
}

body #startinvox .inner .start .single .imagearea {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

body #startinvox .inner .start .single .textarea {
  opacity: 1;
  transition: opacity 0.7s ease 0.3s;
}

body.site-front #startinvox {
  background: rgba(61, 49, 0, 0.05);
}

body.site-front #startinvox .inner h2 {
  margin: 0 0 24px;
}

body:not(.site-front) #startinvox {
  border: 4px solid #ca5b9d;
  box-sizing: border-box;
  margin: 0 24px 60px;
  padding: 40px 15px;
}

body:not(.site-front) #startinvox .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 1.5px;
  margin: 0 0 24px;
}

body:not(.site-front) #startinvox h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin: 0 0 24px;
}

@media print, screen and (min-width: 768px) {
  body #startinvox {
    padding: 80px 0;
  }
  body #startinvox .inner .start {
    display: flex;
    justify-content: center;
  }
  body #startinvox .inner .start .single {
    width: 256px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body #startinvox .inner .start .single {
    width: calc((100% - 40px) / 3);
  }
}
@media print, screen and (min-width: 768px) {
  body #startinvox .inner .start .single .imagearea {
    width: 160px;
    margin: 0 auto 24px;
  }
  body #startinvox .inner .start .single .textarea {
    position: relative;
  }
  body #startinvox .inner .start .single .textarea .p-base {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    min-height: 72px;
  }
  body #startinvox .inner .start .single + .single {
    margin: 0 0 0 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body #startinvox .inner .start .single + .single {
    margin: 0 0 0 20px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front #startinvox .inner h2 {
    margin: 0 0 64px;
  }
  body:not(.site-front) #startinvox {
    width: 1120px;
    max-width: 96%;
    margin: 0 auto 80px;
    padding: 80px 15px;
  }
  body:not(.site-front) #startinvox .description {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1.5px;
    text-align: center;
  }
  body:not(.site-front) #startinvox h3 {
    font-size: 36px;
    line-height: 56px;
    letter-spacing: 1px;
    margin: 0 0 64px;
  }
}
.animation-fadein {
  opacity: 0;
}
.animation-fadein {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}

.animation-scaleup {
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.animation-scaleup {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.svg-arw {
  position: relative;
  top: 1px;
  margin-left: 8px;
  width: 16px;
  vertical-align: middle;
}
.svg-arw path {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: currentColor;
}

.svg-play {
  position: relative;
  top: 1px;
  margin-left: 8px;
  width: 16px;
  vertical-align: middle;
}
.svg-play path {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: currentColor;
}

/* --------------------------------------------------
Add 202205 Iwasaki
-------------------------------------------------- */
@media only screen and (max-width: 1201px) {
  #site_wrap .l-header .l-header__inner .p-global-nav {
    padding-top: 47px;
  }
  .p-global-nav .sub-menu a {
    height: auto;
    padding: 0 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1.5px;
  }
  #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(1) li + li {
    margin: 28px 0 0;
  }
  #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) {
    margin: 0;
  }
  #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu {
    display: flex !important;
    flex-direction: column;
  }
  #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(1) {
    order: 100;
    margin: 24px 0 0;
  }
  #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(1) a {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 1.5px;
  }
  #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(2), #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) {
    width: calc(100% - 48px);
    height: 56px;
    margin: 0 auto;
  }
  #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) {
    order: -1;
    margin: 0 auto 16px;
  }
  #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(2) a, #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) a {
    border-radius: 80px;
  }
  #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(2) a::after, #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li:nth-child(3) a::after {
    display: none;
  }
}
@media only screen and (min-width: 1201px) {
  #site_wrap .l-header .l-header__inner .p-global-nav > li:nth-child(2) .sub-menu li.login-b:nth-child(1) {
      display:none;
  }
}
@media only screen and (max-width: 1200px) {
    #site_wrap .l-header .l-header__inner .p-global-nav .menu-item-has-children .sub-menu{
        margin-bottom: 1rem;
    }
  #site_wrap .l-header .l-header__inner .p-global-nav .menu-item-has-children .sub-menu li.login-f{
      display: none;
    }
}
footer {
  font-family: "メイリオ", Meiryo, sans-serif;
}

footer .im_top_2023 img {
  vertical-align: baseline;
}

/* --------------------------------------------------
Contents
-------------------------------------------------- */
@-webkit-keyframes loop1 {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}
@keyframes loop1 {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-200%, 0);
            transform: translate(-200%, 0);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-200%, 0);
            transform: translate(-200%, 0);
  }
}
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}
body.site-front #top {
  padding: 60px 0 0;
  margin: 0 0 60px;
  overflow: hidden;
}
body.site-front #top .inner {
  width: 342px;
  max-width: 96%;
  margin: 0 auto;
}
body.site-front #top .inner .catch {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 1.5px;
  margin: 0 0 40px;
}
body.site-front #top .inner .icon {
  display: flex;
  margin: 0 0 24px;
  gap: 0 16px;
  width: 426px;
  max-width: 100%;
}
@media print, screen and (min-width: 768px) {
  body.site-front #top .inner .icon {
    gap: 0 24px;
  }
}
body.site-front #top .inner .icon li {
  background-color: #474241;
  color: #fff;
  font-size: 14px;
  line-height: 1.71;
  padding: 4px 8px;
}
body.site-front #top .inner .imagearea {
  margin: 0 0 40px;
}
body.site-front #top .inner .imagearea ul {
  position: relative;
}
body.site-front #top .inner .imagearea ul li {
  opacity: 0;
}
body.site-front #top .inner .imagearea ul li:nth-child(n+2) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body.site-front #top .inner .imagearea ul li:nth-child(1) {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: 53.88% 60.04%;
          transform-origin: 53.88% 60.04%;
}
body.site-front #top .inner .imagearea ul li:nth-child(2) {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: 30% 57.04%;
          transform-origin: 30% 57.04%;
}
body.site-front #top .inner .imagearea ul li:nth-child(3) {
  -webkit-transform: translate(0, -10%);
          transform: translate(0, -10%);
}
body.site-front #top .inner .imagearea ul li:nth-child(4) {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: 53.44% 56.47%;
          transform-origin: 53.44% 56.47%;
}
body.site-front #top .inner .imagearea ul li:nth-child(5) {
  -webkit-transform: translate(-10%, 0);
          transform: translate(-10%, 0);
}
body.site-front #top .inner .textarea .p-base {
  margin: 0 0 40px;
  max-width: 350px;
}
body.site-front #top .inner .textarea .buttons li {
  height: 56px;
}
body.site-front #top .inner .textarea .buttons li + li {
  margin: 17px 0 0;
}
body.site-front #top .inner .textarea .gekkeikan {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  margin: 40px 0 17px;
}
body.site-front #top .inner .textarea .gekkeikan li {
  width: 100px;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
body.site-front #top .inner .textarea .gekkeikan li {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front #top .inner .textarea .gekkeikan li:nth-child(2) {
  transition-delay: 0.2s;
}
body.site-front #top .inner .textarea .gekkeikan li:nth-child(3) {
  transition-delay: 0.4s;
}
body.site-front #top .inner .textarea .caption {
  color: rgba(71, 66, 65, 0.8);
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
}
body.site-front #top .inner .textarea .gekkeikan li {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front #top .inner .textarea .gekkeikan li:nth-child(2) {
  transition-delay: 0.2s;
}
body.site-front #top .inner .textarea .gekkeikan li:nth-child(3) {
  transition-delay: 0.4s;
}
body.site-front #top .inner .textarea .gekkeikan li img {
  width: 108px;
}
body.site-front #top .inner .textarea .caption {
  color: rgba(71, 66, 65, 0.8);
  font-weight: 500;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 1px;
}
body.site-front .contents_group {
  margin: 0 0 60px;
}
body.site-front .contents_group h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  letter-spacing: 1px;
  margin: 0 0 40px;
}
body.site-front .contents_group h2 .trim span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
  color: #ca5b9d;
}
body.site-front .contents_group h2 .trim span {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  color: #474241;
  transition: 0.3s opacity 0s linear, 0.2s color 0.4s linear, 0.3s -webkit-transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.3s opacity 0s linear, 0.2s color 0.4s linear, 0.3s transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.3s opacity 0s linear, 0.2s color 0.4s linear, 0.3s transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275), 0.3s -webkit-transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body.site-front .contents_group .inner {
  width: 342px;
  max-width: 96%;
  margin: 0 auto;
}
body.site-front .contents_group#painpoint .inner .worries_solution h2 span.sp {
  display: block;
  margin: 16px 0 0;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .worries {
  padding: 24px 60px;
  border: 2px solid rgba(71, 66, 65, 0.2);
  margin: 0 0 63px;
  position: relative;
  opacity: 0;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .worries p {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .worries .imagearea {
  width: 128px;
  margin: 0 auto;
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .worries::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -42px;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  background-image: url("/web/jp/bpstorage/images/arrow@sp.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: top;
          transform-origin: top;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution {
  border: solid 4px #ca5b9d;
  padding: 35px 24px 24px;
  position: relative;
  opacity: 0;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution .icon {
  width: 106px;
  height: 46px;
  background: #ca5b9d;
  color: #FFFFFF;
  border-radius: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1.5px;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution .imagearea {
  width: 128px;
  margin: 0 auto 11px;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution ul li {
  padding: 0 0 0 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution ul li + li {
  margin: 4px 0 0;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution ul li::before {
  display: block;
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url("/web/jp/bpstorage/images/check.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single + .single {
  margin: 40px 0 0;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .worries {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .worries .imagearea {
  -webkit-transform: none;
          transform: none;
  transition: -webkit-transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, -webkit-transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .worries::after {
  -webkit-transform: none;
          transform: none;
  transition: -webkit-transform 0.3s ease 0.8s;
  transition: transform 0.3s ease 0.8s;
  transition: transform 0.3s ease 0.8s, -webkit-transform 0.3s ease 0.8s;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution {
  opacity: 1;
  transition: opacity 0.7s ease 1.2s;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution .imagearea {
  -webkit-transform: none;
          transform: none;
  transition: -webkit-transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s;
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s;
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s, -webkit-transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution ul li::before {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.5s;
}
body.site-front .contents_group#painpoint .inner .worries_solution .flex .dx {
  display: none;
}
body.site-front .contents_group#step .inner .head {
  margin: 0 0 80px;
}
body.site-front .contents_group#step .inner .head .flex .single {
  position: relative;
  padding: 0 0 66px 123px;
  opacity: 0;
}
body.site-front .contents_group#step .inner .head .flex .single .num {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 3px;
  margin: 0 0 5px;
}
body.site-front .contents_group#step .inner .head .flex .single .num span {
  margin: 0 0 0 8px;
  font-weight: 600;
}
body.site-front .contents_group#step .inner .head .flex .single .imagearea {
  position: absolute;
  top: 0;
  left: 0;
  width: 106px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
body.site-front .contents_group#step .inner .head .flex .single .textarea .tags {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
}
body.site-front .contents_group#step .inner .head .flex .single .textarea .tags p {
  font-size: 14px;
  line-height: 24px;
}
body.site-front .contents_group#step .inner .head .flex .single .textarea .tags p.auto, body.site-front .contents_group#step .inner .head .flex .single .textarea .tags p.manual {
  width: 84px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px #474241;
  box-sizing: border-box;
}
body.site-front .contents_group#step .inner .head .flex .single .textarea .tags p.auto {
  background: #474241;
  color: #FFFFFF;
}
body.site-front .contents_group#step .inner .head .flex .single .textarea .tags p.or {
  margin: 0 10px;
}
body.site-front .contents_group#step .inner .head .flex .single .textarea .text {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1.5px;
}
body.site-front .contents_group#step .inner .head .flex .single::after {
  display: block;
  content: "";
  border-top: solid 17px #474241;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
  width: 0;
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
}
body.site-front .contents_group#step .inner .head .flex .single:last-child {
  padding-bottom: 0;
}
body.site-front .contents_group#step .inner .head .flex .single:last-child::after {
  display: none;
}
body.site-front .contents_group#step .inner .head .flex .single {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
body.site-front .contents_group#step .inner .head .flex .single .imagearea {
  -webkit-transform: none;
          transform: none;
  transition: -webkit-transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, -webkit-transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front .contents_group#step .inner .head .flex .single::after {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s ease 0.4s;
}
body.site-front .contents_group#step .inner .head .flex .single:nth-child(2) {
  transition-delay: 1s;
}
body.site-front .contents_group#step .inner .head .flex .single:nth-child(2) .imagearea {
  transition-delay: 1s;
}
body.site-front .contents_group#step .inner .head .flex .single:nth-child(2)::after {
  transition-delay: 1.4s;
}
body.site-front .contents_group#step .inner .head .flex .single:nth-child(3) {
  transition-delay: 2s;
}
body.site-front .contents_group#step .inner .head .flex .single:nth-child(3) .imagearea {
  transition-delay: 2s;
}
body.site-front .contents_group#step .inner .head .flex .single:nth-child(3)::after {
  transition-delay: 2.4s;
}
body.site-front .contents_group#step .inner .head .flex .single:nth-child(4) {
  transition-delay: 3s;
}
body.site-front .contents_group#step .inner .head .flex .single:nth-child(4) .imagearea {
  transition-delay: 3s;
}
body.site-front .contents_group#step .inner .head .flex .single:nth-child(4)::after {
  transition-delay: 3.4s;
}
body.site-front .contents_group#step .inner .steps .single .single_main .titlearea {
  display: flex;
  align-items: flex-start;
  margin: 0 0 20px;
}
body.site-front .contents_group#step .inner .steps .single .single_main .titlearea .num {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 5px;
  margin: 0 16px 0 0;
  opacity: 0;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
body.site-front .contents_group#step .inner .steps .single .single_main .titlearea .num span {
  display: block;
  font-weight: 600;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: 0.015em;
}
body.site-front .contents_group#step .inner .steps .single .single_main .titlearea .column {
  opacity: 0;
}
body.site-front .contents_group#step .inner .steps .single .single_main .titlearea .column .tags {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
}
body.site-front .contents_group#step .inner .steps .single .single_main .titlearea .column .tags p {
  font-size: 14px;
  line-height: 24px;
}
body.site-front .contents_group#step .inner .steps .single .single_main .titlearea .column .tags p.auto, body.site-front .contents_group#step .inner .steps .single .single_main .titlearea .column .tags p.manual {
  width: 84px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px #474241;
  box-sizing: border-box;
}
body.site-front .contents_group#step .inner .steps .single .single_main .titlearea .column .tags p.auto {
  background: #474241;
  color: #FFFFFF;
}
body.site-front .contents_group#step .inner .steps .single .single_main .titlearea .column .tags p.or {
  margin: 0 10px;
}
body.site-front .contents_group#step .inner .steps .single .single_main .titlearea .column h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 1px;
}
body.site-front .contents_group#step .inner .steps .single .single_main .titlearea .num {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front .contents_group#step .inner .steps .single .single_main .titlearea .column {
  opacity: 1;
  transition: opacity 0.7s ease 0.3s;
}
body.site-front .contents_group#step .inner .steps .single .single_main .imagearea {
  margin: 0 0 25px;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
body.site-front .contents_group#step .inner .steps .single:first-child .single_main .imagearea {
    margin: 0 0 38px;
}
body.site-front .contents_group#step .inner .steps .single .single_main .imagearea {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front .contents_group#step .inner .steps .single .single_main .textarea {
  opacity: 0;
}
body.site-front .contents_group#step .inner .steps .single .single_main .textarea .common-btn {
  margin: 24px 0 0;
}
body.site-front .common-btn.is-white a {
  background: #FFFFFF !important;
  color: #474241 !important;
}
body.site-front .common-btn.is-white a:hover {
  color: #fff !important;
  background-color: #ca5b9d !important;
}
body.site-front .contents_group#step .inner .steps .single .single_main .textarea .common-btn a {
  background: #FFFFFF;
}
body.site-front .contents_group#step .inner .steps .single .single_main .textarea .box_text {
  border: 3px solid #474241;
  padding: 40px 20px;
  margin: 40px 0 0;
}
body.site-front .contents_group#step .inner .steps .single .single_main .textarea .box_text .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 16px;
}
body.site-front .contents_group#step .inner .steps .single .single_main .textarea .box_text .text {
  color: rgba(71, 66, 65, 0.8);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
body.site-front .contents_group#step .inner .steps .single .single_main .textarea {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
body.site-front .contents_group#step .inner .steps .single + .single {
  margin: 40px 0 0;
}
body.site-front .contents_group#step .inner .steps .single .single_sub {
  margin: 40px 0 0;
  border: solid 3px #474241;
  padding: 40px 24px;
  opacity: 0;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
body.site-front .contents_group#step .inner .steps .single .single_sub .imagearea {
  margin: 0 0 40px;
}
body.site-front .contents_group#step .inner .steps .single .single_sub .title {
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  text-align: left;
  letter-spacing: 1px;
  margin: 0 0 16px;
}
body.site-front .contents_group#step .inner .steps .single .single_sub .p-base {
  margin: 0 0 40px;
}
body.site-front .contents_group#step .inner .steps .single .single_sub .common-btn a {
  color: #FFFFFF;
  background: #ca5b9d;
}
body.site-front .contents_group#step .inner .steps .single .single_sub.auto_transfer .logo {
  margin: 0 0 24px;
}
body.site-front .contents_group#step .inner .steps .single .single_sub.auto_transfer .title {
  text-align: left;
}
body.site-front .contents_group#step .inner .steps .single .single_sub {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front .contents_group#catch .inner .p-base {
  opacity: 0;
}
body.site-front .contents_group#catch .inner .p-base {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
body.site-front .contents_group#feature {
  padding: 60px 0;
  background: rgba(/*41, 20, 62, 0.05*/202, 91, 157, 0.05);
}
body.site-front .contents_group#feature .inner .head {
  margin: 0 0 40px;
}
body.site-front .contents_group#feature .inner .head .imagearea {
  margin: 0 0 40px;
  opacity: 0;
}
body.site-front .contents_group#feature .inner .head .imagearea {
  opacity: 1;
  transition: opacity 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front .contents_group#feature .inner .head .textarea {
  opacity: 0;
}
body.site-front .contents_group#feature .inner .head .textarea h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 1px;
  margin: 0 0 24px;
}
body.site-front .contents_group#feature .inner .head .textarea {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
body.site-front .contents_group#feature .inner .features .row .single {
  background: #FFFFFF;
  padding: 40px 24px;
}
body.site-front .contents_group#feature .inner .features .row .single .imagearea {
  width: 140px;
  margin: 0 auto 24px;
  opacity: 0;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
body.site-front .contents_group#feature .inner .features .row .single .textarea {
  opacity: 0;
}
body.site-front .contents_group#feature .inner .features .row .single .textarea .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.5px;
  margin: 0;
}
body.site-front .contents_group#feature .inner .features .row .single .textarea .p-base{
  margin:24px 0 0;
  font-size: 14px;
}
body.site-front .contents_group#feature .inner .features .row .single .textarea .common-btn {
  max-width: 232px;
  margin: 0 auto;
}
body.site-front .contents_group#feature .inner .features .row .single .textarea .common-btn a {
  background: #FFFFFF;
}
body.site-front .contents_group#feature .inner .features .row .single .textarea .icon {
  margin: 16px 0 0;
}
body.site-front .contents_group#feature .inner .features .row .single .textarea .icon.jiima {
  width: 252px;
}
body.site-front .contents_group#feature .inner .features .row .single .textarea .icon.isms {
  width: 65px;
}
body.site-front .contents_group#feature .inner .features .row .single + .single {
  margin: 24px 0 0;
}
body.site-front .contents_group#feature .inner .features .row .single .imagearea {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front .contents_group#feature .inner .features .row .single .textarea {
  opacity: 1;
  transition: opacity 0.7s ease 0.3s;
}
body.site-front .contents_group#feature .inner .features .row:nth-child(1) .single {
  border: solid 4px #ca5b9d;
}
body.site-front .contents_group#feature .inner .features .row:nth-child(2) {
  margin: 24px 0 0;
}
body.site-front .contents_group#feature .inner .features .row:nth-child(2) .single {
  border: solid 1px rgba(71, 66, 65, 0.2);
}
body.site-front .contents_group#feature .inner .logo {
  margin-top: 16px;
}
body.site-front .contents_group#feature .inner .jiima_logo {
  margin-top: 20px;
  margin-right: 5px;
  width: 100px;
  height: auto;
  vertical-align: top;
}
body.site-front .contents_group#plan {
  margin-bottom: 24px;
}
body.site-front .contents_group#plan .inner {
  width: 100%;
  max-width: 100%;
}
body.site-front .contents_group#plan h2 {
  margin-bottom: 20px;
}
body.site-front .contents_group#plan .title-aside {
  margin: 10px auto 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.71;
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#plan .title-aside {
    margin: 10px 0 24px;
    width: auto;
    text-align: center;
  }
}
body.site-front .contents_group#plan .inner .head {
  width: 342px;
  max-width: 96%;
  margin: 0 auto 40px;
  opacity: 0;
}
body.site-front .contents_group#plan .inner .head {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
body.site-front .contents_group#plan .inner .plans {
  width: 374px;
  max-width: calc(100% - 16px);
  margin: 0 auto 15px;
}
body.site-front .contents_group#plan .inner .head .p-base{
    font-size: 14px;
}
body.site-front .contents_group#plan .inner .plans table {
  padding: 0;
  border-collapse: separate;
  border-spacing: 8px;
  width: calc(100% + 16px);
  margin: 0 -8px;
  opacity: 0;
  table-layout: fixed;
}
body.site-front .contents_group#plan .inner .plans table thead th {
  padding: 26px 0;
}
body.site-front .contents_group#plan .inner .plans table thead th .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 1.5px;
  margin: 0 0 8px;
}
body.site-front .contents_group#plan .inner .plans table thead th .caption {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 1.2px;
}
body.site-front .contents_group#plan .inner .plans table tbody {
  padding: 0;
}
body.site-front .contents_group#plan .inner .plans table tbody tr {
  padding: 0;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.label {
  width: 134px;
  box-sizing: border-box;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  vertical-align: middle;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data {
  padding: 9px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .check{
  margin-top: 6px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .price {
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.2px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .price span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 1px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .intax {
  font-weight: 400;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 1.2px;
  color: rgba(71, 66, 65, 0.6);
  margin: 2px 0 0;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .oparator {
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 1.2px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .price_box {
  margin: 8px 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .price_box .intax {
  margin: 0;
  line-height: 25px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .price_box.disabled {
  opacity: 0.2;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .price_box + .oparator {
  margin-top: 16px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .campaign {
  color: #FF1717;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .campaign span {
  font-size: 18px;
  line-height: 28px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .campaign + .oparator {
  margin-top: 16px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .time {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .time + .oparator {
  margin-top: 11px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .storage_price {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .storage_price_cap {
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .number {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .method {
  font-size: 14px;
  line-height: 34px;
  text-align: center;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .flow {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .check_title {
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 8px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .check li {
  padding: 0 0 0 20px;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .check li span {
  font-size: 12px;
  line-height: 21px;
  letter-spacing: 1.2px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .check li + li {
  margin: 8px 0 0;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .check li::before {
  display: block;
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url("/web/jp/bpstorage/images/check03.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
body.site-front .contents_group#plan .inner .plans table tbody tr td.data .common-btn {
  width: 342px;
  margin: 0 auto;
}
body.site-front .contents_group#plan .inner .plans table tbody tr:nth-child(2n-1) td {
  background: rgba(/*41, 20, 62, 0.05*/202, 91, 157, 0.05);
}
body.site-front .contents_group#plan .inner .plans table tbody tr:nth-child(6) .data, body.site-front .contents_group#plan .inner .plans table tbody tr:nth-child(8) .data {
  vertical-align: middle;
    height: 96px;
}
body.site-front .contents_group#plan .inner .plans table tbody tr:last-child td {
  background: none;
}
body.site-front .contents_group#plan .inner .plans table tbody tr:last-child td.data {
  padding: 40px 0 0;
}
body.site-front .contents_group#plan .inner .plans table:nth-child(1) thead th {
  background: rgba(/*229, 68, 159, 0.4*/202, 91, 157, 0.4);
}
body.site-front .contents_group#plan .inner .plans table:nth-child(2) thead th {
  background: rgba(/*229, 68, 159, 0.6*/202, 91, 157, 0.6);
}
body.site-front .contents_group#plan .inner .plans table:nth-child(3) thead th {
  background: rgba(/*229, 68, 159, 0.8*/202, 91, 157, 0.8);
}
body.site-front .contents_group#plan .inner .plans table + table {
  margin-top: 44px;
}
body.site-front .contents_group#plan .inner .plans table {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
body.site-front .contents_group#plan .inner .plans table colgroup col:nth-child(1) {
  width: 38%;
}
body.site-front .contents_group#plan .inner .plans table colgroup col:nth-child(2) {
  width: 62%;
}
body.site-front .contents_group#plan .inner .caption {
  width: 342px;
  max-width: 96%;
  margin: 0 auto;
  opacity: 0;
}
body.site-front .contents_group#plan .inner .caption p {
  font-weight: 400;
  color: rgba(71, 66, 65, 0.8);
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.2px;
}
body.site-front .contents_group#plan .inner .caption {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
@media screen and (max-width:767px) {
  body.site-front .contents_group#trial h2 {
    font-size: 26px;
  }
}
body.site-front .contents_group#trial .column {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 24px 0;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  body.site-front .contents_group#trial .column {
    max-width: 840px;
    gap: 0;
    justify-content: center;
    flex-direction: row;
  }
}
body.site-front .contents_group#trial .column_item {
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  body.site-front .contents_group#trial .column_item {
    width: 38.6904761905%;
  }
}
body.site-front .contents_group#trial .arrow {
  position: relative;
  opacity: 0;
  width: 32px;
  margin: 0 auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  bottom: 10px;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  body.site-front .contents_group#trial .arrow {
    bottom: 0;
    left: -10px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    width: 3.8095238095%;
  }
}
body.site-front .contents_group#trial  .column_item {
  transition: opacity 0.7s ease 0s;
  opacity: 1;
}
body.site-front .contents_group#trial  .arrow {
  transition: all 0.7s ease 0s;
  transition-property: opacity, left, bottom;
  opacity: 1;
  left: 0px;
  bottom: 0;
}
body.site-front .contents_group#trial .is-delay01 {
  transition-delay: 0.4s !important;
}
body.site-front .contents_group#trial .is-delay02 {
  transition-delay: 1s !important;
}
body.site-front .contents_group#trial .is-delay03 {
  transition-delay: 1.4s !important;
}
body.site-front .contents_group#trial .is-delay04 {
  transition-delay: 2s !important;
}
body.site-front .contents_group#trial .number {
  margin: 0 0 24px;
  font-family: "Inter", sans-serif;
}
body.site-front .contents_group#trial .number .sub {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.68;
  letter-spacing: 5px;
}
body.site-front .contents_group#trial .number .main {
  display: block;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px; /* 109.091% */
  letter-spacing: 0.66px;
}
body.site-front .contents_group#trial .title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 1.5px;
}
body.site-front .contents_group#trial .text {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
}
body.site-front .contents_group#trial .common-btn {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  body.site-front .contents_group#trial .common-btn {
    max-width: 232px;
  }
}
body.site-front .contents_group#example {
  padding: 60px 0;
  background-color: rgba(61, 49, 0, 0.05);
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#example {
    padding: 80px 0;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#example h2 {
    margin-bottom: 24px;
  }
}
body.site-front .contents_group#example .subtitle {
  margin: 0 0 16px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 1px;
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#example .subtitle {
    margin: 0 0 24px;
    font-size: 28px;
  }
}
body.site-front .contents_group#example .column {
  margin: 40px 0 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 24px 0;
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#example .column {
    gap: 0;
    flex-direction: row;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#example .column.is-two .column_item {
    width: 48.5714285714%;
  }
}
body.site-front .contents_group#example .column.is-three {
  gap: 40px 0;
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#example .column.is-three .column_item {
    width: 31.4285714286%;
  }
}
body.site-front .contents_group#example .image img {
  border-radius: 16px;
}
body.site-front .contents_group#example .image figcaption {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#example .image figcaption {
    margin-top: 24px;
  }
}
body.site-front .contents_group#interview .inner h2 {
  margin: 0 0 24px;
}
body.site-front .contents_group#interview .inner .head,
body.site-front .contents_group .inner .head {
  margin: 0 0 40px;
  opacity: 0;
}
body.site-front .contents_group#interview .inner .head,
body.site-front .contents_group .inner .head{
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
body.site-front .contents_group#interview .interviews .single {
  padding: 8px 6px 24px;
  border-radius: 16px;
  border: solid 2px rgba(71, 66, 65, 0.2);
  opacity: 0;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
body.site-front .contents_group#interview .interviews .single a {
  display: block;
  height: 100%;
}
body.site-front .contents_group#interview .interviews .single a .imagearea {
  overflow: hidden;
  border-radius: 10px;
  margin: 0 0 24px;
  position: relative;
  padding: 56.13% 0 0;
}
body.site-front .contents_group#interview .interviews .single a .imagearea img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body.site-front .contents_group#interview .interviews .single a .textarea {
  padding: 0 11px;
}
body.site-front .contents_group#interview .interviews .single a .textarea h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
}
body.site-front .contents_group#interview .interviews .single a .textarea .p-base {
  color: rgba(71, 66, 65, 0.6);
}
body.site-front .contents_group#interview .interviews .single a .textarea .p-base b {
  color: #474241;
  font-weight: 700;
}
body.site-front .contents_group#interview .interviews .single + .single {
  margin: 24px 0 0;
}
body.site-front .contents_group#interview .interviews .single {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front .contents_group#seminar,
body.site-front .contents_group#document{
  background: rgba(61, 49, 0, 0.05);
  padding: 60px 0;
}
body.site-front .contents_group#seminar .inner .group h2,
body.site-front .contents_group#document .inner .group h2{
  margin: 0 0 24px;
}
body.site-front .contents_group#seminar .inner .group .head,
body.site-front .contents_group#document .inner .group .head{
  margin: 0 0 40px;
  opacity: 0;
}
body.site-front .contents_group#seminar .inner .group .head,
body.site-front .contents_group#document .inner .group .head{
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
body.site-front .contents_group#seminar .inner .group .archives .single, body.site-front .contents_group#seminar .inner .group .reservations .single,
body.site-front .contents_group#document .inner .group .reservations .single,
body.site-front .contents_group#document .inner .group .archives .single{
  opacity: 0;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
body.site-front .contents_group#seminar .inner .group .archives .single .imagearea, body.site-front .contents_group#seminar .inner .group .reservations .single .imagearea,
body.site-front .contents_group#document .inner .group .reservations .single .imagearea, body.site-front .contents_group#document .inner .group .archives .single .imagearea{
  position: relative;
  padding: 57.89% 0 0;
  margin: 0 0 24px;
  border-radius: 16px;
  overflow: hidden;
}
body.site-front .contents_group#seminar .inner .group .archives .single .imagearea img, body.site-front .contents_group#seminar .inner .group .reservations .single .imagearea img,
body.site-front .contents_group#document .inner .group .archives .single .imagearea img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
body.site-front .contents_group#seminar .inner .group .archives .single .textarea h3, body.site-front .contents_group#seminar .inner .group .reservations .single .textarea h3,
body.site-front .contents_group#document .inner .group .archives .single .textarea h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
  margin: 0 0 24px;
}
body.site-front .contents_group#seminar .inner .group .archives .single .textarea .p-base, body.site-front .contents_group#seminar .inner .group .reservations .single .textarea .p-base,
body.site-front .contents_group#document .inner .group .archives .single .textarea .p-base {
  margin: 0 0 24px;
}
body.site-front .contents_group#seminar .inner .group .archives .single + .single, body.site-front .contents_group#seminar .inner .group .reservations .single + .single,
body.site-front .contents_group#document .inner .group .archives .single + .single {
  margin: 40px 0 0;
}
body.site-front .contents_group#seminar .inner .group .archives .single, body.site-front .contents_group#seminar .inner .group .reservations .single,
body.site-front .contents_group#document .inner .group .archives .single {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front .contents_group#seminar .inner .group .archives .single .textarea .common-btn a::after,
body.site-front .contents_group#document .inner .group .archives .single .textarea .common-btn a::after {
  background-image: url("/web/jp/bpstorage/images/icon-play.svg");
  height: 16px;
  margin-top: 3px;
}
body.site-front .contents_group#seminar .inner .group .reservations .single .textarea .caption,
body.site-front .contents_group#document .inner .group .reservations .single .textarea .caption {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.2px;
}
body.site-front .contents_group#seminar .inner .group .reservations .single .textarea .common-btn,
body.site-front .contents_group#document .inner .group .reservations .single .textarea .common-btn {
  margin: 24px 0 0;
}
body.site-front .contents_group#seminar .inner .group + .group,
body.site-front .contents_group#document .inner .group + .group {
  margin: 60px 0 0;
}
body.site-front .contents_group#uw .inner .uws .single {
  border: 2px solid rgba(71, 66, 65, 0.2);
  border-radius: 16px;
  opacity: 0;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
body.site-front .contents_group#uw .inner .uws .single a {
  display: block;
  padding: 24px;
}
body.site-front .contents_group#uw .inner .uws .single a h3 {
  position: relative;
  padding: 0 0 0 40px;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
}
body.site-front .contents_group#uw .inner .uws .single a h3::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 32px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-image: url("/web/jp/bpstorage/images/check02.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
body.site-front .contents_group#uw .inner .uws .single a .text {
  color: rgba(71, 66, 65, 0.8);
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 16px;
}
body.site-front .contents_group#uw .inner .uws .single a .readmore {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}
body.site-front .contents_group#uw .inner .uws .single a .readmore i {
  display: inline-block;
  line-height: 1;
  width: 16px;
  margin: 0 0 0 8px;
}
body.site-front .contents_group#uw .inner .uws .single + .single {
  margin: 24px 0 0;
}
body.site-front .contents_group#uw .inner .uws .single {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front .contents_group#uw .inner .uws .single:nth-child(2) {
  transition-delay: 0.4s;
}
body.site-front .contents_group#uw .inner .uws .single:nth-child(2)  a .imagearea img.sp{
    position: absolute;
    bottom:0;
}
@media screen and (max-width:767px) {
    body.site-front .contents_group#uw .inner .uws .single:nth-child(2)  a .imagearea img.sp{
    position: relative;
    bottom:unset;}
}
@media screen and (min-width:768px) {
    body.site-front .contents_group#uw .inner .uws .single:nth-child(2)  a .imagearea img.sp{
    display: block !important;}
}
body.site-front .contents_group#service .inner .services .single {
  height: 464px;
  opacity: 0;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
body.site-front .contents_group#service .inner .services .single a {
  display: block;
  padding: 40px 40px 0;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  border: solid 4px;
  border-radius: 16px;
}
body.site-front .contents_group#service .inner .services .single a .imagearea {
  width: 90px;
  margin: 0 0 40px;
}
body.site-front .contents_group#service .inner .services .single a .p-base {
  color: #474241;
}
body.site-front .contents_group#service .inner .services .single a .linktext {
  position: absolute;
  left: 40px;
  bottom: 40px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}
body.site-front .contents_group#service .inner .services .single a .linktext i {
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  margin: 0 0 0 9px;
}
body.site-front .contents_group#service .inner .services .single + .single {
  margin: 24px 0 0;
}
body.site-front .contents_group#service .inner .services .single:nth-child(1) a {
  border-color: #ca5b9d;
}
body.site-front .contents_group#service .inner .services .single:nth-child(1) a .linktext {
  color: #ca5b9d;
}
body.site-front .contents_group#service .inner .services .single:nth-child(3) a {
  border-color: #ca5b9d;
}
body.site-front .contents_group#service .inner .services .single:nth-child(3) a .linktext {
  color: #ca5b9d;
}
body.site-front .contents_group#service .inner .services .single:nth-child(2) a {
  border-color: #00CBB9;
}
body.site-front .contents_group#service .inner .services .single:nth-child(2) a .linktext {
  color: #00CBB9;
}
body.site-front .contents_group#service .inner .services .single.is-current a {
  pointer-events: none;
}
body.site-front .contents_group#service .inner .services .single {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
body.site-front .contents_group#service .inner .services .single:nth-child(2) {
  transition-delay: 0.5s;
}
body.site-front .contents_group#service .inner .services .single:nth-child(3) {
  transition-delay: 1s;
}
body.site-front .contents_group#service .inner .services .single.is-current {
  opacity: 0.3;
}
body.site-front .contents_group#news .inner {
  width: 100%;
  max-width: 100%;
}
body.site-front .contents_group#news .inner h2 {
  margin: 0 0 24px;
}
body.site-front .contents_group#news .inner .link {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  margin: 0 0 40px;
  opacity: 0;
}
body.site-front .contents_group#news .inner .link i {
  display: inline-block;
  width: 16px;
  line-height: 1;
  margin: 0 0 0 8px;
}
body.site-front .contents_group#news .inner .link {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
body.site-front .contents_group#news .inner .news {
  margin: 0 0 40px;
}
body.site-front .contents_group#news .inner .news li {
  opacity: 0;
}
body.site-front .contents_group#news .inner .news li a {
  display: block;
  padding: calc((100vw - 342px) / 2) 0;
}
@media screen and (max-width: 342px) {
  body.site-front .contents_group#news .inner .news li a {
    padding: 2vw 0;
  }
}
body.site-front .contents_group#news .inner .news li a .list_inner {
  display: block;
  width: 342px;
  max-width: 96%;
  margin: 0 auto;
}
body.site-front .contents_group#news .inner .news li a .list_inner time {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 1px;
}
body.site-front .contents_group#news .inner .news li a .list_inner .title {
  display: block;
  font-size: 14px;
  line-height: 26px;
}
body.site-front .contents_group#news .inner .news li:nth-child(2n-1) a {
  background: rgba(61, 49, 0, 0.05);
}
body.site-front .contents_group#news .inner .news li {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
body.site-front .contents_group#news .inner .news li:nth-child(2) {
  transition-delay: 0.2s;
}
body.site-front .contents_group#news .inner .news li:nth-child(3) {
  transition-delay: 0.4s;
}
body.site-front .contents_group#news .inner .news li:nth-child(4) {
  transition-delay: 0.6s;
}
body.site-front .contents_group#news .inner .news li:nth-child(5) {
  transition-delay: 0.8s;
}
body.site-front .contents_group#news .inner .news li:nth-child(6) {
  transition-delay: 1s;
}
body.site-front .contents_group#news .inner .news li:nth-child(7) {
  transition-delay: 1.2s;
}
body.site-front .contents_group#news .inner .news li:nth-child(8) {
  transition-delay: 1.4s;
}
body.site-front .contents_group#news .inner .news li:nth-child(9) {
  transition-delay: 1.6s;
}
body.site-front .contents_group#news .inner .news li:nth-child(10) {
  transition-delay: 1.8s;
}
body.site-front .contents_group#news .inner .news li:nth-child(11) {
  transition-delay: 2s;
}
body.site-front .contents_group#news .inner .news li:nth-child(12) {
  transition-delay: 2.2s;
}
body.site-front .contents_group#news .inner .news li:nth-child(13) {
  transition-delay: 2.4s;
}
body.site-front .contents_group#news .inner .news li:nth-child(14) {
  transition-delay: 2.6s;
}
body.site-front .contents_group#news .inner .news li:nth-child(15) {
  transition-delay: 2.8s;
}
body.site-front .contents_group#news .inner .news li:nth-child(16) {
  transition-delay: 3s;
}
body.site-front .contents_group#news .inner .news li:nth-child(17) {
  transition-delay: 3.2s;
}
body.site-front .contents_group#news .inner .news li:nth-child(18) {
  transition-delay: 3.4s;
}
body.site-front .contents_group#news .inner .news li:nth-child(19) {
  transition-delay: 3.6s;
}
body.site-front .contents_group#news .inner .news li:nth-child(20) {
  transition-delay: 3.8s;
}
body.site-front .contents_group#news .inner .news li:nth-child(21) {
  transition-delay: 4s;
}
body.site-front .contents_group#news .inner .news li:nth-child(22) {
  transition-delay: 4.2s;
}
body.site-front .contents_group#news .inner .news li:nth-child(23) {
  transition-delay: 4.4s;
}
body.site-front .contents_group#news .inner .news li:nth-child(24) {
  transition-delay: 4.6s;
}
body.site-front .contents_group#news .inner .news li:nth-child(25) {
  transition-delay: 4.8s;
}
body.site-front .contents_group#news .inner .news li:nth-child(26) {
  transition-delay: 5s;
}
body.site-front .contents_group#news .inner .news li:nth-child(27) {
  transition-delay: 5.2s;
}
body.site-front .contents_group#news .inner .news li:nth-child(28) {
  transition-delay: 5.4s;
}
body.site-front .contents_group#news .inner .news li:nth-child(29) {
  transition-delay: 5.6s;
}
body.site-front .contents_group#news .inner .news li:nth-child(30) {
  transition-delay: 5.8s;
}
body.site-front .contents_group#news .inner .news li:nth-child(31) {
  transition-delay: 6s;
}
body.site-front .contents_group#news .inner .news li:nth-child(32) {
  transition-delay: 6.2s;
}
body.site-front .contents_group#news .inner .news li:nth-child(33) {
  transition-delay: 6.4s;
}
body.site-front .contents_group#news .inner .news li:nth-child(34) {
  transition-delay: 6.6s;
}
body.site-front .contents_group#news .inner .news li:nth-child(35) {
  transition-delay: 6.8s;
}
body.site-front .contents_group#news .inner .news li:nth-child(36) {
  transition-delay: 7s;
}
body.site-front .contents_group#news .inner .news li:nth-child(37) {
  transition-delay: 7.2s;
}
body.site-front .contents_group#news .inner .news li:nth-child(38) {
  transition-delay: 7.4s;
}
body.site-front .contents_group#news .inner .news li:nth-child(39) {
  transition-delay: 7.6s;
}
body.site-front .contents_group#news .inner .news li:nth-child(40) {
  transition-delay: 7.8s;
}
body.site-front .contents_group#news .inner .news li:nth-child(41) {
  transition-delay: 8s;
}
body.site-front .contents_group#news .inner .news li:nth-child(42) {
  transition-delay: 8.2s;
}
body.site-front .contents_group#news .inner .news li:nth-child(43) {
  transition-delay: 8.4s;
}
body.site-front .contents_group#news .inner .news li:nth-child(44) {
  transition-delay: 8.6s;
}
body.site-front .contents_group#news .inner .news li:nth-child(45) {
  transition-delay: 8.8s;
}
body.site-front .contents_group#news .inner .news li:nth-child(46) {
  transition-delay: 9s;
}
body.site-front .contents_group#news .inner .news li:nth-child(47) {
  transition-delay: 9.2s;
}
body.site-front .contents_group#news .inner .news li:nth-child(48) {
  transition-delay: 9.4s;
}
body.site-front .contents_group#news .inner .news li:nth-child(49) {
  transition-delay: 9.6s;
}
body.site-front .contents_group#news .inner .news li:nth-child(50) {
  transition-delay: 9.8s;
}
body.site-front .contents_group#news .inner .common-btn {
  width: 342px;
  max-width: 96%;
  margin: 0 auto;
  opacity: 0;
}
body.site-front .contents_group#news .inner .common-btn a {
  background: #FFFFFF;
}
body.site-front .contents_group#news .inner .common-btn {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
@media screen and (max-width:767px) {
  body.site-front .contents_group#help h2 {
    margin-bottom: 20px;
  }
}
body.site-front .contents_group#help .inner .common-btn {
  opacity: 0;
}
body.site-front .contents_group#help .inner .common-btn a {
  background: #FFFFFF;
}
body.site-front .contents_group#help .inner .common-btn {
  opacity: 1;
  transition: opacity 0.7s ease 0s;
}
body.site-front.is-loaded #top .imagearea ul li {
  opacity: 1;
  -webkit-transform: none !important;
          transform: none !important;
}
body.site-front.is-loaded #top .imagearea ul li:nth-child(1) {
  transition: 0.1s opacity 1.5s linear, 0.5s -webkit-transform 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.1s opacity 1.5s linear, 0.5s transform 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.1s opacity 1.5s linear, 0.5s transform 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 0.5s -webkit-transform 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body.site-front.is-loaded #top .imagearea ul li:nth-child(2) {
  transition: 0.1s opacity 1.7s linear, 0.5s -webkit-transform 1.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.1s opacity 1.7s linear, 0.5s transform 1.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.1s opacity 1.7s linear, 0.5s transform 1.7s cubic-bezier(0.175, 0.885, 0.32, 1.275), 0.5s -webkit-transform 1.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body.site-front.is-loaded #top .imagearea ul li:nth-child(3) {
  transition: 0.1s opacity 2.3s linear, 0.5s -webkit-transform 2.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.1s opacity 2.3s linear, 0.5s transform 2.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.1s opacity 2.3s linear, 0.5s transform 2.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 0.5s -webkit-transform 2.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body.site-front.is-loaded #top .imagearea ul li:nth-child(4) {
  transition: 0.1s opacity 2.5s linear, 0.5s -webkit-transform 2.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.1s opacity 2.5s linear, 0.5s transform 2.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.1s opacity 2.5s linear, 0.5s transform 2.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 0.5s -webkit-transform 2.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body.site-front.is-loaded #top .imagearea ul li:nth-child(5) {
  transition: 0.1s opacity 3.1s linear, 0.5s -webkit-transform 3.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.1s opacity 3.1s linear, 0.5s transform 3.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.1s opacity 3.1s linear, 0.5s transform 3.1s cubic-bezier(0.175, 0.885, 0.32, 1.275), 0.5s -webkit-transform 3.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media print, screen and (min-width: 768px) {
  body.site-front #top {
    max-width: 1440px;
    padding: 48px 0 0;
    margin: 0 auto 0;
  }
  body.site-front #top .inner {
    width: 100%;
    max-width: 100%;
    position: relative;
    min-height: 37.01vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 0 59.44% 0 0;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 768px) and (max-width: 1050px) {
  body.site-front #top .inner {
    padding: 0 calc(100% - 446px) 0 0;
    height: calc((100% - 446px) * 0.66625);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  body.site-front #top .inner {
    min-height: 526px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front #top .inner .catch {
    font-size: 36px;
    line-height: 56px;
    letter-spacing: 1px;
    margin: 0 0 24px;
    width: 426px;
  }
  body.site-front #top .inner .imagearea {
    margin: 0;
    position: absolute;
    top: 40%;
    right: 3%;
    width: 55.56%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1050px) {
  body.site-front #top .inner .imagearea {
    width: calc(100% - 446px);
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front #top .inner .textarea {
    width: 426px;
  }
  body.site-front #top .inner .textarea .p-base {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 32px;
  }
  body.site-front #top .inner .textarea .buttons {
    width: 406px;
    margin: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  body.site-front #top .inner .textarea .buttons li {
    width: 191px;
  }
  body.site-front #top .inner .textarea .buttons li + li {
    margin: 0;
  }
  body.site-front #top .inner .textarea .buttons li + li a:hover {
    background: #ca5b9d;
    color: #FFFFFF;
  }
  body.site-front #top .inner .textarea .buttons li + li a:hover::after {
    background-image: url("/web/jp/bpstorage/images/icon-arrow.svg");
  }
  body.site-front #top .inner .textarea .gekkeikan {
    width: 408px;
    margin: 40px 0 0;
    justify-content: flex-start;
  }
  body.site-front #top .inner .textarea .gekkeikan li {
    width: 120px;
  }
  body.site-front #top .inner .textarea .gekkeikan li {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  body.site-front #top .inner .textarea .gekkeikan li img {
    width: 120px;
  }
  body.site-front #top .inner .textarea .caption {
    margin-top: 80px;
    white-space: nowrap;
    line-height: 20px;
    letter-spacing: 1.2px;
    color: rgba(71, 66, 65, 0.6);
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group {
    margin: 0 0 104px;
  }
  body.site-front .contents_group h2 {
    font-size: 36px;
    line-height: 56px;
    margin: 0 0 64px;
  }
  body.site-front .contents_group .inner {
    width: 1120px;
  }
  body.site-front .contents_group#painpoint {
    margin-top: 80px;
  }
  body.site-front .contents_group#painpoint .inner .worries_solution .flex {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  body.site-front .contents_group#painpoint .inner .worries_solution .flex .single {
    width: 256px;
    max-width: calc((100% - 40px) / 4);
  }
  body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .worries {
    padding: 35px 18px;
    margin: 0 0 177px;
    height: 300px;
    box-sizing: border-box;
  }
  body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .worries p {
    margin: 0 0 24px;
    min-height: 78px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .worries p {
    font-size: 12.8px;
    line-height: 20.8px;
    min-height: 62.4px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .worries .imagearea {
    width: 128px;
  }
  body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .worries::after {
    bottom: -170px;
    height: 170px;
    background-image: url("/web/jp/bpstorage/images/arrow.svg");
  }
  body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution {
    padding: 20px 18px 35px;
    min-height: 365px;
    box-sizing: border-box;
  }
  body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution .icon {
    display: none;
  }
  body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution .imagearea {
    width: 128px;
    margin: 0 auto 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#painpoint .inner .worries_solution .flex .single .solution ul li {
    font-size: 11.2px;
    line-height: 19.2px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#painpoint .inner .worries_solution .flex .single + .single {
    margin: 0;
  }
  body.site-front .contents_group#painpoint .inner .worries_solution .flex .dx {
    display: block;
    position: absolute;
    top: 358px;
    left: 0;
    right: 0;
    font-weight: 700;
    font-size: 36px;
    line-height: 56px;
    text-align: center;
    letter-spacing: 1px;
  }
  body.site-front .contents_group#catch h2 {
    margin-bottom: 24px;
  }
  body.site-front .contents_group#catch .inner .p-base {
    max-width: 801px;
    color: rgba(71, 66, 65, 0.8);
    margin: 0 auto;
    text-align: center;
  }
  body.site-front .contents_group#step .inner .head {
    margin: 0 0 160px;
  }
  body.site-front .contents_group#step .inner .head .flex {
    display: flex;
    justify-content: space-between;
    max-width: 835px;
    margin: 0 auto;
  }
  body.site-front .contents_group#step .inner .head .flex .single {
    width: calc((100% - 66px) / 3);
    padding: 0;
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#step .inner .head .flex .single {
    width: calc((100% - 48px) / 3);
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#step .inner .head .flex .single .num {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 5px;
    margin: 0 0 48px;
  }
  body.site-front .contents_group#step .inner .head .flex .single .num span {
    display: block;
    margin: 0;
    font-size: 44px;
    line-height: 48px;
    letter-spacing: 0.015em;
  }
  body.site-front .contents_group#step .inner .head .flex .single .imagearea {
    position: static;
    width: 156px;
    margin: 0 auto 48px;
  }
  body.site-front .contents_group#step .inner .head .flex .single .textarea .tags {
    margin: 0 0 16px;
  }
  body.site-front .contents_group#step .inner .head .flex .single .textarea .text {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 1px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#step .inner .head .flex .single .textarea .text {
    font-size: 16.8px;
    line-height: 22.4px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#step .inner .head .flex .single::after {
    border-top: solid 19px transparent;
    border-left: solid 34px #474241;
    border-right: none;
    border-bottom: solid 19px transparent;
    bottom: calc(50% - 19px);
    left: auto;
    right: -32px;
    margin: 0;
    -webkit-transform: translate(-10px, 0);
            transform: translate(-10px, 0);
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#step .inner .head .flex .single::after {
    border-top-width: 9.5px;
    border-bottom-width: 9.5px;
    border-left-width: 17px;
    right: -24px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#step .inner .steps .single .single_main {
    position: relative;
    min-height: 352px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  body.site-front .contents_group#step .inner .steps .single .single_main .titlearea {
    width: 48.57%;
    margin: 0 0 24px;
  }
  body.site-front .contents_group#step .inner .steps .single .single_main .imagearea {
    width: 48.57%;
    margin: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: scale(0.9) translate(0, -50%);
            transform: scale(0.9) translate(0, -50%);
  }
  body.site-front .contents_group#step .inner .steps .single .single_main .imagearea img {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  body.site-front .contents_group#step .inner .steps .single .single_main .imagearea img.pc {
      width: 100%;
  }    
  body.site-front .contents_group#step .inner .steps .single .single_main .imagearea {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  body.site-front .contents_group#step .inner .steps .single .single_main .textarea {
    width: 48.57%;
  }
  body.site-front .contents_group#step .inner .steps .single .single_main .textarea .common-btn {
    margin-top: 40px;
    max-width: 265px;
  }
  body.site-front .contents_group#step .inner .steps .single .single_main .textarea .common-btn a:hover {
    background: #ca5b9d;
    color: #FFFFFF;
  }
  body.site-front .contents_group#step .inner .steps .single .single_main .textarea .common-btn a:hover::after {
    background-image: url("/web/jp/bpstorage/images/icon-arrow.svg");
  }
  body.site-front .contents_group#step .inner .steps .single .single_main .textarea .box_text {
    padding: 40px 10px;
  }
  body.site-front .contents_group#step .inner .steps .single .single_main .textarea .box_text .title {
    max-width: 315px;
    margin: 0 auto 16px;
    letter-spacing: 1.5px;
  }
  body.site-front .contents_group#step .inner .steps .single .single_main .textarea .box_text .text {
    max-width: 315px;
    margin: 0 auto;
    letter-spacing: 1.5px;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub .figure {
    margin-top: 40px;
  }
  body.site-front .contents_group#step .inner .steps .single + .single {
    margin: 64px 0 0;
  }
  body.site-front .contents_group#step .inner .steps .single:nth-child(2n) .single_main {
    align-items: flex-end;
  }
  body.site-front .contents_group#step .inner .steps .single:nth-child(2n) .single_main .imagearea {
    right: auto;
    left: 0;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub {
    margin: 64px 0 0;
    padding: 80px 14%;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub .imagearea {
    margin: 0;
    width: 51.09%;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub .title {
    margin: 0 0 24px;
    text-align: center;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub .p-base {
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 1.5px;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub .common-btn {
    max-width: 315px;
    margin: 0 auto;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub .common-btn a:hover {
    color: #474241;
    background: #FFFFFF;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub.auto_transfer {
    padding: 80px 40px 80px 97px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#step .inner .steps .single .single_sub.auto_transfer {
    padding: 80px 25px 80px 45px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#step {
    margin-bottom: 60px;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub.auto_transfer .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub.auto_transfer .flex .textarea {
    width: 54.78%;
    order: -1;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub.auto_transfer .logo {
    max-width: 350px;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub.auto_transfer .p-base {
    text-align: left;
  }
  body.site-front .contents_group#step .inner .steps .single .single_sub.auto_transfer .common-btn {
    max-width: 216px;
    margin: 0;
  }
  body.site-front .contents_group#feature {
    padding: 80px 0;
    overflow: hidden;
  }
  body.site-front .contents_group#feature .inner .head {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    width: 102.5%;
  }
  body.site-front .contents_group#feature .inner .logo {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#feature .inner .head {
    align-items: center;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#feature .inner .head .imagearea {
    margin: 0;
    width: 59.91%;
  }
  body.site-front .contents_group#feature .inner .head .textarea {
    width: 38.96%;
    order: -1;
  }
  body.site-front .contents_group#feature .inner .head .textarea h3 {
    font-size: 24px;
    line-height: 32px;
    max-width: 352px;
  }
  body.site-front .contents_group#feature .inner .features .row {
    display: flex;
  }
  body.site-front .contents_group#feature .inner .features .row .single {
    width: 31.43%;
    box-sizing: border-box;
    padding: 35px 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#feature .inner .features .row .single {
    padding: 35px 10px;
  }
  body.site-front .contents_group#feature .inner .features .row .single .textarea .title {
    font-size: 12.8px;
    line-height: 20.8px;
  }
}
body.site-front .contents_group#feature .inner .features .row .single .textarea .emblem {
  display: flex;
  gap: 0 16px;
  margin-top: 16px;
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#feature .inner .features .row .single .textarea .title {
    margin-bottom: 18px;
  }
  body.site-front .contents_group#feature .inner .features .row .single .textarea .p-base {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#feature .inner .features .row .single .textarea .p-base {
    font-size: 11.2px;
    line-height: 19.2px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#feature .inner .features .row .single .textarea .common-btn {
    max-width: 183px;
  }
  body.site-front .contents_group#feature .inner .features .row .single .textarea .common-btn a:hover {
    background: #ca5b9d;
  }
  body.site-front .contents_group#feature .inner .features .row .single .textarea .icon {
    max-width: 100%;
  }
  body.site-front .contents_group#feature .inner .features .row .single + .single {
    margin: 0;
  }
  body.site-front .contents_group#feature .inner .features .row .single:nth-child(3n-1) {
    margin: 0 2.855%;
  }
  body.site-front .contents_group#feature .inner .features .row:nth-child(2) {
    margin: 32px 0 0;
  }
  body.site-front .contents_group#feature .inner .features .row:nth-child(2) .single {
    border-width: 2px;
  }
  body.site-front .contents_group#plan {
    margin-bottom: 124px;
  }
  body.site-front .contents_group#plan .inner {
    width: 1120px;
    max-width: 96%;
  }
  body.site-front .contents_group#plan .title-aside {
    margin: 10px 0 24px;
  }
  body.site-front .contents_group#plan .inner .head {
    width: 928px;
    max-width: 100%;
    text-align: center;
  }
  body.site-front .contents_group#plan .inner .head .p-base + .p-base {
    margin: 0;
  }
  body.site-front .contents_group#plan .inner .plans {
    width: calc(100% + 16px);
    max-width: none;
    margin: 0 -8px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
  }
  body.site-front .contents_group#plan .inner .plans table {
    width: calc((100% - 40px) / 3 + 20px);
    margin: 0;
  }
  body.site-front .contents_group#plan .inner .plans table thead th {
    padding: 24px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#plan .inner .plans table thead th .caption {
    font-size: 11px;
    letter-spacing: 0;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#plan .inner .plans table tbody tr td.label {
    width: 50%;
    padding: 18px 16px;
  }
  body.site-front .contents_group#plan .inner .plans table tbody tr td.data {
    padding: 9px 13px;
    min-height: 60px;
  }
  body.site-front .contents_group#plan .inner .plans table tbody tr td.data .price {
    font-size: 16px;
    line-height: 27px;
  }
  body.site-front .contents_group#plan .inner .plans table tbody tr td.data .check_title {
    font-size: 16px;
    line-height: 26px;
  }
  body.site-front .contents_group#plan .inner .plans table tbody tr td.data .check li {
    padding: 0 0 0 24px;
  }
  body.site-front .contents_group#plan .inner .plans table tbody tr td.data .check li span {
    line-height: 20px;
  }
  body.site-front .contents_group#plan .inner .plans table tbody tr td.data .common-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 325px;
    max-width: 100%;
  }
  body.site-front .contents_group#plan .inner .plans table tbody tr:nth-child(3) td.data, body.site-front .contents_group#plan .inner .plans table tbody tr:nth-child(4) td.data {
    padding: 16px;
  }
  body.site-front .contents_group#plan .inner .plans table tbody tr:nth-child(6) td.data {
    padding: 11px;
    vertical-align: middle;
  }
  body.site-front .contents_group#plan .inner .plans table tbody tr:nth-child(9) td.data {
    padding-top: 27px;
    padding-bottom: 118px;
    position: relative;
  }
  body.site-front .contents_group#plan .inner .plans table tbody tr:nth-child(9) td.data .common-btn {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 90%;
  }
  body.site-front .contents_group#plan .inner .plans table:nth-child(1) {
    width: calc((100% - 40px) / 3 * 2 + 32px);
  }
  body.site-front .contents_group#plan .inner .plans table:nth-child(1) thead tr th:nth-child(1) {
    background: #FFFFFF;
  }
  body.site-front .contents_group#plan .inner .plans table:nth-child(2) thead tr th:nth-child(1), body.site-front .contents_group#plan .inner .plans table:nth-child(2) thead tr td:nth-child(1), body.site-front .contents_group#plan .inner .plans table:nth-child(2) tbody tr th:nth-child(1), body.site-front .contents_group#plan .inner .plans table:nth-child(2) tbody tr td:nth-child(1), body.site-front .contents_group#plan .inner .plans table:nth-child(3) thead tr th:nth-child(1), body.site-front .contents_group#plan .inner .plans table:nth-child(3) thead tr td:nth-child(1), body.site-front .contents_group#plan .inner .plans table:nth-child(3) tbody tr th:nth-child(1), body.site-front .contents_group#plan .inner .plans table:nth-child(3) tbody tr td:nth-child(1) {
    display: none;
  }
  body.site-front .contents_group#plan .inner .plans table {
    width: calc((100% - 56px) / 4 + 20px);
  }
  body.site-front .contents_group#plan .inner .plans table:nth-child(1) {
    width: calc((100% - 56px) / 2 + 32px);
  }
  body.site-front .contents_group#plan .inner .plans table:not(:first-child) thead tr th:nth-child(1), body.site-front .contents_group#plan .inner .plans table:not(:first-child) thead tr td:nth-child(1), body.site-front .contents_group#plan .inner .plans table:not(:first-child) tbody tr th:nth-child(1), body.site-front .contents_group#plan .inner .plans table:not(:first-child) tbody tr td:nth-child(1) {
    display: none;
  }
  body.site-front .contents_group#plan .inner .plans table:not(:last-child) tbody tr.child:not(.sep-top) td::after {
    display: none;
  }
  body.site-front .contents_group#plan .inner .plans table tbody tr.child td:nth-child(1)::after {
    display: block !important;
  }
  body.site-front .contents_group#plan .inner .plans table:not(:first-child) tr td.sep-label {
    font-size: 0;
    position: relative;
  }
  body.site-front .contents_group#plan .inner .plans table:not(:first-child) tr td.sep-label::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -20px;
    background: #E8ECEC;
  }
  body.site-front .contents_group#plan .inner .plans table:not(:first-child) tbody tr.sep-bottom td::before {
    left: -10px;
  }
  body.site-front .contents_group#plan .inner .plans table + table {
    margin-top: 0;
    margin-left: -8px;
  }
  body.site-front .contents_group#plan .inner .caption {
    width: 80%;
    max-width: 100%;
  }
  body.site-front .contents_group#plan .inner .caption p {
    color: rgba(71, 66, 65, 0.6);
    font-weight: 500;
  }
  body.site-front .contents_group#interview .head .p-base,
    body.site-front .contents_group .head .p-base{
    text-align: center;
  }
  body.site-front .contents_group#interview .interviews {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 -32px;
  }
  body.site-front .contents_group#interview .interviews .single {
    padding: 0;
    width: 31.5%;
    margin: 0 0 32px;
    box-sizing: border-box;
    transition: all 0.4s ease 0s;
    border: none;
    border-radius: 0;
  }
  body.site-front .contents_group#interview .interviews .single a {
    box-sizing: border-box;
    padding: 8px 8px 28px;
    border-radius: 16px;
    border: solid 2px rgba(71, 66, 65, 0.2);
    transition: all 0.4s ease 0s;
  }
  body.site-front .contents_group#interview .interviews .single a .imagearea {
    margin: 0 0 20px;
    padding: 61.01% 0 0;
  }
  body.site-front .contents_group#interview .interviews .single a .textarea {
    padding: 0 16px;
  }
  body.site-front .contents_group#interview .interviews .single a .textarea h3 {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#interview .interviews .single a .textarea h3 {
    font-size: 14.4px;
    line-height: 22.4px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#interview .interviews .single a .textarea .p-base {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#interview .interviews .single a .textarea .p-base {
    font-size: 11.2px;
    line-height: 19.2px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#interview .interviews .single a:hover {
    box-shadow: 0px 6px 10px 0px rgba(71, 66, 65, 0.2);
  }
  body.site-front .contents_group#interview .interviews .single + .single {
    margin: 0 0 32px;
  }
  body.site-front .contents_group#interview .interviews .single:nth-child(3n-1) {
    margin: 0 2.75% 32px;
  }
  body.site-front .contents_group#seminar,
    body.site-front .contents_group#document{
    padding: 0;
  }
  body.site-front .contents_group#seminar .inner .head,
    body.site-front .contents_group#document .inner .head {
    text-align: center;
  }
  body.site-front .contents_group#seminar .inner .group .archives, body.site-front .contents_group#seminar .inner .group .reservations,
    body.site-front .contents_group#document .inner .group .archives, body.site-front .contents_group#document .inner .group .reservations{
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 -32px;
  }
  body.site-front .contents_group#seminar .inner .group .archives .single,
    body.site-front .contents_group#seminar .inner .group .reservations .single,
    body.site-front .contents_group#document .inner .group .archives .single,
    body.site-front .contents_group#document .inner .group .reservations .single {
    width: 31.5%;
    margin: 0 0 32px;
    padding: 0 0 70px;
    position: relative;
  }
  body.site-front .contents_group#seminar .inner .group .archives .single .imagearea, body.site-front .contents_group#seminar .inner .group .reservations .single .imagearea,
    body.site-front .contents_group#document .inner .group .archives .single .imagearea, body.site-front .contents_group#document .inner .group .reservations .single .imagearea {
    padding: 56.53% 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#seminar .inner .group .archives .single .textarea h3, body.site-front .contents_group#seminar .inner .group .reservations .single .textarea h3,
    body.site-front .contents_group#document .inner .group .archives .single .textarea h3, body.site-front .contents_group#document .inner .group .reservations .single .textarea h3 {
    font-size: 12.8px;
    line-height: 20.8px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#seminar .inner .group .archives .single .textarea .p-base, body.site-front .contents_group#seminar .inner .group .reservations .single .textarea .p-base,
    body.site-front .contents_group#document .inner .group .reservations .single .textarea .p-base, body.site-front .contents_group#document .inner .group .archives .single .textarea .p-base {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#seminar .inner .group .archives .single .textarea .p-base, body.site-front .contents_group#seminar .inner .group .reservations .single .textarea .p-base,
    body.site-front .contents_group#document .inner .group .archives .single .textarea .p-base, body.site-front .contents_group#document .inner .group .reservations .single .textarea .p-base {
    font-size: 11.2px;
    line-height: 19.2px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#seminar .inner .group .archives .single .textarea .common-btn, body.site-front .contents_group#seminar .inner .group .reservations .single .textarea .common-btn,
    body.site-front .contents_group#document .inner .group .archives .single .textarea .common-btn, body.site-front .contents_group#document .inner .group .reservations .single .textarea .common-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  body.site-front .contents_group#seminar .inner .group .archives .single + .single, body.site-front .contents_group#seminar .inner .group .reservations .single + .single,
    body.site-front .contents_group#document .inner .group .archives .single + .single, body.site-front .contents_group#documet .inner .group .reservations .single + .single {
    margin: 0 0 32px;
  }
  body.site-front .contents_group#seminar .inner .group .archives .single:nth-child(3n-1), body.site-front .contents_group#seminar .inner .group .reservations .single:nth-child(3n-1),
    body.site-front .contents_group#document .inner .group .archives .single:nth-child(3n-1), body.site-front .contents_group#document .inner .group .reservations .single:nth-child(3n-1) {
    margin: 0 2.75% 32px;
  }
  body.site-front .contents_group#seminar .inner .group .archives .single .textarea .common-btn a:hover::after,
    body.site-front .contents_group#document .inner .group .archives .single .textarea .common-btn a:hover::after {
    -webkit-transform: none;
            transform: none;
  }
  body.site-front .contents_group#seminar .inner .group .reservations .single .textarea .caption,
    body.site-front .contents_group#document .inner .group .reservations .single .textarea .caption {
    margin: 24px 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#seminar .inner .group .reservations .single .textarea .caption,
    body.site-front .contents_group#document .inner .group .reservations .single .textarea .caption {
    font-size: 9.6px;
    line-height: 16px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#seminar,
    body.site-front .contents_group#document {
    padding: 70px 0 80px;
  }
  body.site-front .contents_group#seminar .inner .group + .group,
    body.site-front .contents_group#document .inner .group + .group {
    margin: 64px 0 0;
  }
  body.site-front .contents_group#uw .inner .uws {
    display: flex;
    justify-content: space-between;
      flex-wrap: wrap;
      row-gap:34px;
  }
  body.site-front .contents_group#uw .inner .uws .single {
    width: calc((100% - 32px) / 2);
    border: none;
    border-radius: 0;
  }
  body.site-front .contents_group#uw .inner .uws .single a {
    border: 2px solid rgba(71, 66, 65, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease 0s;
    box-sizing: border-box;
    height: 100%;
  }
  body.site-front .contents_group#uw .inner .uws .single a .titlearea {
    display: flex;
    align-items: center;
    min-height: 56px;
    margin: 0 0 16px;
  }
  body.site-front .contents_group#uw .inner .uws .single a .titlearea h3 {
    margin: 0;
  }
  body.site-front .contents_group#uw .inner .uws .single a:hover {
    box-shadow: 0px 6px 10px 0px rgba(71, 66, 65, 0.2);
  }
  body.site-front .contents_group#uw .inner .uws .single + .single {
    margin: 0;
  }
  body.site-front .contents_group#uw .inner .uws .single a .imagearea{
      aspect-ratio: 5 / 2.8;
      overflow: hidden;
      position: relative;
  } 
  body.site-front .contents_group#service .inner .services {
    display: flex;
    justify-content: space-between;
  }
  body.site-front .contents_group#service .inner .services .single {
    width: 31.43%;
    height: auto;
  }
  body.site-front .contents_group#service .inner .services .single a {
    display: block;
    padding: 40px 40px 104px;
    transition: all 0.4s ease 0s;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body.site-front .contents_group#service .inner .services .single a .p-base {
    font-size: 12.8px;
    line-height: 22.4px;
  }
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#service .inner .services .single a:hover {
    box-shadow: 0px 6px 10px 0px rgba(71, 66, 65, 0.2);
  }
  body.site-front .contents_group#service .inner .services .single + .single {
    margin: 0;
  }
  body.site-front .contents_group#news .inner {
    width: 1120px;
    max-width: 96%;
  }
  body.site-front .contents_group#news .inner h2 {
    margin: 0 0 70px;
  }
  body.site-front .contents_group#news .inner .link {
    text-align: right;
    margin: 0 0 24px;
  }
  body.site-front .contents_group#news .inner .link a {
    transition: opacity 0.4s ease 0s;
  }
  body.site-front .contents_group#news .inner .link a i {
    display: inline-block;
    transition: -webkit-transform 0.4s ease 0s;
    transition: transform 0.4s ease 0s;
    transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
  }
  body.site-front .contents_group#news .inner .link a:hover {
    opacity: 0.5;
  }
  body.site-front .contents_group#news .inner .link a:hover i {
    -webkit-transform: scale(1.2) translate(3px, 0);
            transform: scale(1.2) translate(3px, 0);
  }
  body.site-front .contents_group#news .inner .news li a {
    padding: 24px;
    transition: opacity 0.4s ease 0s;
  }
  body.site-front .contents_group#news .inner .news li a .list_inner {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
  }
  body.site-front .contents_group#news .inner .news li a .list_inner time {
    color: rgba(71, 66, 65, 0.8);
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.5px;
    width: 166px;
  }
  body.site-front .contents_group#news .inner .news li a .list_inner .title {
    width: calc(100% - 166px);
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.5px;
  }
  body.site-front .contents_group#news .inner .news li a:hover {
    opacity: 0.5;
  }
  body.site-front .contents_group#news .inner .common-btn {
    width: 166px;
  }
  body.site-front .contents_group#news .inner .common-btn a:hover {
    background: #ca5b9d;
  }
  body.site-front .contents_group#help .inner .common-btn {
    max-width: 249px;
    margin: 0 auto;
  }
  body.site-front .contents_group#help .inner .common-btn a:hover {
    background: #ca5b9d;
  }
  body.site-front.is-loaded #top .textarea .gekkeikan li {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s;
  }
  body.site-front.is-loaded #top .textarea .gekkeikan li:nth-child(2) {
    transition-delay: 1.2s;
  }
  body.site-front.is-loaded #top .textarea .gekkeikan li:nth-child(3) {
    transition-delay: 1.4s;
  }
}
body.site-front .contents_group#suggest,
body.site-front .contents_group#services{
  margin: 60px 0;
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#suggest,
body.site-front .contents_group#services {
    margin: 104px 0;
  }
}
body.site-front .contents_group#suggest .layout,
body.site-front .contents_group#services .layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px 15px;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  body.site-front .contents_group#suggest .layout,
  body.site-front .contents_group#services .layout {
    flex-direction: row;
  }
  body.site-front .contents_group#services .layout {
      align-items: stretch;
    }    
}
body.site-front .contents_group#suggest .title,
body.site-front .contents_group#services title  {
  margin: 0 auto;
}
body.site-front .contents_group#suggest .title h2,
body.site-front .contents_group#services .title h2  {
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#suggest .title h2,
body.site-front .contents_group#services .title h2 {
    margin: 0;
    text-align: left;
  }
}
body.site-front .contents_group#suggest .detail,
body.site-front .contents_group#services .detail  {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 24px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 4px solid #267C3A;
  background: #FFF;
}
body.site-front .contents_group#services .detail  {
    width: 100%;
}
body.site-front .contents_group#suggest .detail .p-base.strong,
body.site-front .contents_group#services .detail .p-base.strong {
    font-weight: 700;
}
body.site-front .contents_group#suggest .detail .tit,
body.site-front .contents_group#services .tit {
    font-size: 20px;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}
body.site-front .contents_group#suggest .detail .tit,
body.site-front .contents_group#suggest .detail .merit,
body.site-front .contents_group#services .detail .tit,
body.site-front .contents_group#services .detail .merit {
    display: block;
}
body.site-front .contents_group#suggest .detail .p-base.merits,
body.site-front .contents_group#services .detail .p-base.merits {
    margin: 0;
}
body.site-front .contents_group#suggest .detail .merit,
body.site-front .contents_group#services .detail .merit {
    margin-left: 1em;
    text-indent: -1em;
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#suggest .detail,
  body.site-front .contents_group#services .detail {
    padding: 40px;
    max-width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  body.site-front .contents_group#suggest .detail,
body.site-front .contents_group#services .detail{
    width: 48.5714285714%;
    max-width: 544px;
  }
}
body.site-front .contents_group#suggest .logo{
  max-width: 238px;
}
body.site-front .contents_group#services .logo{
    width: 100%;
}
body.site-front .contents_group#suggest .link a,
body.site-front .contents_group#services .link a  {
  position: relative;
  color: #267C3A;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.71;
}
@media print, screen and (min-width: 768px) {
  body.site-front .contents_group#suggest .link a,
body.site-front .contents_group#services .link a  {
    transition: ease opacity 0.3s;
  }
  body.site-front .contents_group#suggest .link a:hover,
body.site-front .contents_group#services .link a:hover  {
    opacity: 0.7;
  }
}
body.site-front .contents_group#suggest .link a:after,
body.site-front .contents_group#services .link a:after  {
  position: relative;
  top: -1px;
  vertical-align: middle;
  margin-left: 8px;
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url(/web/jp/bpstorage/images/icon-blank.svg) 50% 50% no-repeat;
  background-size: contain;
}
body.site-front .accordion-section {
  padding: 24px 0 30px;
}
body.site-front .accordion-section + .accordion-section {
  border-top: 1px solid var(--gray-200, #EAECF0);
}
body.site-front .accordion-section:last-child {
  padding-bottom: 0 !important;
}
body.site-front .accordion-header {
  position: relative;
  padding-right: 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.62;
  letter-spacing: 0.5px;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  body.site-front .accordion-header {
    padding-right: 50px;
  }
  body.site-front .accordion-header:hover {
    opacity: 0.7;
  }
}
body.site-front .accordion-header i {
  top: 3px;
  right: 0;
  position: absolute;
  border-radius: 50%;
  display: block;
  height: 22px;
  width: 22px;
  border: 2px solid #ca5b9d;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) {
  body.site-front .accordion-header i {
    top: calc(50% - 15px);
    height: 30px;
    width: 30px;
  }
}
body.site-front .accordion-header i:before, body.site-front .accordion-header i:after {
  position: absolute;
  z-index: 2;
  border-radius: 10px;
  top: calc(50% - 1px);
  left: calc(50% - 5px);
  width: 10px;
  height: 2px;
  content: "";
  display: block;
  background-color: #ca5b9d;
  transition: ease transform 0.3s;
}
@media print, screen and (min-width: 768px) {
  body.site-front .accordion-header i:before, body.site-front .accordion-header i:after {
    top: calc(50% - 1px);
    left: calc(50% - 8px);
    width: 16px;
    height: 2px;
  }
}
body.site-front .accordion-header i:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
body.site-front .is-open .accordion-header i:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
body.site-front .accordion-body {
  display: none;
  padding-top: 8px;
}
body.site-front .accordion-body .p-base {
  font-size: 14px;
  line-height: 1.71;
}

/* Primary color */
.p-global-nav .sub-menu a, .p-news-ticker, .p-widget-dropdown, .p-widget-dropdown select, .p-headline, .p-latest-news__title, .p-menu-button.is-active {
  background: #333333;
}

/* Secondary color */
.p-global-nav .sub-menu li a:hover, .p-widget-search__submit:hover, .p-button, .p-review__button:hover, .p-pager__item a:hover, .c-comment__form-submit:hover {
  background: #00ac97;
}

.l-header--large .p-global-nav > li > a:hover, .l-header--large.is-active .p-global-nav > li > a:hover, .p-global-nav > .current-menu-item > a, .p-global-nav > li > a:hover, .p-global-nav .current-menu-item > a .p-widget-list a:hover, .p-news-ticker__item-date {
  color: #00ac97;
}

/* Tertiary color */
.p-button:hover, .slick-dots li.slick-active, .slick-dots li:hover {
  background: #ffffff;
}

.p-article01__title a:hover, .p-article01__category a:hover, .p-footer-blog__archive-link:hover, .p-footer-nav a:hover, .p-social-nav__item a:hover, .p-index-content07__archive-link:hover, .p-news-ticker__archive-link:hover {
  color: #ffffff;
}

/* headline font type */
.p-index-slider__item-catch, .p-index-content01__catch, .p-index-content02__item-catch, .p-showcase__catch, .p-index-content04__catch, .p-index-content06__item-catch, .p-index-content07__catch, .p-index-content09__catch, .p-footer-blog__catch, .p-article01__title, .p-page-header__title, .p-headline, .p-article02__title, .p-latest-news__title h2, .p-review__name, .p-review-header__title, #js-header-video .caption .title, #js-header-youtube .caption .title {
  font-family: "Segoe UI", Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.p-index-slider__item:nth-child(1) .p-button {
  background: #00ac97;
  color: #ffffff;
}

.p-index-slider__item:nth-child(1) .p-button:hover {
  background: #ffffff;
  color: #00ac97;
}

.p-index-slider__item:nth-child(2) .p-button {
  background: #ff8000;
  color: #000000;
}

.p-index-slider__item:nth-child(2) .p-button:hover {
  background: #e37100;
  color: #ffffff;
}

.p-index-slider__item:nth-child(3) .p-button {
  background: #ff8000;
  color: #000000;
}

.p-index-slider__item:nth-child(3) .p-button:hover {
  background: #e37100;
  color: #ffffff;
}

/* load */
@-webkit-keyframes loading-square-loader {
  0% {
    box-shadow: 16px -8px rgba(51, 51, 51, 0), 32px 0 rgba(51, 51, 51, 0), 0 -16px rgba(51, 51, 51, 0), 16px -16px rgba(51, 51, 51, 0), 32px -16px rgba(51, 51, 51, 0), 0 -32px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  5% {
    box-shadow: 16px -8px rgba(51, 51, 51, 0), 32px 0 rgba(51, 51, 51, 0), 0 -16px rgba(51, 51, 51, 0), 16px -16px rgba(51, 51, 51, 0), 32px -16px rgba(51, 51, 51, 0), 0 -32px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  10% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px -8px rgba(51, 51, 51, 0), 0 -16px rgba(51, 51, 51, 0), 16px -16px rgba(51, 51, 51, 0), 32px -16px rgba(51, 51, 51, 0), 0 -32px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  15% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -24px rgba(51, 51, 51, 0), 16px -16px rgba(51, 51, 51, 0), 32px -16px rgba(51, 51, 51, 0), 0 -32px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  20% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -24px rgba(51, 51, 51, 0), 32px -16px rgba(51, 51, 51, 0), 0 -32px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  25% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -24px rgba(51, 51, 51, 0), 0 -32px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  30% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -50px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  35% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -50px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  40% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -50px rgba(242, 205, 123, 0);
  }
  45%, 55% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  60% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  65% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  70% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -8px rgba(51, 51, 51, 0), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  75% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -8px rgba(51, 51, 51, 0), 16px -8px rgba(51, 51, 51, 0), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  80% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -8px rgba(51, 51, 51, 0), 16px -8px rgba(51, 51, 51, 0), 32px -8px rgba(51, 51, 51, 0), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  85% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -8px rgba(51, 51, 51, 0), 16px -8px rgba(51, 51, 51, 0), 32px -8px rgba(51, 51, 51, 0), 0 -24px rgba(51, 51, 51, 0), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  90% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -8px rgba(51, 51, 51, 0), 16px -8px rgba(51, 51, 51, 0), 32px -8px rgba(51, 51, 51, 0), 0 -24px rgba(51, 51, 51, 0), 16px -24px rgba(51, 51, 51, 0), 32px -32px rgb(0, 172, 151);
  }
  95%, 100% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -8px rgba(51, 51, 51, 0), 16px -8px rgba(51, 51, 51, 0), 32px -8px rgba(51, 51, 51, 0), 0 -24px rgba(51, 51, 51, 0), 16px -24px rgba(51, 51, 51, 0), 32px -24px rgba(0, 172, 151, 0);
  }
}
@keyframes loading-square-loader {
  0% {
    box-shadow: 16px -8px rgba(51, 51, 51, 0), 32px 0 rgba(51, 51, 51, 0), 0 -16px rgba(51, 51, 51, 0), 16px -16px rgba(51, 51, 51, 0), 32px -16px rgba(51, 51, 51, 0), 0 -32px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  5% {
    box-shadow: 16px -8px rgba(51, 51, 51, 0), 32px 0 rgba(51, 51, 51, 0), 0 -16px rgba(51, 51, 51, 0), 16px -16px rgba(51, 51, 51, 0), 32px -16px rgba(51, 51, 51, 0), 0 -32px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  10% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px -8px rgba(51, 51, 51, 0), 0 -16px rgba(51, 51, 51, 0), 16px -16px rgba(51, 51, 51, 0), 32px -16px rgba(51, 51, 51, 0), 0 -32px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  15% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -24px rgba(51, 51, 51, 0), 16px -16px rgba(51, 51, 51, 0), 32px -16px rgba(51, 51, 51, 0), 0 -32px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  20% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -24px rgba(51, 51, 51, 0), 32px -16px rgba(51, 51, 51, 0), 0 -32px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  25% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -24px rgba(51, 51, 51, 0), 0 -32px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  30% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -50px rgba(51, 51, 51, 0), 16px -32px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  35% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -50px rgba(51, 51, 51, 0), 32px -32px rgba(242, 205, 123, 0);
  }
  40% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -50px rgba(242, 205, 123, 0);
  }
  45%, 55% {
    box-shadow: 16px 0 rgb(51, 51, 51), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  60% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 0 rgb(51, 51, 51), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  65% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -16px rgb(51, 51, 51), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  70% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -8px rgba(51, 51, 51, 0), 16px -16px rgb(51, 51, 51), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  75% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -8px rgba(51, 51, 51, 0), 16px -8px rgba(51, 51, 51, 0), 32px -16px rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  80% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -8px rgba(51, 51, 51, 0), 16px -8px rgba(51, 51, 51, 0), 32px -8px rgba(51, 51, 51, 0), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  85% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -8px rgba(51, 51, 51, 0), 16px -8px rgba(51, 51, 51, 0), 32px -8px rgba(51, 51, 51, 0), 0 -24px rgba(51, 51, 51, 0), 16px -32px rgb(51, 51, 51), 32px -32px rgb(0, 172, 151);
  }
  90% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -8px rgba(51, 51, 51, 0), 16px -8px rgba(51, 51, 51, 0), 32px -8px rgba(51, 51, 51, 0), 0 -24px rgba(51, 51, 51, 0), 16px -24px rgba(51, 51, 51, 0), 32px -32px rgb(0, 172, 151);
  }
  95%, 100% {
    box-shadow: 16px 8px rgba(51, 51, 51, 0), 32px 8px rgba(51, 51, 51, 0), 0 -8px rgba(51, 51, 51, 0), 16px -8px rgba(51, 51, 51, 0), 32px -8px rgba(51, 51, 51, 0), 0 -24px rgba(51, 51, 51, 0), 16px -24px rgba(51, 51, 51, 0), 32px -24px rgba(0, 172, 151, 0);
  }
}
.c-load--type2:before {
  box-shadow: 16px 0 0 rgb(51, 51, 51), 32px 0 0 rgb(51, 51, 51), 0 -16px 0 rgb(51, 51, 51), 16px -16px 0 rgb(51, 51, 51), 32px -16px 0 rgb(51, 51, 51), 0 -32px rgb(51, 51, 51), 16px -32px rgb(51, 51, 51), 32px -32px rgba(0, 172, 151, 0);
}

.c-load--type2:after {
  background-color: rgb(0, 172, 151);
}

.c-load--type1 {
  border: 3px solid rgba(51, 51, 51, 0.2);
  border-top-color: #333333;
}

#site_loader_animation.c-load--type3 i {
  background: #333333;
}

/* hover effect */
.p-hover-effect--type1:hover img {
  -webkit-transform: scale(1.2) rotate(2deg);
  transform: scale(1.2) rotate(2deg);
}

.p-hover-effect--type2 img {
  margin-left: 15px;
  -webkit-transform: scale(1.2) translate3d(-15px, 0, 0);
  transform: scale(1.2) translate3d(-15px, 0, 0);
}

.p-hover-effect--type2:hover img {
  opacity: 0.5;
}

.p-hover-effect--type3 {
  background: #ffffff;
}

.p-hover-effect--type3:hover img {
  opacity: 0.5;
}

/* Page header */
/* Header */
.l-header, .l-header--large.is-active {
  background: rgba(255, 255, 255, 0.9);
}

.l-header--large {
  background: rgba(255, 255, 255, 0.9);
}

.l-header--large .p-global-nav > li > a {
  color: #333333;
}

.l-header__logo a {
  color: #333333;
}

.p-global-nav > li > a, .l-header--large.is-active .p-global-nav > li > a {
  color: #333333;
}

/* Contents builder */
/* Footer bar */
/* Responsive */
@media only screen and (max-width: 1200px) {
  .l-header, .l-header--large.is-active {
    background: #ffffff;
  }
  .p-global-nav {
    background: rgba(51, 51, 51, 0.9);
  }
  .l-header__logo a {
    color: #333333;
  }
}
@media screen and (max-width:767px) {
  @-webkit-keyframes loading-square-loader {
    0% {
      box-shadow: 10px -5px rgba(51, 51, 51, 0), 20px 0 rgba(51, 51, 51, 0), 0 -10px rgba(51, 51, 51, 0), 10px -10px rgba(51, 51, 51, 0), 20px -10px rgba(51, 51, 51, 0), 0 -20px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    5% {
      box-shadow: 10px -5px rgba(51, 51, 51, 0), 20px 0 rgba(51, 51, 51, 0), 0 -10px rgba(51, 51, 51, 0), 10px -10px rgba(51, 51, 51, 0), 20px -10px rgba(51, 51, 51, 0), 0 -20px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    10% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px -5px rgba(51, 51, 51, 0), 0 -10px rgba(51, 51, 51, 0), 10px -10px rgba(51, 51, 51, 0), 20px -10px rgba(51, 51, 51, 0), 0 -20px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    15% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -15px rgba(51, 51, 51, 0), 10px -10px rgba(51, 51, 51, 0), 20px -10px rgba(51, 51, 51, 0), 0 -20px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    20% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -15px rgba(51, 51, 51, 0), 20px -10px rgba(51, 51, 51, 0), 0 -20px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    25% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -15px rgba(51, 51, 51, 0), 0 -20px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    30% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -50px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    35% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -50px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    40% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -50px rgba(242, 205, 123, 0);
    }
    45%, 55% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    60% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    65% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    70% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -5px rgba(51, 51, 51, 0), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    75% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -5px rgba(51, 51, 51, 0), 10px -5px rgba(51, 51, 51, 0), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    80% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -5px rgba(51, 51, 51, 0), 10px -5px rgba(51, 51, 51, 0), 20px -5px rgba(51, 51, 51, 0), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    85% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -5px rgba(51, 51, 51, 0), 10px -5px rgba(51, 51, 51, 0), 20px -5px rgba(51, 51, 51, 0), 0 -15px rgba(51, 51, 51, 0), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    90% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -5px rgba(51, 51, 51, 0), 10px -5px rgba(51, 51, 51, 0), 20px -5px rgba(51, 51, 51, 0), 0 -15px rgba(51, 51, 51, 0), 10px -15px rgba(51, 51, 51, 0), 20px -20px rgb(0, 172, 151);
    }
    95%, 100% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -5px rgba(51, 51, 51, 0), 10px -5px rgba(51, 51, 51, 0), 20px -5px rgba(51, 51, 51, 0), 0 -15px rgba(51, 51, 51, 0), 10px -15px rgba(51, 51, 51, 0), 20px -15px rgba(0, 172, 151, 0);
    }
  }
  @keyframes loading-square-loader {
    0% {
      box-shadow: 10px -5px rgba(51, 51, 51, 0), 20px 0 rgba(51, 51, 51, 0), 0 -10px rgba(51, 51, 51, 0), 10px -10px rgba(51, 51, 51, 0), 20px -10px rgba(51, 51, 51, 0), 0 -20px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    5% {
      box-shadow: 10px -5px rgba(51, 51, 51, 0), 20px 0 rgba(51, 51, 51, 0), 0 -10px rgba(51, 51, 51, 0), 10px -10px rgba(51, 51, 51, 0), 20px -10px rgba(51, 51, 51, 0), 0 -20px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    10% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px -5px rgba(51, 51, 51, 0), 0 -10px rgba(51, 51, 51, 0), 10px -10px rgba(51, 51, 51, 0), 20px -10px rgba(51, 51, 51, 0), 0 -20px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    15% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -15px rgba(51, 51, 51, 0), 10px -10px rgba(51, 51, 51, 0), 20px -10px rgba(51, 51, 51, 0), 0 -20px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    20% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -15px rgba(51, 51, 51, 0), 20px -10px rgba(51, 51, 51, 0), 0 -20px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    25% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -15px rgba(51, 51, 51, 0), 0 -20px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    30% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -50px rgba(51, 51, 51, 0), 10px -20px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    35% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -50px rgba(51, 51, 51, 0), 20px -20px rgba(242, 205, 123, 0);
    }
    40% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -50px rgba(242, 205, 123, 0);
    }
    45%, 55% {
      box-shadow: 10px 0 rgb(51, 51, 51), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    60% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 0 rgb(51, 51, 51), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    65% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -10px rgb(51, 51, 51), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    70% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -5px rgba(51, 51, 51, 0), 10px -10px rgb(51, 51, 51), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    75% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -5px rgba(51, 51, 51, 0), 10px -5px rgba(51, 51, 51, 0), 20px -10px rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    80% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -5px rgba(51, 51, 51, 0), 10px -5px rgba(51, 51, 51, 0), 20px -5px rgba(51, 51, 51, 0), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    85% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -5px rgba(51, 51, 51, 0), 10px -5px rgba(51, 51, 51, 0), 20px -5px rgba(51, 51, 51, 0), 0 -15px rgba(51, 51, 51, 0), 10px -20px rgb(51, 51, 51), 20px -20px rgb(0, 172, 151);
    }
    90% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -5px rgba(51, 51, 51, 0), 10px -5px rgba(51, 51, 51, 0), 20px -5px rgba(51, 51, 51, 0), 0 -15px rgba(51, 51, 51, 0), 10px -15px rgba(51, 51, 51, 0), 20px -20px rgb(0, 172, 151);
    }
    95%, 100% {
      box-shadow: 10px 5px rgba(51, 51, 51, 0), 20px 5px rgba(51, 51, 51, 0), 0 -5px rgba(51, 51, 51, 0), 10px -5px rgba(51, 51, 51, 0), 20px -5px rgba(51, 51, 51, 0), 0 -15px rgba(51, 51, 51, 0), 10px -15px rgba(51, 51, 51, 0), 20px -15px rgba(0, 172, 151, 0);
    }
  }
  .c-load--type2:before {
    box-shadow: 10px 0 0 rgb(51, 51, 51), 20px 0 0 rgb(51, 51, 51), 0 -10px 0 rgb(51, 51, 51), 10px -10px 0 rgb(51, 51, 51), 20px -10px 0 rgb(51, 51, 51), 0 -20px rgb(51, 51, 51), 10px -20px rgb(51, 51, 51), 20px -20px rgba(0, 172, 151, 0);
  }
}
/* Custom CSS */
/* --------------------------------------------------
Page Header
-------------------------------------------------- */
.p-single-header {
  position: relative;
  box-sizing: border-box;
  display: flex;
  background: #ca5b9d;
  color: #fff;
  margin: 0 0 60px;
  padding: 40px 0;
  min-height: 298px;
}
.p-single-header::after {
  display: block;
  content: "";
  position: absolute;
  width: 50px;
  height: 35px;
  top: 40px;
  right: 0;
  background: linear-gradient(90deg, rgba(255, 204, 0, 0) 0%, #ca5b9d 70%, #ca5b9d 100%);
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .p-single-header {
    min-height: 296px;
    margin: 0 0 80px;
  }
  .p-single-header:after {
    display: none !important;
  }
}

.p-single-header__inner {
  position: relative;
  max-width: 930px;
  z-index: 2;
  -webkit-animation: fadeIn 1s ease 1s;
          animation: fadeIn 1s ease 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
@media print, screen and (min-width: 768px) {
  .p-single-header__inner {
    gap: 10px;
  }
}

.p-single-header__title {
  position: relative;
  z-index: 5;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .p-single-header__title {
    text-align: center;
    line-height: 1.55;
    font-size: 36px;
    letter-spacing: 1px;
  }
}

.p-single-header__desc {
  position: relative;
  z-index: 5;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 166.667% */
  letter-spacing: 1.2px;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .p-single-header__desc {
    font-size: 12px;
    text-align: center;
  }
}

/* --------------------------------------------------
Breadcrumb
-------------------------------------------------- */
.c-breadcrumb {
  margin: 0;
  line-height: 1.7;
  font-size: 12px;
  text-align: left;
}
@media screen and (max-width:767px) {
  .c-breadcrumb {
    max-width: 100%;
    /*white-space: nowrap;
    overflow-x: scroll; */
    box-sizing: border-box;
  }
}

.c-breadcrumb__item {
  font-weight: 400;
  color: #fff;
  display: inline;
}
.c-breadcrumb__item:last-child {
  font-weight: 700;
}
.c-breadcrumb__item a {
  color: #fff;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "\e910";
  color: #fff;
  font-family: "design_plus";
  margin-left: 14px;
  margin-right: 14px;
}
@media print, screen and (min-width: 768px) {
  .c-breadcrumb__item {
    letter-spacing: 1.2px;
  }
  .c-breadcrumb__item a:hover {
    color: #fff;
    opacity: 0.5;
  }
}
@media screen and (max-width:767px) {
  .c-breadcrumb__item:last-child {
    margin: 0 25px 0 0;
  }
  .c-breadcrumb__item + .c-breadcrumb__item::before {
    margin-left: 8px;
    margin-right: 8px;
  }
}

/* --------------------------------------------------
p-single
-------------------------------------------------- */
.p-single {
  margin: 0 0 60px;
}
@media print, screen and (min-width: 768px) {
  .p-single {
    margin: 0 0 104px;
  }
}

.p-single__contents {
  padding: 0 24px;
}
@media print, screen and (min-width: 768px) {
  .p-single__contents {
    margin: 0 auto;
    padding: 0;
    width: calc(100% - 60px);
    max-width: 736px;
  }
}

.p-single-intro {
  margin-bottom: 60px;
  padding: 40px 24px;
  border-radius: 16px;
  line-height: 1.62;
  letter-spacing: 0.5px;
  background: rgba(229, 68, 159, 0.2);
}
@media print, screen and (min-width: 768px) {
  .p-single-intro {
    margin-bottom: 80px;
    padding: 40px 32px;
  }
}

.p-single-intro__title {
  font-weight: 700;
}

.p-single-intro__text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.85;
}
@media print, screen and (min-width: 768px) {
  .p-single-intro__text {
    line-height: 1.75;
    font-size: 16px;
  }
}

.p-single-headline--v1 {
  margin: 60px 0 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 1px;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .p-single-headline--v1 {
    margin: 80px 0 24px;
    font-size: 28px;
    line-height: 1.42;
    text-align: center;
  }
}

.p-single-headline--v2 {
  margin: 40px 0 24px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 1px;
}
@media print, screen and (min-width: 768px) {
  .p-single-headline--v2 {
    font-size: 24px;
  }
}

.p-single-paragraph {
  margin-top: 1em;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 1.5px;
}

.p-single-figure {
  margin: 24px 0;
  text-align: center;
}
.p-single-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
#services .head{
    opacity: 1;
    transition: opacity 0.7s ease 0s;
}
#services .head {
    margin: 0 0 40px;
    opacity: 0;
}
#services .head .p-base{
    text-align: center;
}
.service{
    display: flex;
    flex-direction: column;
    column-gap:30px;
    row-gap:30px;
}
.service br.pc{
    display: none;
}
@media print, screen and (min-width: 768px) {
    .service{
        justify-content: space-between;
        flex-direction: row;  
    }
    .service br.pc{
        display: inline;
    }
}
#services .service .detail{
    width: 100%;
}
#services .service .detail .logo{
    padding: 1em;
    border: solid 1px #ccc;
}
@media print, screen and (min-width: 768px) {
    #services .service .detail{
        width: 47%;
    }
}
body.site-front .contents_group#uw .inner .uws .single a .imagearea{
    margin-bottom: 30px;
}

#seminar .inner:first-child{
    margin-bottom: 60px;
}
@media print, screen and (min-width: 768px) {
    #seminar .inner:first-child{
        margin-bottom: 64px;
    }
}