@charset "utf-8";

/* ========================================
  共通スタイル
======================================== */
:root{
  --bk: #333;
  --blue: #102e9e;
  --blue02: #1558d6;
  --gray: #9d9d9d;
  --bd-color: #d3d3d3;
  --bg-color: #f6f6f6;

  --grd-blue: linear-gradient(90deg, var(--blue) 0%, var(--blue02) 100%);

  --bd-radius: 3px;
  --content-width: 1120;
  --content-width-large: 1390;

  --text-shadow: 0 0 6px rgba(0, 0, 0, .25);
  --shadow-hover: 0 5px 20px rgba(4, 0, 0, 0.1);

  --cb: cubic-bezier(.24,-0.01,.69,.47);

  --size16: clamp(14px, calc(16 / var(--content-width) * 100vw), 16px);
  --size24: clamp(17px, calc(24 / var(--content-width) * 100vw), 24px);
  --size32: clamp(24px, calc(32 / var(--content-width) * 100vw), 32px);
  --size72: clamp(48px, calc(72 / var(--content-width) * 100vw), 72px);
}

@media screen and (max-width: 374px){
  :root{
    --size16: calc(clamp(14px, calc(16 / 375 * 100vw), 16px) * 0.95);
  }
}

body{
  background: var(--bg-color);
  font-size: var(--size16);
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, verdana, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--bk);
}

.container{
  max-width: calc(var(--content-width) * 1px);
  width: 95%;
  margin-inline: auto;
}

.l-container{
  max-width: calc(var(--content-width-large) * 1px);
  width: 95%;
  margin-inline: auto;
}

h1,h2,h3,h4,h5,h6{
  font-weight: 700;
  line-height: 1.25;
}

main{
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
}

main > *{
  line-height: 1.4;
}

