@charset "UTF-8";

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, iframe, h2, h3, p, img, strong, var, i,
dl, ul, li,
table, tbody, tr, th, td, figure, header, section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

 figure, header, section {
  display: block;
}

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

/* change colours to suit your needs */

/* change colours to suit your needs */

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input {
  vertical-align: middle;
}

/*==========================
original reset
==========================*/
input {
  margin: 0;
  padding: 0;
}

body {
  font-size: 14px;
}

 h2, h3 {
  font-weight: normal;
}

a {
  text-decoration: none;
}

i {
  display: inline-block;
}

 th {
  font-style: normal;
  font-weight: normal;
  text-align: left;
}

img {
  vertical-align: middle;
  border: none;
}

p {
  margin-bottom: 1em;
}

ul {
  padding-left: 20px;
}

html {
  min-height: 100%;
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */

/* Auto Height */

/* 3D Effects */

/* IE10 Windows Phone 8 Fixes */

/* Common Styles */

/* Bullets */

/* Progress */

/* Scrollbar */

/* Preloader */

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

/*!
Flexbox Mixins
http://philipwalton.github.io/solved-by-flexbox/
https://github.com/philipwalton/solved-by-flexbox
//
Copyright (c) 2013 Brian Franco
//
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
This is a set of mixins for those who want to mess around with flexbox
using the native support of current browsers. For full support table
check: http://caniuse.com/flexbox
//
Basically this will use:
//
* Fallback, old syntax (IE10, mobile webkit browsers - no wrapping)
* Final standards syntax (FF, Safari, Chrome, IE11, Opera)
//
This was inspired by:
//
* http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/
//
With help from:
//
* http://w3.org/tr/css3-flexbox/
* http://the-echoplex.net/flexyboxes/
* http://msdn.microsoft.com/en-us/library/ie/hh772069(v=vs.85).aspx
* http://css-tricks.com/using-flexbox/
* http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/
* https://developer.mozilla.org/en-us/docs/web/guide/css/flexible_boxes
*/
.grid-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 960px;
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
  width: 100%;
  overflow: hidden;
}
.grid-wrapper--lg {
  max-width: 1280px;
}
.grid-wrapper--full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}
.row-item-gutter--lg {
  margin-left: -2rem;
  margin-right: -2rem;
}
.row-item-gutter--lg > [class*=col-] {
  padding-left: 2rem;
  padding-right: 2rem;
}

.col-xs-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 1rem;
  padding-left: 1rem;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  text-align: center;
}

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

@media only screen and (min-width: 480px) {
  .col-sm {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .col-sm-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .basis-auto-sm {
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
}
@media only screen and (min-width: 768px) {
  .col-md {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .col-md-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
}
/* Font Awesome @font-face removed - external font files no longer loaded */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-info-circle:before {
  content: "\f05a";
}

/* Magnific Popup CSS */

/* Main image in popup */

/* The shadow behind the image */

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
}

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

html {
  font-size: 62.5%;
}

body {
  color: #05161a;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 1.4rem;
  word-wrap: break-word;
  line-height: 1.6;
  background-color: #fff;
}

h2 {
  font-size: inherit;
  line-height: inherit;
}

hr {
  margin: 40px 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  padding: 10px;
  word-break: break-all;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  th,
  td {
    display: block;
    margin-bottom: 1px;
    text-align: left !important;
    width: 100% !important;
  }
}

tbody th {
  min-width: 150px;
}

input {
  font-size: 1.4rem;
  padding: 0.5em;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  input {
    font-size: 1.6rem;
  }
}


input[type=checkbox] {
  margin-right: 0.3em;
  vertical-align: baseline;
}

@-webkit-keyframes anim-balloon {
  0%, 100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.965, 0.965, 0.965);
            transform: scale3d(0.965, 0.965, 0.965);
  }
}

