@charset "UTF-8";
/*
* base
*/
@-webkit-keyframes animate-panel {
  0% {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  49% {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
}
@keyframes animate-panel {
  0% {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  49% {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
}

@-webkit-keyframes animate-content {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  100% {
    visibility: visible;
  }
}

@keyframes animate-content {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  100% {
    visibility: visible;
  }
}

.mask_wrap {
  display: inline-block;
}

.mask_wrap .mask_inner {
  position: relative;
  visibility: hidden;
}

.mask_wrap .mask_inner::after {
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  visibility: visible;
}

.mask_wrap .mask_inner.start {
  -webkit-animation-name: animate-content;
          animation-name: animate-content;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mask_wrap .mask_inner.start::after {
  -webkit-animation-name: animate-panel;
          animation-name: animate-panel;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

RESET CSS

html5doctor.com Reset Stylesheet

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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

* {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  min-height: 100%;
}

body {
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  color: #000;
  height: 100%;
  font-size: 1.4rem;
  background-color: #fff;
}

@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

li {
  list-style-type: none;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0;
  padding: 0;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: middle;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
  margin: 0;
}

td {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

html {
  height: 100%;
}

a {
  outline: none;
}

p {
  line-height: 1.5;
}

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

a, a:link, a:visited {
  color: #0079d7;
  text-decoration: none;
}

a:active, a:hover {
  color: #0079d7;
  text-decoration: none;
}

a:hover {
  color: #0079d7;
  text-decoration: none;
}

div#wrapper {
  width: 100%;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0px auto;
  padding: 0 0px;
  position: relative;
  margin-bottom: 0px;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  div#wrapper {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 480px) {
  div#wrapper {
    margin-bottom: 0px;
  }
}

.sp-i {
  display: none;
}

@media screen and (max-width: 480px) {
  .sp-i {
    display: block;
  }
}

.pc-i {
  display: block;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .pc-i {
    display: none;
  }
}

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

.tab-i {
  display: none;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .tab-i {
    display: block;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

margin

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.marT0 {
  margin-top: 0px !important;
}

.marR0 {
  margin-right: 0px !important;
}

.marB0 {
  margin-bottom: 0px !important;
}

.marL0 {
  margin-left: 0px !important;
}

.padT0 {
  padding-top: 0px !important;
}

.padR0 {
  padding-right: 0px !important;
}

.padB0 {
  padding-bottom: 0px !important;
}

.padL0 {
  padding-left: 0px !important;
}

.marT5 {
  margin-top: 5px !important;
}

.marR5 {
  margin-right: 5px !important;
}

.marB5 {
  margin-bottom: 5px !important;
}

.marL5 {
  margin-left: 5px !important;
}

.padT5 {
  padding-top: 5px !important;
}

.padR5 {
  padding-right: 5px !important;
}

.padB5 {
  padding-bottom: 5px !important;
}

.padL5 {
  padding-left: 5px !important;
}

.marT10 {
  margin-top: 10px !important;
}

.marR10 {
  margin-right: 10px !important;
}

.marB10 {
  margin-bottom: 10px !important;
}

.marL10 {
  margin-left: 10px !important;
}

.padT10 {
  padding-top: 10px !important;
}

.padR10 {
  padding-right: 10px !important;
}

.padB10 {
  padding-bottom: 10px !important;
}

.padL10 {
  padding-left: 10px !important;
}

.marT15 {
  margin-top: 15px !important;
}

.marR15 {
  margin-right: 15px !important;
}

.marB15 {
  margin-bottom: 15px !important;
}

.marL15 {
  margin-left: 15px !important;
}

.padT15 {
  padding-top: 15px !important;
}

.padR15 {
  padding-right: 15px !important;
}

.padB15 {
  padding-bottom: 15px !important;
}

.padL15 {
  padding-left: 15px !important;
}

.marT20 {
  margin-top: 20px !important;
}

.marR20 {
  margin-right: 20px !important;
}

.marB20 {
  margin-bottom: 20px !important;
}

.marL20 {
  margin-left: 20px !important;
}

.padT20 {
  padding-top: 20px !important;
}

.padR20 {
  padding-right: 20px !important;
}

.padB20 {
  padding-bottom: 20px !important;
}

.padL20 {
  padding-left: 20px !important;
}

.marT25 {
  margin-top: 25px !important;
}

.marR25 {
  margin-right: 25px !important;
}

.marB25 {
  margin-bottom: 25px !important;
}

.marL25 {
  margin-left: 25px !important;
}

.padT25 {
  padding-top: 25px !important;
}

.padR25 {
  padding-right: 25px !important;
}

.padB25 {
  padding-bottom: 25px !important;
}

.padL25 {
  padding-left: 25px !important;
}

.marT30 {
  margin-top: 30px !important;
}

.marR30 {
  margin-right: 30px !important;
}

.marB30 {
  margin-bottom: 30px !important;
}

.marL30 {
  margin-left: 30px !important;
}

.padT30 {
  padding-top: 30px !important;
}

.padR30 {
  padding-right: 30px !important;
}

.padB30 {
  padding-bottom: 30px !important;
}

.padL30 {
  padding-left: 30px !important;
}

.marT35 {
  margin-top: 35px !important;
}

.marR35 {
  margin-right: 35px !important;
}

.marB35 {
  margin-bottom: 35px !important;
}

.marL35 {
  margin-left: 35px !important;
}

.padT35 {
  padding-top: 35px !important;
}

.padR35 {
  padding-right: 35px !important;
}

.padB35 {
  padding-bottom: 35px !important;
}

.padL35 {
  padding-left: 35px !important;
}

.marT40 {
  margin-top: 40px !important;
}

.marR40 {
  margin-right: 40px !important;
}

.marB40 {
  margin-bottom: 40px !important;
}

.marL40 {
  margin-left: 40px !important;
}

.padT40 {
  padding-top: 40px !important;
}

.padR40 {
  padding-right: 40px !important;
}

.padB40 {
  padding-bottom: 40px !important;
}

.padL40 {
  padding-left: 40px !important;
}

.marT45 {
  margin-top: 45px !important;
}

.marR45 {
  margin-right: 45px !important;
}

.marB45 {
  margin-bottom: 45px !important;
}

.marL45 {
  margin-left: 45px !important;
}

.padT45 {
  padding-top: 45px !important;
}

.padR45 {
  padding-right: 45px !important;
}

.padB45 {
  padding-bottom: 45px !important;
}

.padL45 {
  padding-left: 45px !important;
}

.marT50 {
  margin-top: 50px !important;
}

.marR50 {
  margin-right: 50px !important;
}

.marB50 {
  margin-bottom: 50px !important;
}

.marL50 {
  margin-left: 50px !important;
}

.padT50 {
  padding-top: 50px !important;
}

.padR50 {
  padding-right: 50px !important;
}

.padB50 {
  padding-bottom: 50px !important;
}

.padL50 {
  padding-left: 50px !important;
}

.marT55 {
  margin-top: 55px !important;
}

.marR55 {
  margin-right: 55px !important;
}

.marB55 {
  margin-bottom: 55px !important;
}

.marL55 {
  margin-left: 55px !important;
}

.padT55 {
  padding-top: 55px !important;
}

.padR55 {
  padding-right: 55px !important;
}

.padB55 {
  padding-bottom: 55px !important;
}

.padL55 {
  padding-left: 55px !important;
}

.marT60 {
  margin-top: 60px !important;
}

.marR60 {
  margin-right: 60px !important;
}

.marB60 {
  margin-bottom: 60px !important;
}

.marL60 {
  margin-left: 60px !important;
}

.padT60 {
  padding-top: 60px !important;
}

.padR60 {
  padding-right: 60px !important;
}

.padB60 {
  padding-bottom: 60px !important;
}

.padL60 {
  padding-left: 60px !important;
}

.marT65 {
  margin-top: 65px !important;
}

.marR65 {
  margin-right: 65px !important;
}

.marB65 {
  margin-bottom: 65px !important;
}

.marL65 {
  margin-left: 65px !important;
}

.padT65 {
  padding-top: 65px !important;
}

.padR65 {
  padding-right: 65px !important;
}

.padB65 {
  padding-bottom: 65px !important;
}

.padL65 {
  padding-left: 65px !important;
}

.marT70 {
  margin-top: 70px !important;
}

.marR70 {
  margin-right: 70px !important;
}

.marB70 {
  margin-bottom: 70px !important;
}

.marL70 {
  margin-left: 70px !important;
}

.padT70 {
  padding-top: 70px !important;
}

.padR70 {
  padding-right: 70px !important;
}

.padB70 {
  padding-bottom: 70px !important;
}

.padL70 {
  padding-left: 70px !important;
}

.marT75 {
  margin-top: 75px !important;
}

.marR75 {
  margin-right: 75px !important;
}

.marB75 {
  margin-bottom: 75px !important;
}

.marL75 {
  margin-left: 75px !important;
}

.padT75 {
  padding-top: 75px !important;
}

.padR75 {
  padding-right: 75px !important;
}

.padB75 {
  padding-bottom: 75px !important;
}

.padL75 {
  padding-left: 75px !important;
}

.marT80 {
  margin-top: 80px !important;
}

.marR80 {
  margin-right: 80px !important;
}

.marB80 {
  margin-bottom: 80px !important;
}

.marL80 {
  margin-left: 80px !important;
}

.padT80 {
  padding-top: 80px !important;
}

.padR80 {
  padding-right: 80px !important;
}

.padB80 {
  padding-bottom: 80px !important;
}

.padL80 {
  padding-left: 80px !important;
}

.marT85 {
  margin-top: 85px !important;
}

.marR85 {
  margin-right: 85px !important;
}

.marB85 {
  margin-bottom: 85px !important;
}

.marL85 {
  margin-left: 85px !important;
}

.padT85 {
  padding-top: 85px !important;
}

.padR85 {
  padding-right: 85px !important;
}

.padB85 {
  padding-bottom: 85px !important;
}

.padL85 {
  padding-left: 85px !important;
}

.marT90 {
  margin-top: 90px !important;
}

.marR90 {
  margin-right: 90px !important;
}

.marB90 {
  margin-bottom: 90px !important;
}

.marL90 {
  margin-left: 90px !important;
}

.padT90 {
  padding-top: 90px !important;
}

.padR90 {
  padding-right: 90px !important;
}

.padB90 {
  padding-bottom: 90px !important;
}

.padL90 {
  padding-left: 90px !important;
}

.marT95 {
  margin-top: 95px !important;
}

.marR95 {
  margin-right: 95px !important;
}

.marB95 {
  margin-bottom: 95px !important;
}

.marL95 {
  margin-left: 95px !important;
}

.padT95 {
  padding-top: 95px !important;
}

.padR95 {
  padding-right: 95px !important;
}

.padB95 {
  padding-bottom: 95px !important;
}

.padL95 {
  padding-left: 95px !important;
}

.marT100 {
  margin-top: 100px !important;
}

.marR100 {
  margin-right: 100px !important;
}

.marB100 {
  margin-bottom: 100px !important;
}

.marL100 {
  margin-left: 100px !important;
}

.padT100 {
  padding-top: 100px !important;
}

.padR100 {
  padding-right: 100px !important;
}

.padB100 {
  padding-bottom: 100px !important;
}

.padL100 {
  padding-left: 100px !important;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

font-weigh

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.fontWB {
  font-weight: bold !important;
}

.fontWN {
  font-weight: normal !important;
}

.fontUL {
  text-decoration: underline !important;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

揃え位置・インデント clearfix

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.alignC {
  text-align: center !important;
}

.alignL {
  text-align: left !important;
}

.alignR {
  text-align: right !important;
}

.alignJ {
  text-align: justify;
}

.textIndent {
  margin-left: 1.3em !important;
  text-indent: -1.3em !important;
}

.textIndentNsp {
  margin-left: 1em !important;
  text-indent: -1em !important;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*
* layout
*/
#header {
  width: 130px;
  position: fixed;
  top: 0;
  padding: 80px 0 0 0;
  left: 40px;
  z-index: 10000;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  #header {
    padding: 50px 0px 0 0px;
    left: 0;
    width: 100%;
    height: 109px;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

@media screen and (max-width: 480px) {
  #header {
    padding: 50px 0px 0 0px;
    left: 0;
    width: 100%;
    height: 109px;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

#header .header-logo {
  margin-bottom: 26px;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  #header .header-logo {
    width: 130px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  #header .header-logo {
    width: 130px;
    margin: 0 auto;
  }
}

#header .header-logo.active {
  -webkit-animation: drawer-close 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
          animation: drawer-close 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

#spMenuBtn {
  width: 20px;
  height: 20px;
  padding-top: 0px;
  font-size: 1.0rem;
  position: absolute;
  top: 0px;
  right: 0px;
  display: none;
  text-align: center;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  #spMenuBtn {
    display: block;
    top: 50px;
    right: 33px;
  }
}

@media screen and (max-width: 480px) {
  #spMenuBtn {
    display: block;
    top: 50px;
    right: 33px;
  }
}

.menu-trigger, .menu-trigger span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  top: 0px;
  width: 21px;
  height: 20px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  border-radius: 0px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0px;
  -webkit-animation: trigger 1.5s ease 0s infinite alternate;
  animation: trigger 1.5s ease 0s infinite alternate;
}

.menu-trigger span:nth-of-type(2) {
  top: 9px;
  -webkit-animation: trigger 1.5s ease 0.2s infinite alternate;
  animation: trigger 1.5s ease 0.2s infinite alternate;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
  -webkit-animation: trigger 1.5s ease 0.4s infinite alternate;
  animation: trigger 1.5s ease 0.4s infinite alternate;
}

.menu-trigger.active {
  height: 20px;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
  -webkit-animation: none;
          animation: none;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
  -webkit-animation: none;
          animation: none;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes trigger {
  0% {
    width: 0%;
  }
  30% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

@keyframes trigger {
  0% {
    width: 0%;
  }
  30% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

footer {
  clear: both;
  width: 100%;
  height: auto;
  margin: 0px auto;
  display: block;
  padding: 20px;
  position: relative;
  background: #fff;
  color: #000;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  footer {
    height: auto;
    min-height: 40px;
  }
}

div#footerPush {
  width: 100%;
  height: 40px;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  div#footerPush {
    min-height: 40px;
  }
}

.footer-cnt {
  width: 1024px;
  margin: 0 auto;
  padding-top: 80px;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .footer-cnt {
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 480px) {
  .footer-cnt {
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.copyright {
  font-size: 14px;
  font-size: 1.4rem;
  color: #000;
  text-align: center;
}

#floatingGoTop {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  color: #000;
  font-size: 4rem;
  border-radius: 25px;
  border: 1px solid #000;
  text-align: center;
  position: fixed;
  right: 3%;
  bottom: 100px;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 480px) {
  #floatingGoTop {
    bottom: 60px;
  }
}

#floatingGoTop .arrowTop {
  display: block;
  width: 16px;
  height: 16px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  left: 16px;
  top: 18px;
}

.ft-gotop {
  text-align: right;
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.ft-gotop i {
  margin-right: 10px;
  color: #3468bb;
}

.ft-gotop a {
  color: #555;
}

@media screen and (max-width: 834px) {
  .ft-gotop {
    display: none;
  }
  #floatingGoTop {
    display: none;
  }
}

.goTopUnit {
  float: right;
}

#content-wrap {
  margin: 0 auto;
  position: relative;
  width: 100%;
}

main {
  max-width: calc(960px + 210px);
  padding-left: 210px;
  padding-top: 140px;
  margin: 0 auto;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  main {
    width: 100%;
    padding-left: 8.8vw;
    padding-right: 8.8vw;
    padding-top: 110px;
  }
}

@media screen and (max-width: 480px) {
  main {
    width: 100%;
    padding-left: 8.8vw;
    padding-right: 8.8vw;
    padding-top: 110px;
  }
}

.cnt-l {
  width: 100%;
  margin: 0 auto 0;
  padding: 60px 0;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .cnt-l {
    width: 100%;
    padding: 60px 15px;
  }
}

@media screen and (max-width: 480px) {
  .cnt-l {
    padding: 60px 15px;
  }
}

.cnt-m {
  width: 100%;
  margin: 0 auto 0;
  padding: 80px 0;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .cnt-m {
    width: 100%;
    margin: 0 auto 0;
    padding: 80px 2%;
  }
}

@media screen and (max-width: 480px) {
  .cnt-m {
    padding: 30px 4%;
  }
}

#g-nav {
  width: 100%;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: trade-gothic-next,sans-serif;
  font-weight: 400;
  font-style: normal;
}

#g-nav ul li {
  margin-bottom: 16px;
}

#g-nav ul li a {
  color: #000;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

#g-nav ul li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  bottom: -4px;
}

#g-nav ul li a:hover::after {
  bottom: -2px;
  opacity: 1;
  visibility: visible;
}