main a{
  display: block;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

video{
  max-width: 100%;
}

.section{
  position: relative;
}

.section.bg--w{
  background: #fff;
}

.roboto{
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.section-title__heading{
  text-align: center;
  color: var(--bk);
}

.section-title__text{
  display: block;
}

.section-title__text--small{
  font-size: var(--size24);
}

.section-title__text--large{
  font-size: clamp(30px, calc(44 / var(--content-width) * 100vw), 44px);
}

.section__sub-title{
  font-size: var(--size24);
  line-height: calc(30 / 24);
  text-align: center;
  color: var(--blue02);
  background: #fff;
  border: solid 1px var(--blue02);
  border-radius: var(--bd-radius);
  padding: clamp(7px, calc(8 / var(--content-width) * 100vw), 8px) clamp(12px, calc(16 / var(--content-width) * 100vw), 16px);
}

.link-btn{
  max-width: 265px;
  margin: clamp(24px, calc(32 / var(--content-width) * 100vw), 32px) auto 0;
}

.link-btn a{
  position: relative;
  color: #fff;
  background-color: var(--blue02);
  background-image: var(--grd-blue);
  font-size: clamp(17px, calc(20 / var(--content-width) * 100vw), 20px);
  font-weight: 700;
  text-align: center;
  padding: clamp(14px, calc(16 / var(--content-width) * 100vw), 16px);
  border-radius: 100vmax;
  border: solid 1px var(--blue02);
  overflow: hidden;
}

.link-btn a::before{
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  translate: 0 -50%;
  scale: 0 1;
  transform-origin: right center;
  background: #fff;
  border-radius: 100vmax;
  transition: scale .2s ease-in-out;
}

.link-btn a span{
  position: relative;
  z-index: 2;
}

.link-btn a span::before{
  content: '\f0da';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 700;
  margin-right: 0.5em;
}

.link-btn2{
  max-width: 616px;
  margin-inline: auto;
}

.link-btn2 a{
  position: relative;
  border-radius: var(--bd-radius);
  border: solid 1px var(--bk);
  font-size: clamp(16px, calc(20 / var(--content-width) * 100vw), 20px);
  font-weight: 700;
  text-align: center;
  padding: clamp(8px, calc(10 / var(--content-width) * 100vw), 10px) 0 clamp(8px, calc(10 / var(--content-width) * 100vw), 10px) clamp(8px, calc(10 / var(--content-width) * 100vw), 10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.link-btn2 a::before{
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  translate: 0 -50%;
  scale: 0 1;
  transform-origin: right center;
  border-radius: var(--bd-radius);
  background: var(--bk);
  transition: scale .2s ease-in-out;
}

.link-btn2 a span{
  position: relative;
  z-index: 2;
}

.link-btn2__text{
  display: block;
  width: calc(100% - clamp(40px, calc(46 / var(--content-width) * 100vw), 46px));
}

.link-btn2 a .icon{
  display: block;
  width: clamp(48px, calc(72 / var(--content-width) * 100vw), 72px);
  height: clamp(42px, calc(52 / var(--content-width) * 100vw), 52px);
  border-left: solid 1px var(--bk);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border .3s ease-in-out;
}

a.img--anime{
  overflow: hidden;
}

a.img--anime img{
  transition: scale .3s ease-in-out;
}

@media screen and (max-width: 374px){
  .link-btn a{
    font-size: clamp(15px, calc(16 / 375 * 100vw), 16px);
    padding: clamp(12px, calc(14 / 375 * 100vw), 14px);
  }

  .link-btn2 a{
    font-size: clamp(14px, calc(15 / 375 * 100vw), 15px);
  }

  .link-btn2 a .icon{
    width: clamp(44px, calc(48 / 375 * 100vw), 48px);
    height: clamp(38px, calc(42 / 375 * 100vw), 42px);
  }
}

@media (hover: hover){
  .link-btn a:hover{
    color: var(--blue02);
    background-color: #fff;
    background-image: unset;
  }

  .link-btn a:hover::before{
    scale: 1;
    transform-origin: left center;
  }

  .link-btn2 a:hover{
    color: #fff;
  }

  .link-btn2 a:hover::before{
    scale: 1;
    transform-origin: left center;
    border-radius: var(--bd-radius);
  }

  .link-btn2 a:hover .icon{
    border-left-color: #fff;
  }

  a.img--anime:hover img{
    scale: 1.07;
  }
}

@media (hover: none){
  .link-btn a:active{
    color: var(--blue02);
    background-color: #fff;
    background-image: unset;
  }

  .link-btn a:active::before{
    scale: 1;
    transform-origin: left center;
  }


  .link-btn2 a:active{
    color: #fff;
  }

  .link-btn2 a:active::before{
    scale: 1;
    transform-origin: left center;
    border-radius: var(--bd-radius);
  }

  .link-btn2 a:active .icon{
    border-left-color: #fff;
  }

  a.img--anime:active img{
    scale: 1.07;
  }
}


/* ============================================================
  ブレークポイント
  .show-pc     : 1024px以上で表示（PCのみ表示）
  .show-tab    : 551px以上1023以下で表示（タブレットのみ表示）
  .show-sp     : 550px以下で表示（スマホのみ表示）
  .show-pc-tab : 551px以上で表示（スマホ非表示）
  .show-tab-sp : 1023px以下で表示（PC非表示）
============================================================ */

@media screen and (max-width: 767px){
  html{
    font-size: var(--size16);
  }

  .container,
  .l-container{
    width: 100%;
    padding: 0 clamp(15px, calc(20 / 768 * 100vw), 20px);
  }
}

@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: 1023px){
  .show-pc,
  .show-sp,
  .show-pc-sp{
    display: none;
  }
}

@media screen and (min-width: 768px){
  a[href*="tel:"]{
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media screen and (min-width: 1024px){
  .show-tab,
  .show-sp,
  .show-tab-sp{
    display: none;
  }
}


/* ========================================
  アニメーション
======================================== */
.js-fadein{
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-fadein.active{
  opacity: 1;
  transform: translateY(0);
}

.js-show{
  opacity: 0;
  transition: opacity .75s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-show--02{
  transition: opacity .75s cubic-bezier(0.215, 0.61, 0.355, 1) .15s;
}

.js-show--03{
  transition: opacity .75s cubic-bezier(0.215, 0.61, 0.355, 1) .6s;
}

.js-show.active{
  opacity: 1;
}


/* ========================================
  パンくずリスト
======================================== */
.breadcrumb{
  background: var(--bg-color);
  padding: clamp(6px, calc(10 / 1390 * 100vw), 10px);
}
.breadcrumb-list{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--size16);
}

.breadcrumb__item:last-child {
  font-weight: 700;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "＞";
  padding: 0 1em;
  color: var(--gray);
  font-weight: 400;
}

.breadcrumb__item span{
  color: var(--blue);
}

.breadcrumb__item a,
.breadcrumb__item a span {
  display: inline;
  color: var(--gray);
}

@media screen and (max-width: 767px){
  .breadcrumb__item + .breadcrumb__item::before {
    padding: 0 0.5em;
  }
}


/* ========================================
  MV
======================================== */
.mv{
  overflow-x: clip;
  overflow-y: unset;
}

.mv__wrapper{
  position: relative;
}

.mv__img{
  position: relative;
}

.mv__img::after{
  position: absolute;
  z-index: 2;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 1));
  opacity: .3;
}

.mv__img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mv-title{
  position: absolute;
  z-index: 3;
  top: var(--size16);
  left: 0;
  width: fit-content;
  height: auto;
  padding: clamp(10px, calc(12 / var(--content-width-large) * 100vw), 12px) clamp(28px, calc(48 / var(--content-width) * 100vw), 48px) clamp(10px, calc(12 / var(--content-width) * 100vw), 12px) clamp(12px, calc(60 / var(--content-width) * 100vw), 60px);
  background-image: linear-gradient(90deg, rgba(16, 46, 158, .9) 0%, rgba(16, 46, 158, .8) 70%, rgba(16, 46, 158, 0) 100%);
}

.mv-title__heading{
  color: #fff;
}

.mv-title__text{
  display: block;
}

.mv-title__text--ja{
  position: relative;
  font-size: var(--size24);
  padding-bottom: clamp(4px, calc(6 / var(--content-width-large) * 100vw), 6px);
  margin-bottom: clamp(6px, calc(8 / var(--content-width-large) * 100vw), 8px);
}

.mv-title__text--ja::after{
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  scale: 0 1;
  transform-origin: left center;
  transition: .5s ease-in-out .45s;
}

.mv-title__heading.js-show.active .mv-title__text--ja::after{
  scale: 1;
}

.mv-title__text--en{
  font-size: clamp(13px, calc(15 / var(--content-width-large) * 100vw), 15px);
}

.mv-copy{
  position: absolute;
  z-index: 3;
  bottom: clamp(16px, calc(30 / var(--content-width-large) * 100vw), 30px);
  left: clamp(12px, calc(60 / var(--content-width-large) * 100vw), 60px);
  max-width: 100%;
  padding-right: clamp(25px, calc(52 / var(--content-width-large) * 100vw), 52px);
  word-break: auto-phrase;
}

.mv-copy__text{
  display: inline-block;
  font-size: clamp(15px, calc(20 / var(--content-width-large) * 100vw), 20px);
  font-weight: 700;
  letter-spacing: 0.075em;
  color: var(--blue02);
  background: rgb(255 255 255 / .82);
  padding: clamp(2px, calc(4 / var(--content-width-large) * 100vw), 4px) clamp(6px, calc(8 / var(--content-width) * 100vw), 8px);
}

.mv-copy__heading{
  font-size: clamp(24px, calc(44 / var(--content-width-large) * 100vw), 44px);
  letter-spacing: 0.075em;
  line-height: 1.2;
  color: #fff;
  text-shadow: var(--text-shadow);
  margin-top: clamp(6px, calc(10 / var(--content-width-large) * 100vw), 10px);
}

.mv-copy__heading .ng-ml{
  margin-left: calc(clamp(4px, calc(8 / var(--content-width-large) * 100vw), 8px) * -1);
}

.mv-copy__heading--small,
.mv-copy__heading--large{
  display: inline-block;
}

.mv-copy__heading--small{
  font-size: clamp(18px, calc(32 / var(--content-width-large) * 100vw), 32px);
}

.mv-copy__heading--large{
  font-size: clamp(36px, calc(68 / var(--content-width-large) * 100vw), 68px);
}

.mv .treat-img{
  position: absolute;
  width: clamp(270px, calc(390 / 1600 * 100vw), 390px);
  right: -2.5%;
}

.js-img-anime{
  opacity: 0;
  visibility: hidden;
}

.js-img-anime.active{
  opacity: 1;
  visibility: visible;
}

.mv .treat-img--anime01{
  z-index: 3;
  top: 40%;
  transform: translateY(-50%);
  transition: all .6s var(--cb) .45s;
}

.mv .treat-img--anime02{
  z-index: 2;
  top: 105%;
  transform: translateY(-50%);
  filter: drop-shadow(0 8px 8px rgb(0 0 0 / .2));
  transition: all .6s var(--cb) .75s;
}

.mv .treat-img--anime01.active{
  top: 69%;
}

.mv .treat-img--anime02.active{
  top: 83%;
}



@media screen and (max-width: 767px){
  .mv__wrapper{
    margin-inline: calc(clamp(15px, calc(20 / 768 * 100vw), 20px) * -1);
  }

  .mv__img{
    min-height: 350px;
    height: 55vh;
  }

  .mv-title{
    left: 0;
  }
}

@media screen and (max-width: 1023px){
  .mv .treat-img{
    display: none;
  }
}


/* ========================================
  ３Ｄオフィスデザイナーの特徴
======================================== */
.features{
  margin-top: var(--size72);
  padding-bottom: var(--size72);
}

.features__list{
  counter-reset: num;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, calc(20 / var(--content-width) * 100vw), 20px);
  margin-top: var(--size24);
}

.features__item{
  counter-increment: num;
  background: #fff;
  border: solid 1px var(--bd-color);
  border-radius: var(--bd-radius);
}

.features__item:first-of-type{
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.features__item:nth-of-type(2){
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.features__item:nth-of-type(3){
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.features__item:last-of-type{
  grid-column: 1 / 4;
  grid-row: 2 / 3;
}

.features__sub-title{
  position: relative;
  font-size: clamp(16px, calc(18 / var(--content-width) * 100vw), 18px);
  padding: clamp(8px, calc(10 / var(--content-width) * 100vw), 10px) clamp(12px, calc(16 / var(--content-width) * 100vw), 16px) 5px clamp(38px, calc(50 / var(--content-width) * 100vw), 50px);
  border-bottom: solid 1px var(--bd-color);
}

.features__sub-title::before{
  position: absolute;
  content: counter(num, decimal-leading-zero);
  top: 50%;
  left: clamp(12px, calc(16 / var(--content-width) * 100vw), 16px);
  transform: translateY(-50%);
  font-size: clamp(16px, calc(18 / var(--content-width) * 100vw), 18px);
  font-weight: 700;
  color: var(--blue02);
}

.features__sub-title::after{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: clamp(38px, calc(46 / var(--content-width) * 100vw), 46px);
  height: 1px;
  background: var(--blue02);
}

.features__body{
  padding: clamp(12px, calc(16 / var(--content-width) * 100vw), 16px);
}

.features__img,
.features__video{
  border-radius: var(--bd-radius);
  overflow: hidden;
}

.features__img.bd{
  border: solid 1px var(--bd-color);
  padding: 3px;
}

.features__video video{
  aspect-ratio: 352 / 228;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.features__desc{
  margin-top: clamp(12px, calc(16 / var(--content-width) * 100vw), 16px);
}

.features-inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: clamp(12px, calc(15 / var(--content-width) * 100vw), 15px);
}

.features-inner + .features-inner{
  border-top: solid 1px var(--bd-color);
  margin-top: clamp(16px, calc(20 / var(--content-width) * 100vw), 20px);
  padding-top: clamp(16px, calc(20 / var(--content-width) * 100vw), 20px);
}

.features-inner__item{
  display: flex;
  flex-direction: column;
}

.features-inner__label{
  font-weight: 700;
  margin-bottom: clamp(6px, calc(8 / var(--content-width) * 100vw), 8px);
}

.features-inner__label::before{
  content: '■';
  margin-right: 0.25em;
}


@media screen and (min-width: 651px) and (max-width: 1023px){
  .features__list{
    grid-template-columns: repeat(2, 1fr);
  }

  .features__item:first-of-type{
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .features__item:nth-of-type(2){
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .features__item:nth-of-type(3){
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .features__item:last-of-type{
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }
}

@media screen and (max-width: 650px){
  .features__list{
    grid-template-columns: 1fr;

  }

  .features__item:first-of-type{
    grid-column: unset;
    grid-row: unset;
  }

  .features__item:nth-of-type(2){
    grid-column: unset;
    grid-row: unset;
  }

  .features__item:nth-of-type(3){
    grid-column: unset;
    grid-row: unset;
  }

  .features__item:last-of-type{
    grid-column: unset;
    grid-row: unset;
  }

  .features-inner{
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}


/* ========================================
  ラインナップ
======================================== */
.lineup{
  padding: var(--size72) 0;
}

.lineup .section-title__heading{
  margin-bottom: clamp(28px, calc(40 / var(--content-width) * 100vw), 40px);
}

.lineup .section__sub-title{
  margin-bottom: var(--size24);
}

.lineup-unit + .section__sub-title{
  margin-top: clamp(40px, calc(56 / var(--content-width) * 100vw), 56px);
}

.lineup-unit + .lineup-unit{
  margin-top: clamp(40px, calc(56 / var(--content-width) * 100vw), 56px);
  border-top: solid 1px var(--bd-color);
  padding-top: clamp(32px, calc(48 / var(--content-width) * 100vw), 48px);
}

.lineup-unit__top{
  display: grid;
  grid-template-areas:
    "thumb copy"
    "thumb ."
    "thumb logo"
    "thumb text"
    "thumb .";
  grid-template-columns: 1fr 2.7fr;
  column-gap: clamp(16px, calc(20 / var(--content-width) * 100vw), 20px);
}

.lineup-unit__thumb{
  grid-area: thumb;
  border-radius: var(--bd-radius);
  overflow: hidden;
}

.lineup-unit__copy{
  grid-area: copy;
  font-size: clamp(17px, calc(18 / var(--content-width) * 100vw), 18px);
  line-height: 1.4;
  background: var(--bg-color);
  height: fit-content;
  padding: clamp(8px, calc(10 / var(--content-width) * 100vw), 10px) clamp(10px, calc(12 / var(--content-width) * 100vw), 12px);
  border-radius: var(--bd-radius);
  word-break: auto-phrase;
}

.lineup-unit__logo{
  grid-area: logo;
  max-width: clamp(380px, calc(512 / var(--content-width) * 100vw), 512px);
  margin: clamp(14px, calc(20 / var(--content-width) * 100vw), 20px) 0;
}

.lineup-unit__text{
  grid-area: text;
  line-height: calc(24 / 16);
}

.spec-list{
  border-radius: var(--bd-radius);
  overflow: hidden;
  margin-top: clamp(16px, calc(20 / var(--content-width) * 100vw), 20px);
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr ;
}

.spec-list__item{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}

.spec-list__term,
.spec-list__desc{
  border-left-width: 1px;
  border-style: solid;
}

.spec-list__term{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--bk);
  font-weight: 700;
  text-align: center;
  padding: clamp(10px, calc(12 / var(--content-width) * 100vw), 12px) clamp(10px, calc(12 / var(--content-width) * 100vw), 12px);
  border-left-color: #fff;
  border-top: none;
  border-bottom: none;
}

.spec-list__item:first-of-type .spec-list__term{
  border-left: none;
}

.spec-list__desc{
  border-color: var(--bd-color);
  border-bottom-width: 1px;
  padding: clamp(10px, calc(12 / var(--content-width) * 100vw), 12px);
  line-height: 1.5;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spec-list__item:last-of-type .spec-list__desc{
  border-right-width: 1px;
}

.spec-list__list{
  list-style-type: disc;
  padding-left: 1.5em;
  margin-right: auto;
}

.spec-list__list-item{
  text-align: left;
}

.spec-list__list-item + .spec-list__list-item{
  margin-top: 0.2em;
}

.mark{
  display: block;
  width: var(--size32);
  border-style: solid;
  border-width: clamp(2px, calc(3 / var(--content-width) * 100vw), 3px);
  margin-inline: auto;
  border-radius: 100vmax;
}

.mark--good{
  border-color: var(--blue02);
  height: var(--size32);
}

.mark--none{
  border: none;
  background: var(--gray);
  height: 3px;
}

.lineup .link-btn2{
  margin-top: clamp(32px, calc(48 / var(--content-width) * 100vw), 48px);
}

@media screen and (max-width: 767px){
  .lineup-unit__top{
    display: block;
  }

  .lineup-unit__thumb{
    max-width: 260px;
    width: 90%;
    margin-inline: auto;
  }

  .lineup-unit__copy{
    margin-top: clamp(18px, calc(24 / var(--content-width) * 100vw), 24px);
  }

  .lineup-unit__logo{
    max-width: 350px;
    width: 90%;
    margin-inline: auto;
  }


  .spec-list,
  .spec-list__item{
    display: block;
  }

  .spec-list__term{
    border-width: 1px;
    border-color: var(--bk);
  }
  .spec-list__desc{
    border-right-width: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(14px, calc(18 / 768 * 100vw), 18px) clamp(12px, calc(16 / 768 * 100vw), 16px);
  }

  .spec-list__list{
    margin-right: unset;
  }
}

@media (hover: hover){
  .lineup-unit__logo a:hover{
    opacity: .6;
  }
}


/* ========================================
  導入事例・お役立ち情報
======================================== */
.case{
  padding: var(--size72) 0 clamp(24px, calc(36 / var(--content-width) * 100vw), 36px);
}

.useful{
  padding: clamp(24px, calc(36 / var(--content-width) * 100vw), 36px) 0 0;
}

.info-section__title{
  font-size: var(--size24);
  padding: clamp(8px, calc(10 / var(--content-width) * 100vw), 10px) clamp(16px, calc(20 / var(--content-width) * 100vw), 20px);
  border-left: solid clamp(3px, calc(4 / var(--content-width) * 100vw), 4px) var(--bk);
  background: #fff;
}

.info-section__list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, calc(20 / var(--content-width) * 100vw), 20px);
  margin-top: var(--size24);
}

.info-section__item{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 1;
}

.info-section__item a{
  display: grid;
  grid-template-areas:
    "thumb sub-title"
    "thumb desc"
    "thumb .";
  grid-template-columns: clamp(72px, calc(100 / var(--content-width) * 100vw), 100px) auto;
  background: #fff;
  padding: clamp(12px, calc(20 / var(--content-width) * 100vw), 20px);
  border: solid 1px var(--bd-color);
  border-radius: var(--bd-radius);
  column-gap: clamp(10px, calc(16 / var(--content-width) * 100vw), 16px);
  align-content: start;
}

.info-section__thumb{
  grid-area: thumb;
  border-radius: var(--bd-radius);
  overflow: hidden;
}

.info-section__sub-title{
  grid-area: sub-title;
  font-size: clamp(16px, calc(18 / var(--content-width) * 100vw), 18px);
  line-height: calc(23.4 / 18);
  word-break: auto-phrase;
  margin-bottom: clamp(10px, calc(12 / var(--content-width) * 100vw), 12px);
  transition: color .3s ease-in-out;
}

.info-section__sub-title .new{
  display: inline-block;
  font-size: calc(var(--size16) * 0.85);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  background: #c71010;
  margin-left: 0.5em;
  padding: 4px clamp(6px, calc(8 / var(--content-width) * 100vw), 8px) 3px;
  border-radius: var(--bd-radius);
  transform: translateY(-2px);
}

.info-section__desc{
  grid-area: desc;
  align-self: end;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 767px){
  .info-section__list{
    grid-template-columns: 1fr;
  }
}

@media (hover: hover){
  .info-section__item a:hover{
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
  }

  .info-section__item a:hover .info-section__sub-title{
    color: var(--blue02);
  }
}

@media (hover: none){
  .info-section__item a:active{
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
  }

  .info-section__item a:active .info-section__sub-title{
    color: var(--blue02);
  }
}


/* ========================================
  ユーザーサービス・サポート
======================================== */
.link-etc{
  margin-top: clamp(28px, calc(50 / var(--content-width) * 100vw), 50px);
  padding-bottom: var(--size72);
}

.link-etc__wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
}

.link-etc__title{
  font-size: clamp(16pxclamp(20px, calc(22 / var(--content-width-large) * 100vw), 22px), calc(20 / var(--content-width) * 100vw), 20px);
  margin-bottom: var(--size32);
}

.link-etc__box{
  padding: clamp(28px, calc(50 / var(--content-width) * 100vw), 50px) clamp(7px, calc(10 /var(--content-width-large) * 100vw), 10px);
}

.link-etc__box:first-of-type{
  padding-left: 0;
}

.link-etc__box + .link-etc__box{
  border-left: solid 1px var(--bd-color);
}

.link-etc__item + .link-etc__item{
  margin-top: clamp(20px, calc(22 / var(--content-width-large) * 100vw), 22px);
}

.link-etc__item a{
  font-weight: 700;
  text-decoration: underline;
  color: var(--blue02);
}

a.link-etc__bnr{
  max-width: 450px;
}

@media screen and (max-width: 767px){
  .link-etc__wrapper{
    display: block;
  }

  .link-etc__box{
    padding-left: 0;
  }

  .link-etc__box + .link-etc__box{
    border-top: solid 1px var(--bd-color);
    border-left: none;
  }

  .link-etc__list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: clamp(20px, calc(22 / var(--content-width-large) * 100vw), 22px);
  }

  .link-etc__item + .link-etc__item{
    margin-top: 0;
  }
}

@media (hover: hover){
  .link-etc__item a:hover{
    opacity: .7;
  }

  a.link-etc__bnr:hover{
    opacity: .7;
  }
}

@media (hover: none){
  .link-etc__item a:active{
    opacity: .7;
  }

  a.link-etc__bnr:active{
    opacity: .7;
  }
}