@charset "utf-8";

/* ========================================
  共通スタイル
======================================== */
:root{
  --bk: #333;
  --blue: #102e9e;
  --blue02: #1558d6;
  --gray: #9d9d9d;
  --bd-color: #e0e0e0;
  --bg-color: #f6f8fb;

  --grd-blue: linear-gradient(90deg, var(--blue) 0%, var(--blue02) 100%);
  --grd-blue2: linear-gradient(0deg, var(--blue) 0%, var(--blue02) 100%);


  --bd-radius: 3px;
  --bd-large-radius: 12px;
  --content-width: 1120;
  --content-width-large: 1390;

  --text-shadow: 0 0 6px rgba(0, 0, 0, .25);
  --shadow: 0 0 20px rgba(4, 0, 0, 0.06);
  --shadow-hover: 0 6px 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);
  --size18: clamp(16px, calc(18 / var(--content-width) * 100vw), 18px);
  --size24: clamp(17px, calc(24 / var(--content-width) * 100vw), 24px);
  --size28: clamp(20px, calc(28 / var(--content-width) * 100vw), 28px);
  --size32: clamp(24px, calc(32 / var(--content-width) * 100vw), 32px);
  --size36: clamp(26px, calc(36 / var(--content-width) * 100vw), 36px);
  --size40: clamp(32px, calc(40 / var(--content-width) * 100vw), 40px);
  --size56: clamp(40px, calc(56 / var(--content-width) * 100vw), 56px);
  --size72: clamp(48px, calc(72 / var(--content-width) * 100vw), 72px);
  --size88: clamp(52px, calc(88 / var(--content-width) * 100vw), 88px);
}

@media screen and (max-width: 374px){
  :root{
    --size16: calc(clamp(14px, calc(16 / 375 * 100vw), 16px) * 0.95);
  }
}

html {
  scroll-behavior: smooth;
}

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.025em;
  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 .15s 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;
}

.roboto-condensed{
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.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--medium{
  font-size: var(--size36);
}

.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);
}

.grd-text{
  background: var(--grd-blue2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flex-row{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: clamp(4px, calc(8 / var(--content-width-large) * 100vw), 8px);
}

.link-btn__wrapper{
  display: grid;
  gap: clamp(14px, calc(24 / var(--content-width-large) * 100vw), 24px);
  margin-top: clamp(24px, calc(32 / var(--content-width) * 100vw), 32px);
}

.link-btn{
  max-width: 265px;
  margin: clamp(24px, calc(32 / var(--content-width) * 100vw), 32px) auto 0;
}

.link-btn__wrapper .link-btn{
  max-width: unset;
  width: 100%;
  margin-top: 0;
}

.link-btn a{
  position: relative;
  color: #fff;
  background-color: var(--blue02);
  background-image: var(--grd-blue);
  font-size: clamp(16px, calc(20 / var(--content-width-large) * 100vw), 20px);
  font-weight: 700;
  text-align: center;
  padding: clamp(14px, calc(16 / var(--content-width-large) * 100vw), 16px);
  border-radius: 100vmax;
  border: solid 2px var(--blue02);
  overflow: hidden;
}

.link-btn.wh a{
  color: var(--blue02);
  background-color: #fff;
  background-image: unset;
  border-color: var(--blue02);
}

.link-btn a::before{
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 0%;
  height: 100%;
  translate: 0 -50%;
  background-color: #fff;
  background-image: unset;
  border-radius: 100vmax;
  transition: all .2s ease-in-out;
}

.link-btn.wh a::before{
  background-color: var(--blue02);
  background-image: var(--grd-blue);
  border-color: var(--blue02);
}

.link-btn a span{
  position: relative;
  z-index: 2;
  color: #fff;
  transition: color .2s ease-in-out;
}

.link-btn.wh a span{
  color: var(--blue02);
}

.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;
  background: #fff;
}

.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,
a.img--anime .thumb{
  overflow: hidden;
}

a.img--anime img{
  transition: scale .3s ease-in-out;
}

@media screen and (max-width: 1023px){
  .link-btn__wrapper .link-btn{
    max-width: 450px;
  }
}

@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.wh a:hover{
    color: var(--blue02);
    background-color: var(--blue02);
    background-image: var(--grd-blue);
  }

  .link-btn a:hover::before{
    width: 100%;
  }

  .link-btn a:hover span{
    color: var(--blue02);
  }

  .link-btn.wh a:hover span{
    color: #fff;
  }

  .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.wh a:active{
    color: var(--blue02);
    background-color: var(--blue02);
    background-image: var(--grd-blue);
  }

  .link-btn a:active::before{
    width: 100%;
  }

  .link-btn a:active span{
    color: var(--blue02);
  }

  .link-btn.wh a:active span{
    color: #fff;
  }

  .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,
.mv__wrapper{
  height: 68vh;
  min-height: 600px;
}

.mv{
  background: url(../img/top/od_mv.jpg) center 82% / cover no-repeat;
}

.mv__container{
  max-width: 1700px;
  width: 95%;
  margin-inline: auto;
}

.mv__wrapper{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px, calc(32/ var(--content-width-large) * 100vw), 32px) 0 clamp(20px, calc(40 / var(--content-width-large) * 100vw), 40px);
}

