@charset "UTF-8";
/*===============================

    base

================================*/
html {
  font-size: 16px;
}

@media screen and (max-width: 320px) {
  html {
    font-size: 13px;
  }
}

@media screen and (min-width: 600px) {
  html {
    font-size: 32px;
  }
}

body {
  font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic','sans-serif';
  background-color: #121214;
}

a {
  text-decoration: none;
}

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

p {
  line-height: 1.5;
}

/*===============================

    module

================================*/
.color-primary {
  color: #EA8B00;
}

.bgColor-primary {
  background-color: #EA8B00;
}

.color-secondary {
  color: #FF6B00;
}

.bgColor-secondary {
  background-color: #FF6B00;
}

.color-primarylinear {
  background: -webkit-gradient(linear, right top, left top, from(#FF6B00), to(#EA8B00));
  background: -webkit-linear-gradient(right, #FF6B00 0%, #EA8B00 100%);
  background: linear-gradient(270deg, #FF6B00 0%, #EA8B00 100%);
}

.color-primarylinearCenter {
  background: -webkit-gradient(linear, right top, left top, color-stop(7.04%, #EA8B00), color-stop(51.32%, #FF6B00), color-stop(92.43%, #EA8B00));
  background: -webkit-linear-gradient(right, #EA8B00 7.04%, #FF6B00 51.32%, #EA8B00 92.43%);
  background: linear-gradient(270deg, #EA8B00 7.04%, #FF6B00 51.32%, #EA8B00 92.43%);
}

.color-strength {
  color: #AF41E1;
}

.bgColor-strength {
  background-color: #AF41E1;
}

.color-needs {
  color: #00A6A6;
}

.bgColor-needs {
  background-color: #00A6A6;
}

.textShadow {
  text-shadow: 0px 0px 4px #000000;
}

.boldTxt {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}

.anton {
  font-family: 'Anton', sans-serif;
  letter-spacing: 4px;
}

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

.mb-1 {
  margin-bottom: 1rem;
}

.inner {
  max-width: 768px;
  margin: auto;
  padding: 0 14px;
}

.sp {
  display: block;
}

/*===============================

    parts

================================*/
.logoWrap {
  text-align: center;
}

.logo {
  display: inline-block;
  text-align: center;
  color: #FFFFFF;
}

.logo .serviceName {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: -1px;
}

.logo .subText {
  font-size: 10px;
  padding: 3px;
  margin-top: 4px;
}

.logo img {
  vertical-align: middle;
}

.navMenu {
  display: none;
}

.navMenu a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  display: block;
  padding: 1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navMenu a:hover {
  color: #EA8B00;
}

.spNavMenu {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 62px;
  left: 0;
  background-color: rgba(18, 18, 20, 0.85);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: ease .3s;
  transition: ease .3s;
  z-index: 1000;
}

.spNavMenu.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.spNavMenu li + li {
  border-top: solid #FFFFFF 2px;
}

.spNavMenu li:last-child {
  border-bottom: solid 2px #FFFFFF;
}

.spNavMenu a {
  padding: 1rem;
  display: block;
  color: #FFFFFF;
  font-size: 16px;
}

.navToggle .navToggleIcon {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #FFFFFF;
  -webkit-transition: ease .3s;
  transition: ease .3s;
}

.navToggle .navToggleIcon:nth-child(1) {
  top: 0;
}

.navToggle .navToggleIcon:nth-child(2) {
  margin: 8px 0;
}

.navToggle .navToggleIcon:nth-child(3) {
  top: 0;
}

.navToggle.open .navToggleIcon:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navToggle.open .navToggleIcon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

.navToggle.open .navToggleIcon:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.btnArea {
  text-align: center;
}

.btn {
  display: inline-block;
  color: #FFFFFF;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  padding: 1.688em 1rem;
  width: 100%;
  -webkit-box-shadow: 0px 0px 5px #EA8B00;
  box-shadow: 0px 0px 5px #EA8B00;
}

.aboutListing.inner {
  padding: 2rem 28px;
}

.aboutListing .btn {
  color: #EA8B00;
  border: solid 2px #EA8B00;
  padding: 1.125em 1rem;
  -webkit-box-shadow: initial;
  box-shadow: initial;
  position: relative;
}

.aboutListing .btn::after {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f078";
  font-size: 1em;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.aboutListing .acdTab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  color: #ffffff;
}

.aboutListing .acdTab input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.aboutListing .acdTab input:checked ~ .acdTabContent {
  max-height: 50em;
}

.aboutListing .acdTab input:checked + label::after {
  content: "\f077";
}

.aboutListing .acdTab label {
  position: relative;
  display: block;
  cursor: pointer;
}

.aboutListing .acdTab label::after {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.aboutListing .acdTab .acdTabContent {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.35s;
  transition: max-height 0.35s;
  color: #333333;
  background: #FFFFFF;
}

.aboutListing .acdTab .acdTabContent p {
  margin: 1em;
}

.offer {
  padding: 3.5rem 0;
  color: #333333;
  font-weight: bold;
}

.offer .offerList {
  font-size: 1.625rem;
}

.offer .offerList li {
  position: relative;
  padding: 0.692em 0 0.692em 1.5em;
  z-index: 2;
}

.offer .offerList li + li {
  margin-top: 3rem;
}

.offer .offerList li .num {
  font-size: 5rem;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.offer .offerList li .overlap {
  color: rgba(51, 51, 51, 0.16);
  position: relative;
  padding: 0 1em;
}

.offer .offerList li .overlap .overlapText {
  font-size: 2.625rem;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
}

.cardSet.flexbox {
  margin: -0.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cardSet.flexbox .card {
  margin: 0.5rem;
}

.cardSet .card {
  text-align: center;
  padding: 1rem;
}

.headding-typeA {
  margin-left: -14px;
  line-height: 1;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}

.headding-typeA .headding-typeAInner {
  padding: 1rem 14px;
}

.headding-typeA::after {
  content: "";
  width: 1em;
  background-color: #FF6B00;
  -webkit-transform: skewX(15deg);
  transform: skewX(15deg);
  margin-left: -0.6em;
  z-index: -1;
}

.headding-typeA.bgColor-primary::after {
  border-color: transparent transparent transparent #EA8B00;
}

.headding-typeB {
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  color: #FFFFFF;
  padding: 1em 14px;
  position: relative;
  margin-bottom: 3.5rem;
}

.headding-typeB::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 28px 0 28px;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.headding-typeC {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  color: #FFFFFF;
  padding: 1em 14px;
  position: relative;
  margin-bottom: 3.5rem;
}

.headding-typeC::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 50vw 0 50vw;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-color: #EA8B00 transparent transparent transparent;
}

.headding-typeD {
  color: #FFFFFF;
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding: 1rem 0;
}

.headding-typeD:before, .headding-typeD::after {
  content: "";
  display: block;
  position: absolute;
}

.headding-typeD::after {
  width: 100%;
  height: 0;
  padding-top: 5.8479%;
  background-image: url(../images/headding_typeD.svg);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -1rem;
  left: 0;
}

.list {
  list-style-type: disc;
  margin-bottom: 3.5rem;
  padding-left: 1.5em;
}

.list li {
  line-height: 1.5;
  position: relative;
}

.list li + li {
  margin-top: 1em;
}

.checkList {
  margin-bottom: 3.5rem;
}

.checkList li {
  line-height: 1.5;
  padding-left: 1.5em;
  position: relative;
}

.checkList li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f14a";
  position: absolute;
  top: 0;
  left: 0;
}

.checkList li + li {
  margin-top: 1em;
}

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

.hukidashi::before, .hukidashi::after {
  content: "";
  display: block;
  width: 0.25rem;
  background-color: #FFFFFF;
}

.hukidashi::before {
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
  margin-right: 0.5em;
}

.hukidashi::after {
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
  margin-left: 0.5em;
}

.marker-yellow {
  color: #FF0000;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(20%, yellow));
  background: -webkit-linear-gradient(transparent 80%, yellow 20%);
  background: linear-gradient(transparent 80%, yellow 20%);
  background-position: 0 -5px;
}

.marker-primary {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(20%, #EA8B00));
  background: -webkit-linear-gradient(transparent 80%, #EA8B00 20%);
  background: linear-gradient(transparent 80%, #EA8B00 20%);
  background-position: 0 -5px;
}

/*===============================

    space

================================*/
#main {
  padding-top: 62px;
}

#firstView,
#point {
  padding: 3.5rem 0;
}

#strength,
#needs,
#service,
#pricePlan,
#contact {
  padding-bottom: 3.5rem;
}

#closing {
  padding-top: 3.5rem;
}

/*===============================

    section

================================*/
#siteHeader {
  width: 100%;
  padding: 1rem;
  border-bottom: solid 3px #FFFFFF;
  background-color: #121214;
  position: fixed;
  z-index: 5;
}

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

#siteHeader .logo .serviceName {
  font-size: 1.625rem;
  text-align: left;
}

#siteHeader .logo .serviceName img {
  width: 200px;
}

#firstView {
  color: #FFFFFF;
  background-image: url(../images/bg_top.jpg);
  background-position: center;
  background-size: cover;
}

#firstView .headding-typeA {
  margin-bottom: 1rem;
}

#firstView .topText {
  font-size: 2.625rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}

#firstView .topImage {
  margin-bottom: 2rem;
}

#firstView h1 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

#firstView h1 .hukidashi {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

#firstView h1 .hukidashi::before, #firstView h1 .hukidashi::after {
  background-color: #AF41E1;
}

