@charset "utf-8";

/*-----------------------------------------
共通パーツ
-------------------------------------------*/

/* ページネーション
------------------------------*/
.pagination {
  padding-top: min(70/1720 * 100vw, 70px);
  display: flex;
  justify-content: center;
  gap: min(10/1720 * 100vw, 10px);
}

.pagination .current_page {
  width: 60px;
  height: 60px;
  border: 1px solid var(--base-black);
  background: var(--base-black);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fontsize24);
  color: var(--base-white);
}

.pagination .link_page {
  width: 60px;
  height: 60px;
  border: 1px solid var(--base-black);
  background: var(--base-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fontsize24);
  color: var(--base-black);
}

@media screen and (max-width: 767px) {
  .pagination {
    padding-top: min(40/390 * 100vw, 40px);
    gap: min(10/390 * 100vw, 10px);
  }

  .pagination .current_page,
  .pagination .link_page {
    width: 30px;
    height: 30px;
    font-size: var(--fontsize16);
  }
}

/* パンくず
------------------------------*/
.breadcrumb {
  margin-bottom: min(80/1200 * 100vw, 80px);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb__item,
.breadcrumb__item a {
  position: relative;
  font-size: 1.7rem;
}

.breadcrumb__item a::after {
  content: "＞ ";
  font-size: 1.7rem;
  padding: 0 0.5em;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
  margin-bottom: 15px;
}
}

/* h2
----------------------------------------*/
.heading {
  display: flex;
  flex-direction: column;
  margin-bottom: min(60/1200 * 100vw, 60px);
}

.heading-jp {
  font-size: var(--fontsize70);
  font-weight: 800;
}

.heading-jp--small {
  font-size: var(--fontsize50);
  font-weight: 800;
}

.heading-jp--white {
  color: var(--base-white);
}

.heading-en {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 3px;
  font-size: var(--fontsize25);
  color: #5c5c5c;
  font-family:
    "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ ProN W3", "メイリオ",
    qwesans-serif;
}

.heading-en::before {
  content: "";
  margin-right: 10px;
  width: 15px;
  height: 1px;
  background: #5c5c5c;
}

.heading-en--white {
  color: var(--base-white);
}

.heading-en--white::before {
  background: var(--base-white);
}

@media screen and (max-width: 767px) {
  .heading-jp {
    font-size: var(--fontsize30);
  }

  .heading-jp--small {
    font-size: var(--fontsize22);
  }

  .heading-en {
    gap: 5px;
    font-size: 1.4rem;
  }

  heading-en::before {
    width: 8px;
  }
}

/* h3
----------------------------------------*/
.sub-heading {
  position: relative;
  padding-left: min(45/1720 * 100vw, 45px);
  font-size: var(--fontsize50);
  font-weight: 800;
  margin-bottom: min(85/1720 * 100vw, 85px);
}

.sub-heading::before {
  content: "";
  position: absolute;
  top: min(15/1720 * 100vw, 15px);
  left: 10px;
  height: min(45/1720 * 100vw, 45px);
  width: 2px;
  background: var(--base-black);
  transform: skewX(-20deg);
}

@media screen and (max-width: 767px) {
  .sub-heading {
    padding-left: min(25/390 * 100vw, 25px);
    font-size: var(--fontsize26);
    margin-bottom: min(15/390 * 100vw, 15px);
  }

  .sub-heading::before {
    top: 8px;
    height: 30px;
  }
}

/* h4
----------------------------------------*/
.small-heading {
  font-size: var(--fontsize36);
  font-weight: 600;
  border-bottom: 1px solid var(--base-black);
  padding-bottom: 25px;
  margin-bottom: min(45/1720 * 100vw, 45px);
}
@media screen and (max-width: 767px) {
  .small-heading {
    font-size: var(--fontsize24);
    padding-bottom: 10px;
    margin-bottom: min(25/390 * 100vw, 25px);
  }
}

/* ボタン
----------------------------------------*/

.link-btn a {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: min(20/1200 * 100vw, 20px) 30px;
  max-width: 465px;
  width: 100%;
  font-size: var(--fontsize20);
  color: var(--base-black);
  border-radius: 50px;
  border: 1px solid var(--base-black);
  background: url(../../img/common/btn-black-right-arw.png) no-repeat;
  background-size: 12px 9px;
  background-position: right 20px top 50%;
  transition: all 0.3s;
}

.link-btn a:hover {
  opacity: 1;
  background: url(../../img/common/btn-white-right-arw.png) no-repeat;
  background-size: 12px 9px;
  background-position: right 20px top 50%;
  background-color: var(--base-black);
  color: var(--base-white);
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  #resolution .promotion__link a {
    padding: min(10/390 * 100vw, 10px) 30px;
    width: 100%;
    font-size: var(--fontsize20);
  }
}

/* faq
----------------------------------------*/
.faq__list {
  display: flex;
  flex-direction: column;
  gap: min(40/1720 * 100vw, 40px);
}

.faq__item {
  background: var(--base-white);
  border-radius: 15px;
  padding: min(30/1720 * 100vw, 30px);
}

.faq__question {
  position: relative;
  padding: 0 0 25px min(75/1720 * 100vw, 75px);
  font-size: var(--fontsize30);
  font-weight: 800;
  border-bottom: 1px solid #d6d6d6;
}

.faq__question::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../img/common/question-icon.png) no-repeat center;
  background-size: min(52/1720 * 100vw, 52px) min(40/1720 * 100vw, 40px);
  width: min(52/1720 * 100vw, 52px);
  height: min(40/1720 * 100vw, 40px);
}

.faq__answer {
  position: relative;
  font-size: var(--fontsize24);
  padding-top: 15px;
  padding-left: min(75/1720 * 100vw, 75px);
  line-height: 1.8;
}

.faq__answer::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  background: url(../../img/common/answer-icon.png) no-repeat center;
  background-size: min(52/1720 * 100vw, 52px) min(38/1720 * 100vw, 38px);
  width: min(52/1720 * 100vw, 52px);
  height: min(38/1720 * 100vw, 38px);
}

@media screen and (max-width: 767px) {
  .faq__list {
    gap: min(20/390 * 100vw, 20px);
  }

  .faq__item {
    border-radius: 10px;
    padding: min(20/390 * 100vw, 20px) min(10/390 * 100vw, 10px);
  }

  .faq__question {
    padding: 0 0 10px min(50/390 * 100vw, 50px);
    font-size: var(--fontsize20);
  }

  .faq__question::after {
    background-size: min(40/390 * 100vw, 40px) min(30/390 * 100vw, 30px);
    width: min(40/390 * 100vw, 40px);
    height: min(30/390 * 100vw, 30px);
  }

  .faq__answer {
    font-size: var(--fontsize16);
    padding-top: 15px;
    padding-left: min(50/390 * 100vw, 50px);
  }

  .faq__answer::after {
    background-size: min(42/390 * 100vw, 42px) min(28/390 * 100vw, 28px);
    width: min(42/390 * 100vw, 42px);
    height: min(28/390 * 100vw, 28px);
  }
}

/* other
-------------------------------- */
.other {
  position: relative;
  padding-bottom: min(100/1720 * 100vw, 100px);
  margin-bottom: min(190/1720 * 100vw, 190px);
}

.other__box {
  position: relative;
  width: min(1140/1720 * 100vw, 1140px);
  padding: min(90/1720 * 100vw, 90px) min(120/1720 * 100vw, 120px)
    min(60/1720 * 100vw, 60px) 0;
  background: var(--base-white);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.other__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  background: var(--base-white);
  z-index: 1;
}

/* 見出し */
.other__heading {
  position: relative;
  font-size: var(--fontsize40);
  font-weight: 800;
  padding-left: min(275/1720 * 100vw, 275px);
  margin-bottom: min(75/1720 * 100vw, 75px);
  z-index: 5;
}

.other__heading::before {
  content: "";
  position: absolute;
  top: calc(-1 * min(100/1720 * 100vw, 100px));
  left: 0;
  background: url(../../img/page/website/other-illust.webp) no-repeat;
  background-size: min(237/1720 * 100vw, 237px) min(166/1720 * 100vw, 166px);
  width: min(237/1720 * 100vw, 237px);
  height: min(166/1720 * 100vw, 166px);
}

.other-reverse__heading {
  position: relative;
  font-size: var(--fontsize40);
  font-weight: 800;
  margin-bottom: min(45 / 1720 * 100vw, 45px);
}

.other__box p {
  position: relative;
  word-break: break-all;
  font-size: var(--fontsize24);
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: min(60/1720 * 100vw, 60px);
  z-index: 5;
}

/* リンクボタン */
.other__link {
  position: relative;
  z-index: 5;
}

.other__link a {
  display: inline-flex;
  align-items: center;
  font-size: var(--fontsize20);
  padding: min(20/1720 * 100vw, 20px) min(18/1720 * 100vw, 18px)
    min(20/1720 * 100vw, 20px) min(48/1720 * 100vw, 48px);
  border: 1px solid var(--base-black);
  border-radius: 50px;
  transition: all 0.3s;
}

.other__link a:hover {
  opacity: 1;
  background: var(--base-black);
  color: var(--base-white);
}

.other__link a::after {
  content: "";
  display: block;
  background: url(../../img/common/btn-black-right-arw.png) no-repeat center;
  background-size: 16px 9px;
  background-position: right;
  width: 16px;
  height: 9px;
  padding-left: min(40/1720 * 100vw, 40px);
  transition: all 0.3s;
}

.other__link a:hover::after {
  background: url(../../img/common/btn-white-right-arw.png) no-repeat center;
  background-position: right;
  background-size: 16px 9px;
  transition: all 0.3s;
}

/* 画像 */
.other__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 37%;
  max-width: 807px;
}

@media screen and (max-width: 767px) {
  .other {
    padding-top: min(180/390 * 100vw, 180px);
    padding-bottom: 0;
    margin-bottom: min(50/390 * 100vw, 50px);
  }

  .other__img {
    top: 0px;
    width: 75%;
    max-width: 280px;
    z-index: 5;
  }

  .other__box {
    width: 100%;
    padding: min(20/390 * 100vw, 20px) min(10/390 * 100vw, 10px)
      min(20/390 * 100vw, 20px) 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .other__heading {
    font-size: var(--fontsize20);
    padding-left: min(245 / 1720 * 100vw, 245px);
  }

  .other__box p {
    font-size: var(--fontsize16);
    margin-bottom: min(30/390 * 100vw, 30px);
  }

  .other__link a {
    font-size: var(--fontsize18);
    padding: min(10/390 * 100vw, 10px) min(18/390 * 100vw, 18px)
      min(10/390 * 100vw, 10px) min(48/390 * 100vw, 48px);
  }
}

/* ホームペーリスト
-------------------------------- */
.website__list {
  display: flex;
  flex-direction: column;
  gap: min(50/1720 * 100vw, 50px);
  padding-bottom: min(150/1720 * 100vw, 150px);
}

.website__item {
  display: grid;
  grid-template-columns: 1fr min(600/1720 * 100vw, 600px);
  gap: min(50/1720 * 100vw, 50px);
}

/* リストタイトル */
.website__item-title {
  display: flex;
  align-items: baseline;
  font-size: var(--fontsize40);
  font-weight: 800;
  margin-bottom: min(30/1720 * 100vw, 30px);
  gap: min(15/1720 * 100vw, 15px);
  letter-spacing: 0.025em;
}

/* リスト番号 */
.website__item-number {
  font-family: century-gothic, sans-serif;
  font-size: var(--fontsize70);
  font-weight: 600;
  transform: skewX(-15deg);
  letter-spacing: 0.01em;
  color: var(--base-white);
  -webkit-text-stroke: 1px var(--base-black);
  flex-shrink: 0;
}

.website__item-txt p {
  font-size: var(--fontsize24);
  line-height: 1.8;
  letter-spacing: 0;
}

.website__img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 20px;
}

.website__img img {
  width: 100%;
  height: 100%;
}

.website__scroll {
  overflow: auto;
}

.website__scroll img {
  min-width: 770px;
}

/* リンクボタン */
.website__link {
  padding-top: min(55/1720 * 100vw, 55px);
}

.website__link a {
  display: inline-block;
  font-size: var(--fontsize22);
  font-weight: 600;
  padding: min(20/1720 * 100vw, 20px) min(70/1720 * 100vw, 70px);
  border: 1px solid var(--base-black);
  border-radius: 50px;
  background: url(../../img/common/btn-black-right-arw.png) no-repeat center;
  background-size: 16px 9px;
  background-position: top 50% right min(17/1720 * 100vw, 17px);
  transition: all 0.3s;
}