.mv-title{
  width: fit-content;
  height: auto;
  padding: clamp(10px, calc(12 / var(--content-width-large) * 100vw), 12px) clamp(28px, calc(48 / var(--content-width-large) * 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%);
  border-radius: var(--bd-radius);
}

.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) * 100vw), 15px);
}

.mv-copy{
  position: relative;
  z-index: 3;
  max-width: 100%;
  padding-right: clamp(25px, calc(52 / var(--content-width-large) * 100vw), 52px);
  word-break: auto-phrase;
}

.mv-copy__text{
  display: inline;
  font-size: clamp(15px, calc(20 / var(--content-width) * 100vw), 20px);
  font-weight: 700;
  letter-spacing: 0.075em;
  color: var(--blue02);
}

.grd-text{
  position: relative;
  z-index: 2;
  display: inline-block;
}

.mv-copy__heading{
  font-size: clamp(22px, calc(40 / var(--content-width) * 100vw), 40px);
  letter-spacing: 0.075em;
  line-height: 1;
  color: var(--blue02);
}

.mv-copy__heading .ng-ml{
  margin-left: calc(clamp(4px, calc(8 / var(--content-width-large) * 100vw), 8px) * -1);
}

.mv-copy__heading .grd-text{
  transform: translateY(calc(clamp(2px, calc(5 / var(--content-width-large) * 100vw), 5px) * -1));
}

.mv-copy__text--bg,
.mv-copy__heading--bg{
  display: inline-block;
  border-radius: var(--bd-radius);
  background: #fff;
  padding: clamp(4px, calc(6 / var(--content-width-large) * 100vw), 6px) clamp(12px, calc(16 / var(--content-width-large) * 100vw), 16px);
  line-height: 1;
}

.mv-copy__heading--small,
.mv-copy__heading--large{
  position: relative;
  z-index: 2;
}

.mv-copy__heading--small{
  font-size: clamp(17px, calc(32 / var(--content-width) * 100vw), 32px);
}

.mv-copy__heading--large{
  font-size: clamp(34px, calc(60 / var(--content-width) * 100vw), 60px);
}

.mv .treat-img{
  position: absolute;
  width: clamp(270px, calc(380 / 1600 * 100vw), 380px);
  right: 5%;
}

.js-img-anime{
  opacity: 0;
  visibility: hidden;
}

.js-img-anime.active{
  opacity: 1;
  visibility: visible;
}

.mv .treat-img--anime01{
  z-index: 3;
  top: 50%;
  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: 74%;
}

.mv .treat-img--anime02.active{
  top: 88%;
}


@media screen and (max-width: 767px){
  .mv,
  .mv__wrapper{
    min-height: 400px;
    height: 60vh;
  }

  .mv{
    background: url(../img/top/od_mv.jpg) center center / cover no-repeat;
  }

  .mv__container{
    width: 100%;
  }

  .mv-copy__text--bg,
  .mv-copy__heading--bg{
    padding: clamp(4px, calc(6 / 768 * 100vw), 6px) clamp(8px, calc(12 / 768 * 100vw), 12px) clamp(4px, calc(6 / 768 * 100vw), 6px) clamp(16px, calc(20 / 768 * 100vw), 20px);
  }
}

