@charset "UTF-8";
body {
  color: #231815;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-feature-settings: unset;
}

.mainContents {
  min-width: 960px;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .mainContents {
    min-width: 0;
    width: 100%;
    margin: 0 auto;
  }
}

section {
  overflow: hidden;
}

section * {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
}

l-inner {
  max-width: 940px;
  margin: 0 auto;
}

.p-section__title {
  color: #595757;
  font-size: 34px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2.72px;
}
@media screen and (max-width: 768px) {
  .p-section__title {
    font-size: 24px;
  }
}

.c-menu {
  color: #333;
  font-size: 1.2rem;
  letter-spacing: -1rem;
  line-height: 2.2rem;
}

.c-menu > li {
  display: inline-block;
  letter-spacing: normal;
  margin-right: 2rem;
}

.c-menu > li a {
  color: #333;
  text-decoration: none;
}

.c-menu i {
  font-size: 1.4rem;
  margin-right: 4px;
}

.caution-list li {
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.96px;
  position: relative;
  padding-left: calc(1em + 4px);
}
.caution-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.fa-angle-right:before {
  content: "\f105";
}

.p-tec_primary {
  background: #eee;
  padding: 1.1rem 0;
  overflow-x: auto;
  overflow-y: hidden;
}
@media screen and (max-width: 768px) {
  .p-tec_primary .p-tec_inner {
    width: 100%;
  }
}

.u-pc {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

.u-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block !important;
  }
}

.noscript {
  background-color: #fdd7b4;
  font-family: "Noto Sans JP", sans-serif;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .noscript {
    padding: 12px 10px;
  }
}

.noscript.is_active {
  background-color: #fdd7b4;
  padding: 16px 0;
}

.noscript__text {
  font-size: 14px;
  line-height: 1.8;
  width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .noscript__text {
    width: 100%;
  }
}

.noscript__text span {
  font-weight: 700;
}

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  border-bottom: 1px solid #ABABAB;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.fixed-nav.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.fixed-nav__inner {
  max-width: 940px;
  margin: 0 auto;
}
.fixed-nav__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
@media screen and (max-width: 768px) {
  .fixed-nav__list {
    flex-wrap: wrap;
    gap: 10px 32px;
  }
}
.fixed-nav__item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 20px;
}
.fixed-nav__item::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 1px #0064D2;
  border-right: solid 1px #0064D2;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-75%) rotate(45deg);
}
.fixed-nav__anchor {
  color: #0064D2;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 1.12px;
}
.fixed-nav__anchor:hover {
  opacity: 0.8;
  transition: 0.5s;
  text-decoration: underline;
}

.fv__content {
  padding: 55px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv__content {
    padding: 56px 10px;
  }
}
.fv__content::before {
  content: "";
  display: block;
  background: url(../img/fv_bg_circle_01.svg) no-repeat;
  background-size: contain;
  width: 261px;
  height: 261px;
  position: absolute;
  bottom: -127px;
  left: 50%;
  transform: translateX(calc(-50% - 470px));
}
@media screen and (max-width: 768px) {
  .fv__content::before {
    background-image: url(../img/fv_bg_circle_01--sp.svg);
    width: 100px;
    height: 74px;
    bottom: 0;
    left: 0;
    transform: none;
  }
}
.fv__content::after {
  content: "";
  display: block;
  background: url(../img/fv_bg_circle_02.svg) no-repeat;
  background-size: contain;
  width: 183px;
  height: 183px;
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(calc(50% + 470px));
}
@media screen and (max-width: 768px) {
  .fv__content::after {
    background-image: url(../img/fv_bg_circle_02--sp.svg);
    width: 93px;
    height: 73px;
    top: 0;
    right: 0;
    transform: none;
  }
}
.fv__title {
  margin-bottom: 10px;
  color: #595757;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 2.88px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 26px;
  }
}
.fv__sub-title {
  display: block;
  color: #F26F45;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.16em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__sub-title {
    margin-bottom: 8px;
  }
}
.fv__text {
  color: #231815;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  letter-spacing: 1.28px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__text {
    line-height: 160%;
  }
}
.fv__cta {
  padding: 16px 0;
  background: #FDFAEF;
}
@media screen and (max-width: 768px) {
  .fv__cta {
    padding: 24px 10px;
  }
}
.fv__cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fv__cta-inner {
    flex-flow: column;
  }
}
.fv__cta-text {
  color: #595757;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  letter-spacing: 1.44px;
}
@media screen and (max-width: 768px) {
  .fv__cta-text {
    text-align: center;
    line-height: 160%;
  }
}
.fv__cta-button {
  display: block;
  max-width: 448px;
  width: 100%;
  height: 72px;
  background-color: #52b0a7;
  font-size: 18px;
  line-height: 72px;
  color: #ffffff !important;
  text-decoration-line: none;
  font-weight: bold;
  text-align: center;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  .fv__cta-button {
    height: 56px;
    line-height: 56px;
  }
}
.fv__cta-button span {
  position: relative;
  z-index: 3;
}
.fv__cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #2f635e;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
@media screen and (min-width: 769px) {
  .fv__cta-button:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.fv__cta-button::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: 0.5s;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto 0;
  z-index: 2;
}