#g-nav ul li:nth-last-child(3) {
  margin-top: 44px;
  margin-bottom: 8px;
}

#g-nav ul li:nth-last-child(3) i {
  font-size: 22px;
  font-size: 2.2rem;
  margin-right: 10px;
}

#g-nav ul li:nth-last-child(3) i::before {
  position: relative;
  top: 4px;
}

#g-nav ul li:nth-last-child(3) a::after {
  display: none;
}

#g-nav ul li:nth-last-child(2) {
  margin-bottom: 8px;
}

#g-nav ul li:nth-last-child(2) i {
  font-size: 22px;
  font-size: 2.2rem;
  margin-right: 10px;
}

#g-nav ul li:nth-last-child(2) i::before {
  position: relative;
  top: 2px;
}

#g-nav ul li:nth-last-child(2) a::after {
  display: none;
}

#g-nav ul li:last-child i {
  font-size: 22px;
  font-size: 2.2rem;
  margin-right: 10px;
}

#g-nav ul li:last-child i::before {
  position: relative;
  top: 2px;
}

#g-nav ul li:last-child a::after {
  display: none;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  #g-nav {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  #g-nav {
    width: 100%;
    display: none;
  }
}

.over-menu.active {
  display: block;
  -webkit-animation: drawer-open 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
          animation: drawer-open 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 1;
  z-index: 90;
}

