@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,700&subset=japanese");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

select {
  color: inherit;
}

textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  height: 100px;
  padding: 0.4em 0.8em;
  width: 100%;
  resize: none;
}

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

select {
  color: inherit;
}

textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  height: 100px;
  padding: 0.4em 0.8em;
  width: 100%;
  resize: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
}
body.pined {
  overflow: hidden;
  height: 100%;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html.pinned {
  overflow: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

[v-cloak] {
  display: none;
}

h1 {
  font-size: 3em;
  font-weight: bold;
}

h2 {
  font-size: 2em;
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 1.5em;
  }
}

ul {
  padding: 0;
}

p {
  font-size: 0.9em;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 480px) {
  p {
    font-size: 0.8em;
  }
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.link-underline {
  text-decoration: underline;
}

i {
  font-style: normal;
}

.section-wrap {
  padding: 100px 0;
}

.note {
  font-size: 0.8em;
  margin-top: 1em;
}
.note:before {
  content: "※ ";
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-arround {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.m1 {
  margin: 1em 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt1 {
  margin-top: 1em !important;
}

.mt2 {
  margin-top: 2em !important;
}

.mt3 {
  margin-top: 3em !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb1 {
  margin-bottom: 1em !important;
}

.mb2 {
  margin-bottom: 2em !important;
}

.mb3 {
  margin-bottom: 3em !important;
}

.p0 {
  padding: 0 !important;
}

.p3 {
  padding: 3em 0 !important;
}

.pt3 {
  padding-top: 3em !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb3 {
  padding-bottom: 3em !important;
}

.text-underline {
  text-decoration: underline;
}

.text-bold {
  font-weight: bold;
}

.wrap-60 {
  width: 60% !important;
  margin: auto !important;
}
@media screen and (max-width: 801px) {
  .wrap-60 {
    width: 90% !important;
  }
}

.wrap-85 {
  width: 85% !important;
  margin: auto !important;
}
@media screen and (max-width: 480px) {
  .wrap-85 {
    width: 90% !important;
  }
}

.wrap-90 {
  width: 90% !important;
  margin: auto !important;
}

.wrap-100 {
  width: 100% !important;
}

.button {
  position: relative;
}
.button a {
  padding: 1em 3em;
  background-color: #FCC202;
  color: #222;
  -webkit-text-decoration: nonsae;
  text-decoration: nonsae;
}
.button a:hover {
  background-color: #b08801;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.title-icon {
  color: #fff;
  text-align: left;
  width: 90%;
  margin: auto;
  padding-bottom: 50px;
}
.title-icon i {
  color: #d85259;
  margin-right: 10px;
}

.button-wrap {
  display: block;
  text-align: center;
  margin: 50px 0 0;
}
.button-wrap .button {
  letter-spacing: 2px;
  text-align: center;
  padding: 12px 6em;
  background-color: #FCC202;
  color: #222;
  border: 1px solid #FCC202;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 6px;
  display: inline-block;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .button-wrap .button {
    padding: 12px 3em;
  }
}
@media screen and (max-width: 480px) {
  .button-wrap .button.longTextButton {
    padding: 12px 1em;
  }
}
.button-wrap .button:active, .button-wrap .button:hover {
  text-decoration: none;
  background-color: #b08801;
  border-color: #b08801;
}
.button-wrap .button span {
  display: inline-block;
  position: relative;
  padding-right: 0;
  -webkit-transition: padding-right 0.5s;
  -o-transition: padding-right 0.5s;
  transition: padding-right 0.5s;
}
.button-wrap .button span:after {
  content: " ";
  position: absolute;
  top: 9px;
  right: -18px;
  opacity: 0;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #222;
  border-top: none;
  border-left: none;
  -webkit-transition: opacity 0.5s, top 0.5s, right 0.5s;
  -o-transition: opacity 0.5s, top 0.5s, right 0.5s;
  transition: opacity 0.5s, top 0.5s, right 0.5s;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.button-wrap .button:active span, .button-wrap .button:hover span {
  padding-right: 30px;
}
.button-wrap .white-button {
  letter-spacing: 2px;
  text-align: center;
  padding: 12px 6em;
  background-color: #fff;
  color: #222;
  border-color: #FCC202;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 6px;
}
.button-wrap .button:active span:after,
.button-wrap .button:hover span:after {
  -webkit-transition: opacity 0.5s, left 0.5s;
  -o-transition: opacity 0.5s, left 0.5s;
  transition: opacity 0.5s, left 0.5s;
  opacity: 1;
  border-color: #222;
  right: 0;
  top: 50%;
}

.sd-search-open {
  display: none;
}
@media screen and (max-width: 480px) {
  .sd-search-open {
    display: block;
    margin-right: 15%;
  }
  .sd-search-open i {
    color: #fff;
    font-size: 1.7em;
  }
}

.search-wrap {
  width: 25.8%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  .search-wrap {
    display: none;
    width: 100%;
    z-index: 10000;
    background-color: #FCC202;
    height: 100%;
  }
}
.search-wrap .search {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .search-wrap .search {
    width: 85%;
    padding: 0 5%;
    height: 100%;
  }
}
.search-wrap .searchTerm {
  width: 100%;
  padding: 5px;
  height: 35px;
  border-radius: 5px 0 5px 5px;
  outline: none;
  color: #222;
  border: 1px solid #aaa;
}
@media screen and (max-width: 480px) {
  .search-wrap .searchTerm {
    font-size: 16px;
  }
}
.search-wrap .searchButton {
  width: 40px;
  height: 35px;
  margin-left: -4px;
  background: #222;
  border: 1px solid #222;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
  outline: none;
  position: relative;
}
.search-wrap .searchButton i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.search-wrap .sd-search-close {
  display: none;
}
@media screen and (max-width: 480px) {
  .search-wrap .sd-search-close {
    display: block;
    color: #222;
    font-size: 1.7em;
    position: absolute;
    right: -13%;
  }
}

.input-editor {
  width: 100%;
  height: 40px;
  padding: 0.5em 8px;
  outline: none;
  font-size: 1em;
}
@media screen and (max-width: 480px) {
  .input-editor {
    font-size: 16px;
    line-height: 1.5;
    -webkit-appearance: none;
  }
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ddd;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ddd;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #ddd;
}

input::placeholder,
textarea::placeholder {
  color: #ddd;
}

.heatup-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
}
.heatup-wrap:after {
  content: "";
  width: 28.5714285714%;
}
.heatup-wrap .heatup-contents {
  width: 28.5714285714%;
  margin-top: 2em;
}
@media screen and (max-width: 480px) {
  .heatup-wrap .heatup-contents {
    width: 100%;
    margin: 1em 0;
  }
}
.heatup-wrap .heatup-contents .heatup-image {
  width: 100%;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #000;
  background-position: center;
  position: relative;
}
.heatup-wrap .heatup-contents .heatup-image .circle {
  width: 70px;
  height: 70px;
  position: absolute;
  background-color: rgba(255, 220, 0, 0.7);
  border-radius: 50%;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.heatup-wrap .heatup-contents .heatup-image .circle p {
  text-align: center;
  font-size: 1.2em;
  line-height: inherit;
  font-weight: 600;
}
.heatup-wrap .heatup-contents .heatup-image .circle p span {
  display: block;
  font-size: 0.8em;
}
.heatup-wrap .heatup-contents .heatup-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  padding: 1em;
  margin-top: -4px;
  height: 150px;
}
.heatup-wrap .heatup-contents .heatup-inner i {
  font-size: 1.5em;
  color: #d85259;
}
.heatup-wrap .heatup-contents .heatup-content h3 {
  font-weight: 400;
  margin-bottom: 5px;
}

.note-toolbar {
  position: relative !important;
}

.header-title {
  padding-bottom: 0;
  text-align: left;
}

.regist-message {
  text-align: center;
}
@media screen and (max-width: 480px) {
  .regist-message {
    text-align: left;
  }
}

.disc-list {
  padding-left: 5px;
}
.disc-list li p {
  position: relative;
}
.disc-list li p:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 0.8em;
  left: -0.8em;
  border-radius: 50%;
  background-color: #222;
}

.number-list {
  list-style: decimal;
  padding-left: 1em;
}

.select-payment-wrap {
  margin-top: 50px;
}
.select-payment-wrap .page-menu {
  margin: 50px 0 0;
  border: 1px solid #ddd;
}
.select-payment-wrap .page-menu .tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: #f5f5f5;
}
@media screen and (max-width: 480px) {
  .select-payment-wrap .page-menu .tabs {
    display: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 801px) {
  .select-payment-wrap .page-menu .tabs {
    width: 90%;
  }
}
.select-payment-wrap .page-menu .tabs .tab-wrap {
  margin: 0;
  width: 33.3333333333%;
  color: #222;
  background-color: #f5f5f5;
  font-size: 0.9em;
  padding-left: 1em;
}
.select-payment-wrap .page-menu .tabs .tab-wrap:hover {
  background-color: rgba(229, 229, 229, 0.8);
  color: #000;
}
.select-payment-wrap .page-menu .tabs .tab-wrap.tab-active {
  background-color: #fff;
  color: #222;
  display: block;
  border-bottom: none;
}
.select-payment-wrap .page-menu .tabs .tab-wrap:first-of-type {
  border-left: none;
}
.select-payment-wrap .page-menu .tabs .tab-wrap:first-of-type:before {
  display: none;
}
.select-payment-wrap .page-menu .tabs .tab-wrap label {
  width: 100%;
  padding: 1em;
  cursor: pointer;
}
.select-payment-wrap .page-menu .tabs .tab-wrap input[type=radio] {
  position: absolute;
  opacity: 0;
}
.select-payment-wrap .page-menu .tabs .tab-wrap input[type=radio] + label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  position: relative;
  margin-right: 5px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.select-payment-wrap .page-menu .tabs .tab-wrap input[type=radio]:checked + label:before {
  background-color: #3197EE;
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}
.select-payment-wrap .page-menu .tabs .tab-wrap input[type=radio]:focus + label:before {
  outline: none;
  border-color: #3197EE;
}
.select-payment-wrap .page-menu .tab_container {
  padding: 50px;
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .select-payment-wrap .page-menu .tab_container {
    padding: 0;
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 801px) {
  .select-payment-wrap .page-menu .tab_container {
    width: 90%;
  }
}
.select-payment-wrap .page-menu .tab_content {
  padding: 20px 0;
  display: none;
}
@media screen and (max-width: 480px) {
  .select-payment-wrap .page-menu .tab_content {
    padding: 50px 10px;
  }
}
@media screen and (max-width: 480px) {
  .select-payment-wrap .page-menu .tab_content .payment-icon-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.select-payment-wrap .page-menu .tab_content .payment-icon-wrap .payment-icon {
  width: 50px;
  margin-right: 1em;
}
@media screen and (max-width: 480px) {
  .select-payment-wrap .page-menu .tab_content .payment-icon-wrap .payment-icon {
    width: 40px;
  }
}
.select-payment-wrap .page-menu .tab_content .payment-icon-wrap .payment-icon:last-of-type {
  margin-right: 0;
}
.select-payment-wrap .page-menu .tab_content .payment-icon-wrap .payment-icon.convenience-icon {
  height: 50px;
}
.select-payment-wrap .page-menu .tab_content .payment-description {
  margin-top: 25px;
}
.select-payment-wrap .page-menu .tab-accordion_heading {
  display: none;
}
@media screen and (max-width: 480px) {
  .select-payment-wrap .page-menu .tab-accordion_heading {
    margin: 0;
    padding: 10px 20px;
    display: block;
    cursor: pointer;
    color: #fff;
    background-color: #999;
    text-align: center;
    font-size: 0.9em;
    border-bottom: 1px solid #ddd;
  }
  .select-payment-wrap .page-menu .tab-accordion_heading:last-of-type {
    border-bottom: none;
  }
}
.select-payment-wrap .page-menu .d_active,
.select-payment-wrap .page-menu .tab-active {
  background-color: #FCC202;
  color: #fff;
}
.select-payment-wrap .select-payment-title {
  margin-top: 50px;
}
.select-payment-wrap .payment-note {
  margin-top: 50px;
}
.select-payment-wrap .payment-form {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .select-payment-wrap .payment-form {
    width: 100%;
  }
}
.select-payment-wrap .payment-form fieldset {
  border: none;
  padding-top: 2em;
}
.select-payment-wrap .payment-form fieldset p {
  font-size: 11px;
  cursor: pointer;
  margin-top: 1em;
  text-decoration: underline;
  position: absolute;
}
.select-payment-wrap .payment-form fieldset p i {
  margin-right: 5px;
}
.select-payment-wrap .payment-form fieldset.fieldset-half {
  width: 45%;
}
@media screen and (max-width: 480px) {
  .select-payment-wrap .payment-form fieldset.fieldset-half {
    width: auto;
  }
}
.select-payment-wrap .payment-form label {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 5px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .select-payment-wrap .payment-form .fieldset-wrap {
    display: block;
  }
}
.select-payment-wrap .payment-form input {
  width: 100%;
  display: inline-block;
  margin-right: 8px;
  height: 38px;
  color: #222;
  padding: 10px;
  border-radius: 5px;
  font-size: 0.9em;
  outline: none !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 480px) {
  .select-payment-wrap .payment-form input {
    font-size: 0.8em;
  }
}
.select-payment-wrap .payment-form input:last-of-type {
  margin-right: 0;
}
.select-payment-wrap .payment-form .fieldset-expiration {
  width: 60%;
}
@media screen and (max-width: 480px) {
  .select-payment-wrap .payment-form .fieldset-expiration {
    width: auto;
  }
}
.select-payment-wrap .payment-form .fieldset-ccv {
  width: 30%;
}
@media screen and (max-width: 480px) {
  .select-payment-wrap .payment-form .fieldset-ccv {
    width: auto;
  }
}
.select-payment-wrap .payment-form .hide {
  display: none;
  margin-top: 2em;
}
.select-payment-wrap .payment-form .hide.switchoff {
  display: block;
}
.select-payment-wrap .payment-form .hide img {
  width: 100%;
}
.select-payment-wrap .payment-confirm-table {
  width: 100% !important;
  margin: 0 !important;
}
.select-payment-wrap .payment-confirm-table .basic-tr {
  border-bottom: 1px solid #ddd;
}
.select-payment-wrap .payment-confirm-table .basic-tr:last-of-type {
  border-bottom: none;
}

.error-message {
  color: #ff0000;
  margin-top: 1em;
  font-size: 0.8em;
}
@media screen and (max-width: 480px) {
  .error-message {
    font-size: 0.6em;
  }
}

.forgot-textwrap {
  text-align: center;
  padding-bottom: 25px;
}
@media screen and (max-width: 480px) {
  .forgot-textwrap {
    text-align: left;
  }
}
.forgot-textwrap p {
  margin-bottom: 1em;
}
.forgot-textwrap p:last-of-type {
  margin-bottom: 0;
}

#MessageBox {
  width: 30%;
  position: fixed;
  top: -100px;
  right: 5px;
  z-index: 998;
  opacity: 0;
}
@media screen and (max-width: 801px) {
  #MessageBox {
    width: 90%;
    top: auto;
    bottom: -120px;
  }
}
#MessageBox .message {
  margin: 0;
  padding: 20px;
  font-size: 16px;
  background-color: #fff;
  color: #222;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom-width: 5px;
  box-shadow: 0px 37px 20px -20px rgba(34, 34, 34, 0.2);
}
@media screen and (max-width: 480px) {
  #MessageBox .message {
    font-size: 0.8em;
    padding: 10px;
  }
}
#MessageBox .message.notice-message {
  border-bottom-color: #237a57;
}
#MessageBox .message.alert-message {
  border-bottom-color: #d85259;
}
#MessageBox .message svg {
  width: 2.5em;
  height: 2.5em;
  margin-right: 15px;
}
#MessageBox .message svg.icon-icon-check {
  fill: #237a57;
}
#MessageBox .message svg.icon-icon-cancel {
  fill: #d85259;
}
#MessageBox .message .message-title {
  font-weight: bold;
}