.website__link a:hover {
  opacity: 1;
  color: var(--base-white);
  background: url(../../img/common/btn-white-right-arw.png) no-repeat center;
  background-size: 16px 9px;
  background-position: top 50% right min(17/1720 * 100vw, 17px);
  background-color: var(--base-black);
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  .website__list {
    padding-bottom: min(50/390 * 100vw, 50px);
    gap: min(20 / 390 * 100vw, 20px);
  }

  .website__item {
    grid-template-columns: 1fr;
  }

  .website__item-title {
    font-size: var(--fontsize22);
    gap: 10px;
  }

  .website__item-number {
    font-size: var(--fontsize40);
  }

  .website__item-txt p {
    font-size: var(--fontsize16);
  }

  .website__img {
    border-radius: 10px;
  }

  .website__link a {
    font-size: var(--fontsize16);
    padding: min(10/390 * 100vw, 10px) min(50/390 * 100vw, 50px);
    background-position: top 50% right min(10/390 * 100vw, 10px);
  }

  .website__link a:hover {
    background-position: top 50% right min(10/390 * 100vw, 10px);
  }
}

/* お問い合わせ・資料請求
-------------------------------- */
.contact {
  background: url(../../img/page/website/contact-bg.png) no-repeat center;
  background-size: cover;
  margin-bottom: min(140/1720 * 100vw, 140px);
}

.contact__wrap {
  padding: min(80/1720 * 100vw, 80px) 0 min(110/1270 * 100vw, 110px);
}

.contact .heading,
.contact .heading-en {
  color: var(--base-white);
}

.contact .heading-en::before {
  background: var(--base-white);
}

.contact__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 min(95/1720 * 100vw, 95px);
  gap: min(50/1720 * 100vw, 50px);
}

.contact__box {
  background: var(--base-white);
  border-radius: 30px;
  display: grid;
  grid-template-columns: 25.4% 1fr;
  padding: min(30/1720 * 100vw, 30px) min(45/1720 * 100vw, 45px);
  align-items: center;
}

.contact__img {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--base-black);
  padding-right: min(30/1720 * 100vw, 30px);
  height: 100%;
  text-align: center;
}

.contact__txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: min(30 / 1720 * 100vw, 30px);
  gap: min(15/1720 * 100vw, 15px);
}

.contact__txt p {
  font-size: var(--fontsize19);
}

.contact__tel {
  display: flex;
  align-items: center;
  position: relative;
  font-size: var(--fontsize60);
  font-weight: 800;
  font-family: "century-gothic", sans-serif;
  white-space: nowrap;
  gap: min(10 / 1720 * 100vw, 10px);
}

.contact__tel::before {
  content: "";
  display: block;
  background: url(../../img/common/tel-icon.png) no-repeat center;
  background-size: min(38/1720 * 100vw, 38px) min(50/1720 * 100vw, 50px);
  width: min(38/1720 * 100vw, 38px);
  height: min(50/1720 * 100vw, 50px);
}

.contact__link a {
  display: inline-block;
  background: url(../../img/common/btn-white-right-arw.png) no-repeat center;
  background-size: 16px 9px;
  background-position: right 20px top 50%;
  padding: min(20/1720 * 100vw, 20px) min(85/1720 * 100vw, 85px);
  border-radius: 50px;
  border: 1px solid var(--base-black);
  background-color: var(--base-black);
  color: var(--base-white);
  font-size: var(--fontsize20);
  transition: all 0.3s;
}

.contact__link a:hover {
  opacity: 1;
  color: var(--base-black);
  background: url(../../img/common/btn-black-right-arw.png) no-repeat center;
  background-size: 16px 9px;
  background-position: right 20px top 50%;
  background-color: var(--base-white);
  transition: all 0.3s;
}

@media screen and (max-width: 1199px) {
  .contact__box {
    border-radius: 15px;
    grid-template-columns: 25.4% 1fr;
    padding: min(30/1720 * 100vw, 30px) min(25/1720 * 100vw, 25px);
  }
}

@media screen and (max-width: 767px) {
  .contact {
    margin-bottom: min(50/390 * 100vw, 50px);
  }

  .contact__wrap {
    padding: min(40/390 * 100vw, 40px) 0 min(50/390 * 100vw, 50px);
  }

  .contact__content {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }

  .contact__box {
    border-radius: 10px;
    grid-template-columns: 1fr;
    padding: min(15/390 * 100vw, 15px);
  }

  .contact__img {
    border-right: none;
    padding-right: 0;
    justify-content: center;
  }

  .contact__txt {
    padding-left: 0;
    padding-top: min(15 / 390 * 100vw, 15px);
  }

  .contact__tel {
    font-size: var(--fontsize30);
    gap: min(5 / 390 * 100vw, 5px);
  }

  .contact__tel::before {
    background-size: min(19/390 * 100vw, 19px) min(25/390 * 100vw, 25px);
    width: min(19/390 * 100vw, 19px);
    height: min(25/390 * 100vw, 25px);
  }

  .contact__txt p {
    font-size: 1.4rem;
  }

  .contact__link a {
    background-position: right 10px top 50%;
    padding: min(10/390 * 100vw, 10px) min(40/390 * 100vw, 40px);
    font-size: var(--fontsize16);
  }

  .contact__link a:hover {
    background-position: right 10px top 50%;
  }
}

/* aboutリスト
-----------------------------------*/
#advertising .about,
.deployment {
  background: url(../../img/page/advertising/about-bg.webp) no-repeat center;
  background-size: cover;
}

#advertising .about__wrap,
.deployment__wrap {
  padding: min(110/1720 * 100vw, 110px) 0 min(90/1720 * 100vw, 90px);
}

#advertising .about__list,
.deployment__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(35/1720 * 100vw, 35px) min(40/1720 * 100vw, 40px);
}

#advertising .about__item,
.deployment__item {
  width: 100%;
  height: min(400/1720 * 100vw, 400px);
  clip-path: polygon(
    min(30/1720 * 100vw, 30px) 0,
    100% 0,
    100% 100%,
    0 100%,
    0 min(30/1720 * 100vw, 30px)
  );
  background: black;
  padding: min(52/1720 * 100vw, 52px) min(28/1720 * 100vw, 28px);
  background: #272727;
}

#advertising .about__item--gray,
.deployment__item--gray {
  background: #3a3a3a;
}

#advertising .about__item h3,
.deployment__item h3 {
  position: relative;
  color: var(--base-white);
  font-size: var(--fontsize30);
  font-weight: 800;
  padding-left: min(35/1720 * 100vw, 35px);
  margin-bottom: min(25/1720 * 100vw, 25px);
  line-break: loose;
  letter-spacing: -0.07em;
}

#advertising .about__item h3::before,
.deployment__item h3::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid #7e7e7e;
  border-radius: 50%;
}

#advertising .about__item p,
.deployment__item p {
  font-size: var(--fontsize24);
  color: var(--base-white);
  line-height: 1.8;
  line-break: initial;
}

@media screen and (max-width: 767px) {
  #advertising .about__wrap,
  .deployment__wrap {
    padding: min(50/390 * 100vw, 50px) 0;
  }

  #advertising .about__list,
  .deployment__list {
    grid-template-columns: repeat(1, 1fr);
  }

  #advertising .about__item,
  .deployment__item {
    height: auto;
  }

  #advertising .about__item h3,
  .deployment__item h3 {
    font-size: var(--fontsize20);
    padding-left: min(15/390 * 100vw, 15px);
    margin-bottom: min(10/390 * 100vw, 10px);
  }

  #advertising .about__item h3::before,
  .deployment__item h3::before {
    top: 12px;
    width: 4px;
    height: 4px;
    border: 1px solid #7e7e7e;
  }

  #advertising .about__item p,
  .deployment__item p {
    font-size: var(--fontsize16);
  }

  #advertising .about__item--gray,
  .deployment__item--gray {
    background: #272727;
  }

  #advertising .about__item:nth-child(2n),
  .deployment__item:nth-child(2n) {
    background: #3a3a3a;
  }
}

/* アナウンサー紹介
-----------------------------------*/
.announce__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: min(50/1720 * 100vw, 50px) min(42/1720 * 100vw, 42px);
  margin-bottom: min(80/1720 * 100vw, 80px);
}

.announce__item {
  cursor: pointer;
}

.announce__item-img {
  position: relative;
  border: 1px solid #b7b7b7;
  background: var(--base-white);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: min(15/1720 * 100vw, 15px);
}

.announce__item-img img {
  width: 100%;
}

.announce__item-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../../img/page/announce/announce-link.png) no-repeat center;
  background-size: min(20/1720 * 100vw, 20px) min(21/1720 * 100vw, 21px);
  background-color: var(--base-black);
  width: min(35/1720 * 100vw, 35px);
  height: min(35/1720 * 100vw, 35px);
  border-top-left-radius: min(10/1720 * 100vw, 10px);
}

.announce__item-name {
  font-size: var(--fontsize30);
  font-weight: 600;
  text-align: center;
}

.announce__item-name span {
  font-size: var(--fontsize20);
}

@media screen and (max-width: 1199px) {
  .announce__list {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .announce__list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(20/390 * 100vw, 20px) min(15/390 * 100vw, 15px);
    margin-bottom: min(40/390 * 100vw, 40px);
  }

  .announce__item-name {
    font-size: var(--fontsize18);
  }

  .announce__item-name span {
    font-size: var(--fontsize14);
  }

  .announce__item-img::after {
    background-size: min(15/390 * 100vw, 15px) min(16/390 * 100vw, 16px);
    width: min(30/390 * 100vw, 30px);
    height: min(30/390 * 100vw, 30px);
    border-top-left-radius: min(10/1720 * 100vw, 10px);
  }
}

/* モーダル
-------------------------- */
.announce__modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
  overflow: auto;
}

.announce__modal.active {
  display: block;
}

.announce__scroll {
  overflow: auto;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.announce__modal-inner {
  position: relative;
  max-width: 1100px;
  width: 75%;
  margin: 80px auto;
  display: flex;
}

.announce__modal-inner .swiper-wrapper {
  padding-bottom: 130px;
}

.announce__modal-inner .swiper-slide {
  display: grid;
  grid-template-columns: min(24.1279vw, 415px) 1fr;
  gap: min(2.32558vw, 40px);
  background: rgb(255, 255, 255);
  padding: min(3.48837vw, 60px) min(4.06977vw, 70px) min(4.36047vw, 75px)
    min(3.48837vw, 60px);
  height: fit-content;
  border-radius: 20px;
}

/* 左画像 */
.announce__modal-left {
  text-align: center;
}

.announce__modal-left img {
  width: 100%;
  max-width: 415px;
  margin-inline: auto;
  border-radius: 10px;
}

/* 右テキスト */
.announce__modal-right {
  display: inline-flex;
  flex-direction: column;
  gap: 25px;
}

/* 名前 */
.announce__modal-name {
  display: flex;
  align-items: baseline;
  gap: min(25/1720 * 100vw, 25px);
  font-size: var(--fontsize45);
  font-weight: 600;
  line-height: 1;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--base-black);
}

.announce__modal-name span {
  font-size: var(--fontsize28);
  font-family:
    "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ ProN W3", "メイリオ",
    qwesans-serif;
}

/* 入社日 */
.announce__modal-date span {
  display: inline-block;
  font-size: var(--fontsize22);
  color: var(--base-white);
  background: #505050;
  border-radius: 5px;
  padding: 5px 20px;
}

.announce__modal-txt {
  font-size: var(--fontsize22);
  line-height: 1.8;
}

.announce__modal-list {
  font-size: var(--fontsize22);
  line-height: 1.8;
}

.announce__modal-list dt {
  font-weight: 800;
}

.announce__modal-list dd li {
  display: flex;
  align-items: baseline;
}

.announce__modal-list dd li::before {
  content: "・";
}

/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: calc(100% + min(60/1720 * 100vw, 60px));
  left: 50%;
  translate: -50%;
  padding: 20px 135px;
  border: 1px solid var(--base-black);
  border-radius: 50px;
  font-size: var(--fontsize20);
  background: var(--base-white);
}

