@charset "utf-8";

/* ==================================================
  共通
================================================== */
:root{
  --bg-lightblue: #f1fafd;
  --bg-lightyellow: #fffbe8;
  --bk: #2c2c2c;
  --lightblue: #90d6ea;
  --yellow: #fefc6b;
  --lightyellow: #fffcde;
  --gold: #edcc69;
  --pink: #f1028a;
  --lightpink: #ffeeee;
  --red: #d10000;
  --red2: #fc0202;
  --orange: #fc9e00;
  --orange2: #f28927;
  --beige: #faf0e6;
  --blue: #162584;
  --blue2: #012366;
  --gray: #808080;

  --bg-color: #f0f0f0;
  --bd-color: #ddd;

  --vw-768: 768;
  --vw-1280: 1280;

  --size-16: clamp(15px, calc(16 / var(--vw-1280) * 100vw), 16px);
  --size-18: clamp(16px, calc(18 / var(--vw-1280) * 100vw), 18px);
  --size-20: clamp(16px, calc(20 / var(--vw-1280) * 100vw), 20px);
  --size-24: clamp(18px, calc(24 / var(--vw-1280) * 100vw), 24px);
  --size-26: clamp(19px, calc(26 / var(--vw-1280) * 100vw), 26px);
  --size-28: clamp(20px, calc(28 / var(--vw-1280) * 100vw), 28px);
  --size-32: clamp(24px, calc(32 / var(--vw-1280) * 100vw), 32px);
  --size-40: clamp(32px, calc(40 / var(--vw-1280) * 100vw), 40px);
  --size-48: clamp(34px, calc(48 / var(--vw-1280) * 100vw), 48px);
  --size-52: clamp(36px, calc(52 / var(--vw-1280) * 100vw), 52px);
  --size-72: clamp(40px, calc(72 / var(--vw-1280) * 100vw), 72px);
  --size-96: clamp(56px, calc(96 / var(--vw-1280) * 100vw), 96px);

  --bd-radius: clamp(6px, calc(8 / var(--vw-1280) * 100vw), 8px);
  --bd-radius-lg: clamp(8px, calc(12 / var(--vw-1280) * 100vw), 12px);

  --font-family-jp: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, verdana, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

html{
  scroll-behavior: smooth;
}

body{
  font-size: var(--size-18);
  font-family: var(--font-family-jp);
  color: var(--bk);
  line-height: 1.5;
}

main{
  position: relative;
  padding-bottom: clamp(64px, calc(120 / var(--vw-1280) * 100vw), 120px);
}

h1,h2,h3,h4,h5,h6{
  font-weight: 700;
  line-height: 1.3;
}

a{
  display: block;
}

.container{
  max-width: 1280px;
  width: 95%;
  margin-inline: auto;
}
.s-container{
  max-width: 980px;
  width: 90%;
  margin-inline: auto;
}

.fc--pink{
  color: var(--pink);
}

.fc--red{
  color: var(--red2);
}

.fc--orange{
  color: var(--orange2);
}

.fw700,
strong{
  font-weight: 700;
}

.bg--gray{
  background: var(--gray);
}

a.text-link{
  display: inline;
  text-decoration: underline;
  transition: opacity 0.3s ease-in-out;
}

table{
  border-collapse: collapse;
  width: 100%;
}

.section{
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px){
  main::before{
    background-size: 500px;
  }

  .container,
  .s-container{
    width: 100%;
    padding: 0 clamp(15px, calc(20 / var(--vw-768) * 100vw), 20px);
  }
}

@media screen and (max-width: 374px){
  .container,
  .s-container{
    padding: 0 10px;
  }
}

@media (hover: hover){
  a.text-link:hover{
    opacity: .7;
  }
}

@media (hover: none){
  a.text-link:active{
    opacity: .7;
  }
}

/* ==================================================
  アニメーション
================================================== */
.js-fadein{
  opacity: 0;
  transform: translateY(80px);
  transition: opacity .75s ease-in-out;
}

.js-fadein--02{
  transition: opacity .75s ease-in-out .125s;
}

.js-fadein--03{
  transition: opacity .75s ease-in-out .25s;
}

.js-fadein.active{
  opacity: 1;
  transform: translateY(0);
}

.js-zoom{
  scale: 0;
  transition: .25s ease-in-out;
}
.js-zoom--02{
  transition: .25s ease-in-out .125s;
}
.js-zoom--03{
  transition: .25s ease-in-out .25s;
}
.js-zoom--04{
  transition: .25s ease-in-out .375s;
}
.js-zoom.active{
  scale: 1;
}

.js-show{
  opacity: 0;
  transition: opacity .75s ease-in-out;
}

.js-show.active{
  opacity: 1;
}

a .img--anime{
  overflow: hidden;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 767px){
  .js-show--02,
  .js-show--03{
    transition: opacity .25s ease-in-out;
  }

  .js-fadein--02,
  .js-fadein--03{
    transition: opacity .25s ease-in-out;
  }
}



@media (hover: hover){
  .shake:hover{
    animation: shake .5s linear;
  }

  a:hover .img--anime{
    scale: 0.95;
    border-radius: 32px;
  }
}

@media (hover: none){
  .shake:active{
    animation: shake .5s linear;
  }

  a:active .img--anime{
    scale: 0.95;
    border-radius: 32px;
  }
}

@keyframes shake {
  0% { transform: rotate(0); }
  25% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
  75% { transform: rotate(-3deg); }
  100% { transform: rotate(0); }
}


/* ============================================================
  ブレークポイント
  .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 (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;
  }
}


/* ==================================================
  MV
================================================== */
.mv{
  overflow-x: clip;
  background-color: var(--lightblue);
  border: solid clamp(6px, calc(8 / var(--vw-1280) * 100vw), 8px) var(--yellow);
}

.mv::before,
.mv::after{
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.mv::before{
  left: 0;
  background-image: url(../img/mv_deco_left.png);
  background-position: left center;
}

.mv::after{
  right: 0;
  background-image: url(../img/mv_deco_right.png);
  background-position: right center;
}

.mv__inner{
  position: relative;
  z-index: 3;
  padding: var(--size-52) 0;
}

.mv-title__wrapper{
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.mv-title__speech-bubble{
  position: absolute;
  content: '';
  top: 50%;
  right: calc(100% + 10px);
  transform: translateY(-50%);
  width: clamp(calc(200px * .45), calc(200 / 1920 * 100vw), 200px);
  height: clamp(calc(189px * .45), calc(189 / 1920 * 100vw), 189px);
  background: url(../img/mv_speech_bubble.png) center center / contain no-repeat;
}

.mv-title{
  position: relative;
  width: fit-content;
  margin-inline: auto;
  z-index: 3;
  color: #fff;
  font-size: clamp(38px, calc(68 / var(--vw-768) * 100vw), 68px);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow:
  /* 縁取り */
  -1px -1px 0 var(--blue2),
  1px -1px 0 var(--blue2),
  -1px 1px 0 var(--blue2),
  1px 1px 0 var(--blue2),
  /* ドロップシャドウ */
  clamp(2px, calc(4 / var(--vw-1280) * 100vw), 4px) clamp(2px, calc(4 / var(--vw-1280) * 100vw), 4px) 1px var(--bk);
  text-wrap: balance;
}

.mv-title--ouen{
  position: relative;
  z-index: -1;
  display: inline-block!important;
  color: #ff5800;
    text-shadow:
  /* 縁取り */
  -1px -1px 0 #fff,
  1px -1px 0 #fff,
  -1px 1px 0 #fff,
  1px 1px 0 #fff,
  /* ドロップシャドウ */
  clamp(2px, calc(4 / var(--vw-1280) * 100vw), 4px) clamp(2px, calc(4 / var(--vw-1280) * 100vw), 4px) 1px var(--bk);
  rotate: -8deg;
  margin-inline: 0.08em;
}

/* .mv-title--ouen::before{
  position: absolute;
  z-index: -1;
  content: '';
  bottom: 50%;
  left: 33%;
  width: clamp(calc(161px * .65), calc(161 / 1600 * 100vw), 161px);
  height: clamp(calc(94px * .65), calc(94 / 1600 * 100vw), 94px);
  background: url(../img/mv_deco_ouen.png) center center / contain no-repeat;
  animation: float 1.8s ease-in-out infinite;
  animation-delay: 1s;
} */


@keyframes float {
  0% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-8px);
  }
  35% {
    transform: translateY(6px) rotate(-12deg);
  }
  55% {
    transform: translateY(-12px);
  }
  75% {
    transform: translateY(2px) rotate(12deg);
  }
  100% {
    transform: translateY(0);
  }
}

.mv-title span{
  display: block;
  line-height: 1.2;
}
.mv-title--sm{
  position: relative;
  z-index: 2;
  font-size: 0.85em;
}
.mv-title--lg{
  position: relative;
  z-index: 1;
}
.mv-title span + span{
  margin-top: 0.25em;
}

.mv-title .show-w1600{
  display: none;
}

.mv-benefits{
  margin-top: clamp(36px, calc(52 / var(--vw-1280) * 100vw), 52px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, calc(32 / var(--vw-1280) * 100vw), 32px);
}
.mv-benefits__item{
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: var(--bd-radius-lg);
  border: solid 3px var(--gold);
}

.mv-benefits__title{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: clamp(16px, calc(21 / 1400 * 100vw), 21px);
  font-weight: 800;
  text-align: center;
  padding: clamp(6px, calc(10 / 1400 * 100vw), 10px) clamp(14px, calc(28 / 1400 * 100vw), 28px);
  border-radius: 100vmax;
  background: var(--yellow);
  min-width: clamp(236px, calc(320 / 1400 * 100vw), 320px);
  box-shadow: 1px 1px 2px #dddb5f;
}

.mv-benefits__body{
  text-align: center;
  padding: clamp(32px, calc(40 / var(--vw-1280) * 100vw), 40px) var(--size-16) clamp(16px, calc(28 / var(--vw-1280) * 100vw), 28px);
}
.mv-benefits__text{
  font-size: clamp(26px, calc(38 / var(--vw-1280) * 100vw), 38px);
  font-weight: 800;
  line-height: 1.2;
}
.mv-benefits__text--small{
  font-size: clamp(16px, calc(20 / var(--vw-1280) * 100vw), 20px);
}
.mv-benefits__text--large{
  font-size: 1.6em;
}

.mv-benefits__arrows{
  position: relative;
  z-index: 3;
  display: flex;
  height: clamp(32px, calc(46 / var(--vw-1280) * 100vw), 46px);
  justify-content: center;
  align-items: center;
  margin-top: var(--size-16)
}
.mv-benefits__arrows .mv-benefits__arrow{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(30px, calc(36 / var(--vw-1280) * 100vw), 36px);
  height: clamp(32px, calc(46 / var(--vw-1280) * 100vw), 46px);
  opacity: 0;
}
.mv-benefits__arrows .mv-benefits__arrow:first-child{
  animation: arrowAnime 2s ease-in-out infinite;
}
.mv-benefits__arrows .mv-benefits__arrow:nth-child(2){
  animation: arrowAnime 2s 1s ease-in-out infinite;
}
.mv-benefits__arrows .mv-benefits__arrow::before,
.mv-benefits__arrows .mv-benefits__arrow::after {/*矢印全体の設定*/
  position: absolute;
  content: '';
  top: 0;
  width: clamp(15px, calc(18 / var(--vw-1280) * 100vw), 18px);
  height: 3px;
  background: var(--bk);
}
.mv-benefits__arrows .mv-benefits__arrow::before {/*矢印左の線の位置と傾斜*/
  left: 3px;
  transform: rotate(40deg);
}
.mv-benefits__arrows .mv-benefits__arrow::after {/*矢印左の線の位置と傾斜*/
  right: 3px;
  transform: rotate(-40deg);
}
.mv-benefits__check{
  font-size: var(--size-26);
  font-weight: 700;
  line-height: 1.2;
}

.mv-period{
  position: relative;
  z-index: 3;
  max-width: 980px;
  /* background: var(--orange2); */
  background: var(--blue2);
  border-radius: clamp(8px, calc(15 / var(--vw-1280) * 100vw), 15px);
  margin:  var(--size-32) auto 0;
  padding: clamp(8px, calc(10 / var(--vw-1280) * 100vw), 10px) clamp(12px, calc(16 / var(--vw-1280) * 100vw), 16px);
}

.mv-period__text{
  font-size: clamp(20px, calc(32 / var(--vw-1280) * 100vw), 32px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  letter-spacing: 0.025em;
}

.mv-period__text span::before,
.mv-period__text span::after{
  font-size: 0.9em;
}

.mv-period__text span::before{
  content: '▶▶';
  margin-right: 0.4em;
}
.mv-period__text span::after{
  content: '◀◀';
  margin-left: 0.4em;
}

.mv-illust--img{
  position: absolute;
  z-index: -1;
}

.mv-illust--img01{
  z-index: 1;
  top: 0.25vw;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(56px, calc(64 / var(--vw-1280) * 100vw), 64px);
}
.mv-illust--img02{
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(130px, calc(190 / var(--vw-1280) * 100vw), 190px);
}

.mv-illust--ouen{
  /* display: none; */
  position: absolute;
  z-index: -1;
  content: '';
  display: inline-block;
  top: -1.5vw;
  left: 90%;
  width: clamp(calc(161px * .6), calc(161 / var(--vw-768) * 100vw), 161px);
  animation: float 1.8s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes arrowAnime {
    0% { opacity: 0; top: 0%;}
   70% { opacity: 1;}
  100% { opacity: 0;}
}

@media screen and (max-width: 1600px){
  .mv-title__speech-bubble{
    top: 0;
    transform: unset;
  }

  .mv-title .show-w1600{
    display: block!important;
  }

  .mv-title--ouen::before{
    content: none;
  }

  .mv-illust--ouen{
    left: unset;
    top: -2.5vw;
    right: -4vw;
  }
}

@media screen and (max-width: 767px){
  .mv::before{
    left: -9vw;
  }

  .mv::after{
    right: -9vw;
  }

  .mv-benefits__item.license::after{
    top: 12px;
    left: -30px;
    rotate: -14deg;
  }
  .mv-benefits__item.download::after{
    top: 12px;
    right: -30px;
    rotate: 14deg;
  }

  .mv-illust--ouen{
    top: -3.5vw;
  }
}

@media screen and (max-width: 550px){
  .mv::before{
    content: none;
  }

  .mv::after{
    right: 0;
  }

  .mv-title__speech-bubble{
    top: -6vw;
    right: unset;
    left: 3vw;
    transform: unset;
    rotate: 10deg;
    width: clamp(calc(84px * .9), calc(84 / 550 * 100vw), 84px);
    height: clamp(calc(79px * .9), calc(79 / 550 * 100vw), 79px);
  }

  .mv-benefits{
    grid-template-columns: 1fr;
    row-gap: clamp(28px, calc(36 / 550 * 100vw), 36px);
  }

  .mv-period__text span::before,
  .mv-period__text span::after{
    content: none;
  }

  .mv-illust--img01,
  .mv-illust--img02{
    display: none;
  }
}


/* ==================================================
  特典
================================================== */
.benefits{
  padding-top: var(--size-72);
  padding-bottom: var(--size-96);
}
#benefits01{
  background: var(--bg-lightblue);
}
#benefits02{
  background: var(--bg-lightyellow);
}

.benefits__copy{
  text-align: center;
  line-height: 1.8;
}

.benefits__copy2{
  margin-top: var(--size-32);
}

.benefits__copy2 p{
  font-size: var(--size-18);
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
}

.benefits__copy2 p span::before{
  content: '＼';
  margin-right: 0.25em;
}
.benefits__copy2 p span::after{
  content: '／';
  margin-left: 0.25em;
}

.benefits__title{
  position: relative;
  z-index: 2;
  font-size: var(--size-26);
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: var(--red);
  box-shadow: 0 4px 0 var(--bk);
  max-width: 820px;
  width: 90%;
  margin: 0 auto;
  padding: clamp(8px, calc(14 / var(--vw-1280) * 100vw), 14px) clamp(16px, calc(24 / var(--vw-1280) * 100vw), 24px);
  border-radius: var(--bd-radius);
  transform: translateY(50%);
}
.benefits__wrapper{
  background: #fff;
  border-radius: var(--bd-radius);
  padding: var(--size-96) 0;
  margin-top: var(--size-52);
}
#benefits02 .benefits__wrapper{
  margin-top: 0;
}
.benefits__sub-title{
  font-size: var(--size-32);
  font-weight: 700;
  text-align: center;
  margin: var(--size-40) 0 var(--size-16);
}
.benefits__text{
  text-align: center;
}

