@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  line-height: 1.6;
  height: 100%;
  font-size: 62.5%;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  color: #333;
  background-color: #eff0f1;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt";
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}
@media screen and (min-width: 1280px) {
  body a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
body.is-open {
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  body.is-open {
    overflow: auto;
  }
}

main {
  background-color: #fff;
  margin: 0 auto;
  max-width: 75rem;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  main {
    box-shadow: 0 2.1rem 2.1rem rgba(0, 0, 0, 0.12);
    margin: 0 0 0 auto;
  }
}

picture,
img,
video,
object {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: auto;
  border: none;
  display: block;
}

h2 {
  font-weight: 700;
}

dt {
  font-weight: 400;
}

a {
  text-decoration: none;
  transition: opacity 0.4s;
}
a:hover img {
  opacity: 0.8;
  transition: all 0.3s;
}

/* header */
header {
  background-color: #fff;
  box-shadow: 0 0.7rem 2.1rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1.8rem 3rem;
  max-width: 75rem;
  width: 100%;
  height: 10.6rem;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
@media screen and (min-width: 1280px) {
  header {
    left: auto;
    right: 0;
    position: relative;
    transform: translateX(0);
  }
}

.header-cv {
  display: flex;
  justify-content: flex-end;
  gap: 1.3rem;
  position: absolute;
  right: 10rem;
  top: 2.2rem;
  width: auto;
}

.header-cv a {
  display: block;
  width: 16rem;
}

@media screen and (min-width: 1280px) {
  .header-cv  {
    display: none;
  }
}





.header-logo {
  width: 23rem;
}
.header-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1.3rem;
  margin-right: 6rem;
  width: 35.3rem;
}
@media screen and (min-width: 1280px) {
  .header-buttons {
    display: none;
  }
}
.header-btn a {
  display: block;
  border-width: 2px;
  border-style: solid;
  border-radius: 7rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 1.5rem;
  width: 17rem;
}
.header-btn span {
  padding-left: 3.6rem;
  position: relative;
}
.header-btn span::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header-btn.tel a {
  color: #158597;
  border-color: #158597;
}
.header-btn.tel span::before {
  mask-image: url("../../assets/img/icon_tel.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #158597;
  width: 2.2rem;
  height: 3rem;
}
.header-btn.reserve a {
  color: #fff;
  background-color: #df8913;
  border-color: #df8913;
}
.header-btn.reserve span::before {
  background: url("../../assets/img/icon_reserve.svg") no-repeat center/contain;
  width: 3rem;
  height: 3rem;
}
.header-menu {
  position: absolute;
  top: 50%;
  right: 2.6rem;
  transform: translateY(-50%);
  width: 4rem;
  height: 2.2rem;
}
.header-menu i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 8px;
}
@media screen and (min-width: 751px) {
  .header-menu i {
    height: 0.4rem;
  }
}
.header-menu i:nth-child(1) {
  top: 0;
}
.header-menu i:nth-child(2) {
  bottom: 0;
}
.header-menu.is-open i:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.header-menu.is-open i:nth-child(2) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 1280px) {
  .header-menu {
    display: none;
  }
}
.header-drawer {
  background-color: #d4d9da;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease 0s;
  max-width: 75rem;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 10.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}