@keyframes anim-balloon {
  0%, 100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.965, 0.965, 0.965);
            transform: scale3d(0.965, 0.965, 0.965);
  }
}
@-webkit-keyframes anim-shake {
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0.8deg);
            transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0.8deg);
  }
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -0.8deg);
            transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -0.8deg);
  }
}
@keyframes anim-shake {
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0.8deg);
            transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0.8deg);
  }
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -0.8deg);
            transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -0.8deg);
  }
}
@-webkit-keyframes anim-bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -0.75em, 0);
            transform: translate3d(0, -0.75em, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -0.375em, 0);
            transform: translate3d(0, -0.375em, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -0.1875em, 0);
            transform: translate3d(0, -0.1875em, 0);
  }
}
@keyframes anim-bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -0.75em, 0);
            transform: translate3d(0, -0.75em, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -0.375em, 0);
            transform: translate3d(0, -0.375em, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -0.1875em, 0);
            transform: translate3d(0, -0.1875em, 0);
  }
}
@-webkit-keyframes anim-reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  75% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.75;
  }
  100% {
    -webkit-transform: scale(100) rotate(45deg);
            transform: scale(100) rotate(45deg);
    opacity: 0;
  }
}
@keyframes anim-reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  75% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.75;
  }
  100% {
    -webkit-transform: scale(100) rotate(45deg);
            transform: scale(100) rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes anim-pulse {
  0% {
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
  }
  50% {
    -webkit-filter: brightness(115%);
            filter: brightness(115%);
  }
  100% {
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
  }
}
@keyframes anim-pulse {
  0% {
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
  }
  50% {
    -webkit-filter: brightness(115%);
            filter: brightness(115%);
  }
  100% {
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
  }
}
.c-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 960px;
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
  width: 100%;
}
.c-wrapper--lg {
  max-width: 1280px;
}
.c-wrapper--sm {
  max-width: 720px;
}
.c-wrapper--no-gutter {
  padding-right: 0;
  padding-left: 0;
}

.c-inner {
  padding: 20px 20px 1px;
}
.c-inner--lg {
  padding: 40px 40px 20px;
}
.c-inner--one-elem {
  padding-bottom: 20px;
}
.c-inner--one-elem.c-inner--md {
  padding-bottom: 20px;
}
.c-inner--one-elem.c-inner--lg {
  padding-bottom: 40px;
}
.c-inner--vertical {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .c-inner {
    padding: 20px 20px 1px;
  }
  .c-inner.c-inner--one-elem {
    padding-bottom: 20px;
  }
  .c-inner.c-inner--vertical {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 1px) and (max-width: 480px) {
  .c-inner-sp--sm {
    padding: 10px 10px 1px;
  }
  .c-inner--one-elem.c-inner-sp--sm {
    padding-bottom: 10px;
  }
}

.c-img a:hover img {
  opacity: 0.8;
}
.c-img a:hover + div[data-image-clip-viewer] {
  opacity: 0.8;
}
.c-img img {
  display: inline-block;
  vertical-align: top;
}
.c-img--responsive img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.c-img--responsive-v img {
  display: inline-block;
  max-height: 100%;
  width: auto;
}
.c-img--full img {
  display: inline-block;
  height: auto;
  width: 100%;
}

.c-bg-img {
  background-position: center center;
  background-repeat: no-repeat;
}
.c-bg-img--cover {
  background-size: cover;
}

.c-bg-color {
  background-color: #f7f7f7;
}

.c-btn a,
.c-btn input {
  background-color: #28c3d4;
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  text-align: center;
  text-shadow: none;
  border: 0;
  cursor: pointer;
  font-weight: normal;
  padding: 0.8em 1.8em;
  min-width: 30%;
  line-height: 1.2;
  font-family: inherit;
}
.c-btn a:hover,
.c-btn input:hover {
  opacity: 0.8;
}
.c-btn input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: line-through;
}
.c-btn input:disabled:hover {
  opacity: 0.5;
}
.c-btn--sm a,
.c-btn--sm input {
  font-size: 1.4rem;
  padding: 0.8em 1.8em;
  min-width: 1%;
}
.c-btn--min-half a,
.c-btn--min-half input {
  padding-left: 0.4em;
  padding-right: 0.4em;
  min-width: 50%;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .c-btn a,
  .c-btn input {
    padding-left: 0.8em;
    padding-right: 0.8em;
  }
  .c-btn--sm a,
  .c-btn--sm input {
    font-size: 1.6rem;
    padding: 0.4em 0.8em;
  }
}