.benefits-merit{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-20);
  margin-top: var(--size-32);
}

.benefits-merit__item{
  position: relative;
  display: grid;
  gap: clamp(10px, calc(12 / var(--vw-1280) * 100vw), 12px);
  background: #b9e9f7;
  border: solid clamp(3px, calc(4 / var(--vw-1280) * 100vw), 4px) var(--yellow);
  border-radius: var(--bd-radius);
  text-align: center;
  padding: var(--size-32) var(--size-16) clamp(56px, calc(72 / var(--vw-1280) * 100vw), 72px);
}
.benefits-merit__item::before{
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: clamp(32px, calc(40 / var(--vw-1280) * 100vw), 40px);
  background-image: linear-gradient(45deg, var(--yellow) 25%, transparent 25%, transparent 75%, var(--yellow) 75%),
	  linear-gradient(45deg, var(--yellow) 25%, transparent 25%, transparent 75%, var(--yellow) 75%);
  background-position: 0 0, clamp(16px, calc(20 / var(--vw-1280) * 100vw), 20px) clamp(16px, calc(20 / var(--vw-1280) * 100vw), 20px);
  background-size: clamp(32px, calc(40 / var(--vw-1280) * 100vw), 40px) clamp(32px, calc(40 / var(--vw-1280) * 100vw), 40px);
  background-color: transparent;
}