.header-drawer .drawer-inner {
  overflow: scroll;
}
.header-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1280px) {
  .header-drawer {
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    max-width: 50rem;
    height: auto;
    left: auto;
    top: 50%;
    transform: translate(0, -50%);
  }
  .header-drawer .drawer-inner {
    overflow: hidden;
  }
}
.header-navi {
  position: relative;
  border-top: 1px solid rgb(204, 216, 224);
  padding: 3rem 0px 7rem;
}
.header-navi ul {
  margin: 4rem;
  padding: 0;
  background: #fff;
  border-radius: 1.4rem;
}
.header-navi ul > li:first-child {
  margin-top: 0;
}
.header-navi ul > li:not(:last-child) {
  border-bottom: 1px solid rgb(204, 216, 224);
}
.header-navi ul > li > a {
  font-size: 2.6rem;
  color: rgb(32, 64, 104);
  display: flex;
  padding: 3.8rem 3rem 3.4rem 5rem;
  line-height: 1.3;
  align-items: center;
  margin: 0 0 0 auto;
}
.header-navi ul > li > a::after {
  content: "";
  background-color: #a6b2b5;
  display: inline-block;
  height: 2.4rem;
  width: 2.2rem;
  mask: url("../img/icon_navi_arrow.svg");
  mask-size: cover;
  vertical-align: middle;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 1280px) {
  .header-navi {
    border-top: none;
    padding: 0;
  }
  .header-navi ul {
    margin: 0 0 4rem;
  }
  .header-navi ul > li > a {
    font-size: 1.8rem;
    padding: 2.5rem;
  }
  .header-navi ul > li > a::after {
    height: 1.2rem;
    width: 1.1rem;
  }
}

/* components */
.inner {
  padding: 0 3rem;
  max-width: 75rem;
  margin: 0 auto;
}

.cta {
  background-color: #cce1e5;
  padding: 4.5rem 3rem;
}
.cta.add_pt {
  background-color: #cce1e5;
  padding: 14rem 3rem 4.5rem;
}