b {
  font-weight: bold;
}

.text-red {
  color: red;
  font-weight: bold;
}

@-webkit-keyframes dropin-fadeout {
  0% {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate(0, -200%);
    transform: translate(0, -200%);
  }
  5% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  12% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  80% {
    opacity: 0;
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate(75%, 0);
    transform: translate(75%, 0);
  }
}
@keyframes dropin-fadeout {
  0% {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate(0, -200%);
    transform: translate(0, -200%);
  }
  5% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  12% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  80% {
    opacity: 0;
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate(75%, 0);
    transform: translate(75%, 0);
  }
}
@media screen and (max-width: 801px) {
  @-webkit-keyframes dropin-fadeout {
    0% {
      opacity: 0;
      visibility: visible;
      -webkit-transform: translate(-50%, -200%);
      transform: translate(-50%, -200%);
    }
    5% {
      -webkit-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
    }
    12% {
      opacity: 1;
    }
    70% {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
    }
    80% {
      opacity: 0;
    }
    100% {
      visibility: hidden;
      -webkit-transform: translate(25%, 0);
      transform: translate(25%, 0);
    }
  }
  @keyframes dropin-fadeout {
    0% {
      opacity: 0;
      visibility: visible;
      -webkit-transform: translate(-50%, -200%);
      transform: translate(-50%, -200%);
    }
    5% {
      -webkit-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
    }
    12% {
      opacity: 1;
    }
    70% {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
    }
    80% {
      opacity: 0;
    }
    100% {
      visibility: hidden;
      -webkit-transform: translate(25%, 0);
      transform: translate(25%, 0);
    }
  }
}
.animate--dropin-fadeout {
  top: 62px !important;
  -webkit-animation: dropin-fadeout 6.5s 0.4s cubic-bezier(0.32, 1.75, 0.65, 0.91);
  animation: dropin-fadeout 6.5s 0.4s cubic-bezier(0.32, 1.75, 0.65, 0.91);
}
@media screen and (max-width: 801px) {
  .animate--dropin-fadeout {
    top: auto !important;
    bottom: 50px !important;
    right: auto !important;
    left: 50%;
  }
}