/* 矢印位置（画像に寄せる） */
.announce__modal .swiper-button-prev {
  top: 420px;
  left: -40px;
  background: var(--base-black);
  border-radius: 50%;
  width: min(70 / 1720 * 100vw, 70px);
  height: min(70 / 1720 * 100vw, 70px);
  background: url(../../img/common/btn-white-right-arw.png) no-repeat center;
  background-color: var(--base-black);
  background-size: min(27/1720 * 100vw, 27px) min(20/1720 * 100vw, 20px);
  rotate: 180deg;
}

.announce__modal .swiper-button-prev::after {
  content: none;
}

.announce__modal .swiper-button-next {
  top: 420px;
  right: -40px;
  background: var(--base-black);
  border-radius: 50%;
  width: min(70 / 1720 * 100vw, 70px);
  height: min(70 / 1720 * 100vw, 70px);
  background: url(../../img/common/btn-white-right-arw.png) no-repeat center;
  background-color: var(--base-black);
  background-size: min(27/1720 * 100vw, 27px) min(20/1720 * 100vw, 20px);
}

.announce__modal .swiper-button-next::after {
  content: none;
}

.announce__modal {
  display: none;
}

.announce__modal.active {
  display: block;
}

@media screen and (max-width: 767px) {
  .announce__modal-inner {
    width: 85%;
    padding: 40px 20px;
  }

  .announce__modal-inner .swiper-slide {
    grid-template-columns: 1fr;
    gap: min(30/390 * 100vw, 30px);
  }

  .announce__modal-name {
    gap: min(25/1720 * 100vw, 25px);
    font-size: var(--fontsize24);
    padding-bottom: 10px;
  }

  .announce__modal-name span {
    font-size: var(--fontsize14);
  }

  .announce__modal-right {
    gap: 15px;
  }

  .announce__modal-date span {
    font-size: var(--fontsize16);
    padding: 3px 10px;
  }

  .announce__modal-txt {
    font-size: var(--fontsize16);
  }

  .announce__modal-list {
    font-size: var(--fontsize16);
  }

  .modal-close {
    padding: 9px 60px;
    font-size: var(--fontsize18);
    white-space: nowrap;
  }

  .announce__modal .swiper-button-prev {
    left: -25px;
    width: min(35 / 390 * 100vw, 35px);
    height: min(35 / 390 * 100vw, 35px);
    background-size: min(17/390 * 100vw, 17px) min(10/390 * 100vw, 10px);
  }

  .announce__modal .swiper-button-next {
    right: -25px;
    width: min(35 / 390 * 100vw, 35px);
    height: min(35 / 390 * 100vw, 35px);
    background-size: min(17/390 * 100vw, 17px) min(10/390 * 100vw, 10px);
  }
}

/*-----------------------------------------
下層ヘッダー
-------------------------------------------*/
.page-header {
  background: var(--base-black);
  margin-top: 150px;
  padding: min(200/1200 * 100vw, 200px) 0;
  margin-bottom: 30px;
}

.page-header__title-en {
  font-size: min(140/1720 * 100vw, 140px);
  font-family:
    "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ ProN W3", "メイリオ",
    qwesans-serif;
  font-weight: 600;
  color: var(--base-white);
}

.page-header__title-jp {
  position: relative;
  font-size: var(--fontsize28);
  font-weight: 600;
  padding-left: min(265/1720 * 100vw, 265px);
  color: var(--base-white);
}

.page-header__title-jp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: min(250/1720 * 100vw, 250px);
  height: 1px;
  background: var(--base-white);
}

@media screen and (max-width: 1199px) {
  .page-header {
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .page-header {
    margin-top: 80px;
    margin-bottom: 10px;
  }

  .page-header__title-jp {
    font-size: var(--fontsize20);
  }
}

/*-----------------------------------------
下層サブヘッダー
-------------------------------------------*/
.page-sub-header {
  position: relative;
  overflow: clip;
  padding: min(295/1720 * 100vw, 295px) 0 min(330/1720 * 100vw, 330px);
  background: var(--base-black);
  margin-top: 150px;
  margin-bottom: 30px;
}

.page-sub-header__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sub-header__title--large {
  text-align: center;
  font-size: var(--fontsize80);
  font-weight: 800;
  color: var(--base-white);
}

.page-sub-header__title--small {
  position: relative;
  padding: 0 min(135/1720 * 100vw, 135px);
  text-align: center;
  font-size: var(--fontsize40);
  font-weight: 600;
  color: var(--base-white);
}

.page-sub-header__title--small::before {
  content: "";
  background: url(../../img/common/header-decoration.webp) no-repeat center;
  background-size: min(129/1720 * 100vw, 129px) min(55/1720 * 100vw, 55px);
  width: min(129/1720 * 100vw, 129px);
  height: min(55/1720 * 100vw, 55px);
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}

.page-sub-header__title--small::after {
  content: "";
  background: url(../../img/common/header-decoration.webp) no-repeat center;
  background-size: min(129/1720 * 100vw, 129px) min(55/1720 * 100vw, 55px);
  width: min(129/1720 * 100vw, 129px);
  height: min(55/1720 * 100vw, 55px);
  rotate: 180deg;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}

.page-sub-header__title-en {
  position: absolute;
  bottom: 0;
  right: 0;
  color: initial;
  font-size: min(160/1720 * 100vw, 160px);
  line-height: 0.75;
  letter-spacing: 0.025em;
  font-family:
    "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ ProN W3", "メイリオ",
    sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px var(--base-white);
}

@media screen and (max-width: 1199px) {
  .page-sub-header {
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .page-sub-header {
    margin-top: 80px;
    margin-bottom: 10px;
  }

  .page-sub-header__title--large {
    font-size: var(--fontsize30);
  }

  .page-sub-header__title--small {
    font-size: var(--fontsize16);
  }
}

/*-----------------------------------------
お悩みを解決したい(resolution)
-------------------------------------------*/
#resolution .page-header {
  background: url(../../img/page/resolution/resolution-header.webp) no-repeat
    center;
  background-size: cover;
}

#resolution .search__wrap {
  margin-bottom: min(150/1200 * 100vw, 150px);
}

#resolution .search p {
  font-size: var(--fontsize40);
  font-weight: 800;
}

@media screen and (max-width: 767px) {
  #resolution .search__wrap {
    margin-bottom: min(40/390 * 100vw, 40px);
  }

  #resolution .search p {
    font-size: var(--fontsize24);
    font-weight: 800;
  }
}

/* プロモーションサポート
--------------------------------- */
#resolution .promotion {
  margin-bottom: min(120/1720 * 100vw, 120px);
}

#resolution .promotion:last-child {
  margin-bottom: 0;
}

#resolution .promotion__bg {
  position: relative;
  background-color: black;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: 5;
}

#resolution .promotion__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 102.5%;
  height: 100%;
  margin-right: calc(50% - 50vw);
  background: url(../../img/page/resolution/resolution-decoration.webp)
    no-repeat;
  z-index: 1;
border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

#resolution .promotion__bg::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  background: var(--base-black);
  z-index: -1;
}

#resolution .promotion__bg-txt {
  position: absolute;
  right: 0;
  top: -27px;
  color: var(--base-white);
  font-size: min(180/1720 * 100vw, 180px);
  font-weight: 800;
  font-family:
    "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ ProN W3", "メイリオ",
    qwesans-serif;
  text-align: right;
  line-height: 1;
  z-index: 4;
  opacity: 0.1;
  margin-right: calc(50% - 50vw);
}

#resolution .promotion__content {
  position: relative;
  padding: min(95/1720 * 100vw, 95px) 0 min(120/1720 * 100vw, 120px)
    min(80/1720 * 100vw, 80px);
  z-index: 5;
}

/* コンテンツタイトル */
#resolution .promotion__title {
  display: flex;
  align-items: baseline;
  font-size: var(--fontsize40);
  font-weight: 600;
  color: var(--base-white);
  margin-bottom: min(70/1720 * 100vw, 70px);
}

#resolution .promotion__title--en {
  font-size: var(--fontsize50);
  font-family: "century-gothic", sans-serif;
  text-shadow:
    1px 1px 0 var(--base-white),
    -1px -1px 0 var(--base-white),
    -1px 1px 0 var(--base-white),
    1px -1px 0 var(--base-white),
    1px 0 0 var(--base-white),
    -1px 0 0 var(--base-white),
    0 1px 0 var(--base-white),
    0 -1px 0 var(--base-white);
  transform: skewX(-15deg);
  color: initial;
  margin-right: 20px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

#resolution .promotion__number {
  font-size: var(--fontsize70);
  font-family: "century-gothic", sans-serif;
  text-shadow:
    1px 1px 0 var(--base-white),
    -1px -1px 0 var(--base-white),
    -1px 1px 0 var(--base-white),
    1px -1px 0 var(--base-white),
    1px 0 0 var(--base-white),
    -1px 0 0 var(--base-white),
    0 1px 0 var(--base-white),
    0 -1px 0 var(--base-white);
  transform: skewX(-15deg);
  letter-spacing: 0.01em;
  color: initial;
  margin-right: 30px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  #resolution .promotion__title {
    font-size: var(--fontsize24);
  }

  #resolution .promotion__title--en {
    font-size: var(--fontsize30);
    margin-right: 10px;
  }

  #resolution .promotion__number {
    font-size: var(--fontsize40);
    margin-right: 10px;
  }
}

/* コンテンツボックス */
#resolution .promotion__box {
  display: grid;
  grid-template-columns: 1fr min(600/1720 * 100vw, 600px);
  gap: min(85/1720 * 100vw, 85px);
}

#resolution .promotion__box--border {
  border-bottom: 1px solid var(--base-white);
  padding-bottom: min(80/1720 * 100vw, 80px);
  margin-bottom: min(105/1720 * 100vw, 105px);
}

@media screen and (max-width: 767px) {
  #resolution .promotion__box {
    grid-template-columns: 1fr;
  }

  #resolution .promotion__box--border {
    padding-bottom: min(30/390 * 100vw, 30px);
    margin-bottom: min(40/390 * 100vw, 40px);
  }
}

/* コンテンツかっこ */
#resolution .promotion__parentheses {
  position: relative;
  padding: min(35/1720 * 100vw, 35px) 10px min(35/1720 * 100vw, 35px)
    min(30/1720 * 100vw, 30px);
  margin-bottom: min(50/1720 * 100vw, 50px);
}

#resolution .promotion__parentheses--line1 {
  position: absolute;
  top: 0;
  left: 0;
  width: min(40/1720 * 100vw, 40px);
  height: 1px;
  background: var(--base-white);
}

#resolution .promotion__parentheses--line2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: min(180/1720 * 100vw, 180px);
  background: var(--base-white);
}

#resolution .promotion__parentheses--line3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(40/1720 * 100vw, 40px);
  height: 1px;
  background: var(--base-white);
}

#resolution .promotion__parentheses--line4 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: min(180/1720 * 100vw, 180px);
  background: var(--base-white);
}

@media screen and (max-width: 767px) {
  #resolution .promotion__parentheses {
    padding: min(10/390 * 100vw, 10px);
  }
}

/* コンテンツリスト */
#resolution .promotion__list li {
  position: relative;
  display: flex;
  align-items: baseline;
  font-size: var(--fontsize29);
  font-weight: 800;
  color: var(--base-white);
  line-height: 2;
  letter-spacing: 0.001em;
}

#resolution .promotion__list li::before {
  content: "";
    flex-shrink: 0;
  display: block;
  width: min(14/1720 * 100vw, 14px);
  height: min(14/1720 * 100vw, 14px);
  border: 2px solid var(--base-white);
  border-radius: 50%;
  margin-right: min(20/1720 * 100vw, 20px);
}

@media screen and (max-width: 767px) {
  #resolution .promotion__list li {
    font-size: var(--fontsize20);
  }
}

/* コンテンツテキスト */
#resolution .promotion__txt {
  font-size: var(--fontsize30);
  color: var(--base-white);
  margin-bottom: min(60/1720 * 100vw, 60px);
}

#resolution .promotion__txt--bold {
  font-weight: 800;
}

#resolution .promotion__link a {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: min(20/1200 * 100vw, 20px) 30px;
  max-width: 535px;
  width: 70%;
  font-size: var(--fontsize20);
  color: var(--base-white);
  border-radius: 50px;
  border: 1px solid var(--base-white);
  background: url(../../img/common/btn-white-right-arw.png) no-repeat;
  background-size: 12px 9px;
  background-position: right 20px top 50%;
  transition: all 0.3s;
}

