@charset "UTF-8";
/*---------------------------------------------
design-width
---------------------------------------------*/
/*---------------------------------------------
vw変換

width: vw-sp(320);
@include pc-only {
  width: min(vw-pc(194), 194px);
}
@include pc-lg {
  width: vw-pc(194);
}
---------------------------------------------*/
/*---------------------------------------------
メディアクエリ
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

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

/*---------------------------------------------
フォント用のmixinとユーティリティ

@include font-sp(26); // モバイルファースト
@include font-pc(18); // タブレット〜PC対応
---------------------------------------------*/
/*---------------------------------------------
カスタムプロパティ
---------------------------------------------*/
:root {
  --custom-vw: 97.4vw;
  --color-slightly-desaturated-cyan: #74a7b8;
  --color-midnight-blue: #183e69;
}

/*---------------------------------------------
リセット
---------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img, picture, video, canvas, svg {
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*---------------------------------------------
初期設定
---------------------------------------------*/
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  color: #222;
}

html, body {
  font-size: 100%;
}

a {
  color: #021f42;
}

a:hover,
a:link {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
  height: auto;
}

svg {
  vertical-align: bottom;
}

sup, sub {
  font-size: 0.6em;
}

iframe {
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  border: none;
}

/*---------------------------------------------
common
---------------------------------------------*/
.wrapper {
  position: relative;
  background-color: #7da4b7;
}

@media screen and (max-width: 767px) {
  .container {
    padding-left: calc(var(--custom-vw) * 0.0533333333);
    padding-right: calc(var(--custom-vw) * 0.0533333333);
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: min(90.625vw, 1160px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    width: 90.625%;
  }
}

/*---------------------------------------------
header
---------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header:not(.no-bg) {
  background-color: rgba(24, 62, 105, 0.2);
  backdrop-filter: blur(2px) saturate(50%);
  -webkit-backdrop-filter: blur(2px) saturate(50%);
}
@media screen and (max-width: 767px) {
  .header .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.header .l-box {
  display: flex;
  align-items: center;
  height: 18.6666666667vw;
}
@media screen and (min-width: 768px) {
  .header .l-box {
    height: min(6.40625vw, 82px);
  }
}
@media screen and (min-width: 1280px) {
  .header .l-box {
    height: 6.40625vw;
  }
}
@media screen and (max-width: 767px) {
  .header .logo-link {
    display: flex;
    width: 35.2%;
    height: min(3.125vw, 40px);
    text-align: center;
    padding-right: calc(var(--custom-vw) * 0.032);
    justify-content: center;
    align-items: center;
  }
}
.header .logo {
  width: 20.5333333333vw;
}
@media screen and (min-width: 768px) {
  .header .logo {
    width: min(10.46875vw, 134px);
  }
}
@media screen and (min-width: 1280px) {
  .header .logo {
    width: 10.46875vw;
  }
}
.header .logo .logo-1 {
  transition: fill 0.1s ease-out;
}
@media screen and (min-width: 768px) {
  .header .logo:hover .logo-1 {
    fill: #72ffff !important;
  }
}
.header .nav {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .header .nav li + li {
    margin-left: min(5.859375vw, 75px);
  }
}
@media screen and (min-width: 1280px) {
  .header .nav li + li {
    margin-left: 5.859375vw;
  }
}
@media screen and (max-width: 767px) {
  .header .nav li {
    border-left: 1px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .header .nav li:nth-child(1) {
    width: 41.66%;
  }
}
@media screen and (max-width: 767px) {
  .header .nav li:nth-child(2) {
    width: 58.34%;
  }
}
.header .nav a {
  color: #fff;
  transition: color 0.1s ease-out;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .header .nav a {
    font-size: min(1.25vw, 16px);
  }
}
@media screen and (min-width: 1280px) {
  .header .nav a {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .header .nav a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .header .nav a:hover {
    color: #72ffff;
  }
}

/*---------------------------------------------
footer
---------------------------------------------*/
.footer {
  background-color: #406e86;
  color: #fff;
  padding: 10.6666666667vw 0 8vw;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: min(5.078125vw, 65px) 0;
  }
}
@media screen and (min-width: 1280px) {
  .footer {
    margin-left: 5.078125vw 0;
  }
}
.footer .logo {
  width: 35.7333333333vw;
}
@media screen and (min-width: 768px) {
  .footer .logo {
    width: min(10.46875vw, 134px);
  }
}
@media screen and (min-width: 1280px) {
  .footer .logo {
    width: 10.46875vw;
  }
}
.footer .logo .logo-1 {
  transition: fill 0.1s ease-out;
}
@media screen and (min-width: 768px) {
  .footer .logo:hover .logo-1 {
    fill: #72ffff !important;
  }
}
.footer .nav {
  margin-top: 20vw;
}
@media screen and (min-width: 768px) {
  .footer .nav {
    margin-top: min(8.203125vw, 105px);
  }
}
@media screen and (min-width: 1280px) {
  .footer .nav {
    margin-top: 8.203125vw;
  }
}
.footer .nav li + li {
  margin-top: 12vw;
}
@media screen and (min-width: 768px) {
  .footer .nav li + li {
    margin-top: min(3.515625vw, 45px);
  }
}
@media screen and (min-width: 1280px) {
  .footer .nav li + li {
    margin-top: 3.515625vw;
  }
}
.footer .nav a {
  color: #fff;
  transition: color 0.1s ease-out;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .footer .nav a {
    font-size: min(1.40625vw, 18px);
  }
}
@media screen and (min-width: 1280px) {
  .footer .nav a {
    font-size: 1.40625vw;
  }
}
@media screen and (min-width: 768px) {
  .footer .nav a:hover {
    color: #72ffff;
  }
}
.footer .copyright {
  margin-top: 54.6666666667vw;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    font-size: min(1.25vw, 16px);
  }
}
@media screen and (min-width: 1280px) {
  .footer .copyright {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    margin-top: min(23.828125vw, 305px);
  }
}
@media screen and (min-width: 1280px) {
  .footer .copyright {
    margin-top: 23.828125vw;
  }
}

