@charset "utf-8";
html {
	scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP";
}
.container {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
.hidden-only-xs {
  display: none;
}
.visible-only-xs {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-only-xs {
    display: block;
  }
  .visible-only-xs {
    display: none;
  }
}
a > span {
  position: relative;
}
a > span > img {
  transition: 0.4s;
}
a > span > .off-hover {
  position: absolute;
  top: 0;
  left: 0
}
a:hover > span > .off-hover {
  opacity: 0;
}
.sec, .sec img {
  width: 100%;
}
.cta-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cta-list-item {
  display: flex;
}
.cta-list-item a {
  display: flex;
  padding: 8px 32px;
  border-radius: 8px;
  border: 2px solid #5096F2;
  text-align: center;
  font-family: "Noto Sans JP";
  font-weight: 700;
  text-decoration: none;
  align-items: center;
  gap: 8px;
  transition: 0.4s;
}
.cta-list-item.download a {
  background: #FFF;
  color: #5096F2;
  border: 2px solid #5096F2;
}
.cta-list-item.download a:hover {
  background: #5096F2;
  color: #FFF;
  border: 2px solid #FFF;
}
.cta-list-item.inquiry a {
  background: #5096F2;
  color: #FFF;
  border: 2px solid #FFF;
}
.cta-list-item.inquiry a:hover {
  background: #FFF;
  color: #5096F2;
  border: 2px solid #5096F2;
}
.cta-list-item a::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background-size: 1.2em 1.2em;
  background-repeat: no-repeat;
}
.cta-list-item.download a::before {
  background-image: url("../img/icon_download.svg");
  filter: brightness(0) saturate(100%) invert(47%) sepia(96%) saturate(1985%) hue-rotate(198deg) brightness(108%) contrast(90%);
}
.cta-list-item.download a:hover::before {
  filter: brightness(0) saturate(100%) invert(99%) sepia(3%) saturate(3132%) hue-rotate(140deg) brightness(121%) contrast(100%);
}
.cta-list-item.inquiry a::before {
  background-image: url("../img/icon_inquiry.svg");
  filter: brightness(0) saturate(100%) invert(99%) sepia(3%) saturate(3132%) hue-rotate(140deg) brightness(121%) contrast(100%);
}
.cta-list-item.inquiry a:hover::before {
  filter: brightness(0) saturate(100%) invert(47%) sepia(96%) saturate(1985%) hue-rotate(198deg) brightness(108%) contrast(90%);
}
.cta {
  padding: 48px 16px;
  background: #025a9a url("../img/CTA_area_pc.jpg") no-repeat center center/cover;
  box-sizing: border-box;
}
.cta .cta-list {
  gap: 48px;
}
.cta .cta-title {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(20px, 17.987px + 0.537vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 42px */
  margin-bottom: 32px;
}
.cta .cta-list-item a {
  font-size: 16px;
  line-height: 28px; /* 175% */
}
@media screen and (max-width: 767px) {
  .cta {
    background: #025a9a url("../img/CTA_area_sp.jpg") no-repeat center center/cover;
  }
  .cta .cta-list {
    flex-direction: column;
    gap: 32px;
  }
  .cta .cta-list-item {
    flex-direction: column;
    align-items: stretch;
  }
  .cta .cta-list-item a {
    justify-content: center;
  }
}
.logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inner-box {
  border: 8px solid #ee5000;
  border-radius: 40px;
  overflow: hidden;
  padding: 0;
}
.inner-box + .inner-box {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .inner-box + .inner-box {
    margin-top: 40px;
  }
}
.inner-box-title {
  margin: 0;
  border-bottom: 8px solid #ee5000;
}
.inner-box .inner-box-parts {
  margin-top: 48px
}
.inner-box .inner-box-parts:last-of-type {
  margin-bottom: 48px
}
@media screen and (max-width: 767px) {
  .inner-box .inner-box-parts {
    margin-top: 24px
  }
  .inner-box .inner-box-parts:last-of-type {
    margin-bottom: 24px
  }
}
.movie-box {
  margin-right: auto;
  margin-left: auto;
  max-width: 800px;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .movie-box {
    padding: 0 32px;
  }
}
.movie-box video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 4px solid var(--Color-01, #ee5000);
  background: var(--Color-White, #FFFFFF);
}
.video-player {
  position: relative;
  display: block;
  line-height: 0;
}
.video-player video {
  display: block;
  box-sizing: border-box;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border: 0;
  border-radius: 16px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.video-play-overlay:hover,
.video-play-overlay:focus-visible {
  background: rgba(0, 0, 0, 0.4);
  outline: none;
}
.video-play-overlay__icon {
  display: block;
  width: clamp(72px, 14%, 128px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 4px solid #fff;
  position: relative;
  transition: transform 0.2s, background 0.2s;
}
.video-play-overlay__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: clamp(12px, 1.6vw, 18px) 0 clamp(12px, 1.6vw, 18px) clamp(18px, 2.4vw, 26px);
  border-color: transparent transparent transparent #fff;
}
.video-play-overlay:hover .video-play-overlay__icon,
.video-play-overlay:focus-visible .video-play-overlay__icon {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.25);
}
.video-player.is-playing .video-play-overlay {
  display: none;
}
header, footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  max-width: 1120px;
  padding: 16px 20px;
  margin: 0 auto;
}
header {
  padding-top: 16px;
  padding-bottom: 16px;
}
header .cta-list {
  gap: 24px;
}
header .cta-list .cta-list-item a {
  font-size: 20px;
  line-height: 28px;
}
header .cta-list-item.inquiry a {
  border: 2px solid #5096F2;
}
header .cta-list-item.download a:hover {
  border: 2px solid #5096F2;
}
@media screen and (max-width: 767px) {
  header {
    justify-content: center;
  }
  header .cta-list {
    display: none;
  }
}
footer .logo {
  gap: 28px;
}
footer .logo img {
  max-width: 200px;
}
footer #copyright {
  text-align: right;
  font-size: clamp(12px, 9.987px + 0.537vw, 16px);
}
footer #copyright a {
  color: inherit;
}
@media screen and (max-width: 767px) {
  footer {
    flex-direction: column;
  }
  footer .logo {
    gap: 16px;
  }
  footer .logo > * {
    width: calc((100% - 16px) / 2);
  }
  footer .logo img {
    max-width: 100%;
  }
  footer #copyright {
    text-align: center;
  }
}
aside {
  position: fixed;
  right: 0;
  top: 110px;
  z-index: 100;
}
aside .cta-list {
  flex-direction: column;
  gap: 24px;
}
aside .cta-list-item a {
  writing-mode: vertical-lr;
  flex-direction: row-reverse;
  font-size: clamp(15px, 12.483px + 0.671vw, 20px);
  line-height: 120%; /* 24px */
  padding: clamp(24px, 19.973px + 1.074vw, 32px) clamp(13.5px, 11.235px + 0.604vw, 18px) clamp(24px, 19.973px + 1.074vw, 32px) clamp(16px, 11.973px + 1.074vw, 24px);
  border-radius: 16px 0 0 16px;
  border-width: 4px !important;
  border-right: 0 !important;
}
@media screen and (max-width: 767px) {
  aside .cta-list-item a {
    border-width: 3px;
  }
}
#hero {
  background-color: hsla(50, 86%, 90%, 1);
  background-image:
    radial-gradient(at 82% 13%, hsla(45, 100%, 67%, 1) 0px, transparent 50%),
    radial-gradient(at 77% 70%, hsla(49, 95%, 48%, 1) 0px, transparent 50%),
    radial-gradient(at 23% 11%, hsla(41, 100%, 47%, 1) 0px, transparent 50%),
    radial-gradient(at 76% 58%, hsla(34, 100%, 47%, 1) 0px, transparent 50%);
  position: relative;
  overflow: hidden;
}
#hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(80px, 12vw, 180px);
  background: linear-gradient(to bottom, rgba(252, 246, 212, 0) 0%, #fcf6d4 100%);
  pointer-events: none;
}
#hero .container {
  position: relative;
  z-index: 1;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 56px);
  padding-top: clamp(24px, 4vw, 64px);
  padding-bottom: clamp(64px, 8vw, 120px);
}
.hero-text {
  flex: 1 1 45%;
  color: #8B3A00;
}
.hero-title {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: clamp(28px, 2.9vw, 42px);
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.2vw, 20px);
}
.hero-title-line {
  display: inline-block;
  color: #FFF;
  background: #EE5000;
  padding: 0.18em 0.6em;
  border-radius: 14px;
  box-shadow: clamp(6px, 0.6vw, 10px) clamp(6px, 0.6vw, 10px) 0 0 #FFD75A;
}
@media screen and (max-width: 767px) {
  .hero-title {
    align-items: center;
  }
}
.hero-lead {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.8;
  margin: clamp(16px, 1.5vw, 24px) 0 0;
  color: #333333;
}
.hero-lead strong {
  color: #EE5000;
  font-weight: 700;
}
.hero-media {
  flex: 1 1 55%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(120, 40, 0, 0.22);
}
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fcf6d4;
}
.hero-video-trigger {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.hero-video-trigger:focus-visible {
  outline: 3px solid #EE5000;
  outline-offset: 3px;
}
.hero-video-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fcf6d4;
  pointer-events: none;
}
.hero-video-playicon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(64px, 6vw, 88px);
  height: clamp(46px, 4.3vw, 62px);
  transform: translate(-50%, -50%);
  border-radius: 14px / 28px;
  background-color: #FF0000;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.35);
  transition: transform 0.3s ease, background-color 0.3s ease;
  pointer-events: none;
}
.hero-video-playicon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #ffffff;
}
.hero-video-trigger:hover .hero-video-playicon,
.hero-video-trigger:focus-visible .hero-video-playicon {
  transform: translate(-50%, -50%) scale(1.06);
  background-color: #E60000;
}
.hero-video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hero-video-modal[hidden] {
  display: none;
}
.hero-video-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-video-modal__content {
  position: relative;
  width: 100%;
  max-width: 960px;
  transform: translateY(8px);
  transition: transform 0.25s ease;
}
.hero-video-modal.is-active .hero-video-modal__content {
  transform: translateY(0);
}
.hero-video-modal__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.hero-video-modal__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video-modal__close {
  position: absolute;
  top: -52px;
  right: -4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}
