@charset "UTF-8";
:root {
  --header-text-color: #2f3030;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background-color: #fff;
}

button, input, select, textarea {
  font-family: "Noto Sans JP", sans-serif;
}

/* ブレイクポイントを指定 */
/* セクションのスクロール停止位置（固定ヘッダー分オフセット）*/
section {
  scroll-margin-top: 64px;
}

/* ボタン基本 */
.push-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 16px 35px 16px 24px;
  background-color: #ff7159;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.05em;
  border-radius: 10px;
  border: 1px solid #d46350;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  will-change: transform, box-shadow, background-color;
  position: relative;
  transform: translateY(0);
  box-shadow: 0 2px #d46350;
}
.push-button .button-icon {
  width: 16px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.push-button:hover {
  background-color: #ff8269;
  transform: translateY(-1px);
  box-shadow: 0 3px #d46350;
}
.push-button:active {
  background-color: #ff8269;
  transform: translateY(2px);
  box-shadow: 0 0 #d46350;
  transition: transform 0.05s, box-shadow 0.05s;
}

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

/* トップに戻るボタン */
.back-to-top {
  margin: 0 64px;
  position: fixed;
  right: 0;
  bottom: 109px;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .back-to-top {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .back-to-top {
    margin: 0;
    width: 13.5vw;
    height: auto;
    min-width: 40px;
    min-height: 40px;
    bottom: 10px;
    right: 2.9vw;
  }
  .back-to-top.is-fixed-bottom {
    bottom: 265px;
  }
}
.back-to-top:hover {
  filter: brightness(1.15);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top img {
  width: 100%;
  height: auto;
}

/* SP表示時メニュー下オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: pointer;
}
.overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* リスト浮き上がりアニメーション用設定 */
.fade-item {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  width: 100%;
  height: 64px;
  background-color: #fff;
  color: var(--header-text-color);
  position: sticky;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    background-color: transparent;
    height: 0;
  }
}
.header .header-inner {
  max-width: 1440px;
  height: 100%;
  padding: 1px 43px 0 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header .header-inner {
    padding: 1px 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .header .header-inner {
    padding: 0;
    position: static;
    background-color: transparent;
    pointer-events: none;
  }
}
.header .header-inner .logo {
  padding: 3px 0 0;
}
@media screen and (max-width: 768px) {
  .header .header-inner .logo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    width: 41vw;
    height: 14.8vw;
    padding: 5.1vw 6.2vw 2.6vw 5vw;
    box-sizing: border-box;
    pointer-events: auto;
    background-color: #fff;
    border-bottom-right-radius: 5vw;
  }
}
.header .header-inner .logo a {
  display: flex;
  align-items: center;
  width: 190px;
}
@media screen and (max-width: 768px) {
  .header .header-inner .logo a {
    display: block;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header .header-inner .logo a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.header .header-inner .nav-menu {
  margin-left: 30px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header .header-inner .nav-menu {
    margin-left: 16px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header .header-inner .nav-menu {
    display: none;
  }
}
.header .header-inner .nav-menu .nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: clamp(10px, 4.6vw, 68px);
  list-style: none;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  .header .header-inner .nav-menu .nav-list {
    gap: clamp(10px, 4vw, 68px);
  }
}
.header .header-inner .nav-menu .nav-list li {
  height: 100%;
  display: flex;
  align-items: center;
}
.header .header-inner .nav-menu .nav-list li a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: var(--header-text-color);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header .header-inner .nav-menu .nav-list li a {
    font-size: clamp(11px, 1.37vw, 14px);
  }
}
.header .header-inner .nav-menu .nav-list li a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 8px;
  margin-right: 8px;
  background: url("../img/arrow1.svg") no-repeat center/contain;
  flex-shrink: 0;
  align-self: center;
}
@media screen and (max-width: 1024px) {
  .header .header-inner .nav-menu .nav-list li a::before {
    width: 0.36em;
    height: 0.57em;
  }
}
@media screen and (max-width: 768px) {
  .header .header-inner .push-button {
    display: none;
  }
}
.header .header-inner .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.1vw;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header .header-inner .menu-toggle {
    display: flex;
    position: fixed;
    top: 2.9vw;
    right: 3.5vw;
    z-index: 101;
    width: 11.3vw;
    height: 11.3vw;
    min-width: 40px;
    min-height: 40px;
    background-color: #ff7159;
    border-radius: 50%;
    pointer-events: auto;
    margin: 0;
    transition: background-color 0.2s ease;
  }
  .header .header-inner .menu-toggle:hover {
    background-color: #ff8269;
  }
}
.header .header-inner .menu-toggle .bar {
  display: block;
  width: 4.8vw;
  height: 2px;
  background-color: #fff;
  border-radius: 9999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.header .header-inner .menu-toggle .bar:nth-child(2) {
  transition: transform 0.3s ease, opacity 0.01s ease;
}
.header .sp-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .sp-menu {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header .sp-menu .sp-menu-inner {
    padding: 19vw 5vw 28px;
  }
  .header .sp-menu .sp-menu-inner ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.8vw;
  }
  .header .sp-menu .sp-menu-inner ul li {
    background-color: #f7f7f7;
    border-radius: 1.5vw;
    transition: background-color 0.2s ease;
  }
  .header .sp-menu .sp-menu-inner ul li:hover {
    background-color: #e0e0e0;
  }
  .header .sp-menu .sp-menu-inner ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1.73vw 1.2vw;
    text-decoration: none;
    color: var(--header-text-color);
    font-size: 4vw;
    font-weight: 500;
    letter-spacing: 0.06em;
  }
  .header .sp-menu .sp-menu-inner ul li a::before {
    content: "";
    position: absolute;
    left: 2.9vw;
    top: 52%;
    transform: translateY(-50%);
    width: 1vw;
    height: 2vw;
    background: url("../img/arrow1.svg") no-repeat center/contain;
  }
  .header .sp-menu .sp-menu-inner .sp-menu-button {
    display: flex;
    justify-content: center;
    margin-top: 4.8vw;
  }
  .header .sp-menu .sp-menu-inner .sp-menu-button .push-button {
    font-size: clamp(17px, 3.7vw, 28px);
    width: clamp(220px, 49vw, 368px);
    height: clamp(58px, 12.8vw, 96px);
    box-sizing: border-box;
    padding: 0 clamp(18px, 4.1vw, 31px) 0 clamp(48px, 10.8vw, 81px);
    gap: clamp(30px, 6.8vw, 51px);
    border-radius: 2vw;
    border-width: 2px;
    flex-direction: row-reverse;
  }
  .header .sp-menu .sp-menu-inner .sp-menu-button .push-button .button-icon {
    width: clamp(18px, 4.1vw, 31px);
    height: auto;
  }
}
.header .sp-menu-overlay {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.header.is-open .menu-toggle .bar {
  width: 5.8vw;
}
.header.is-open .menu-toggle .bar:nth-child(1) {
  transform: translateY(calc(2px + 1.1vw)) rotate(45deg);
}
.header.is-open .menu-toggle .bar:nth-child(2) {
  opacity: 0;
}
.header.is-open .menu-toggle .bar:nth-child(3) {
  transform: translateY(calc(-2px - 1.1vw)) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .header.is-open .sp-menu {
    max-height: 500px;
  }
}

.mainVisual {
  position: relative;
  width: 100%;
  height: 700px;
  background: url(../img/maprico-kv-pc.png) no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .mainVisual {
    height: 104.7vw;
    min-height: 340px;
    padding: 0 32px 10px;
    background: url(../img/maprico-kv-sp.png) no-repeat center bottom/cover;
  }
}
.mainVisual .mv-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 18px;
  padding: 18px 37px 18px 40px;
  max-width: 884px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .mainVisual .mv-content {
    max-width: 686px;
    width: 100%;
    border-radius: 2.6vw;
    padding: 18px 3.7vw 15px;
    margin: 0;
  }
}
.mainVisual .mv-content .mv-text {
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -0.02em;
  color: #495363;
  margin-right: 52px;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .mainVisual .mv-content .mv-text {
    font-size: 34px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .mainVisual .mv-content .mv-text {
    font-size: 3.95vw;
    margin-right: 10px;
    margin-bottom: 0.2vw;
    flex-shrink: 2;
  }
}
.mainVisual .mv-content .mv-logo {
  width: 348px;
  height: auto;
  padding-top: 2px;
  flex-shrink: 1;
}
@media screen and (max-width: 1024px) {
  .mainVisual .mv-content .mv-logo {
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .mainVisual .mv-content .mv-logo {
    width: 36vw;
    min-width: 30px;
  }
}
.mainVisual .mv-content.btn-set {
  position: absolute;
  top: 100%;
  transform: translate(0, -50%);
  gap: 22px;
  padding: 22px 45px;
  max-width: calc(100% - 40px);
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .mainVisual .mv-content.btn-set {
    padding: 1.8vw 4vw;
  }
}
@media screen and (max-width: 768px) {
  .mainVisual .mv-content.btn-set {
    flex-direction: column;
    padding: 5.5vw 6.5vw 6.1vw;
    transform: translateY(-17.36%);
    left: 0;
    right: 0;
    margin: 0 auto;
    gap: 4.8vw;
    width: 92vw;
    max-width: 686px;
  }
}
.mainVisual .mv-content.btn-set .push-button {
  justify-content: flex-end;
  padding: 16px 26px 16px 2vw;
  max-width: 374px;
  gap: 0;
}
@media screen and (max-width: 900px) {
  .mainVisual .mv-content.btn-set .push-button {
    padding: 8px 18px;
  }
}
.mainVisual .mv-content.btn-set .push-button.mv {
  font-size: 21px;
  width: 374px;
  height: 86px;
  border-radius: 15px;
  flex-shrink: 1;
  min-width: 200px;
}
@media screen and (max-width: 1200px) {
  .mainVisual .mv-content.btn-set .push-button.mv {
    font-size: clamp(14px, 1.75vw, 21px);
    width: clamp(200px, 31.17vw, 374px);
    height: clamp(55px, 7.17vw, 86px);
    border-radius: clamp(10px, 1.25vw, 15px);
  }
}
@media screen and (max-width: 900px) {
  .mainVisual .mv-content.btn-set .push-button.mv {
    height: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .mainVisual .mv-content.btn-set .push-button.mv {
    justify-content: flex-end;
    max-width: 590px;
    min-width: 150px;
    width: 80vw;
    height: auto;
    font-size: clamp(10px, 4vw, 31.4px);
    border-radius: 2.3vw;
    padding: 6vw 5vw 6.8vw;
  }
  .mainVisual .mv-content.btn-set .push-button.mv span {
    width: 100%;
    text-align: center;
  }
}
.mainVisual .mv-content.btn-set .push-button.mv-demo {
  background-color: #f25c70;
  border: 2px solid #c44b5a;
  box-shadow: 0 2px #c44b5a;
  letter-spacing: -0.005em;
}
@media screen and (max-width: 900px) {
  .mainVisual .mv-content.btn-set .push-button.mv-demo {
    padding: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .mainVisual .mv-content.btn-set .push-button.mv-demo {
    padding: 6vw 5.5vw 6.8vw 5vw;
    letter-spacing: 0.06em;
  }
}
.mainVisual .mv-content.btn-set .push-button.mv-demo .button-icon {
  width: 18px;
  margin-left: 50.4px;
}
@media screen and (max-width: 1200px) {
  .mainVisual .mv-content.btn-set .push-button.mv-demo .button-icon {
    width: 1.5vw;
    margin-left: clamp(15px, 4.2vw, 50.4px);
  }
}
@media screen and (max-width: 768px) {
  .mainVisual .mv-content.btn-set .push-button.mv-demo .button-icon {
    width: 4vw;
    height: auto;
    rotate: -90deg;
    margin-left: 0;
  }
}
.mainVisual .mv-content.btn-set .push-button.mv-demo:hover {
  background-color: #ff667a;
  transform: translateY(-1px);
  box-shadow: 0 3px #c44b5a;
}
.mainVisual .mv-content.btn-set .push-button.mv-demo:active {
  background-color: #ff667a;
  transform: translateY(2px);
  box-shadow: 0 0 #c44b5a;
  transition: transform 0.05s, box-shadow 0.05s;
}
.mainVisual .mv-content.btn-set .push-button.mv-download {
  background-color: #4c84bd;
  border: 2px solid #3c6b99;
  box-shadow: 0 2px #3c6b99;
}
@media screen and (max-width: 900px) {
  .mainVisual .mv-content.btn-set .push-button.mv-download {
    padding: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .mainVisual .mv-content.btn-set .push-button.mv-download {
    letter-spacing: 0.1em;
    padding: 6vw 5.5vw 6.8vw 5vw;
  }
}
.mainVisual .mv-content.btn-set .push-button.mv-download .button-icon {
  width: 24px;
  height: 24px;
  margin-left: 63.36px;
}
@media screen and (max-width: 1200px) {
  .mainVisual .mv-content.btn-set .push-button.mv-download .button-icon {
    width: clamp(16px, 2vw, 24px);
    height: auto;
    margin-left: clamp(20px, 5.28vw, 63.36px);
  }
}
@media screen and (max-width: 768px) {
  .mainVisual .mv-content.btn-set .push-button.mv-download .button-icon {
    width: 5vw;
    height: auto;
    margin-left: 0;
  }
}
.mainVisual .mv-content.btn-set .push-button.mv-download:hover {
  background-color: #5193d6;
  transform: translateY(-1px);
  box-shadow: 0 3px #3c6b99;
}
.mainVisual .mv-content.btn-set .push-button.mv-download:active {
  background-color: #5193d6;
  transform: translateY(2px);
  box-shadow: 0 0 #3c6b99;
  transition: transform 0.05s, box-shadow 0.05s;
}

.feature {
  background-color: #fff0e8;
  padding: 149px 0 0;
}
@media screen and (max-width: 768px) {
  .feature {
    padding: 0;
  }
}
.feature .feature-top {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 77px;
  padding-left: 97px;
}
@media screen and (max-width: 900px) {
  .feature .feature-top {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .feature .feature-top {
    padding: 45.2vw 4.6vw 9.6vw;
  }
}
.feature .feature-top .feature-list {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .feature .feature-top .feature-list {
    padding-bottom: 0;
  }
}
.feature .feature-top .feature-list .feature-card {
  background-color: #fffcfa;
  list-style: none;
  border-radius: 15px;
  padding: 32px 27px 32px 30px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .feature .feature-top .feature-list .feature-card {
    border-radius: 2.4vw;
    padding: 4vw 5.5vw 4.2vw 3.6vw;
    margin-bottom: 21px;
  }
}
.feature .feature-top .feature-list .feature-card:last-child {
  margin-bottom: 0;
}
.feature .feature-top .feature-list .feature-card .title {
  display: flex;
  align-items: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: #495363;
  margin-bottom: 3px;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .feature .feature-top .feature-list .feature-card .title {
    font-size: 6vw;
    margin-bottom: 2vw;
    gap: 0.5vw;
  }
}
.feature .feature-top .feature-list .feature-card .title img {
  width: 43px;
}
@media screen and (max-width: 768px) {
  .feature .feature-top .feature-list .feature-card .title img {
    width: 5.8vw;
  }
}
.feature .feature-top .feature-list .feature-card .text {
  font-size: 18px;
  font-weight: 500;
  color: #6b6b6b;
  padding-left: 54px;
  letter-spacing: -0.03em;
  line-height: 1.8;
}
.feature .feature-top .feature-list .feature-card .text .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .feature .feature-top .feature-list .feature-card .text {
    font-size: 3.4vw;
    font-weight: 400;
    padding-left: 6vw;
    letter-spacing: -0.027em;
    line-height: 1.5;
  }
  .feature .feature-top .feature-list .feature-card .text .sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .feature .feature-top .feature-img {
    padding-left: 32px;
  }
}
.feature .feature-bottom {
  background-color: #3e4c63;
  padding: 59px 20px 65px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature .feature-bottom {
    padding: 13vw 20px 10.8vw;
  }
}
.feature .feature-bottom .title {
  text-align: center;
  display: inline-block;
  border-bottom: 4px dotted #bbc2c9;
  padding-bottom: 19px;
  margin-bottom: 37px;
  line-height: 1;
  font-size: 40px;
  font-weight: 600;
  color: #c6c6c6;
}
@media screen and (max-width: 768px) {
  .feature .feature-bottom .title {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10vw;
    font-size: clamp(22px, 5.35vw, 40px);
    position: relative;
  }
  .feature .feature-bottom .title::after {
    position: absolute;
    bottom: -3.2vw;
    left: -1vw;
    background: radial-gradient(circle farthest-side, #bbc2c9, #bbc2c9, transparent 60%, transparent);
    background-size: 1vw;
    content: "";
    display: inline-block;
    height: 0.5vw;
    width: 100%;
  }
}
.feature .feature-bottom .feature-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .feature .feature-bottom .feature-list {
    flex-direction: column;
    align-items: center;
    gap: 5.15vw;
  }
}
.feature .feature-bottom .feature-list .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 22px 37px;
  border-radius: 14px;
}
@media screen and (max-width: 1200px) {
  .feature .feature-bottom .feature-list .feature-card {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .feature .feature-bottom .feature-list .feature-card {
    width: 71vw;
    height: 42.6vw;
    min-height: 200px;
    padding: 2vw 10px;
    border-radius: 2.4vw;
  }
}
.feature .feature-bottom .feature-list .feature-card .feature-img {
  width: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .feature .feature-bottom .feature-list .feature-card .feature-img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .feature .feature-bottom .feature-list .feature-card .feature-img {
    width: 29vw;
    min-width: 150px;
  }
}
.feature .feature-bottom .feature-list .feature-card .text {
  margin-top: 10px;
  width: 247px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.77;
}
.feature .feature-bottom .feature-list .feature-card .text .sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .feature .feature-bottom .feature-list .feature-card .text {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .feature .feature-bottom .feature-list .feature-card .text {
    margin-top: 2px;
    width: 100%;
    font-size: clamp(10px, 3.4vw, 26px);
    line-height: 1.46;
  }
  .feature .feature-bottom .feature-list .feature-card .text .pc {
    display: none;
  }
  .feature .feature-bottom .feature-list .feature-card .text .sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .feature .feature-bottom .feature-list .feature-card.card1 .feature-img {
    padding-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .feature .feature-bottom .feature-list .feature-card.card2 .text {
    margin-top: 2.3vw;
  }
}
@media screen and (max-width: 768px) {
  .feature .feature-bottom .feature-list .feature-card.card3 .text {
    margin-top: 9px;
  }
}

.movie {
  background: #fff url("../img/movie-img-bg.png") no-repeat top center/100% auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 95px 20px 117px;
}
@media screen and (max-width: 768px) {
  .movie {
    background-image: url("../img/movie-img-bg-sp.png");
    padding: 6vw 20px 5.2vw;
  }
}
.movie .movie-title {
  text-align: center;
  line-height: 1;
  color: #ff7159;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 55px;
}
.movie .movie-title .sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .movie .movie-title {
    font-size: clamp(22px, 5.5vw, 40px);
    line-height: 1.45;
    margin-bottom: 3.2vw;
  }
  .movie .movie-title .sp {
    display: block;
  }
}
.movie .movie-video {
  position: relative;
  width: 100%;
  max-width: 898px;
  aspect-ratio: 16/9;
  border-radius: 2vw;
  overflow: hidden;
}
.movie .movie-video video {
  background-color: #eee;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie .movie-video .movie-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.4s ease;
}
.movie .movie-video .movie-play-btn img {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 768px) {
  .movie .movie-video .movie-play-btn img {
    width: 12.5vw;
    height: auto;
  }
}
.movie .movie-video {
  /* 再生中の状態 */
}
.movie .movie-video.is-playing iframe {
  pointer-events: auto;
}
.movie .movie-video.is-playing .movie-play-btn {
  opacity: 0;
  pointer-events: none;
}
.movie .movie-video:not(.is-playing) .movie-play-btn:hover {
  opacity: 0.8;
}

.service {
  background-color: #ebebeb;
  padding: 35px 20px 55px;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 10vw 20px 6vw;
  }
}
.service .service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 51px 62px;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service .service-list {
    flex-direction: column;
    align-items: center;
    gap: 5.3vw;
  }
}
.service .service-list .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  width: 465px;
  height: 375px;
  border-radius: 15px;
  padding: 17px 5px;
}
@media screen and (max-width: 768px) {
  .service .service-list .service-card {
    width: 81vw;
    height: 50.2vw;
    min-height: 240px;
    border-radius: 2.4vw;
    padding: 2vw 0.7vw;
  }
}
.service .service-list .service-card .title {
  color: #e8705a;
  text-align: center;
  line-height: 1;
  font-size: 26px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .service .service-list .service-card .title {
    font-size: clamp(20px, 4.3vw, 26px);
  }
}
.service .service-list .service-card .title.title2 {
  color: #479aa1;
}
.service .service-list .service-card .title.title3 {
  color: #568ec7;
}
.service .service-list .service-card .title.title4 {
  color: #d9a625;
}
.service .service-list .service-card .title.title5 {
  color: #f27e8e;
}
.service .service-list .service-card .img {
  width: 100%;
  height: 172px;
  background-color: #ffeeeb;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 18px auto 20px;
}
@media screen and (max-width: 768px) {
  .service .service-list .service-card .img {
    height: 23vw;
    min-height: 110px;
    margin: 2.3vw auto 0;
  }
}
.service .service-list .service-card .img.img2 {
  background-color: #e9f3f4;
}
.service .service-list .service-card .img.img3 {
  background-color: #ebf1f8;
}
.service .service-list .service-card .img.img4 {
  background-color: #faf4e5;
}
.service .service-list .service-card .img.img5 {
  background-color: #fdf0f1;
}
.service .service-list .service-card .img img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.service .service-list .service-card .description {
  color: #6b6b6b;
  text-align: justify;
  font-size: 18px;
  letter-spacing: -0.017em;
  line-height: 1.75;
  padding: 0 33px;
}
@media screen and (max-width: 768px) {
  .service .service-list .service-card .description {
    font-size: clamp(12px, 3.05vw, 24px);
    letter-spacing: -0.02em;
    padding: 0 3.5vw;
    margin-top: 2vw;
  }
}

.demo {
  background: #fff url("../img/demo-img-bg.png") no-repeat top center/100% auto;
  padding: 47px 40px 49px;
}
@media screen and (max-width: 1200px) {
  .demo {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 768px) {
  .demo {
    background: #fff url("../img/demo-img-bg-sp.png") no-repeat top center/100% auto;
    padding: 11.5vw 20px 15vw;
  }
}
.demo .demo-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.demo .demo-inner .qr {
  background-color: #fff;
  border: 3px solid #c6c6c6;
  width: 259px;
  border-radius: 13px;
  padding: 30px;
  margin-left: 68px;
}
@media screen and (max-width: 1200px) {
  .demo .demo-inner .qr {
    width: 240px;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .demo .demo-inner .qr {
    display: none;
  }
}
.demo .demo-inner .qr img {
  width: 100%;
  height: 100%;
}
.demo .demo-inner .arrow {
  width: 80px;
  margin: 0 42px 0 36px;
}
@media screen and (max-width: 1200px) {
  .demo .demo-inner .arrow {
    width: 60px;
    margin: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .demo .demo-inner .arrow {
    display: none;
  }
}
.demo .demo-inner .arrow img {
  width: 100%;
  height: auto;
}
.demo .demo-inner .text-content {
  height: 259px;
  padding: 24px 0 60px;
}
@media screen and (max-width: 1200px) {
  .demo .demo-inner .text-content {
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .demo .demo-inner .text-content {
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.demo .demo-inner .text-content .title-content {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding-bottom: 17px;
  margin-left: -10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .demo .demo-inner .text-content .title-content {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  .demo .demo-inner .text-content .title-content {
    gap: 0;
    padding-bottom: 2.8vw;
    margin-left: 0;
    margin-bottom: 8vw;
  }
}
.demo .demo-inner .text-content .title-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 10px;
  border-bottom: 6px dotted #bbc2c9;
}
@media screen and (max-width: 1200px) {
  .demo .demo-inner .text-content .title-content::after {
    left: 0;
    right: -4vw;
  }
}
@media screen and (max-width: 768px) {
  .demo .demo-inner .text-content .title-content::after {
    border-bottom: none;
    left: 1vw;
    right: 0;
    background: radial-gradient(circle farthest-side, #bbc2c9, #bbc2c9, transparent 60%, transparent);
    background-size: 2vw;
    display: inline-block;
    height: 1.5vw;
    width: 100%;
  }
}
.demo .demo-inner .text-content .title-content .demo-icon {
  width: 35px;
  min-width: 35px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .demo .demo-inner .text-content .title-content .demo-icon {
    width: 4.5vw;
    min-width: 16px;
    margin-right: 2vw;
  }
}
.demo .demo-inner .text-content .title-content .demo-icon img {
  display: block;
  width: 100%;
}
.demo .demo-inner .text-content .title-content .title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #f07762;
}
@media screen and (max-width: 1200px) {
  .demo .demo-inner .text-content .title-content .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .demo .demo-inner .text-content .title-content .title {
    font-size: clamp(16px, 4.8vw, 36px);
  }
}
.demo .demo-inner .text-content .title-content .title .tab {
  display: none;
}
@media screen and (max-width: 1200px) {
  .demo .demo-inner .text-content .title-content .title .tab {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .demo .demo-inner .text-content .title-content .title .tab {
    display: none;
  }
}
.demo .demo-inner .text-content .description {
  font-size: 30px;
  font-weight: 600;
  color: #2f3030;
  line-height: 1.6;
  padding-left: 38px;
}
@media screen and (max-width: 1200px) {
  .demo .demo-inner .text-content .description {
    font-size: clamp(16px, 2.5vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .demo .demo-inner .text-content .description {
    display: none;
  }
}
.demo .demo-inner .text-content .push-button.demo-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .demo .demo-inner .text-content .push-button.demo-btn {
    display: inline-flex;
    justify-content: flex-end;
    background-color: #f25c70;
    border: 2px solid #c44b5a;
    box-shadow: 0 2px #c44b5a;
    letter-spacing: 0.06em;
    max-width: 590px;
    width: 80vw;
    font-size: clamp(16px, 4vw, 31.4px);
    border-radius: 2.3vw;
    padding: 6vw 5vw 6.8vw;
  }
  .demo .demo-inner .text-content .push-button.demo-btn span {
    width: 100%;
    text-align: center;
    padding-left: 5vw;
  }
  .demo .demo-inner .text-content .push-button.demo-btn .button-icon {
    width: 3.5vw;
    height: auto;
    rotate: -90deg;
    margin-left: 0;
  }
}

.contact {
  background: url(../img/contact-img-bg.png) no-repeat center/cover;
  padding: 104px 35px;
}
@media screen and (max-width: 768px) {
  .contact {
    background: url(../img/contact-img-bg-sp.png) no-repeat center/cover;
    padding: 9.2vw 4.6vw;
  }
}
.contact .contact-inner {
  max-width: 1087px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 49px 54px 37px 72px;
  border-radius: 22px;
}
@media screen and (max-width: 1200px) {
  .contact .contact-inner {
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .contact .contact-inner {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact-inner {
    flex-direction: column;
    padding: 6.5vw 4vw 5.4vw;
    border-radius: 4vw;
  }
}
.contact .contact-inner .left {
  width: clamp(280px, 42vw, 478px);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .contact .contact-inner .left {
    width: 100%;
    padding: 0 5.5vw;
    margin-right: 0;
    margin-bottom: 0.3vw;
  }
}
.contact .contact-inner .left .icon {
  width: 143px;
  height: auto;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .contact .contact-inner .left .icon {
    width: 19vw;
    min-width: 120px;
    margin-bottom: 2.8vw;
  }
}
.contact .contact-inner .left .description {
  font-size: 20px;
  text-align: justify;
  line-height: 1.7;
  letter-spacing: -0.045em;
}
@media screen and (max-width: 768px) {
  .contact .contact-inner .left .description {
    font-size: 3.5vw;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
  }
}
.contact .contact-inner .btnset {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .contact .contact-inner .btnset {
    gap: 3.6vw;
  }
}
.contact .contact-inner .btnset .push-button {
  width: clamp(260px, 37vw, 424px);
  height: clamp(60px, 8.4vw, 96px);
  font-size: clamp(16px, 2.1vw, 24px);
  padding: 16px clamp(22px, 3.14vw, 36px);
  box-sizing: border-box;
  border-width: 2px;
  border-radius: 15px;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .contact .contact-inner .btnset .push-button {
    width: 76vw;
    height: 16.9vw;
    font-size: 4.35vw;
    border-radius: 3vw;
    padding: 2vw 6.4vw;
  }
}
.contact .contact-inner .btnset .push-button .button-icon {
  width: 24px;
  height: 24px;
  margin-left: clamp(41px, 5.84vw, 67px);
}
@media screen and (max-width: 768px) {
  .contact .contact-inner .btnset .push-button .button-icon {
    width: 4.3vw;
    min-width: 20px;
    margin-left: 13vw;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact-inner .btnset .push-button span {
    width: 100%;
    text-align: center;
    padding-left: 20vw;
  }
}
.contact .contact-inner .btnset .push-button.contact-download {
  background-color: #4c84bd;
  border-color: #3c6b99;
  box-shadow: 0 2px #3c6b99;
  letter-spacing: -0.005em;
  padding: 16px clamp(13px, 1.92vw, 22px) 16px clamp(22px, 3.14vw, 36px);
}
@media screen and (max-width: 1200px) {
  .contact .contact-inner .btnset .push-button.contact-download {
    padding: 16px clamp(22px, 3.14vw, 36px);
  }
}
@media screen and (max-width: 768px) {
  .contact .contact-inner .btnset .push-button.contact-download {
    letter-spacing: -0.01em;
    padding: 2vw 6.4vw;
  }
}
.contact .contact-inner .btnset .push-button.contact-download .button-icon {
  width: clamp(29px, 4.18vw, 48px);
  margin-left: clamp(25px, 3.48vw, 40px);
}
@media screen and (max-width: 1200px) {
  .contact .contact-inner .btnset .push-button.contact-download .button-icon {
    margin-left: clamp(25px, 3.8vw, 60px);
    width: min(24px, 2.8vw);
  }
}
@media screen and (max-width: 768px) {
  .contact .contact-inner .btnset .push-button.contact-download .button-icon {
    width: 4.3vw;
    min-width: 20px;
    height: auto;
    margin-left: 9.2vw;
  }
}
.contact .contact-inner .btnset .push-button.contact-download:hover {
  background-color: #5193d6;
  box-shadow: 0 3px #3c6b99;
}
.contact .contact-inner .btnset .push-button.contact-download:active {
  background-color: #5193d6;
  box-shadow: 0 0 #3c6b99;
}

.footer {
  background-color: #fff;
  padding: 38px 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 8.2vw 0 9.6vw;
  }
}
.footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 130px 0 176px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .footer .footer-inner {
    padding: 0 10vw;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-inner {
    flex-direction: column;
    padding: 0 20px;
  }
}
.footer .footer-inner .footer-logo {
  width: 266px;
  margin-right: 60px;
}
@media screen and (max-width: 1200px) {
  .footer .footer-inner .footer-logo {
    width: 240px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-inner .footer-logo {
    width: 48.5vw;
    min-width: 200px;
    margin: 0 auto 6.7vw;
  }
}
.footer .footer-inner .footer-logo img {
  width: 100%;
}
.footer .footer-inner .footer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 45px;
}
@media screen and (max-width: 1200px) {
  .footer .footer-inner .footer-text {
    align-items: center;
    margin: 0 auto;
  }
}
.footer .footer-inner .footer-text .footer-list {
  display: flex;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .footer .footer-inner .footer-text .footer-list {
    margin-bottom: 3.2vw;
  }
}
.footer .footer-inner .footer-text .footer-list li {
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  list-style: none;
  border-right: 1px solid #2f3030;
  padding: 0 46px;
}
@media screen and (max-width: 1200px) {
  .footer .footer-inner .footer-text .footer-list li {
    font-size: clamp(10px, 1.5vw, 17px);
    padding: 0 3vw;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-inner .footer-text .footer-list li {
    font-size: clamp(9px, 2.2vw, 17px);
    font-weight: 600;
    padding: 0 6.4vw;
  }
}
.footer .footer-inner .footer-text .footer-list li a {
  color: #2f3030;
  text-decoration: none;
}
.footer .footer-inner .footer-text .footer-list li:last-child {
  border: none;
  padding-right: 0;
}
@media screen and (max-width: 1200px) {
  .footer .footer-inner .footer-text .footer-list li:last-child {
    padding-right: 3vw;
  }
}
.footer .footer-inner .footer-text .corp {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.008em;
  padding-right: 8px;
}
@media screen and (max-width: 1200px) {
  .footer .footer-inner .footer-text .corp {
    font-size: clamp(10px, 1.6vw, 17px);
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-inner .footer-text .corp {
    font-size: clamp(9px, 2.3vw, 17px);
    font-weight: 600;
  }
}/*# sourceMappingURL=style.css.map */