.benefits-merit__illust{
  display: block;
  width: clamp(38px, calc(52 / var(--vw-1280) * 100vw), 52px);
  margin-inline: auto;
}
.benefits-merit__title{
  font-size: clamp(18px, calc(22 / var(--vw-1280) * 100vw), 22px);
}
.benefits-merit__notes{
  font-size: var(--size-16);
  color: var(--gray);
}

.benefits-detail{
  margin-top: var(--size-48);
}
.benefits-detail + .benefits-detail{
  margin-top: var(--size-32);
}
.benefits-detail__title{
  display: inline-block;
  border: solid 2px var(--bk);
  padding: clamp(4px, calc(6 / var(--vw-1280) * 100vw), 6px) clamp(12px, calc(16 / var(--vw-1280) * 100vw), 16px);
  text-align: center;
  margin-bottom: clamp(8px, calc(10 / var(--vw-1280) * 100vw), 10px);
}
.benefits-detail__list{
  list-style-type: disc;
  padding-left: 2em;
}
.benefits-detail__item,
.benefits-detail__text,
.benefits-detail__notes{
  line-height: 1.8;
}
.benefits-detail__notes{
  text-indent: -1em;
  padding-left: 1em;
}

.benefits-detail__list + .benefits-detail__notes{
  margin-top: var(--size-18);
}

