@charset "utf-8";
/*------------------------------------------------------------------

  共通箇所

------------------------------------------------------------------*/

/* フォント読み込み */
.maru_font {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
}
.en_font {
  font-family: "Jost", sans-serif;
  font-weight: 700;
}

/* @group CSS変数を定義 */
:root {
  --c-black: #57412a;
  --c-txtgray: #666;
  --c-gray: #888;
  --c-lightgray: #bbb;
  --c-bg: #f7f5ef;
  --c-bg02: #f8f4dd;
  --c-pink: #e9557f;
  --c-orange: #eb6129;
  --c-blue: #3cb7eb;
  --c-green: #61b635;
  --grd-orange: linear-gradient(90deg, #ff8128 0%, #fad200 100%);

  --ff-gothic: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --ff-maru: "M PLUS Rounded 1c", serif;
  --ff-icon: "Font Awesome 6 Pro";
  --ff-en: "Jost", sans-serif;
  --ff-num: "Jost", sans-serif;

  --fw-normal: 400;
  --fw-bold: 600;
  --fw-black: 800;

  --fz-normal: 16px;

  --max-width: 1100px;
  --width: 94%;

  --ef-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1150px) {
  :root {
    --width: 92%;
    --fz-normal: 15px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --fz-normal: 14px;
    --width: 90%;
  }
}
.bg_gray {
  background: var(--c-lightgray) !important;
}
.marker {
  background: linear-gradient(transparent 80%, #fff000 20%);
  /* display: inline-block; */
  line-height: 1.2;
}
.txt_basic {
  line-height: 2;
  font-size: var(--fz-normal);
}
.txt_small {
  line-height: 1.8;
  font-size: 13px;
  display: block;
}
.bd_dot {
  position: relative;
}
.bd_dot:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-image: radial-gradient(circle at 1.5px center, var(--c-gray), var(--c-gray) 1.5px, transparent 1.5px, transparent 100%);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 10px 4px;
}

html {
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
  color: var(--c-black);
  font-family: var(--ff-gothic);
  font-size: var(--fz-normal);
  font-weight: var(--fw-normal);
}
* {
  scroll-margin-top: 100px;
}

/* PC以下、レスポンシブ共用箇所------------------------------- */
/*
  フッター
--------------------------*/
.footer {
  position: relative;
  padding: 80px 0 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 60px 0;
  border-top: solid 1px var(--c-lightgray);
}
.footer .inner {
  max-width: 100%;
  width: 100%;
  padding: 0 5%;
  display: flex;
  gap: 40px 6%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer .inner:first-child {
  align-items: flex-start;
}
.footer .logo_area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px 0;
  flex: 1;
}
.footer .logo {
  height: auto;
  width: auto;
  margin: 0;
}
.footer .logo img {
  height: 45px;
  width: auto;
  margin: 0;
}
.footer .sns_area {
  display: flex;
  gap: 0 24px;
}
.footer .sns_area a {
  font-size: 28px;
  color: var(--c-gray);
  line-height: 1;
}
.footer .main_menu {
  display: flex;
  gap: 10px 40px;
}
.footer .main_menu > li {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  align-items: flex-start;
}
.footer .main_menu > li a {
  line-height: 2;
}
.footer .inner_menu {
  display: flex;
  gap: 8px 24px;
  flex-wrap: wrap;
  max-width: 370px;
}
.footer .inner_menu li {
  margin: 0;
  min-width: 145px;
}
.footer .inner_menu a {
  font-size: 13px;
}
.footer .inner_menu a:before {
  content: "-";
  margin-right: 5px;
}
.footer .btn_area {
  width: 200px;
  flex-direction: column;
  padding-top: 0;
}
.footer .btn {
  font-size: 15px;
  box-shadow: none;
  border: solid 1px var(--c-pink);
  font-weight: var(--fw-bold);
  height: 56px;
  padding: 0;
}
.footer .btn.--orange {
  border: solid 1px var(--c-orange);
}
.logo_banner {
  width: 100%;
}
.footer .mark_area {
  display: flex;
  gap: 10px 20px;
  align-items: center;
}
.footer .mark_area .txt_small {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 3px 0;
  font-size: 12px;
}
.footer .mark_area .txt_small span {
  background: var(--c-bg);
  border-radius: 30px;
}
.footer .mark_area .mark_img {
  border: solid 1px #ddd;
  display: block;
}
.footer .mark_area img {
  height: 60px;
}
.footer .sub_menu {
  display: flex;
  gap: 24px 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer .sub_menu a {
  text-decoration: underline;
  font-size: 13px;
}
.footer .sub_menu i {
  margin-left: 8px;
}
.footer small {
  font-size: 12px;
  line-height: 1.8;
  width: 100%;
  text-align: center;
  color: var(--c-gray);
}
.slide li {
  padding: 0 10px;
}
.slide li a {
  position: relative;
  display: block;
  border: solid 1px #ddd;
}
.slide .slide-arrow {
  width: 25px;
  line-height: 25px;
  font-size: 14px;
  left: 9%;
  margin-top: -12px;
}
.slide .next-arrow {
  left: auto;
  right: 9%;
}
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  background: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagetop:before {
  font-family: var(--ff-icon);
  content: "\f062";
  font-size: 25px;
  font-weight: bold;
}
@media (hover: hover) and (pointer: fine) {
  .pagetop:hover {
    opacity: 0.8;
  }
  .footer .main_menu a:hover,
  .footer .sns_area a:hover {
    color: var(--c-orange);
  }
  .footer .sub_menu a:hover {
    text-decoration: none;
  }
  .slide a:hover {
    opacity: 0.8;
  }
  .footer .btn:hover {
    background: #fff;
    color: var(--c-pink);
    top: 0;
  }
  .footer .btn.--orange:hover {
    color: var(--c-orange);
  }
}

/*
  articleヘッダー
--------------------------*/
.article_header {
  overflow: hidden;
  background: url(../img/common/pattern_header.svg) right bottom 16px / cover no-repeat;
}
@media screen and (min-width: 1280px) {
  .article_header {
    background: url(../img/common/pattern_header.svg) center bottom 16px / 100% no-repeat;
  }
}
.article_header .inner {
  border-bottom: solid 1px var(--c-lightgray);
  padding: 160px 0 100px;
}
.article_header .ttl {
  font-size: 44px;
  line-height: 1.5;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  position: relative;
}
.article_header .ttl .en_font {
  font-size: 16px;
  display: block;
  color: var(--c-orange);
  padding: 0 0 10px 16px;
  position: relative;
  letter-spacing: 0.08em;
}
.article_header .ttl .en_font:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--c-orange);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
.content {
  max-width: var(--max-width);
  width: var(--width);
  margin: 0 auto;
  padding: 120px 0;
}

/*
  見出し
--------------------------*/
.ttl_area {
  margin-bottom: 60px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.ttl_area .txt_small {
  font-size: 12px;
  line-height: 1.8;
}
.ttl_area *:last-child {
  margin-bottom: 0;
}
.ttl1 {
  display: flex;
  gap: 20px 24px;
  align-items: center;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: var(--fw-bold);
  font-family: var(--ff-maru);
  width: 100%;
}
.ttl1.--center {
  justify-content: center;
}
.ttl1 * {
  letter-spacing: 0.08em;
}
.ttl1:before {
  content: "";
  background: url(../img/common/logo_icon.svg) center / contain no-repeat;
  aspect-ratio: 11 / 9;
  flex: 0 0 55px;
}
.ttl1 .--orange {
  color: var(--c-orange);
  font-size: 150%;
  background: #fff;
  padding: 0 8px;
  letter-spacing: 0.08em;
  margin: 0 8px;
}
.--special {
  flex-direction: column;
  gap: 20px 0;
}
.--special .ttl1 {
  gap: 0;
}
.--special .ttl1:before {
  content: none;
}
.--deco {
  color: var(--c-gray);
  font-size: 24px;
  font-weight: var(--fw-bold);
  line-height: 1.8;
  padding: 0 40px;
  background: url(../img/common/ttl_deco01.svg) left center / contain no-repeat, url(../img/common/ttl_deco02.svg) right center / contain no-repeat;
}
.ttl2 {
  font-weight: var(--fw-bold);
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  gap: 0 16px;
}
.ttl3 {
  font-weight: var(--fw-bold);
  font-size: 20px;
  line-height: 1.8;
  display: flex;
  align-items: center;
}
.ttl3 img {
  padding-right: 8px;
}
.ttl4 {
  clear: both;
  font-size: 24px;
  font-weight: var(--fw-bold);
  padding: 0 0 0 10px;
  border-left: solid 5px var(--c-blue);
  margin: 0 0 30px;
  line-height: 1.4;
}

/*
  ボタン
--------------------------*/
.btn,
.hs-button {
  display: flex;
  gap: 0 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 400px;
  width: 100%;
  height: 64px;
  border-radius: 10px;
  background: var(--c-pink);
  box-shadow: 0 -4px 0 0 rgba(0, 0, 0, 0.15) inset;
  font-size: 18px;
  color: #fff;
  font-weight: var(--fw-black);
  cursor: pointer;
  box-sizing: border-box;
  transition: 0.3s;
  position: relative;
  padding: 0 20px;
  top: 0;
}
.btn.--orange {
  background: var(--c-orange);
}
.btn.--inquiry_btn {
  background: var(--c-orange) url(../img/common/arrow_right.svg) right 20px center / 20px no-repeat;
  border-color: var(--c-orange);
}
.--shine {
  position: relative;
  overflow: hidden;
}
.--shine:after {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.snsbtn {
  background: var(--c-black);
  color: #fff;
  border-radius: 50px;
  line-height: 30px;
  padding: 0 15px;
  font-size: 13px;
}
.snsbtn.--x {
  background: #000;
}
.snsbtn.--facebook {
  background: #3b5998;
}
.snsbtn.--line {
  background: #06c755;
}
.snsbtn i {
  margin-right: 5px;
}
.btn_area,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  justify-content: center;
  padding-top: 75px;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .hs-button:hover {
    box-shadow: none;
    top: 3px;
  }
  .btn.--inquiry_btn:hover {
    background: #fff url(../img/common/arrow_right_orange.svg) right 20px center / 20px no-repeat;
    color: var(--c-orange);
  }
  .--shine:hover:after {
    animation: shine 0.7s;
  }
  .snsbtn:hover {
    opacity: 0.7;
  }
}

/*
  ctaエリア
--------------------------*/
.cta_area {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.cta_area .bg_area {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.cta_area .bg_area img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cta_area .inner {
  position: relative;
  max-width: 1280px;
  display: flex;
  gap: 0 6%;
  align-items: center;
}
.cta_area .logo_area .ttl3 {
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 0 10px #ee8700;
}
.cta_area .logo_new {
  height: 65px;
}
.cta_cont {
  flex: 1;
  display: flex;
  gap: 0 2%;
  padding-top: 50px;
}
.cta_cont .item {
  background: #fff;
  padding: 0 4.5% 40px;
  border-radius: 16px;
  flex: 1;
}
.cta_cont .img_area {
  width: 300px;
  margin: -90px auto 10px;
  display: block;
  aspect-ratio: 15 / 8;
}
.cta_cont .ttl3 {
  text-align: center;
  margin-bottom: 16px;
  justify-content: center;
}
.cta_cont .btn_area {
  padding-top: 24px;
}
.cta_cont .btn {
  height: 70px;
}

/*
  モーダル
--------------------------*/
.modal_overlay,
.popup_overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 19;
  display: none;
}
.modal {
  position: fixed;
  background: #fff;
  width: 90%;
  border-radius: 50px;
  padding: 60px 0 0;
  max-height: 90vh;
  top: 5vh;
  left: 5%;
  z-index: 20;
  display: none;
}
.modal .scroll_area {
  overflow: auto;
  max-height: calc(90vh - 60px);
  -webkit-overflow-scrolling: touch;
  padding: 20px 6.5% 60px;
}
.modal .close_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--c-gray);
  font-size: 28px;
  padding: 10px;
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
  .modal .close_btn:hover {
    color: var(--c-orange);
  }
}
/* PCサイズ------------------------------- */
@media screen and (min-width: 1330px) {
  .modal {
    max-width: 1200px;
    left: 50%;
    margin-left: -600px;
  }
}

/*
  スライダー
--------------------------*/
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}
.slick-dots li button:before {
  content: none !important;
}
.slide-arrow {
  top: 50%;
  margin-top: -30px;
  color: #fff;
  font-size: 20px;
  width: 60px;
  line-height: 60px;
  position: absolute;
  background: var(--c-gray);
  padding: 0;
  border-radius: 50%;
  z-index: 1;
  text-align: center;
  left: 7%;
  font-weight: bold;
}
.next-arrow {
  left: auto;
  right: 7%;
}
@media (hover: hover) and (pointer: fine) {
  .slide-arrow:hover {
    background: var(--c-orange);
  }
}
.slick-dots li {
  margin: 0 3px;
  width: auto;
  height: auto;
  padding: 0 5px !important;
}
.slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: var(--c-gray);
  border-radius: 50%;
}
.slick-dots li.slick-active button {
  background: var(--c-blue);
}
.slide,
.slide_problem,
.slide_key_visual_img,
.slide_key_visual_bg {
  visibility: hidden;
}
.slide.slick-initialized,
.slide_problem.slick-initialized,
.slide_key_visual_img.slick-initialized,
.slide_key_visual_bg.slick-initialized {
  visibility: visible;
  max-height: none;
}
.slide_problem .item {
  flex: auto !important;
  margin: 0 10px;
}