.c-heading {
  font-size: 2.8rem;
  line-height: 1.3;
}
.c-heading--sm {
  font-size: 2rem;
}
.c-heading--bdr-btm {
  padding-bottom: 0.5em;
  border-bottom: 2px solid #28c3d4;
}
.c-heading--bdr-thin-btm {
  padding-bottom: 0.5em;
  border-bottom: 1px solid #28c3d4;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .c-heading {
    font-size: 2rem;
  }
  .c-heading--sm {
    font-size: 1.6rem;
  }
}

.c-border {
  border: 3px solid #28c3d4;
}

.c-tr--bdr th,
.c-tr--bdr td {
  border-width: 1px;
  border-color: #ccc;
  border-style: solid;
}
.c-tr--bdr-btm th,
.c-tr--bdr-btm td {
  border-left-style: none;
  border-right-style: none;
  border-top-style: none;
}

.c-symbol {
  background-color: #28c3d4;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  height: 30px;
  width: 30px;
}

.p-m_navigation {
  background-color: #fff;
}
.p-navigationHeader {
  max-width: 300px;
}
.p-btn_navigationToggle {
  display: none;
  position: absolute;
  top: 15px;
  right: 1rem;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #ccc;
  color: #05161a;
}
.p-btn_navigationToggle i {
  display: inline-block;
  width: 18px;
  height: 14px;
  position: relative;
  vertical-align: middle;
}
.p-btn_navigationToggle i::before,
.p-btn_navigationToggle i::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}
.p-btn_navigationToggle i::before {
  top: 0;
  box-shadow: 0 6px 0 currentColor;
}
.p-btn_navigationToggle i::after {
  bottom: 0;
}
.p-m_navigationMenu li {
  display: inline-block;
}
.p-m_navigationMenu li + li {
  margin-left: 10px;
}
.p-m_navigationMenu a {
  display: inline-block;
  color: inherit;
}
.p-m_navigationMenu a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .p-navigationHeader {
    position: relative;
    min-height: 38px;
  }
  .p-m_navigationMenu {
    position: absolute;
    z-index: 20;
    width: 100%;
    display: none;
    padding: 0;
    border-top: 2px solid #f7f7f7;
    background-color: inherit;
    text-align: left;
    max-height: 350px;
    overflow-y: scroll;
  }
  .p-m_navigationMenu li {
    display: block;
    border-bottom: 1px solid #f7f7f7;
  }
  .p-m_navigationMenu li + li {
    margin-left: 0;
  }
  .p-m_navigationMenu a {
    display: block;
    padding: 10px;
  }
  .p-btn_navigationToggle {
    display: block;
  }
}

.p-header-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  margin-top: 0 !important;
}

.p-list__box--bdr {
  background-color: #fff;
}

.p-list-step-has-img:not(:last-child) .c-border {
  margin-bottom: 40px;
  position: relative;
  z-index: 0;
}
.p-list-step-has-img:not(:last-child) .c-border::before, .p-list-step-has-img:not(:last-child) .c-border::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-list-step-has-img:not(:last-child) .c-border::before {
  height: 0;
  width: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #28c3d4;
  bottom: -20px;
  z-index: 1;
}
.p-list-step-has-img:not(:last-child) .c-border::after {
  height: 0;
  width: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #fff;
  bottom: -16px;
  z-index: 2;
}