.status {
  border-radius: 4px;
  font-size: 0.8em;
  padding: 7px 15px;
  display: inline-block;
  margin: 5px 0;
}
.status.unverified {
  background-color: #fde2dd;
  color: #a41c4e;
}
.status.pending {
  background-color: #fffbeb;
  color: #947600;
}
.status.verified {
  background-color: #effaf3;
  color: #257942;
}
.status.black {
  background-color: #222;
  color: #fff;
}
.status.red {
  background-color: #ce0909;
  color: #fff;
}
.status.right-red {
  background-color: #d85259;
  color: #fff;
}
.status.green {
  background-color: #4caf93;
  color: #fff;
}
.status.gray {
  background-color: #aaa;
  color: #fff;
}
.status.right-blue {
  background-color: #209cee;
  color: #fff;
}

.button-green {
  background-color: #4caf93;
  color: #fff;
}

.button-red {
  background-color: #e0245e;
  color: #fff;
}

.button-blue {
  background-color: #209cee;
  color: #fff;
}

.button-gray {
  background-color: #aaa;
  color: #fff;
}

.button-black {
  background-color: #222;
  color: #fff;
}

#onclickOverlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(255, 255, 255, 0.6);
}
#onclickOverlay .spinner-wrap {
  height: 100%;
}
#onclickOverlay .spinner {
  width: 80px;
  height: 80px;
  border: 4px #ddd solid;
  border-top: 4px #999 solid;
  border-radius: 50%;
  -webkit-animation: spinAnimation 0.8s infinite linear;
  animation: spinAnimation 0.8s infinite linear;
}
#onclickOverlay.active {
  display: block;
}

@-webkit-keyframes spinAnimation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spinAnimation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
#autozip {
  display: none !important;
}

.currency:before {
  content: "¥";
  margin-right: 5px;
}

body {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  hanging-punctuation: allow-end;
}

@keyframes hideShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.banner {
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.banner.is-sticky, .banner.is-fixed {
  display: block;
}
.banner.is-sticky {
  animation: hideShow 0.3s linear 0s;
}
.banner.is-open .navigation-wrap {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: block !important;
}
@media screen and (max-width: 480px) {
  .banner.is-open .navigation-wrap {
    width: 50%;
  }
}
.banner [data-navicon=button] {
  display: inline-block;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.banner [data-navicon=button] > * {
  display: block;
}
.banner [data-navicon=button]:focus {
  outline: none;
}
.banner .navicon {
  padding: 1em 5%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.banner .navicon__lines {
  display: inline-block;
  width: 1.5rem;
  height: 0.1rem;
  background: #fff;
  border-radius: 0.1071428571rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  margin-bottom: 0.1rem;
}
.banner .navicon__lines:after, .banner .navicon__lines:before {
  display: inline-block;
  width: 1.5rem;
  height: 0.1rem;
  background: #fff;
  border-radius: 0.1071428571rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  content: "";
  -webkit-transform-origin: 0.1071428571rem center;
  -ms-transform-origin: 0.1071428571rem center;
  transform-origin: 0.1071428571rem center;
}
.banner .navicon__lines:before {
  top: 0.375rem;
}
.banner .navicon__lines:after {
  top: -0.375rem;
}
.is-closed .banner .navicon__lines {
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
  transform: scale3d(0.8, 0.8, 0.8);
}
.banner .navicon-x.is-closed .navicon__lines {
  background: transparent;
}
.banner .navicon-x.is-closed .navicon__lines:after, .banner .navicon-x.is-closed .navicon__lines:before {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 0;
  width: 1.5rem;
  background: #fff;
}
.banner .navicon-x.is-closed .navicon__lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.banner .navicon-x.is-closed .navicon__lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.banner .grid {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 2.5%;
  position: relative;
}
@media screen and (max-width: 480px) {
  .banner .grid {
    padding: 0 5%;
  }
}
.banner .grid .logo {
  height: 60px;
}
@media screen and (max-width: 480px) {
  .banner .grid .logo {
    width: 70px;
  }
}
.banner .grid .icon-logo-flag,
.banner .grid .icon-logo-flag_beta {
  fill: #FCC202;
  width: 100px;
  height: 30px;
}
@media screen and (max-width: 480px) {
  .banner .grid .icon-logo-flag,
  .banner .grid .icon-logo-flag_beta {
    height: 50px;
  }
}
.banner .grid .nav-button {
  height: auto;
  color: #222;
  background-color: #FCC202;
  display: inline-block;
  line-height: 1;
  border-radius: 5px;
  padding: 6px 12px;
  margin-left: 15px;
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .banner .grid .nav-button {
    padding: 9px 15px;
    margin-left: auto;
    margin-right: 45px;
  }
}
.banner .grid .nav-button:hover {
  background-color: #b08801;
}
.banner .grid .navigation-wrap {
  width: 100%;
  height: 60px;
}
@media screen and (max-width: 480px) {
  .banner .grid .navigation-wrap {
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
  }
}
.banner .grid .navigation-wrap .nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .banner .grid .navigation-wrap .nav__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 480px) and (max-width: 801px) {
  .banner .grid .navigation-wrap .nav__list {
    padding: 2em 0;
    margin: 0;
    font-size: 0.9em;
  }
}
.banner .grid .navigation-wrap .nav__list-item {
  text-align: center;
}
@media screen and (max-width: 480px) {
  .banner .grid .navigation-wrap .nav__list-item {
    margin: 0;
    display: block;
    width: 100%;
    padding-top: 3em;
  }
}
@media screen and (min-width: 480px) and (max-width: 801px) {
  .banner .grid .navigation-wrap .nav__list-item {
    line-height: 1.5;
    margin: 0;
    display: block;
  }
}
.banner .grid .navigation-wrap .nav-link {
  font-size: 1em;
  position: relative;
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  padding: 0 1em;
}
@media screen and (max-width: 480px) {
  .banner .grid .navigation-wrap .nav-link {
    width: 100%;
    height: 100%;
    font-size: 1.5em;
  }
}
.banner .grid .navigation-wrap .nav-link:hover {
  color: #FCC202;
}
.banner .grid .navigation-wrap .nav-link:hover:after {
  width: 100%;
  left: 0;
}
.banner .grid .navigation-wrap .nav-link .sub-nav {
  display: block;
  font-size: 0.6em;
}
.banner .grid .icon-menu {
  display: none;
}
@media screen and (max-width: 480px) {
  .banner .grid .icon-menu {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0;
    padding: 0;
    width: 60px;
    height: 60px;
    z-index: 1000;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .section {
    padding: 50px 0;
  }
}
.section .section-header {
  letter-spacing: 2px;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .section .section-header {
    letter-spacing: 0;
    font-size: 1.3em;
    padding-bottom: 50px;
  }
}
.section .section-header br {
  display: none;
}
@media screen and (max-width: 801px) {
  .section .section-header br {
    display: block;
  }
}

#hero {
  width: 100%;
  height: 100vh;
  background-image: url("/images/background-hero.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 600px) {
  #hero {
    background-position: 65% 50%;
  }
}
@media screen and (min-width: 600px) and (max-width: 801px) {
  #hero {
    background-position: right;
  }
}
#hero:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#hero .hero-contents {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 600px) {
  #hero .hero-contents {
    width: 90%;
    margin: auto;
  }
}
#hero .hero-contents .heroContents-wrap {
  width: 50%;
  margin-left: auto;
  color: #fff;
}
@media screen and (max-width: 600px) {
  #hero .hero-contents .heroContents-wrap {
    width: 100%;
  }
}
#hero .hero-contents .heroContents-wrap .heroContents-inner {
  width: 40vw;
}
@media screen and (max-width: 600px) {
  #hero .hero-contents .heroContents-wrap .heroContents-inner {
    width: 100%;
  }
}
#hero .hero-contents .heroContents-wrap p {
  font-size: 2.5vw;
  margin: 0;
  text-align: justify;
  display: inline-block;
  text-shadow: 0 0 10px #000;
}
@media screen and (max-width: 600px) {
  #hero .hero-contents .heroContents-wrap p {
    font-size: 5.5vw;
    margin-bottom: 130px;
    text-align: center;
  }
}
#hero .hero-contents .heroContents-wrap .button-wrap {
  margin-top: 50px;
}
@media screen and (max-width: 600px) {
  #hero .hero-contents .heroContents-wrap .button-wrap {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 85px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 0;
  }
}
#hero .hero-contents .heroContents-wrap .button-wrap .button {
  border: 1px solid #fff;
  color: #222;
  background-color: #fff;
  padding: 1.5em 4em;
  border-radius: 50px;
}
@media screen and (max-width: 480px) {
  #hero .hero-contents .heroContents-wrap .button-wrap .button {
    font-size: 0.9em;
    padding: 1em 2em;
  }
}
#hero .hero-contents svg {
  position: absolute;
  left: 50%;
  bottom: 50px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  fill: #FCC202;
  width: 9.7vw;
  height: 4vw;
  -webkit-filter: drop-shadow(0 0 10px #000);
  filter: drop-shadow(0 0 10px #000);
}
@media screen and (max-width: 600px) {
  #hero .hero-contents svg {
    width: 85px;
    height: 35px;
    bottom: 25px;
  }
}
#hero .hero-right {
  width: 50%;
  height: 100%;
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 600px) {
  #hero .hero-right {
    width: 100%;
    height: 50%;
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    box-ordinal-group: 1;
    background-position: 7% 0%;
  }
}
#hero .heroright-flexinner {
  text-align: center;
}
#hero .heroright-flexinner svg {
  fill: #FCC202;
  width: 150px;
  height: 50px;
  -webkit-filter: drop-shadow(0 0 15px #444);
  filter: drop-shadow(0 0 15px #444);
}
#hero .icon-logo-overalls {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 150px;
  height: 40px;
}
@media screen and (max-width: 801px) {
  #hero .icon-logo-overalls {
    width: 100px;
    height: 30px;
    bottom: 10px;
    right: 10px;
  }
}