.listings {
  padding: 100px 0 80px;
}
@media screen and (max-width: 768px) {
  .listings {
    padding: 56px 0;
  }
}
.listings__inner {
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .listings__inner {
    padding: 0 10px;
  }
}
.listings__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
@media screen and (max-width: 768px) {
  .listings__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
  }
}
.listings__link {
  transition: 0.5s;
}
.listings__link:hover {
  opacity: 0.7;
}
.listings__thumbnail {
  width: 100%;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .listings__thumbnail {
    border-radius: 4px;
  }
}
.listings__heading {
  display: flex;
  flex-flow: column;
  gap: 4px;
  padding-top: 16px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .listings__heading {
    margin-bottom: 16px;
  }
}
.listings__store-name {
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.96px;
}
.listings__title {
  color: #595757;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.44px;
}
.listings__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.listings__label {
  padding: 4px 12px;
  border: 1px solid #F26F45;
  background: #FFF;
  color: #F26F45;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.96px;
}

.summary {
  padding: 64px 0;
  background: #FDFAEF;
}
@media screen and (max-width: 768px) {
  .summary {
    padding: 40px 0;
  }
}
.summary__inner {
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .summary__inner {
    padding: 0 10px;
  }
}
.summary__heading {
  display: flex;
  flex-flow: column;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .summary__heading {
    margin-bottom: 12px;
  }
}
.summary__store-name {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row-reverse;
  gap: 12px;
  color: #595757;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  letter-spacing: 1.28px;
}
.summary__store-name::before {
  content: "事例店舗名";
  order: 1;
}
.summary__store-name::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: #ABABAB;
  order: 0;
}
.summary__title {
  color: #595757;
  font-family: "Noto Sans JP";
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 2.72px;
}
@media screen and (max-width: 768px) {
  .summary__title {
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}
.summary__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.summary__label {
  padding: 4px 12px;
  border: 1px solid #F26F45;
  background: #FFF;
  color: #F26F45;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.96px;
}
.summary__thumbnail {
  display: block;
  width: 100%;
  max-width: 776px;
  margin: 0 auto;
  padding-top: 40px;
}
.summary__movie-wrapper {
  max-width: 776px;
  margin: 0 auto;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .summary__movie-wrapper {
    margin-top: 24px;
  }
}
.summary__movie {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.summary__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.toc {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .toc {
    padding-top: 56px;
  }
}
.toc__inner {
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .toc__inner {
    padding: 0 10px;
  }
}
.toc__heading {
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ABABAB;
  color: #595757;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 768px) {
  .toc__heading {
    margin-bottom: 24px;
    padding-bottom: 12px;
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}
.toc__list {
  display: flex;
  flex-flow: column;
  gap: 24px;
  counter-reset: toc-list;
}
.toc__item {
  counter-increment: toc-list;
}
.toc__chapter-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #595757;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.44px;
}
@media screen and (max-width: 768px) {
  .toc__chapter-title {
    margin-bottom: 12px;
  }
}
.toc__chapter-list {
  display: flex;
  flex-flow: column;
  gap: 4px;
  padding-left: 5px;
}
.toc__chapter-item {
  position: relative;
  padding-left: 20px;
}
.toc__chapter-item::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 1px #0064D2;
  border-right: solid 1px #0064D2;
  position: absolute;
  top: 1em;
  left: 0;
  transform: translateY(-85%) rotate(45deg);
}
.toc__link {
  color: #0064D2;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 1.12px;
}
.toc__link:hover {
  opacity: 0.8;
  transition: 0.5s;
  text-decoration: underline;
}

.intro {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .intro {
    padding-top: 56px;
  }
}
.intro__inner {
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .intro__inner {
    padding: 0 10px;
  }
}
.intro__box {
  padding: 28px 38px 32px;
  background: #F4F7F7;
}
@media screen and (max-width: 768px) {
  .intro__box {
    padding: 28px 20px 32px;
  }
}
.intro__box--issue {
  background: #F4F7F7;
}
.intro__box--effect {
  background: #FDFAEF;
}
.intro__box-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  color: #595757;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 768px) {
  .intro__box-title {
    margin-bottom: 12px;
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}
.intro__box--effect .intro__box-title {
  color: #F26F45;
}
.intro__box-title::before {
  content: "";
  display: block;
  background: url(../img/icon_issue.png) no-repeat;
  background-size: contain;
  width: 64px;
  height: 64px;
  border-radius: 64px;
}
@media screen and (max-width: 768px) {
  .intro__box-title::before {
    width: 40px;
    height: 40px;
  }
}
.intro__box--effect .intro__box-title::before {
  background-image: url(../img/icon_effect.png);
}
.intro__box-list {
  display: flex;
  flex-flow: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .intro__box-list {
    gap: 12px;
  }
}
.intro__box-item {
  position: relative;
  padding-left: 20px;
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 1.28px;
}
.intro__box-item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #3E3A39;
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: 1em;
  transform: translateY(-75%);
}
.intro__box--effect .intro__box-item::before {
  background: #F26F45;
}
.intro__box-em {
  font-weight: 700;
}
.intro__box--effect .intro__box-em {
  color: #F26F45;
}
.intro__box-time {
  display: flex;
  flex-direction: row-reverse;
  justify-content: end;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 1.12px;
}
.intro__box-time::before {
  content: "導入時期";
  order: 1;
}
.intro__box-time::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: #ABABAB;
  order: 0;
}
.intro__box-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}
.intro__box-arrow::before {
  content: "";
  display: block;
  background: url(../img/icon_box_arrow.png) no-repeat;
  background-size: contain;
  width: 32px;
  height: 18px;
}
.intro__text {
  padding-top: 48px;
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 768px) {
  .intro__text {
    padding-top: 32px;
  }
}
.intro__text + .intro__text {
  padding-top: 2em;
}