/*---------------------------------------------
ユーティリティ
---------------------------------------------*/
/* font-weight */
.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 600;
}

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

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

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

@media screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
  .text-left-sp {
    text-align: left;
  }
  .text-right-sp {
    text-align: right;
  }
}
/* flex */
.flex {
  display: flex;
}

.flex-pc {
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex-pc {
    flex-direction: column;
  }
}

.flex-col {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.item-center {
  align-items: center;
}

/* line-height */
.leading-sm {
  line-height: 1.5;
}

.leading-lg {
  line-height: 1.77;
}

.leading-xl {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .leading-sm-sp {
    line-height: 1.5;
  }
}
/* font */
.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/*---------------------------------------------
anime
---------------------------------------------*/
[data-anime=fadeUp] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 1s ease transform, 1s ease opacity;
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=fadeUp].is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

[data-anime=slideRight] {
  opacity: 0;
  -webkit-transform: translateX(-30%);
  transform: translateX(-30%);
  -webkit-transition: 1s ease transform, 1s ease opacity;
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=slideRight].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

[data-anime=slideLeft] {
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 1s ease transform, 1s ease opacity;
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=slideLeft].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

[data-anime=scaledown] {
  opacity: 0;
  transform: scale(2);
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=scaledown].is-animated {
  opacity: 1;
  transform: scale(1);
}

/*---------------------------------------------
common
---------------------------------------------*/
.text-link {
  display: inline-flex;
  align-items: center;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .text-link {
    font-size: min(1.25vw, 16px);
  }
}
@media screen and (min-width: 1280px) {
  .text-link {
    font-size: 1.25vw;
  }
}
.text-link .arrow {
  vertical-align: middle;
  width: 5.8666666667vw;
  margin-left: 1.6vw;
}
@media screen and (min-width: 768px) {
  .text-link .arrow {
    width: min(1.71875vw, 22px);
    margin-left: min(0.46875vw, 6px);
  }
}
@media screen and (min-width: 1280px) {
  .text-link .arrow {
    width: 1.71875vw;
    margin-left: 0.46875vw;
  }
}
.text-link .arrow .link-btn-circle {
  transition: fill 0.1s ease-out;
}
@media screen and (min-width: 768px) {
  .text-link:hover .link-btn-circle {
    fill: #72ffff;
  }
}