@media screen and (max-width: 1023px){
  .mv .treat-img{
    display: none;
  }
}


/* ========================================
  製品ラインナップ
======================================== */
.lineup{
  padding: var(--size72) 0 var(--size88);
}

.lineup__list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(16px, calc(26 / var(--content-width-large) * 100vw), 26px);
  margin-top: var(--size40);
}

.lineup__item a{
  background: #fff;
  border-radius: var(--bd-large-radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.lineup__copy{
  padding: var(--size16) clamp(18px, calc(32 / 1600 * 100vw), 32px);
}

.lineup__copy p{
  font-size: var(--size18);
  font-weight: 700;
  text-align: center;
}

.lineup__body{
  padding: clamp(16px, calc(20 / var(--content-width) * 100vw), 20px) clamp(18px, calc(32 / 1600 * 100vw), 32px) var(--size36);
}

.lineup__name{
  font-size: var(--size18);
  color: var(--blue02);
  height: 2em;
}

.lineup__link-text{
  margin-top: clamp(1em, calc(1.5 / var(--content-width-large) * 100vw), 1.5em);
  text-align: right;
}

.lineup__link-text p{
  position: relative;
  display: inline-block;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 1em;
}

.lineup__link-text p::before{
  position: absolute;
  left: 0;
  content: '\f0da';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 700;
}

.lineup__link-text p::after{
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: dotted 2px var(--bk);
}


@media (hover: hover){
  .lineup__item a:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
  }
}

@media screen and (max-width: 650px){
  .lineup__list{
    grid-template-columns: 1fr;
  }

  .lineup__copy,
  .lineup__body{
    padding-left: clamp(16px, calc(24 / 650 * 100vw), 24px);
    padding-right: clamp(16px, calc(24 / 650 * 100vw), 24px);
  }

  .lineup__name{
    height: unset;
  }
}


/* ========================================
  ３Ｄオフィスデザイナーの特徴
======================================== */
.features{
  padding: var(--size72) 0 var(--size88);
}

.features__list{
  counter-reset: num;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(16px, calc(26 / var(--content-width-large) * 100vw), 26px);
  margin-top: var(--size40);
}

.features__item{
  counter-increment: num;
  background: #fff;
  border-radius: var(--bd-large-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.features__item::before{
  position: absolute;
  content: counter(num, decimal-leading-zero);
  top: 0;
  left: 0;
  font-size: clamp(18px, calc(22 / var(--content-width) * 100vw), 22px);
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, calc(52 / var(--content-width) * 100vw), 52px);
  height: clamp(44px, calc(52 / var(--content-width) * 100vw), 52px);
  color: #fff;
  background: var(--blue02);
  border-top-left-radius: var(--bd-large-radius);
  border-bottom-right-radius: var(--bd-large-radius);
}

.features__img.bd{
  border-bottom: solid 1px var(--bd-color);
  padding: 3px;
}

.features__video video{
  aspect-ratio: 352 / 228;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.features__body{
  padding: clamp(16px, calc(20 / var(--content-width) * 100vw), 20px) clamp(18px, calc(32 / 1600 * 100vw), 32px) var(--size32);
}

.features__sub-title{
  font-size: clamp(18px, calc(20 / var(--content-width) * 100vw), 20px);
  line-height: 1.4;
}

.features__sub-title .large{
  font-size: 1.4em;
  color: var(--blue02);
}

.features__sub-title .small{
  font-size: 0.8em;
}

.features__desc{
  font-size: clamp(15px, calc(17 / var(--content-width) * 100vw), 17px);
  margin-top: clamp(12px, calc(15 / var(--content-width) * 100vw), 15px);
}

@media screen and (max-width: 650px){
  .features__list{
    grid-template-columns: 1fr;
  }
}


/* ========================================
  ３Ｄパース出力サンプル
======================================== */
.sample{
  padding: var(--size72) 0 var(--size88);
}

.sample__swiper{
  margin-top: var(--size40);
  padding-bottom: clamp(46px, calc(56 / var(--content-width) * 100vw), 56px);
}

.sample .sample-slide{
  position: relative;
  border-radius: var(--bd-large-radius);
  overflow: hidden;
  aspect-ratio: 850 / 546;
  scale: .9;
  transition: all .7s ease-in-out;
}

.sample .swiper-slide-active{
  scale: 1;
  z-index: 1;
  box-shadow: var(--shadow-hover);
}

.sample .sample-slide__desc{
  position: absolute;
  z-index: 2;
  content: '';
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / .6);
  top: 0;
  left: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, calc(20 / var(--content-width) * 100vw), 20px);
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: all .15s ease-in-out;
}

.sample .sample-slide__desc p{
  opacity: 0;
  visibility: hidden;
  transition: all .15s ease-in-out .15s;
}

.swiper-pagination-bullet{
  background: var(--blue02);
  width: clamp(10px, calc(12 / var(--content-width) * 100vw), 12px);
  height: clamp(10px, calc(12 / var(--content-width) * 100vw), 12px);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 clamp(4px, calc(5 / var(--content-width) * 100vw), 5px);
}

.sample__title{
  margin-top: var(--size56);
  font-size: var(--size28);
  text-align: center;
}

.link-btn__wrapper.column3{
  grid-template-columns: repeat(3, 1fr);
}

.link-btn__wrapper.column3 .link-btn a span::before{
  content: none;
}

@media (hover: hover){
  .sample .swiper-slide:hover .sample-slide__desc,
  .sample .swiper-slide:hover .sample-slide__desc p{
    opacity: 1;
    visibility: visible;
  }
}

@media (hover: none){
  .sample .swiper-slide:active .sample-slide__desc,
  .sample .swiper-slide:active .sample-slide__desc p{
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 1023px){
  .link-btn__wrapper.column3{
    grid-template-columns: 1fr;
  }
}



/* ========================================
  オフィス規模・担当部門別 製品比較表
======================================== */
.compare{
  padding: var(--size72) 0;
}

.compare .section-title__heading{
  margin-bottom: clamp(28px, calc(40 / var(--content-width) * 100vw), 40px);
}

.compare .section__sub-title{
  margin-bottom: var(--size24);
}

.compare__box + .compare__box{
  margin-top: clamp(40px, calc(56 / var(--content-width) * 100vw), 56px);
}

.compare__box#od11_proex + .compare__box#od10_pro{
  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);
}