#about {
  width: 100%;
  background-image: url("/images/background-about.jpg");
  background-position: 100% 50%;
  background-size: 120%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  #about {
    background-position: center;
    background-size: 400%;
    position: relative;
    background-image: none;
    overflow: hidden;
  }
}
@media screen and (max-width: 600px) {
  #about:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
}
@media screen and (max-width: 600px) {
  #about .section-header {
    position: relative;
    z-index: 3;
    color: #fff;
  }
}
#about .about-contents {
  max-width: 980px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 600px) {
  #about .about-contents {
    display: block;
  }
}
#about .about-contents .aboutContents-left {
  width: 65%;
}
@media screen and (max-width: 600px) {
  #about .about-contents .aboutContents-left {
    width: 100%;
    position: relative;
    z-index: 3;
  }
}
#about .about-contents .aboutContents-left h2 {
  text-align: center;
  font-family: "Trebuchet MS", sans-serif;
  letter-spacing: 2px;
  font-size: 4em;
  font-weight: bold;
  padding-bottom: 25px;
  color: #fff;
  text-shadow: 0 0 15px #FCC202;
}
@media screen and (max-width: 600px) {
  #about .about-contents .aboutContents-left h2 {
    font-size: 1.5em;
    text-align: center;
    text-shadow: none;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 600px) and (max-width: 801px) {
  #about .about-contents .aboutContents-left h2 {
    font-size: 5vw;
  }
}
#about .about-contents .aboutContents-left p {
  background-color: #fff;
  color: #222;
  padding: 25px;
  text-align: justify;
  word-break: break-all;
  font-size: 1em;
  line-height: 2;
}
#about .about-contents .aboutContents-left p span {
  font-weight: bold;
  font-size: 1.1em;
}
@media screen and (max-width: 600px) {
  #about .about-contents .aboutContents-left p {
    background-color: transparent;
    padding: 0;
    color: #fff;
  }
}
@media screen and (min-width: 600px) and (max-width: 801px) {
  #about .about-contents .aboutContents-left p {
    font-size: 1em;
  }
}
#about .about-contents .aboutContents-left .button-wrap {
  margin-top: 100px;
}
@media screen and (max-width: 480px) {
  #about .about-contents .aboutContents-left .button-wrap {
    margin-top: 50px;
  }
}
#about .about-contents .aboutContents-left .button-wrap .button {
  border: 1px solid #FCC202;
  color: #222;
  background-color: #FCC202;
  padding: 1em 3em;
  border-radius: 50px;
}
@media screen and (max-width: 480px) {
  #about .about-contents .aboutContents-left .button-wrap .button {
    font-size: 0.8em;
  }
}
#about .about-contents .aboutContents-right {
  width: 30%;
}
@media screen and (max-width: 600px) {
  #about .about-contents .aboutContents-right {
    width: 100%;
  }
}
#about .about-contents .aboutContents-right .image-mock-wrap {
  position: relative;
  width: 100%;
  margin-left: auto;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  #about .about-contents .aboutContents-right .image-mock-wrap {
    overflow: unset;
    position: unset;
    width: auto;
    height: auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 801px) {
  #about .about-contents .aboutContents-right .image-mock-wrap {
    width: 100%;
    height: auto;
  }
}
#about .about-contents .aboutContents-right .image-mock-wrap:before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  top: 50%;
  left: 50%;
  width: 95%;
  height: 100%;
  z-index: 2;
  border-radius: 50px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px) {
  #about .about-contents .aboutContents-right .image-mock-wrap:before {
    content: unset;
  }
}
#about .about-contents .aboutContents-right .image-mock-wrap .image-mock {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  #about .about-contents .aboutContents-right .image-mock-wrap .image-mock {
    display: none;
  }
}
#about .about-contents .aboutContents-right .image-mock-wrap .video-mock {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 50px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px) {
  #about .about-contents .aboutContents-right .image-mock-wrap .video-mock {
    width: 100vw;
    height: 200vw;
    border-radius: 0;
    top: 50%;
  }
}
@media screen and (min-width: 600px) and (max-width: 801px) {
  #about .about-contents .aboutContents-right .image-mock-wrap .video-mock {
    border-radius: 70px;
    width: 115%;
  }
}

#services .service-contents {
  max-width: 880px;
  width: 90%;
  margin: auto;
  position: relative;
}
#services .service-contents .serviceMock-wrap {
  position: absolute;
  width: 220px;
  left: 0;
}
@media screen and (max-width: 480px) {
  #services .service-contents .serviceMock-wrap {
    display: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 801px) {
  #services .service-contents .serviceMock-wrap {
    width: 200px;
  }
}
#services .service-contents .serviceMock-wrap .serviceMock-inner {
  position: relative;
}
#services .service-contents .serviceMock-wrap .service-mock {
  width: 100%;
  position: relative;
  z-index: 2;
}
#services .service-contents .serviceMock-wrap .service-page {
  position: absolute;
  width: 88%;
  height: 89%;
  top: 53%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 0 0 15px 15px;
}
#services .service-contents .serviceContents-desc {
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  #services .service-contents .serviceContents-desc {
    text-align: center;
    margin-bottom: 25px;
  }
}
#services .service-contents .serviceContents-desc .serviceContentsDesc-content svg {
  width: 300px;
  height: 90px;
  position: absolute;
  top: -25px;
  left: 58%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 480px) {
  #services .service-contents .serviceContents-desc .serviceContentsDesc-content svg {
    width: 70vw;
    height: 20vw;
    position: unset;
    left: unset;
    top: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
}
#services .service-contents .serviceContents-desc .serviceContentsDesc-content .serviceContentsDesc-image {
  width: 83%;
  height: 0;
  padding-top: 50%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: auto;
  display: block;
}
@media screen and (max-width: 480px) {
  #services .service-contents .serviceContents-desc .serviceContentsDesc-content .serviceContentsDesc-image {
    width: 100%;
    padding-top: 75%;
    background-size: 125%;
  }
}
@media screen and (min-width: 480px) and (max-width: 801px) {
  #services .service-contents .serviceContents-desc .serviceContentsDesc-content .serviceContentsDesc-image {
    padding-top: 55%;
  }
}
#services .service-contents .serviceContents-desc .serviceContentsDesc-content .serviceContentsDesc-text {
  width: 83%;
  margin-left: auto;
  text-align: center;
  font-size: 1.3em;
  font-weight: 200;
}
@media screen and (max-width: 480px) {
  #services .service-contents .serviceContents-desc .serviceContentsDesc-content .serviceContentsDesc-text {
    width: 100%;
    font-size: 3.9vw;
    margin-top: 15px;
  }
}
#services .service-contents .serviceContents-tabs {
  margin: 0;
}
@media screen and (max-width: 480px) {
  #services .service-contents .serviceContents-tabs {
    font-size: 4vw;
  }
}
#services .service-contents .serviceContents-tabs .serviceContents-tab {
  cursor: pointer;
  font-size: 1.2em;
  width: 33.3333333333%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #services .service-contents .serviceContents-tabs .serviceContents-tab {
    font-size: 0.9em;
  }
}
#services .service-contents .serviceContents-tabs .serviceContents-tab.tab-active {
  position: relative;
}
#services .service-contents .serviceContents-tabs .serviceContents-tab.tab-active:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background-color: #FCC202;
}
#services .service-contents .serviceContents-tabs .serviceContents-tab p {
  padding: 15px 0;
}
@media screen and (max-width: 480px) {
  #services .service-contents .serviceContents-tabs .serviceContents-tab p .sub {
    display: none;
  }
}
#services .service-contents .serviceContents-tabs .serviceContents-tab p .main:before {
  content: "(";
}
@media screen and (max-width: 480px) {
  #services .service-contents .serviceContents-tabs .serviceContents-tab p .main:before {
    content: none;
  }
}
#services .service-contents .serviceContents-tabs .serviceContents-tab p .main:after {
  content: ")";
}
@media screen and (max-width: 480px) {
  #services .service-contents .serviceContents-tabs .serviceContents-tab p .main:after {
    content: none;
  }
}