.over-menu {
  z-index: -10;
  display: block;
  overflow-y: hidden;
  opacity: 0;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  background: #fff;
  height: 100%;
  padding: 0px;
  -webkit-animation: drawer-close 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
          animation: drawer-close 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.over-menu .menu-block {
  position: absolute;
  top: calc(50% - 75px);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .over-menu .menu-block {
    top: calc(20%);
  }
}

@media screen and (max-width: 480px) {
  .over-menu .menu-block {
    top: calc(20%);
  }
}

.over-menu .menu-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}

.over-menu .menu-block ul li {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0 7px;
}

.over-menu .menu-block ul li a {
  color: #707070;
  font-family: "Century Gothic", sans-serif;
  font-weight: bold;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .over-menu .menu-block ul li {
    width: 50%;
    padding: 20px 0;
  }
}

@media screen and (max-width: 480px) {
  .over-menu .menu-block ul li {
    width: 100%;
    padding: 5px 0;
  }
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .over-menu .menu-block ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 480px) {
  .over-menu .menu-block ul {
    display: block;
  }
  .over-menu .menu-block ul li {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

.over-menu .menu-block .over-menu-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.over-menu .menu-block .over-menu-sns div {
  padding: 0 10px;
}

.over-menu .menu-block .over-menu-sns div a {
  color: #707070;
}

@media screen and (max-width: 480px) {
  .over-menu .menu-block .over-menu-sns {
    font-size: 20px;
    font-size: 2rem;
  }
}

.over-menu .menu-block nav {
  margin-bottom: 40px;
}

.over-menu .menu-block h1 {
  font-family: "Century Gothic", sans-serif;
  font-size: 40px;
  font-size: 4rem;
}

@-webkit-keyframes drawer-open {
  0% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drawer-open {
  0% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes drawer-close {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    opacity: 0;
  }
}

@keyframes drawer-close {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    opacity: 0;
  }
}

/*
* module
*/
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

.btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 50px;
  margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
  .btn-area {
    display: block;
    text-align: center;
  }
}

a.btn {
  min-width: 140px;
  height: 41px;
  line-height: 41px;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  color: #fff;
  background: #000;
  position: relative;
  z-index: 0;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 480px) {
  a.btn {
    min-width: 40%;
    height: 41px;
    line-height: 41px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

a.btn::after {
  position: absolute;
  top: calc(50% - 6px);
  right: 15px;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
}

@media screen and (max-width: 480px) {
  a.btn::after {
    top: calc(50% - 6px);
    right: 5px;
  }
}

a.btn::before {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: #9a9a9a;
  content: '';
  -webkit-transition: .3s all;
  transition: .3s all;
  z-index: -1;
}

a.btn:hover {
  color: #fff;
}

a.btn:hover::before {
  width: 100%;
  left: 0%;
}

a.btn2 {
  font-size: 16px;
  font-size: 1.6rem;
  border-radius: 10px;
  padding: 6px 10px;
  display: inline-block;
  border: 1px solid #9b9b9b;
  color: #000;
  letter-spacing: .05em;
  -webkit-transition: .3s all;
  transition: .3s all;
}

a.btn2:hover {
  opacity: .8;
}

/**************************************
	見出し
**************************************/
.ttl {
  font-size: 20px;
  font-size: 2rem;
  font-family: trade-gothic-next,sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 30px;
  line-height: 1.6;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .ttl {
    font-size: 20px;
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 30px;
  }
}

.ttl a {
  font-family: trade-gothic-next,sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
}

.ttl a:hover {
  opacity: .7;
}

.ttl2 {
  font-size: 20px;
  font-size: 2rem;
  font-family: trade-gothic-next,sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
  line-height: 1.6;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .ttl2 {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .ttl2 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 10px;
  }
}

.ttl3 {
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

@media screen and (max-width: 480px) {
  .ttl3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.ttl4 {
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

@media screen and (max-width: 480px) {
  .ttl4 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sub-ttl {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
  .sub-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/**************************************
	リスト
**************************************/
.oListDefault li {
  list-style-type: decimal;
  margin-left: 23px;
  margin-bottom: 10px;
}

.oListDefault li ol {
  margin-top: 10px;
  margin-bottom: 20px;
}

.oListDefault li ol li {
  list-style-type: upper-roman;
}

.table-price-1 {
  width: 100%;
  border: 6px solid #bbb1a8;
}

.table-price-1 th {
  background: #bbb1a8;
  color: #fff;
  text-align: center;
  width: 50%;
  font-size: 24px;
  font-size: 2.4rem;
  padding: 20px 20px;
  font-weight: normal;
}

@media screen and (max-width: 480px) {
  .table-price-1 th {
    font-size: 20px;
    font-size: 2rem;
    padding: 10px;
  }
}

.table-price-1 td {
  font-size: 40px;
  font-size: 4rem;
  text-align: center;
  border: 6px solid #bbb1a8;
  padding: 30px 20px;
}

@media screen and (max-width: 480px) {
  .table-price-1 td {
    font-size: 22px;
    font-size: 2.2rem;
    padding: 10px;
  }
}

.table-price-2 {
  width: 100%;
  border: 1px solid #ccc;
}

.table-price-2 th {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 14px;
}

.table-price-2 td {
  width: 36%;
  border-bottom: 1px solid #ccc;
  padding: 20px;
}

@media screen and (max-width: 480px) {
  .table-price-2 td {
    text-align: center;
    display: block;
    width: 100%;
    border-right: 1px solid #ccc;
  }
  .table-price-2 td:first-child {
    background: #f3f3f3;
  }
}

.table-price-2 td:nth-child(2) {
  text-align: center;
  width: 28%;
}

@media screen and (max-width: 480px) {
  .table-price-2 td:nth-child(2) {
    display: block;
    width: 100%;
  }
}

.table-price-2 td:last-child {
  text-align: right;
}

@media screen and (max-width: 480px) {
  .table-price-2 td:last-child {
    text-align: center;
    display: block;
    width: 100%;
  }
}

.table01 {
  width: 100%;
}

.table01 thead, .table01 tfoot {
  background: #000;
  color: #fff;
  height: 70px;
  font-weight: bold;
}

.table01 td {
  height: 70px;
  vertical-align: middle;
  padding: 20px;
}

.table-form {
  margin-bottom: 40px;
}

.table-form th {
  width: 200px;
  background: #f2f2f2;
  text-align: center;
  vertical-align: middle;
  border-bottom: 2px solid #fff;
}

@media screen and (max-width: 960px) {
  .table-form tr {
    height: auto;
  }
  .table-form td {
    height: auto;
    display: block;
    width: 100%;
  }
  .table-form th {
    width: 100%;
    display: block;
    padding: 8px 0;
  }
}

@media screen and (max-width: 560px) {
  .table01 thead, .table01 tfoot {
    height: 40px;
  }
  .table01 td {
    height: 40px;
    vertical-align: middle;
    padding: 10px 10px;
    font-size: 1.3rem;
  }
  .table-form td {
    height: auto;
    display: block;
    width: 100%;
  }
}

/************************************
form
*************************************/
/*
reset
***********************/
button,
option,
select,
textarea,
input[type="button"],
input[type="submit"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="text"],
input[type="select"],
input[type="option"],
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
  outline: 0;
  margin: 0;
}

/* デフォルトのradio、checkboxは非表示 */
input[type=radio],
input[type=checkbox] {
  display: none;
}

/* for firefox */
select {
  text-indent: 0.01px;
  text-overflow: '';
}

/* for ie10 ie11 ie系のプルダウンの矢印を消す ie9は非対応 */
select::-ms-expand {
  display: none;
}

/*
input[type="text"] textarea
input[type="●●●"] 適宜追加
*/
textarea, select,
input[type="number"],
input[type="text"],
input[type="email"],
input[type="tel"] {
  padding: 10px 15px;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  height: 100px;
  /* お好みの高さに */
}

/* フォーカス時の色変更 */
textarea:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="text"]:focus {
  border: 1px solid #333;
}

/* ラジオボタン */
.form-radio input[type=radio] + label {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 9px 5px 8px 28px;
  margin-right: 0px;
}

.form-radio input[type=radio] + label::before,
.form-radio input[type=radio] + label::after {
  position: absolute;
  display: block;
  content: '';
  top: 50%;
  left: 0;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
}

.form-radio input[type=radio] + label::before {
  width: 22px;
  height: 22px;
  margin-top: -12px;
  background: #FFF;
  border: 1px solid #ccc;
}

.form-radio input[type=radio] + label::after {
  left: 6px;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  background: #f4f4f4;
}

.form-radio input[type=radio]:checked + label::after {
  background: #333;
}

.formBox500 {
  width: 500px;
}

@media screen and (max-width: 480px) {
  .formBox500 {
    width: 100%;
  }
}

.address-form {
  display: block;
}

.formBoxzip1 {
  width: 70px;
}

.formBoxzip2 {
  width: 80px;
}

.formBoxPref {
  width: 200px;
  margin-bottom: 10px;
}

/*wordpress contactform7*/
span.wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 9px 5px 8px 28px;
  margin-right: 0px;
}

span.wpcf7-list-item-label::before, span.wpcf7-list-item-label::after {
  position: absolute;
  display: block;
  content: '';
  top: 50%;
  left: 0;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
}

span.wpcf7-list-item-label::before {
  width: 22px;
  height: 22px;
  margin-top: -12px;
  background: #FFF;
  border: 1px solid #ccc;
}

span.wpcf7-list-item-label::after {
  left: 6px;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  background: #f4f4f4;
}

input[type=radio]:checked + span.wpcf7-list-item-label::after {
  background: #333;
}

input[type=radio].wpcf7c-conf:checked + span.wpcf7-list-item-label::after {
  background: #333;
}

input[type=radio]:checked.wpcf7c-conf + span.wpcf7-list-item-label::after {
  background: #333;
}

/* チェックボックス */
.form-checkbox label {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px 5px 8px 30px;
}

.form-checkbox label::before,
.form-checkbox label::after {
  position: absolute;
  display: block;
  content: '';
  top: 50%;
  left: 0;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.form-checkbox label::before {
  width: 22px;
  height: 22px;
  margin-top: -12px;
  background: #FFF;
  border: 2px solid #ccc;
}

.form-checkbox input[type=checkbox] + label::after {
  width: 24px;
  height: 24px;
  top: 2px;
}

.form-checkbox input[type=checkbox]:checked + label::after {
  position: absolute;
  display: block;
  content: '';
  background: url(../img/icon/icon_check.png) 0 0 no-repeat;
  background-size: 24px 24px;
  left: -1px;
  top: -1px;
}

.form-select, .form-select2, .form-select3 {
  display: block;
  position: relative;
  width: 500px;
  height: 38px;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.form-select:after, .form-select2:after, .form-select3:after {
  position: absolute;
  display: block;
  content: '';
  width: 0;
  height: 0;
  /* ここで下向き矢印指定　今回はCSSで */
  border-top: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  pointer-events: none;
  /* クリック出来るよう */
}

.form-select select, .form-select2 select, .form-select3 select {
  width: 100%;
  height: 35px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0 10px;
  border: none;
  position: relative;
}

.form-select4 {
  display: block;
  position: relative;
  width: 200px;
  height: 38px;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.form-select4:after {
  position: absolute;
  display: block;
  content: '';
  width: 0;
  height: 0;
  /* ここで下向き矢印指定　今回はCSSで */
  border-top: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  pointer-events: none;
  /* クリック出来るよう */
}

.form-select4 select {
  width: 100%;
  height: 35px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0 10px;
  border: none;
  position: relative;
}

@media screen and (max-width: 480px) {
  .form-select4 {
    display: block;
    position: relative;
    width: 48%;
    height: 38px;
    font-size: 14px;
    font-size: 1.4rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
  }
}

/* ie9対策 */
.form-select select:not(:target), .form-select2 select:not(:target), .form-select3 select:not(:target) {
  width: 120% \9;
}

@media screen and (max-width: 767px) {
  .form-select, .form-select2, .form-select3 {
    width: 100%;
  }
}

/*

button {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    width: 100%;
    height: 44px;
    display: block;
    position: relative;
    background: #111;
    color: #fff;
    text-align: center;
    border: 1px solid #111;
    cursor: pointer;
}

button:before {
    position: absolute;
    display: block;
    content: '';
    width: 98%;
    height: 3px;
    background: #ccc;
    bottom: -4px;
    left: 1%;
}

@media print,screen and (min-width: 1024px) {
    button {
        -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
        -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
        -ms-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
        transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }
    button:hover {
        color: #111;
        background: #fff;
    }
}
*/
/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  color: #ccc;
  font-size: 12px;
  font-size: 1.2rem;
}

/* Firefox 18- */
:-moz-placeholder {
  color: #ccc;
  opacity: 1;
  font-size: 12px;
  font-size: 1.2rem;
}

/* Firefox 19+ */
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
  font-size: 12px;
  font-size: 1.2rem;
}

/* IE 10+ */
:-ms-input-placeholder {
  color: #ccc;
  font-size: 12px;
  font-size: 1.2rem;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

.form-txtarea-L {
  width: 500px !important;
  height: 300px !important;
}

textarea.wpcf7c-conf {
  background: #fff;
  border: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
  .form-txtarea-L {
    width: 100% !important;
    height: 300px !important;
  }
}

#searchAddress {
  border-radius: 3px;
  background: #f8f8f8;
  border: #a6a6a6 1px solid;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  margin-left: 20px;
}

@media screen and (max-width: 480px) {
  #searchAddress {
    font-size: 16px;
    font-size: 1.6rem;
    margin-left: 0;
    display: block;
    margin: 10px 0;
  }
}

span.wpcf7-not-valid-tip {
  margin-top: 10px;
}

/*
* pages
*/
#top-vision .imgs {
  margin-bottom: 50px;
}

#top-vision .imgs img {
  width: 100%;
  height: auto;
}

#top-vision p {
  line-height: 2.2;
  margin-bottom: 10px;
}

#menu-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 480px) {
  #menu-price {
    display: block;
  }
}