#resolution .promotion__link a:hover {
  opacity: 1;
  background: url(../../img/common/btn-black-right-arw.png) no-repeat;
  background-size: 12px 9px;
  background-position: right 20px top 50%;
  background-color: var(--base-white);
  color: var(--base-black);
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  #resolution .promotion__txt {
    font-size: var(--fontsize20);
  }

  #resolution .promotion__link a {
    padding: min(10/390 * 100vw, 10px) 30px;
    width: 100%;
    font-size: var(--fontsize20);
  }
}

/* コンテンツ画像 */
#resolution .promotion__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 20px;
  border: 10px solid var(--base-white);
  background: var(--base-white);
}

#resolution .promotion__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  #resolution .promotion__right {
    order: 2;
  }

  #resolution .promotion__img {
    border-radius: 10px;
    border: 5px solid var(--base-white);
  }
}

/*-----------------------------------------
サービス紹介(service)
-------------------------------------------*/
#service .page-header {
  background: url(../../img/page/service/service-header.webp) no-repeat center;
  background-size: cover;
}

#service .service__heading-subtxt {
  font-size: var(--fontsize40);
  font-weight: 800;
  margin-bottom: min(150/1200 * 100vw, 150px);
}

@media screen and (max-width: 767px) {
  #service .service__heading-subtxt {
    margin-bottom: min(40/390 * 100vw, 40px);
    font-size: var(--fontsize24);
    font-weight: 800;
  }
}

/* サービスリスト */
#service .service__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(70/1720 * 100vw, 70px) min(40/1720 * 100vw, 40px);
}

#service .service__item a {
  display: block;
  padding: 10px;
  padding-bottom: 30px;
  background: var(--base-white);
  box-shadow: 0 0 20px 3px rgb(0, 0, 0, 0.2);
  border-radius: 20px;
  height: 100%;
}

#service .service__item-img {
  position: relative;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
  aspect-ratio: 38/29;
  margin-bottom: 25px;
}

#service .service__item-img::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 13px;
  width: 25px;
  height: 15px;
  background: url(../../img/common/btn-black-right-arw.png) no-repeat center;
  background-size: 11px 7px;
  background-color: var(--base-white);
  border-radius: 50px;
}

#service .service__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#service .service__title-en {
  display: flex;
  align-items: baseline;
  font-size: 1.8rem;
  font-family:
    "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ ProN W3", "メイリオ",
    sans-serif;
  color: var(--gray-700);
  padding: 0 15px;
}

#service .service__title-en::before {
  content: "";
  width: 4px;
  height: 4px;
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  margin-right: 5px;
  flex-shrink: 0;
translate: 0 -3px;
}

#service .service__title-jp {
  font-size: var(--fontsize30);
  font-weight: 800;
  color: #3b3b3b;
  padding: 0 15px;
  margin-bottom: 15px;
}

#service .service__item-txt {
  font-size: 1.8rem;
}

/* リンクボタン */
#service .service__link {
  padding-top: min(150/1720 * 100vw, 150px);
  display: flex;
  justify-content: center;
  gap: min(40/1720 * 100vw, 40px);
}

#service .service__link .link-btn {
  width: 100%;
}

#service .service__link .link-btn:first-child {
  text-align: right;
}

@media screen and (max-width: 1199px) {
  #service .service__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  #service .service__list {
    grid-template-columns: repeat(1, 1fr);
    gap: min(20/390 * 100vw, 20px) min(10/390 * 100vw, 10px);
  }

  #service .service__item a {
    border-radius: 10px;
    box-shadow: 0 0 5px 2px rgb(0, 0, 0, 0.2);
  }

  #service .service__item-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 10px;
  }

  #service.service__title-en {
    font-size: var(--fontsize14);
    padding: initial;
    align-items: baseline;
    word-break: break-all;
  }

  #service .service__title-jp {
    font-size: var(--fontsize20);
    padding: initial;
  }

  #service .service__item-txt {
    font-size: var(--fontsize16);
  }

  #service .service__link {
    flex-wrap: wrap;
    gap: min(30/390 * 100vw, 30px);
  }

  #service .service__link .link-btn {
    text-align: center;
  }

  #service .service__link .link-btn:first-child {
    text-align: center;
  }
}

/*-----------------------------------------
ホームページ制作(website)
-------------------------------------------*/
#website .page-sub-header {
  background: url(../../img/page/website/website-header.webp) no-repeat center;
  background-size: cover;
}

/* ホームページプラン
-------------------------------- */
#website .plan {
  background: var(--base-white);
  margin-bottom: min(120/1720 * 100vw, 120px);
}

#website .plan__wrap {
  padding: min(85/1720 * 100vw, 85px) 0 min(45/1720 * 100vw, 45px);
}

/* 見出し */
#website .plan__heading {
  position: relative;
  font-size: var(--fontsize40);
  font-weight: 600;
  padding-left: min(275/1720 * 100vw, 275px);
  margin-bottom: min(75/1720 * 100vw, 75px);
}

#website .plan__heading::before {
  content: "";
  position: absolute;
  top: calc(-1 * min(100/1720 * 100vw, 100px));
  left: 0;
  background: url(../../img/page/website/plan-illust.webp) no-repeat;
  background-size: min(237/1720 * 100vw, 237px) min(166/1720 * 100vw, 166px);
  width: min(237/1720 * 100vw, 237px);
  height: min(166/1720 * 100vw, 166px);
}

/* 料金表 */
#website .plan__price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(40/1720 * 100vw, 40px);
  margin-bottom: min(30/1720 * 100vw, 30px);
}

#website .plan__txt {
  font-size: var(--fontsize24);
}

#website .plan__txt--red {
  color: #cc0000;
  margin-bottom: min(70/1720 * 100vw, 70px);
}

/* 表 */
#website .plan__scroll {
  overflow: auto;
}

#website .plan__table {
  display: flex;
  flex-direction: column;
  gap: min(30/1720 * 100vw, 30px);
  margin-bottom: min(35/1720 * 100vw, 35px);
  min-width: 770px;
}

#website .plan__number-list {
  position: relative;
  display: flex;
  flex-direction: column;
  counter-reset: number;
  padding-left: 2.5em;
  font-size: var(--fontsize24);
  line-height: 1.8;
}
#website .plan__number {
  counter-increment: number;
}

#website .plan__number::before {
  content: "※" counter(number) "：";
  position: absolute;
  left: 0;
}

/* ４カラムカードテキスト
-------------------------------- */
#website .about {
  background: url(../../img/page/website/about-bg.webp) no-repeat center;
  background-size: cover;
}

#website .about__wrap {
  padding: min(100/1720 * 100vw, 100px) 0;
}

/* リスト一覧 */
#website .about__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(65/1720 * 100vw, 65px) 0;
}

#website .about__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
}

#website .about__item {
  text-align: center;
}

#website .about__item img {
  text-align: center;
  max-height: min(350/1720 * 100vw, 350px);
  width: auto;
}

#website .about__item p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-white);
  font-size: var(--fontsize30);
  font-weight: 600;
  text-align: center;
  margin-top: auto;
}

#website .about__item p::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border: 2px solid #7e7e7e;
  border-radius: 50%;
  margin-right: min(20/1720 * 100vw, 20px);
}

@media screen and (max-width: 767px) {
  #website .about__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(20 / 390 * 100vw, 20px) 5px;
  }

  #website .about__item img {
    max-height: min(115/390 * 100vw, 115px);
  }

  #website .about__item p {
    font-size: var(--fontsize16);
  }

  #website .about__item p::before {
    width: 3px;
    height: 3px;
    border: 1px solid #7e7e7e;
  }
}

@media screen and (max-width: 767px) {
  #website .plan {
    margin-bottom: min(50/390 * 100vw, 50px);
  }

  #website .plan__heading {
    font-size: var(--fontsize20);
    padding-left: min(245 / 1720 * 100vw, 245px);
  }

  #website .plan__price {
    grid-template-columns: repeat(1, 1fr);
  }

  #website .plan__txt {
    font-size: var(--fontsize18);
  }

  #website .plan__table {
    margin-bottom: 0;
  }

  #website .plan__scroll {
    margin-bottom: min(25/390 * 100vw, 25px);
  }

  #website .plan__number-list {
    font-size: var(--fontsize18);
  }
}

/* ホームページ実績
-------------------------------- */
#website .cases {
  position: relative;
  padding-top: min(170/1270 * 100vw, 170px);
  margin-bottom: min(120/1720 * 100vw, 120px);
}

#website .cases::after {
  content: "RESULTS";
  color: #5c5c5c;
  font-size: min(250/1720 * 100vw, 250px);
  font-weight: 800;
  font-family: "century-gothic", sans-serif;
  position: absolute;
  top: min(170/1720 * 100vw, 170px);
  left: 100%;
  white-space: nowrap;
  rotate: 90deg;
  transform-origin: top left;
  opacity: 0.09;
  line-height: 0.8;
  z-index: 1;
}

#website .cases__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(80/1720 * 100vw, 80px) 0;
  margin-bottom: min(70 / 1720 * 100vw, 70px);
}

#website .cases__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#website .cases__item-frame {
  position: relative;
}

#website .cases__item-frame > img {
  position: relative;
  z-index: 5;
}

#website .cases__item-screen {
  position: absolute;
  top: min(30/1790 * 100vw, 30px);
  left: min(95/1790 * 100vw, 95px);
  width: min(365/1790 * 100vw, 365px);
  height: min(242/1790 * 100vw, 242px);
  background: var(--base-white);
}

#website .cases__item-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#website .cases__item-text {
  display: flex;
  align-items: center;
  font-size: var(--fontsize30);
  font-weight: 600;
}

#website .cases__item-text::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border: 2px solid #7e7e7e;
  border-radius: 50%;
  margin-right: min(20/1720 * 100vw, 20px);
}

#website .cases__link {
  text-align: center;
}

#website .cases__link a {
  display: inline-flex;
  align-items: center;
  font-size: var(--fontsize20);
  padding: min(20/1720 * 100vw, 20px) min(18/1720 * 100vw, 18px)
    min(20/1720 * 100vw, 20px) min(48/1720 * 100vw, 48px);
  border: 1px solid var(--base-black);
  border-radius: 50px;
  transition: all 0.3s;
}

#website .cases__link a:hover {
  opacity: 1;
  background: var(--base-black);
  color: var(--base-white);
}

#website .cases__link a::after {
  content: "";
  display: block;
  background: url(../../img/common/btn-black-right-arw.png) no-repeat center;
  background-size: 16px 9px;
  width: 16px;
  height: 9px;
  padding-left: min(20/1720 * 100vw, 20px);
  transition: all 0.3s;
}

#website .cases__link a:hover::after {
  background: url(../../img/common/btn-white-right-arw.png) no-repeat center;
  background-size: 16px 9px;
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  #website .cases {
    padding-top: min(50/390 * 100vw, 50px);
    margin-bottom: min(50/390 * 100vw, 50px);
  }

  #website .cases__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(20/390 * 100vw, 20px) 5px;
    margin-bottom: min(40 / 390 * 100vw, 40px);
  }

  #website .cases__item-screen {
    top: 16px;
    left: 17%;
    width: 64%;
    height: 66%;
  }

  #website .cases__item-text {
    font-size: var(--fontsize16);
  }

  #website .cases__item-text::before {
    width: 3px;
    height: 3px;
    border: 1px solid #7e7e7e;
    margin-right: min(5/390 * 100vw, 5px);
  }

  #website .cases__link a {
    font-size: var(--fontsize16);
    padding: min(10/390 * 100vw, 10px) min(18/390 * 100vw, 18px)
      min(10/390 * 100vw, 10px) min(28/390 * 100vw, 28px);
  }
}

/*-----------------------------------------
広告出稿(advertising)
-------------------------------------------*/
#advertising .page-sub-header {
  background: url(../../img/page/advertising/header-bg.webp) no-repeat center;
  background-size: cover;
}

/* 料金体系
-----------------------------------*/
#advertising .price__wrap {
  padding-top: min(170/1720 * 100vw, 170px);
}

#advertising .price__content {
  margin-bottom: min(120/1720 * 100vw, 120px);
}

#advertising .price__text {
  margin-bottom: min(30/1720 * 100vw, 30px);
  font-size: var(--fontsize24);
  line-height: 1.8;
}

#advertising .price__text--small {
  font-size: var(--fontsize22);
}