.cta .city {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding-bottom: 2rem;
}
.cta .city span {
  font-size: 4.6rem;
}
.cta .catch {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 2rem;
}
.cta .catch .marker {
  background: linear-gradient(180deg, transparent 0%, transparent 80%, rgb(255, 253, 84) 80%, rgb(255, 253, 84) 95%, transparent 95%);
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 4rem;
}
.cta-btn {
  font-weight: 700;
  margin: 0 auto;
  text-align: center;
}
.cta-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  border-width: 0.4rem;
  border-style: solid;
  filter: drop-shadow(0 0.6rem 1.2rem rgba(0, 0, 0, 0.29));
  transform: translateZ(0);
  padding: 1rem;
  text-decoration: none;
  width: 63rem;
  position: relative;
}
.cta-btn.reserve p {
  margin: 0 auto;
  padding-bottom: 1rem;
  width: 41.6rem;
}
.cta-btn.reserve a {
  color: #fff;
  background-color: #df8913;
  border-color: #fff;
  font-size: 3.4rem;
  margin: 0 auto;
}
.cta-btn.reserve a::after {
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 1rem 0 1rem 1.6rem;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
}
.cta-btn.reserve a .label {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #df8913;
  background-color: #fff;
  font-size: 1.9rem;
  line-height: 1.2;
  text-align: center;
  margin-right: 1rem;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 100%;
}
.cta-btn.tel a {
  color: #158597;
  background-color: #fff;
  border-color: #158597;
  font-size: 3.4rem;
  padding: 1.9rem 1rem;
}
.cta-btn.tel a::after {
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 1rem 0 1rem 1.6rem;
  border-color: transparent transparent transparent #158597;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
}
.cta-btn.tel a .include {
  margin-left: 7rem;
  position: relative;
}
.cta-btn.tel a .include::before {
  position: absolute;
  content: "";
  display: block;
  mask-image: url("../../assets/img/icon_tel.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #158597;
  width: 3.9rem;
  height: 5.6rem;
  left: -6rem;
  top: 50%;
  transform: translateY(-50%);
}
.cta-btn.tel a .num {
  padding: 0.5rem 0;
  width: 31.6rem;
}
.cta-btn.tel a .open {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (min-width: 1280px) {
  .cta-btn.tel a {
    font-size: inherit;
    padding: 1.2rem 1rem;
  }
  .cta-btn.tel a::after {
    display: none;
  }
}
.cta-btn.line a {
  color: #2BAC38;
  background-color: #fff;
  border-color: #2BAC38;
  font-size: 2.4rem;
  padding: 1.9rem 1rem;

  img{
    width: 35px;
    height: auto;
    margin: 0 10px;
  }
}
.cta.header-cta {
  background-color: transparent;
  display: none;
  padding: 0 4rem 4rem;
}
@media screen and (min-width: 1280px) {
  .cta.header-cta {
    display: block;
    padding: 0 0 2rem;
  }
}
.cta.header-cta .catch {
  font-size: 1.8rem;
  padding-bottom: 1rem;
}
.cta.header-cta .catch::before {
  content: "";
  display: inline-block;
  background-color: #333;
  margin-bottom: 0.5rem;
  width: 2rem;
  height: 0.2rem;
  transform: rotate(60deg);
}
.cta.header-cta .catch::after {
  content: "";
  display: inline-block;
  background-color: #333;
  margin-bottom: 0.5rem;
  width: 2rem;
  height: 0.2rem;
  transform: rotate(-60deg);
}
.cta.header-cta .cta-buttons {
  row-gap: 2rem;
}
.cta.header-cta .cta-btn a {
  border-radius: 10rem;
  border-width: 0.2rem;
  padding: 1rem;
  filter: drop-shadow(0 0.3rem 0.6rem rgba(0, 0, 0, 0.29));
  width: 40rem;
}
.cta.header-cta .cta-btn.reserve p {
  padding-bottom: 0.5rem;
  width: 20.8rem;
}
.cta.header-cta .cta-btn.reserve a {
  font-size: 2.4rem;
}
.cta.header-cta .cta-btn.reserve a::after {
  border-width: 0.5rem 0 0.5rem 0.8rem;
  right: 2rem;
}
.cta.header-cta .cta-btn.reserve a .label {
  font-size: 1.3rem;
  margin-right: 0.8rem;
  width: 4.6rem;
  height: 4.6rem;
}
.cta.header-cta .cta-btn.tel a {
  padding-top: 1.2rem;
  padding-bottom: 0.6rem;
}
.cta.header-cta .cta-btn.tel a::after {
  border-width: 0.5rem 0 0.5rem 0.8rem;
  right: 2rem;
}
.cta.header-cta .cta-btn.tel a .include {
  margin-left: 3.5rem;
}
.cta.header-cta .cta-btn.tel a .include::before {
  width: 2.9rem;
  height: 3.6rem;
  left: -4rem;
}
.cta.header-cta .cta-btn.tel a .num {
  padding: 0;
  width: 21.8rem;
}
.cta.header-cta .cta-btn.tel a .open {
  font-size: 1.1rem;
}
.cta.fixed {
  background-color: #8f8f8f;
  padding: 2rem 3rem;
  position: fixed;
  bottom: -1px;
  left: auto;
  transform: translateY(100%);
  width: 75rem;
  z-index: 30;
  transition: transform 0.5s;
}
.cta.fixed.is-active {
  transform: translateY(0);
}
.cta.fixed .cta-buttons {
  flex-direction: unset;
}
.cta.fixed .cta-btn {
  margin: 0;
}
.cta.fixed .cta-btn a {
  justify-content: flex-start;
  padding: 1rem 1.8rem;
  width: 100%;
}
.cta.fixed .cta-btn a .label {
  font-size: 1.6rem;
  width: 5.9rem;
  height: 5.9rem;
}
.cta.fixed .cta-btn.reserve {
  width: calc((100% - 2rem) / 2);
}
.cta.fixed .cta-btn.reserve a {
  font-size: 2.9rem;
  line-height: 1.2;
}
.cta.fixed .cta-btn.tel {
  width: calc((100% - 2rem) / 2);
}
.cta.fixed .cta-btn.tel a {
  font-size: 2.9rem;
  line-height: 1.2;
}
.cta.fixed .cta-btn.tel a .include::before {
  width: 4.2rem;
  height: 5rem;
}

/* contents */
@media screen and (min-width: 1280px) {
  .wrapper {
    display: flex;
    margin: 0 auto;
    max-width: 128rem;
  }
  .contents {
    margin: 0 0 0 auto;
  }
}
#fv {
  padding-top: 10.6rem;
  position: relative;
}
#fv .catch {
  background-color: #158597;
  padding: 0 1rem 0.5rem;
  position: relative;
}
#fv .catch p {
  color: #fff;
  font-size: 5.2rem;
  font-weight: 700;
  text-align: center;
}
#fv .catch p::after {
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 1.5rem 1.3rem 0 1.3rem;
  border-color: #158597 transparent transparent transparent;
  bottom: -1.3rem;
  left: 50%;
  transform: translateX(-50%);
}
#fv .catch span {
  color: #fffd54;
}
@media screen and (min-width: 1280px) {
  #fv {
    padding-top: 0;
  }
}