.benefits__sub-title02{
  font-size: var(--size-24);
  background: var(--bd-color);
  text-align: center;
  padding: clamp(10px, calc(14 / var(--vw-1280) * 100vw), 14px) var(--size-16);
  margin-top: var(--size-72);
}
.benefits__sub-title02 span{
  position: relative;
  display: inline-block;
  margin-left: calc(clamp(64px, calc(87 / var(--vw-1280) * 100vw), 87px));
}
.benefits__sub-title02 span::before{
  position: absolute;
  display: block;
  content: '';
  top: 50%;
  right: calc(100% + clamp(12px, calc(20 / var(--vw-1280) * 100vw), 20px));
  transform: translateY(-50%);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.benefits__sub-title02.benefits01 span::before{
  background-image: url(../img/cloud30_icon.png);
  width: clamp(58px, calc(87 / var(--vw-1280) * 100vw), 87px);
  height: clamp(64px, calc(96 / var(--vw-1280) * 100vw), 96px);

}
.benefits__sub-title02.benefits02 span::before{
  background-image: url(../img/max25per_off_icon.png);
  width: clamp(64px, calc(96 / var(--vw-1280) * 100vw), 96px);
  height: clamp(64px, calc(96 / var(--vw-1280) * 100vw), 96px);
}

.products__list{
  margin-top: var(--size-52);
  display: grid;
  gap: clamp(46px, calc(52 / var(--vw-1280) * 100vw), 52px) clamp(12px, calc(24 / 1480 * 100vw), 24px);
}

.products__item{
  position: relative;
}

.thumb{
  position: relative;
}

.products__item .products__present{
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  background: #fffd62;
  border-radius: 6px;
  width: 86px;
  padding: 6px 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 2px rgb(0 0 0 / .4);
}

.products__item .products__present p{
  font-size: 12px;
  font-weight: 900;
  font-feature-settings: "palt";
  line-height: 1.1;
  text-align: center;
}

.products__item .products__present .large{
  font-size: 1.9em;
}

.products__item--main a{
  background: var(--beige);
}

.products__desc,
.products__name{
  font-size: var(--size-16);
}

.products__desc{
  font-weight: 700;
  margin-top: var(--size-16);
}

.products__name{
  font-weight: 400;
  margin-top: clamp(8px, calc(10 / var(--vw-1280) * 100vw), 10px);
}

.products__price-wrapper{
  /* display: flex;
  align-items: baseline; */
  column-gap: 0.75em;
  margin-top: clamp(8px, calc(10 / var(--vw-1280) * 100vw), 10px);
}

#benefits02 .products__price-wrapper{
  width: fit-content;
}