#advertising .price__scroll {
  overflow: auto;
}

#advertising .price__img {
  margin-bottom: min(40/1720 * 100vw, 40px);
  min-width: 770px;
}

@media screen and (max-width: 767px) {
  #advertising .price__text {
    font-size: var(--fontsize20);
    line-height: 1.8;
  }

  #advertising .price__text--small {
    font-size: var(--fontsize18);
  }
}

/*-----------------------------------------
お問い合わせ（contact）
-------------------------------------------*/
#contact .page-header {
  background: url(../../img/page/contact/header-bg.webp) no-repeat center;
  background-size: cover;
}

#contact .layout__wrap {
  margin-bottom: min(170/1720 * 100vw, 170px);
}

#contact .layout__txt {
  font-size: var(--fontsize24);
  font-weight: 600;
  line-height: 1.8;
}

#contact .layout__txt--m-bottom {
  margin-bottom: min(60/1720 * 100vw, 60px);
}

#contact .layout__txt--small {
  font-size: var(--fontsize22);
  font-weight: 600;
  line-height: 1.8;
}

#contact .layout__txt--small a {
  font-weight: 600;
  border-bottom: 1px solid var(--base-black);
}

@media screen and (max-width: 767px) {
  #contact .layout__txt {
    font-size: var(--fontsize18);
  }

  #contact .layout__txt--small {
    font-size: var(--fontsize16);
  }
}

/* お電話からのお問い合わせ
-------------------------------------- */
#contact .call__wrap {
  margin-bottom: min(135/1720 * 100vw, 135px);
}

#contact .call__wrap p {
  font-size: var(--fontsize24);
  font-weight: 600;
  margin-bottom: min(50/1720 * 100vw, 50px);
  line-height: 1.8;
}

#contact .call__tel {
  position: relative;
  font-family: century-gothic, sans-serif;
  font-size: var(--fontsize60);
  font-weight: 800;
  padding-left: min(60/1720 * 100vw, 60px);
  letter-spacing: 0.003em;
}

#contact .call__tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: url(../../img/common/tel-icon.png) no-repeat center;
  background-size: min(38/1720 * 100vw, 38px) min(50/1720 * 100vw, 50px);
  width: min(38/1720 * 100vw, 38px);
  height: min(50/1720 * 100vw, 50px);
  translate: 0 -50%;
}

@media screen and (max-width: 767px) {
  #contact .call__wrap {
    margin-bottom: min(50/390 * 100vw, 50px);
  }

  #contact .call__wrap p {
    font-size: var(--fontsize18);
  }

  #contact .call__tel {
    font-size: var(--fontsize30);
    padding-left: min(25/390 * 100vw, 25px);
  }

  #contact .call__tel::before {
    background-size: min(19/390 * 100vw, 19px) min(25/390 * 100vw, 25px);
    width: min(19/390 * 100vw, 19px);
    height: min(25/390 * 100vw, 25px);
  }
}

/* フォーム
-------------------------------------- */
#contact .form__wrap > p {
  font-size: var(--fontsize24);
  font-weight: 600;
  margin-bottom: min(110/1720 * 100vw, 110px);
}

#contact .form__content {
  background: var(--base-white);
  padding: min(75/1720 * 100vw, 75px) min(175/1720 * 100vw, 175px)
    min(100/1720 * 100vw, 100px) min(140/1720 * 100vw, 140px);
}

@media screen and (max-width: 767px) {
  #contact .form__wrap > p {
    font-size: var(--fontsize18);
    margin-bottom: min(30/390 * 100vw, 30px);
  }

  #contact .form__content {
    padding: min(25/390 * 100vw, 25px) min(15/390 * 100vw, 15px);
  }
}

/* タイトル
------------------- */
#contact .form__content h3 {
  position: relative;
  font-size: var(--fontsize40);
  font-weight: 800;
  padding-bottom: min(45/1720 * 100vw, 45px);
  text-align: center;
  margin-bottom: min(90/1720 * 100vw, 90px);
}

#contact .form__content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: min(120/1720 * 100vw, 120px);
  height: 2px;
  background: var(--base-black);
}

@media screen and (max-width: 767px) {
  #contact .form__content h3 {
    font-size: var(--fontsize24);
  }

  #contact .form__content h3::after {
    width: min(60/390 * 100vw, 60px);
    height: 1px;
  }
}

#contact .form__box {
  display: grid;
  grid-template-columns: min(405/1600 * 100vw, 405px) 1fr;
  margin-bottom: min(30/1720 * 100vw, 30px);
}

#contact .form__box dt {
  text-align: right;
  font-size: var(--fontsize24);
  font-weight: 600;
  padding-right: min(30/1720 * 100vw, 30px);
  padding-top: min(15/1720 * 100vw, 15px);
}

#contact .form__box dt label {
  margin: 0;
  line-height: 1.8;
  margin-right: min(15/1720 * 100vw, 15px);
}

/* ラジオボタン一覧 */
#contact .form__radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px min(40/1720 * 100vw, 40px);
}

#contact .form__radio label {
  font-size: var(--fontsize20);
  font-weight: 600;
  margin: 0;
  line-height: 1.8;
}

/* 必須項目 */
#contact .form__box dt.required::after {
  content: "必須";
  display: inline-block;
  background: #ec0000;
  border-radius: 50px;
  padding: 0 7px;
  color: var(--base-white);
  font-size: var(--fontsize18);
}

/* 任意項目 */
#contact .form__box dt.any::after {
  content: "任意";
  display: inline-block;
  background: #777777;
  border-radius: 50px;
  padding: 0 7px;
  color: var(--base-white);
  font-size: var(--fontsize18);
}

@media screen and (max-width: 767px) {
  #contact .form__box {
    grid-template-columns: 1fr;
    margin-bottom: min(20/390 * 100vw, 20px);
  }

  #contact .form__box dt {
    text-align: left;
    font-size: var(--fontsize20);
    display: inline-flex;
    align-items: center;
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 5px;
  }

  #contact .form__radio {
    flex-direction: column;
    gap: 5px min(40/1720 * 100vw, 40px);
  }

  #contact .form__box dt.required::after,
  #contact .form__box dt.any::after {
    font-size: var(--fontsize14);
  }
}

/* input */
#contact .form__content input[type="text"],
#contact .form__content input[type="email"],
#contact .form__content input[type="number"] {
  height: min(78/1720 * 100vw, 78px);
  border-radius: 0;
  font-size: var(--fontsize24);
  padding-left: min(30/1720 * 100vw, 30px);
}

#contact .form__content textarea {
  border-radius: 0;
  font-size: var(--fontsize24);
  padding: min(25/1720 * 100vw, 25px) min(30/1720 * 100vw, 30px);
  height: min(410/1720 * 100vw, 410px);
}

@media screen and (max-width: 767px) {
  #contact .form__content input[type="text"],
  #contact .form__content input[type="email"],
  #contact .form__content input[type="number"] {
    height: min(40/390 * 100vw, 40px);
    font-size: var(--fontsize18);
  }

  #contact .form__content textarea {
    font-size: var(--fontsize18);
    height: min(200/390 * 100vw, 200px);
  }
}

/* チェックボックス */
#contact .form__check {
  display: block;
  font-size: var(--fontsize20);
  text-align: center;
  margin: 0;
  margin-top: min(70/1720 * 100vw, 70px);
  margin-bottom: min(18/1720 * 100vw, 18px);
  line-height: 1.8;
}

#contact .form__txt {
  font-size: var(--fontsize20);
  text-align: center;
  margin-bottom: min(45/1720 * 100vw, 45px);
}

#contact .form__txt a {
  border-bottom: 1px solid var(--base-black);
  padding-bottom: min(7/1720 * 100vw, 7px);
}

@media screen and (max-width: 767px) {
  #contact .form__check,
  #contact .form__txt {
    font-size: var(--fontsize18);
  }

  #contact .form__check {
    margin-bottom: min(10 / 390 * 100vw, 10px);
  }

  #contact .form__txt {
    margin-bottom: min(25 / 390 * 100vw, 25px);
  }
}

/* 送信ボタン */
#contact .form__link {
  display: block;
  width: min(460 / 1720 * 100vw, 460px);
  padding: min(20 / 1720 * 100vw, 20px) min(30 / 1720 * 100vw, 30px);
  border: 1px solid var(--base-black);
  border-radius: 50px;
  text-align: center;
  font-size: var(--fontsize20);
  margin: 0 auto;
  background: url(../../img/common/btn-black-right-arw.png) no-repeat center;
  background-size: 16px 9px;
  background-position: top 50% right 18px;
  transition: all 0.3s;
}

#contact .form__link:hover {
  color: var(--base-white);
  background: url(../../img/common/btn-white-right-arw.png) no-repeat center;
  background-size: 16px 9px;
  background-color: var(--base-black);
  background-position: top 50% right 18px;
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  #contact .form__link {
    width: min(300 / 390 * 100vw, 300px);
    padding: min(10 / 390 * 100vw, 10px) min(10 / 390 * 100vw, 10px);
  }
}

/*-----------------------------------------
法人向け CCN for BizNet  #internet
-------------------------------------------*/
#internet .page-sub-header {
  background: url(../../img/page/internet/internet-header.webp) no-repeat center;
  background-size: cover;
}

#internet .features {
  padding-top: min(135/1720 * 100vw, 135px);
}

/* 拠点間接続サービス
---------------------------- */
#internet .course {
  position: relative;
}

#internet .course::after {
  content: "COURSE";
  color: #5c5c5c;
  font-size: min(250/1720 * 100vw, 250px);
  font-weight: 800;
  font-family: "century-gothic", sans-serif;
  position: absolute;
  top: min(170/1720 * 100vw, 170px);
  left: 100%;
  white-space: nowrap;
  rotate: 90deg;
  transform-origin: top left;
  opacity: 0.09;
  line-height: 0.8;
  z-index: 1;
}

#internet .course__wrap > p {
  font-size: var(--fontsize20);
  margin-bottom: min(50/1720 * 100vw, 50px);
}

#internet .course__content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(80/1720 * 100vw, 80px) min(60/1720 * 100vw, 60px);
  margin-bottom: min(170/1720 * 100vw, 170px);
  z-index: 5;
}

#internet .course__wrap ul {
  display: flex;
  flex-direction: column;
}

#internet .course__box {
  display: flex;
  flex-direction: column;
}

#internet .course__box ul {
  margin-bottom: min(20/1720 * 100vw, 20px);
  line-height: 1.8;
  font-weight: 600;
}

#internet .course__box li {
  position: relative;
  display: flex;
  align-items: baseline;
  font-size: var(--fontsize20);
  font-weight: 600;
}

#internet .course__box li::before {
  flex-shrink: 0;
  content: "";
  width: min(9/1720 * 100vw, 9px);
  height: min(9/1720 * 100vw, 9px);
  border: 2px solid #7e7e7e;
  border-radius: 50%;
  margin-right: min(20/1720 * 100vw, 20px);
}

#internet .course__box p {
  font-size: var(--fontsize20);
  font-weight: 600;
  margin-bottom: min(25/1720 * 100vw, 25px);
  line-height: 1.8;
}

#internet .course__box img {
  margin-top: auto;
}

@media screen and (max-width: 767px) {
  #internet .course__content {
    grid-template-columns: repeat(1, 1fr);
    gap: min(20/390 * 100vw, 20px);
    margin-bottom: min(50/390 * 100vw, 50px);
  }

  #internet .course__wrap > p {
    font-size: var(--fontsize16);
  }

  #internet .course__box li {
    font-size: var(--fontsize16);
  }

  #internet .course__box li::before {
    width: min(7/390 * 100vw, 7px);
    height: min(7/390 * 100vw, 7px);
    border: 1px solid #7e7e7e;
    margin-right: min(10/1720 * 100vw, 10px);
  }

  #internet .course__box p {
    font-size: var(--fontsize16);
    margin-bottom: min(15/390 * 100vw, 15px);
  }
}

/* 料金体系
----------------------- */
#internet .course-price {
  margin-bottom: min(200/1720 * 100vw, 200px);
}

#internet .course-price__box {
  margin-bottom: min(70/1720 * 100vw, 70px);
}

#internet .course-price__scroll {
  overflow: auto;
}

#internet .course-price__scroll img {
  min-width: 770px;
  width: 100%;
}

/*-----------------------------------------
動画制作  #video
-------------------------------------------*/
#video .page-sub-header {
  background: url(../../img/page/video/video-header.webp) no-repeat center;
  background-size: cover;
}

