html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (max-width: 959px) {
  html {
    scroll-padding-top: 44px;
  }
}

.mp-header {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100vw;
  background-color: #FFFFFF;
  z-index: 100;
}
.mp-header.follow {
  position: relative;
}
.mp-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 14px 24px;
  max-width: 960px;
}
@media screen and (max-width: 959px) {
  .mp-header-container {
    padding: 6px 8px;
  }
}
.mp-header__logo {
  width: 225px;
}
@media screen and (max-width: 959px) {
  .mp-header__logo {
    width: 155px;
  }
}
@media screen and (max-width: 959px) {
  .mp-header__nav {
    display: none;
  }
}
.mp-header__nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mp-header__nav-item {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.mp-header__nav-item.btn-list {
  display: flex;
  gap: 16px;
}
.mp-header__nav-item.btn-list > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 32px;
  padding: 0 8px;
}
.mp-header__nav-link {
  color: #333333;
}
.mp-header__nav-link:visited {
  color: #333333;
}
.mp-header__nav-link:hover {
  text-decoration: underline;
}
.mp-header__menu {
  display: none;
  width: 32px;
  height: 32px;
  background-image: url("../images/icon/sp_menu.png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .mp-header__menu {
    display: block;
  }
}
.mp-header__menu.is-active {
  background-image: url("../images/icon/sp_menu_close.png");
}
.mp-header__sp-menu {
  display: none;
  position: fixed;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 959px) {
  .mp-header__sp-menu {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  .mp-header__sp-menu.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}
.mp-header__sp-menu-list {
  background-color: #FFFFFF;
  padding: 32px 16px 24px;
  margin-top: 44px;
  transition: transform 0.3s 1s ease;
}
.mp-header__sp-menu-item {
  color: #FFFFFF;
  border-top: 1px solid #DEDCD7;
  border-bottom: 1px solid #DEDCD7;
}
.mp-header__sp-menu-item:last-child {
  border-top: none;
}
.mp-header__sp-menu-item > a {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mp-header__sp-menu-item > a > span {
  color: #333333;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.mp-header__sp-menu-item > a > img {
  width: 16px;
}
.mp-header__sp-menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 0 8px;
  height: 56px;
  font-size: 20px;
  font-weight: 600;
}
.mp-header__sp-menu-btn:not(:first-child) {
  margin-top: 16px;
}
.mp-header__sp-menu-btn-list {
  margin-top: 24px;
}

.btn-primary {
  background: linear-gradient(180deg, #FF551A 0%, #FF551A 77.51%, #F34A10 100%);
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  width: 100%;
  text-align: center;
}
.btn-primary:hover {
  color: #FFFFFF;
  text-decoration: none;
  background: linear-gradient(180deg, #E54B17 0%, #E54B17 77.51%, #D2400F 100%);
  opacity: 1;
}
.btn-primary:visited {
  color: #FFFFFF;
}
.btn-primary:link {
  color: #FFFFFF;
}
.btn-border {
  background: #FFFFFF;
  border: 1px solid #FF6010;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  color: #FF6010 !important;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  width: 100%;
  text-align: center;
}
.btn-border:hover {
  color: #FF6010;
  text-decoration: none;
  background: linear-gradient(180deg, #F9F8F6 0%, #F9F8F6 77.51%, #EEE 100%);
  opacity: 1;
}
.btn-border:link {
  color: #FF6010;
}
.btn-return {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 44px;
  padding: 0 16px;
  border: #DEDCD7;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFF 0%, #FFF 77.51%, #F6F6F6 100%);
  color: #666666;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.btn-return:hover {
  background: linear-gradient(180deg, #F9F8F6 0%, #F9F8F6 77.51%, #EEE 100%);
  text-decoration: none;
  opacity: 1;
}
.btn-return:visited {
  color: #666666;
}
.btn-return:link {
  color: #666666;
}

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

.contents {
  width: 100%;
  padding-top: 60px;
}
@media screen and (max-width: 959px) {
  .contents {
    padding-top: 44px;
  }
}

.color-primary {
  color: #FF6010;
}
.color-white {
  color: #FFFFFF;
}

.fs-8 {
  font-size: 8px;
}
.fs-10 {
  font-size: 10px;
}
.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-15 {
  font-size: 15px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.fs-24 {
  font-size: 24px;
}
.fs-26 {
  font-size: 26px;
}
.fs-32 {
  font-size: 32px;
}
@media screen and (max-width: 959px) {
  .fs-sp-10 {
    font-size: 10px;
  }
  .fs-sp-14 {
    font-size: 14px;
  }
  .fs-sp-16 {
    font-size: 16px;
  }
  .fs-sp-18 {
    font-size: 18px;
  }
  .fs-sp-20 {
    font-size: 20px;
  }
  .fs-sp-24 {
    font-size: 24px;
  }
  .fs-sp-26 {
    font-size: 26px;
  }
}

.lh-1 {
  line-height: 1;
}
.lh-1-2 {
  line-height: 1.2;
}
.lh-1-3 {
  line-height: 1.3;
}
.lh-1-4 {
  line-height: 1.4;
}
.lh-1-5 {
  line-height: 1.5;
}
.lh-1-6 {
  line-height: 1.6;
}
@media screen and (max-width: 959px) {
  .lh-sp-1 {
    line-height: 1;
  }
  .lh-sp-1-2 {
    line-height: 1.2;
  }
  .lh-sp-1-3 {
    line-height: 1.3;
  }
  .lh-sp-1-4 {
    line-height: 1.4;
  }
  .lh-sp-1-5 {
    line-height: 1.5;
  }
  .lh-sp-1-6 {
    line-height: 1.6;
  }
}

.fw-light {
  font-weight: 300;
}
.fw-regular {
  font-weight: 400;
}
.fw-bold {
  font-weight: 600;
}
@media screen and (max-width: 959px) {
  .fw-sp-bold {
    font-weight: 600;
  }
}

.bg-primary {
  background: #FF6010;
}
.bg-white {
  background: #FFFFFF;
}

@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 959px) {
  .sp-none {
    display: none !important;
  }
  .sp-inline {
    display: inline;
  }
  .sp-flex {
    display: flex;
  }
  .sp-center {
    text-align: center;
  }
  .sp-left {
    text-align: left !important;
  }
}

.consultation-wrap {
  width: 100%;
  background: linear-gradient(to right, #ffc766, #ff9900, #FF6010);
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 959px) {
  .consultation-wrap {
    padding: 24px 0 0;
    background: linear-gradient(180deg, #f90 0%, #ffc766 77.02%, #fff3d8 99.97%), linear-gradient(207deg, #f90 24.19%, #ffc766 70.54%, #fff3d8 100%);
  }
}
.consultation-text {
  text-align: center;
}
.consultation-text-wrap {
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 0 0 8px;
  gap: 16px;
}
@media screen and (max-width: 959px) {
  .consultation-text-wrap {
    padding: 24px 0 16px;
  }
}
.consultation-img-wrap {
  display: flex;
  flex-direction: row;
  margin: auto;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 959px) {
  .consultation-img-wrap {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.consultation-img-slogan {
  width: 261px;
  height: 97.2px;
  line-height: 97.2px;
}
.consultation-img-device {
  width: 320px;
}
@media screen and (max-width: 959px) {
  .consultation-img-device {
    width: 269px;
  }
}
.consultation-button-wrap {
  display: flex;
  margin: auto;
  justify-content: center;
  gap: 48px;
  padding-inline: 16px;
}
@media screen and (max-width: 959px) {
  .consultation-button-wrap {
    gap: 12px;
    width: 100%;
    padding-bottom: 24px;
  }
  .consultation-button-wrap.p-b-4 {
    padding-bottom: 48px;
  }
}
.consultation-btn {
  width: 100%;
  min-width: 280px;
  height: 72px;
  line-height: 72px;
  padding: 0 12px;
  text-align: center;
  border-radius: 8px;
}
@media screen and (max-width: 959px) {
  .consultation-btn {
    flex-grow: 1;
    min-width: 0;
    max-width: 166px;
    width: 100%;
    height: 56px;
    line-height: 56px;
  }
}

.triangle-down {
  width: 80px;
  margin: auto;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 30px solid #fff;
}

.introduction-question-wrap {
  max-width: 960px;
  background: #FFFFFF;
  margin: auto;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 959px) {
  .introduction-question-wrap {
    max-width: 444px;
    padding: 48px 8px;
  }
}
.introduction-question-text {
  color: #FF6010;
  margin: auto;
}
.introduction-question-img-wrap {
  max-width: 896px;
  margin-inline: auto;
}
@media screen and (max-width: 959px) {
  .introduction-question-img-wrap {
    padding: 0 8px;
  }
}
.introduction-question-answer-wrap {
  display: flex;
  flex-direction: column;
  margin: auto;
  text-align: center;
  gap: 8px;
}
.introduction-question-answer-main {
  padding: 0px 10px;
  line-height: 1.3;
}
@media screen and (max-width: 959px) {
  .introduction-question-answer-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
}
.introduction-question-answer-sp-text {
  padding: 0px 8px;
  line-height: 1.3;
}

.public-relations-bg {
  background: #f7f5ed;
}
.public-relations-inner {
  padding: 24px 16px 48px;
}
@media screen and (max-width: 959px) {
  .public-relations-inner {
    max-width: 850px;
    margin-inline: auto;
  }
}
.public-relations-wrap {
  max-width: 960px;
  margin: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 959px) {
  .public-relations-wrap {
    max-width: 818px;
    width: 100%;
    gap: 24px;
  }
}
.public-relations-wrap + .public-relations-wrap {
  margin-top: 48px;
}
@media screen and (max-width: 959px) {
  .public-relations-wrap + .public-relations-wrap {
    margin-top: 40px;
  }
}
.public-relations-title {
  margin: auto;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-color: #FF6010;
  text-decoration-thickness: auto;
  text-underline-offset: 25%; /* 8px */
  text-underline-position: from-font;
}
@media screen and (max-width: 959px) {
  .public-relations-title {
    border-bottom: none;
  }
}
.public-relations-title-wrap {
  display: flex;
  margin: auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 959px) {
  .public-relations-title-wrap {
    gap: 12px;
  }
}
.public-relations-title-wrap > img {
  height: 90px;
  width: 90px;
}
.public-relations-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.public-relations-content-item {
  display: flex;
  background: #FFFFFF;
  padding: 24px 40px;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 959px) {
  .public-relations-content-item {
    padding: 24px;
    flex-direction: column;
    gap: 16px;
  }
}
.public-relations-content-item.pd-wide {
  padding: 32px 40px;
}
@media screen and (max-width: 959px) {
  .public-relations-content-item.pd-wide {
    padding: 24px;
  }
}
.public-relations-content-item-img-wrap {
  flex-shrink: 0;
  max-width: 420px;
}
@media screen and (max-width: 959px) {
  .public-relations-content-item-img-wrap {
    max-width: 297px;
  }
}
.public-relations-content-item-img-wrap.wide {
  max-width: 430px;
}
@media screen and (max-width: 959px) {
  .public-relations-content-item-img-wrap.wide {
    max-width: 297px;
  }
}
.public-relations-content-item--column {
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 959px) {
  .public-relations-content-item--column {
    gap: 24px;
  }
}
.public-relations-column-wrap {
  display: flex;
  background: #FFFFFF;
  padding: 0 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 959px) {
  .public-relations-column-wrap {
    padding: 0px;
    width: 100%;
    max-width: 297px;
  }
}
.public-relations-column-wrap-certification {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 959px) {
  .public-relations-column-wrap-certification {
    flex-direction: column;
  }
}
.public-relations-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
@media screen and (max-width: 959px) {
  .public-relations-text-wrap {
    width: 100%;
    gap: 8px;
  }
}
.public-relations-text-wrap.main {
  gap: 16px;
}
@media screen and (max-width: 959px) {
  .public-relations-text-wrap.main {
    gap: 8px;
  }
}
.public-relations-text-wrap > img {
  max-height: 80px;
}
@media screen and (max-width: 959px) {
  .public-relations-text-wrap > img {
    max-width: 120px;
    max-height: 120px;
    margin: auto;
  }
}
.public-relations-text-remarks {
  vertical-align: super;
}
.public-relations-text-remarks-container {
  position: relative;
  height: 20.8px;
  top: -3px;
}
@media screen and (max-width: 959px) {
  .public-relations-text-remarks-container {
    height: 16px;
  }
}
.public-relations-text-label {
  border-radius: 20px;
  width: fit-content;
  padding: 4px 12px;
}
@media screen and (max-width: 959px) {
  .public-relations-text-label {
    margin: auto;
  }
}
.public-relations-certification-img.ais {
  margin-bottom: 8px;
  max-width: 134px;
}
@media screen and (max-width: 959px) {
  .public-relations-certification-img.ais {
    max-width: 205px;
  }
}
.public-relations-certification-img.pfs {
  max-width: 73px;
}
@media screen and (max-width: 959px) {
  .public-relations-certification-img.pfs {
    max-width: 120px;
  }
}
.public-relations-container {
  background: #f5f4f0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 130%;
  width: 216px;
  height: 66px;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .public-relations-container {
    width: 144px;
    height: 54px;
    line-height: 160%;
  }
}
.public-relations-container-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
@media screen and (max-width: 959px) {
  .public-relations-container-wrap {
    width: fit-content;
  }
}
.public-relations-container-wrap--three-column {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 959px) {
  .public-relations-container-wrap--three-column {
    grid-template-columns: 1fr 1fr;
  }
}

.text-center {
  text-align: center;
}

.publication-procedure-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 850px;
  padding: 48px 0;
  margin: auto;
  gap: 24px;
}
@media screen and (max-width: 959px) {
  .publication-procedure-wrap {
    padding: 48px 16px;
  }
}
.publication-procedure-title {
  text-align: center;
}
.publication-procedure-title .attention {
  display: inline-block;
  position: relative;
}
.publication-procedure-title .attention::before, .publication-procedure-title .attention::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 1px;
  background: #333333;
}
.publication-procedure-title .attention::before {
  left: -16px;
  transform: rotate(-118deg);
}
.publication-procedure-title .attention::after {
  right: -16px;
  transform: rotate(-62deg);
}
.publication-procedure-step-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.publication-procedure-step-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
@media screen and (max-width: 959px) {
  .publication-procedure-step-container {
    gap: 16px;
  }
}
.publication-procedure-step-container > img {
  width: 90px;
  align-self: flex-start;
}
.publication-procedure-step-text {
  line-height: 30px;
}
.publication-procedure-step-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.publication-procedure-step-text-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.publication-procedure-step-number {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}
.publication-procedure-step-btn {
  width: 100%;
  max-width: 280px;
  height: 44px;
  line-height: 44px;
  padding: 0 48px;
  text-align: center;
  border-radius: 8px;
}
@media screen and (max-width: 959px) {
  .publication-procedure-step-btn {
    max-width: 280px;
    width: 100%;
    height: 56px;
    line-height: 56px;
  }
}

.case-studies-bg {
  background: #f7f5ed;
}
.case-studies-wrap {
  display: flex;
  max-width: 960px;
  margin: auto;
  padding: 48px 0;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 959px) {
  .case-studies-wrap {
    padding: 48px 16px;
    gap: 24px;
  }
}
.case-studies-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .case-studies-container {
    max-width: 414px;
  }
}
.case-studies-container-wrap {
  display: flex;
  flex-direction: row;
  border-radius: 8px;
  gap: 16px;
}
@media screen and (max-width: 959px) {
  .case-studies-container-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.case-studies-container-img {
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 959px) {
  .case-studies-container-img {
    height: 225px;
  }
}
.case-studies-container-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-studies-text-wrap {
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  gap: 8px;
}
.case-studies-more-btn {
  width: 100%;
  max-width: 280px;
  height: 44px;
  line-height: 44px;
  padding: 0 12px;
  margin: auto;
  border: 1px solid #FF6010;
  border-radius: 8px;
}
@media screen and (max-width: 959px) {
  .case-studies-more-btn {
    height: 56px;
    line-height: 56px;
  }
}

.faq-wrap {
  display: flex;
  flex-direction: column;
  max-width: 840px;
  margin: auto;
  padding: 48px 0;
  gap: 24px;
}
@media screen and (max-width: 959px) {
  .faq-wrap {
    padding: 48px 16px;
  }
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-container-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-container-question {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.faq-container-question-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  flex: 0 0 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}
.faq-container-question-text {
  width: 100%;
  line-height: 30px;
  font-size: 16px;
}
@media screen and (max-width: 959px) {
  .faq-container-question-text {
    line-height: 1.6;
    font-size: 14px;
  }
}
.faq-container-answer {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.faq-container-answer-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  background: #ff9500;
  text-align: center;
  border-radius: 50%;
}
.faq-container-answer-text {
  width: 100%;
  line-height: 160%;
  background: #f5f4f0;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
}
@media screen and (max-width: 959px) {
  .faq-container-answer-text {
    font-size: 12px;
  }
}
.faq-container-answer-text > a {
  text-decoration: underline;
  color: #003a6b;
}

.note-wrap {
  display: flex;
  flex-direction: column;
  max-width: 634px;
  margin: auto;
  padding: 16px 0;
  gap: 8px;
}
@media screen and (max-width: 959px) {
  .note-wrap {
    max-width: 818px;
    padding: 16px;
  }
}
.note-text {
  padding-left: 2.2em;
  text-indent: -2.2em;
}

.top-fv {
  background-color: #ffefdb;
}
.top-fv-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-inline: auto;
  padding-inline: 44px;
  max-width: 1040px;
  height: 600px;
}
@media screen and (max-width: 959px) {
  .top-fv-wrap {
    justify-content: center;
    align-items: flex-start;
    padding-inline: 0px;
    height: 513px;
  }
}
.top-fv-content {
  display: block;
  margin-top: -12px;
  max-width: 483px;
  transition: opacity 1s 0.2s ease-out;
  opacity: 0;
}
@media screen and (max-width: 959px) {
  .top-fv-content {
    margin-top: 25px;
    max-width: 342px;
  }
}
.loaded .top-fv-content {
  opacity: 1;
}

.top-fv-img {
  position: absolute;
  top: 0;
  right: -156px;
  height: 100%;
  vertical-align: bottom;
  z-index: -1;
}
@media screen and (max-width: 1040px) {
  .top-fv-img {
    clip-path: polygon(24.6% 0%, 100% 0%, 100% 100%, 6.3% 100%);
  }
}
@media screen and (max-width: 959px) {
  .top-fv-img {
    top: auto;
    right: 0;
    bottom: 0;
    left: 50%;
    height: auto;
    clip-path: none;
    width: 959px;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .top-fv-img {
    width: 100%;
    height: 250px;
  }
}
.top-fv-img img {
  display: block;
  opacity: 0;
  transition: opacity 0.6s 0.2s ease-out, transform 0.6s 0.2s ease-out;
  transform: translateX(100px);
}
@media screen and (max-width: 959px) {
  .top-fv-img img {
    transform: translateX(0px);
  }
}
@media screen and (max-width: 767px) {
  .top-fv-img img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: 100%;
  }
}
.loaded img {
  transform: translateX(0);
  opacity: 1;
}

.floating-area {
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 8px 0;
  background-color: #FFFFFF;
  border-top: 1px solid #DEDCD7;
}
@media screen and (max-width: 959px) {
  .floating-area {
    display: block;
  }
}
.floating-area__inner {
  margin: auto;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.animated-img {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.5s ease-out;
}
.animated-chain-item {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.5s ease-out;
}
.animated-chain-item[data-delay] {
  transition-delay: attr(data-delay ms);
}

.animated-img.show {
  opacity: 1;
  transform: translateY(0);
}

.animated-chain.show .animated-chain-item {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  padding-right: 16px;
  padding-left: 16px;
}
@media screen and (max-width: 959px) {
  .footer {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}
.footer__contents {
  max-width: 980px;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .pc-hide {
    display: none !important;
  }
}

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

.copyright__logo img {
  height: 28px !important;
}
@media screen and (max-width: 959px) {
  .copyright__logo img {
    height: 21px !important;
  }
}
