@charset "utf-8";

/* ==================================================
  共通
================================================== */
:root{
  --size14: clamp(13px, calc(14 / 1200 * 100vw), 14px);
  --size16: clamp(14px, calc(16 / 1200 * 100vw), 16px);
  --size18: clamp(16px, calc(18 / 1200 * 100vw), 18px);
  --size24: clamp(19px, calc(24 / 1200 * 100vw), 24px);
  --size32: clamp(24px, calc(32 / 1200 * 100vw), 32px);
  --size64: clamp(40px, calc(64 / 1200 * 100vw), 64px);

  --bk: #24292e;
  --yellow: #fff776;
  --red: #ed382e;
  --bd-color: #c4d4d6;

  --main-color-od: #059494;
  --bg-color-od: #dbf7f5;
  --bg-color02-od: #f5fafa;

  --main-color-pro10: #a31716;
  --main-color-neo10: #811715;
  --main-color-mh14: #d1726d;
  --bg-color-mh14: #fcebce;

  --mv-min-height: 330px;
  --mv-height: 42vh;

  --bd-radius-lg: 12px;
  --bd-radius: 8px;
  --bd-radius-sm: 4px;
}

@media screen and (max-width: 374px){
  :root{
    --size16: clamp(14px, calc(15 / 375 * 100vw), 15px);
  }
}

body{
  /* font-size: var(--size16);
  color: var(--bk); */
  line-height: 1.5;
  background: url(/common/img/vup-lp/pattern.png) top left / 16px auto repeat;
}

main{
  font-size: var(--size16);
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, verdana, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  color: var(--bk);
}


/* MH14用 */
nav#pc {
  opacity: 1;
  transition: opacity 0.3s ease;
}
nav#pc.is-scroll {
  opacity: 0.8;
}
#mh14 footer{
  width: 100%;
}
#mh14 .btn_price{
  box-sizing: content-box;
}


h1,h2,h3,h4,h5,h6{
  font-weight: 700;
  line-height: 1.3;
}

.container{
  max-width: 1000px;
  width: 95%;
  margin-inline: auto;
}

main{
  padding-bottom: var(--size64);
}

main a{
  color: var(--bk);
}

main a:hover{
  opacity: unset;
}

.section{
  position: relative;
}

.section__title{
  font-size: var(--size18);
  font-weight: 700;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  background: #fff;
  padding: clamp(6px, calc(8 / 1200 * 100vw), 8px) clamp(12px, calc(16 / 1200 * 100vw), 16px);
  margin-bottom: clamp(18px, calc(24 / 1200 * 100vw), 24px);
}

#od .section__title{
  color: var(--main-color-od);
  border-color: var(--main-color-od);
}

#pro10 .section__title{
  color: var(--main-color-pro10);
  border-color: var(--main-color-pro10);
}

#neo10 .section__title{
  color: var(--main-color-neo10);
  border-color: var(--main-color-neo10);
}

#mh14 .section__title{
  color: var(--main-color-mh14);
  border-color: var(--main-color-mh14);
}

.text--upper{
  text-transform: uppercase;
}

.red{
  color: var(--red);
}

.link-btn{
  margin-top: var(--size24);
}

.link-btn a{
  position: relative;
  display: block;
  font-size: var(--size18);
  font-weight: 700;
  text-align: center;
  color: var(--bk)!important;
  border: solid 1px var(--bk);
  padding: 0.5em 0.75em;
  border-radius: var(--bd-radius-sm);
  max-width: 230px;
  width: 100%;
  transition: color .15s ease-in-out .1s;
}

.link-btn a::before{
  position: absolute;
  content: '';
  background: var(--bk);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  scale: 0 1;
  transform-origin: left center;
  transition: scale .15s ease-in-out;
}

.link-btn a span{
  position: relative;
}

.link-btn a span::after{
  content: '\f0da';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 700;
  margin-left: 0.4em;
}

@media (hover: hover){
  .link-btn a:hover{
    color: #fff!important;
  }

  .link-btn a:hover::before{
    scale: 1;
  }
}

@media (hover: none){
  .link-btn a:active{
    color: #fff!important;
  }

  .link-btn a:active::before{
    scale: 1;
  }
}

@media screen and (max-width: 767px){
  .container{
    width: 100%;
    padding: 0 clamp(10px, calc(20 / 768 * 100vw), 20px);
  }

  .link-btn a{
    margin-inline: auto;
  }
}


/* ============================================================
  ブレークポイント
  .show-pc     : 768px以上で表示（PCのみ表示）
  .show-tab    : 551px以上767以下で表示（タブレットのみ表示）
  .show-sp     : 550px以下で表示（スマホのみ表示）
  .show-pc-tab : 551px以上で表示（スマホ非表示）
  .show-tab-sp : 767px以下で表示（PC非表示）
============================================================ */