/*
  その他
--------------------------*/
.logo_old {
  aspect-ratio: 5.5 / 1;
  line-height: 1;
  display: inline-block;
}
.logo_new {
  aspect-ratio: 13 / 3;
  line-height: 1;
  display: inline-block;
}
.logo_new img,
.logo_old img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.outer {
  padding: 120px 0;
}
.inner {
  width: var(--width);
  max-width: var(--max-width);
  margin: 0 auto;
}
.inner.width900 {
  max-width: 900px;
}
.inner.width1000 {
  max-width: 1000px;
}
.inner.width1150 {
  max-width: 1150px;
}
.inner.width1200 {
  max-width: 1200px;
}
.inner.width1500 {
  max-width: 1500px;
}
.txt_link {
  color: var(--c-pink);
  text-decoration: underline;
}
.txt_link i {
  margin-left: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .txt_link:hover {
    text-decoration: none;
  }
}
.event_none {
  pointer-events: none;
  opacity: 0.6;
}
.round_wrap {
  background: #fff;
  border-radius: 50px;
  padding: 80px 6%;
}
.round_wrap.--color {
  --bg-color: #fff;
  --size: 50px;
  background: url(../img/common/corner_lt.svg) left top / var(--size) no-repeat, url(../img/common/corner_rt.svg) right top / var(--size) no-repeat, url(../img/common/corner_lb.svg) left bottom / var(--size) no-repeat, url(../img/common/corner_rb.svg) right bottom / var(--size) no-repeat, var(--bg-color);
}
.round_wrap.--color02 {
  position: relative;
  z-index: 2;
}
.round_wrap.--color02:before {
  content: "";
  position: absolute;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  top: -6px;
  left: -6px;
  --size: 50px;
  background: url(../img/common/corner_lt.svg) left top / var(--size) no-repeat, url(../img/common/corner_rt.svg) right top / var(--size) no-repeat, url(../img/common/corner_lb.svg) left bottom / var(--size) no-repeat, url(../img/common/corner_rb.svg) right bottom / var(--size) no-repeat;
  z-index: -1;
}
.youtube iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.dot_list {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
  width: 100%;
}
.dot_list li {
  position: relative;
  width: 100%;
  padding-left: 16px;
  line-height: 1.6;
}
.dot_list li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--c-orange);
  border-radius: 50%;
  top: 9px;
  left: 0;
}
.check_list {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
.check_list li {
  position: relative;
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  line-height: 1.8;
  padding-left: 20px;
  color: var(--c-orange);
}
.check_list li:before {
  content: "";
  position: absolute;
  font-family: var(--ff-icon);
  content: "\f058";
  font-weight: bold;
  left: 0;
}

/*
  機能詳細モーダル
--------------------------*/
.func_modal .inner_area {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 3%;
  align-items: center;
}
.func_modal .outline_img_area {
  flex: 0 0 45%;
  max-width: 420px;
  aspect-ratio: 15 / 8;
}
.func_modal .outline_img_area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.func_modal .outline {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 8px;
  align-items: center;
}
.func_modal .outline .icon_area {
  width: 40px;
  height: 40px;
}
.func_modal .outline .ttl {
  color: var(--c-orange);
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-right: 8px;
}
.func_modal .outline p {
  width: 100%;
}
.func_modal .status {
  display: flex;
  gap: 5px 8px;
}
.func_modal .status li {
  border-radius: 50px;
  background: var(--c-blue);
  line-height: 2;
  padding: 0 20px;
  color: #fff;
  font-size: 13px;
}
.func_modal .status li.--green {
  background: var(--c-green);
}
.func_modal .status li.--orange {
  background: var(--c-bg02);
  color: var(--c-orange);
}
.point_item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 4%;
  align-items: center;
  border-top: solid 1px var(--c-lightgray);
  padding: 30px 0;
}
.point_item:nth-child(even) {
  flex-direction: row-reverse;
}
.point_item .img_area {
  flex: 0 0 39%;
  max-width: 400px;
  aspect-ratio: 10 / 7;
}
.point_item .img_area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.point_item .txt_area {
  flex: 1;
}
.point_item .txt_area .en_font {
  font-size: 20px;
  color: var(--c-pink);
  line-height: 1;
}
.point_item:nth-child(2) .txt_area .en_font {
  color: var(--c-blue);
}
.point_item:nth-child(3) .txt_area .en_font {
  color: var(--c-green);
}
.point_item .txt_area h3 {
  margin: 10px 0 20px;
}
.point_item .txt_small {
  margin-top: 20px;
  color: var(--c-gray);
}