#video .deployment__video-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: min(40/1720 * 100vw, 40px);
}

#video .deployment__video-list li {
  background: var(--base-white);
  width: 100%;
  height: min(312/1720 * 100vw, 312px);
  text-align: center;
  clip-path: polygon(
    min(30 / 1720 * 100vw, 30px) 0,
    100% 0,
    100% 100%,
    0 100%,
    0 min(30 / 1720 * 100vw, 30px)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: min(30/1720 * 100vw, 30px);
  padding: min(30/1720 * 100vw, 30px) 0;
}

#video .deployment__video-list li p {
  font-size: var(--fontsize30);
  font-weight: 800;
}

@media screen and (max-width: 1500px) {
  #video .deployment__video-list {
    grid-template-columns: repeat(4, 1fr);
  }

  #video .deployment__video-list li {
    height: auto;
  }
}

@media screen and (max-width: 1000px) {
  #video .deployment__video-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  #video .deployment__video-list {
    grid-template-columns: repeat(2, 1fr);
  }

  #video .deployment__video-list li {
    justify-content: center;
    padding: min(20/390 * 100vw, 20px) 0;
  }

  #video .deployment__video-list li img {
    max-width: 80%;
  }

  #video .deployment__video-list li p {
    font-size: var(--fontsize20);
  }
}

#video .cases {
  position: relative;
  padding-top: min(170 / 1270 * 100vw, 170px);
  margin-bottom: min(120 / 1720 * 100vw, 120px);
}

#video .cases::after {
  content: "RESULTS";
  color: #5c5c5c;
  font-size: min(250/1720 * 100vw, 250px);
  font-weight: 800;
  font-family: "century-gothic", sans-serif;
  position: absolute;
  top: min(170/1720 * 100vw, 170px);
  left: 100%;
  white-space: nowrap;
  rotate: 90deg;
  transform-origin: top left;
  opacity: 0.09;
  line-height: 0.8;
  z-index: 1;
}

#video .cases__video {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(70/1720 * 100vw, 70px) min(80/1720 * 100vw, 80px);
  margin-bottom: min(55 / 1720 * 100vw, 55px);
  z-index: 6;
}

#video .cases__btn {
  text-align: center;
}

#video .cases__video-box video,
#video .cases__video-box iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
}

#video .cases__video-box p {
  text-align: center;
  font-size: var(--fontsize20);
  padding-top: 15px;
}

@media screen and (max-width: 767px) {
  #video .cases__video {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: min(30 / 390 * 100vw, 30px);
  }
}

/* other
--------------------------------*/
#video .other {
  margin-bottom: 0;
}

#video .other-reverse {
  position: relative;
  margin-bottom: min(140/1720 * 100vw, 140px);
}

#video .other-reverse__wrap {
  padding-top: min(110/1720 * 100vw, 110px);
}

#video .other-reverse__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 37%;
  max-width: 807px;
  z-index: 5;
}

#video .other-reverse__box {
  position: relative;
  width: min(1130 / 1720 * 100vw, 1130px);
  padding: min(80 / 1720 * 100vw, 80px) 0 min(60 / 1720 * 100vw, 60px)
    min(180 / 1720 * 100vw, 180px);
  background: var(--base-white);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  margin-left: auto;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

#video .other-reverse__box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 50vw;
  height: 100%;
  margin-right: calc(50% - 50vw);
  background: var(--base-white);
  z-index: 1;
}

.other-reverse__heading {
  position: relative;
  font-size: var(--fontsize40);
  font-weight: 800;
  margin-bottom: min(45 / 1720 * 100vw, 45px);
  z-index: 5;
}

.other-reverse__box p {
  position: relative;
  word-break: break-all;
  font-size: var(--fontsize24);
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: min(60 / 1720 * 100vw, 60px);
  z-index: 5;
}

@media screen and (max-width: 767px) {
  #video .other {
    margin-bottom: 20px;
  }

  #video .other-reverse {
    padding-top: min(180/390 * 100vw, 180px);
    padding-bottom: 0;
    margin-bottom: min(50/390 * 100vw, 50px);
  }

  #video .other-reverse__wrap {
    padding-top: 0;
  }

  #video .other-reverse__box {
    width: 100%;
    padding: min(20/390 * 100vw, 20px) min(10/390 * 100vw, 10px)
      min(20/390 * 100vw, 20px) 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  #video .other-reverse__heading {
    font-size: var(--fontsize20);
  }

  #video .other-reverse__box p {
    font-size: var(--fontisze16);
    margin-bottom: min(30 / 390 * 100vw, 30px);
  }

  #video .other-reverse__img {
    top: 0px;
    width: 75%;
    max-width: 280px;
    z-index: 5;
  }
}

/*-----------------------------------------
防犯カメラ導入(security)
-------------------------------------------*/
#security .page-sub-header {
  background: url(../../img/page/video/video-header.webp) no-repeat center;
  background-size: cover;
}

/* 提供方法紹介
-------------------------------- */
.introduction {
  position: relative;
}

.introduction::after {
  content: "INTRODUCTION";
  color: #5c5c5c;
  font-size: min(250/1720 * 100vw, 250px);
  font-weight: 800;
  font-family: "century-gothic", sans-serif;
  position: absolute;
  top: min(120/1720 * 100vw, 120px);
  left: 100%;
  white-space: nowrap;
  rotate: 90deg;
  transform-origin: top left;
  opacity: 0.09;
  line-height: 0.8;
  z-index: 1;
}

.introduction__wrap {
  padding-top: min(130/1720 * 100vw, 130px);
  margin-bottom: min(130/1720 * 100vw, 130px);
}

.introduction__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: min(80/1720 * 100vw, 80px);
  margin-bottom: min(100/1720 * 100vw, 100px);
  z-index: 5;
}

.introduction__box {
  display: grid;
  grid-template-columns: min(400/1720 * 100vw, 400px) 1fr;
  gap: min(60/1720 * 100vw, 60px);
}

/* 画像 */
.introduction__box-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  background: #272727;
  border-radius: 20px;
}

.introduction__box-img img {
  max-height: 57%;
  max-width: 64%;
  width: auto;
  height: auto;
}

.introduction__box-txt p {
  font-size: var(--fontsize24);
  line-height: 1.8;
}

/* 料金表 */
#security .price__scroll {
  overflow: auto;
}

#security .price__img {
  min-width: 770px;
}

@media screen and (max-width: 767px) {
  .introduction__content {
    gap: min(40/390 * 100vw, 40px);
    margin-bottom: min(50/390 * 100vw, 50px);
  }

  .introduction__box {
    grid-template-columns: 1fr;
  }

  .introduction__box-img {
    width: 100%;
    max-width: 300px;
    margin: auto;
    border-radius: 10px;
  }

  .introduction__box-txt p {
    font-size: var(--fontsize18);
  }
}

/*-----------------------------------------
イベント運営(event)
-------------------------------------------*/
#event .page-sub-header {
  background: url(../../img/page/event/event-header.webp) no-repeat center;
  background-size: cover;
}

.check {
  position: relative;
  padding-bottom: min(100/1720 * 100vw, 100px);
  margin-bottom: min(190/1720 * 100vw, 190px);
}

.check__box {
  position: relative;
  width: min(1450/1720 * 100vw, 1450px);
  padding: min(90/1720 * 100vw, 90px) min(120/1720 * 100vw, 120px)
    min(330/1720 * 100vw, 330px) 0;
  background: var(--base-white);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.check__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  background: var(--base-white);
  z-index: 1;
}

/* 見出し */
.check__heading {
  position: relative;
  font-size: var(--fontsize40);
  font-weight: 800;
  padding-left: min(275/1720 * 100vw, 275px);
  margin-bottom: min(35/1720 * 100vw, 35px);
  z-index: 5;
}

.check__heading::before {
  content: "";
  position: absolute;
  top: calc(-1 * min(100/1720 * 100vw, 100px));
  left: 0;
  background: url(../../img/common/check-illust.webp) no-repeat;
  background-size: min(237/1720 * 100vw, 237px) min(166/1720 * 100vw, 166px);
  width: min(237/1720 * 100vw, 237px);
  height: min(166/1720 * 100vw, 166px);
}

.check__box p {
  position: relative;
  word-break: break-all;
  font-size: var(--fontsize24);
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding-left: min(255/1720 * 100vw, 255px);
  margin-bottom: min(60/1720 * 100vw, 60px);
  z-index: 5;
}

/* 画像 */
.check__img {
  position: relative;
  margin-top: calc(-1 * min(320/1720 * 100vw, 320px));
  z-index: 5;
  margin-bottom: min(90 / 1720 * 100vw, 90px);
}

.check__price-scroll {
  overflow: auto;
  margin-bottom: min(55/1720 * 100vw, 55px);
}

.check__price-scroll img {
  min-width: 770px;
}

.check__txt {
  margin-bottom: min(90/1720 * 100vw, 90px);
  font-size: var(--fontsize24);
  line-height: 1.8;
}

.check__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(50/1720 * 100vw, 50px);
}

@media screen and (max-width: 767px) {
  .check {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: min(50/390 * 100vw, 50px);
  }

  .check__img {
    position: relative;
    top: initial;
    width: 100%;
    z-index: 5;
    margin-top: 0;
  }

  .check__box {
    width: 100%;
    padding: min(20/390 * 100vw, 20px) min(10/390 * 100vw, 10px)
      min(20/390 * 100vw, 20px) 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .check__heading {
    font-size: var(--fontsize20);
    padding-left: min(245 / 1720 * 100vw, 245px);
  }

  .check__box p {
    font-size: var(--fontsize16);
    margin-bottom: min(30/390 * 100vw, 30px);
  }

  .check__txt {
    margin-bottom: min(90/1720 * 100vw, 90px);
    font-size: var(--fontsize18);
    line-height: 1.8;
  }

  .check__gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ホームページ実績
-------------------------------- */
#event .cases {
  position: relative;
  padding-top: min(170/1270 * 100vw, 170px);
  margin-bottom: min(120/1720 * 100vw, 120px);
}

#event .cases::after {
  content: "RESULTS";
  color: #5c5c5c;
  font-size: min(250/1720 * 100vw, 250px);
  font-weight: 800;
  font-family: "century-gothic", sans-serif;
  position: absolute;
  top: min(170/1720 * 100vw, 170px);
  left: 100%;
  white-space: nowrap;
  rotate: 90deg;
  transform-origin: top left;
  opacity: 0.09;
  line-height: 0.8;
  z-index: 1;
}

#event .cases__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(40/1720 * 100vw, 40px);
  margin-bottom: min(70 / 1720 * 100vw, 70px);
  z-index: 6;
}

#event .cases__item-img {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  aspect-ratio: 39/25;
}

#event .cases__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#event .cases__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: min(20/1720 * 100vw, 20px);
}

#event .cases__item-text {
  display: flex;
  align-items: baseline;
  font-size: var(--fontsize30);
  font-weight: 600;
}

#event .cases__item-text::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border: 2px solid #7e7e7e;
  border-radius: 50%;
  margin-right: min(20/1720 * 100vw, 20px);
  flex-shrink: 0;
}

#event .cases__link {
  text-align: center;
}

#event .cases__link a {
  display: inline-flex;
  align-items: center;
  font-size: var(--fontsize20);
  padding: min(20/1720 * 100vw, 20px) min(18/1720 * 100vw, 18px)
    min(20/1720 * 100vw, 20px) min(48/1720 * 100vw, 48px);
  border: 1px solid var(--base-black);
  border-radius: 50px;
  transition: all 0.3s;
}

#event .cases__link a:hover {
  opacity: 1;
  background: var(--base-black);
  color: var(--base-white);
}

#event .cases__link a::after {
  content: "";
  display: block;
  background: url(../../img/common/btn-black-right-arw.png) no-repeat center;
  background-size: 16px 9px;
  width: 16px;
  height: 9px;
  padding-left: min(20/1720 * 100vw, 20px);
  transition: all 0.3s;
}

