@charset "utf-8";

/* ==================================================
  共通
================================================== */
:root{
  --bk: #2c2c2c;
  --red: #d10000;
  --dark-red: #b00000;
  --gold: #d9a62e;
  --orange: #fc9e00;
  --light-pink: #faf0f6;
  --pink: #f2c5c5;
  --beige: #faf0e6;

  --dark-green: #2f4f4f;
  --bg-color: #f0f0f0;
  --bd-color: #ddd;
  --gray: #888;

  --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);

  --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);
}

main::before{
  position: fixed;
  z-index: -1;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #eec95d;
  background-image: url(../img/bg.png);
  background-position: left top;
  background-size: 960px;
  background-repeat: repeat;
}

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--red{
  color: var(--red);
}

.fw700{
  font-weight: 700;
}
.bg--beige{
  background: var(--beige);
}
.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(--red);
  background-image: url(../img/bg.png);
  background-position: left top;
  background-size: 960px;
  background-repeat: repeat;
  padding: var(--size-52) 0;
}
.mv::before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(130, 7, 7, 0.6), rgba(137, 76, 77, 0.1) 20%, rgba(176, 100, 91, 0));
}

.mv__inner{
  position: relative;
  z-index: 3;
}
.mv-title{
  color: #fff;
  font-size: clamp(38px, calc(72 / var(--vw-1280) * 100vw), 72px);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow: clamp(2px, calc(3 / var(--vw-1280) * 100vw), 3px) clamp(2px, calc(3 / var(--vw-1280) * 100vw), 3px) 0 var(--bk);
  text-wrap: balance;
}
.mv-title span{
  display: block;
  line-height: 1.2;
}
.mv-title .mv-title--small{
  font-size: clamp(22px, calc(40 / var(--vw-1280) * 100vw), 40px);
  font-weight: 700;
  line-height: 1;
}
.mv-title .mv-title__img{
  max-width: clamp(290px, calc(550 / var(--vw-1280) * 100vw), 550px);
  margin: clamp(10px, calc(16 / var(--vw-1280) * 100vw), 16px) auto clamp(8px, calc(18 / var(--vw-1280) * 100vw), 18px);
}

.mv-benefits{
  margin-top: clamp(20px, calc(28 / var(--vw-1280) * 100vw), 28px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, calc(32 / var(--vw-1280) * 100vw), 32px);
}
.mv-benefits__item{
  position: relative;
  background: #fff;
  border-radius: var(--bd-radius);
}

.mv-benefits__item::after{
  position: absolute;
  content: '';
  width: clamp(80px, calc(140 / var(--vw-1280) * 100vw), 140px);
  height: clamp(42px, calc(74 / var(--vw-1280) * 100vw), 74px);
  background: url(../img/matsu.png) center center / contain no-repeat;
}

.mv-benefits__item.license::after{
  top: 16px;
  left: calc(clamp(50px, calc(70 / var(--vw-1280) * 100vw), 70px) * -1);
  rotate: -14deg;
}
.mv-benefits__item.download::after{
  top: 50%;
  right: calc(clamp(50px, calc(70 / var(--vw-1280) * 100vw), 70px) * -1);
  rotate: 14deg;
}

.mv-benefits__title{
  color: #fff;
  font-size: var(--size-24);
  font-weight: 700;
  text-align: center;
  padding: clamp(6px, calc(10 / var(--vw-1280) * 100vw), 10px) var(--size-16);
  border-top-left-radius: var(--bd-radius);
  border-top-right-radius: var(--bd-radius);
}

.mv-benefits__item.license .mv-benefits__title{
  background: var(--gold);
}

.mv-benefits__item.download .mv-benefits__title{
  background: var(--dark-green);
}
.mv-benefits__body{
  text-align: center;
  padding: clamp(10px, calc(20 / var(--vw-1280) * 100vw), 20px) var(--size-16);
}
.mv-benefits__text{
  font-size: var(--size-28);
  font-weight: 700;
  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: var(--size-52);
}