#menu-price ul {
  width: 260px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 480px) {
  #menu-price ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#menu-price ul li {
  margin-bottom: 20px;
  cursor: pointer;
}

#menu-price ul li:first-child {
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  #menu-price ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 3px;
  }
  #menu-price ul li::after {
    content: '/';
    padding-left: 3px;
    display: inline-block;
  }
  #menu-price ul li:last-child::after {
    display: none;
  }
}

#menu-price ul li span {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

#menu-price ul li span::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  bottom: -2px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

#menu-price ul li span:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

#menu-price div {
  font-size: 14px;
  font-size: 1.4rem;
  display: none;
}

#menu-price div:nth-of-type(1) {
  display: block;
}

#menu-price div p {
  margin-bottom: 20px;
}

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

.reservation-box p {
  line-height: 2.2;
  margin-bottom: 10px;
}

.reservation-box p:first-child {
  margin-bottom: 30px;
}

.reservation-box h3 {
  margin-bottom: 10px;
}

.reservation-box div {
  width: 482px;
}

.reservation-box .btn-area-app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
  width: 300px;
}

.reservation-box .btn-area-app a {
  display: block;
  width: 140px;
  margin-right: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
  .reservation-box .btn-area-app a {
    width: 40%;
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .reservation-box {
    display: block;
  }
  .reservation-box div {
    width: 100%;
    margin-top: 30px;
  }
}

@media screen and (max-width: 480px) {
  .reservation-box {
    display: block;
  }
  .reservation-box div {
    width: 100%;
    margin-top: 30px;
  }
}

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

@media screen and (min-width: 481px) and (max-width: 896px) {
  .salon-wrap {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .salon-wrap {
    display: block;
  }
}

.salon-wrap > div {
  width: 50%;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .salon-wrap > div {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .salon-wrap > div {
    width: 100%;
  }
}

.salon-wrap ul {
  margin-top: 40px;
}

.salon-wrap ul li {
  margin-bottom: 40px;
}

.salon-wrap ul li h1 {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.salon-wrap a.gglMap-Btn {
  font-size: 12px;
  font-size: 1.2rem;
  background-color: #727171;
  color: #fff;
  padding: 2px 6px;
}

#topic-sec {
  margin-bottom: 140px;
  margin-top: 140px;
}

#ourdesign-sec {
  margin-bottom: 140px;
}

#menu-sec, #staff-sec, #olto-sec, #reservation-sec {
  margin-bottom: 140px;
}

.reservation-info-area {
  position: relative;
}

.reservation-info-area .btn-area-app {
  position: absolute;
  top: 330px;
  right: -10px;
}

@media screen and (max-width: 480px) {
  .reservation-info-area {
    position: relative;
  }
  .reservation-info-area .btn-area-app {
    position: inherit;
    top: auto;
    right: 0px;
  }
}

/**************************************
	汎用
**************************************/
a img {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

a img:hover {
  opacity: 0.8;
}

.img {
  max-width: 100%;
  height: auto;
}

.white-area-box {
  width: 800px;
  background: #fff;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .white-area-box {
    width: 98%;
    padding: 30px 20px;
  }
}

@media screen and (max-width: 480px) {
  .white-area-box {
    width: 98%;
  }
}

.page-title {
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.05em;
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .page-title {
    top: 120px;
  }
}

.example {
  color: #666;
  font-size: 85%;
}

.note-txt {
  font-size: 1.2rem;
}

.note-color {
  color: #ff0000;
}

.super {
  vertical-align: super;
  font-size: 10px;
  font-size: 1rem;
}

.est {
  color: #ff0000;
  font-size: 1.2rem;
}

#loader-bg {
  background-color: #f3f4f5;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 10001;
}