#feature .feature-wrap {
  max-width: 600px;
  width: 90%;
  margin: 25px auto 0;
  position: relative;
}
@media screen and (max-width: 480px) {
  #feature .feature-wrap {
    width: 100%;
    margin: 0;
    overflow: hidden;
  }
}
#feature .feature-wrap .feature-box {
  background-color: #FCC202;
  position: absolute;
  top: -25px;
  left: 0;
  padding: 25px 65px 25px 25px;
  max-width: 380px;
  width: 90%;
}
@media screen and (max-width: 480px) {
  #feature .feature-wrap .feature-box {
    background-color: rgba(252, 194, 2, 0.95);
    padding-right: 25px;
    top: auto;
    bottom: 25px;
    left: 0;
    z-index: 3;
  }
}
#feature .feature-wrap .feature-box h3 {
  font-size: 2.5em;
  font-family: "Caveat", sans-serif;
  margin-bottom: 25px;
}
@media screen and (max-width: 480px) {
  #feature .feature-wrap .feature-box h3 {
    font-size: 2em;
  }
}
#feature .feature-wrap .feature-box p {
  text-align: justify;
  word-break: break-all;
}
#feature .feature-wrap .featureMock-wrap {
  width: 270px;
  display: block;
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  #feature .feature-wrap .featureMock-wrap {
    width: 170px;
    margin-right: -45px;
    margin-top: 25px;
  }
}
#feature .feature-wrap .featureMock-wrap .featureMock-inner {
  position: relative;
}
#feature .feature-wrap .featureMock-wrap .featureMock-inner .featureMock {
  width: 100%;
  height: 150%;
  position: relative;
  z-index: 2;
}
#feature .feature-wrap .featureMock-wrap .featureMock-inner .featureMock-image {
  width: 88%;
  height: 89%;
  border-radius: 0 0 20px 20px;
  position: absolute;
  z-index: 1;
  top: 53.4%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#feature .button-wrap {
  margin-top: 100px;
}
#feature .button-wrap .button {
  border: 1px solid #FCC202;
  color: #222;
  background-color: #FCC202;
  padding: 1em 3em;
  border-radius: 50px;
}
@media screen and (max-width: 480px) {
  #feature .button-wrap .button {
    font-size: 0.8em;
  }
}

#pickup .pickup-wrap {
  max-width: 1000px;
  width: 90%;
  margin: auto;
}
#pickup .pickup-wrap .pickup-desc {
  text-align: center;
  margin-bottom: 75px;
}
#pickup .pickup-wrap .pickup-contents .pickup-content {
  width: 31.25%;
}
#pickup .pickup-wrap .pickup-contents .pickup-content .pickupContent-image {
  width: 100%;
  height: 0;
  padding-top: 75%;
  background-position: center;
  background-size: cover;
  margin-bottom: 15px;
}
#pickup .pickup-wrap .pickup-contents .pickup-content p {
  text-align: justify;
  word-break: break-all;
}
#pickup .button-wrap {
  margin-top: 100px;
}
#pickup .button-wrap .button {
  border: 1px solid #FCC202;
  color: #222;
  background-color: #FCC202;
  padding: 1em 3em;
  border-radius: 50px;
}

.brackets:before {
  content: "[";
  margin: 0 5px;
}
.brackets:after {
  content: "]";
}

.dash:before, .dash:after {
  content: "-";
  margin: 0 5px;
}

#keibuy {
  background-color: #000;
  color: #fff;
}
#keibuy.page-content {
  margin-top: -60px;
  padding: 150px 0 0;
}
#keibuy .section-header {
  color: #FCC202;
  line-height: 2;
  margin-bottom: -25px;
}
@media screen and (max-width: 480px) {
  #keibuy .section-header {
    font-size: 1.2em;
  }
}
#keibuy .section-header br {
  display: block;
}
@media screen and (max-width: 480px) {
  #keibuy .section-header .pc {
    display: none;
  }
}
#keibuy .service-image {
  width: 100%;
}
#keibuy .resize-image-wrap {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 480px) {
  #keibuy .resize-image-wrap {
    width: 100%;
  }
}
#keibuy .keibuy-image-wrap {
  margin-top: -160px;
  padding-bottom: 100px;
}
@media screen and (max-width: 480px) {
  #keibuy .keibuy-image-wrap {
    margin-top: -100px;
  }
}
#keibuy .service-desc {
  text-align: center;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 480px) {
  #keibuy .service-desc {
    text-align: left;
  }
}
#keibuy .service-desc p {
  font-size: 1.3em;
  line-height: 2.5;
}
@media screen and (max-width: 480px) {
  #keibuy .service-desc p {
    font-size: 0.9em;
    line-height: 2;
  }
  #keibuy .service-desc p br {
    display: none;
  }
}
#keibuy .keibuy-flow-wrap {
  background-color: #fff;
  color: #222;
}
#keibuy .keibuy-flow-wrap .section-header {
  color: #222;
}
#keibuy .keibuy-flow-wrap p {
  text-align: center;
}
@media screen and (max-width: 480px) {
  #keibuy .keibuy-flow-wrap p {
    margin-top: 50px;
  }
}
#keibuy .keibuy-flow-wrap p span {
  font-size: 1.3em;
  border: 1px solid #222;
  padding: 5px 15px;
}
@media screen and (max-width: 480px) {
  #keibuy .keibuy-flow-wrap p span {
    font-size: 1em;
    padding: 2px 10px;
  }
}
#keibuy .keibuy-ranking-wrap .keibuy-intro-wrap {
  width: 90%;
  max-width: 880px;
  margin: auto;
}

@media screen and (max-width: 600px) {
  .service-intro-wrap {
    display: block;
  }
}
.service-intro-wrap .service-image-wrap {
  width: 35%;
}
@media screen and (max-width: 600px) {
  .service-intro-wrap .service-image-wrap {
    width: 80%;
    margin: 0 auto 25px;
  }
}
.service-intro-wrap .service-desc-wrap {
  width: 55%;
}
@media screen and (max-width: 600px) {
  .service-intro-wrap .service-desc-wrap {
    width: 100%;
  }
}
.service-intro-wrap .service-desc-wrap p {
  font-size: 1.2em;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  .service-intro-wrap .service-desc-wrap {
    font-size: 0.8em;
  }
}

