@charset "UTF-8";
/* 共通 style
*******************/
html {
  font-size: 62.5%;
  font-family: 'Noto Sans JP', sans-serif;
}
html * {
  box-sizing: border-box;
}

.notosans {
  font-family: 'Noto Sans JP', sans-serif;
}

.karla {
  font-family: 'Karla', sans-serif;
}

.oswald {
  font-family: 'Oswald', sans-serif;
}

p, a, li, dd, dt, th, td {
  font-size: 1.6rem;
  line-height: 1.555555;
}

.sp {
  display: none !important;
}

img {
  max-width: 100%;
}

.block {
  display: block;
}

.pc_block {
  display: block;
}

.container {
  overflow: hidden;
}

.lwrap {
  max-width: 1370px;
  margin: auto;
}
.lwrap2 {
  max-width: 1200px;
  margin: auto;
}
.lwrap3 {
  max-width: 1000px;
  margin: auto;
}

.tel a {
  pointer-events: none;
}

.telLink {
  pointer-events: none;
  text-decoration: none;
  color: #2E2E2E;
}

a {
  transition: .3s;
}
a:hover {
  opacity: .7;
}

/* float
*******************/
.fl-l {
  float: left;
}
.fl-r {
  float: right;
}

/* clear
*******************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* txt 揃え
*******************/
.alignCenter {
  text-align: center;
}
.alignLeft {
  text-align: left;
}
.alignRight {
  text-align: right;
}

/* flex
*******************/
.flex {
  display: flex;
}
.flex.col-2 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.col-2 .item {
  width: 48%;
}
.flex.col-2.space0 .item {
  width: calc(100% / 2);
}
.flex.col-3 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.col-3 .item {
  width: 32%;
}
.flex.col-3.space0 .item {
  width: calc(100% / 3);
}
.flex.col-4 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.col-4 .item {
  width: 23.5%;
}
.flex.col-4.space0 .item {
  width: calc(100% / 4);
}
.flex.col-5 {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.col-5 .item {
  width: 18.4%;
}
.flex.col-5.space0 .item {
  width: calc(100% / 5);
}

/* border
*******************/
.border-none {
  border: none !important;
}
.border-dashed-bottom {
  background-image: linear-gradient(to right, #042EA3, #042EA3 1rem, transparent 1rem, transparent 2rem);
  /* 幅2の線を作る */
  background-size: 2rem 1px;
  /* グラデーションの幅・高さを指定 */
  background-position: left bottom;
  /* 背景の開始位置を指定 */
  background-repeat: repeat-x;
}

/* カラー
*******************/
.c-white {
  color: #ffffff !important;
}
.c-black {
  color: #2E2E2E !important;
}
.c-blue {
  color: #042EA3 !important;
}
.c-yellow {
  color: #EAFC86 !important;
}
.c-red {
  color: #c81f21 !important;
}
.c-green {
  color: #5aaa3c !important;
}
.c-orange {
  color: #ff9020 !important;
}
.c-gray {
  color: #F1F1F1 !important;
}

/* bgカラー
*******************/
.bg-white {
  background-color: #ffffff !important;
}
.bg-black {
  background-color: #2E2E2E !important;
}
.bg-blue {
  background-color: #042EA3 !important;
}
.bg-yellow {
  background-color: #EAFC86 !important;
}
.bg-red {
  background-color: #c81f21 !important;
}
.bg-green {
  background-color: #5aaa3c !important;
}
.bg-orange {
  background-color: #ff9020 !important;
}
.bg-gray {
  background-color: #F1F1F1 !important;
}

/* border color
*******************/
.bc-white {
  border-color: #ffffff !important;
}
.bc-black {
  border-color: #2E2E2E !important;
}
.bc-blue {
  border-color: #042EA3 !important;
}
.bc-yellow {
  border-color: #EAFC86 !important;
}
.bc-red {
  border-color: #c81f21 !important;
}
.bc-green {
  border-color: #5aaa3c !important;
}
.bc-orange {
  border-color: #ff9020 !important;
}
.bc-gray {
  border-color: #F1F1F1 !important;
}

/* circle
*******************/
.circle {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 100%;
  background-color: #ffffff;
  border: 0.3rem solid #042EA3;
  text-align: center;
  vertical-align: middle;
  top: -.2rem;
  position: relative;
}
.circle > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}

span.circle {
  margin-right: .5rem;
}

/* square
*******************/
.square {
  display: inline-block;
  width: 10rem;
  height: 10rem;
  background-color: #F1F1F1;
  text-align: center;
  position: relative;
}
.square > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}

/* 角丸
*******************/
.round-15 {
  border-radius: 1.5rem;
}
.round-30 {
  border-radius: 3rem;
}
.round-60 {
  border-radius: 6rem;
}
.round-90 {
  border-radius: 9rem;
}
.round-100 {
  border-radius: 100%;
}