.content {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .content {
    padding-top: 56px;
  }
}
.content__inner {
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .content__inner {
    padding: 0 10px;
  }
}
.content__title {
  margin-bottom: 40px;
  padding-left: 20px;
  color: #595757;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.92px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .content__title {
    margin-bottom: 24px;
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}
.content__title::before {
  content: "";
  display: block;
  background: #F26F45;
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.content__question {
  display: flex;
  align-items: start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 40px 0 16px;
  border-bottom: 1px dashed #ABABAB;
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  letter-spacing: 1.44px;
}
@media screen and (max-width: 768px) {
  .content__question {
    margin-top: 36px;
    padding-top: 0;
    line-height: 160%;
  }
}
.content__question::before {
  content: "Q";
  color: #F26F45;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 144%;
  letter-spacing: 2.24px;
}
@media screen and (max-width: 768px) {
  .content__question::before {
    line-height: 100%;
  }
}
.content__text {
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  letter-spacing: 1.28px;
}
.content__text + .content__text {
  padding-top: 2em;
}
.content__img-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 44px;
}
@media screen and (max-width: 768px) {
  .content__img-wrapper {
    gap: 8px;
  }
}
.content__img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .content__img {
    max-width: 448px;
  }
}
.content__button {
  display: block;
  width: 100%;
  margin: 48px auto 0;
  padding: 16px 0;
  border-radius: 50px;
  background: #52B0A7;
  position: relative;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
  letter-spacing: 1.44px;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  .content__button {
    max-width: 448px;
  }
}
@media screen and (max-width: 768px) {
  .content__button {
    margin-top: 32px;
    padding: 10px 0;
  }
}
.content__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #2f635e;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  border-radius: 99px;
}
@media screen and (min-width: 769px) {
  .content__button:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.content__button::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 28px;
  bottom: 0;
  margin: auto 0;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .content__button::after {
    right: 20px;
  }
}
.content__button span {
  position: relative;
  z-index: 3;
}