.compare-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);
}

.compare-unit__thumb{
  grid-area: thumb;
  border-radius: var(--bd-radius);
  overflow: hidden;
}

.compare-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;
}

.compare-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;
}

.compare-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;
}

.compare .link-btn__wrapper{
  grid-template-columns: repeat(2, 1fr);
  max-width: 650px;
  margin-inline: auto;
}

.compare .link-btn2{
  margin-top: clamp(32px, calc(48 / var(--content-width) * 100vw), 48px);
}

@media screen and (max-width: 767px){
  .compare-unit__top{
    display: block;
  }

  .compare-unit__thumb{
    max-width: 260px;
    width: 90%;
    margin-inline: auto;
  }

  .compare-unit__copy{
    margin-top: clamp(18px, calc(24 / var(--content-width) * 100vw), 24px);
  }

  .compare-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){
  .compare-unit__logo a:hover{
    opacity: .6;
  }
}


/* ========================================
  ユーザー事例
======================================== */
.case{
  padding: var(--size72) 0 clamp(26px, calc(44 / var(--content-width) * 100vw), 44px);
}

.case__swiper{
  margin-top: var(--size40);
}

.case-slide{
  position: relative;
  height: auto;
}

.case-slide a{
  background: #fff;
  box-shadow: var(--shadow);
  height: 100%;
  overflow: hidden;
  border-radius: var(--bd-large-radius);
}

.case__body{
  padding: clamp(16px, calc(20 / var(--content-width) * 100vw), 20px) clamp(18px, calc(32 / 1600 * 100vw), 32px) var(--size36);
}

.case__company-name{
  font-size: clamp(16px, calc(20 / var(--content-width) * 100vw), 20px);
  font-weight: 700;
  line-height: calc(28 / 20);
  color: var(--blue02);
}

.case__body p{
  font-size: clamp(15px, calc(17 / var(--content-width) * 100vw), 17px);
}

.case__name{
  color: var(--blue02);
  margin-top: 0.5em;
}