#introduction .offer {
  background-color: #FFFFFF;
}

#introduction .offer p {
  text-align: center;
  font-size: 2.625rem;
  margin-top: 3rem;
}

#introduction .logo {
  padding: 2rem 0;
}

#point {
  color: #FFFFFF;
  background-image: url(../images/bg_achievement.jpg);
  background-position: center;
  background-size: cover;
}

#point .cardSet.flexbox {
  margin: -0.5rem;
}

#point .cardSet.flexbox .card {
  padding: 0.5rem;
  margin: 0.5rem;
}

#point .cardSet .card {
  text-align: center;
  padding: 1rem;
}

#point h2 {
  margin-bottom: 2.5rem;
  letter-spacing: -1;
}

#point .strength {
  margin-bottom: 3rem;
}

#point .strength .cardSet .card {
  width: calc(33.333% - 1rem);
}

#point .strength .cardSet .card .icon {
  width: 70%;
  margin: auto;
}

#point .strength .cardSet .card .icon img {
  width: 100%;
}

#point .strength .cardSet .card p {
  font-size: 0.75rem;
  margin-top: 0.5em;
}

#point .achievement .cardSet .card .count span {
  font-size: 4.250rem;
  font-weight: bold;
  margin-right: 0.5rem;
}

#point .achievement .cardSet .card p {
  font-size: 0.875rem;
  margin-top: 0.5em;
}