#intro {
  padding: 7rem 0;
}
#intro h2 {
  color: #158597;
  font-size: 5.2rem;
  text-align: center;
  margin-bottom: 6.4rem;
}
#intro h2 .small {
  font-size: 4.1rem;
}
#intro h2 .marker {
  background: linear-gradient(180deg, transparent 0%, transparent 70%, rgb(255, 253, 84) 70%, rgb(255, 253, 84) 95%, transparent 95%);
}
#intro .intro-timetable {
  margin-bottom: 6.2rem;
}
#intro .intro-timetable .text {
  font-size: 2.8rem;
  text-align: center;
  margin-top: 3rem;
}
#intro .intro-map {
  width: 100%;
  margin-bottom: 2rem;
  height: 50rem;
}
#intro .intro-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}
#intro .intro-access {
  font-size: 3.2rem;
  color: #627685;
}

#condition {
  background-color: #eeeeee;
}

#condition h2 {
  color: #fff;
  background: #750000;
  font-size: 5rem;
  text-align: center;
  padding: 5px 0;
}

#condition .condition01-lists  {
  padding: 5rem 0;
}


#condition .condition01-lists li {
  background-color: #fff;
  font-size: 4rem;
  line-height: 1.4;
  padding: 2.6rem;
  padding-left: 11rem;
  position: relative;
  border-radius: 10px;
}
#condition .condition01-lists li::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/ico_check.png") no-repeat center center/contain;
  width: 5rem;
  height: 4.9rem;
  top: 25px;
  left: 4rem;
}
#condition .condition01-lists li:not(:last-child) {
  margin-bottom: 4rem;
}
#condition .condition01 .accent {
  color: #158597;
}




#symptoms {
  background: #fff;
  padding-top: 12rem;
}

#symptoms .inner {
  background: #f8f6e7;
  padding: 10rem 0 6rem;
  position: relative;
}

#symptoms .inner:after {
  content: "";
  position: absolute;
  height: 70px;
  width: 100%;
  clip-path: polygon(0 0,50% 100%,100% 0);
  background-color: #f8f6e7;
　　left: 0;
  bottom: -70px;
  z-index: 9;
}


#symptoms h2 {
  color: #fff;
  background: #158597;
  font-size: 4.6rem;
  text-align: center;
  padding: 5px 0;
  border-radius: 100vh;
  width: 70%;
  max-width: auto;
  position: absolute;
  right: 0;
  left: 0;
  top: -40px;
  margin: 0 auto;
}

#symptoms ul {
  width: 92%;
  margin: 0 auto;
}

#symptoms ul li {
  background: #f3fcfe;
  border-radius: 10px;
  margin-bottom: 50px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}

#symptoms ul li:last-child {
  margin-bottom: 0;
}

#symptoms ul li p {
  font-size: 2.7rem;
  padding: 20px 30px;
  box-sizing: border-box;
  color: #333333;
}

#symptoms ul li p span {
  color: #750000;
}