#event .cases__link a:hover::after {
  background: url(../../img/common/btn-white-right-arw.png) no-repeat center;
  background-size: 16px 9px;
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  #event .cases {
    padding-top: min(50/390 * 100vw, 50px);
    margin-bottom: min(50/390 * 100vw, 50px);
  }

  #event .cases__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(20/390 * 100vw, 20px) 5px;
    margin-bottom: min(40 / 390 * 100vw, 40px);
  }

  #event .cases__item-text {
    font-size: var(--fontsize16);
  }

  #event .cases__item-text::before {
    width: 3px;
    height: 3px;
    border: 1px solid #7e7e7e;
    margin-right: min(5/390 * 100vw, 5px);
  }

  #event .cases__link a {
    font-size: var(--fontsize16);
    padding: min(10/390 * 100vw, 10px) min(18/390 * 100vw, 18px)
      min(10/390 * 100vw, 10px) min(28/390 * 100vw, 28px);
  }
}

/*-----------------------------------------
IoT(iot)
-------------------------------------------*/
#iot .page-sub-header {
  background: url(../../img/page/iot/iot-header.webp) no-repeat center;
  background-size: cover;
}

/* ラインナップ
---------------------------*/
.lineup {
  position: relative;
  margin-bottom: min(120/1720 * 100vw, 120px);
}

.lineup::after {
  content: "LINEUP";
  color: #5c5c5c;
  font-size: min(250/1720 * 100vw, 250px);
  font-weight: 800;
  font-family: "century-gothic", sans-serif;
  position: absolute;
  top: 0;
  left: 100%;
  white-space: nowrap;
  rotate: 90deg;
  transform-origin: top left;
  opacity: 0.09;
  line-height: 0.8;
  z-index: 1;
}

.lineup__wrap {
  position: relative;
  z-index: 5;
}

.lineup__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(120/1720 * 100vw, 120px) min(60/1720 * 100vw, 60px);
}

.lineup__item-txt {
  font-size: var(--fontsize24);
  margin-bottom: min(50/1720 * 100vw, 50px);
}

.lineup__item-img {
  width: 100%;
  aspect-ratio: 81/53;
  border: 10px solid #eeeeee;
  margin-bottom: min(10/1720 * 100vw, 10px);
}

.lineup__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lineup__item-name {
  font-size: var(--fontsize20);
  margin-bottom: min(30/1720 * 100vw, 30px);
}

.lineup__item-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.lineup__item-gallery img {
    border: 1px solid #eee;
    width: 100%;
    background: var(--base-white);
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
  .lineup__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .lineup__item-txt {
    font-size: var(--fontsize18);
  }

  .lineup__item-img {
    border: 5px solid #eeeeee;
    margin-bottom: min(10/390 * 100vw, 10px);
  }

  .lineup__item-name {
    font-size: var(--fontsize16);
    margin-bottom: min(20/390 * 100vw, 20px);
  }

  .lineup__item-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ダッシュボード
---------------------------*/
#iot .dashboard__img {
  background: #f4f5f5;
  border: 10px solid #eee;
  padding: min(110/1720 * 100vw, 110px) min(75/1720 * 100vw, 72px)
    min(70/1720 * 100vw, 70px);
}

@media screen and (max-width: 767px) {
  #iot .dashboard__img {
    border: 5px solid #eee;
    padding: min(25/390 * 100vw, 25px) min(10/390 * 100vw, 10px)
      min(20/390 * 100vw, 20px);
  }
}

/*-----------------------------------------
Wi-Fi 導入支援(wifi)
-------------------------------------------*/
#wifi .page-sub-header {
  background: url(../../img/page/wifi/wifi-header.webp) no-repeat center;
  background-size: cover;
}

#wifi .wifi {
  margin-bottom: min(120 / 1720 * 100vw, 120px);
}

#wifi .wifi__content {
  position: relative;
  display: flex;
  margin-bottom: min(50/1720 * 100vw, 50px);
}

#wifi .wifi__item {
  position: relative;
  display: flex;
  align-items: baseline;
  font-size: var(--fontsize30);
  padding-left: min(30/1720 * 100vw, 30px);
  line-height: 1.8;
}

#wifi .wifi__item::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid #7e7e7e;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 画像 */
#wifi .wifi__illust1 {
  position: absolute;
  top: 0;
  right: min(calc((100vw - 1720px) / 2 * -1), -2.5vw);
  max-width: min(760/1720 * 100vw, 760px);
  width: 42%;
  border: 10px solid #fff;
  border-radius: 35px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#wifi .wifi__illust1 img {
  width: 100%;
}

#wifi .wifi__illust2 {
  position: absolute;
  top: min(305/1720 * 100vw, 305px);
  right: min(385/1720 * 100vw, 385px);
  width: min(600/1720 * 100vw, 600px);
  border: 10px solid #fff;
  border-radius: 35px;
  z-index: 5;
}

#wifi .wifi__illust2 img {
  width: 100%;
}

#wifi .wifi__txt--bold {
  font-size: var(--fontsize40);
  font-weight: 800;
  margin-bottom: min(60/1720 * 100vw, 60px);
}

/* ボタン */
#wifi .wifi__link a {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: min(20 / 1200 * 100vw, 20px) min(68 / 1200 * 100vw, 68px)
    min(20 / 1200 * 100vw, 20px) min(60 / 1200 * 100vw, 60px);
  font-size: var(--fontsize20);
  color: var(--base-black);
  border-radius: 50px;
  border: 1px solid var(--base-black);
  background: url(../../img/common/btn-black-right-arw.png) no-repeat;
  background-size: 12px 9px;
  background-position: right 20px top 50%;
  transition: all 0.3s;
}

#wifi .wifi__link a:hover {
  color: var(--base-white);
  background: url(../../img/common/btn-white-right-arw.png) no-repeat;
  background-size: 12px 9px;
  background-position: right 20px top 50%;
  background-color: var(--base-black);
  transition: all 0.3s;
}

/* wifiロゴ */
#wifi .wifi__logo {
  padding-left: min(185/1720 * 100vw, 185px);
  margin-top: -7px;
}

@media screen and (max-width: 767px) {
  #wifi .wifi__content {
    flex-direction: column;
    margin-bottom: min(40/390 * 100vw, 40px);
    gap: min(20/1720 * 100vw, 20px);
  }

  #wifi .wifi__illust1 {
    position: absolute;
    top: initial;
    bottom: -25px;
    width: 50%;
    border: 5px solid #fff;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 6;
  }

  #wifi .wifi__illust2 {
    position: relative;
    top: initial;
    right: initial;
    width: 100%;
    border: 5px solid #fff;
    z-index: 5;
  }

  #wifi .wifi__item {
    position: relative;
    display: flex;
    align-items: baseline;
    font-size: var(--fontsize20);
    padding-left: min(30/1720 * 100vw, 30px);
    line-height: 1.8;
  }

  #wifi .wifi__item {
    font-size: var(--fontsize20);
    padding-left: min(20/390 * 100vw, 20px);
  }

  #wifi .wifi__item::before {
    width: 6px;
    height: 6px;
  }

  #wifi .wifi__txt--bold {
    font-size: var(--fontsize20);
    margin-bottom: min(30/390 * 100vw, 30px);
  }

  #wifi .wifi__link a {
    padding: min(10 / 390 * 100vw, 10px) min(40 / 390 * 100vw, 40px)
      min(10 / 390 * 100vw, 10px) min(30 / 390 * 100vw, 30px);
    font-size: var(--fontisze16);
  }

  #wifi .wifi__logo {
    padding-left: 0;
    margin-top: 10px;
    width: min(200/390 * 100vw, 200px);
    margin-left: auto;
  }
}

/* プラン
-----------------------------*/
#wifi .plan__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(50/1720 * 100vw, 50px);
  margin-bottom: min(128 / 1720 * 100vw, 128px);
}

#wifi .plan__txt {
  font-size: var(--fontsize40);
  font-weight: 800;
  margin-bottom: min(100/1720 * 100vw, 100px);
}

#wifi .plan__img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  #wifi .plan__content {
    grid-template-columns: repeat(1, 1fr);
  }

  #wifi .plan__txt {
    font-size: var(--fontsize20);
  }
}

/* point
-------------------------------- */
#wifi .point {
  position: relative;
  padding-bottom: min(100/1720 * 100vw, 100px);
  margin-bottom: min(190/1720 * 100vw, 190px);
}

#wifi .point__box {
  position: relative;
  width: min(1140/1720 * 100vw, 1140px);
  padding: min(90/1720 * 100vw, 90px) min(120/1720 * 100vw, 120px)
    min(60/1720 * 100vw, 60px) 0;
  background: var(--base-white);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

#wifi .point__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  background: var(--base-white);
  z-index: 1;
}

/* 見出し */
#wifi .point__heading {
  position: relative;
  font-size: var(--fontsize40);
  font-weight: 800;
  padding-left: min(275/1720 * 100vw, 275px);
  margin-bottom: min(75/1720 * 100vw, 75px);
  z-index: 5;
}

#wifi .point__heading::before {
  content: "";
  position: absolute;
  top: calc(-1 * min(100/1720 * 100vw, 100px));
  left: 0;
  background: url(../../img/common/point-illust.webp) no-repeat;
  background-size: min(237/1720 * 100vw, 237px) min(166/1720 * 100vw, 166px);
  width: min(237/1720 * 100vw, 237px);
  height: min(166/1720 * 100vw, 166px);
}

#wifi .point__box p {
  position: relative;
  word-break: break-all;
  font-size: var(--fontsize24);
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: min(60/1720 * 100vw, 60px);
  z-index: 5;
}

#wifi .point__box ul {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: min(100 / 1720 * 100vw, 100px);
  gap: 10px;
  z-index: 5;
}

#wifi .point__box li {
  position: relative;
  padding-left: min(30/1720 * 100vw, 30px);
  font-size: var(--fontsize30);
  font-weight: 600;
}

#wifi .point__box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: min(9/1720 * 100vw, 9px);
  height: min(9/1720 * 100vw, 9px);
  border: 2px solid #7e7e7e;
  border-radius: 50%;
}

/* 画像 */
#wifi .point__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 37%;
  max-width: 807px;
}

@media screen and (max-width: 767px) {
  #wifi .point {
    padding-top: min(180/390 * 100vw, 180px);
    padding-bottom: 0;
    margin-bottom: min(50/390 * 100vw, 50px);
  }

  #wifi .point__img {
    top: 0px;
    width: 75%;
    max-width: 280px;
    z-index: 5;
  }

  #wifi .point__box {
    width: 100%;
    padding: min(20/390 * 100vw, 20px) min(10/390 * 100vw, 10px)
      min(20/390 * 100vw, 20px) 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  #wifi .point__heading {
    font-size: var(--fontsize20);
    padding-left: min(245 / 1720 * 100vw, 245px);
  }

  #wifi .point__box ul {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: min(100 / 1720 * 100vw, 100px);
    gap: 5px;
  }

  #wifi .point__box li {
    font-size: var(--fontsize16);
    padding-left: min(15 / 390 * 100vw, 15px);
  }

  #wifi .point__box li::before {
    width: min(3/390 * 100vw, 3px);
    height: min(3/390 * 100vw, 3px);
    border: 1px solid #7e7e7e;
  }
}

/*-----------------------------------------
お客様事例(case)
-------------------------------------------*/
#case .page-header {
  background: url(../../img/page/case/case-header.webp) no-repeat center;
  background-size: cover;
}

/* カテゴリー一覧
----------------------------------*/
#case .category,
#knowledge .category  {
  background: var(--base-white);
  padding: min(59/1720 * 100vw, 59px) 0;
  margin-bottom: min(120/1720 * 100vw, 100px);
}

#case .category__title,
#knowledge .category__title {
  position: relative;
  font-size: var(--fontsize40);
  font-weight: 800;
  padding-left: min(60/1720 * 100vw, 60px);
  margin-bottom: min(40/1720 * 100vw, 40px);
}

#case .category__title--tag::before,
#knowledge .category__title--tag::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background: url(../../img/common/tag-icon.png) no-repeat center;
  background-size: min(45/1720 * 100vw, 45px) min(45/1720 * 100vw, 45px);
  width: min(45/1720 * 100vw, 45px);
  height: min(45/1720 * 100vw, 45px);
}

#case .category__title--keyword::before,
#knowledge .category__title--keyword::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background: url(../../img/common/search-icon.png) no-repeat center;
  background-size: min(42/1720 * 100vw, 42px) min(42/1720 * 100vw, 42px);
  width: min(42/1720 * 100vw, 42px);
  height: min(42/1720 * 100vw, 42px);
}

#case .category__list,
#knowledge .category__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(30/1720 * 100vw, 30px) min(40/1720 * 100vw, 40px);
  margin-bottom: min(75/1720 * 100vw, 75px);
}