#loader-bg.onLoad::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  width: 0;
  height: 1px;
  -webkit-animation: shutterOpen 1.6s forwards;
  animation: shutterOpen 1.6s forwards;
}

#loader-bg #loader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 300px;
  height: 100px;
}

#loader-bg #loader h1 {
  position: relative;
  font-size: 40px;
  font-size: 4rem;
  font-family: "Century Gothic", sans-serif;
  color: #fbb9af;
  height: 40px;
  overflow: hidden;
}

#loader-bg #loader h1 span {
  font-size: 40px;
  font-size: 4rem;
  font-family: "Century Gothic", sans-serif;
  height: 40px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  display: block;
  overflow: hidden;
}

#loader-bg #loader h1 span.isPlay {
  -webkit-animation-name: play2;
          animation-name: play2;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
          animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**************************************
	keyframes
**************************************/
@-webkit-keyframes anime-1 {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
@keyframes anime-1 {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@-webkit-keyframes play2 {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@keyframes play2 {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@-webkit-keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

/**************************************
	お知らせ
**************************************/
.news-list a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  padding: 5px 0;
}

.news-list a:hover {
  background: #f7f7f7;
}

@media screen and (max-width: 480px) {
  .news-list a {
    display: block;
    margin-bottom: 70px;
  }
}

.news-list li .date {
  width: 130px;
}

@media screen and (max-width: 480px) {
  .news-list li .date {
    width: 100%;
  }
}

.news-list li .title {
  width: calc(100% - 130px);
}

@media screen and (max-width: 480px) {
  .news-list li .title {
    width: 100%;
  }
}

.news-list-wrap {
  margin-bottom: 100px;
}

.news-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.news-time time::after {
  content: '|';
  padding-left: 10px;
}

.news-time a {
  color: #000;
  padding: 0 10px;
}

.archive-list-area {
  width: 42%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  float: right;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  .archive-list-area {
    width: auto;
    margin-bottom: 20px;
  }
}

.news-body p {
  margin-bottom: 24px;
  line-height: 1.8;
}

/**************************************
	staff
**************************************/
#staff-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  #staff-wrap {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  #staff-wrap {
    display: block;
  }
}

#staff-wrap .staff-name {
  width: 100%;
}