#benefits02 .products__price{
  display: flex;
  justify-content: flex-end;
}

.products__price{
  display: flex;
  align-items: baseline;
  column-gap: 0.05em;
  color: var(--red);
  font-size: clamp(18px, calc(22 / var(--vw-1280) * 100vw), 22px);
  font-weight: 700;
}

.products__price--regular{
  position: relative;
  width: fit-content;
  font-size: var(--size-16);
  color: var(--gray);
  display: flex;
  align-items:baseline;
  column-gap: .1em;
}

.products__price--regular::before{
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateY(2px);
  width: 100%;
  height: 1px;
  background: var(--gray);
}

.products__price .small{
  font-size: 0.75em;
}

.products__price .small2{
  font-size: 0.675em;
  color: var(--bk);
  margin-right: 0.25em;
}

.products__item--main .products__price .small2{
  font-size: 0.6em;
}

.products__price--regular .small{
  font-size: 0.75em;
}

.products__cart-btn{
  color: #fff;
  font-size: clamp(18px, calc(20 / var(--vw-1280) * 100vw), 20px);
  font-weight: 700;
  text-align: center;
  background: var(--orange);
  padding: clamp(10px, calc(14 / var(--vw-1280) * 100vw), 14px);
  max-width: clamp(260px, calc(310 / var(--vw-1280) * 100vw), 310px);
  width: 100%;
  border-radius: var(--bd-radius);
  margin: var(--size-20) auto 0;
  box-shadow: 0 5px 0 #684100;
  transition: all .3s ease-in-out;
}
.products__cart-btn .icon::before{
  content: '\f218';
  font-family: 'Font Awesome 6 Pro';
  margin-right: 0.4em;
}

