@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #dff3f7;
}

h3 {
  font-size: clamp(16px, 1.7vw, 18px);
  margin-bottom: 0.4em;
  font-weight: 600;
  color: #1e67c1;
  letter-spacing: 0.05em;
}

p {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.8;
  margin-bottom: 0.5em;
}
p:last-child {
  margin-bottom: 0;
}

.heading {
  text-align: center;
  padding: 100px 20px 40px;
}
.heading h2 {
  text-align: center;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0.1em;
  margin-bottom: 0.2em;
  font-weight: 800;
}
.heading h2 span {
  color: #1e67c1;
  font-size: 1.2em;
}
.heading p {
  text-align: center;
  font-weight: 500;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.8;
}

main .summary {
  position: sticky;
  top: 0;
  max-width: 100%;
  margin-bottom: 40px;
  background: #1e67c1;
  padding: 15px clamp(10px, 2vw, 40px);
  z-index: 1000;
  /* スマホ時の横スクロール設定 */
}
main .summary .inner {
  max-width: 1400px;
  margin: 0 auto;
}
main .summary .total {
  font-family: "Rubik", sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  text-align: center;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}
main .summary .summary-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
main .summary .summary-selected .chip {
  display: none;
  background: #fff;
  border-radius: 10em;
  padding: 0.5em 1.5em 0.5em 1em;
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 500;
}
main .summary .summary-selected .chip.visible {
  display: inline-block;
}
main .summary .summary-selected .chip i {
  margin-right: 0.2em;
  color: #888;
  transform: scale(1.3);
  display: inline-block;
}
@media (max-width: 600px) {
  main .summary .summary-selected {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox 非表示 */
  }
  main .summary .summary-selected::-webkit-scrollbar {
    display: none; /* スクロールバー非表示（iOS/Chrome） */
  }
  main .summary .summary-selected .chip {
    flex: 0 0 auto; /* 横スクロール時に縮まない */
  }
}
main .list {
  max-width: 1300px;
  margin: 0 auto 100px;
  padding: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 18vw, 220px), 1fr));
}
main .list .item {
  background: #fff;
  padding: clamp(15px, 1.8vw, 20px);
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
main .list .item:hover, main .list .item:focus {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(30, 103, 193, 0.4);
}
main .list .item.selected {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(30, 103, 193, 0.8);
}
main .list .item .head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
main .list .item .head i {
  color: #1e67c1;
  font-size: 30px;
}
main .list .item .head span {
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}

.mainvisual {
  padding: 100px 20px;
  margin: 0 auto;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mainvisual h1 {
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  display: inline-block;
  color: #1e67c1;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  padding: 0.5em 0.8em;
  padding-bottom: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.mainvisual p {
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  padding: 0.5em 1em;
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 500;
  text-align: center;
}

.bg {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: -30px;
  z-index: -1;
  opacity: 0.3;
}
.bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(0deg, #dff3f7 10%, transparent);
}
.bg .list {
  display: flex;
  padding: 5px;
  gap: 10px;
  --move: -1000px;
  --from: 0;
  --to: var(--move);
  animation: mv 300s linear infinite;
}
.bg .list:nth-child(odd) {
  --from: var(--move);
  --to: 0;
}
@keyframes mv {
  0%, 100% {
    transform: translateX(var(--from));
  }
  50% {
    transform: translateX(var(--to));
  }
}
.bg .list .card {
  text-align: center;
  flex: 0 0 clamp(120px, 15vw, 180px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  padding: 15px 10px;
  font-size: clamp(10px, 1.2vw, 14px);
}
.bg .list .card i {
  font-size: 2em;
}
.bg .list .card .title {
  font-size: 1em;
}
.bg .list .card .price {
  font-size: 1.2em;
  font-weight: 700;
}
@media (max-width: 600px) {
  .bg .list {
    animation-duration: 180s;
  }
}

.solution {
  max-width: 1000px;
  margin: 0 auto 100px;
  padding: 10px;
}
.solution .clmillust {
  display: flex;
  line-height: 0;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 800px) {
  .solution .clmillust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.solution .clmillust h2 {
  text-align: center;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0.1em;
  margin-bottom: 0.2em;
  font-weight: 800;
}
@media (max-width: 800px) {
  .solution .clmillust h2 {
    grid-area: 1/1/2/3;
    margin-bottom: 1em;
  }
}
.solution .clmillust h2 span {
  color: #1e67c1;
  font-size: 1.2em;
}
.solution .clmillust img {
  height: clamp(80px, 10vw, 120px);
}
@media (max-width: 800px) {
  .solution .clmillust img:first-child {
    grid-area: 2/1/3/2;
  }
  .solution .clmillust img:last-child {
    grid-area: 2/2/3/3;
    margin-left: auto;
  }
}
.solution .clm {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(0px, 0.5vw, 10px);
  margin-bottom: 20px;
}
.solution .clm i.ti-arrow-narrow-right {
  font-size: clamp(10px, 2vw, 40px);
  align-self: center;
  color: #1e67c1;
}
@media (max-width: 800px) {
  .solution .clm i.ti-arrow-narrow-right {
    transform: scale(4);
    z-index: 1;
  }
}
.solution .clm .item {
  padding: 30px clamp(15px, 2vw, 20px) 30px clamp(15px, 2vw, 40px);
  border-radius: 10px;
  background: #fff;
  position: relative;
}
.solution .clm .item i {
  position: absolute;
  font-size: clamp(30px, 3.3vw, 35px);
  top: -10px;
  left: -10px;
  background: #fff;
  color: #1e67c1;
  padding: 0.2em;
  border-radius: 100%;
}
.solution .clm .item:first-child h3 {
  color: #555;
}
.solution .clm .item:first-child i {
  color: #999;
}

.content {
  max-width: 1300px;
  padding: 10px;
  margin: 0 auto;
}
.content .item {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.8vw, 20px);
  padding: clamp(15px, 2vw, 30px);
  background: #fff;
  border-radius: 5px;
  margin-bottom: 20px;
}
.content .item i {
  color: #1e67c1;
  font-size: clamp(30px, 3.5vw, 40px);
}
.content .item .txt {
  flex: 1;
}

.contact {
  background: #1e67c1;
  padding: 100px 20px;
}
.contact .inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 20px;
  background: #fff;
  border-radius: 5px;
}
.contact .inner form {
  max-width: 600px;
  margin: 0 auto;
}
.contact .inner form .item {
  padding: 10px 0;
}
.contact .inner form .item .label {
  font-size: 15px;
  padding: 0.8em 0.4em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 16px;
}
.contact .inner form .item .label i {
  font-size: 1.5em;
}
.contact .inner form .item .label span {
  color: #e74c3c;
  font-size: 0.8em;
}
.contact .inner form .item input,
.contact .inner form .item textarea {
  width: 100%;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}
.contact .inner form .item input:focus,
.contact .inner form .item textarea:focus {
  outline: none;
  border-color: #1e67c1;
}
.contact .inner form .item input::-moz-placeholder, .contact .inner form .item textarea::-moz-placeholder {
  color: #999;
}
.contact .inner form .item input::placeholder,
.contact .inner form .item textarea::placeholder {
  color: #999;
}
.contact .inner form .item textarea {
  resize: vertical;
  min-height: 300px;
}
.contact .inner form .btn {
  text-align: center;
}
.contact .inner form .btn button {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact .inner form .btn button.submit-btn {
  background: #1e67c1;
  color: #fff;
}
.contact .inner form .btn button.submit-btn:hover {
  background: #1557a3;
}
.contact .inner form .btn button.reset-btn {
  background: #6c757d;
  color: #fff;
}
.contact .inner form .btn button.reset-btn:hover {
  background: #5a6268;
}/*# sourceMappingURL=style.css.map */