/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

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

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.modal{display:none}.modal.is-open{display:block}.modal__container{background-color:#fff;padding:30px;max-width:500px;max-height:100vh;border-radius:4px;overflow-y:auto;box-sizing:border-box}.modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);display:flex;justify-content:center;align-items:center}.modal-close::before{content:"\2715"}.micromodal-slide[aria-hidden="false"] .modal-overlay{animation:mmfadeIn .3s cubic-bezier(0,0,.2,1)}.micromodal-slide[aria-hidden="false"] .modal-container{animation:mmslideIn .3s cubic-bezier(0,0,.2,1)}.micromodal-slide[aria-hidden="true"] .modal-overlay{animation:mmfadeOut .3s cubic-bezier(0,0,.2,1)}.micromodal-slide[aria-hidden="true"] .modal-container{animation:mmslideOut .3s cubic-bezier(0,0,.2,1)}.micromodal-slide .modal-container,.micromodal-slide .modal-overlay{will-change:transform}@-moz-keyframes mmfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes mmfadeIn{from{opacity:0}to{opacity:1}}@-o-keyframes mmfadeIn{from{opacity:0}to{opacity:1}}@keyframes mmfadeIn{from{opacity:0}to{opacity:1}}@-moz-keyframes mmfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes mmfadeOut{from{opacity:1}to{opacity:0}}@-o-keyframes mmfadeOut{from{opacity:1}to{opacity:0}}@keyframes mmfadeOut{from{opacity:1}to{opacity:0}}@-moz-keyframes mmslideIn{from{transform:translateY(15%)}to{transform:translateY(0)}}@-webkit-keyframes mmslideIn{from{transform:translateY(15%)}to{transform:translateY(0)}}@-o-keyframes mmslideIn{from{transform:translateY(15%)}to{transform:translateY(0)}}@keyframes mmslideIn{from{transform:translateY(15%)}to{transform:translateY(0)}}@-moz-keyframes mmslideOut{from{transform:translateY(0)}to{transform:translateY(-10%)}}@-webkit-keyframes mmslideOut{from{transform:translateY(0)}to{transform:translateY(-10%)}}@-o-keyframes mmslideOut{from{transform:translateY(0)}to{transform:translateY(-10%)}}@keyframes mmslideOut{from{transform:translateY(0)}to{transform:translateY(-10%)}}
/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
*{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-weight:normal;line-height:1em}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}strong,em{font-weight:normal}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none;vertical-align:bottom}ol,ul{list-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.font-normal{font-weight:normal !important}.font-bold{font-weight:bold}.ind05em{margin-left:.5em;text-indent:-.5em}.ind08em{margin-left:.8em;text-indent:-.8em}.ind1em{margin-left:1em;text-indent:-1em}.txt-note{font-size:85%;line-height:1.2rem;color:#777}.column{overflow:hidden}.column .col-left{float:left}@media screen and (max-width:786px){.column .col-left{float:none}}.column .col-right{float:right}@media screen and (max-width:786px){.column .col-right{float:none}}.width{margin:0 auto}.width.w1200{width:1200px}@media screen and (max-width:786px){.width.w1200{width:100%}}.width.w1100{width:1100px}@media screen and (max-width:786px){.width.w1100{width:100%}}.width.w960{width:960px}@media screen and (max-width:786px){.width.w960{width:100%}}.width.w860{width:860px}@media screen and (max-width:786px){.width.w860{width:100%}}.width.w640{width:640px}@media screen and (max-width:786px){.width.w640{width:100%}}.width.w90p{width:90%}@media screen and (max-width:786px){.width.w90p{width:100%}}.width.w80p{width:80%}@media screen and (max-width:786px){.width.w80p{width:100%}}.box-white{border-radius:5px;padding:40px;background:#fff}.dis-blk{display:block !important}.dis-ibk{display:inline-block}.dis-iln{display:inline}.dis-flex{display:flex}.align-left{text-align:left}.align-center{text-align:center}.align-right{text-align:right}.vertical-top{vertical-align:top}.vertical-middle{vertical-align:middle}.vertical-bottom{vertical-align:bottom}.mt05{margin-top:5px}.mt10{margin-top:10px}.mt20{margin-top:20px}.mt30{margin-top:30px}.mt40{margin-top:40px}.mt50{margin-top:50px}.mt60{margin-top:60px}.mt70{margin-top:70px}.mt80{margin-top:80px}.mr05{margin-right:5px}.mr10{margin-right:10px}.mr20{margin-right:20px}.mr30{margin-right:30px}.mr40{margin-right:40px}.mr50{margin-right:50px}.mr60{margin-right:60px}.mr70{margin-right:70px}.mr80{margin-right:80px}.mb05{margin-bottom:5px}.mb10{margin-bottom:10px}.mb20{margin-bottom:20px}.mb30{margin-bottom:30px}.mb40{margin-bottom:40px}.mb50{margin-bottom:50px}.mb60{margin-bottom:60px}.mb70{margin-bottom:70px}.mb80{margin-bottom:80px}.ml05{margin-left:5px}.ml10{margin-left:10px}.ml20{margin-left:20px}.ml30{margin-left:30px}.ml40{margin-left:40px}.ml50{margin-left:50px}.ml60{margin-left:60px}.ml70{margin-left:70px}.ml80{margin-left:80px}.hide{display:none}.show{display:block !important}@media screen and (max-width:786px){.pc{display:none}}.sp{display:none}@media screen and (max-width:786px){.sp{display:block}}.color-notice-red{color:#cc2b2b}.toggle-switch .toggle-input{z-index:5;opacity:0}.toggle-switch .toggle-label{width:40px;height:22px;background:#ccc;position:relative;display:inline-block;border-radius:46px;transition:.4s;box-sizing:border-box;cursor:pointer}.toggle-switch .toggle-label::after{content:"";position:absolute;width:22px;height:22px;border-radius:100%;left:0;top:0;z-index:2;background:#fff;box-shadow:0 0 5px rgba(0,0,0,0.2);transition:.4s}.toggle-switch .toggle-input:checked + .toggle-label{background-color:#4bd865}.toggle-switch .toggle-input:checked + .toggle-label:after{left:20px}*,*::before,*::after{box-sizing:border-box}html{height:100%}body{font-size:1em;line-height:1em;height:100%;word-break:break-all;font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic",Meiryo,sans-serif}a{color:#4c9ec6;text-decoration:none}a:hover{text-decoration:underline}.font-gothic{font-family:"游明朝",YuMincho,"Hiragino Mincho ProN W3","ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif}#container{height:100%;line-height:1.6rem}#main-contents{line-height:1.6rem}#main-contents .title-sub{font-size:115%;font-weight:bold}#main-contents .title-sub.center{text-align:center}.content-inner{padding:60px 0}@media screen and (max-width:786px){.content-inner{padding:40px 15px 80px}}.page-title{margin-bottom:60px}@media screen and (max-width:786px){.page-title{margin-bottom:40px}}.page-title .title{font-size:160%}#service-logo img{width:180px}.page-maintenance #service-logo{text-align:center}.page-maintenance #service-logo .logo{display:inline-block}.page-error .error-wrapper{display:table;margin:120px auto;height:100%}.page-error .error-wrapper > .inner{display:table-cell}.page-error .error-wrapper .description{text-align:center;font-weight:bold;color:#777}@media screen and (max-width:786px){.page-error .error-wrapper .description{font-weight:normal;line-height:2em}}.page-error .error-wrapper .page-title.error-code{text-align:center;color:#777;font-family:"Helvetica Neue",Arial,Meiryo,sans-serif}.page-error .error-wrapper .page-title.error-code .code{display:block;font-size:500%;font-weight:bold;line-height:8rem}.page-error .error-wrapper .page-title.error-code .text{display:block;font-size:130%;font-weight:bold}@media screen and (max-width:786px){.page-error .error-wrapper .page-title.error-code .text{font-size:120%;line-height:1.2em}}.txt-note{font-size:85%;line-height:1.6em;color:#777}.ind{text-indent:-1em;margin-left:1em}.ind-small{text-indent:-.6em;margin-left:.6em}.js-drop-uploader{width:100%}.js-drop-uploader label.drop-wrapper{display:inline-block;position:relative;padding:50px;border:1px dashed #999;background-color:#f0f0f0;cursor:pointer;color:#999;z-index:10}.js-drop-uploader input{display:none}.js-drop-uploader .preview{position:relative;min-width:260px;max-width:300px;margin:0 auto}.js-drop-uploader .preview img{width:100%}.js-drop-uploader .preview .remove{display:none;position:absolute;top:-15px;right:-15px;width:30px;height:30px;border:solid 2px #fff;border-radius:50%;background-color:#ca2110;z-index:100;text-align:center;line-height:1.4rem;cursor:pointer;transform:scale(1.2);color:#fff}.js-drop-uploader .preview .remove.active{display:table}.js-drop-uploader .preview .remove .mark{display:table-cell;vertical-align:middle}.modal{display:none}.modal.is-open{display:block}#wait-loading-container{position:fixed;top:0;right:0;bottom:0;left:0;width:100%;height:100%;background-color:rgba(255,255,255,0.7);z-index:9999}#wait-loading-container #wait-loading{width:100%;height:100%}#wait-loading-container #wait-loading > .inner{display:table;width:100%;height:100%}#wait-loading-container #wait-loading .load{display:table-cell;width:100%;height:100%;background:filecacheurl('/users/common/img/icon-loading-wait.gif') no-repeat center}.box-no-image{position:relative;display:table;width:100%;min-height:300px;background-color:#ddd;color:#999}.box-no-image::before{content:"no image";display:table-cell;text-align:center;vertical-align:middle}.init-form input,.init-form button,.init-form select,.init-form textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;border-radius:0;font-size:100%;outline:none}.init-form textarea{resize:vertical}.init-form input[type='checkbox'],.init-form input[type='radio']{display:none}.init-form input[type='submit'],.init-form input[type='button'],.init-form button,.init-form select{cursor:pointer}.init-form select::-ms-expand{display:none}.message-flash{padding:10px 15px;border-radius:6px}.message-flash.success{background-color:#fff0f0;color:#a21e1e}.message-flash.error{background-color:#fff0f0;color:#a21e1e}.message-error{color:#cc2b2b}* + .message-error{margin-top:5px}.form-style-single input[type='text'],.form-style-single input[type='email'],.form-style-single input[type='password'],.form-style-single textarea{padding:7px;border:solid 1px #ccc;border-radius:5px;line-height:1.4rem;background-color:#fff}@media screen and (max-width:786px){.form-style-single input[type='text'],.form-style-single input[type='email'],.form-style-single input[type='password'],.form-style-single textarea{width:100%;padding:12px}}.form-style-single textarea{width:100%;min-width:360px;min-height:180px}@media screen and (max-width:786px){.form-style-single textarea{min-width:0;min-height:260px}}.form-style-single input[disabled=''],.form-style-single textarea[disabled=''],.form-style-single .selectbox select[disabled='']{background-color:#f7f7f7;color:#999;cursor:not-allowed}.form-style-single .button-submit{display:inline-block;padding:10px 30px;border-radius:25px;background-color:#21a0cd;line-height:1.4rem;color:#fff;transition:.3s}.form-style-single .button-submit.low{background-color:#777}.form-style-single .button-submit:hover{text-decoration:none;opacity:.6}@media screen and (max-width:786px){.form-style-single .button-submit{padding:15px 20px}}.form-style-single .form-label{display:block;margin-bottom:5px}.form-style-single .form-item.error{border-color:#df8c8c;background-color:#fff0f0}.form-style-single .box-submit{margin-top:40px}.form-style-single .submit-item + .submit-item{margin-top:30px}.form-style-single .input-middle{width:80%}.form-style-single .input-full{width:100%}.form-style-single .js-drop-uploader .drop-wrapper{width:100%;text-align:center}@media screen and (max-width:786px){.form-style-single .js-drop-uploader .drop-wrapper{padding:120px 50px}}.form-style-single .select-birthday .select-birthday-item{display:inline-block;margin-right:10px}.form-style-single .selectbox{display:inline-flex;align-items:center;position:relative}.form-style-single .selectbox::after{position:absolute;right:15px;width:10px;height:7px;background-color:#535353;clip-path:polygon(0 0,100% 0,50% 100%);content:'';pointer-events:none}.form-style-single .selectbox select{appearance:none;min-width:80px;height:2.8em;padding:.4em calc(0.8em + 30px) .4em .8em;border:1px solid #ccc;border-radius:3px;background-color:#fff;color:#333;font-size:1em;cursor:pointer}.form-style-single .checkbox label{display:table;overflow:hidden;cursor:pointer}.form-style-single .checkbox label input[type="checkbox"]{display:table-cell;position:relative;content:'';width:26px;height:26px;border-radius:5px;border:2px solid #d6dde3;cursor:pointer;background-color:#fff}.form-style-single .checkbox label input[type="checkbox"]:checked::after{content:'';position:absolute;top:50%;right:0;left:0;transform:translateY(-50%);width:16px;height:16px;border-radius:5px;margin:0 auto;background-color:#2589d0}.form-style-single .checkbox label input[type="checkbox"].error{border-color:#df8c8c;background-color:#fff0f0}.form-style-single .checkbox label .text{display:table-cell;vertical-align:middle;padding-left:.5rem}.form-style-single .radio label{display:table;overflow:hidden;cursor:pointer}.form-style-single .radio label input[type="radio"]{display:table-cell;position:relative;content:'';width:26px;height:26px;border-radius:50%;border:2px solid #d6dde3;cursor:pointer;background-color:#fff}.form-style-single .radio label input[type="radio"]:checked::after{content:'';position:absolute;top:50%;right:0;left:0;transform:translateY(-50%);width:16px;height:16px;border-radius:50%;margin:0 auto;background-color:#2589d0}.form-style-single .radio label .text{display:table-cell;vertical-align:middle;padding-left:.5rem}.form-style-single .radio label input[type="radio"]:disabled::after{background-color:#999}.form-style-single .radio label input[type="radio"]:disabled + .text{color:#777}.form-style-single .button{display:inline-block;padding:12px 12px;border-radius:3px;font-size:95%;line-height:1.4rem;background-color:#000;color:#fff;text-decoration:none}.form-style-single .button.middle{min-width:200px;padding:16px 20px}@media screen and (max-width:786px){.form-style-single .button.middle{min-width:260px}}.form-style-single .button.short{min-width:160px}@media screen and (max-width:786px){.form-style-single .button.short{min-width:200px}}.form-style-single .button.large{min-width:240px}body{font-size:90%;background-color:transparent;color:#555}.clr-spa-pink{color:#d7547f}.clr-deep-blue{color:#0997b7}.clr-bg-spa-blue{background-color:#c6e8f9}.rocknroll-one-regular{font-family:"RocknRoll One",sans-serif;font-weight:400;font-style:normal;line-height:1.4rem}.button-ad-game{display:inline-block;align-items:center;justify-content:center;line-height:1;text-decoration:none;color:#fff;font-size:18px;border-radius:25px;width:200px;padding:10px;font-weight:bold;transition:.3s;text-align:center;background:linear-gradient(360deg,#6fc1d9 15%,#f3598b)}.button-ad-game:hover{text-decoration:none;opacity:.6}.js-to-disabled-button.disabled{pointer-events:none;background-color:#999;color:#eee}.toast-message{position:fixed;top:20px;right:0;left:0;width:480px;max-width:640px;padding:10px;margin:0 auto;border-radius:5px;line-height:1.8rem;z-index:9990}.toast-message.success{border:solid 1px #95bd6a;background-color:#daedd3;color:#558a1c}.toast-message.error{border:solid 1px #ec8d8d;background-color:#ffe2e3;color:#c13737}.deco-steam-wrapper{position:relative;overflow:hidden;z-index:1}.deco-steam-wrapper .deco-steam{position:absolute;width:110px;height:150px;background:url("/assets/common/img/top-object-steam.png") no-repeat;background-size:cover}.deco-steam-wrapper .deco-steam.top-right{top:-40px;left:-20px;transform:scaleX(-1)}.deco-steam-wrapper .deco-steam.top-left{top:-40px;right:-20px}.deco-steam-wrapper .deco-steam.bottom-right{right:-20px;bottom:-40px;transform:scaleY(-1)}.deco-steam-wrapper .deco-steam.bottom-left{bottom:-40px;left:-20px;transform:scaleX(-1) scaleY(-1)}.deco-vertical-line-wrapper{position:relative;overflow:hidden;z-index:1}.deco-vertical-line-wrapper > .deco-vertical-line{position:absolute;top:0;bottom:0;background:#c6e8f9}.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(1){left:20%;width:24px}@media screen and (max-width:786px){.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(1){left:10%}}.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(2){left:22%;width:8px}@media screen and (max-width:786px){.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(2){left:17%}}.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(3){right:42%;width:8px}@media screen and (max-width:786px){.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(3){display:none}}.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(4){right:39%;width:24px}@media screen and (max-width:786px){.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(4){display:none}}.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(5){right:32%;width:24px}@media screen and (max-width:786px){.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(5){right:22%}}@media screen and (max-width:786px) and (max-width:786px){.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(5){display:none}}.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(6){right:30%;width:8px}@media screen and (max-width:786px){.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(6){right:24%}}.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(7){right:27%;width:24px}@media screen and (max-width:786px){.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(7){right:17%}}.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(8){right:20%;width:8px}@media screen and (max-width:786px){.deco-vertical-line-wrapper > .deco-vertical-line:nth-of-type(8){display:none}}.deco-bubble-wrapper{position:relative;overflow:hidden;z-index:1}.deco-bubble-wrapper .deco-bubble-group{position:absolute;bottom:0;left:20%}.deco-bubble-wrapper .deco-bubble-group .deco-bubble-inner{position:relative;width:100px;height:200px}.deco-bubble-wrapper .deco-bubble-group .deco-bubble-inner .deco-bubble{position:absolute;border-radius:50%;background-color:#fff}.deco-bubble-wrapper .deco-bubble-group .deco-bubble-inner .deco-bubble:nth-of-type(1){top:0;left:10%;width:40px;height:40px}.deco-bubble-wrapper .deco-bubble-group .deco-bubble-inner .deco-bubble:nth-of-type(2){top:80px;left:50%;width:25px;height:25px}@media screen and (max-width:786px){.deco-bubble-wrapper .deco-bubble-group .deco-bubble-inner .deco-bubble:nth-of-type(2){left:30%}}.deco-bubble-wrapper .deco-bubble-group .deco-bubble-inner .deco-bubble:nth-of-type(3){top:130px;left:10%;width:15px;height:15px}.deco-bubble-wrapper .deco-bubble-group.reverse{right:20%;transform:scaleX(-1)}.deco-bubble-wrapper .deco-bubble-group.center{left:40%;transform:scaleX(-1)}.deco-bubble-wrapper .deco-bubble-group.center .deco-bubble-inner{position:relative;width:200px}.deco-bubble-wrapper .deco-bubble-group.center .deco-bubble-inner .deco-bubble:nth-of-type(1){top:80px;left:0%;width:25px;height:25px}.deco-bubble-wrapper .deco-bubble-group.center .deco-bubble-inner .deco-bubble:nth-of-type(2){top:130px;left:60%;width:15px;height:15px}.deco-rect-wrapper{position:relative;overflow:hidden;z-index:1}.deco-rect-wrapper .deco-rect-group{display:flex;position:absolute}.deco-rect-wrapper .deco-rect-group.right{top:10%;right:5%;align-items:flex-start}.deco-rect-wrapper .deco-rect-group.left{bottom:10%;left:5%;align-items:flex-end}.deco-rect-wrapper .deco-rect-group .deco-rect{border-radius:10px;background-color:#f1fafd;width:84px;height:84px;margin:5px}@media screen and (max-width:786px){.deco-rect-wrapper .deco-rect-group .deco-rect{width:42px;height:42px;border-radius:5px}}.deco-rect-wrapper .deco-rect-group .deco-pink{background-color:#ffe3ec}.deco-rect-wrapper .deco-rect-group .deco-hide{visibility:hidden}.deco-rect-wrapper .deco-rect-group .deco-yellow{background-color:#fef6e0}.page-container{padding:80px 0 120px}@media screen and (max-width:786px){.page-container{padding:80px 15px 120px}}.page-title{margin-bottom:80px;text-align:center}.page-title .ja{font-size:125%;line-height:1.8rem}@media screen and (max-width:786px){.page-title .ja{width:105%}}.page-title .en{display:block;margin:5px auto 0;font-size:90%}@media screen and (max-width:786px){.page-title .en{width:85%}}#header{position:relative;z-index:9000;background-color:rgba(255,255,255,0.8)}@media screen and (max-width:786px){#header{padding:10px}}#header > .inner{padding:10px 15px}@media screen and (max-width:786px){#header > .inner > .col-right{display:none}}#header #site-logo{width:160px}@media screen and (max-width:786px){#header #site-logo{width:30%}}#header #site-logo img{width:100%}@media screen and (max-width:786px){#header #site-logo{margin-top:0}}#header #site-logo a{display:block}@media screen and (max-width:786px){#header #site-logo a{display:inline-block}}#header.is-fixed{position:fixed;top:0;left:0;width:100%;z-index:9990}#header #global-navigation{display:flex;align-items:center;height:100%}@media screen and (max-width:786px){#header #global-navigation{display:none}}#header #global-navigation > ul{margin-top:1.2rem;overflow:hidden;text-align:center;line-height:1.3rem}#header #global-navigation > ul > li{float:left;margin:0 15px}#header #global-navigation > ul > li a{transition:.3s;font-weight:bold;color:#7b7472}#header #global-navigation > ul > li a:hover{text-decoration:none;color:#519ec6}#header #global-navigation > ul > li .en{display:block;font-size:85%}#header #global-navi-button{display:none;position:fixed;top:3%;right:3%;padding:10px;border-radius:5px;z-index:9999;cursor:pointer;background-color:#fff}@media screen and (max-width:786px){#header #global-navi-button{display:block}}#header #global-navi-button > .inner{position:relative;width:28px;height:28px}#header #global-navi-button .rectLine{overflow:hidden;position:absolute;width:30px;height:4px;margin-bottom:7px;background-color:#000;transition:all .3s}#header #global-navi-button .rectLine:nth-child(1){top:2px}#header #global-navi-button .rectLine:nth-child(2){top:12px}#header #global-navi-button .rectLine:nth-child(3){top:22px}#header #global-navi-button.active .rectLine:nth-child(1){top:9px;transform:rotate(315deg)}#header #global-navi-button.active .rectLine:nth-child(2){opacity:0}#header #global-navi-button.active .rectLine:nth-child(3){top:9px;transform:rotate(-315deg)}#header #global-clone-navigation{display:none;position:fixed;top:0;right:0;bottom:0;left:0;font-size:.9em;z-index:9990;background-color:rgba(0,0,0,0.4)}#header #global-clone-navigation .menuTitle{margin-bottom:30px;text-align:center;font-size:90%}#header #global-clone-navigation .menuTitle .en{display:block;margin-bottom:10px;font-size:240%}#header #global-clone-navigation > .inner{padding:40px 20px 20px;margin:7%;background-color:#fff;border-radius:10px}#header #global-clone-navigation .active{right:0}#header #global-clone-navigation a{display:block;color:#333}#header #global-clone-navigation a:hover{text-decoration:none}#header #sp-global-navigation{text-align:center}#header #sp-global-navigation > ul > li{width:100%;font-size:115%;border-radius:100px;box-shadow:1px 1px 1px 2px #ddd}@media screen and (max-width:786px){#header #sp-global-navigation > ul > li{display:table}}#header #sp-global-navigation > ul > li + li{margin-top:30px}#header #sp-global-navigation > ul a{padding:23px 25px 20px;border-radius:100px;font-weight:bold}@media screen and (max-width:786px){#header #sp-global-navigation > ul a{display:table-cell;vertical-align:middle}}#header #sp-global-navigation > ul .en{padding-left:.5rem;font-weight:normal}#header #sp-global-navigation > ul .en::before{display:inline;content:"-";padding:0 .3rem}#header #sp-global-navigation > ul .en::after{display:inline;content:"-";padding:0 .3rem}#header #clone-game-start{margin-top:30px;margin-bottom:30px}#header #clone-game-start margi,#header #clone-game-start a{display:block;width:100%;padding:20px;color:#fff}#footer{position:sticky;top:100vh;padding-top:100px;padding-bottom:40px;border-top:solid 1px #eee}@media screen and (max-width:786px){#footer{text-align:center}}#footer a{color:#555}#footer > .inner{padding-top:60px;padding-bottom:180px}@media screen and (max-width:786px){#footer > .inner{padding-top:60px;padding-bottom:120px}}#footer .footer-nav ul{overflow:hidden}@media screen and (max-width:786px){#footer .footer-nav ul{display:inline;text-align:center}}#footer .footer-nav ul > li{float:left}@media screen and (max-width:786px){#footer .footer-nav ul > li{width:50%;margin-bottom:30px}}#footer .footer-nav ul > li + li{margin-left:25px}@media screen and (max-width:786px){#footer .footer-nav ul > li + li{margin-left:auto}}#footer .copyright{font-size:75%}@media screen and (max-width:786px){#footer .copyright{margin-top:80px}}.top-section{padding:120px 0}@media screen and (max-width:786px){.top-section{padding:80px 0}}.top-section-title{margin-bottom:80px;text-align:center}.top-section-title .ja{font-size:165%;line-height:2.6rem}@media screen and (max-width:786px){.top-section-title .ja{font-size:135%;line-height:2.2rem}}.top-section-title .en{display:block;margin-top:5px;font-size:95%}@media screen and (max-width:786px){.top-section-title .en{font-size:90%}}#emergency{text-align:center;background-color:#df7c55;color:#fff}#emergency > .inner{padding:15px}#emergency dl dt{display:inline-block}#emergency dl dd{display:inline-block;margin-left:.5rem}#emergency a{text-decoration:underline;color:#fff}#main-visual{position:relative;width:100%;height:720px;background:url("/assets/common/img/top-main-visual-001.jpg") no-repeat;background-size:cover;background-position:center}@media screen and (max-width:786px){#main-visual{height:100vh;max-height:600px}}#main-visual > .inner{display:flex;align-items:center;justify-content:space-around;width:100%;height:100%}@media screen and (max-width:786px){#main-visual > .inner{display:block}}#main-visual .game-title-logo{position:absolute;top:50%;left:5%;width:35%;max-width:480px;transform:translateY(-50%)}@media screen and (max-width:786px){#main-visual .game-title-logo{top:40%;width:65%;max-width:320px;left:auto;max-width:auto}}#main-visual .game-title-logo img{width:100%}#main-visual .catchcopy{position:absolute;top:50%;right:15%;transform:translateY(-50%);font-size:180%;text-shadow:2px 2px 10px #06748d;color:#fff}@media screen and (max-width:786px){#main-visual .catchcopy{top:63%;right:auto;left:5%;width:90%;font-size:160%;line-height:3.2rem}}@media screen and (max-width:786px){#story .top-section-title{position:relative;z-index:100}}#story .story-box{text-align:center}@media screen and (max-width:786px){#story .story-box{margin:120px auto}}#story .story-box .story-box-txt{font-size:125%;line-height:3.2rem}@media screen and (max-width:786px){#story .story-box .story-box-txt{position:relative;font-size:100%;line-height:3.6rem;z-index:100}}#character{padding-bottom:160px}#character-list-container{max-width:860px;padding:60px;margin:0 auto;background:linear-gradient(to top,rgba(255,255,255,0),#fff);border-radius:10px}@media screen and (max-width:786px){#character-list-container{width:90%;max-width:auto;padding:40px 20px}}#character-list-container dl{width:100%;display:flex;flex-direction:row-reverse;justify-content:space-around;align-items:center}#character-list-container dl dt{width:30%}@media screen and (max-width:786px){#character-list-container dl dt{width:34%}}#character-list-container dl dd{width:40%;color:#758c91}@media screen and (max-width:786px){#character-list-container dl dd{width:66%}}#character-list-container dl dd .character-name{font-size:200%;margin-bottom:10px}@media screen and (max-width:515px){#character-list-container dl dd .character-name{font-size:160%;margin-bottom:5px}}#character-list-container dl dd .character-name-ruby{font-size:110%}@media screen and (max-width:515px){#character-list-container dl dd .character-name-ruby{font-size:80%}}#character-list-container dl dd .character-detail{margin-top:30px;line-height:2.4rem}@media screen and (max-width:515px){#character-list-container dl dd .character-detail{font-size:80%}}#character-list-container .character-image{max-width:180px}#character-list-container .character-image img{width:100%}#character-list-container #character-list-thumbnail{width:50%;padding-bottom:20px;border-bottom:solid 1px #c7d6d9;margin-bottom:20px}@media screen and (max-width:786px){#character-list-container #character-list-thumbnail{width:100%;padding-bottom:35px;margin-bottom:35px}}#character-list-container #character-list-thumbnail .character-thumbnail img{width:100%}#product{position:relative}#product .top-section-title{position:relative;z-index:100}#product::after{content:"";position:absolute;right:0;bottom:0;left:0;width:100%;height:300px;background:linear-gradient(to top,#fff 0%,rgba(255,255,255,0) 100%)}#product .product-list-title{font-size:115%}#product .product-detail{position:relative;padding:10px;z-index:10}@media screen and (max-width:786px){#product .product-detail{padding-right:5%;padding-left:5%}}#product .product-detail .col-left{width:52%}@media screen and (max-width:786px){#product .product-detail .col-left{width:100%}}#product .product-detail .col-right{width:44%}@media screen and (max-width:786px){#product .product-detail .col-right{width:100%;margin-top:40px}}#product .product-list-box{padding:30px;border-radius:10px;background-color:rgba(255,255,255,0.8);box-shadow:1px 1px 6px 1px #d8f4f9}#product .product-list li{padding-top:30px;border-top:solid 1px #ddd;margin-top:30px}#product .product-list dl{display:flex;align-items:center}#product .product-list dl dt{width:30%}#product .product-list dl dd{width:70%}#product .product-detail .col-right .product-list dt{width:40%}#product .product-detail .col-right .product-list dd{width:58%}#topics .topics-list > li{padding:0 20px 25px;border-bottom:solid 1px #ddd;margin-bottom:25px}#topics .topics-list dl{display:flex;align-items:center}@media screen and (max-width:786px){#topics .topics-list dl{display:block;font-size:90%}}#topics .topics-list dl dt{margin-right:25px}@media screen and (max-width:786px){#topics .topics-list dl dt{float:left;margin-top:1px}}#topics .topics-list dl dd{display:flex;align-items:center}@media screen and (max-width:786px){#topics .topics-list dl dd{display:block}}#topics .topics-list dl dd .label{display:block;min-width:90px;float:left;padding:4px 0;border-radius:5px;margin-right:25px;text-align:center;font-size:85%;line-height:1.2rem;background-color:#777;color:#fff}@media screen and (max-width:786px){#topics .topics-list dl dd .label{display:inline-block;float:none;min-width:120px;margin-bottom:15px}}#topics .topics-list dl dd .label.manage{background-color:color-manage-dark}#topics .topics-list dl dd .label.app{background-color:color-app-dark}#topics .topics-list dl dd .text{display:block;line-height:1.4rem}@-moz-keyframes crossRightAnimate{0%{left:-400px}100%{left:400px}}@-webkit-keyframes crossRightAnimate{0%{left:-400px}100%{left:400px}}@-o-keyframes crossRightAnimate{0%{left:-400px}100%{left:400px}}@keyframes crossRightAnimate{0%{left:-400px}100%{left:400px}}.auth-title{margin-bottom:40px}.auth-form-list > li{margin-bottom:30px}.auth-form-list dl{margin:0 auto}.page-forget input[type="email"]{width:100%}.page-forget .box-email-form{margin:40px auto}@media screen and (max-width:786px){.auth-panel{margin-top:60px}}.auth-panel .align-left{text-align:left}.auth-text{text-align:left;font-size:90%;line-height:1.8rem}.auth-notice{font-size:80%;line-height:1.2rem;color:#999}.form-label{width:100%;text-align:left;margin:0 auto}.forget-password-text{margin-top:10px}@media screen and (max-width:786px){.forget-password-text{margin-top:20px}}.page-outline .section-outline + .section-outline{margin-top:60px}.page-outline .section-outline-title{padding-bottom:5px;border-bottom:solid 1px #ddd;margin-bottom:10px;font-size:115%;font-weight:bold}.page-outline .box-text{line-height:1.8rem}.page-outline .list-outline-order{padding-left:1em;list-style-type:decimal}.page-outline .list-outline-order.order-child{padding-left:2em;list-style-type:lower-latin}