.hero-video-modal__close:hover,
.hero-video-modal__close:focus-visible {
  opacity: 0.7;
  outline: none;
}
body.is-modal-open {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hero-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .hero-text {
    flex: 1 1 auto;
    text-align: center;
  }
  .hero-media {
    flex: 1 1 auto;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
  }
  .hero-video-modal {
    padding: 16px;
  }
  .hero-video-modal__close {
    top: -44px;
    right: 0;
    font-size: 36px;
  }
}
#function {
  background: #fcf6d4;
}
#function .inner-box {
  margin-top: -64px;
  position: relative;
  background: linear-gradient(90deg, #F2CA05 50%, #F28A00 50%);
  border-radius: 40px;
  padding: 8px;
  border: 0;
}
@media screen and (max-width: 767px) {
  #function .inner-box {
    margin-top: -40px;
  }
}
#function .inner-box > div {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
}
#function .inner-box-title {
  border-bottom: 0;
}
#function .inner-box .inner-box-parts {
  margin-top: 0;
  margin-bottom: 0;
}
#function-link {
  margin: 0 auto;
  padding: 0 48px;
}
@media screen and (max-width: 767px) {
  #function .inner-box {}
}
#question {
  background: #fcf6d4 url("../img/03_onayami_fukidashi_pc.png") no-repeat center bottom/contain;
  padding-bottom: calc((132 / 3840) * 100vw);
}
@media screen and (max-width: 767px) {
  #question {
    background: #fcf6d4 url("../img/03_onayami_fukidashi_sp.png") no-repeat center bottom/contain;
    padding-bottom: calc((78 / 750) * 100vw);
  }
}
#answer {
  background-color: #fff;
  background-image: url("../img/04_sevice_bg_left_pc.png"), url("../img/04_sevice_bg_right_pc.png");
  background-repeat: no-repeat;
  background-position: left calc((100% - 1120px - (314px / 2.4)) / 2) top, right calc((100% - 1120px - (314px / 2.4)) / 2) top;
  background-size: calc(314px / 2.4) calc(654px / 2.4);
}
@media screen and (max-width: 767px) {
  #answer {
    background: #fff url("../img/04_sevice_bg_sp.png") no-repeat center top/contain;
  }
}
#point {
  background: #fff;
  padding-bottom: 60px
}
#usecase {
  background-color: #fff;
  background-image: url("../img/04_sevice_bg_left_pc.png"), url("../img/04_sevice_bg_right_pc.png");
  background-repeat: no-repeat;
  background-position: left calc((100% - 1120px - (314px / 2.4)) / 2) top, right calc((100% - 1120px - (314px / 2.4)) / 2) top;
  background-size: calc(314px / 2.4) calc(654px / 2.4);
}
@media screen and (max-width: 767px) {
  #usecase {
    background: #fff url("../img/04_sevice_bg_sp.png") no-repeat center top/contain;
  }
}
#voice {
  background: #fff url("../img/08_voices_bg_pc.png") no-repeat center top/cover;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #voice {
    background: #fff url("../img/08_voices_bg_sp.jpg") no-repeat center top/cover;
  }
}
#voice .voice-item + .voice-item {
  margin-top: 32px;
}
#price {
  background: #fff url("../img/09_price_bg_pc.png") no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  #price {
    background: #fff url("../img/09_price_bg_sp.png") no-repeat center top/cover;
  }
}