#staff-wrap .staff-name li {
  line-height: 1.6;
  margin-bottom: 20px;
}

#staff-wrap .staff-name li span {
  display: inline-block;
}

#staff-wrap .staff-name li span.name-position {
  width: 200px;
}

@media screen and (max-width: 480px) {
  #staff-wrap .staff-name li span.name-position {
    width: 100%;
  }
}

#staff-wrap .staff-name li span.name-kana {
  width: 100px;
}

#staff-wrap .staff-name li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
}

#staff-wrap .staff-name li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  bottom: -2px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

#staff-wrap .staff-name li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  #staff-wrap .staff-photo {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  #staff-wrap .staff-photo {
    margin-bottom: 30px;
  }
}

#staff-wrap .staff-photo li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 420px;
}

@media screen and (max-width: 480px) {
  #staff-wrap .staff-photo li {
    width: 100%;
  }
}

#staff-wrap .staff-photo li .ph-area {
  width: 180px;
  margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
  #staff-wrap .staff-photo li .ph-area {
    width: 40%;
  }
}

#staff-wrap .staff-photo li .ph-caption {
  width: 220px;
}

@media screen and (max-width: 480px) {
  #staff-wrap .staff-photo li .ph-caption {
    width: 55%;
  }
}

#staff-wrap .staff-photo li .ph-caption .name-position {
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 14px;
}