@media screen and (max-width: 550px){
  .show-pc,
  .show-tab,
  .show-pc-tab{
    display: none;
  }
}

@media screen and (max-width: 374px){
  .container,
  .l-container{
    padding: 0 10px;
  }
}

@media screen and (min-width: 551px) and (max-width: 767px){
  .show-pc,
  .show-sp,
  .show-pc-sp{
    display: none;
  }
}

@media screen and (min-width: 768px){
  .show-tab,
  .show-sp,
  .show-tab-sp{
    display: none;
  }

  a[href*="tel:"]{
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}


/* ========================================
  アニメーション
======================================== */
.js-fadein{
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .3s cubic-bezier(0.215, 0.61, 0.355, 1), transform .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-fadein.active{
  opacity: 1;
  transform: translateY(0);
}

.js-show{
  opacity: 0;
  transition: opacity .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-show.show02{
  transition: opacity .3s cubic-bezier(0.215, 0.61, 0.355, 1) .15s;
}

.js-show.active{
  opacity: 1;
}


/* ==================================================
  MV
================================================== */
.mv{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  min-height: var(--mv-min-height);
  height: var(--mv-height);
}

#od .mv{
  background-image: url(/common/img/vup-lp/mv_od.jpg);
}

#pro10 .mv,
#mh14 .mv{
  background-image: url(/common/img/vup-lp/mv_pro10.jpg);
}

#neo10 .mv{
  background-image: url(/common/img/vup-lp/mv_neo10.jpg);
}

.mv::after{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#od .mv::after{
  background-color: rgb(0 92 97 / .8);
}

#pro10 .mv::after{
  background-color: rgb(163 23 22 / .8);
}

#neo10 .mv::after{
  background-color: rgb(129 23 21 / .8);
}

#mh14 .mv::after{
  background-color: rgb(209 114 109 / .8);
}

.mv__wrapper{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: var(--mv-min-height);
  height: var(--mv-height);
  padding: clamp(20px, calc(26 / 1200 * 100vw), 26px) 0;
}

.mv__main-copy{
  font-size: clamp(24px, calc(32 / 1200 * 100vw), 32px);
  margin-bottom: 0.5em;
}


/* ==================================================
  新機能説明
================================================== */
.func{
  margin: var(--size32) 0;
}

.func__pkg-img{
  max-width: clamp(440px, calc(520 / 1200 * 100vw), 520px);
  margin: 0 auto var(--size32);
}

.func__contents + .func__contents,
.func__contents + .func__column2{
  margin-top: var(--size64);
}

.func__column2 .func__contents + .func__contents{
  margin-top: 0;
}

.func__unit{
  padding: var(--size24) clamp(10px, calc(16 / 1200 * 100vw), 16px);
  box-shadow: 0 6px 16px rgb(0 0 0 / .08);
  background: #fff;
  border: solid 1px var(--bd-color);
  border-radius: var(--bd-radius);
}

.func__unit + .func__unit{
  margin-top: var(--size64);
}

.func__item{
  display: flex;
  gap: 16px;
}

.func__body{
  width: 50%;
}

.func__item--reverse .func__body{
  order: 2;
}

.func__img,
.func__video{
  border-radius: var(--bd-radius-sm);
  overflow: hidden;
}

.func__item .func__img,
.func__item .func__video{
  width: 50%;
}

.func__item--reverse .func__img{
  order: 1;
}

.func__img figcaption{
  text-align: center;
  margin-top: 0.75em;
}

.func-item__title{
  font-size: var(--size24);
  margin: 0.5em 0 0.75em;
}

.func__vup-point{
  position: relative;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.05em;
  background: var(--yellow);
  width: fit-content;
  padding: 4px 12px;
}

.func__vup-point::after{
  position: absolute;
  content: '';
  top: 100%;
  left: var(--size24);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 10px solid var(--yellow);
  border-bottom: 0;
}

.func__vup-point .icon::after{
  content: '\f3bf';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 700;
  margin-left: 0.4em;
}

.func__point{
  border-radius: var(--bd-radius-lg);
  border-width: 1px;
  border-style: solid;
  margin-top: var(--size18);
  padding: 10px clamp(16px, calc(32 / 1600 * 100vw), 32px) 12px;
}

#od .func__point{
  border-color: var(--main-color-od);
  background: var(--bg-color-od);
}

#pro10 .func__point{
  border-color: var(--main-color-pro10);
  background: var(--bg-color-pro10);
}

#neo10 .func__point{
  border-color: var(--main-color-neo10);
  background: var(--bg-color-neo10);
}