@media screen and (min-width: 768px){
  .products__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .products__item a{
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .products__item--main{
    grid-column: 1 / -1;
    border-bottom: dotted 1px var(--bd-color);
    padding-bottom: var(--size-48);
  }

  .products__item--main.first{
    border-bottom: none;
    padding-bottom: 0;
  }

  .products__item--main a{
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1.6fr;
    grid-template-areas:
      "thumb ."
      "thumb desc"
      "thumb product_name"
      "thumb product_price"
      "thumb cart_btn"
      "thumb .";
    column-gap: var(--size-28);
  }

  .products__item--main a .thumb{
    grid-area: thumb;
  }
  .products__item--main a .products__desc,
  .products__item--main a .products__name,
  .products__item--main a .products__price{
    padding-right: 1em;
  }
  .products__item--main a .products__desc,
  .products__item--main a .products__name{
    font-size: var(--size-20);
  }
  .products__item--main a .products__desc{
    grid-area: desc;
    margin-top: 0;
  }
  .products__item--main a .products__name{
    grid-area: product_name;
  }
  .products__item a .products__price-wrapper{
    margin-bottom: clamp(12px, calc(20 / 1480 * 100vw), 20px);
  }
  .products__item--main a .products__price-wrapper{
    grid-area: product_price;
  }
  .products__item--main a .products__price{
    font-size: clamp(30px, calc(36 / var(--vw-1280) * 100vw), 36px);
  }
  .products__item--main a  .products__price--regular{
    font-size: clamp(18px, calc(22 / var(--vw-1280) * 100vw), 22px);
  }
  .products__item a .products__cart-btn{
    margin-top: auto;
  }
  .products__item--main a .products__cart-btn{
    grid-area: cart_btn;
    margin-left: 0;
  }
}


@media screen and (max-width: 767px){
  .benefits-merit{
    grid-template-columns: unset;
  }

  .products__list{
    max-width: 380px;
    margin-inline: auto;
  }

  .products__item--main a .products__desc,
  .products__item--main a .products__name,
  .products__item--main a .products__price-wrapper{
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .products__desc{
    margin-top: var(--size-16);
  }

  .products__item--main a{
    padding-bottom: var(--size-40);
  }

  .products__cart-btn{
    max-width: 350px;
    width: 90%;
  }
}

@media screen and (max-width: 550px){
  .benefits{
    margin: var(--size-28) 0 0;
  }
  .benefits + .benefits{
    margin-top: 0;
  }
  .benefits__wrapper{
    margin-inline: calc(clamp(15px, calc(20 / var(--vw-768) * 100vw), 20px) * -1);
    border-radius: unset;
  }
}

@media (hover: hover){
  a:hover .products__cart-btn{
    box-shadow: unset;
    transform: translateY(5px);
  }
}

@media (hover: none){
  a:active .products__cart-btn{
    box-shadow: unset;
    transform: translateY(5px);
  }
}


/* ==================================================
  メリット
================================================== */
.merit{
  margin-top: var(--size-72);
}

.merit__tabs{
  position: relative;
  margin-top: var(--size-18);
}

.merit__radio{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.merit__tab-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 4px;
}

.merit__tab{
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 12px 14px;
  border: 2px solid #d9d9d9;
  border-radius: var(--bd-radius);
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 500;
  background: #d9d9d9;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.merit__tab:hover{
  border-color: var(--lightblue);
  background: var(--bg-lightblue);
}

#merit-tab-1:checked ~ .merit__tab-list .merit__tab:nth-child(1),
#merit-tab-2:checked ~ .merit__tab-list .merit__tab:nth-child(2),
#merit-tab-3:checked ~ .merit__tab-list .merit__tab:nth-child(3){
  border-color: var(--lightblue);
  color: #fff;
  background: var(--lightblue);
}

#merit-tab-1:focus-visible ~ .merit__tab-list .merit__tab:nth-child(1),
#merit-tab-2:focus-visible ~ .merit__tab-list .merit__tab:nth-child(2),
#merit-tab-3:focus-visible ~ .merit__tab-list .merit__tab:nth-child(3){
  outline: 2px solid var(--lightblue);
  outline-offset: 4px;
}