.access {
  margin-bottom: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .access {
    padding-top: 56px;
  }
}
.access__inner {
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .access__inner {
    padding: 0 10px;
  }
}
.access__box {
  padding: 28px 38px 32px;
  background: #F4F7F7;
}
@media screen and (max-width: 768px) {
  .access__box {
    padding: 28px 20px 32px;
  }
}
.access__list {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .access__list {
    gap: 8px;
  }
}
.access__item {
  display: flex;
}
@media screen and (min-width: 769px) {
  .access__item {
    align-items: start;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .access__item {
    flex-flow: column;
    gap: 2px;
  }
}
.access__heading {
  min-width: 80px;
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 769px) {
  .access__heading {
    line-height: 180%;
  }
}
.access__text {
  flex: 1;
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.12px;
}
.access__text a {
  color: #0064D2;
}
.access__text a[target=_blank] {
  position: relative;
}
.access__text a[target=_blank]::after {
  content: "\f08e";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: -1.5em;
  transform: translateY(calc(-50% + 1px));
  line-height: 100%;
}
.access__text a:hover {
  text-decoration: underline;
}
.access__opening-hours {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .access__opening-hours {
    gap: 12px;
  }
}
.access__opening-hours::before {
  content: "";
  display: block;
  min-width: 48px;
}
.access__opening-hours--weekday::before {
  content: "平日";
}
.access__opening-hours--holiday::before {
  content: "土日祝";
}
.access__caution {
  display: block;
  margin-top: 12px;
  padding-left: 1em;
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.96px;
  position: relative;
}
.access__caution::before {
  content: "※";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.contact {
  padding-top: 106px;
  padding-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-bottom: 40px;
    padding-top: 80px;
  }
}
.contact::before {
  content: "";
  background-color: #fdfaef;
  height: 1440px;
  width: 2200px;
  padding: 128px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: calc(50% - 1100px);
}
@media screen and (max-width: 768px) {
  .contact::before {
    height: 7000px;
    padding-top: 52px;
  }
}
.contact__inner {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 0 10px;
  }
}
.contact__title {
  margin-bottom: 40px;
  color: #595757;
  font-family: "Noto Sans JP";
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 2.72px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}
.contact__sub-title {
  display: block;
  color: #F26F45;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.16em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact__sub-title {
    margin-bottom: 8px;
  }
}
.contact__list {
  display: flex;
  gap: 44px;
  max-width: 940px;
  margin: 0 auto;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .contact__list {
    flex-flow: column;
    gap: 36px;
  }
}
.contact__item {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact__heading {
  margin-bottom: 20px;
  color: #595757;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 768px) {
  .contact__heading {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}
.contact__content {
  display: flex;
  flex-flow: column;
  align-items: center;
  flex-grow: 1;
}
.contact__img {
  max-height: 190px;
}
.contact__img--inquiry {
  transform: translateX(12px);
}
.contact__text {
  margin-bottom: 16px;
  padding-top: 20px;
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 768px) {
  .contact__text {
    margin-bottom: 32px;
    padding-top: 16px;
  }
}
.contact__button {
  display: block;
  max-width: 448px;
  width: 100%;
  margin-top: auto;
  background-color: #52b0a7;
  font-size: 18px;
  line-height: 72px;
  color: #FFF;
  text-decoration-line: none;
  font-weight: bold;
  text-align: center;
  border-radius: 99px;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .contact__button {
    line-height: 56px;
  }
}
.contact__button--download {
  background-color: #F26F45;
}
.contact__button--download::before {
  background-color: #a64b2e;
}
.contact__button--inquiry {
  background-color: #52b0a7;
}
.contact__button--inquiry::before {
  background-color: #2f635e;
}
.contact__button--trial {
  background-color: #FFF;
  box-shadow: 0 0 0 2px #52B0A7 inset;
  color: #52B0A7;
}
.contact__button--trial::before {
  background-color: #2f635e;
}
@media screen and (min-width: 769px) {
  .contact__button--trial:hover {
    color: #FFF;
    box-shadow: 0 0 0 2px #2f635e inset;
  }
}
@media screen and (min-width: 769px) {
  .contact__button--trial:hover::after {
    border-top-color: #FFF;
    border-right-color: #FFF;
  }
}
.contact__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  border-radius: 99px;
}
@media screen and (min-width: 769px) {
  .contact__button:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.contact__button::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: 0.5s;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto 0;
  z-index: 2;
}
.contact__button--trial::after {
  border-top-color: #52B0A7;
  border-right-color: #52B0A7;
}
.contact__button span {
  position: relative;
  z-index: 3;
}

.tcolumn {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 auto;
  justify-content: center;
}

.hbutton {
  display: block;
  width: 100%;
  height: 72px;
  font-size: 18px;
  line-height: 72px;
  color: #ffffff;
  text-decoration-line: none;
  font-weight: bold;
  text-align: center;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: 0.6s;
}

.hbutton::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.hbutton:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.hbutton::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: 0.5s;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto 0;
  z-index: 2;
}