.mv-benefits__arrows{
  position: relative;
  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: clamp(16px, calc(20 / var(--vw-1280) * 100vw), 20px);
  font-weight: 700;
  line-height: 1.2;
}

.mv-period{
  max-width: 980px;
  background: #fff;
  border-radius: 100vmax;
  margin:  var(--size-32) auto 0;
  padding: clamp(6px, calc(8 / var(--vw-1280) * 100vw), 8px) clamp(12px, calc(16 / var(--vw-1280) * 100vw), 16px);
}

.mv-period__text{
  font-size: var(--size-24);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.025em;
}

.mv-period__text--large{
  font-size: 1.3em;
}

.mv-illust--img{
  position: absolute;
}

.mv-illust--img01{
  z-index: 1;
  top: 4vw;
  left: -2.8vw;
  width: clamp(180px, calc(435 / var(--vw-1280) * 100vw), 435px);
}
.mv-illust--img02{
  z-index: 1;
  top: 8.8vw;
  right: -0.8vw;
  width: clamp(190px, calc(478 / var(--vw-1280) * 100vw), 478px);
}
.mv-illust--img03{
  z-index: 2;
  top: 2vw;
  left: 70vw;
  width: clamp(130px, calc(236 / var(--vw-1280) * 100vw), 236px);
}
.mv-illust--img04{
  z-index: 5;
  bottom: -1vw;
  left: 4vw;
  width: clamp(70px, calc(131 / 1600 * 100vw), 131px);
}

@keyframes arrowAnime {
    0% { opacity: 0; top: 0%;}
   70% { opacity: 1;}
  100% { opacity: 0;}
}

@media screen and (min-width: 768px) and (max-width: 1279px){
  .mv-illust--img03{
    top: 2vw;
    left: 78vw;
  }
}

@media screen and (max-width: 767px){
  .mv{
    background-size: 500px;
  }

  .mv-title .mv-title__img{
    margin: clamp(10px, calc(16 / var(--vw-1280) * 100vw), 16px) auto clamp(12px, calc(18 / var(--vw-1280) * 100vw), 18px);
  }

  .mv-benefits__item.license::after{
    top: 12px;
    left: -30px;
    rotate: -14deg;
  }
  .mv-benefits__item.download::after{
    top: 12px;
    right: -30px;
    rotate: 14deg;
  }

  .mv-illust--img01{
    top: 2vw;
    left: -10vw;
  }
  .mv-illust--img02{
    top: 12vw;
    right: -12vw;
  }
}

@media screen and (max-width: 550px){
  .mv-benefits{
    grid-template-columns: 1fr;
  }
}


/* ==================================================
  メリット
================================================== */
.merit{
  position: relative;
  z-index: 2;
  color: #fff;
  background: var(--bk);
}

.merit__list{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: clamp(8px, calc(12 / var(--vw-1280) * 100vw), 12px);
}

.merit__item{
  position: relative;
  font-size: clamp(18px, calc(28 / var(--vw-1280) * 100vw), 28px);
  font-weight: 700;
  text-align: center;
}

.merit__item img{
  display: inline-block;
  width: clamp(26px, calc(36 / var(--vw-1280) * 100vw), 36px);
  vertical-align: middle;
}