#mh14 .func__point{
  border-color: var(--main-color-mh14);
  background: var(--bg-color-mh14);
}

.func-point__title{
  font-size: var(--size24);
  margin-bottom: 0.25em;
}

#od .func-point__title{
  color: var(--main-color-od);
}

#pro10 .func-point__title{
  color: var(--main-color-pro10);
}

#neo10 .func-point__title{
  color: var(--main-color-neo10);
}

#mh14 .func-point__title{
  color: var(--red);
}

.func-point__wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(24px, calc(64 / 1600 * 100vw), 64px);
}

.func-img__wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--size24);
}


.func-img__wrapper--column6{
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.func-img__wrapper .func__img{
  border-radius: 0;
}

.func__column2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--size32);
}

.func__column2 .func__contents{
  display: flex;
  flex-direction: column;
}

.func__column2 .func__unit,
.func__column2 .func__item{
  flex: 1;
}

.func__column2 .func__item{
  flex-direction: column;
}

.func__column2 .func__body,
.func__column2 .func__img,
.func__column2 .func__video{
  width: 100%;
}

.func__column2 .func__img{
  order: 1;
}

.func__column2 .func__body{
  order: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.func-item__desc{
  flex: 1;
}

.func-item__desc + .func-item__desc{
  margin-top: 1.5em;
}

.func-item__desc a{
  text-decoration: underline;
  transition: .15s ease-in-out;
}

.func-btn__wrapper{
  margin-top: var(--size64);
}

.func-btn__wrapper .link-btn a{
  max-width: 380px;
  color: #fff!important;
  background: #7b8084;
  border-color: #7b8084;
  margin-inline: auto;
}

.vup__bnr{
  max-width: 720px;
  width: 90%;
  margin: var(--size64) auto 0;
}

@media (hover: hover){
  .func-item__desc a:hover{
    opacity: .7;
  }
}

@media (hover: none){
  .func-item__desc a:active{
    opacity: .7;
  }
}

@media screen and (max-width: 767px){
  .func__item{
    flex-direction: column;
  }

  .func__item .func__body,
  .func__item .func__img,
  .func__item .func__video{
    width: 100%;
  }

  .func__item .func__body{
    order: 2;
  }

  .func__item .func__img,
  .func__item .func__video{
    order: 1;
  }

  .func-point__wrapper{
    grid-template-columns: 1fr;
    row-gap: clamp(20px, calc(24 / 768 * 100vw), 24px);
  }

  .func__column2{
    grid-template-columns: 1fr;
    row-gap: var(--size64);
  }

  .func-img__wrapper--column6{
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(4px, calc(10 / 768 * 100vw), 10px);
  }

  .vup__bnr{
    width: 100%;
  }
}


/* ==================================================
  これからも安心して使い続けるために
================================================== */
.support{
  margin: var(--size64) 0;
}

.support__main-copy{
  font-size: var(--size24);
  text-align: center;
  line-height: calc(40 / 24);
}

#od .support__main-copy span{
  color: var(--main-color-od);
}

#pro10 .support__main-copy span{
  color: var(--main-color-pro10);
}

#neo10 .support__main-copy span{
  color: var(--main-color-neo10);
}

#mh14 .support__main-copy span{
  color: var(--main-color-mh14);
}

.support__wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, calc(32 / 1200 * 100vw), 32px);
  align-items: stretch;
  margin-top: var(--size24);
}

.support__unit{
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-radius: var(--bd-radius);
  overflow: hidden;
  border: solid 1px var(--bd-color);
  background: #fff;
}

.support-unit__title{
  color: #fff;
  font-size: var(--size16);
  font-weight: 700;
  padding: clamp(12px, calc(16 / 1200 * 100vw), 16px) clamp(16px, calc(28 / 1200 * 100vw), 28px);
}

.support__unit--pro4 .support-unit__title{
  background: var(--red);
}

.support__unit--pro10 .support-unit__title{
  background: #2ebd6b;
}

.support-unit__inner{
  padding: clamp(20px, calc(32 / 1200 * 100vw), 32px) clamp(10px, calc(12 / 1200 * 100vw), 12px);
}

ul.support__list{
  list-style: disc!important;
  padding-left: 1.5em;
}

li.support__item{
  list-style: disc;
}

.support__note{
  margin-top: 1em;
  text-indent: -1em;
  padding-left: 1em;
}

.support__comment{
  display: flex;
  padding: clamp(10px, calc(14 / 1200 * 100vw), 14px) clamp(10px, calc(22 / 1200 * 100vw), 22px);
  min-height: clamp(91px, calc(100 / 1200 * 100vw), 100px);
}

.support__unit--pro4 .support__comment{
  color: var(--red);
  background: rgb(237 56 46 / .1);
}