.merit__panel-list{
  position: relative;
  min-height: 260px;
  border: 3px solid var(--lightblue);
  border-radius: clamp(12px, calc(24 / var(--vw-1280) * 100vw), 24px);
  background: #fff;
}

.merit__panel{
  display: none;
  min-height: 260px;
  padding: var(--size-32);
}

#merit-tab-1:checked ~ .merit__panel-list .merit__panel--rendering,
#merit-tab-2:checked ~ .merit__panel-list .merit__panel--cad,
#merit-tab-3:checked ~ .merit__panel-list .merit__panel--permit-drawing{
  display: block;
}

.merit__content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, calc(32 / 1600 * 100vw), 32px);
}

.merit__content + .merit__content{
  margin-top: var(--size-40);
}

.merit__content--block{
  display: block;
}

.merit__content--shadow{
  box-shadow: 2px 2px 10px rgb(0 0 0 / .1);
  padding: var(--size-24);
  border-radius: var(--bd-radius);
}

.merit__heading{
  font-size: var(--size-24);
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 0.75em;
}

.merit__cat{
  width: fit-content;
  font-size: var(--size-16);
  font-weight: 500;
  color: var(--blue);
  background: var(--bg-lightblue);
  border-radius: 100vmax;
  padding: 0.2em 1.25em;
  margin-bottom: clamp(10px, calc(16 / var(--vw-1280) * 100vw), 16px);
}

.merit__text{
  font-size: var(--size-16);
  font-weight: 500;
}

.merit__text + .merit__text{
  margin-top: 1.5em;
}

.merit__panel--rendering .merit__illust{
  margin-top: var(--size-18);
  max-width: 480px;
  width: 95%;
}

.merit__desc{
  margin-top: var(--size-24);
}

.merit__desc p{
  text-align: center;
  font-weight: 500;
}

@media (max-width: 767px){
  .merit__tab-list{
    gap: 6px;
  }

  .merit__tab{
    min-height: 52px;
    padding: 10px 8px;
  }

  .merit__panel{
    padding: 28px 22px;
  }

  .merit__content{
    grid-template-columns: 1fr;
  }
}

/* ==================================================
  旧製品との違いLPへの導線
================================================== */
.diff{
  margin-top: var(--size-32);
}

.diff__list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, calc(32 / 1600 * 100vw), 32px);
}

.diff__thumb{
  border-width: 1px;
  border-style: solid;
}

.diff__thumb--pro10{
  border-color: #a31716;
}
.diff__thumb--neo10{
  border-color: #811715;
}
.diff__thumb--od10{
  border-color: #059494;
}

.diff__item .link-btn{
  margin-top: var(--size-24);
}

.diff__item .link-btn a{
  font-size: var(--size-18);
  font-weight: 500;
  text-align: center;
  background: var(--yellow);
  padding: 0.5em;
  border: solid 2px var(--yellow);
  border-radius: var(--bd-radius);
  transition: all .3s ease-in-out;
}

.diff__item .link-btn a span{
  position: relative;
}

.diff__item .link-btn a span::after{
  content: '\f0da';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 700;
  margin-left: 0.25em;
}

@media (hover: hover){
  .diff__item .link-btn a:hover{
    border-color: var(--lightblue);
  }
}

@media (hover: none){
  .diff__item .link-btn a:active{
    border-color: var(--lightblue);
  }
}