#flow {
  background: #fff url("../img/reason_bg.svg") repeat 1.4rem 3rem/3.6rem 3.6rem;
  padding: 16rem 0 8rem;
}
#flow h2 {
  color: #158597;
  font-size: 4.6rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 6rem;
  padding-bottom: 3rem;
  position: relative;
}
#flow h2::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #158597;
  width: 12rem;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#flow .flow-lists > li:not(:last-child) {
  position: relative;

}

#flow .flow-lists > li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -20rem;
  left: 50%;
  margin-left: -10rem;
  border: 10rem solid transparent;
  border-top: 6rem solid #158597;

}


#flow .flow-lists > li:not(:last-child) {
  margin-bottom: 13.4rem;
}
#flow .flow-lists .number {
  margin-bottom: 3.5rem;
  position: relative;
}
#flow .flow-lists .number .num {
  position: absolute;
  top: -5rem;
  left: 0;
  width: 9.7rem;
}
#flow .flow-lists .number .img {
  margin: 0 auto;
  width: 63rem;
}
#flow .flow-lists h3 {
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2rem;
}
#flow .flow-lists h3 .list01 {
  margin-left: 0.4rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0.5rem;
  width: 27.3rem;
}
#flow .flow-lists p {
  font-size: 2.7rem;
}



#faq {
  background-color: #abb6b8;
  padding: 16rem 0 5rem;
  position: relative;;
}


#faq:after {
  content: "";
  position: absolute;
  height: 70px;
  width: 100%;
  clip-path: polygon(0 0,50% 100%,100% 0);
  background-color: #abb6b8;
　　left: 0;
  bottom: -70px;
}


#faq h2 {
  color: #fff;
  background: #158597;
  font-size: 4.6rem;
  text-align: center;
  padding: 5px 0;
  border-radius: 100vh;
  width: 70%;
  margin: 0 auto 4rem;
}
#faq .faq-lists dl {
  background-color: #fff;
  border-radius: 1rem;
  font-size: 3.6rem;
  line-height: 1.5;
}
#faq .faq-lists dl .small {
  font-size: 2.8rem;
}
#faq .faq-lists dl:not(:last-child) {
  margin-bottom: 3rem;
}
#faq .faq-lists dt {
  cursor: pointer;
  padding: 4.5rem 10rem 4.5rem 5rem;
  position: relative;
}
#faq .faq-lists dt::after {
  position: absolute;
  content: "＋";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #abb6b8;
  border-radius: 1rem;
  font-size: 3.2rem;
  font-weight: 500;
  width: 4rem;
  height: 4rem;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 0.4rem;
}
#faq .faq-lists dt.open::after {
  content: "ー";
}
#faq .faq-lists dd {
  display: none;
  background-color: #f0f2f3;
  border-radius: 0 0 1rem 1rem;
  padding: 4.5rem 5rem;
}
#faq .faq-lists dd.open {
  display: block;
}


#reason {
  background: #fff;
  padding-top: 24rem;
}

#reason .inner {
  background: #deeef0;
  padding: 8rem 0 6rem;
  position: relative;
}

#reason h2 {
  color: #fff;
  background: #158597;
  font-size: 6rem;
  text-align: center;
  padding: 5px 0;
  border-radius: 10px;
  width: 90%;
  max-width: auto;
  position: absolute;
  right: 0;
  left: 0;
  top: -14rem;
  margin: 0 auto;
}

#reason h2:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5rem;
  border: 5rem solid transparent;
  border-top: 5rem solid #158597;
}



#reason ul {
  margin: 0 auto;
}

#reason ul li {
  margin-bottom: 3.5rem;
}

#reason ul li:nth-of-type(odd) {
  margin-left: 4%;
}

#reason ul li:nth-of-type(even) {
  margin-right: 4%;
}

#reason ul li:nth-of-type(odd) p {
  margin-left: 4%;
}

#reason ul li:nth-of-type(even) p {
  margin-right: 4%;
}

#reason ul li:last-child {
  margin-bottom: 0;
}

#reason ul li p {
  font-size: 2.7rem;
  padding: 10px 30px;
  box-sizing: border-box;
  color: #333333;
}