/*---------------------------------

  価格

---------------------------------*/
.price_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.price_item dt {
  font-size: 13px;
  line-height: 1.8;
}
.price_item dd {
  flex: 1;
}
.num,
.price_item .num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  line-height: 1.3;
}
.num .en_font {
  font-size: 150%;
}
.num .txt_small {
  font-weight: var(--fw-normal);
  font-size: 10px;
}

/*---------------------------------

  404ページ

---------------------------------*/
.not_found {
  text-align: center;
}
.not_found header {
  padding-top: 160px;
}
.not_found .inner {
  max-width: 750px;
}
.not_found h1 {
  color: var(--c-orange);
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.not_found h1 span {
  font-size: 235%;
  display: block;
  letter-spacing: 0.03em;
}
.not_found .content {
  padding: 50px 0 100px;
}
.not_found h2 {
  font-size: 26px;
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: var(--fw-bold);
}
.not_found .txt_basic {
  text-align: left;
}
.not_found .btn_area {
  padding-top: 40px;
}

/*
  導入事例、コラム　一覧
--------------------------*/
.pref {
  color: var(--c-pink);
  line-height: 1.7;
  font-size: 12px;
}
.pref:before {
  font-family: var(--ff-icon);
  content: "\f3c5";
  margin-right: 5px;
  font-weight: bold;
}
.cat_area,
.tag_area {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
}
.tag {
  line-height: 1.7;
  padding: 0 10px;
  border-radius: 5px;
  background: #fff;
  color: var(--c-gray);
  border: solid 1px #ddd;
  font-size: 12px;
  display: inline-block;
}
.tag:before {
  content: "#";
  margin-right: 3px;
  color: var(--c-orange);
  font-weight: bold;
  transition: 0.3s;
}
.cat {
  color: var(--c-orange);
  border: solid 1px var(--c-bg02);
  font-size: 15px;
  line-height: 2;
  padding: 0 10px;
  border-radius: 5px;
  background: var(--c-bg02);
  display: inline-block;
  font-size: 12px;
  line-height: 1.7;
}
time {
  color: var(--c-gray);
  line-height: 1.8;
  flex: 0 0 100%;
  font-size: 12px;
  letter-spacing: 1.5px;
}
@media (hover: hover) and (pointer: fine) {
  a.tag:hover,
  a.cat:hover {
    background: var(--c-orange);
    color: #fff;
    border-color: var(--c-orange);
  }
  a.tag:hover:before {
    color: #fff;
  }
  .clear_area .cat:hover {
    background: var(--c-gray);
    color: #fff;
  }
}
.voice_list {
  display: flex;
  gap: 30px 2.5%;
  flex-wrap: wrap;
}
.voice_list li {
  flex: 0 0 48.7%;
}
.voice_list li a {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  position: relative;
  border: solid 1px var(--c-lightgray);
  height: 100%;
}
.voice_list .img_area {
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 2;
  width: 100%;
}
.voice_list .img_area img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.voice_list .item_info {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 6px;
  padding: 25px 7%;
}
.voice_list .title {
  line-height: 1.7;
  flex: 0 0 100%;
}
.voice_list time + .title {
  margin-top: -10px;
}
.voice_list .catch_copy_list {
  display: block;
  font-size: 12px;
  line-height: 1.8;
  margin-top: -8px;
}
.voice_list .tag {
  pointer-events: none;
}
.voice_list.--lite .cat {
  background: var(--c-lightblue);
  border-color: var(--c-lightblue);
  font-size: 13px;
}
.voice_list.--lite .catch_copy_list {
  font-size: 13px;
  margin: 0;
}
.voice_list.--lite .txt_small {
  color: var(--c-txtgray);
  margin-top: -5px;
}
@media (hover: hover) and (pointer: fine) {
  .voice_list a:hover {
    opacity: 0.8;
  }
  .voice_list a:hover img {
    transform: scale(1.1, 1.1);
  }
}

/* PCサイズ------------------------------- */
@media screen and (min-width: 1101px) {
  .sp {
    display: none !important;
  }
  .tel {
    pointer-events: none;
  }
}

/* タブレット以下サイズ------------------------------- */
@media screen and (max-width: 1200px) {
  .footer {
    padding-bottom: 120px;
  }
  .footer .logo_area {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0 50px;
    flex: 1;
  }
  .footer .inner:first-child {
    align-items: center;
    flex-direction: column;
  }
  .footer .btn_area {
    width: 100%;
    max-width: 600px;
    flex-direction: row;
    padding-top: 0;
  }
  .footer .btn_area .btn {
    flex: 1;
  }
}

/* タブレット以下サイズ------------------------------- */
@media screen and (max-width: 1100px) {
  .ttl2 {
    font-size: 22px;
  }
  .content {
    padding: 100px 0;
  }
  .outer {
    padding: 100px 0;
  }
  .article_header .inner {
    padding: 120px 0 80px;
  }
  .modal {
    left: 5vw !important;
    margin-left: 0 !important;
    width: 90vw !important;
    max-width: 100% !important;
  }
  .cta_area .inner {
    flex-direction: column;
  }
  .cta_area .logo_area .ttl3 {
    justify-content: center;
    text-align: center;
  }
  .cta_cont {
    padding-top: 100px;
  }
}

/* タブレット（iPad）サイズ------------------------------- */
@media screen and (max-width: 1023px) {
  .ttl1 {
    font-size: 28px;
    gap: 20px 16px;
  }
  .ttl2 {
    font-size: 22px;
  }
  .voice_list {
    gap: 16px 2%;
  }
  .voice_list li {
    flex: 0 0 49%;
  }
  .footer .inner {
    flex-direction: column;
    align-items: center;
  }
  .article_header .ttl {
    font-size: 38px;
  }
  .ttl_area {
    margin-bottom: 50px;
  }
  .--deco {
    font-size: 20px;
  }

  .modal .scroll_area {
    padding: 20px 9% 60px;
  }
  .func_modal .inner_area {
    flex-direction: column;
    gap: 30px 0;
  }
  .func_modal .outline .ttl br {
    display: none;
  }
  .func_modal .outline {
    order: 1;
  }
  .func_modal .outline .ttl {
    font-size: 28px;
  }
  .func_modal .outline_img_area {
    width: 100%;
    max-width: 100%;
    flex: none;
  }
  .point_area {
    order: 2;
  }
  .point_item,
  .point_item:nth-child(even) {
    gap: 10px 0;
    justify-content: center;
  }
  .point_item .txt_area {
    width: 100%;
    flex: 0 0 100%;
  }
  .point_item .img_area {
    flex: 0 0 80%;
    max-width: 100%;
  }
  .cta_cont .item {
    padding: 0 4% 40px;
  }
}

/* スマホ以上------------------------------- */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .tel {
    pointer-events: none !important;
  }
}