#case .category__item a,
#knowledge .category__item a {
  display: inline-block;
  font-size: var(--fontsize20);
  padding: min(20/1720 * 100vw, 20px) min(35/1720 * 100vw, 35px);
  width: 100%;
  max-width: 400px;
  background: url(../../img/common/btn-black-right-arw.png) no-repeat center;
  background-size: min(12/1200 * 100vw, 12px) min(9/1200 * 100vw, 9px);
  background-position: top 50% right min(20/1720 * 100vw, 20px);
  border: 1px solid var(--base-black);
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s;
}

#case .category__item a:hover ,
#knowledge .category__item a:hover{
  background: url(../../img/common/btn-white-right-arw.png) no-repeat center;
  background-size: min(12/1200 * 100vw, 12px) min(9/1200 * 100vw, 9px);
  background-position: top 50% right min(20/1720 * 100vw, 20px);
  background-color: var(--base-black);
  color: var(--base-white);
  transition: all 0.3s;
}

/* 検索ボックス */
#case .category__search-box,
#knowledge .category__search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--base-black);
  border-radius: 50px;
  padding: min(10/1720 * 100vw, 10px) 10px min(10/1720 * 100vw, 10px)
    min(45/1720 * 100vw, 45px);
  gap: 8px;
  max-width: 840px;
  width: 75%;
}

#case .category__search-box input[type="search"],
#knowledge .category__search-box input[type="search"] {
background: #fff;
  flex: 1;
  border: none;
  outline: none;
  font-size: var(--fontsize20);
min-width: 0;
}

#case .category__search-box button,
#knowledge .category__search-box button {
flex-shrink: 0;
  width: min(50/1720 * 100vw, 50px);
  height: min(50/1720 * 100vw, 50px);
  border-radius: 50%;
  background: #000;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

#case .category__search-box button img,
#knowledge .category__search-box button img {
  width: 50%;
}

@media screen and (max-width: 767px) {
  #case .category,
  #knowledge .category {
    background: var(--base-white);
    padding: min(30/390 * 100vw, 30px) 0;
  }

  #case .category__title,
  #knowledge .category__title {
    font-size: var(--fontsize20);
    padding-left: min(25/390 * 100vw, 25px);
    margin-bottom: min(20/390 * 100vw, 20px);
  }

  #case .category__title--tag::before,
  #case .category__title--keyword::before,
  #knowledge .category__title--tag::before,
  #knowledge .category__title--keyword::before {
    background-size: min(20/390 * 100vw, 20px) min(20/390 * 100vw, 20px);
    width: min(20/390 * 100vw, 20px);
    height: min(20/390 * 100vw, 20px);
  }

  #case .category__list,
  #knowledge .category__list {
    grid-template-columns: repeat(1, 1fr);
    gap: min(10/390 * 100vw, 10px);
  }

  #case .category__item a,
  #knowledge .category__item a {
    font-size: var(--fontsize16);
    padding: min(10/390 * 100vw, 10px) min(15/390 * 100vw, 15px);
    max-width: initial;
    background-size: min(10/390 * 100vw, 10px) min(6/390 * 100vw, 6px);
    background-position: top 50% right min(10/390 * 100vw, 10px);
  }

  #case .category__item a:hover,
  #knowledge .category__item a:hover {
    background: url(../../img/common/btn-white-right-arw.png) no-repeat center;
    background-size: min(10/390 * 100vw, 10px) min(6/390 * 100vw, 6px);
    background-position: top 50% right min(10/390 * 100vw, 10px);
    background-color: var(--base-black);
    color: var(--base-white);
  }

  #case .category__search-box input[type="search"],
  #knowledge .category__search-box input[type="search"] {
    font-size: var(--fontsize16);
  }

  #case .category__search-box,
  #knowledge .category__search-box {
    width: 100%;
  }

  #case .category__search-box,
  #knowledge .category__search-box {
    padding: min(5/390 * 100vw, 5px) 5px min(5/390 * 100vw, 5px)
      min(15/390 * 100vw, 15px);
    width: 100%;
        display: grid;
        grid-template-columns: 1fr min(35 / 390 * 100vw, 35px);
  }

  #case .category__search-box button,
  #knowledge .category__search-box button {
    flex-shrink: 0;
    width: min(35/390 * 100vw, 35px);
    height: min(35/390 * 100vw, 35px);
  }
}

/* 一覧
---------------------------------*/
#case .case__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(80/1720 * 100vw, 80px) min(48/1720 * 100vw, 48px);
}

#case .case__item a {
  position: relative;
  display: block;
  border: 10px solid var(--base-white);
  border-radius: 25px;
  box-shadow: 5px 5px 20px rgb(0, 0, 0, 0.2);
  width: 100%;
  aspect-ratio: 26 / 29;
}

#case .case__item-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

#case .case__item-img::after {
  content: "";
  background: var(--base-black);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 2;
}

#case .case__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#case .case__item-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  z-index: 5;
}

#case .case__item-category span {
  font-size: var(--fontsize17);
  color: var(--base-white);
  border: 1px solid var(--base-white);
  border-radius: 50px;
  padding: 0 5px;
}

#case .case__item-title {
  font-size: var(--fontsize30);
  font-weight: 600;
  color: var(--base-white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 2px 2px #00000036;
}

#case .case__item-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#case .case__item-date time {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--base-white);
}

#case .case__item-date time::before {
  flex-shrink: 0;
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid var(--base-white);
  border-radius: 50%;
  margin-right: 5px;
}

#case .case__item-date span {
  background: url(../../img/common/btn-black-right-arw.png) no-repeat center;
  background-size: 13px 7px;
  background-color: var(--base-white);
  width: 26px;
  height: 14px;
  border-radius: 50px;
}

@media screen and (max-width: 767px) {
  #case .case__list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(20/390 * 100vw, 20px) min(10/390 * 100vw, 10px);
  }

  #case .case__item a {
    border: 5px solid var(--base-white);
    border-radius: 10px;
  }

  #case .case__item-img {
    border-radius: 10px;
  }

  #case .case__item-txt {
    padding: 5px 10px;
  }

  #case .case__item-category span {
    font-size: 1rem;
    padding: 0 5px;
  }

  #case .case__item-title {
    font-size: var(--fontsize14);
  }

  #case .case__item-date time {
    font-size: 1rem;
  }

  #case .case__item-date time::before {
    width: 3px;
    height: 3px;
  }

  #case .case__item-date span {
    background-size: 10px 5px;
    width: 20px;
    height: 13px;
  }
}

/* 記事詳細
---------------------------------------- */
.entry {
  padding: min(80/1720 * 100vw, 80px) 0;
}

.entry__title {
  font-size: var(--fontsize70);
  font-weight: 700;
  margin-bottom: min(20/1720 * 100vw, 20px);
}

.entry__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: min(40/1720 * 100vw, 40px);
  padding-bottom: min(45/1720 * 100vw, 45px);
  border-bottom: 1px solid #5c5c5c;
}

.entry__date {
  padding-left: 20px;
  position: relative;
  font-size: var(--fontsize24);
  font-weight: 600;
  color: #5c5c5c;
}

.entry__date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 5px;
  height: 5px;
  border: 1px solid #5c5c5c;
  border-radius: 50%;
}

.entry__category {
  font-size: var(--fontsize20);
  padding: 0px 12px;
  border: 1px solid var(--base-black);
  border-radius: 50px;
}

.entry__img {
  max-width: 1200px;
  border: 10px solid var(--base-white);
  border-radius: 25px;
  margin: 0 auto;
  margin-bottom: min(50 / 1720 * 100vw, 50px);
}

.entry__img img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.cases__video-box {
    text-align: center;
    margin-bottom: min(60/1200*100vw,60px);
}

.cases__video-box iframe {
    width: 100%;
    max-width: 900px;
    height: auto;
    aspect-ratio: 560/315;
}

.entry__body {
  font-size: var(--fontsize18);
  line-height: 2;
  margin-bottom: min(80/1720 * 100vw, 80px);
}

.entry__body p {
  margin-bottom: 1.5em;
}

.entry__back {
  text-align: center;
}

.entry__back-link {
  display: inline-block;
  font-size: var(--fontsize16);
  padding: min(15/1720 * 100vw, 15px) min(50/1720 * 100vw, 50px);
  border: 1px solid var(--base-black);
  border-radius: 50px;
  transition: all 0.3s;
}

.entry__back-link:hover {
  background: var(--base-black);
  color: var(--base-white);
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  .entry__title {
    font-size: var(--fontsize24);
  }

  .entry__date {
    padding-left: 15px;
    font-size: var(--fontsize14);
  }

  .entry__category {
    font-size: var(--fontsize14);
  }

  .entry__body {
    font-size: var(--fontsize16);
  }

  .entry__img {
    border: 5px solid var(--base-white);
    border-radius: 15px;
  }

  .entry__img img {
    border-radius: 15px;
  }
}

/*-----------------------------------------
プライバシーポリシー(privacy)
-------------------------------------------*/
#privacy .page-header {
  background: url(../../img/page/contact/header-bg.webp) no-repeat center;
  background-size: cover;
}

.privacy__lead {
  font-size: var(--fontsize30);
  font-weight: 600;
  margin-bottom: min(40/1720 * 100vw, 40px);
}

.privacy__block {
  margin-bottom: min(50/1720 * 100vw, 50px);
}

.privacy__block p {
  font-size: min(calc(20 / 1200 * 100vw), 20px);
  line-height: 1.8;
}

.privacy__list {
  line-height: 1.8;
}

.privacy__list li {
  position: relative;
  padding-left: 1em;
  font-size: min(calc(20 / 1200 * 100vw), 20px);
}

.privacy__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 5px;
  height: 5px;
  background: var(--base-black);
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .privacy__lead {
    font-size: var(--fontsize20);
    margin-bottom: min(30/390 * 100vw, 30px);
  }

  .privacy__block p {
    font-size: var(--fontsize18);
    line-height: 1.8;
  }

  .privacy__list li {
    font-size: var(--fontsize18);
  }
}



/*-----------------------------------------
CCNナレッジ(knowledge)
-------------------------------------------*/
#knowledge .page-header {
  background: url(../../img/page/knowlege/header-knowlege.webp) no-repeat center;
  background-size: cover;
}


#knowledge .knowledge__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(60/1720 * 100vw, 60px) min(55/1720 * 100vw, 55px);
  margin-bottom: min(70/1720 * 100vw, 70px);
}

#knowledge .knowledge__item a {
  display: flex;
  flex-direction: column;
}

#knowledge .knowledge__item-img {
  width: 100%;
  aspect-ratio: 107/71;
  border-radius: 20px;
  overflow: hidden;
  background: #d9d9d9;
  margin-bottom: min(20/1720 * 100vw, 20px);
}

#knowledge .knowledge__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

#knowledge .knowledge__item a:hover .knowledge__item-img img {
  transform: scale(1.05);
}

/* 日付＋カテゴリー */
#knowledge .knowledge__item-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: min(20/1720 * 100vw, 20px);
  margin-bottom: 12px;
}

#knowledge .knowledge__item-date {
  position: relative;
  padding-left: 15px;
  font-size: var(--fontsize16);
  font-weight: 600;
  color: #5c5c5c;
}

#knowledge .knowledge__item-date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 5px;
  height: 5px;
  border: 1px solid #5c5c5c;
  border-radius: 50%;
}

#knowledge .knowledge__item-category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

#knowledge .knowledge__item-category span {
  display: inline-block;
  font-size: var(--fontsize14);
  color: var(--base-white);
  background: var(--base-black);
  border-radius: 50px;
  padding: 2px 14px;
}

/* タイトル */
#knowledge .knowledge__item-title {
  font-size: var(--fontsize20);
  font-weight: 600;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #knowledge .knowledge__list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(20/390 * 100vw, 20px) min(10/390 * 100vw, 10px);
  }

  #knowledge .knowledge__item-img {
    border-radius: 10px;
    margin-bottom: min(10/390 * 100vw, 10px);
  }

  #knowledge .knowledge__item-meta {
    gap: 5px;
    margin-bottom: 5px;
  }

  #knowledge .knowledge__item-date {
    font-size: var(--fontsize14);
  }

  #knowledge .knowledge__item-category span {
    font-size: 1rem;
    padding: 1px 8px;
  }

  #knowledge .knowledge__item-title {
    font-size: var(--fontsize16);
  }
}