#beforeAfter {
  color: #FFFFFF;
  font-weight: bold;
}

#beforeAfter h2 {
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  padding: 0.429em 14px;
  margin-bottom: 5rem;
}

#beforeAfter .headding-typeA {
  text-align: center;
  font-size: 3rem;
}

#beforeAfter .headding-typeA .headding-typeAInner {
  width: 100%;
}

#beforeAfter .headding-typeA .subText {
  display: block;
  font-size: 1rem;
}

#beforeAfter ul {
  padding: 2.5rem 0;
}

#beforeAfter ul li {
  font-size: 0.875rem;
}

#beforeAfter ul li + li {
  line-height: 1.5;
  margin-top: 0.5em;
}

#beforeAfter .before, #beforeAfter .after {
  background-position: center;
  background-size: cover;
  padding-top: 1rem;
}

#beforeAfter .before .content, #beforeAfter .after .content {
  width: 67%;
}

#beforeAfter .before {
  background-image: url(../images/bg_before.jpg);
  margin-bottom: 5rem;
}

#beforeAfter .before .content {
  margin-left: auto;
}

#beforeAfter .before .headding-typeA {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: -14px;
}

#beforeAfter .before .headding-typeA::after {
  display: none;
}

#beforeAfter .before .headding-typeA::before {
  content: "";
  width: 1em;
  background-color: #EA8B00;
  -webkit-transform: skewX(-15deg);
  transform: skewX(-15deg);
  margin-right: -0.6em;
  z-index: -1;
}

#beforeAfter .after {
  background-image: url(../images/bg_after.jpg);
}