/* スマホサイズ------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .txt_small {
    font-size: 11px;
  }
  .ttl_area {
    margin-bottom: 40px;
  }
  .ttl1 {
    font-size: min(7vw, 28px);
    gap: 0 12px;
  }
  .ttl1:before {
    flex: 0 0 38px;
  }
  .--deco {
    padding: 0 30px;
  }
  .--special {
    gap: 8px 0;
  }
  .--special .ttl1 {
    gap: 8px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ttl1 .--orange {
    font-size: 130%;
  }
  .ttl2 {
    font-size: min(5.3vw, 20px);
    gap: 0 10px;
  }
  .ttl3 {
    font-size: 18px;
  }
  .article_header {
    background: url(../img/common/pattern_header_sp.svg) bottom center / cover no-repeat;
  }
  .article_header .inner {
    padding: 120px 0 60px;
  }
  .article_header .ttl {
    font-size: min(8.2vw, 32px);
  }
  .article_header .ttl .en_font {
    font-size: 13px;
  }
  .article_header .ttl .en_font:before {
    width: 6px;
    height: 6px;
  }
  .content {
    padding: 80px 0;
  }
  .btn_area,
  .actions {
    padding-top: 45px;
    gap: 10px 10px;
  }
  .btn,
  .hs-button {
    max-width: 320px;
    height: 56px;
    font-size: 16px;
  }
  .btn img {
    width: 32px;
  }
  .btn span {
    flex: 1;
    text-align: center;
  }
  .cta_area .logo_new {
    height: 57px;
  }
  .cta_cont {
    padding-top: 110px;
    flex-direction: column;
    gap: 80px 0;
  }
  .cta_cont .img_area {
    width: 250px;
    margin: -65px auto 10px;
  }
  .cta_cont .item {
    padding: 0 7% 32px;
  }
  .cta_area .btn {
    height: 64px;
    font-size: 18px;
  }
  .cta_area .btn img {
    width: 48px;
  }
  .footer {
    padding: 56px 0 100px;
  }
  .footer .logo_area {
    width: 100%;
    justify-content: space-between;
  }
  .footer .sns_area a {
    font-size: 26px;
  }
  .footer .inner_menu a {
    font-size: 11px;
  }
  .footer .main_menu {
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }
  .footer .inner_menu {
    width: 180px;
  }
  .footer .mark_area {
    align-items: center;
    width: 100%;
    justify-content: center;
  }
  .footer .mark_area .txt_small {
    font-size: 11px;
  }
  .outer {
    padding: 80px 0;
  }
  .round_wrap {
    border-radius: 30px;
    padding: 50px 6%;
  }
  .round_wrap.--color02:before {
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    top: -4px;
    left: -4px;
    --size: 30px !important;
    background: url(../img/common/corner_lt_sp.svg) left top / var(--size) no-repeat, url(../img/common/corner_rt_sp.svg) right top / var(--size) no-repeat, url(../img/common/corner_lb_sp.svg) left bottom / var(--size) no-repeat, url(../img/common/corner_rb_sp.svg) right bottom / var(--size) no-repeat;
    z-index: -1;
  }
  .pref {
    font-size: 12px;
  }
  .voice_list {
    gap: 16px 0 !important;
  }
  .voice_list li {
    flex: 0 0 100%;
  }
  .footer {
    overflow: hidden;
  }
  .slide {
    margin-bottom: 0;
    width: 112%;
    margin-left: -6%;
  }
  .slide-arrow {
    margin-top: -22px;
    font-size: 18px;
    width: 45px;
    line-height: 45px;
    left: 15px;
  }
  .next-arrow {
    left: auto;
    right: 15px;
  }
  .slick-dots li {
    padding: 0 5px;
    margin: 0 2px;
  }
  .slick-dots li button {
    width: 8px;
    height: 8px;
  }
  .not_found header {
    padding-top: 120px;
  }
  .not_found h1 {
    font-size: 45px;
  }
  .not_found .content {
    padding-top: 40px;
  }
  .not_found h2 {
    font-size: 20px;
  }
  .modal {
    border-radius: 32px;
    padding: 40px 0 0;
  }
  .modal .close_btn {
    right: 10px;
    top: 5px;
    font-size: 25px;
    padding: 8px;
  }
  .modal .scroll_area {
    padding: 0 7% 40px;
  }
  .func_modal .outline {
    gap: 10px 10px;
  }
  .func_modal .outline .ttl {
    font-size: 24px;
  }
  .func_modal .status {
    flex-wrap: wrap;
  }
  .func_modal .status li {
    padding: 0 12px;
  }
  .point_area {
    gap: 70px 0;
  }
  .point_item {
    gap: 20px 0;
  }
  .point_item .img_area {
    flex: 0 0 100%;
  }
  .point_item .txt_area h3 {
    margin: 5px 0 15px;
  }
  .point_item .txt_area .en_font {
    font-size: 16px;
  }
  .dot_list {
    gap: 3px 0;
  }
  .dot_list li {
    line-height: 1.6;
  }
}