.case__desc{
  margin-top: 1em;
}

.case .link-btn2{
  margin-top: clamp(24px, calc(48 / var(--content-width) * 100vw), 48px);
}

@media (hover: hover) and (min-width: 1024px){
  .case-slide a:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
  }
}

@media screen and (max-width: 1023px){
  .case .l-container{
    padding: 0;
    width: 100%;
    max-width: unset;
  }

  .case__swiper{
    padding-bottom: clamp(46px, calc(56 / var(--content-width) * 100vw), 56px);
  }

  .case .swiper-slide{
    scale: .9;
    transition: all .7s ease-in-out;
  }

  .case .swiper-slide-active{
    scale: 1;
    z-index: 1;
  }
}

@media screen and (min-width: 1024px){
  .case .swiper{
    overflow: unset;
  }

  .case .swiper-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, calc(26 / var(--content-width-large) * 100vw), 26px);
  }

  .case .swiper-pagination{
    display: none;
  }
}


/* ========================================
  オフィス移転 活用事例
======================================== */
.use{
  padding: clamp(30px, calc(56 / var(--content-width) * 100vw), 56px) 0 var(--size72);
}

.use__list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, calc(26 / var(--content-width-large) * 100vw), 26px);
  margin-top: var(--size40);
}

.use-item a{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: #fff;
  border-radius: var(--bd-large-radius);
  box-shadow: var(--shadow);
  height: 100%;
  overflow: hidden;
}

.use-item__thumb img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.use-item__body{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--size18) clamp(16px, calc(32 / 1600 * 100vw), 32px) var(--size18) clamp(16px, calc(24 / 1600 * 100vw), 24px);
}

.use-item__title{
  font-size: clamp(16px, calc(20 / var(--content-width) * 100vw), 20px);
  font-weight: 700;
  line-height: calc(28 / 20);
  color: var(--blue02);
}

.use-item__desc{
  margin-top: 1em;
  font-size: clamp(15px, calc(17 / var(--content-width) * 100vw), 17px);
}

@media screen and (max-width: 1023px){
  .use__list{
    grid-template-columns: 1fr;
    max-width: 700px;
    margin-inline: auto;
  }

  .use-item a{
    grid-template-columns: 1fr 1.5fr;
  }
}

@media screen and (max-width: 550px){
  .use-item a{
    grid-template-columns: 1fr;
  }
  .use-item__thumb{
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .use-item__body{
    padding: var(--size18) clamp(16px, calc(24 / 550 * 100vw), 24px) var(--size40);
  }
}

@media (hover: hover){
  .use-item a:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
  }
}


/* ========================================
  ユーザーサービス・サポート
======================================== */
.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: 1.2fr 1fr 1fr 1.4fr;
}

.link-etc__title{
  font-size: clamp(16px, calc(20 / var(--content-width) * 100vw), 20px);
  margin-bottom: var(--size32);
}

.link-etc__box{
  padding: clamp(28px, calc(50 / var(--content-width-large) * 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);
  word-break: auto-phrase;
}

a.link-etc__bnr{
  max-width: 450px;
}

@media screen and (max-width: 1023px){
  .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(200px, 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;
  }
}


/* ========================================
  ショップ追従ボタン
======================================== */
.fixed__shop-link{
  position: fixed;
  z-index: 100;
  bottom: 1.5rem;
  right: clamp(8px, calc(16 / var(--content-width) * 100vw), 16px);
  width: clamp(80px, calc(96 / var(--content-width) * 100vw), 96px);
  height: clamp(80px, calc(96 / var(--content-width) * 100vw), 96px);
  border: solid 1px var(--blue02);
  border-radius: 100vmax;
  box-shadow: var(--shadow);
  transition: scale .2s ease-in-out;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all .2s ease-in-out;
}
.fixed__shop-link.is-show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fixed__shop-link a{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  color: var(--blue02);
  font-size: clamp(13px, calc(15 / var(--content-width) * 100vw), 15px);
  font-weight: 700;
  text-align: center;
}

.fixed__shop-link .icon{
  font-size: clamp(17px, calc(20 / var(--content-width) * 100vw), 20px);
}

@media (hover: hover){
  .fixed__shop-link:hover{
    scale: 1.1;
  }
}