@media screen and (max-width: 550px){
  .diff__list{
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==================================================
  バージョンアップ／優待販売 対象製品 一覧表
================================================== */
.comparison{
  position: relative;
  overflow-x: auto;
  margin-top: var(--size-72);
}

.comparison__title{
  font-size: clamp(17px, calc(24 / var(--vw-1280) * 100vw), 24px);
  font-weight: 500;
  text-align: center;
  background: #d9d9d9;
  padding: var(--size-20);
  margin-bottom: var(--size-32);
}

.comparison__cap{
  font-size: clamp(16px, calc(22 / var(--vw-1280) * 100vw), 22px);
  font-weight: 500;
  padding-bottom: 0.75em;
}

.comparison__cap::before{
  content: '■';
}

.comparison__wrapper{
  position: relative;
  overflow-x: auto!important;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll!important;
  max-height: 80vh;
}

.comparison__wrapper.is-grabbing {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.comparison__wrapper + .comparison__cap{
  margin-top: var(--size-32);
}

.comparison__wrapper--mh{
  border: solid 1px var(--bd-color);
}

.comparison__wrapper--od{
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.comparison__wrapper--od::-webkit-scrollbar {
  display: none;
}

.comparison__table{
  width: 100%;
  table-layout:fixed;
  min-width: clamp(960px, calc(1040 / 768 * 100vw), 1040px);
  border-collapse: separate;
  border-spacing: 0;
}

.comparison__wrapper--mh .col-th{
  width: clamp(168px, calc(200 / var(--vw-1280) * 100vw), 200px);
}

.comparison__wrapper--mh .col-td{
  width: calc((100% - clamp(168px, calc(200 / var(--vw-1280) * 100vw), 200px)) / 5);
}

.comparison__wrapper--od .col-th{
  width: clamp(168px, calc(200 / var(--vw-1280) * 100vw), 200px);
}

.comparison__wrapper--od .col-td{
  width: calc((100% - clamp(168px, calc(200 / var(--vw-1280) * 100vw), 200px)) / 3);
}

.comparison__table th,
.comparison__table td{
  font-size: clamp(13px, calc(15 / var(--vw-1280) * 100vw), 15px);
  font-weight: 500;
  border: solid 1px var(--bd-color);
  padding: 1.25em 0.75em;
  background: #fff;
  width: auto;
}

.comparison__table thead th{
  position: sticky;
  top: 0;
  z-index: 3;
}

.comparison__table thead th:first-child{
  left: 0;
  z-index: 4;
}

.comparison__table .diagonal{
  /* position: relative; */
  width: 140px;
  height: 80px;
  padding: 0;
}

/* 斜線 */
.comparison__table .diagonal::before{
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(
      to bottom left,
      transparent 49.2%,
      var(--bd-color) 49.5%,
      var(--bd-color) 50.5%,
      transparent 50.8%
    );
}

/* 左上 */
.comparison__table .diagonal .top,
.comparison__table .diagonal .bottom{
  position: absolute;
  font-size: clamp(12px, calc(13 / var(--vw-1280) * 100vw), 13px);
}
.comparison__table .diagonal .top{
  top: 8px;
  right: 10px;
  text-align: right;
}

/* 左下 */
.comparison__table .diagonal .bottom{
  bottom: 8px;
  left: 10px;
}

.comparison__table tbody th{
  position: sticky;
  left: 0;
  z-index: 2;
}

.comparison__table td{
  text-align: center;
}

.comparison__table .td--plus30{
  background: #cff4ff;
}

.comparison__table .td--vup{
  background: var(--lightpink);
}

.comparison__table .td--special{
  background: var(--lightyellow);
}

.comparison__table .td--none{
  font-size: var(--size-24);
}

.comparison__table td .discount{
  display: block;
  font-size: 1.7em;
  line-height: 1;
}

.comparison__table td .discount .small{
  font-size: var(--size-20);
}

.comparison .scroll-hint-icon-wrap{
  z-index: 6;
}

@media screen and (max-width: 767px){
  .comparison__wrapper{
    margin-right: calc(clamp(15px, calc(20 / var(--vw-768) * 100vw), 20px) * -1);
  }
}


/* ==================================================
  年末年始休業のお知らせ
================================================== */
.info{
  margin-top: var(--size-72);
}
.info__wrapper{
  border-radius: var(--bd-radius);
  background-color: var(--bg-color);
}
.info__title{
  font-size: var(--size-24);
  text-align: center;
  color: #fff;
  background: var(--bk);
  padding: clamp(10px, calc(12 / var(--vw-1280) * 100vw), 12px) var(--size-16);
  border-top-left-radius: var(--bd-radius);
  border-top-right-radius: var(--bd-radius);
}
.info__body{
  position: relative;
  padding: var(--size-32) clamp(15px, calc(56 / var(--vw-1280) * 100vw), 56px) clamp(48px, calc(64 / var(--vw-1280) * 100vw), 64px);
  text-align: center;
}

.info__text{
  position: relative;
  z-index: 2;
  font-size: var(--size-16);
}

.info__box{
  position: relative;
  z-index: 2;
  margin: var(--size-32) 0 var(--size-16);
}
.info__sub-title{
  font-size: clamp(17px, calc(20 / var(--vw-1280) * 100vw), 20px);
  font-weight: 700;
}
.info__closed{
  font-size: var(--size-32);
  font-weight: 700;
}
.info__closed .small{
  font-size: 0.75em;
}

@media screen and (max-width: 767px){
  .info__body{
    text-align: left;
  }
  .info__body::before{
    left: 50%;
    right: unset;
    transform: translateX(-50%);
    background-position: center center;
  }
  .info__sub-title,
  .info__closed{
    text-align: center;
  }
}


/* ==================================================
  フッター
================================================== */
footer{
  position: relative;
  background: var(--bk);
  padding: clamp(8px, calc(12 / var(--vw-1280) * 100vw), 12px);
}

.f__logo{
  max-width: 137px;
  text-align: center;
  margin-inline: auto;
}