/* margin
*******************/
.mt-0 {
  margin-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mt-5 {
  margin-top: 0.5rem !important;
}

.mb-5 {
  margin-bottom: 0.5rem !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mt-25 {
  margin-top: 2.5rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mt-35 {
  margin-top: 3.5rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mt-45 {
  margin-top: 4.5rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.mt-50 {
  margin-top: 5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mt-55 {
  margin-top: 5.5rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mt-65 {
  margin-top: 6.5rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.mt-70 {
  margin-top: 7rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.mt-75 {
  margin-top: 7.5rem !important;
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

.mt-80 {
  margin-top: 8rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.mt-85 {
  margin-top: 8.5rem !important;
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

.mt-90 {
  margin-top: 9rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mt-95 {
  margin-top: 9.5rem !important;
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

.mt-105 {
  margin-top: 10.5rem !important;
}

.mb-105 {
  margin-bottom: 10.5rem !important;
}

.mt-110 {
  margin-top: 11rem !important;
}

.mb-110 {
  margin-bottom: 11rem !important;
}

.mt-115 {
  margin-top: 11.5rem !important;
}

.mb-115 {
  margin-bottom: 11.5rem !important;
}

.mt-120 {
  margin-top: 12rem !important;
}

.mb-120 {
  margin-bottom: 12rem !important;
}

.mt-125 {
  margin-top: 12.5rem !important;
}

.mb-125 {
  margin-bottom: 12.5rem !important;
}

.mt-130 {
  margin-top: 13rem !important;
}

.mb-130 {
  margin-bottom: 13rem !important;
}

.mt-135 {
  margin-top: 13.5rem !important;
}

.mb-135 {
  margin-bottom: 13.5rem !important;
}

.mt-140 {
  margin-top: 14rem !important;
}

.mb-140 {
  margin-bottom: 14rem !important;
}

.mt-145 {
  margin-top: 14.5rem !important;
}

.mb-145 {
  margin-bottom: 14.5rem !important;
}

.mt-150 {
  margin-top: 15rem !important;
}

.mb-150 {
  margin-bottom: 15rem !important;
}

/* padding
*******************/
.pd-0 {
  padding: 0rem !important;
  box-sizing: border-box;
}

.pd-5 {
  padding: 0.5rem !important;
  box-sizing: border-box;
}

.pd-10 {
  padding: 1rem !important;
  box-sizing: border-box;
}

.pd-15 {
  padding: 1.5rem !important;
  box-sizing: border-box;
}

.pd-20 {
  padding: 2rem !important;
  box-sizing: border-box;
}

.pd-25 {
  padding: 2.5rem !important;
  box-sizing: border-box;
}

.pd-30 {
  padding: 3rem !important;
  box-sizing: border-box;
}

.pd-35 {
  padding: 3.5rem !important;
  box-sizing: border-box;
}

.pd-40 {
  padding: 4rem !important;
  box-sizing: border-box;
}

.pd-45 {
  padding: 4.5rem !important;
  box-sizing: border-box;
}

.pd-50 {
  padding: 5rem !important;
  box-sizing: border-box;
}

.pd-55 {
  padding: 5.5rem !important;
  box-sizing: border-box;
}

.pd-60 {
  padding: 6rem !important;
  box-sizing: border-box;
}

.pd-65 {
  padding: 6.5rem !important;
  box-sizing: border-box;
}

.pd-70 {
  padding: 7rem !important;
  box-sizing: border-box;
}

.pd-75 {
  padding: 7.5rem !important;
  box-sizing: border-box;
}

.pd-80 {
  padding: 8rem !important;
  box-sizing: border-box;
}

.pd-85 {
  padding: 8.5rem !important;
  box-sizing: border-box;
}

.pd-90 {
  padding: 9rem !important;
  box-sizing: border-box;
}

.pd-95 {
  padding: 9.5rem !important;
  box-sizing: border-box;
}

.pd-100 {
  padding: 10rem !important;
  box-sizing: border-box;
}

.pd-105 {
  padding: 10.5rem !important;
  box-sizing: border-box;
}

.pd-110 {
  padding: 11rem !important;
  box-sizing: border-box;
}

.pd-115 {
  padding: 11.5rem !important;
  box-sizing: border-box;
}

.pd-120 {
  padding: 12rem !important;
  box-sizing: border-box;
}

.pd-125 {
  padding: 12.5rem !important;
  box-sizing: border-box;
}

.pd-130 {
  padding: 13rem !important;
  box-sizing: border-box;
}

.pd-135 {
  padding: 13.5rem !important;
  box-sizing: border-box;
}

.pd-140 {
  padding: 14rem !important;
  box-sizing: border-box;
}

.pd-145 {
  padding: 14.5rem !important;
  box-sizing: border-box;
}

.pd-150 {
  padding: 15rem !important;
  box-sizing: border-box;
}

/* box shadow
*******************/
.b-shadow {
  box-shadow: 0.5rem 0.5rem 0.4rem rgba(0, 0, 0, 0.2);
}

/* text shadow
*******************/
.t-shadow {
  text-shadow: 0.43rem 0.43rem 0.323rem rgba(0, 0, 0, 0.6);
}

/* marker
*******************/
.marker-yellow {
  background: linear-gradient(transparent 60%, #EAFC86 60%);
  padding: .3rem 1rem;
}

.header {
  border-top: 1.6rem solid #2E2E2E;
}
.header-fix {
  width: 100%;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  margin-top: 1.6rem;
}
.header-fix.fixed {
  background-color: #ffffff;
  margin-top: 0;
  padding: 0;
}
.header-fix.fixed .header-logo a {
  color: #2E2E2E;
}
.header-fix.fixed .nav-menu li.parrent {
  color: #2E2E2E;
}
.header-fix.fixed .nav-menu li.parrent::after {
  background-image: url("../img/common/ico-arrow-bottom-black.svg");
}
.header-fix.fixed .nav-menu li.tel a {
  padding: 3.1rem 1.5rem 3.1rem 4.5rem;
  background-image: url("../img/common/logo-tel-black.svg");
}
.header-fix.fixed .nav-menu a {
  color: #2E2E2E;
}
.header .lwrap {
  max-width: 1480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo a {
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-decoration: none;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  align-items: center;
}
.nav-menu li.tel {
  margin-left: 2rem;
}
.nav-menu li.tel a {
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1;
  background: url("../img/common/logo-tel-white.svg") no-repeat center left;
  background-size: 3.5rem;
  padding: 2.8rem 1.5rem 2.8rem 4.5rem;
}
.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  padding: 3rem 5.5rem;
  box-sizing: border-box;
  display: block;
}
.nav-menu .parrent {
  position: relative;
  cursor: pointer;
  padding: 3rem 1.5rem;
  color: #ffffff;
  transition: .3s;
}
.nav-menu .parrent::after {
  content: "";
  display: block;
  background: url("../img/common/ico-arrow-bottom-white.svg") no-repeat center;
  background-size: 100%;
  width: .9rem;
  height: .6rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(0%);
}
.nav-menu .parrent .child {
  position: absolute;
  left: -1rem;
  top: 130%;
  width: 28rem;
  background-color: #fff;
  color: #2E2E2E;
  pointer-events: none;
  opacity: 0;
  transition: .3s;
  padding: 3.5rem 3.5rem 11.5rem;
  cursor: auto;
}
.nav-menu .parrent .child a {
  color: #2E2E2E;
  font-size: 1.4rem;
  padding: 0;
}
.nav-menu .parrent .child .ttl {
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 2rem;
}
.nav-menu .parrent .child-menu {
  margin: 0 0 4.5rem;
}
.nav-menu .parrent .child-menu li {
  margin: 0 0 1.5rem;
}
.nav-menu .parrent .child-menu li:last-child {
  margin-bottom: 0;
}
.nav-menu .parrent:hover .child {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}
.nav-btn {
  display: none;
  width: 16.4rem;
  height: 13.1rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9;
  background-color: #2E2E2E;
  cursor: pointer;
}
.nav-btn span {
  position: absolute;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  width: 6.7rem;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all .5s;
  box-sizing: border-box;
  display: inline-block;
}
.nav-btn span:nth-of-type(1) {
  top: 3.9rem;
}
.nav-btn span:nth-of-type(2) {
  top: 6.4rem;
}
.nav-btn span:nth-of-type(3) {
  bottom: 3.9rem;
}
.nav-btn.active span:nth-of-type(1) {
  -webkit-transform: translateX(-50%) translateY(2.5rem) rotate(45deg);
  transform: translateX(-50%) translateY(2.5rem) rotate(45deg);
}
.nav-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.nav-btn.active span:nth-of-type(3) {
  -webkit-transform: translateX(-50%) translateY(-2.5rem) rotate(-45deg);
  transform: translateX(-50%) translateY(-2.5rem) rotate(-45deg);
}

body:not(.home) .header-logo a {
  font-size: 4.6rem;
}
body:not(.home) .header-fix .header-logo a {
  color: #2E2E2E;
}
body:not(.home) .header-fix .nav-menu a {
  color: #2E2E2E;
}
body:not(.home) .header-fix .nav-menu li.parrent {
  color: #2E2E2E;
}
body:not(.home) .header-fix .nav-menu li.parrent::after {
  background-image: url(../img/common/ico-arrow-bottom-black.svg);
}
body:not(.home) .header-fix .nav-menu li.tel a {
  color: #2E2E2E;
  background-image: url(../img/common/logo-tel-black.svg);
}

@media screen and (max-width: 1510px) {
  .header .lwrap {
    margin: 0 1.5rem;
  }
}
@media screen and (max-width: 1200px) {
  body:not(.home) .header-logo a {
    font-size: 4rem;
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .header {
    border-top: none;
  }
  .header-logo {
    position: absolute;
    top: 9rem;
    left: 6rem;
  }
  .header-logo a {
    font-size: 4rem;
  }
  .header-fix {
    margin-top: 0;
    padding: 0;
    position: relative;
  }
  .header-fix::before {
    content: "";
    width: 100%;
    height: 6rem;
    background-color: #2E2E2E;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
  .header-fix.fixed {
    background-color: transparent;
  }
  .header-fix.fixed .header-logo a {
    color: #ffffff;
  }
  .header-fix.fixed .nav-menu a {
    color: #ffffff;
  }

  .nav-btn {
    display: block;
  }
  .nav-wrap {
    width: 100%;
    height: 100vh;
    position: fixed;
    right: 0;
    top: -100vh;
    background-color: #2E2E2E;
    padding: 18.7rem 6rem 11.4rem;
    box-sizing: border-box;
    overflow: scroll;
    transition: .3s;
  }
  .nav-wrap.active {
    top: 0;
  }
  .nav-wrap .child {
    color: #ffffff;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    padding: 7.5rem 4.5rem;
  }
  .nav-wrap .child-menu {
    margin: 0 0 7rem 4.5rem;
  }
  .nav-wrap .child-menu li {
    margin: 0 0 2rem;
  }
  .nav-wrap .child-menu li:last-child {
    margin-bottom: 0;
  }
  .nav-wrap .child-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2.4rem;
  }
  .nav-wrap .child .ttl {
    font-size: 2.8rem;
    margin: 0 0 1.8rem;
  }
  .nav-menu {
    flex-wrap: wrap;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 8rem;
  }
  .nav-menu a {
    font-size: 3rem;
    padding: 0;
  }

  body:not(.home) .header-fix .header-logo a {
    color: #ffffff;
  }
  body:not(.home) .header-fix .nav-menu a {
    color: #ffffff;
  }
  body:not(.home) .header-fix .nav-menu li.parrent {
    color: #ffffff;
  }
  body:not(.home) .header-fix .nav-menu li.tel a {
    color: #ffffff;
  }
}
.footer {
  background-color: #2E2E2E;
  color: #ffffff;
  padding: 6rem 0 0;
  text-align: center;
}
.footer-logo {
  margin: 0 0 7rem;
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 1.5;
}
.footer-logo .small {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}
.footer > .lwrap {
  padding-bottom: 13rem;
}
.footer-nav li {
  margin: 0 0 3rem;
}
.footer-nav li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 2rem;
}
.footer-tel {
  font-size: 1.6rem;
  color: #ffffff;
  margin: 8rem 0 0;
}
.footer-tel a {
  text-decoration: none;
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 500;
}
.footer .border {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 3rem 0 4.5rem;
}
.footer .flex.col-3 {
  justify-content: center;
  max-width: 67.5rem;
  margin: auto;
  text-align: left;
}
.footer .flex.col-3 .item:nth-child(1) {
  margin-right: 3rem;
}
.footer .flex.col-3 .item .sub {
  font-weight: 700;
  margin: 0 0 1.5rem;
}
.footer .flex.col-3 .item li {
  margin: 0 0 1rem;
}
.footer .flex.col-3 .item li:last-child {
  margin-bottom: 0;
}
.footer .flex.col-3 .item li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.4rem;
}
.footer small {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-family: 'Karla', sans-serif;
  padding: 2rem 0;
  background-color: #ffffff;
  color: #2E2E2E;
}

.home .footer {
  margin: 37rem 0 0;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .footer {
    padding: 14rem 0 0;
  }
  .footer > .lwrap {
    padding-bottom: 14rem;
    margin: 0 8rem;
  }
  .footer-logo {
    margin: 0 0 11rem;
    font-size: 5.2rem;
  }
  .footer-logo .small {
    font-size: 2rem;
  }
  .footer-nav li {
    margin: 0 0 6.5rem;
    line-height: 1;
  }
  .footer-nav li:last-child {
    margin-bottom: 4.5rem;
  }
  .footer-nav li a {
    font-size: 3rem;
    line-height: 1;
  }
  .footer .border {
    padding: 13rem 0 7.5rem;
  }
  .footer .flex.col-3 {
    margin: 0 3rem;
    flex-wrap: wrap;
  }
  .footer .flex.col-3 .item {
    width: 100%;
    margin: 0 0 6.5rem;
  }
  .footer .flex.col-3 .item:last-child {
    margin-bottom: 0;
  }
  .footer .flex.col-3 .item .sub {
    margin: 0 0 2rem;
  }
  .footer .flex.col-3 .item ul {
    margin-left: 4rem;
  }
  .footer .flex.col-3 .item li {
    margin: 0 0 1.5rem;
  }
  .footer .flex.col-3 .item li a {
    font-size: 2.4rem;
  }
  .footer .flex.col-3 .item li a::before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: .2rem;
    background-color: #ffffff;
    vertical-align: middle;
    position: relative;
    top: -0.3rem;
    margin-right: 1rem;
  }
  .footer small {
    font-size: 2.6rem;
    padding: 3.8rem 0;
  }

  .home .footer {
    margin: 33rem 0 0;
  }
}
/* タイトル
*******************/
.ttl01 {
  font-size: 7rem;
  font-weight: 700;
  font-family: 'Karla', sans-serif;
  line-height: 1.35;
}
.ttl01 .small {
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
}

.ttl02 {
  font-family: 'Karla', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  padding: 0 0 2.5rem 1rem;
  border-bottom: 1px solid;
}
.ttl02 .small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-left: 2.5rem;
  vertical-align: middle;
  position: relative;
  top: -0.4rem;
}

.ttl03 {
  font-size: 2.6rem;
  font-weight: 500;
  padding: 0 1rem 0 1.5rem;
}

.ttl04 {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0rem .6rem 0rem 2.1rem;
  position: relative;
}
.ttl04::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 20px;
  position: absolute;
  left: 0;
  top: -1px;
  background-color: #2E2E2E;
}

/* テーブル
*******************/
.table01 {
  width: 100%;
  max-width: 93rem;
  margin: auto;
}
.table01 tr {
  border-bottom: 1px solid #DFDFDF;
}
.table01 tr:last-child {
  border-bottom: none;
}
.table01 th {
  text-align: right;
  width: 12.5rem;
  font-weight: 500;
  padding: 3rem 0;
  color: #2E2E2E;
  line-height: 2.5;
}
.table01 td {
  text-align: left;
  font-weight: 400;
  padding: 3rem 0 3rem 13rem;
  color: #2E2E2E;
  line-height: 2.5;
}

.backBtn {
  max-width: 1370px;
  margin: 37rem auto 2rem;
}
.backBtn a {
  text-decoration: none;
  color: #2E2E2E;
}
.backBtn a::before {
  content: "";
  display: inline-block;
  background: url("../img/common/ico-arrow-right.svg") center;
  background-size: 100%;
  width: .9rem;
  height: 1.6rem;
  transform: rotate(180deg);
  position: relative;
  top: .2rem;
  margin: 0 1rem 0 0;
}

.btn {
  text-align: center;
}
.btn a {
  display: inline-block;
  font-size: 1.4rem;
  text-decoration: none;
  text-align: center;
  color: #2E2E2E;
  border: 1px solid #2E2E2E;
  width: 32rem;
  border-radius: 1.1rem;
  padding: 2.35rem 0;
  background: url("../img/common/ico-arrow-right.svg") no-repeat center right 2.9rem;
  background-size: .8rem;
}
.btn.icoLeft a {
  background-image: url("../img/common/ico-arrow-left.svg");
  background-position: center left 2.5rem;
}

.home .mv {
  background: url("../img/top/mv.jpg") no-repeat center;
  background-size: cover;
}
.home .mv-inner {
  margin-bottom: 10rem;
}
.home .mv .lwrap2 {
  height: 80rem;
  display: flex;
  align-items: flex-end;
}
.home .mv h2 {
  font-size: 10rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: .068em;
}
.home .mv h2 .small {
  font-size: 2.4rem;
  display: block;
  letter-spacing: normal;
  margin: 0 0 1rem;
}
.home .cont01 {
  text-align: center;
  padding: 17rem 0 33rem;
  position: relative;
}
.home .cont01::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 72rem;
  height: 61rem;
  background-color: #F7F7F7;
  z-index: -1;
}
.home .cont01 .ttl {
  font-size: 7rem;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  margin: 0 0 8rem;
  position: relative;
}
.home .cont01 .ttl::before {
  content: "";
  width: 50%;
  height: 1px;
  background-color: #042EA3;
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%) translateX(0%);
}
.home .cont01 .ttl .bg-white {
  background-color: #ffffff;
  display: inline-block;
  padding: 0 2rem 0 13rem;
  line-height: 1;
  margin-left: -11rem;
  position: relative;
}
.home .cont01 .ttl .bg-white::before {
  content: "";
  display: block;
  width: 6.5rem;
  height: 8.6rem;
  background: url("../img/common/logo-01.svg") no-repeat center top;
  background-size: 100%;
  position: absolute;
  left: 5rem;
  top: -1.5rem;
}
.home .cont01 .ttl .small {
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
}
.home .cont01 p {
  font-size: 1.8rem;
  line-height: 1.77777;
}
.home .cont01 .sub {
  font-size: 2.7rem;
  font-weight: 500;
  margin: 0 0 3rem;
}
.home .cont01 .btn {
  margin: 12rem 0 0;
}
.home .cont02 {
  padding-bottom: 21rem;
}
.home .cont02 .lwrap2.flex {
  justify-content: space-between;
}
.home .cont02 .ttl01 {
  margin: 0 0 9rem;
}
.home .cont02 .btn {
  margin: 23rem 0 0;
  text-align: left;
}
.home .cont02 .item {
  position: relative;
}
.home .cont02 .item p {
  font-size: 1.8rem;
}
.home .cont02 .item .absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.home .cont02 .item:nth-child(1) {
  margin-top: 1.5rem;
}
.home .cont02 .item:nth-child(2) {
  margin-right: 3.5rem;
}
.home .cont03 .ttl01 {
  margin: 0 0 8rem;
}
.home .cont03 .ttl02 {
  margin: 0 0 6rem;
}
.home .cont03 .sub {
  font-size: 1.8rem;
  margin: 0 0 15rem 3rem;
}
.home .cont03 .anchorLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F7F7F7;
  padding: 5.5rem 0;
  margin: 0 0 12rem;
}
.home .cont03 .anchorLink > .karla {
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: 13.4rem;
}
.home .cont03 .anchorLink .link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18.6rem;
}
.home .cont03 .anchorLink .link li {
  margin-right: 6rem;
}
.home .cont03 .anchorLink .link li:last-child {
  margin-right: 0;
}
.home .cont03 .anchorLink .link a {
  font-size: 1.8rem;
  text-decoration: none;
  color: #2E2E2E;
  background: url("../img/common/ico-arrow-bottom-black.svg") no-repeat center right;
  background-size: 1.3rem;
  padding: 1rem 2.5rem;
}
.home .cont03 .itembox {
  margin: 0 0 21rem;
}
.home .cont03 .itembox .item {
  width: 48.5%;
  margin-bottom: 9rem;
}
.home .cont03 .itembox .item a {
  display: block;
  text-decoration: none;
  color: #2E2E2E;
}
.home .cont03 .itembox .item .img {
  line-height: 0;
  margin: 0 0 1.8rem;
}
.home .cont03 .itembox .item .img img {
  width: 100%;
}
.home .cont03 .itembox .item .txt {
  padding: 2rem 3rem 2rem 3.8rem;
  background: #F7F7F7 url("../img/common/ico-arrow-right.svg") no-repeat center right 2rem;
  background-size: .9rem;
  font-size: 2rem;
}
.home .cont03 .itembox .item .txt p {
  font-size: 2rem;
  font-weight: 500;
}

body:not(.home) .mv {
  margin: 8.7rem 0 2rem;
  height: 48.8rem;
}
body:not(.home) .mv h2 {
  font-size: 7rem;
  line-height: 1;
  position: relative;
  top: 15rem;
}
body:not(.home) .mv h2 .small {
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
  margin: 1.5rem 0 0;
}

.page-detail .ttlwrap {
  display: flex;
  align-items: center;
  padding: 0 0 2rem;
  border-bottom: 1px solid;
  margin: 0 0 11.8rem;
}
.page-detail .ttlwrap .sp-alignRight {
  margin-left: 3rem;
}
.page-detail .ttlwrap .small {
  font-size: 1.6rem;
  padding: .5rem 2.45rem;
  display: inline-block;
  border-radius: 1rem;
}
.page-detail .ttl04 {
  margin: 0 0 1rem;
}
.page-detail .itembox {
  justify-content: space-between;
  margin: 0 0 12.5rem;
}
.page-detail .itembox .item:nth-child(1) {
  width: 40.5%;
}
.page-detail .itembox .item:nth-child(2) {
  width: 57%;
}
.page-detail .itembox .item p {
  font-weight: 500;
}
.page-detail .required {
  background-color: #F7F7F7;
  padding: 3.6rem 3.8rem;
  margin: 0 0 15rem;
}
.page-detail .required .flex {
  justify-content: space-between;
  align-items: center;
}
.page-detail .required .flex .item:nth-child(1) {
  width: 30%;
  text-align: center;
}
.page-detail .required .flex .item:nth-child(2) {
  width: 60%;
  background-color: #ffffff;
  padding: 4.6rem 9rem 2.6rem;
}
.page-detail .required .flex .item p {
  font-size: 2rem;
  font-weight: 700;
}
.page-detail .required .flex .item li {
  display: inline-block;
  margin: 0 3.5rem 2rem 0;
  padding-left: 1rem;
  position: relative;
}
.page-detail .required .flex .item li::before {
  content: "";
  display: block;
  width: .4rem;
  height: .4rem;
  background-color: #2E2E2E;
  position: absolute;
  left: 0;
  top: 1rem;
  border-radius: 100%;
}
.page-detail .receipt {
  text-align: center;
}
.page-detail .receipt p {
  font-size: 1.8rem;
  font-weight: 500;
}
.page-detail .receipt p.tel {
  margin: 3rem 0 0;
}
.page-detail .receipt p.tel a {
  text-decoration: none;
  font-size: 4.1rem;
  color: #2E2E2E;
}
.page-detail .receipt p.small {
  font-size: 1.7rem;
}
.page-detail .receipt .btn {
  margin-top: 15rem;
}
.page-detail .backBtn {
  margin-top: 15rem;
}

.page-company .mv {
  height: 41rem !important;
  margin-bottom: 0 !important;
}
.page-company .backBtn {
  margin: 30rem auto 2rem;
}

@media screen and (max-width: 1600px) {
  .home .cont01::before {
    width: 45vw;
  }
}
@media screen and (max-width: 1400px) {
  .lwrap {
    margin: 0 1.5rem;
  }

  .backBtn {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .page-company .backBtn {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
@media screen and (max-width: 1230px) {
  .lwrap2 {
    margin: 0 1.5rem;
  }
}
@media screen and (max-width: 1080px) {
  .home .cont03 .anchorLink > .karla {
    margin-left: 11vw;
  }
  .home .cont03 .anchorLink .link {
    margin-right: 11vw;
  }
  .home .cont03 .anchorLink .link li {
    margin-right: 2vw;
  }
}
@media screen and (min-width: 751px) and (max-width: 1010px) {
  body:not(.home) .header-logo a {
    font-size: 4.1vw;
  }

  .header-logo a {
    font-size: 4.1vw;
  }

  .nav-menu a {
    padding: 3rem 2rem;
  }

  .nav-menu li.tel {
    margin-left: 1rem;
  }

  .nav-menu li.tel a {
    font-size: 2.2rem;
    background-size: 2.5rem;
    padding: 2.8rem 1rem 2.8rem 3rem;
  }

  .header-fix.fixed .nav-menu li.tel a {
    padding: 3.1rem 1rem 3.1rem 3rem;
  }

  .home .cont02 .item:nth-child(1) {
    width: 46%;
  }
  .home .cont02 .item:nth-child(2) {
    width: 53%;
    margin-right: 0;
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  html {
    font-size: 1.33333vw;
  }

  p, a, li, dd, dt, th, td {
    font-size: 2.8rem;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .tel a {
    pointer-events: auto;
  }

  .telLink {
    pointer-events: auto;
  }

  .lwrap {
    margin: 0 3rem;
  }
  .lwrap2 {
    margin: 0 3rem;
  }

  .sp-marker-yellow {
    background: linear-gradient(transparent 60%, #EAFC86 60%);
    padding: 0 1.5rem .3rem;
  }

  /* margin
  *******************/
  .sp-mt-0 {
    margin-top: 0rem !important;
  }

  .sp-mb-0 {
    margin-bottom: 0rem !important;
  }

  .sp-mt-5 {
    margin-top: 0.5rem !important;
  }

  .sp-mb-5 {
    margin-bottom: 0.5rem !important;
  }

  .sp-mt-10 {
    margin-top: 1rem !important;
  }

  .sp-mb-10 {
    margin-bottom: 1rem !important;
  }

  .sp-mt-15 {
    margin-top: 1.5rem !important;
  }

  .sp-mb-15 {
    margin-bottom: 1.5rem !important;
  }

  .sp-mt-20 {
    margin-top: 2rem !important;
  }

  .sp-mb-20 {
    margin-bottom: 2rem !important;
  }

  .sp-mt-25 {
    margin-top: 2.5rem !important;
  }

  .sp-mb-25 {
    margin-bottom: 2.5rem !important;
  }

  .sp-mt-30 {
    margin-top: 3rem !important;
  }

  .sp-mb-30 {
    margin-bottom: 3rem !important;
  }

  .sp-mt-35 {
    margin-top: 3.5rem !important;
  }

  .sp-mb-35 {
    margin-bottom: 3.5rem !important;
  }

  .sp-mt-40 {
    margin-top: 4rem !important;
  }

  .sp-mb-40 {
    margin-bottom: 4rem !important;
  }

  .sp-mt-45 {
    margin-top: 4.5rem !important;
  }

  .sp-mb-45 {
    margin-bottom: 4.5rem !important;
  }

  .sp-mt-50 {
    margin-top: 5rem !important;
  }

  .sp-mb-50 {
    margin-bottom: 5rem !important;
  }

  .sp-mt-55 {
    margin-top: 5.5rem !important;
  }

  .sp-mb-55 {
    margin-bottom: 5.5rem !important;
  }

  .sp-mt-60 {
    margin-top: 6rem !important;
  }

  .sp-mb-60 {
    margin-bottom: 6rem !important;
  }

  .sp-mt-65 {
    margin-top: 6.5rem !important;
  }

  .sp-mb-65 {
    margin-bottom: 6.5rem !important;
  }

  .sp-mt-70 {
    margin-top: 7rem !important;
  }

  .sp-mb-70 {
    margin-bottom: 7rem !important;
  }

  .sp-mt-75 {
    margin-top: 7.5rem !important;
  }

  .sp-mb-75 {
    margin-bottom: 7.5rem !important;
  }

  .sp-mt-80 {
    margin-top: 8rem !important;
  }

  .sp-mb-80 {
    margin-bottom: 8rem !important;
  }

  .sp-mt-85 {
    margin-top: 8.5rem !important;
  }

  .sp-mb-85 {
    margin-bottom: 8.5rem !important;
  }

  .sp-mt-90 {
    margin-top: 9rem !important;
  }

  .sp-mb-90 {
    margin-bottom: 9rem !important;
  }

  .sp-mt-95 {
    margin-top: 9.5rem !important;
  }

  .sp-mb-95 {
    margin-bottom: 9.5rem !important;
  }

  .sp-mt-100 {
    margin-top: 10rem !important;
  }

  .sp-mb-100 {
    margin-bottom: 10rem !important;
  }

  .sp-mt-105 {
    margin-top: 10.5rem !important;
  }

  .sp-mb-105 {
    margin-bottom: 10.5rem !important;
  }

  .sp-mt-110 {
    margin-top: 11rem !important;
  }

  .sp-mb-110 {
    margin-bottom: 11rem !important;
  }

  .sp-mt-115 {
    margin-top: 11.5rem !important;
  }

  .sp-mb-115 {
    margin-bottom: 11.5rem !important;
  }

  .sp-mt-120 {
    margin-top: 12rem !important;
  }

  .sp-mb-120 {
    margin-bottom: 12rem !important;
  }

  .sp-mt-125 {
    margin-top: 12.5rem !important;
  }

  .sp-mb-125 {
    margin-bottom: 12.5rem !important;
  }

  .sp-mt-130 {
    margin-top: 13rem !important;
  }

  .sp-mb-130 {
    margin-bottom: 13rem !important;
  }

  .sp-mt-135 {
    margin-top: 13.5rem !important;
  }

  .sp-mb-135 {
    margin-bottom: 13.5rem !important;
  }

  .sp-mt-140 {
    margin-top: 14rem !important;
  }

  .sp-mb-140 {
    margin-bottom: 14rem !important;
  }

  .sp-mt-145 {
    margin-top: 14.5rem !important;
  }

  .sp-mb-145 {
    margin-bottom: 14.5rem !important;
  }

  .sp-mt-150 {
    margin-top: 15rem !important;
  }

  .sp-mb-150 {
    margin-bottom: 15rem !important;
  }

  .ttl01 {
    text-align: left;
    font-size: 5rem;
  }

  .ttl02 {
    font-size: 4.5rem;
    padding: 0 0 3rem 1rem;
  }
  .ttl02 .small {
    font-size: 1.8rem;
    margin-left: 1.5rem;
  }

  .table01 th {
    text-align: left;
    padding: 3rem;
    white-space: nowrap;
    width: inherit;
    line-height: 2.142;
  }
  .table01 td {
    padding: 3rem 3rem 3rem 2rem;
    line-height: 2.142;
  }

  .backBtn {
    margin: 38rem 3rem 3rem;
  }
  .backBtn a::before {
    top: -0.3rem;
    margin: 0 1.5rem 0 0;
  }

  .circle {
    width: 3.1rem;
    height: 3.1rem;
  }

  span.circle {
    margin-right: 1.5rem;
  }

  .btn a {
    font-size: 3rem;
    padding: 3.4rem 0;
    width: 63rem;
    background-size: 1.577rem;
    background-position: center right 4.8rem;
    border: 0.2rem solid #2E2E2E;
  }

  .ttl01 {
    font-size: 7.2rem;
    line-height: 1.5;
  }
  .ttl01 .small {
    font-size: 2.4rem;
  }

  .ttl04 {
    font-size: 2.8rem;
    padding: 0 0 0 2.1rem;
  }

  .home .mv {
    margin-top: 5.9rem;
    background-image: url("../img/top/sp-mv.jpg");
  }
  .home .mv .sp {
    position: absolute;
    left: 3rem;
    top: 13rem;
  }
  .home .mv .sp p {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.666;
  }
  .home .mv .sp p a {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.666;
  }
  .home .mv .lwrap2 {
    height: 110.8rem;
    position: relative;
  }
  .home .mv-inner {
    margin: 0 0 9.5rem 3rem;
  }
  .home .mv h2 .small {
    margin: 0 0 1.5rem;
  }
  .home .ttl01 {
    margin: 0 0 1rem;
  }
  .home .cont01 {
    padding: 20rem 0 33rem;
  }
  .home .cont01::before {
    width: 49rem;
    height: 40rem;
  }
  .home .cont01 .ttl {
    font-size: 7.2rem;
    margin: 0 0 15rem;
  }
  .home .cont01 .ttl::before {
    content: none;
  }
  .home .cont01 .ttl .bg-white {
    padding: 2rem 3rem 2rem 13rem;
  }
  .home .cont01 .ttl .bg-white::before {
    width: 6.1rem;
    height: 7.8rem;
    top: 1rem;
  }
  .home .cont01 .ttl .small {
    font-size: 2.8rem;
    margin: 2rem 0 0;
  }
  .home .cont01 .sub {
    font-size: 3.8rem;
    line-height: 1.605;
    margin: 0 0 7rem;
  }
  .home .cont01 p {
    font-size: 2.8rem;
    line-height: 2.142;
  }
  .home .cont01 .btn {
    margin: 14rem 0 0;
  }
  .home .cont02 {
    padding-bottom: 33rem;
  }
  .home .cont02 .ttl01 {
    margin: 0 0 17rem;
  }
  .home .cont02 .ttl01 + p {
    margin: 0  3rem;
    line-height: 2.142;
    font-size: 2.8rem;
    font-weight: 500;
  }
  .home .cont02 .lwrap2.flex {
    flex-wrap: wrap;
  }
  .home .cont02 .item {
    width: 100%;
  }
  .home .cont02 .item:nth-child(1) {
    margin: 0 0 9rem;
  }
  .home .cont02 .item:nth-child(2) {
    margin: 0 3rem;
  }
  .home .cont02 .item img {
    width: 100%;
  }
  .home .cont02 .item .absolute {
    top: 38.05rem;
    transform: translateY(0%) translateX(-50%);
  }
  .home .cont02 .btn {
    margin: 7rem 0 0;
  }
  .home .cont03 .ttl01 {
    margin: 0 0 16rem;
  }
  .home .cont03 .sub {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 2.142;
  }
  .home .cont03 .anchorLink {
    flex-wrap: wrap;
    margin: 0 3rem 17rem;
    padding: 4.5rem 4.5rem 6rem;
  }
  .home .cont03 .anchorLink > .karla {
    font-size: 2.8rem;
    margin: 0 0 6rem;
  }
  .home .cont03 .anchorLink .link {
    margin-right: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .home .cont03 .anchorLink .link li {
    margin-right: 5.5rem;
  }
  .home .cont03 .anchorLink .link li:last-child {
    margin-bottom: 0;
  }
  .home .cont03 .anchorLink .link a {
    font-size: 2.8rem;
    padding: 0 4rem 0 0;
    background-size: 1.6rem;
  }
  .home .cont03 .itembox {
    margin: 0 3rem 32rem;
  }
  .home .cont03 .itembox .item {
    width: 100%;
    margin: 0 0 12.4rem;
  }
  .home .cont03 .itembox .item .txt {
    background-size: 1.2rem;
    padding: 3.5rem 4.6rem;
    font-size: 2.6rem;
  }
  .home .cont03 .itembox .item .txt p {
    font-size: 2.6rem;
  }
  .home .cont03 .ttl02 {
    margin: 0 0 6.5rem;
  }

  body:not(.home) .header-logo {
    display: none;
  }
  body:not(.home) .mv {
    margin: 6rem 0 8.7rem;
    height: 71.6rem;
  }
  body:not(.home) .mv h2 {
    font-size: 7.2rem;
    top: 22rem;
    line-height: 1.166666;
  }
  body:not(.home) .mv h2 .small {
    font-size: 2.4rem;
  }

  .page-detail .cont01 {
    margin: 0 3rem;
  }
  .page-detail .ttlwrap {
    flex-wrap: wrap;
    border-bottom: none;
    margin: 0 0 10rem;
  }
  .page-detail .ttlwrap .ttl03 {
    width: 100%;
    border-bottom: 1px solid;
    padding: 0 0 2.5rem;
    margin: 0 0 2.5rem;
  }
  .page-detail .ttlwrap .sp-alignRight {
    text-align: right;
    width: 100%;
    margin-left: 0;
    margin-right: 4.5rem;
  }
  .page-detail .ttlwrap .small {
    font-size: 2.3rem;
    padding: 0.45rem 2.95rem;
  }
  .page-detail .ttl03 {
    font-size: 4.1rem;
  }
  .page-detail .ttl04 {
    margin: 0 0 2rem;
  }
  .page-detail .ttl04::before {
    width: .6rem;
    height: 3rem;
    top: 0;
  }
  .page-detail .itembox {
    flex-wrap: wrap;
    margin: 0 0 21rem;
  }
  .page-detail .itembox .item {
    width: 100% !important;
  }
  .page-detail .itembox .item:nth-child(1) {
    margin: 0 0 11.5rem;
  }
  .page-detail .itembox .item .img img {
    width: 100%;
  }
  .page-detail .itembox .item p {
    font-size: 2.6rem;
  }
  .page-detail .required {
    padding: 13rem 4.5rem;
    margin: 0 0 26rem;
  }
  .page-detail .required .flex {
    flex-wrap: wrap;
  }
  .page-detail .required .flex .item {
    width: 100% !important;
  }
  .page-detail .required .flex .item:nth-child(1) {
    text-align: left;
    margin: 0 0 6.5rem;
  }
  .page-detail .required .flex .item:nth-child(2) {
    padding: 7.4rem 0 2.5rem 6rem;
  }
  .page-detail .required .flex .item p {
    font-size: 2.8rem;
  }
  .page-detail .required .flex .item li {
    font-size: 2.6rem;
    padding-left: 1.5rem;
    margin: 0 6rem 3.5rem 0;
  }
  .page-detail .required .flex .item li::before {
    width: .6rem;
    height: .6rem;
    top: 1.9rem;
  }
  .page-detail .receipt p {
    font-size: 2.8rem;
  }
  .page-detail .receipt p.tel {
    line-height: 1;
    margin: 4rem 0 0;
  }
  .page-detail .receipt p.tel a {
    font-size: 6.6rem;
    line-height: 1;
  }
  .page-detail .receipt p.small {
    font-size: 2.6rem;
    margin: 3rem 0 0;
  }
  .page-detail .receipt .btn {
    display: none;
  }
  .page-detail .backBtn {
    margin-top: 26rem;
  }

  .page-company .mv {
    height: 58rem !important;
  }
  .page-company .backBtn {
    margin: 43rem 3rem 3rem;
  }
}

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