.remove {
  color: #333333;
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  background-color: #FFFFFF;
  padding: 3.5rem 0;
}

.remove p {
  line-height: 2;
}

.remove .marker-yellow {
  font-size: 2.625rem;
}

.remove .marker-primary {
  font-size: 2.625rem;
}

.sales {
  overflow: hidden;
}

.sales .hukidashi {
  color: #FFFFFF;
  font-size: 1.625rem;
  font-weight: bold;
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.sales .image {
  background-color: #121214;
  background-image: url(../images/bg_sales.jpg);
  background-position: 95%;
  background-size: cover;
  min-height: 50vw;
  position: relative;
}

.sales .image .text {
  font-size: 11vw;
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 65%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#strength {
  background-color: #EAEFF2;
  background-image: url(../images/bg_strength.png);
}

#strength .headding-typeB {
  background-color: #AF41E1;
}

#strength .headding-typeB::after {
  border-color: #AF41E1 transparent transparent transparent;
}

#strength h3 {
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  position: relative;
  margin-bottom: 3.5rem;
}

#strength h3::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 28px 0 28px;
  border-color: #AF41E1 transparent transparent transparent;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#strength .checkList li::before {
  color: #AF41E1;
}

#needs {
  background-color: #EAEFF2;
  background-image: url(../images/bg_needs.jpg);
  background-position: center;
  background-size: cover;
}

#needs .headding-typeB {
  background-color: #00A6A6;
}

#needs .headding-typeB::after {
  border-color: #00A6A6 transparent transparent transparent;
}

#needs .voice {
  margin-bottom: 3.5rem;
}

#needs .voice li {
  line-height: 1.5;
  font-weight: bold;
  padding: 0 0.5em 0.5em 0;
  border-bottom: solid 3px rgba(51, 51, 51, 0.16);
  position: relative;
}

#needs .voice li + li {
  margin-top: 1.5em;
}

#needs .voice li span {
  color: #00A6A6;
  position: absolute;
  bottom: 0.5em;
  right: 0;
}

#needs p + p {
  margin-top: 1rem;
}

#service {
  color: #FFFFFF;
  overflow: hidden;
}

#service .logo {
  margin-bottom: 2.5rem;
}

#service .readText {
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
}

#service .resolution {
  background-color: #121214;
  background-image: url(../images/bg_service.jpg);
  background-position: center;
  background-size: cover;
}

#service .checkList {
  padding: 2.5rem 0;
}

#service .checkList li::before {
  color: #EA8B00;
}

#service .description {
  color: #EAEFF2;
}

#service .description p + p {
  margin-top: 1em;
}

.planNav li {
  width: 30%;
  margin: 0 0.5rem;
}

.sectionHeader {
  margin-bottom: 3rem;
  border-top: solid 0.5rem #EA8B00;
  text-align: center;
  color: #FFFFFF;
  padding: 1em;
  background-color: black;
  background-image: -webkit-repeating-linear-gradient(335deg, transparent, transparent 10px, #1f1f1f 10px, #1f1f1f 20px);
  background-image: repeating-linear-gradient(115deg, transparent, transparent 10px, #1f1f1f 10px, #1f1f1f 20px);
}

.sectionHeader .sectionTitle {
  font-size: 1.625rem;
}

.sectionHeader .subText {
  color: #546169;
  margin-top: 0.5rem;
}

.sectionHeader p {
  margin-top: 1rem;
}

#pricePlan {
  background-color: #FFFFFF;
}

#pricePlan .checkList li::before {
  color: #EA8B00;
}

#pricePlan .plan {
  margin-top: 3rem;
}

#pricePlan .plan .planHeader {
  text-align: center;
  background-color: black;
  background-image: -webkit-repeating-linear-gradient(335deg, black, black 10px, #1f1f1f 10px, #1f1f1f 20px);
  background-image: repeating-linear-gradient(115deg, black, black 10px, #1f1f1f 10px, #1f1f1f 20px);
}

#pricePlan .plan .planHeader .subText {
  color: #FFFFFF;
  font-weight: bold;
  padding: 0.5rem;
}

#pricePlan .plan .planHeader .planName {
  font-size: 1.625rem;
  color: #FFFFFF;
  padding: 1em 14px;
  margin-bottom: 2rem;
  line-height: 1.5;
}