.hbutton span {
  font-size: 18px;
  line-height: 72px;
  display: block;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .hbutton {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 355px;
    height: 56px;
    line-height: 56px;
  }
  .hbutton.black {
    height: 48px;
  }
  .hbutton:hover::before {
    transform: scale(0, 1);
  }
  .hbutton::after {
    z-index: 2;
    right: 22px;
  }
  .hbutton span {
    line-height: 56px;
  }
}
.localnav {
  width: 100%;
  position: fixed;
  top: -80px;
  left: 0;
  z-index: 1000;
  transition: 0.3s;
}

.localnav.active {
  top: 0;
}

.localnav__button {
  display: none;
}

.localnav__inner {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  min-width: 960px;
  padding: 12px 0;
}

.localnav__inner .localnav__ul {
  display: flex;
  gap: 21px;
  justify-content: center;
  width: 960px;
  margin: 0 auto;
  position: relative;
}

.localnav__inner .localnav__ul .localnav__ul--li:last-of-type {
  margin-right: 0;
  margin-left: auto;
}

.localnav__inner .localnav__ul .localnav__ul--li.logo img {
  display: block;
  width: 62px;
  height: 56px;
}

.localnav__inner ul .localnav__ul--li > a {
  color: #595757;
  font-size: 14px;
  line-height: 56px;
  font-weight: 700;
  display: block;
  height: 56px;
  padding: 0 10px;
  transition: 0.3s;
}

.localnav__inner ul .localnav__ul--li > a:hover {
  opacity: 0.7;
}

.localnav__inner .localnav__ul ul {
  display: flex;
  gap: 8px;
  padding: 0 10px;
}

.localnav__inner .localnav__ul ul li {
  height: 52px;
  width: 168px;
  margin: 2px 0;
}

.localnav__inner .localnav__ul ul li::after {
  display: none;
}

.localnav__inner .localnav__ul ul li::before {
  background-color: rgba(0, 0, 0, 0.3);
}

.localnav__inner .localnav__ul ul li a {
  color: #ffffff;
  font-size: 14px;
  line-height: 52px;
  letter-spacing: 0.08em;
  text-align: left;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  position: relative;
  z-index: 100;
}

.localnav__inner .localnav__ul ul li a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  margin: auto 0;
}

.localnav__inner .localnav__ul ul li.borange {
  background-color: #F26F45;
}

.localnav__inner .localnav__ul ul li.borange a {
  padding-left: 15px;
}

.localnav__inner .localnav__ul ul li.byellow {
  background-color: #E1AA00;
}

.localnav__inner .localnav__ul ul li.byellow a {
  padding-left: 15px;
}

.localnav__inner .localnav__ul ul li.bgreen {
  background-color: #52B0A7;
}

.localnav__inner .localnav__ul ul li.bgreen a {
  padding: 0 30px;
}

#localnav {
  border-bottom: 1px solid #ABABAB;
}

#localnav .faqnav {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  min-width: 960px;
  max-height: 0;
  transition: 0.3s;
  position: relative;
}

#localnav .faqnav.show {
  max-height: 77px;
}

#localnav .faqnav__ul {
  display: flex;
  gap: 0 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 0;
  position: relative;
}

#localnav .faqnav__ul li a {
  color: #0064D2;
  font-size: 14px;
  line-height: 2;
  padding-left: 20px;
  position: relative;
}

#localnav .faqnav__ul li a::before {
  content: "∨";
  font-size: 0.8em;
  line-height: 16px;
  display: block;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
}