.support__unit--pro10 .support__comment{
  color: #2ebd6b;
  background: rgb(46 189 107 / .1);
}

@media screen and (max-width: 550px){
  .support__wrapper{
    grid-template-columns: 1fR;
  }

  .support__comment{
    min-height: unset;
  }
}


/* ==================================================
  旧製品との機能比較
================================================== */
.comparison{
  position: relative;
  overflow-x: auto;
}

#mh14 .comparison{
  margin-top: var(--size64)!important;
}

.comparison__wrapper{
  position: relative;
  overflow-x: auto!important;
  -webkit-overflow-scrolling: touch;
  overflow-y: hidden!important;
}

.comparison__wrapper.comparison__wrapper--fixed{
  overflow-y: scroll!important;
  max-height: 75vh;
}

.comparison__wrapper.is-grabbing {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.comparison__table{
  width: 100%;
  min-width: 550px;
}

.comparison__table--fixed{
  border-collapse: separate;
  border-spacing: 0;
}

.comparison__table th,
.comparison__table td{
  font-size: var(--size14);
  border: solid 1px var(--bd-color);
  padding: clamp(12px, calc(16 / 1600 * 100vw), 16px) clamp(8px, calc(12 / 1200 * 100vw), 12px);
}

.comparison__table th{
  background: var(--bg-color02-od);
  font-weight: 700;
}

#mh14 .comparison__table th{
  background: var(--bg-color-mh14);
}

.comparison__table thead th{
  text-align: center;
}

.comparison__table--fixed thead th{
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
}

#mh14 .comparison__table .comparison__th--empty{
  background: transparent;
  border-top-color: transparent;
  border-left-color: transparent;
}

.comparison__table tbody th{
  width: 30%;
}

.comparison__table tbody td{
  width: 35%;
  text-align: center;
  background: #fff;
}

.comparison-dl__inner{
  display: grid;
  grid-template-columns: 6.5em auto;
}

.comparison-dl__inner dt{
  text-align: center;
}

.comparison-dl__inner dd{
  text-align: left;
}

.comparison__logo{
  max-width: 180px;
  width: 95%;
  margin-inline: auto;
}

.comparison__note{
  margin-top: 0.5em;
}

@media screen and (max-width: 767px){
  .comparison__table tbody th{
    width: 26%;
  }

  .comparison__table tbody td{
    width: 37%;
  }

  .comparison-dl__inner{
    grid-template-columns: 1fr;
  }

  .comparison-dl__inner dt,
  .comparison-dl__inner dd{
    text-align: center;
  }

  .comparison-dl__inner + .comparison-dl__inner{
    margin-top: 12px;
  }

  .comparison__wrapper .scroll-hint-icon-wrap {
    position: absolute !important;
    height: auto !important;
    margin: 0 !important;
  }

  .comparison__wrapper .scroll-hint-icon {
    margin: 0 !important;
  }
}

@media screen and (max-width: 580px){
  .comparison__wrapper,
  .func .comparison{
    margin-right: calc(clamp(10px, calc(20 / 768 * 100vw), 20px) * -1)!important;
  }
}


/* ==================================================
  入出力形式の比較
================================================== */
.func .comparison{
  margin: var(--size64) 0;
}

.comparison__table--input-output caption{
  font-size: var(--size18);
  font-weight: 700;
  padding-bottom: 0.5em;
}
.comparison__table--input-output caption::before{
  content: '■';
}

.comparison__table--input-output tbody th:first-of-type{
  width: 24%;
  text-align: center;
}
.comparison__table--input-output tbody th.comparison__th--2{
  width: 8%;
  min-width: 54px;
  text-align: center;
}

.comparison__table tbody td{
  width: 34%;
  text-align: center;
  background: #fff;
}


/* ==================================================
  CTA
================================================== */
.cta{
  margin: var(--size64) 0;
}

.cta__copy{
  position: relative;
  padding: .5em 1em;
  font-size: var(--size24);
  text-align: center;
}

.cta__copy::before,
.cta__copy::after{
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 100%;
  border-width: 3px;
  border-style: solid;
}

#od .cta__copy::before,
#od .cta__copy::after{
  border-color: var(--main-color-od);
}

#pro10 .cta__copy::before,
#pro10 .cta__copy::after{
  border-color: var(--main-color-pro10);
}

#neo10 .cta__copy::before,
#neo10 .cta__copy::after{
  border-color: var(--main-color-neo10);
}

#mh14 .cta__copy::before,
#mh14 .cta__copy::after{
  border-color: var(--main-color-mh14);
}

.cta__copy::before{
  top: 0;
  left: 0;
  border-right: none;
}

.cta__copy::after{
  bottom: 0;
  right: 0;
  border-left: none;
}