.service-mock-wrap {
  position: relative;
}
.service-mock-wrap .service-mock {
  width: 100%;
  height: 150%;
  position: relative;
  z-index: 2;
}
.service-mock-wrap .service-mock-image {
  width: 88%;
  height: 89%;
  border-radius: 0 0 20px 20px;
  position: absolute;
  z-index: 1;
  top: 53.4%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 480px) {
  #testimonials {
    padding-bottom: 100px;
  }
}
#testimonials .testimonials-wrap {
  max-width: 880px;
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 480px) and (max-width: 801px) {
  #testimonials .testimonials-wrap {
    width: 80%;
  }
}
#testimonials .testimonials-wrap .testimonialsDesc-wrap {
  text-align: center;
  margin-bottom: 75px;
}
@media screen and (max-width: 480px) {
  #testimonials .testimonials-wrap .testimonialsDesc-wrap {
    margin-bottom: 50px;
  }
}
#testimonials .testimonials-wrap .testimonialsDesc-wrap .testimonials-desc {
  display: inline-block;
  background-color: #222;
  color: #fff;
  padding: 10px 15px;
}
@media screen and (max-width: 480px) {
  #testimonials .testimonials-wrap .testimonialsDesc-wrap .testimonials-desc {
    text-align: justify;
    word-break: break-all;
  }
}
#testimonials .testimonials-wrap .testimonials-contents .testimonials-content {
  position: relative;
}
#testimonials .testimonials-wrap .testimonials-contents .testimonials-content .testimonialsContent-image-wrap {
  max-width: 500px;
  width: 90%;
}
#testimonials .testimonials-wrap .testimonials-contents .testimonials-content .testimonialsContent-image {
  width: 100%;
  height: 0;
  padding-top: 66.6666666667%;
  background-position: center;
  background-size: cover;
}
#testimonials .testimonials-wrap .testimonials-contents .testimonials-content .testimonialsContent-voice {
  position: absolute;
  bottom: -25px;
  right: 0;
  max-width: 450px;
  width: 90%;
  padding: 25px;
  background-color: #FCC202;
}
@media screen and (max-width: 480px) {
  #testimonials .testimonials-wrap .testimonials-contents .testimonials-content .testimonialsContent-voice {
    position: unset;
    top: unset;
    right: unset;
    margin-left: auto;
    margin-top: -25px;
  }
}
#testimonials .testimonials-wrap .testimonials-contents .testimonials-content .testimonialsContent-voice h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  #testimonials .testimonials-wrap .testimonials-contents .testimonials-content .testimonialsContent-voice h3 {
    font-size: 1em;
  }
}
#testimonials .testimonials-wrap .testimonials-contents .testimonials-content .testimonialsContent-voice p {
  text-align: justify;
  word-break: break-all;
}
@media screen and (max-width: 480px) {
  #testimonials .testimonials-wrap .testimonials-contents .testimonials-content .testimonialsContent-voice p {
    font-size: 0.7em;
  }
}
#testimonials .testimonials-wrap .VueCarousel-wrapper {
  padding: 50px 0;
}
@media screen and (max-width: 480px) {
  #testimonials .testimonials-wrap .VueCarousel-wrapper {
    padding: 0 0 50px;
  }
}
#testimonials .testimonials-wrap .VueCarousel-navigation-button:focus,
#testimonials .testimonials-wrap .VueCarousel-dot:focus {
  outline: none;
}
#testimonials .testimonials-wrap .VueCarousel-navigation .VueCarousel-navigation--disabled {
  display: none;
}
@media screen and (max-width: 801px) {
  #testimonials .testimonials-wrap .VueCarousel-navigation .VueCarousel-navigation--disabled {
    display: block;
  }
}
#testimonials .testimonials-wrap .VueCarousel-navigation .VueCarousel-navigation-prev {
  left: -50px;
}
@media screen and (max-width: 480px) {
  #testimonials .testimonials-wrap .VueCarousel-navigation .VueCarousel-navigation-prev {
    left: unset;
    right: 10px;
    top: unset;
    bottom: 15px;
  }
}
@media screen and (min-width: 480px) and (max-width: 801px) {
  #testimonials .testimonials-wrap .VueCarousel-navigation .VueCarousel-navigation-prev {
    left: -15px;
  }
}
#testimonials .testimonials-wrap .VueCarousel-navigation .VueCarousel-navigation-next {
  right: -50px;
}
@media screen and (max-width: 480px) {
  #testimonials .testimonials-wrap .VueCarousel-navigation .VueCarousel-navigation-next {
    right: 28px;
    top: unset;
    bottom: 15px;
  }
}
@media screen and (min-width: 480px) and (max-width: 801px) {
  #testimonials .testimonials-wrap .VueCarousel-navigation .VueCarousel-navigation-next {
    right: -15px;
  }
}
#testimonials .testimonials-wrap .VueCarousel-navigation .arrow {
  width: 3em;
  height: 3em;
  fill: #555;
}
@media screen and (max-width: 480px) {
  #testimonials .testimonials-wrap .VueCarousel-navigation .arrow {
    width: 1.5em;
    height: 1.5em;
  }
}
#testimonials .testimonials-wrap .VueCarousel-navigation .arrow.prev {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
#testimonials .testimonials-wrap .VueCarousel-navigation .arrow.next {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#testimonials .button-wrap {
  margin-top: 125px;
}
@media screen and (max-width: 480px) {
  #testimonials .button-wrap {
    margin-top: 100px;
  }
}
#testimonials .button-wrap .button {
  border: 1px solid #FCC202;
  color: #222;
  background-color: #FCC202;
  padding: 1em 3em;
  border-radius: 50px;
}
@media screen and (max-width: 480px) {
  #testimonials .button-wrap .button {
    font-size: 0.8em;
  }
}

#global-footer {
  background-color: #000;
  padding: 3em 0 1em;
}
@media screen and (max-width: 480px) {
  #global-footer {
    padding: 1em 0;
  }
}
#global-footer .footer-menu {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 480px) {
  #global-footer .footer-menu {
    display: block;
  }
}
#global-footer .footer-menu .footer-content {
  width: 33.3333333333%;
}
@media screen and (max-width: 480px) {
  #global-footer .footer-menu .footer-content {
    width: 100%;
    margin-bottom: 3em;
  }
  #global-footer .footer-menu .footer-content:nth-of-type(2) {
    margin-bottom: 0;
  }
}
#global-footer .footer-menu .footer-content .social-list {
  margin-top: 2em;
}
#global-footer .footer-menu .footer-content .social-list .social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 1em;
}
#global-footer .footer-menu .footer-content .social-list .social:last-of-type {
  margin-right: 0;
}
#global-footer .footer-menu .footer-content .social-list .social svg {
  width: 1.3em;
  height: 1.3em;
  fill: #fff;
}
#global-footer .footer-menu .footer-content .social-list .twitter {
  background-color: #00aced;
}
#global-footer .footer-menu .footer-content .social-list .facebook {
  background-color: #1877f2;
}
#global-footer .footer-menu .footer-content .social-list .instagram {
  background-image: -webkit-linear-gradient(225deg, #1400c8, #b900b4, #f50000);
  background-image: -o-linear-gradient(225deg, #1400c8, #b900b4, #f50000);
  background-image: linear-gradient(-135deg, #1400c8, #b900b4, #f50000);
}
#global-footer .footer-menu .footer-content .social-list .line {
  background-color: #1dcd00;
}
#global-footer .footer-menu .footer-content .social-list .x {
  background-color: #0f1419;
  border: 1px solid #333;
}
#global-footer .footer-menu .footer-content .icon-logo-flag,
#global-footer .footer-menu .footer-content .icon-logo-flag_beta {
  fill: #FCC202;
  width: 125px;
  height: 50px;
}
@media screen and (max-width: 480px) {
  #global-footer .footer-menu .footer-content .icon-logo-flag,
  #global-footer .footer-menu .footer-content .icon-logo-flag_beta {
    display: none;
  }
}
#global-footer .footer-menu .footer-content .footer-content-list {
  margin: 0;
}
#global-footer .footer-menu .footer-content .footer-content-list li {
  padding-bottom: 1em;
}
#global-footer .footer-menu .footer-content .footer-content-list li a {
  color: #fff;
  font-size: 0.9em;
}
#global-footer .copylight {
  text-align: center;
  margin-top: 2em;
}
#global-footer .copylight a {
  color: #fff;
}

.page-template {
  margin-top: 60px;
}
.page-template h1 {
  text-align: center;
  font-size: 2em;
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .page-template h1 {
    font-size: 1.3em;
  }
}
.page-template .list-wrap {
  padding-bottom: 100px;
  position: relative;
}
.page-template .list-wrap .list {
  border-collapse: collapse;
  width: 55%;
  margin: 0 auto;
  font-size: 0.9em;
}
@media screen and (max-width: 801px) {
  .page-template .list-wrap .list {
    width: 90%;
  }
}
@media screen and (min-width: 1281px) {
  .page-template .list-wrap .list {
    font-size: 1em;
  }
}
.page-template .list-wrap .list tr {
  border-bottom: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  max-width: 100%;
}
@media screen and (max-width: 480px) {
  .page-template .list-wrap .list tr {
    display: block;
  }
}
.page-template .list-wrap .list tr:last-child {
  border-bottom: none;
}
.page-template .list-wrap .list td,
.page-template .list-wrap .list th {
  padding: 1em 0;
}
@media screen and (max-width: 600px) {
  .page-template .list-wrap .list td,
  .page-template .list-wrap .list th {
    padding: 0;
  }
}
.page-template .list-wrap .list td {
  width: 75%;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .page-template .list-wrap .list td {
    display: block;
    width: inherit;
    padding: 1em 0 1em 1em;
  }
}
.page-template .list-wrap .list th {
  font-weight: bold;
  text-align: left;
  width: 25%;
}
@media screen and (max-width: 600px) {
  .page-template .list-wrap .list th {
    display: block;
    border-top: none;
    border-bottom: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 1em;
  }
}
@media screen and (max-width: 600px) {
  .page-template .list-wrap .list th br {
    display: none;
  }
}
.page-template .update-info {
  display: none;
}
.page-template .error-wrap {
  padding: 100px 0;
}
.page-template .error-wrap .error {
  text-align: center;
  width: 90%;
  margin: auto;
  padding: 50px 25px;
}
@media screen and (max-width: 801px) {
  .page-template .error-wrap .error {
    text-align: left;
    padding: 0;
  }
}
.page-template .error-wrap .error p {
  margin-bottom: 25px;
}
.page-template .error-wrap .error p:last-of-type {
  margin-bottom: 0;
}