.p-list-faq-accordion .only-edit {
  padding: 25px 5px;
  background-color: #fff8d9;
  border: 2px solid #f2c200;
  border-radius: 4px;
  color: #333;
}
.p-list-faq-accordion__lists {
  list-style: none;
  padding-left: 0;
}
.p-list-faq-accordion__item {
  position: relative;
}
.p-list-faq-accordion__checkbox {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  margin: 0 !important;
}
.p-list-faq-accordion__checkbox:checked + .p-list-faq-accordion__title-area + .p-list-faq-accordion__answer-content {
  opacity: 1;
  height: auto;
  padding: 24px;
  visibility: visible;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .p-list-faq-accordion__checkbox:checked + .p-list-faq-accordion__title-area + .p-list-faq-accordion__answer-content {
    padding: 16px;
  }
}
.p-list-faq-accordion__checkbox:checked + .p-list-faq-accordion__title-area:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-list-faq-accordion__checkbox:hover + .p-list-faq-accordion__title-area {
  background-color: rgba(40, 195, 212, 0.1);
}
.p-list-faq-accordion__title-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px;
  font-weight: bold;
  border-bottom: solid 2px #28c3d4;
}
.p-list-faq-accordion__title-area:after {
  font-family: FontAwesome;
  font-size: 20px;
  content: "\f078";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #28c3d4;
  margin-left: 12px;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .p-list-faq-accordion__title-area {
    padding: 16px;
  }
  .p-list-faq-accordion__title-area:after {
    font-size: 18px;
  }
}
.p-list-faq-accordion__answer-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  height: 0;
  padding: 0 24px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  visibility: hidden;
  overflow: hidden;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .p-list-faq-accordion__answer-content {
    padding: 0 16px;
  }
}

[data-structure^=b-html-code] img,
[data-structure^=b-html-code] iframe {
  max-width: 100%;
}

.p-sentence-letter__contents {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3), 0 0 6px rgba(128, 128, 128, 0.1);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3), 0 0 6px rgba(128, 128, 128, 0.1);
  position: relative;
  z-index: 0;
}
.p-sentence-letter__body {
  position: relative;
  top: -20px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 40px;
}
.p-sentence-letter__text:only-child {
  padding-top: 80px;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .p-sentence-letter__body {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
  }
  .p-sentence-letter__text:only-child {
    padding-top: 40px;
  }
}

@-webkit-keyframes shake {
  0%, 82%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  86% {
    -webkit-transform: translate(2px, 2px) rotate(0deg);
            transform: translate(2px, 2px) rotate(0deg);
  }
  87% {
    -webkit-transform: translate(-1px, -3px) rotate(-1deg);
            transform: translate(-1px, -3px) rotate(-1deg);
  }
  88% {
    -webkit-transform: translate(-2px, 0) rotate(1deg);
            transform: translate(-2px, 0) rotate(1deg);
  }
  89% {
    -webkit-transform: translate(0, 2px) rotate(0deg);
            transform: translate(0, 2px) rotate(0deg);
  }
  90% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
            transform: translate(1px, -1px) rotate(1deg);
  }
  91% {
    -webkit-transform: translate(-1px, 1px) rotate(-1deg);
            transform: translate(-1px, 1px) rotate(-1deg);
  }
  92% {
    -webkit-transform: translate(-2px, 0) rotate(0deg);
            transform: translate(-2px, 0) rotate(0deg);
  }
  93% {
    -webkit-transform: translate(1px, 1px) rotate(-1deg);
            transform: translate(1px, 1px) rotate(-1deg);
  }
  94% {
    -webkit-transform: translate(-2px, -1px) rotate(1deg);
            transform: translate(-2px, -1px) rotate(1deg);
  }
  95% {
    -webkit-transform: translate(2px, 2px) rotate(0deg);
            transform: translate(2px, 2px) rotate(0deg);
  }
  96% {
    -webkit-transform: translate(2px, -3px) rotate(-1deg);
            transform: translate(2px, -3px) rotate(-1deg);
  }
}