#staff-wrap .staff-photo li .ph-caption .name-kana {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

#staff-wrap .staff-photo li .ph-caption .name-romaji {
  display: block;
  font-size: 11px;
  font-size: 1.1rem;
}

#staff-wrap .staff-cnt {
  width: 530px;
}

@media screen and (min-width: 481px) and (max-width: 896px) {
  #staff-wrap .staff-cnt {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #staff-wrap .staff-cnt {
    width: 100%;
  }
}

#staff-wrap .staff-cnt li {
  display: none;
}

#staff-wrap .staff-cnt li:first-child {
  display: block;
}

#staff-wrap .staff-cnt p {
  margin-bottom: 20px;
}

/**************************************
	topic
**************************************/
.topic-txt p {
  line-height: 2;
}

.topic-txt p img {
  width: auto;
  height: auto;
}

/**************************************
	olto
**************************************/
#olto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#olto > div {
  width: 50%;
}

#olto > div:last-child {
  padding-top: 80px;
}

@media screen and (max-width: 480px) {
  #olto > div:last-child {
    padding-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  #olto > div {
    width: 100%;
  }
}

#olto h2 {
  width: 150px;
  margin-bottom: 40px;
}

#olto p {
  line-height: 1.8;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 100px;
  letter-spacing: .05em;
}