.doc-body {
  font-size: 0.9em;
  width: 55%;
  margin: 0 auto 100px;
  text-align: justify;
}
@media screen and (max-width: 801px) {
  .doc-body {
    width: 90%;
  }
}
.doc-body p {
  text-align: justify;
  word-break: break-all;
}
.doc-body ol {
  list-style: decimal;
  padding-left: 2em;
}
@media screen and (max-width: 480px) {
  .doc-body ol {
    padding-left: 1em;
  }
}
.doc-body .doc-list {
  margin-top: 2em;
}
.doc-body .doc-list-text {
  margin-top: 1em;
}
.doc-body .list {
  list-style: decimal;
  padding-left: 1.5em;
}
.doc-body .list li {
  margin-top: 1em;
}
.doc-body .list li p {
  margin-left: 0.5em;
}
.doc-body .inner-list {
  list-style: none;
  padding-left: 0;
}
.doc-body .inner-list li {
  margin-top: 1em;
  counter-increment: cnt;
}
.doc-body .inner-list li p {
  text-indent: -2em;
  margin-left: 3em;
}
.doc-body .inner-list li p:before {
  content: "(" counter(cnt) ") ";
  line-height: 1.5;
  display: inline-block;
  text-indent: -1em;
  margin-left: 0.6em;
  width: 20px;
}
.doc-body .inner-inner-list {
  list-style: none;
}
.doc-body .inner-inner-list li {
  counter-increment: calc-ex10;
}
.doc-body .inner-inner-list li p {
  text-indent: -2em;
  margin-left: 2em;
}
.doc-body .inner-inner-list li p:before {
  content: "(" counter(calc-ex10, lower-latin) ")";
}
.doc-body .establishment {
  margin-top: 100px;
  text-align: right;
}
.doc-body .doc {
  margin-bottom: 50px;
}
.doc-body .doc:last-of-type {
  margin-bottom: 0;
}
.doc-body .doc .doc-head {
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.5;
}
.doc-body .doc .doc-content-wrap {
  margin-top: 25px;
  padding-left: 15px;
}

.page-doc {
  width: 55%;
  margin: 0 auto 100px;
  text-align: justify;
}
@media screen and (max-width: 801px) {
  .page-doc {
    width: 90%;
  }
}
.page-doc .page-doc-content {
  margin-top: 50px;
}
.page-doc .page-doc-content .doc-title {
  font-size: 1.1em;
  margin-bottom: 15px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .page-doc .page-doc-content .doc-title {
    font-size: 1em;
  }
}
.page-doc .page-doc-content p {
  text-align: justify;
  font-feature-settings: "palt";
}
.page-doc .page-doc-content ol {
  list-style: decimal;
  margin-left: -1em;
  padding: 0;
}
.page-doc .page-doc-content ol li {
  padding: 0 0 1em 0;
  margin-left: 2.3em;
  text-align: justify;
}
.page-doc .page-doc-content ol li:last-of-type {
  padding-bottom: 0;
}
.page-doc .page-doc-content ol li .inner-ol {
  list-style-type: none;
  margin-top: 1em;
  margin-left: 0;
}
.page-doc .page-doc-content ol li .inner-ol li {
  counter-increment: cnt;
  margin-left: 2em;
}
.page-doc .page-doc-content ol li .inner-ol li p {
  display: inline-block;
}
.page-doc .page-doc-content ol li .inner-ol li p:before {
  content: "(" counter(cnt) ") ";
  display: inline-block;
  margin-left: -2em;
  width: 2em;
}
.page-doc .establishment {
  margin-top: 50px;
}
.page-doc .contactform-wrap {
  margin-top: 25px;
}
.page-doc .contactform-wrap .contact-description {
  margin-bottom: 50px;
}
.page-doc .contactform-wrap dl {
  display: table;
  width: 100%;
  border-top: 1px solid #ccc;
  margin-bottom: 0;
  -webkit-margin-before: 0;
}
@media screen and (max-width: 480px) {
  .page-doc .contactform-wrap dl {
    margin-bottom: 30px;
    display: block;
    border-top: none;
  }
}
.page-doc .contactform-wrap dl:last-of-type {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 480px) {
  .page-doc .contactform-wrap dl:last-of-type {
    border-bottom: none;
  }
}
.page-doc .contactform-wrap dl dt {
  display: table-cell;
  width: 35%;
  margin-bottom: 0;
  padding: 32px 20px 20px;
  font-size: 0.8em;
  position: relative;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .page-doc .contactform-wrap dl dt {
    margin-bottom: 10px;
    display: block;
    width: auto;
    padding: 0;
    font-size: 0.8em;
  }
}
.page-doc .contactform-wrap dl dt.confirm {
  padding-top: 25px;
}
@media screen and (max-width: 480px) {
  .page-doc .contactform-wrap dl dt.confirm {
    padding: 0;
  }
}
.page-doc .contactform-wrap dl dt .label {
  margin-top: -1px;
  display: inline-block;
  padding: 3px 4px 2px;
  color: #fff;
  font-size: 0.8em;
  font-weight: normal;
  position: absolute;
  right: 20px;
  margin-right: 0;
  border-radius: 2px;
}
@media screen and (max-width: 480px) {
  .page-doc .contactform-wrap dl dt .label {
    position: unset;
    right: auto;
    margin-right: 10px;
  }
}
.page-doc .contactform-wrap dl dt .label.required {
  background-color: #e11619;
}
.page-doc .contactform-wrap dl dt .label.optional {
  background-color: #aaa;
}
.page-doc .contactform-wrap dl dd {
  display: table-cell;
  width: 65%;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .page-doc .contactform-wrap dl dd {
    display: block;
    width: auto;
    padding: 0;
  }
}
.page-doc .contactform-wrap dl dd .input-wrap {
  position: relative;
  display: block;
}
.page-doc .contactform-wrap dl dd .input-wrap.checkbox-genre-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 8px;
}
.page-doc .contactform-wrap dl dd .input-wrap.checkbox-genre-wrap .error-message {
  width: 100%;
  margin-top: 0;
}
.page-doc .contactform-wrap dl dd .input-wrap.select-wrap {
  position: relative;
  background: #ffffff;
  display: inline-block;
}
.page-doc .contactform-wrap dl dd .input-wrap.select-wrap:before {
  position: absolute;
  top: 50%;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .page-doc .contactform-wrap dl dd .input-wrap.select-wrap:before {
    right: 0.5em;
  }
}
.page-doc .contactform-wrap dl dd .input-wrap.select-wrap select {
  width: 100%;
  cursor: pointer;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  outline: none;
  background: none;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 40px;
  line-height: 1;
  display: block;
  padding: 0 25px 0 10px;
  color: #222;
  border-radius: 5px;
  border-color: #ddd;
  -webkit-transition: border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  -o-transition: border-color 0.25s ease, box-shadow 0.25s ease;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.page-doc .contactform-wrap dl dd .input-wrap.select-wrap select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000; /* your normal text color here */
}
.page-doc .contactform-wrap dl dd .input-wrap.select-wrap select:-moz-focusring * {
  color: #000; /* your normal text color here */
  text-shadow: none;
}
@media screen and (max-width: 480px) {
  .page-doc .contactform-wrap dl dd .input-wrap.input-confirm-wrap {
    font-size: 0.8em;
    line-height: 1.5;
  }
}
.page-doc .contactform-wrap dl dd .input-wrap .input {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  height: 38px;
  outline: none !important;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font-size: 0.9em;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.page-doc .contactform-wrap dl dd .input-wrap .textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  outline: none !important;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font-size: 0.9em;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.page-doc .contactform-wrap dl dd .confirm-content {
  font-size: 0.8em;
}
.page-doc .contactform-wrap dl dd ul {
  margin: 0;
  font-size: 0.8em;
  line-height: 1.5;
}
.page-doc .contactform-wrap dl dd ul li:before {
  content: "・";
}
.page-doc .contactform-wrap .mail-attention {
  font-size: 0.7em;
  word-break: break-all;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
}
.page-doc .contactform-wrap .input-radio,
.page-doc .contactform-wrap .checkbox {
  margin-right: 1em;
  margin-bottom: 1em;
  padding: 0;
}
@media screen and (max-width: 480px) {
  .page-doc .contactform-wrap .input-radio,
  .page-doc .contactform-wrap .checkbox {
    font-size: 0.8em;
  }
}
.page-doc .contactform-wrap input[type=checkbox],
.page-doc .contactform-wrap input[type=radio] {
  position: absolute;
  opacity: 0;
}
.page-doc .contactform-wrap input[type=checkbox] + label,
.page-doc .contactform-wrap input[type=radio] + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.8em;
}
.page-doc .contactform-wrap input[type=checkbox] + label:before,
.page-doc .contactform-wrap input[type=radio] + label:before {
  content: "";
  margin-right: 5px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  border: 1px solid #777;
}
.page-doc .contactform-wrap input[type=checkbox] + .span-radio:before,
.page-doc .contactform-wrap input[type=radio] + .span-radio:before {
  border-radius: 50%;
}
.page-doc .contactform-wrap input[type=checkbox]:hover + label:before,
.page-doc .contactform-wrap input[type=radio]:hover + label:before {
  background: #FCC202;
  border: 1px solid #FCC202;
}
.page-doc .contactform-wrap input[type=checkbox]:checked + label:before,
.page-doc .contactform-wrap input[type=radio]:checked + label:before {
  background: #FCC202;
  border: 1px solid #FCC202;
}
.page-doc .contactform-wrap input[type=checkbox]:checked + label:after,
.page-doc .contactform-wrap input[type=radio]:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
.page-doc .contactform-wrap input[type=checkbox]:checked + .span-radio:after,
.page-doc .contactform-wrap input[type=radio]:checked + .span-radio:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  background: white;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.page-doc .contactform-wrap .checkbox-label-wrap input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.page-doc .contactform-wrap .checkbox-label-wrap input[type=checkbox] + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-doc .contactform-wrap .checkbox-label-wrap input[type=checkbox] + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 22px;
  height: 22px;
  background: #ddd;
}
.page-doc .contactform-wrap .checkbox-label-wrap input[type=checkbox]:checked + label:before {
  background: #FCC202;
}
.page-doc .contactform-wrap .checkbox-label-wrap input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
.page-doc .contactform-wrap .accept {
  text-align: center;
  margin: 100px 0;
}
.page-doc .contactform-wrap .accept input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.page-doc .contactform-wrap .accept input[type=checkbox] + .accept-label {
  position: relative;
  cursor: pointer;
  padding: 0;
  font-size: 0.9em;
}
@media screen and (max-width: 480px) {
  .page-doc .contactform-wrap .accept input[type=checkbox] + .accept-label {
    font-size: 0.8em;
  }
}
.page-doc .contactform-wrap .accept input[type=checkbox] + .accept-label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 22px;
  height: 22px;
  background: #ddd;
}
.page-doc .contactform-wrap .accept input[type=checkbox]:hover + .accept-label:before {
  background: #FCC202;
}
.page-doc .contactform-wrap .accept input[type=checkbox]:checked + .accept-label:before {
  background: #FCC202;
}
.page-doc .contactform-wrap .accept input[type=checkbox]:checked + .accept-label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
.page-doc .contactform-wrap .button-wrap {
  margin-top: 100px;
}
.page-doc .contactform-wrap .button-wrap .button {
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.page-doc .contactform-wrap .button-wrap .button.back {
  background-color: #fff;
  margin-right: 10px;
}
.page-doc .contactform-wrap .button-wrap .button.back:hover {
  border-color: #FCC202;
}
.page-doc .contactform-wrap .button-wrap button {
  margin-left: 2em;
}

#creativeaid-hero {
  width: 100%;
  height: 100vh;
  background-color: #fff;
}
#creativeaid-hero .creativeaid-hero-image {
  height: 90%;
}
@media screen and (max-width: 480px) {
  #creativeaid-hero .creativeaid-hero-image {
    width: 90%;
  }
}