#feature {
  background: #f8f6e7;
  padding: 6rem 0 4rem;
  position: relative;;
}

#feature:after {
  content: "";
  position: absolute;
  height: 70px;
  width: 100%;
  clip-path: polygon(0 0,50% 100%,100% 0);
  background-color: #f8f6e7;
　　left: 0;
  bottom: -70px;
}


#feature h2 {
  color: #fff;
  background: #158597;
  font-size: 5rem;
  text-align: center;
  padding: 5px 0;
  border-radius: 10px;
  width: 96%;
  margin: 0 auto 4rem;
}
#feature .inner {
  padding: 0 1.5rem;
}

#feature ul li {
  margin-bottom: 3rem;
}

#feature ul li:last-child {
  margin-bottom: 0;
}



.cta_label {
  color: #fff;
  background: #158597;
  font-size: 3.8rem;
  text-align: center;
  padding: 5px 0;
}
















/* footer */
footer {
  background-color: #d4d9da;
  margin: 0 auto;
  padding: 4.8rem 0 3.7rem;
  max-width: 75rem;
  width: 100%;
}
footer .footer-content {
  display: flex;
  flex-direction: column;
}
footer .footer-button {
  margin: 0 auto;
  width: 69rem;
}
footer .footer-links {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 6.2rem;
}
footer .footer-links a {
  font-size: 2.8rem;
  padding-right: 3.3rem;
  position: relative;
}
footer .footer-links a::after {
  display: block;
  position: absolute;
  content: "";
  background: url("../img/icon_arrow.svg") no-repeat center center/contain;
  width: 2.3rem;
  height: 2.3rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1280px) {
  footer {
    box-shadow: 0 2.1rem 2.1rem rgba(0, 0, 0, 0.12);
    margin: 0 0 0 auto;
  }
}

/* common */
.sp {
  display: block;
}
@media screen and (min-width: 1280px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc {
    display: block;
  }
}

/* header-short */

.hero-nav {
  display: none;
}

@media screen and (max-width: 767px) {
    .hero-nav {
        width: 100%;
        bottom: 0;
        top: auto;
        display: block;
        transform: none;
        background: #ef947e;
        position: fixed;
        right: 0;
        transition: .5s all;
    z-index: 970;
    }
  .hero-nav .left,
  .hero-nav .right {
      display: none;
  }
  .hero-nav .header-shotcut-action {
      width: 100%;
      display: flex;
      background: #e4e8e9;
      height: 70px;
  }
  .hero-nav .header-shotcut-action .item {
      width: 50%;
      background: #128396;
  }
  .hero-nav .header-shotcut-action .item.is-line {
      background: #516A77;
  }
  .hero-nav .header-shotcut-action .item.reserve {
      background: #dd9025;
  }
  .hero-nav .header-shotcut-action .item.is-line a,
      .hero-nav .header-shotcut-action .item.reserve a {
      color: #fff;
  }
  .hero-nav .header-shotcut-action .item a {
      width: 100%;
      display: flex;
      align-items: center;
      padding: 10px;
      align-items: center;
      flex-wrap: wrap;
      height: 100%;
      color: #fff;
    }
  .hero-nav .header-shotcut-action .item:nth-child(2) {
      border-left: 1px solid #bfc8cc;
  }
  .hero-nav .header-shotcut-action .item .label {
      text-align: center;
      font-size: 10px;
      line-height: 1;
      width: 100%;
      letter-spacing: 1px;
  }
  .hero-nav .header-shotcut-action .item .icon {
    text-align: center;
      width: 100%;
      height: 30px;
  }
  .hero-nav .header-shotcut-action .item .icon img {
      width: auto;
      height: 100%;
  }
  .hero-nav .header-shotcut-action .item .icon svg {
      height: 100%;
      width: auto;
      max-height: 300%;
  }
  .hero-nav .header-shotcut-action .item .icon svg path {
  }
}