@keyframes shake {
  0%, 82%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  86% {
    -webkit-transform: translate(2px, 2px) rotate(0deg);
            transform: translate(2px, 2px) rotate(0deg);
  }
  87% {
    -webkit-transform: translate(-1px, -3px) rotate(-1deg);
            transform: translate(-1px, -3px) rotate(-1deg);
  }
  88% {
    -webkit-transform: translate(-2px, 0) rotate(1deg);
            transform: translate(-2px, 0) rotate(1deg);
  }
  89% {
    -webkit-transform: translate(0, 2px) rotate(0deg);
            transform: translate(0, 2px) rotate(0deg);
  }
  90% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
            transform: translate(1px, -1px) rotate(1deg);
  }
  91% {
    -webkit-transform: translate(-1px, 1px) rotate(-1deg);
            transform: translate(-1px, 1px) rotate(-1deg);
  }
  92% {
    -webkit-transform: translate(-2px, 0) rotate(0deg);
            transform: translate(-2px, 0) rotate(0deg);
  }
  93% {
    -webkit-transform: translate(1px, 1px) rotate(-1deg);
            transform: translate(1px, 1px) rotate(-1deg);
  }
  94% {
    -webkit-transform: translate(-2px, -1px) rotate(1deg);
            transform: translate(-2px, -1px) rotate(1deg);
  }
  95% {
    -webkit-transform: translate(2px, 2px) rotate(0deg);
            transform: translate(2px, 2px) rotate(0deg);
  }
  96% {
    -webkit-transform: translate(2px, -3px) rotate(-1deg);
            transform: translate(2px, -3px) rotate(-1deg);
  }
}

.p-premium-sentence-merit {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
.p-premium-sentence-merit + .p-premium-sentence-merit {
  margin-top: 40px;
}
.p-premium-sentence-merit__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border-bottom: 1px solid #28c3d4;
}
.p-premium-sentence-merit__label {
  margin-right: 10px;
  padding: 5px 10px;
  background-color: #28c3d4;
  color: #fff;
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .p-premium-sentence-merit__header {
    display: block;
    padding: 10px;
  }
  .p-premium-sentence-merit__label {
    display: inline-block;
  }
}