.dots{
  background-image: radial-gradient(circle at center, #fff 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: .15em;
}

@media screen and (max-width: 767px){
  .merit__list{
    display: block;
  }
  .merit__item{
    width: 100%;
  }
  .merit__item + .merit__item{
    margin-top: 0.25em;
  }
  .merit__item::before,
  .merit__item::after{
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    width: clamp(20px, calc(26 / var(--vw-768) * 100vw), 26px);
    height: clamp(17px, calc(22 / var(--vw-768) * 100vw), 22px);
    background: url(../img/ume.png) center center / contain no-repeat;
  }

  .merit__item::before{
    left: 0;
  }
  .merit__item::after{
    right: 0;
  }

  .merit__item.ume{
    display: none;
  }
}

/* ==================================================
  キャンペーン適用条件
================================================== */
.conditions{
  margin-top: var(--size-72);
}
.conditions__wrapper{
  background: #fff;
  border-radius: var(--bd-radius);
  padding: var(--size-72) 0;
}
.conditions__text{
  text-align: center;
  line-height: 1.8;
}

.conditions__table{
  margin-top: clamp(24px, calc(40 / var(--vw-1280) * 100vw), 40px);
}

.conditions__table th,
.conditions__table td{
  font-size: clamp(14px, calc(18 / var(--vw-1280) * 100vw), 18px);
  text-align: center;
  border: solid 1px var(--bd-color);
  padding: clamp(6px, calc(8 / var(--vw-1280) * 100vw), 8px) clamp(6px, calc(16 / var(--vw-1280) * 100vw), 16px);
}

.conditions__table th.bd--red,
.conditions__table td.bd--red{
  border-left-width: clamp(2px, calc(3 / var(--vw-1280) * 100vw), 3px);
  border-right-width: clamp(2px, calc(3 / var(--vw-1280) * 100vw), 3px);
  border-style: solid;
  border-left-color: var(--red);
  border-right-color: var(--red);
}

.conditions__table th{
  font-weight: 700;
  background: var(--bg-color);
}

.conditions__table .conditions__head--none{
  background: unset;
  padding-left: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.conditions__table .conditions__head--none span::before{
  content: '＼';
  margin-right: 0.1em;
}
.conditions__table .conditions__head--none span::after{
  content: '／';
  margin-left: 0.1em;
}

.conditions__table thead th{
  width: 33.3%;
}
.conditions__table thead th:first-of-type{
  width: 33.4%;
}

.conditions__table thead th.bd--red{
  border-top-width: clamp(2px, calc(3 / var(--vw-1280) * 100vw), 3px);
  border-top-color: var(--red);
}

.conditions__table tbody tr:last-of-type td.bd--red{
  border-bottom-width: clamp(2px, calc(3 / var(--vw-1280) * 100vw), 3px);
  border-bottom-color: var(--red);
}

@media screen and (max-width: 550px){
  .conditions__wrapper{
    margin-inline: calc(clamp(15px, calc(20 / var(--vw-768) * 100vw), 20px) * -1);
    border-radius: unset;
  }
}


/* ==================================================
  特典
================================================== */
.benefits{
  margin: var(--size-52) 0;
}
.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;
}
.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: rgb(250 240 230 / .5);
  border: solid clamp(3px, calc(4 / var(--vw-1280) * 100vw), 4px) var(--pink);
  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(--pink) 25%, transparent 25%, transparent 75%, var(--pink) 75%),
	  linear-gradient(45deg, var(--pink) 25%, transparent 25%, transparent 75%, var(--pink) 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__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/10per_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);
}

.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;
  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--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;
  }
  .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);
  }
}


/* ==================================================
  サンプルパース
================================================== */
.sample{
  margin: var(--size-72) 0 var(--size-52);
}
.sample .swiper-wrapper {
  transition-timing-function: linear;
}

@media screen and (max-width: 550px){
  .sample{
    margin: var(--size-52) 0 var(--size-28);
  }
}


/* ==================================================
  年末年始休業のお知らせ
================================================== */
.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__body::before{
  position: absolute;
  content: '';
  bottom: 0;
  right: clamp(8px, calc(16 / var(--vw-1280) * 100vw), 16px);
  width: clamp(200px, calc(267 / var(--vw-1280) * 100vw), 267px);
  height: clamp(156px, calc(210 / var(--vw-1280) * 100vw), 210px);
  background: url(../img/daruma.png) bottom right / contain no-repeat;
  opacity: .08;
}

.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;
}