.creativeaid-contents {
  padding: 100px 0;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .creativeaid-contents {
    padding: 50px 0;
  }
}
.creativeaid-contents.neverstop {
  background: transparent linear-gradient(180deg, #ffd800 0%, #febb00 51%, #fc7e00 100%) 0% 0% no-repeat padding-box;
}
.creativeaid-contents.program {
  background: transparent linear-gradient(180deg, #121211 0%, #10100f 51%, #4a4a4a 100%) 0% 0% no-repeat padding-box;
}
.creativeaid-contents .creativeaid-contents-inner {
  width: 90%;
  max-width: 880px;
  margin: auto;
}
.creativeaid-contents .creativeaid-contents-inner h2 {
  font-size: 4em;
  font-weight: bold;
  line-height: 1.5;
  font-family: YakuHanJP;
}
@media screen and (max-width: 480px) {
  .creativeaid-contents .creativeaid-contents-inner h2 {
    font-size: 9.3vw;
    padding-bottom: 50px;
  }
}
.creativeaid-contents .creativeaid-contents-inner h2 span {
  display: block;
  font-size: 0.7em;
}
.creativeaid-contents .creativeaid-contents-inner .creativeaid-content p {
  font-size: 2.5em;
  text-align: justify;
  word-break: break-all;
}
@media screen and (max-width: 480px) {
  .creativeaid-contents .creativeaid-contents-inner .creativeaid-content p {
    font-size: 6.5vw;
  }
}
.creativeaid-contents .creativeaid-contents-inner .creativeaid-content span {
  font-size: 1.4em;
  margin-top: 50px;
  display: block;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .creativeaid-contents .creativeaid-contents-inner .creativeaid-content span {
    font-size: 3.9vw;
  }
}
.creativeaid-contents .creativeaid-contents-inner .creativeaid-content.program-content p {
  font-size: 1.7em;
  text-align: center;
  line-height: 2.5;
  margin-top: 100px;
}
@media screen and (max-width: 480px) {
  .creativeaid-contents .creativeaid-contents-inner .creativeaid-content.program-content p {
    font-size: 5.5vw;
    text-align: justify;
    word-break: break-all;
    margin-top: 50px;
    line-height: 1.5;
  }
  .creativeaid-contents .creativeaid-contents-inner .creativeaid-content.program-content p br {
    display: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 801px) {
  .creativeaid-contents .creativeaid-contents-inner .creativeaid-content.program-content p {
    font-size: 3vw;
  }
}
.creativeaid-contents .creativeaid-contents-inner .creativeaid-content.program-content p:first-of-type {
  margin-top: 0;
}
.creativeaid-contents .creativeaid-contents-inner .creativeaid-content.program-content span {
  text-align: center;
  line-height: 2.5;
}
@media screen and (max-width: 480px) {
  .creativeaid-contents .creativeaid-contents-inner .creativeaid-content.program-content span {
    font-size: 3vw;
  }
}
@media screen and (min-width: 480px) and (max-width: 801px) {
  .creativeaid-contents .creativeaid-contents-inner .creativeaid-content.program-content span {
    font-size: 1em;
  }
}
.creativeaid-contents .creativeaid-contents-inner .creativeaid-button-wrap {
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 480px) {
  .creativeaid-contents .creativeaid-contents-inner .creativeaid-button-wrap {
    margin-top: 50px;
  }
}
.creativeaid-contents .creativeaid-contents-inner .creativeaid-button-wrap .button {
  background-color: #faeded;
  border-radius: 50px;
  font-size: 1.5em;
  color: #0a0909;
  display: inline-block;
  padding: 15px 8vw;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .creativeaid-contents .creativeaid-contents-inner .creativeaid-button-wrap .button {
    font-size: 1.3em;
    padding: 15px 15vw;
  }
}
.creativeaid-contents .poweredbyflag {
  margin-top: 150px;
}
@media screen and (max-width: 480px) {
  .creativeaid-contents .poweredbyflag {
    margin-top: 100px;
  }
}
.creativeaid-contents .poweredbyflag svg {
  width: 60px;
  height: 20px;
  margin-left: 10px;
  fill: #FCC202;
}

.page-content {
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .page-content#feature {
    overflow: hidden;
  }
}
@media screen and (max-width: 480px) {
  .page-content#feature .section-header {
    padding-bottom: 150px;
  }
}
.page-content#feature .feature-wrap {
  margin-bottom: 200px;
}
@media screen and (max-width: 480px) {
  .page-content#feature .feature-wrap {
    margin-bottom: 100px;
    overflow: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .page-content#feature .feature-wrap .feature-box {
    position: unset;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: -25px;
  }
}
@media screen and (max-width: 480px) {
  .page-content#feature .feature-wrap .feature-box h3 {
    font-size: 2.5em;
    position: absolute;
    top: 8vw;
    left: -12vw;
    margin: 0;
    width: 250px;
    text-align: center;
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
    color: #FCC202;
  }
}
.page-content#feature .feature-wrap .feature-box h3 svg {
  display: none;
}
@media screen and (max-width: 480px) {
  .page-content#feature .feature-wrap .feature-box h3 svg {
    display: block;
    width: 130%;
    height: 230%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -2;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 480px) {
  .page-content#feature .feature-wrap .featureMock-wrap {
    width: 80%;
    margin-right: 5px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.page-content#feature .feature-wrap:nth-child(odd) .feature-box {
  left: auto;
  right: 0;
  padding: 25px 25px 25px 65px;
}
@media screen and (max-width: 480px) {
  .page-content#feature .feature-wrap:nth-child(odd) .feature-box {
    padding: 25px;
    margin-left: auto;
  }
}
@media screen and (max-width: 480px) {
  .page-content#feature .feature-wrap:nth-child(odd) .feature-box h3 {
    left: auto;
    right: -10vw;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
  }
}
.page-content#feature .feature-wrap:nth-child(odd) .featureMock-wrap {
  margin-left: unset;
}
@media screen and (max-width: 480px) {
  .page-content#feature .feature-wrap:nth-child(odd) .featureMock-wrap {
    margin-left: 5px;
    margin-right: 0;
  }
}

/*# sourceMappingURL=portal.css.map */