/* b-premium-form:フォーム
    左からの距離を確保するpaddingを追加
---------------------------------------*/
.p-header-nav-floating-btn__top-btns {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.p-header-nav-floating-btn__top-btns-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  text-align: end;
}
.p-header-nav-floating-btn__text-pc {
  line-height: 1.2;
}
.p-header-nav-floating-btn__editable-btn {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-header-nav-floating-btn__sp-icon-btn {
  display: none;
}
.p-header-nav-floating-btn__sp-icon-btn img.pera1-editable {
  display: none;
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .p-header-nav-floating-btn__top-btns {
    position: fixed;
    bottom: 0;
    left: 0;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    height: 57px;
    background-color: #fff;
    -webkit-box-shadow: 0px -1px 2px -1px rgba(0, 0, 0, 0.4);
            box-shadow: 0px -1px 2px -1px rgba(0, 0, 0, 0.4);
  }
  .p-header-nav-floating-btn__top-btns-row {
    height: 57px;
  }
  .p-header-nav-floating-btn__text-pc {
    display: none;
  }
  .p-header-nav-floating-btn__text-pc .pera1-removable {
    display: none;
  }
  .p-header-nav-floating-btn__editable-btn {
    width: calc(50% - 30px);
    height: 57px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .p-header-nav-floating-btn__editable-btn .c-btn--sm {
    height: 57px;
  }
  .p-header-nav-floating-btn__editable-btn .c-btn--sm .c-btn {
    height: 57px;
  }
  .p-header-nav-floating-btn__editable-btn .c-btn--sm a {
    width: 100%;
    height: 57px;
    line-height: 57px;
    padding: 0 0.2em;
    overflow: hidden;
  }
  .p-header-nav-floating-btn__sp-icon-btn {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60px;
    height: 57px;
  }
  .p-header-nav-floating-btn__sp-icon-btn img.pera1-editable {
    display: inline-block;
  }
}

.p-footer__inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  .p-footer__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-hr--blank-space-small .only-edit {
  margin: 5px;
  padding: 25px 5px;
  background-color: #FFF8D9;
  border: 2px solid #F2C200;
  border-radius: 4px;
  color: #05161A;
}

.p-hr--blank-space-medium .only-edit {
  margin: 5px;
  padding: 25px 5px;
  background-color: #FFF8D9;
  border: 2px solid #F2C200;
  border-radius: 4px;
  color: #05161A;
}

.p-hr--blank-space-large .only-edit {
  margin: 5px;
  padding: 25px 5px;
  background-color: #FFF8D9;
  border: 2px solid #F2C200;
  border-radius: 4px;
  color: #05161A;
}

.only-edit {
  margin: 5px;
  padding: 25px 5px;
  background-color: #FFF8D9;
  border: 2px solid #F2C200;
  border-radius: 4px;
  color: #05161A;
}
.only-edit-notification-icon {
  margin: 5px;
  padding: 25px 5px;
  background-color: #FFF8D9;
  border: 2px solid #F2C200;
  border-radius: 4px;
  color: #05161A;
}

.only-edit {
  margin: 5px;
  padding: 25px 5px;
  background-color: #FFF8D9;
  border: 2px solid #F2C200;
  border-radius: 4px;
  color: #05161A;
}

@media only screen and (min-width: 1px) and (max-width: 768px) {
  [data-structure=b-cards-numbers--3col] .p-cards-numbers--3col__block {
    margin-left: -5px;
    margin-right: -5px;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  [data-structure=b-cards-numbers--3col] .p-cards-numbers--3col__item {
    padding-left: 5px;
    padding-right: 5px;
  }
}
[data-structure=b-cards-numbers--3col] .p-cards-numbers--3col__item--box {
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1490196078);
  padding-top: 40px;
  padding-bottom: 20px;
}
[data-structure=b-cards-numbers--3col] .p-cards-numbers--3col__inner .grid-wrapper {
  overflow: visible;
}
[data-structure=b-cards-numbers--3col] .p-cards-numbers--3col__inner--num {
  line-height: 1;
}

.p-header-nav-floating-btn--fixed--img-large {
  -webkit-box-shadow: 0 1px 2px rgba(220, 220, 220, 0.5);
  box-shadow: 0 1px 2px rgba(220, 220, 220, 0.5);
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .p-header-nav-floating-btn--fixed--img-large .p-btn_navigationToggle {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-header-nav-floating-btn--fixed--img-large .p-m_navigation {
  padding: 0;
}
.p-header-nav-floating-btn--fixed--img-large .p-m_navigation .c-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
.p-header-nav-floating-btn--fixed--img-large .p-m_navigation .m_navigationMenu {
  padding-top: 7px;
  padding-bottom: 7px;
}
.p-header-nav-floating-btn--fixed--img-large .navigationHeader {
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.only-edit {
  margin: 5px;
  padding: 25px 5px;
  background-color: #FFF8D9;
  border: 2px solid #F2C200;
  border-radius: 4px;
  color: #05161A;
}

.u-fslg {
  font-size: 1.8rem;
}

.u-fsxl {
  font-size: 2rem;
}

.u-fsxxxxl {
  font-size: 3.6rem;
}
/*
* SCREEN_LESS_MIDDLE（768以下）が`--sp`のmodifierクラスで定義されているため、
* 480px以下でのfont-size調整用のmodifierクラスを例外的に`--sp-sm`と命名しています。
*/

.u-color-theme-main {
  color: #28c3d4;
}

.u-inline-block {
  display: inline-block;
}
/*
* SCREEN_LESS_MIDDLE（768以下）が`--sp`のmodifierクラスで定義されているため、
* 480px以下でのfont-size調整用のmodifierクラスを例外的に`--sp-sm`と命名しています。
*/

.u-align-center {
  text-align: center;
}

.u-v-align-middle {
  vertical-align: middle;
}
/*
* SCREEN_LESS_MIDDLE（768以下）が`--sp`のmodifierクラスで定義されているため、
* 480px以下でのfont-size調整用のmodifierクラスを例外的に`--sp-sm`と命名しています。
*/

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

.u-mbxs {
  margin-bottom: 5px;
}

.u-mbsm {
  margin-bottom: 10px;
}

.u-mrmd {
  margin-right: 20px;
}

.u-mbmd {
  margin-bottom: 20px;
}

.u-mblg {
  margin-bottom: 40px;
}

.u-prmd {
  padding-right: 20px;
}

.u-plmd {
  padding-left: 20px;
}

@media only screen and (min-width: 1px) and (max-width: 768px) {
  .u-mtmd--sp {
    margin-top: 20px;
  }
  .u-mbmd--sp {
    margin-bottom: 20px;
  }
}

.font-size-14px {
  font-size: 14px !important;
}

.font-size-16px {
  font-size: 16px !important;
}

.font-size-18px {
  font-size: 18px !important;
}

.font-size-20px {
  font-size: 20px !important;
}

[data-custom-pc-fontsize="10px"] {
  font-size: 10px !important;
}

[data-custom-pc-fontsize="12px"] {
  font-size: 12px !important;
}

[data-custom-pc-fontsize="13px"] {
  font-size: 13px !important;
}

[data-custom-pc-fontsize="14px"] {
  font-size: 14px !important;
}

[data-custom-pc-fontsize="16px"] {
  font-size: 16px !important;
}

[data-custom-pc-fontsize="18px"] {
  font-size: 18px !important;
}

[data-custom-pc-fontsize="20px"] {
  font-size: 20px !important;
}

[data-custom-pc-fontsize="22px"] {
  font-size: 22px !important;
}

[data-custom-pc-fontsize="24px"] {
  font-size: 24px !important;
}

[data-custom-pc-fontsize="28px"] {
  font-size: 28px !important;
}

[data-custom-pc-fontsize="32px"] {
  font-size: 32px !important;
}

[data-custom-pc-fontsize="36px"] {
  font-size: 36px !important;
}

[data-custom-pc-fontsize="40px"] {
  font-size: 40px !important;
}

[data-custom-pc-fontsize="48px"] {
  font-size: 48px !important;
}

[data-custom-pc-fontsize="56px"] {
  font-size: 56px !important;
}

@media only screen and (min-width: 1px) and (max-width: 480px) {
  .font-size-14px {
    font-size: 12px !important;
  }
  .font-size-16px {
    font-size: 14px !important;
  }
  .font-size-18px {
    font-size: 16px !important;
  }
  .font-size-20px {
    font-size: 18px !important;
  }
  [data-custom-sp-fontsize="10px"] {
    font-size: 10px !important;
  }
  [data-custom-sp-fontsize="12px"] {
    font-size: 12px !important;
  }
  [data-custom-sp-fontsize="13px"] {
    font-size: 13px !important;
  }
  [data-custom-sp-fontsize="14px"] {
    font-size: 14px !important;
  }
  [data-custom-sp-fontsize="16px"] {
    font-size: 16px !important;
  }
  [data-custom-sp-fontsize="18px"] {
    font-size: 18px !important;
  }
  [data-custom-sp-fontsize="20px"] {
    font-size: 20px !important;
  }
  [data-custom-sp-fontsize="22px"] {
    font-size: 22px !important;
  }
  [data-custom-sp-fontsize="24px"] {
    font-size: 24px !important;
  }
  [data-custom-sp-fontsize="28px"] {
    font-size: 28px !important;
  }
  [data-custom-sp-fontsize="32px"] {
    font-size: 32px !important;
  }
  [data-custom-sp-fontsize="36px"] {
    font-size: 36px !important;
  }
  [data-custom-sp-fontsize="40px"] {
    font-size: 40px !important;
  }
  [data-custom-sp-fontsize="48px"] {
    font-size: 48px !important;
  }
  [data-custom-sp-fontsize="56px"] {
    font-size: 56px !important;
  }
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
  [data-custom-sp-fontsize] [class*=font-size-]:not([data-custom-sp-fontsize]),
  [data-custom-sp-fontsize] [data-custom-pc-fontsize]:not([data-custom-sp-fontsize]) {
    font-size: inherit !important;
  }
}
@media only screen and (min-width: 1px) and (max-width: 480px) {
   .m_navigationMenu.font-size-14px, .m_navigationMenu.font-size-16px, .m_navigationMenu.font-size-18px, .m_navigationMenu.font-size-20px {
    font-size: 18px !important;
  }
}

[data-display-none-target=all],
[data-display-none-target=desktop] {
  display: none;
}

[data-display-none-target=mobile] {
  display: block;
}

@media only screen and (min-width: 1px) and (max-width: 480px) {
  [data-display-none-target=mobile] {
    display: none;
  }
  [data-display-none-target=desktop] {
    display: block;
  }
}

.pera1-ghost {
  overflow: hidden;
}

.only-edit {
  display: none;
}
.only-edit-notification-icon {
  display: none;
}