/*---------------------------------------------
fv
---------------------------------------------*/
.fv {
  position: relative;
  padding: 56vw 0 29.3333333333vw;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.fv a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .fv {
    padding: min(18.75vw, 240px) 0 min(13.28125vw, 170px);
  }
}
@media screen and (min-width: 1280px) {
  .fv {
    margin-left: 18.75vw 0 13.28125vw;
  }
}
.fv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.fv .fv-title {
  position: relative;
  z-index: 1;
}
.fv .fv-title h1 .svg-wrapper {
  overflow: hidden;
  display: inline-block;
  width: 85.8666666667vw;
  height: 25.6vw;
}
@media screen and (min-width: 768px) {
  .fv .fv-title h1 .svg-wrapper {
    width: min(46.484375vw, 595px);
    height: min(13.828125vw, 177px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-title h1 .svg-wrapper {
    width: 46.484375vw;
    height: 13.828125vw;
  }
}
.fv .fv-title h1 .svg-wrapper svg {
  transform: translateY(105%);
  animation: riseUp 0.6s cubic-bezier(0, 0, 0.5, 1) forwards;
  animation-delay: 1.4s;
}
.fv .fv-title .copy {
  margin-top: 1.3333333333vw;
  opacity: 0;
  animation: txtFade 1.6s ease-out forwards;
  animation-delay: 2.4s;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .fv .fv-title .copy {
    font-size: min(1.40625vw, 18px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-title .copy {
    font-size: 1.40625vw;
  }
}
@media screen and (min-width: 768px) {
  .fv .fv-title .copy {
    margin-top: min(0.78125vw, 10px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-title .copy {
    margin-top: 0.78125vw;
  }
}
.fv .fv-desc {
  position: relative;
  z-index: 1;
  margin-top: 25.3333333333vw;
}
@media screen and (min-width: 768px) {
  .fv .fv-desc {
    margin-top: min(29.296875vw, 375px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-desc {
    margin-top: 29.296875vw;
  }
}
.fv .fv-desc p {
  line-height: 2;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .fv .fv-desc p {
    font-size: min(1.40625vw, 18px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-desc p {
    font-size: 1.40625vw;
  }
}
.fv .fv-desc p.copy-01 {
  font-size: 8.5333333333vw;
}
@media screen and (min-width: 768px) {
  .fv .fv-desc p.copy-01 {
    font-size: min(4.0625vw, 52px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-desc p.copy-01 {
    font-size: 4.0625vw;
  }
}
.fv .fv-desc p.desc-01 {
  margin-top: 29.3333333333vw;
}
@media screen and (min-width: 768px) {
  .fv .fv-desc p.desc-01 {
    margin-top: min(13.28125vw, 170px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-desc p.desc-01 {
    margin-top: 13.28125vw;
  }
}
.fv .fv-desc p.desc-02 {
  margin-top: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .fv .fv-desc p.desc-02 {
    margin-top: min(10.9375vw, 140px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-desc p.desc-02 {
    margin-top: 10.9375vw;
  }
}
.fv .fv-product-text {
  position: relative;
  z-index: 1;
  margin-top: 17.3333333333vw;
  padding-top: 20vw;
}
@media screen and (min-width: 768px) {
  .fv .fv-product-text {
    padding-top: min(5.859375vw, 75px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-product-text {
    padding-top: 5.859375vw;
  }
}
.fv .fv-product-text:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #fff;
  width: 100%;
  height: 1px;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .fv .fv-product-text:after {
    width: min(31.25vw, 400px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-product-text:after {
    width: 31.25vw;
  }
}
.fv .fv-product-text p {
  line-height: 2;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .fv .fv-product-text p {
    font-size: min(1.40625vw, 18px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-product-text p {
    font-size: 1.40625vw;
  }
}
.fv .fv-product-text p.desc-02 {
  margin-top: 18.6666666667vw;
}
@media screen and (min-width: 768px) {
  .fv .fv-product-text p.desc-02 {
    margin-top: min(4.6875vw, 60px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-product-text p.desc-02 {
    margin-top: 4.6875vw;
  }
}
.fv .fv-product-image {
  position: relative;
  z-index: 1;
  mix-blend-mode: overlay;
  display: block;
  margin-inline: auto;
  margin-top: 12vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv .fv-product-image {
    margin-top: min(3.515625vw, 45px);
    width: min(30.46875vw, 390px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-product-image {
    margin-top: 3.515625vw;
    width: 30.46875vw;
  }
}
.fv .fv-product-link {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 12vw;
}
@media screen and (min-width: 768px) {
  .fv .fv-product-link {
    margin-top: min(4.296875vw, 55px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .fv-product-link {
    margin-top: 4.296875vw;
  }
}
.fv .title-box {
  position: relative;
  z-index: 1;
}
.fv .title-box h1 svg {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv .title-box h1 svg {
    width: min(46.484375vw, 595px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .title-box h1 svg {
    width: 46.484375vw;
  }
}
.fv .title-box .copy {
  margin-top: 1.3333333333vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .fv .title-box .copy {
    font-size: min(1.40625vw, 18px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .title-box .copy {
    font-size: 1.40625vw;
  }
}
@media screen and (min-width: 768px) {
  .fv .title-box .copy {
    margin-top: min(0.78125vw, 10px);
  }
}
@media screen and (min-width: 1280px) {
  .fv .title-box .copy {
    margin-top: 0.78125vw;
  }
}
.fv .photo-wrapper img {
  width: 100%;
  opacity: 0;
  transform-origin: center center;
  animation: fadeInZoom 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes riseUp {
  0% {
    transform: translateY(105%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes txtFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*---------------------------------------------
product-common
---------------------------------------------*/
.content-box {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .content-box {
    width: min(60.9375vw, 780px);
  }
}
@media screen and (min-width: 1280px) {
  .content-box {
    width: 60.9375vw;
  }
}

.manual-link .text-link {
  color: #fff;
}

.manual-notes {
  border-top: solid 2px #fff;
  color: #fff;
  line-height: 1.75;
  padding-top: 1em;
  margin-top: 12vw;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .manual-notes {
    font-size: min(0.9375vw, 12px);
  }
}
@media screen and (min-width: 1280px) {
  .manual-notes {
    font-size: 0.9375vw;
  }
}
@media screen and (min-width: 768px) {
  .manual-notes {
    margin-top: min(5.859375vw, 75px);
  }
}
@media screen and (min-width: 1280px) {
  .manual-notes {
    margin-top: 5.859375vw;
  }
}

.section-bg {
  background-color: #4b6d88;
}

/*---------------------------------------------
product-01
---------------------------------------------*/
.product-01 {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 37.3333333333vw 0 16vw;
}
.product-01 a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .product-01 {
    padding: min(18.75vw, 240px) 0 min(8.984375vw, 115px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 {
    margin-left: 18.75vw 0 8.984375vw;
  }
}
.product-01 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  animation: flashIn 1.7s ease-out forwards;
}
.product-01 .title-box {
  position: relative;
  z-index: 1;
}
.product-01 .title-box h1 img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .product-01 .title-box h1 img {
    width: min(43.359375vw, 555px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .title-box h1 img {
    width: 43.359375vw;
  }
}
.product-01 .title-box h1 .img-wrapper {
  overflow: hidden;
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .product-01 .title-box h1 .img-wrapper {
    width: min(43.359375vw, 555px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .title-box h1 .img-wrapper {
    width: 43.359375vw;
  }
}
.product-01 .title-box h1 .img-wrapper img {
  transform: translateY(105%);
  animation: riseUp 0.6s cubic-bezier(0, 0, 0.5, 1) forwards;
  animation-delay: 1.2s;
}
.product-01 .title-box .copy {
  opacity: 0;
  animation: txtFade 1.4s ease-out forwards;
  animation-delay: 1.8s;
  margin-top: 4vw;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .product-01 .title-box .copy {
    font-size: min(1.71875vw, 22px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .title-box .copy {
    font-size: 1.71875vw;
  }
}
@media screen and (min-width: 768px) {
  .product-01 .title-box .copy {
    margin-top: min(1.953125vw, 25px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .title-box .copy {
    margin-top: 1.953125vw;
  }
}
.product-01 .image-schema {
  position: relative;
  z-index: 1;
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  .product-01 .image-schema {
    margin-top: min(2.34375vw, 30px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .image-schema {
    margin-top: 2.34375vw;
  }
}
.product-01 .image-schema img {
  width: 48vw;
}
@media screen and (min-width: 768px) {
  .product-01 .image-schema img {
    width: min(14.0625vw, 180px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .image-schema img {
    width: 14.0625vw;
  }
}
.product-01 .image-product {
  position: relative;
  z-index: 1;
  mix-blend-mode: multiply;
  display: block;
  margin-inline: auto;
  width: 78.4vw;
  margin-top: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .product-01 .image-product {
    width: min(37.734375vw, 483px);
    margin-top: min(4.6875vw, 60px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .image-product {
    width: 37.734375vw;
    margin-top: 4.6875vw;
  }
}
.product-01 .price {
  position: relative;
  z-index: 1;
  margin-top: 5.3333333333vw;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .product-01 .price {
    font-size: min(1.09375vw, 14px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .price {
    font-size: 1.09375vw;
  }
}
@media screen and (min-width: 768px) {
  .product-01 .price {
    margin-top: min(5.078125vw, 65px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .price {
    margin-top: 5.078125vw;
  }
}
.product-01 .price strong {
  font-weight: 400;
  margin: 0 0.3em;
  font-size: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .product-01 .price strong {
    font-size: min(2.03125vw, 26px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .price strong {
    font-size: 2.03125vw;
  }
}
.product-01 .function-box {
  position: relative;
  z-index: 1;
  margin-top: 24vw;
}
@media screen and (min-width: 768px) {
  .product-01 .function-box {
    margin-top: min(7.03125vw, 90px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .function-box {
    margin-top: 7.03125vw;
  }
}
.product-01 .function-box .function-title {
  font-size: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .product-01 .function-box .function-title {
    font-size: min(2.03125vw, 26px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .function-box .function-title {
    font-size: 2.03125vw;
  }
}
.product-01 .function-box .function-lead {
  margin-top: 0.5em;
  line-height: 1.75;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .product-01 .function-box .function-lead {
    font-size: min(1.25vw, 16px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .function-box .function-lead {
    font-size: 1.25vw;
  }
}
.product-01 .function-box .function-image img {
  width: 100%;
  margin-top: 20vw;
}
@media screen and (min-width: 768px) {
  .product-01 .function-box .function-image img {
    width: min(58.59375vw, 750px);
    margin-top: min(3.90625vw, 50px);
  }
}
@media screen and (min-width: 1280px) {
  .product-01 .function-box .function-image img {
    width: 58.59375vw;
    margin-top: 3.90625vw;
  }
}

@keyframes flashIn {
  0% {
    opacity: 0;
    transform: scale(1.03);
    filter: brightness(1) blur(10px);
  }
  20% {
    opacity: 1;
    transform: scale(1.03);
    filter: brightness(1.5) blur(8px); /* 一瞬フラッシュ */
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1) blur(0);
  }
}
/*---------------------------------------------
product-06
---------------------------------------------*/
.product-06 {
  padding-bottom: 24vw;
}
@media screen and (min-width: 768px) {
  .product-06 {
    padding-bottom: min(7.8125vw, 100px);
  }
}
@media screen and (min-width: 1280px) {
  .product-06 {
    padding-bottom: 7.8125vw;
  }
}

/*---------------------------------------------
contact-wrapper
---------------------------------------------*/
.contact-wrapper {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 26.6666666667vw 0 16vw;
}
.contact-wrapper a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .contact-wrapper {
    padding: min(17.1875vw, 220px) 0 min(3.125vw, 40px);
  }
}
@media screen and (min-width: 1280px) {
  .contact-wrapper {
    padding: 17.1875vw 0 3.125vw;
  }
}
.contact-wrapper .contact-info:after {
  display: none;
}

.contact-info {
  position: relative;
  text-align: center;
  line-height: 2;
  padding: 21.3333333333vw 0 16vw;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .contact-info {
    padding: min(6.25vw, 80px) 0 min(11.71875vw, 150px);
  }
}
@media screen and (min-width: 1280px) {
  .contact-info {
    padding: 6.25vw 0 11.71875vw;
  }
}
.contact-info .contact-info-title {
  font-weight: 400;
  margin-bottom: 2em;
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .contact-info .contact-info-title {
    font-size: min(1.71875vw, 22px);
  }
}
@media screen and (min-width: 1280px) {
  .contact-info .contact-info-title {
    font-size: 1.71875vw;
  }
}
.contact-info .contact-info-desc {
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .contact-info .contact-info-desc {
    font-size: min(1.40625vw, 18px);
  }
}
@media screen and (min-width: 1280px) {
  .contact-info .contact-info-desc {
    font-size: 1.40625vw;
  }
}
.contact-info .contact-info-desc + .contact-info-desc {
  margin-top: 3em;
}
.contact-info:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #fff;
  width: 100%;
  height: 1px;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .contact-info:after {
    width: min(31.25vw, 400px);
  }
}
@media screen and (min-width: 1280px) {
  .contact-info:after {
    width: 31.25vw;
  }
}