@media screen and (max-width: 480px) {
  #olto p {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  #olto {
    display: block;
  }
}

/**************************************
	our design
**************************************/
.design-list li {
  margin-bottom: 100px;
}

.design-head {
  margin-bottom: 100px;
}

.design-head h3 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.design-head h4 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.design-head p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
}

/**************************************
	プライバシー
**************************************/
.privacy section {
  margin-bottom: 20px;
}

.privacy div {
  padding: 10px 20px;
}

@media screen and (max-width: 480px) {
  .privacy div {
    padding: 10px 10px;
  }
}

.privacy h2 {
  font-size: 20px;
  font-size: 2rem;
  background: #eee;
  padding: 10px 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
  .privacy h2 {
    padding: 10px 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.privacy h3 {
  font-size: 20px;
  font-size: 2rem;
  background: #eee;
  padding: 10px 20px;
  margin-bottom: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .privacy h3 {
    padding: 10px 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.privacy li {
  margin-bottom: 10px;
  list-style: disc;
  margin-left: 20px;
}

/**************************************
	ページナビゲーション
**************************************/
/*wp-pagenavi base*/
.wp-pagenavi {
  clear: both;
  text-align: center;
  margin-bottom: 40px;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #333;
  background-color: #ebebeb;
  border: solid 1px #e0e0d2;
  padding: 8px 15px !important;
  margin: 0 2px;
  white-space: nowrap;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  color: #FFF;
  background-color: #999;
  border-color: #999 !important;
}

.wp-pagenavi span.current {
  color: #FFF;
  background-color: #000;
  border-color: #000 !important;
  font-weight: bold;
}

.wp-pagenavi .pages {
  display: none;
}

#pageNavHome {
  display: none;
}

#pageNavList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  margin-bottom: 20px;
}

#pageNavList > div {
  text-align: center;
  font-size: 1.2rem;
  margin: 0 4px;
}

#pageNavList > div a {
  text-decoration: none;
  width: 130px;
  height: 30px;
  color: #000;
  padding-top: 5px;
  background: #ebebeb;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 25px;
}

@media screen and (max-width: 896px) {
  .first {
    display: none;
  }
  .last {
    display: none;
  }
  .extend {
    display: none;
  }
  .page {
    display: none;
  }
  .current {
    display: none;
  }
  .wp-pagenavi {
    width: 100%;
    background: #ebebeb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #wp-pagenaviWrap {
    position: relative;
    background: #fff;
    width: 100%;
    height: 45px;
    line-height: 45px;
  }
  .wp-pagenavi a.previouspostslink {
    display: block;
    width: 33%;
    height: 45px;
    padding: 0px 0px !important;
    margin: 0 0px;
    border-radius: 0px;
    border: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    left: 0;
  }
  .wp-pagenavi a.nextpostslink {
    display: block;
    width: 33%;
    height: 45px;
    padding: 0px 0px !important;
    margin: 0 0px;
    border-radius: 0px;
    border: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    right: 0;
  }
  #pageNavHome {
    display: block;
    position: absolute;
    width: 34%;
    top: 0;
    left: 33%;
    background-color: #ebebeb;
  }
  #pageNavHome a {
    text-align: center;
    display: block;
    width: 100%;
    height: 45px;
    padding: 0px 0px;
    margin: 0 0px;
    border-radius: 0px;
    border: none;
    border-left: solid 1px #e0e0d2;
    border-right: solid 1px #e0e0d2;
    text-decoration: none;
    color: #666;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #pageNavList {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
    margin-bottom: 0px;
  }
  #pageNavList > div {
    width: 33%;
    text-align: center;
    font-size: 1.2rem;
    margin: 0 0px;
  }
  #pageNavList > div:nth-child(2) {
    border-left: solid 1px #e0e0d2;
    border-right: solid 1px #e0e0d2;
    width: 34%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #pageNavList > div a {
    text-decoration: none;
    width: 100%;
    height: 45px;
    color: #666;
    padding-top: 14px;
    background: #ebebeb;
    display: block;
    border-radius: 0px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.form-info-box {
  margin-bottom: 40px;
}

/* =========================================== */
/* TextアニメーションCSS コード */
/* =========================================== */
.logo0 {
  stroke: #000;
  /* 文字色 */
  fill: none;
  /* 塗りつぶし無し */
  stroke-width: 2.5;
  /* 文字の太さ */
  stroke-dasharray: 4000;
  /* 破線の間隔 */
  stroke-dashoffset: 4000;
  /* 破線の開始位置 */
  animation: DASH 8s ease-in-out alternate 0s forwards;
  /* アニメーション */
  -webkit-animation: DASH 8s ease-in-out alternate 0s forwards;
}

.logo1 {
  stroke: #000;
  fill: none;
  stroke-width: 2.5;
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  animation: DASH 8s ease-in-out alternate 0s forwards;
  animation-delay: 3s;
  -webkit-animation: DASH 8s ease-in-out alternate 0s forwards;
  -webkit-animation-delay: 3s;
}

.logo2 {
  stroke: #000;
  fill: none;
  stroke-width: 1;
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  animation: DASH 1s ease-in-out alternate 0s forwards;
  animation-delay: 4s;
  -webkit-animation: DASH 1s ease-in-out alternate 0s forwards;
  -webkit-animation-delay: 4s;
}

@keyframes DASH {
  0% {
    stroke-dashoffset: 4000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes DASH {
  0% {
    stroke-dashoffset: 4000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

#svg-animation .cls-1, #svg-animation .cls-2, #svg-animation .cls-3 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 762.06;
  /* この行を追加 */
  stroke-dashoffset: 762.06;
  /* この行を追加 */
}

#svg-animation .cls-1 {
  stroke-width: 14px;
}

#svg-animation .cls-2 {
  stroke-width: 24px;
}

#svg-animation .cls-3 {
  stroke-width: 30px;
}
/*# sourceMappingURL=style.css.map */