@media screen and (max-width: 768px) {
  .localnav {
    overflow: visible;
    top: -60px;
  }
  .localnav__button {
    text-align: center;
    display: block;
    height: 40px;
    width: 40px;
    background-color: #3E3A39;
    border-radius: 50%;
    line-height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }
  .localnav__button::before {
    content: "≡";
    color: #ffffff;
    font-size: 24px;
    display: block;
    width: 25px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .open .localnav__button::before {
    content: "×";
    font-size: 20px;
  }
  .localnav__inner {
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #ABABAB;
    width: 100%;
    padding: 20px;
    transition: 0.3s;
    position: relative;
    z-index: 15;
  }
  .open .localnav__inner {
    background-color: rgb(255, 255, 255);
    max-height: 500px;
  }
  .localnav__inner .localnav__ul {
    gap: 0;
    width: 100%;
  }
  .localnav__inner {
    min-width: 100%;
    padding: 59px 0 0;
    max-height: 0;
    overflow-y: hidden;
    transition: 0.3s;
  }
  .localnav__logo--sp {
    display: block;
    width: 152px;
    height: 36px;
    background: no-repeat url("../../img/localbav__logo--sp.png") center/cover;
    position: absolute;
    top: 11px;
    left: 10px;
  }
  .localnav__inner .localnav__ul {
    padding-top: 8px;
    justify-content: left;
    flex-direction: column;
    border-top: 1px solid #ABABAB;
  }
  .localnav__inner .localnav__ul .localnav__ul--li {
    padding: 0 10px;
    width: 100%;
  }
  .localnav__inner .localnav__ul .localnav__ul--li:last-of-type {
    margin-right: auto;
  }
  .localnav__inner .localnav__ul .localnav__ul--li > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    font-size: 15px;
    line-height: 51px;
    background-color: #ffffff;
    border-bottom: 1px solid #ABABAB;
    position: relative;
  }
  .localnav__inner .localnav__ul .localnav__ul--li > a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #F26F45;
    border-right: 2px solid #F26F45;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto 0;
  }
  .localnav__inner .localnav__ul ul {
    padding: 24px 0 36px;
    flex-direction: column;
    gap: 16px;
  }
  .localnav__inner .localnav__ul ul li {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .localnav__inner .localnav__ul ul li a {
    font-size: 18px;
    text-align: center;
  }
  .localnav__inner .localnav__ul ul li.borange a {
    padding-left: 0;
  }
  #localnav {
    border-width: 0;
  }
  #localnav .faqnav {
    min-width: 100%;
    border-bottom: 0 solid #ABABAB;
    transition: 0.3s;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
  }
  #localnav .faqnav.show {
    max-height: 85px;
    width: 100%;
    border-width: 1px;
  }
  #localnav .faqnav__ul {
    gap: 4px 32px;
    padding: 12px 0;
  }
}
.bottomnav {
  display: none;
}

@media screen and (max-width: 768px) {
  .bottomnav {
    display: block;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid #ABABAB;
    overflow: visible;
    width: 100%;
    min-width: 960px;
    position: fixed;
    left: 0;
    bottom: -120px;
    z-index: 1000;
    min-width: 100%;
    transition: 0.3s;
  }
  .bottomnav.active {
    bottom: 0;
  }
  .bottomnav.hide {
    display: none;
  }
  .bottomnav__button {
    display: none;
    width: 30px;
    height: 30px;
    background-color: #3E3A39;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    position: absolute;
    top: -15px;
    right: 10px;
  }
  .bottomnav__button.active {
    display: block;
  }
  .bottomnav__button i::before {
    line-height: 30px;
  }
  .bottomnav__tcolumn {
    min-width: 100%;
    max-width: 100%;
    padding: 20px 0;
    gap: 1.6vw;
  }
  .bottomnav__tcolumn--left .button,
  .bottomnav__tcolumn--right .button {
    width: 46.4vw;
  }
  .bottomnav__tcolumn--left .button span,
  .bottomnav__tcolumn--right .button span {
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    right: 15px;
    bottom: 0;
    margin: auto;
  }
  .bottomnav__tcolumn--left .button {
    background-color: #f26f45;
  }
  .bottomnav__tcolumn--right .button {
    background-color: #52B0A7;
  }
}
.p-tec-footer__pagetop {
  bottom: 2rem;
  z-index: 1000;
}

.p-tec-footer__copyright--bottom {
  color: #231815;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .p-tec-footer.active {
    padding-bottom: 96px;
    transition: 0.3s;
  }
  .p-tec-footer.active.hide {
    padding-bottom: 0;
  }
  .p-tec-footer__pagetop {
    bottom: 12rem;
  }
  .p-tec-footer.hide .p-tec-footer__pagetop {
    bottom: 2rem;
  }
}/*# sourceMappingURL=posasy_casestudy.css.map */