#pricePlan .plan .planHeader .planName span {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  margin-top: 0.5rem;
  color: #546169;
}

#pricePlan .plan .headding {
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

#pricePlan .plan .checkList, #pricePlan .plan .list {
  margin-bottom: 2rem;
}

.priceBord {
  /* width: 80%; */
  margin: auto;
  padding: 0.5rem;
}

.priceBord .priceBordInner {
  padding: 1rem;
  background-color: #FFFFFF;
}

.priceBord .cost + .cost {
  margin-top: 1rem;
}

.priceBord .priceName {
  font-weight: bold;
  border: solid 1px #121214;
  padding: 0.5rem;
  text-align: center;
  max-width: 7em;
  margin: 0 auto;
}

.priceBord .price {
  font-size: 1.625rem;
  text-align: center;
  font-weight: bold;
  color: #FF0000;
}

.priceBord .price .arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4rem 0 0.4rem 0.7rem;
  border-color: transparent transparent transparent #FF0000;
}

.priceBord .price .priceTxt-01 {
  color: #121214;
  position: relative;
}

.priceBord .price .priceTxt-01::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #FF0000;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  margin-top: -0.1em;
}

.priceBord .price .priceTxt-02 {
  font-size: 1rem;
  color: #121214;
  margin-left: -0.4em;
}

.priceBord .price .priceTxt-03 {
  font-size: 1rem;
}

.priceBord .price .priceTxt-04 {
  font-size: 2.625rem;
}

.priceBord .price .priceTxt-05 {
  margin-left: -0.4em;
  font-size: 1rem;
}

.priceBord .price .annotation {
  font-size: 1rem;
  display: block;
  color: #333333;
}

#contact {
  background-color: #FFFFFF;
}

#contact .readPart {
  text-align: center;
}

#contact .readPart .bigText {
  color: #FF0000;
  font-size: 2.625rem;
}

#contact .readPart .headding-typeB {
  margin-top: 2rem;
  font-size: 1rem;
  background-color: #FF0000;
}

#contact .readPart .headding-typeB::after {
  border-color: #FF0000 transparent transparent transparent;
}

#contact .formPart {
  text-align: center;
}

#contact .formPart h3 {
  display: inline-block;
  color: #FFFFFF;
  background-color: #00A6A6;
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

#contact .formPart p {
  margin-top: 0.5rem;
}

.contactBtn {
  text-align: center;
}

.contactBtn .headding {
  margin-bottom: 0.5rem;
}

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

.contactBtn .flexbox li {
  margin: 0 0.5rem;
}

.contactBtn .mailBtn, .contactBtn .tellBtn, .contactBtn .lineBtn {
  display: block;
  height: 3rem;
  width: 3rem;
  font-size: 1.625rem;
  color: #FFFFFF;
  background-color: #00A6A6;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#contactFormArea {
  margin-top: 2rem;
}

#contactFormArea .contactBtn.head {
  margin-bottom: 1rem;
}

#contactFormArea .contactBtn.bottom {
  margin-top: 1rem;
}

#closing .headding-typeA {
  font-size: 2rem;
  color: #FFFFFF;
}

#closing .offer li {
  color: #FFFFFF;
}

#closing .offer li .overlap {
  color: rgba(255, 255, 255, 0.16);
}

#closing .sales {
  margin-bottom: 5rem;
}

#closing .btnArea {
  margin-bottom: 5rem;
}

#closing .btnArea .hukidashi {
  color: #FFFFFF;
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

#siteFooter {
  height: 50px;
  text-align: center;
  border-top: solid 3px #FFFFFF;
}

#siteFooter p {
  line-height: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .sp {
    display: none;
  }
  #main {
    padding-top: 87px;
  }
  #siteHeader {
    padding: 0.5rem 1rem;
  }
  #siteHeader .logo .serviceName img {
    width: 375px;
  }
  .navMenu {
    display: block;
  }
  .navToggle {
    display: none;
  }
  .aboutListing .acdTab .acdTabContent {
    font-size: 16px;
    font-weight: bold;
  }
  #contactFormArea .contactBtn.bottom {
    margin-top: -96px;
  }
}

/*# sourceMappingURL=maps/style.css.map */
