@charset "UTF-8";
/*
 * htmlのフォントサイズ
 * @args ベースの画面幅
 */
/*
 * ルートのフォントサイズを基準にフォントサイズを可変にする（SPはrootPxを設定しておくこと）
 * @args 最大値（デザイン上の数値）
 */
/*
 * スマホの時のfz設定（XDアートボードサイズで引用）
 */
/*
 * get_vwの設定
 */
/*
 * clampの計算
 * @args 最大値
 */
/*
 * get_vwの設定(スマホ)
 */
/*
 * get_vhの設定(スマホ)
 */
/*
 * get_dvhの設定(スマホ)
 */
/*
 * margin-topがマイナス値の場合、pxを%に変換
 */
/*
 * margin-topがマイナス値の場合、pxを%に変換(スマホ)
 */
/*
 * line-heightの計算
 */
/*
 * breakpointの設定
 */
/*
 * BUY ボタン
 */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
  padding: 0;
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style-type: none;
}

/* Set core root defaults */
html {
  width: 100%;
  overflow-x: hidden;
  /* 	scrollbar-gutter: stable; */
}

/* Set core body defaults */
body {
  width: 100%;
  min-height: 100vh;
  line-height: 1.5;
  /* 	text-rendering: optimizeSpeed; */
}

/* A elements default styles */
a {
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

input[type=text],
input[type=search] {
  background-color: #fff !important;
  background: #fff !important;
}
input[type=text]:active, input[type=text]:focus,
input[type=search]:active,
input[type=search]:focus {
  outline: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* @media (prefers-reduced-motion: reduce) {
/* 	html:focus-within {
		scroll-behavior: auto;
	}

	* ,
	*::before ,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	} 
} */
input:-webkit-autofill {
  -webkit-appearance: none !important;
          appearance: none !important;
  background-color: transparent !important;
  background-image: none !important;
  color: inherit !important;
  -webkit-box-shadow: none !important; /* 背景上書き */
  -webkit-transition: background-color 9999s ease-in-out 0s !important;
  transition: background-color 9999s ease-in-out 0s !important; /* autofill背景を遅延で消す */
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
}

@font-face {
  font-family: "ryuminPro";
  src: url("/static/full/images/cts1/2211_sc_knit/A-OTF-RyuminPro-Medium.otf") format("truetype");
}
/** --------------------------------
* 引数で指定した色の明るさに応じて白か黒を出力する関数
*
* @param $color カラーコード
*/
/** --------------------------------
* 画像の縦横比を指定する関数  figureタグに付与
*
* @param $height 横幅100の時の縦の割合 *「%」で指定
*/
/** --------------------------------
* cssの値を単位を除いて数字だけにしてくれる関数
*
* @param 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* 値の「単位」を取得する関数
*
* @param $value 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* pxやremをvwに変換してくれる関数
*
* @param $viewport pcデザインの横幅
* @param $fontSize フォントサイズ(pxでもremでも)
*/
/** --------------------------------
* フォントサイズをレスポンシブで調整する関数
*
* @param $pc pcのフォントサイズ
* @param $sp spのフォントサイズ
*/
* {
  overflow-wrap: break-word;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: middle;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  opacity: 0.7;
}

input,
textarea,
button {
  padding: 8px 12px;
  border: 1px solid black;
}
input.-reset,
textarea.-reset,
button.-reset {
  padding: 0;
  border: none;
}

button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
button:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  opacity: 0.7;
}

pre {
  padding: 8px 12px;
  background-color: lightgray;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000000;
  font-size: 62.5%;
  background-color: #ffffff;
  scroll-behavior: smooth; /* スムーススクロールを有効にする */
  scroll-padding-top: clamp(-50px, 3.90625vw, 50px);
}
html.-noScrol, html.-fixed {
  overflow: hidden;
}

:target {
  scroll-margin-top: clamp(-50px, 3.90625vw, 50px); /* ヘッダーの高さ分の余白を確保 */
}
@media screen and (max-width: 767px) {
  :target {
    scroll-margin-top: 16vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #2E3639;
  line-height: 1.65;
  letter-spacing: 0;
  background-color: #ffffff;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
body ::-webkit-scrollbar {
  display: none;
}

.inner {
  width: clamp(-1080px, 84.375vw, 1080px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 91.4666666667vw;
  }
}

.inner-856 {
  width: clamp(-856px, 66.875vw, 856px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner-856 {
    width: 91.4666666667vw;
  }
}

/* 共通スタイル */
a {
  color: #000000;
}

.-en {
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.example {
  width: 100%;
}
.example .example__title {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .example .example__title {
    margin-bottom: 6.4vw;
  }
}
.example .example__swiper {
  width: 100%;
  position: relative;
}
.example .example__swiper .example__inner {
  width: 100%;
}
.example .example__swiper .example__inner .example__item {
  width: clamp(-344px, 26.875vw, 344px);
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__inner .example__item {
    width: 91.4666666667vw;
  }
}
.example .example__swiper .example__inner .example__item img {
  width: 100%;
  margin-bottom: clamp(-14px, 1.09375vw, 14px);
  aspect-ratio: 344/287;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
  background: #ffffff;
  border: 1px solid #F2F5F8;
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__inner .example__item img {
    margin-bottom: 3.7333333333vw;
    border-radius: 0.5333333333vw;
    overflow: hidden;
  }
}
.example .example__swiper .example__inner .example__item .example__item_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: clamp(-2px, 0.15625vw, 2px) clamp(-10px, 0.78125vw, 10px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-8px, 0.625vw, 8px);
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2285C2;
  padding-bottom: clamp(-2px, 0.15625vw, 2px) clamp(-10px, 0.78125vw, 10px);
  border-radius: clamp(-16px, 1.25vw, 16px);
  background: var(--background-blue, #CFEDFF);
  margin-bottom: clamp(-6px, 0.46875vw, 6px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__inner .example__item .example__item_title {
    padding: 0.5333333333vw 2.6666666667vw;
    gap: 2.1333333333vw;
    font-size: 3.2vw;
    border-radius: 4.2666666667vw;
    margin-bottom: 1.6vw;
  }
}
.example .example__swiper .example__inner .example__item .example__item_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  color: #2E3639;
  margin-bottom: clamp(-4px, 0.3125vw, 4px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__inner .example__item .example__item_text {
    font-size: 4.2666666667vw;
    line-height: 1.375;
    margin-bottom: 1.0666666667vw;
  }
}
.example .example__swiper .example__inner .example__item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__inner .example__item ul {
    gap: 0 2.1333333333vw;
  }
}
.example .example__swiper .example__inner .example__item ul li {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8333333333;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__inner .example__item ul li {
    font-size: 3.2vw;
    line-height: 1.8333333333;
  }
}
.example .example__swiper .example__scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__scrollbar {
    display: block;
    width: 100%;
    height: 1.3333333333vw;
    background: #D3D3D3;
    margin-top: 6.4vw;
  }
}
.example .example__swiper .example__scrollbar .swiper-scrollbar-drag {
  background: #2285C2;
}
.example .example__swiper .example__scrollbar.swiper-scrollbar-horizontal {
  position: static;
}
.example .example__swiper .example__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__pagination {
    margin-top: 10.6666666667vw;
  }
}
.example .example__swiper .example__pagination .swiper-pagination-bullet {
  width: clamp(-12px, 0.9375vw, 12px);
  height: clamp(-12px, 0.9375vw, 12px);
  background: #A1A1A1;
  opacity: 1;
  margin: 0 clamp(-6px, 0.46875vw, 6px);
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__pagination .swiper-pagination-bullet {
    width: 3.2vw;
    height: 3.2vw;
    margin: 0 1.6vw;
  }
}
.example .example__swiper .example__pagination .swiper-pagination-bullet-active {
  background: #2285C2;
}
.example .example__swiper .example__navigation_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-24px, 1.875vw, 24px);
  margin-top: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__navigation_inner {
    gap: 6.4vw;
    margin-top: 6.4vw;
  }
}
.example .example__swiper .example__navigation_inner .example__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__navigation_inner .example__navigation {
    gap: 2.1333333333vw;
  }
}
.example .example__swiper .example__navigation_inner .example__navigation .example__navigation_prev,
.example .example__swiper .example__navigation_inner .example__navigation .example__navigation_next {
  position: static;
  width: clamp(-36px, 2.8125vw, 36px);
  height: clamp(-36px, 2.8125vw, 36px);
  background: #2E3639;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  cursor: pointer;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__navigation_inner .example__navigation .example__navigation_prev,
  .example .example__swiper .example__navigation_inner .example__navigation .example__navigation_next {
    width: 9.6vw;
    height: 9.6vw;
  }
}
.example .example__swiper .example__navigation_inner .example__navigation .example__navigation_prev::after,
.example .example__swiper .example__navigation_inner .example__navigation .example__navigation_next::after {
  font-size: clamp(-14px, 1.09375vw, 14px);
  color: #ffffff;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__navigation_inner .example__navigation .example__navigation_prev::after,
  .example .example__swiper .example__navigation_inner .example__navigation .example__navigation_next::after {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .example .example__swiper .example__navigation_inner .content__more_link {
    margin-left: auto;
  }
}

/* モーダル */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
}
.image-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.image-modal .image-modal-content {
  width: 100%;
  max-width: 80vw;
  height: 70vh;
}
@media screen and (max-width: 767px) {
  .image-modal .image-modal-content {
    max-width: 90vw;
    height: 80vh;
  }
}
.image-modal .image-modal-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-close {
  display: block;
  position: absolute;
  top: clamp(-80px, 6.25vw, 80px);
  right: clamp(-80px, 6.25vw, 80px);
  width: clamp(-30px, 2.34375vw, 30px);
  height: clamp(-30px, 2.34375vw, 30px);
  background: none;
  border: none;
  cursor: pointer;
  background: #ffffff;
  border-radius: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /* Xマーク		 */
}
@media screen and (max-width: 767px) {
  .image-close {
    top: 5.3333333333vw;
    right: 5.3333333333vw;
    width: 8vw;
    height: 8vw;
  }
}
.image-close::before {
  content: "";
  display: block;
  width: clamp(-20px, 1.5625vw, 20px);
  height: clamp(-2px, 0.15625vw, 2px);
  background: #2E3639;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .image-close::before {
    width: 5.3333333333vw;
    height: 0.5333333333vw;
  }
}
.image-close::after {
  content: "";
  display: block;
  width: clamp(-2px, 0.15625vw, 2px);
  height: clamp(-20px, 1.5625vw, 20px);
  background: #2E3639;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .image-close::after {
    width: 0.5333333333vw;
    height: 5.3333333333vw;
  }
}

/* スクロールバー */
.simplebar-scrollbar {
  background: #16A2A4;
  height: clamp(-4px, 0.3125vw, 4px);
  border-radius: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .simplebar-scrollbar {
    height: 1.0666666667vw;
    border-radius: 4.2666666667vw;
  }
}

.simplebar-horizontal {
  height: clamp(-4px, 0.3125vw, 4px) !important;
}
@media screen and (max-width: 767px) {
  .simplebar-horizontal {
    height: 1.0666666667vw !important;
  }
}

.simplebar-track {
  background: #D3D3D3;
  height: clamp(-4px, 0.3125vw, 4px) !important;
  border-radius: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .simplebar-track {
    height: 1.0666666667vw !important;
    border-radius: 4.2666666667vw;
  }
}

/* 表 */
table.tbl-brand {
  border-collapse: collapse;
  width: 100%;
  border: 2px solid #381417;
}

table.tbl-brand th, table.tbl-brand td {
  border: 1px solid #ccc;
  padding: 8px 12px;
}

table.tbl-row-lines th, table.tbl-row-lines td {
  border-bottom: 1px solid #ddd;
  padding: 8px 12px;
}

/* 行背景 */
tr.row-brown > th, tr.row-brown > td {
  background: #381417;
  color: #fff;
}

tr.row-orange > th, tr.row-orange > td {
  background: #ff6a00;
  color: #fff;
}

tr.row-green > th, tr.row-green > td {
  background: #14A2A4;
  color: #fff;
}

/* セル背景 */
td.cell-brown, th.cell-brown {
  background: #381417;
  color: #fff;
}

td.cell-orange, th.cell-orange {
  background: #ff6a00;
  color: #fff;
}

td.cell-green, th.cell-green {
  background: #14A2A4;
  color: #fff;
}

td.cell-head, th.cell-head {
  background: #381417;
  color: #fff;
  font-weight: 700;
}

/* KV関連 */
.common__kv {
  padding: clamp(-64px, 5vw, 64px) 0 clamp(-80px, 6.25vw, 80px);
  background: #2285C2;
}
@media screen and (max-width: 767px) {
  .common__kv {
    padding: 10.6666666667vw 0 21.3333333333vw;
  }
}
.common__kv .common__kv_inner .common__kv_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-8px, 0.625vw, 8px);
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .common__kv .common__kv_inner .common__kv_ttl {
    gap: 2.1333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.common__kv .common__kv_inner .common__kv_ttl .common__kv_ttl_img {
  width: clamp(-36px, 2.8125vw, 36px);
}
@media screen and (max-width: 767px) {
  .common__kv .common__kv_inner .common__kv_ttl .common__kv_ttl_img {
    width: 7.4666666667vw;
  }
}
.common__kv .common__kv_inner .common__kv_ttl h2 {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .common__kv .common__kv_inner .common__kv_ttl h2 {
    font-size: 4.8vw;
  }
}
.common__kv .common__kv_inner .common__kv_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(-16px, 1.25vw, 16px);
  /* 奇数 */
  /* 偶数 */
}
@media screen and (max-width: 767px) {
  .common__kv .common__kv_inner .common__kv_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 11.4666666667vw;
  }
}
.common__kv .common__kv_inner .common__kv_list .common__kv_list_item {
  width: clamp(-258px, 20.15625vw, 258px);
  height: clamp(-138px, 10.78125vw, 138px);
}
@media screen and (max-width: 767px) {
  .common__kv .common__kv_inner .common__kv_list .common__kv_list_item {
    width: 68.8vw;
    height: 26.6666666667vw;
  }
}
.common__kv .common__kv_inner .common__kv_list .common__kv_list_item .common__kv_list_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .common__kv .common__kv_inner .common__kv_list .common__kv_list_item .common__kv_list_item_inner {
    border-radius: 0.5333333333vw;
  }
}
.common__kv .common__kv_inner .common__kv_list .common__kv_list_item .common__kv_list_item_inner::before {
  content: "";
  display: block;
  width: clamp(-47px, 3.671875vw, 47px);
  height: clamp(-59px, 4.609375vw, 59px);
  background: url(../../image/solution/img_solution_kv_fukidashi1.webp) no-repeat center center/contain;
  background-size: contain;
  position: absolute;
  bottom: calc(clamp(-28px, 2.1875vw, 28px) * -1);
  left: 0;
}
@media screen and (max-width: 767px) {
  .common__kv .common__kv_inner .common__kv_list .common__kv_list_item .common__kv_list_item_inner::before {
    width: 12.5333333333vw;
    height: 15.7333333333vw;
    bottom: -7.4666666667vw;
  }
}
.common__kv .common__kv_inner .common__kv_list .common__kv_list_item .common__kv_list_item_inner .common__kv_list_item_ttl {
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-weight: 700;
  line-height: 1.5555555556;
  color: #2E3639;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .common__kv .common__kv_inner .common__kv_list .common__kv_list_item .common__kv_list_item_inner .common__kv_list_item_ttl {
    font-size: 4.8vw;
    line-height: 1.5;
  }
}
.common__kv .common__kv_inner .common__kv_list .common__kv_list_item .common__kv_list_item_inner .common__kv_list_item_ttl span {
  color: #2285C2;
}
.common__kv .common__kv_inner .common__kv_list .common__kv_list_item .common__kv_list_item_inner .common__kv_list_item_icon {
  display: block;
  width: clamp(-22px, 1.71875vw, 22px);
  height: clamp(-22px, 1.71875vw, 22px);
  background: #2285C2;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .common__kv .common__kv_inner .common__kv_list .common__kv_list_item.-large-sp {
    height: 33.8666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .common__kv .common__kv_inner .common__kv_list .common__kv_list_item:nth-child(odd) {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .common__kv .common__kv_inner .common__kv_list .common__kv_list_item:nth-child(even) {
    margin-right: auto;
  }
}

/* 導入事例詳細 */
.common__related_detail_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .common__related_detail_list {
    gap: 10.6666666667vw;
  }
}
.common__related_detail_list .common__related_detail_main {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_main {
    margin-bottom: 10.6666666667vw;
  }
}
.common__related_detail_list .common__related_detail_lead {
  width: 100%;
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-bottom: 1px solid #D3D3D3;
  padding-bottom: clamp(-12px, 0.9375vw, 12px);
  margin-bottom: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_lead {
    font-size: 4.8vw;
    padding-bottom: 3.2vw;
    margin-bottom: 3.2vw;
  }
}
.common__related_detail_list .common__related_detail_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_text {
    font-size: 3.7333333333vw;
    margin-bottom: 4.2666666667vw;
  }
}
.common__related_detail_list .common__related_detail_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 8vw;
  }
}
.common__related_detail_list .common__related_detail_content:last-of-type {
  margin-bottom: 0;
}
.common__related_detail_list .common__related_detail_content .detail_content__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-21px, 1.640625vw, 21px);
  width: clamp(-660px, 51.5625vw, 660px);
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__left {
    width: 100%;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__left img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.common__related_detail_list .common__related_detail_content .detail_content__left .detail_content__left_img_wrap {
  width: 100%;
}
.common__related_detail_list .common__related_detail_content .detail_content__left .detail_content__left_img_wrap img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.common__related_detail_list .common__related_detail_content .detail_content__left .detail_content__left_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__left .detail_content__left_text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__left .detail_content__left_link {
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  text-decoration: underline;
  color: #2E3639;
  text-underline-offset: clamp(-3px, 0.234375vw, 3px);
  margin-top: clamp(-5px, 0.390625vw, 5px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__left .detail_content__left_link {
    font-size: 3.2vw;
    margin-top: 1.3333333333vw;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right {
  width: clamp(-380px, 29.6875vw, 380px);
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right {
    width: 100%;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner {
  width: 100%;
  background: #F2F5F8;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  padding: clamp(-24px, 1.875vw, 24px) clamp(-24px, 1.875vw, 24px) clamp(-24px, 1.875vw, 24px) clamp(-32px, 2.5vw, 32px);
  background: #F2F5F8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner {
    border-radius: 0.5333333333vw;
    padding: 4.2666666667vw 4.2666666667vw 8.5333333333vw;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-12px, 0.9375vw, 12px);
  margin-bottom: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_title {
    gap: 3.2vw;
    margin-bottom: 4.2666666667vw;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_title .right_inner_title__icon {
  width: clamp(-40px, 3.125vw, 40px);
  height: clamp(-40px, 3.125vw, 40px);
  background: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_title .right_inner_title__icon {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_title .right_inner_title__icon .detail_content__right_inner_img {
  width: clamp(-20px, 1.5625vw, 20px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_title .right_inner_title__icon .detail_content__right_inner_img {
    width: 3.7333333333vw;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_title .right_inner_title__icon.-second .detail_content__right_inner_img {
  width: clamp(-20px, 1.5625vw, 20px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_title .right_inner_title__icon.-second .detail_content__right_inner_img {
    width: 4.2666666667vw;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_title .right_inner_title__text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_title .right_inner_title__text {
    font-size: 4.2666666667vw;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_list {
    gap: 2.1333333333vw;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_list li {
  width: 100%;
  padding-left: clamp(-24px, 1.875vw, 24px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_list li {
    padding-left: 6.4vw;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_list li::before {
  content: "";
  width: clamp(-4px, 0.3125vw, 4px);
  height: clamp(-4px, 0.3125vw, 4px);
  background: #2285C2;
  border-radius: 50%;
  position: absolute;
  left: clamp(-9px, 0.703125vw, 9px);
  top: clamp(-9px, 0.703125vw, 9px);
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_list li::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    left: 2.4vw;
    top: 2.4vw;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_list li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7142857143;
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__right_inner_list li p {
    font-size: 3.7333333333vw;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__left_bg {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  bottom: calc(clamp(-15px, 1.171875vw, 15px) * -1);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner .detail_content__left_bg {
    bottom: -4vw;
  }
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner.-after {
  background: #CFEDFF;
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_inner.-after .detail_content__right_inner::after {
  content: "";
  display: block;
}
.common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_text {
  margin-top: 8.5333333333vw;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .common__related_detail_list .common__related_detail_content .detail_content__right .detail_content__right_text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}

/* ページネーション */
.page_pagination {
  margin-top: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_pagination {
    margin-top: 10.6666666667vw;
  }
}
.page_pagination .pagination_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-12px, 0.9375vw, 12px);
}
.page_pagination .pagination_list li {
  /* 表示中のページ */
}
.page_pagination .pagination_list li a, .page_pagination .pagination_list li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-36px, 2.8125vw, 36px);
  height: clamp(-36px, 2.8125vw, 36px);
  border: 1px solid #D3D3D3;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  font-family: Lato;
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_pagination .pagination_list li a, .page_pagination .pagination_list li span {
    font-size: 3.2vw;
    width: 9.6vw;
    height: 9.6vw;
    border-radius: 0.5333333333vw;
  }
}
.page_pagination .pagination_list li span.current {
  background: #2285C2;
  border: 1px solid #2285C2;
  color: #ffffff;
}
.page_pagination .pagination_list li.-prev.-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.page_pagination .pagination_list li.-next.-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* クッキーバナー */
.cn-text-container {
  text-align: left;
}

/* 固定ページ共通関連 */
.page {
  padding-top: clamp(-96px, 7.5vw, 96px);
}
@media screen and (max-width: 767px) {
  .page {
    padding-top: 17.0666666667vw;
  }
}

.page_top {
  padding: clamp(-64px, 5vw, 64px) 0 clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_top {
    padding: 10.6666666667vw 0 8.5333333333vw;
  }
}

.page_breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
  margin-bottom: clamp(-8px, 0.625vw, 8px);
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .page_breadcrumbs {
    gap: 2.1333333333vw;
    margin-bottom: 3.2vw;
  }
}
.page_breadcrumbs li {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media screen and (max-width: 767px) {
  .page_breadcrumbs li {
    font-size: 3.2vw;
  }
}
.page_breadcrumbs li a {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .page_breadcrumbs li a {
    font-size: 3.2vw;
  }
}
.page_breadcrumbs .page_breadcrumbs__arrow {
  position: relative;
  width: clamp(-6px, 0.46875vw, 6px);
  height: clamp(-6px, 0.46875vw, 6px);
}
@media screen and (max-width: 767px) {
  .page_breadcrumbs .page_breadcrumbs__arrow {
    width: 1.6vw;
    height: 1.6vw;
  }
}
.page_breadcrumbs .page_breadcrumbs__arrow:after {
  content: "";
  position: absolute;
  width: clamp(-5px, 0.390625vw, 5px);
  height: clamp(-5px, 0.390625vw, 5px);
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-40%) rotate(45deg);
  transform: translateY(-40%) rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  border: 1px solid #222222;
  border-style: solid solid none none;
}
@media screen and (max-width: 767px) {
  .page_breadcrumbs .page_breadcrumbs__arrow:after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
  }
}

/* ページナビゲーション関連 */
.page_nav {
  margin-bottom: clamp(-26px, 2.03125vw, 26px);
}
@media screen and (max-width: 767px) {
  .page_nav {
    margin-bottom: 0;
    padding-top: 10.6666666667vw;
    background: #F2F5F8;
    width: 100%;
  }
}
.page_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3.7333333333vw;
    margin-left: 4.2666666667vw;
  }
}
.page_nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_nav ul li a {
    font-size: 4.2666666667vw;
    line-height: 1.375;
    gap: 2.6666666667vw;
  }
}

/* ページタイトル関連 */
.page_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-40px, 3.125vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_title {
    font-size: 7.4666666667vw;
  }
}

.page_lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: clamp(-1080px, 84.375vw, 1080px);
  margin: 0 auto;
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-112px, 8.75vw, 112px);
}
@media screen and (max-width: 767px) {
  .page_lead {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 6.4vw;
    padding: 14.9333333333vw 0 14.9333333333vw;
  }
}
.page_lead .page_lead__title {
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_lead .page_lead__title {
    font-size: 5.8666666667vw;
  }
}
.page_lead .page_lead__text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  width: clamp(-570px, 44.53125vw, 570px);
}
@media screen and (max-width: 767px) {
  .page_lead .page_lead__text {
    font-size: 4.2666666667vw;
    width: 100%;
  }
}

.sec_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: clamp(-56px, 4.375vw, 56px);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .sec_title {
    margin-bottom: 10.6666666667vw;
  }
}
.sec_title .sec_title__img {
  width: clamp(-32px, 2.5vw, 32px);
  margin-right: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .sec_title .sec_title__img {
    width: 5.8666666667vw;
    margin-right: 2.1333333333vw;
  }
}
.sec_title .sec_title__img img {
  width: 100%;
}
.sec_title .sec_title__main {
  font-family: "Noto Sans JP";
  font-size: clamp(-36px, 2.8125vw, 36px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .sec_title .sec_title__main {
    font-size: 5.8666666667vw;
  }
}
.sec_title .sec_title__bar {
  width: clamp(-24px, 1.875vw, 24px);
  height: 1px;
  background-color: #2E3639;
  margin: 0 clamp(-10px, 0.78125vw, 10px);
}
@media screen and (max-width: 767px) {
  .sec_title .sec_title__bar {
    width: 4.8vw;
    margin: 0 2.1333333333vw;
  }
}
.sec_title .sec_title__sub {
  font-family: Lato;
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .sec_title .sec_title__sub {
    font-size: 3.2vw;
  }
}
.sec_title .sec_title__sub.-small {
  font-size: clamp(-16px, 1.25vw, 16px);
  margin-left: clamp(-104px, 8.125vw, 104px);
  position: relative;
  top: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .sec_title .sec_title__sub.-small {
    font-size: 3.2vw;
  }
}
.sec_title.sec_title--example .sec_title__img {
  width: clamp(-32px, 2.5vw, 32px);
  margin-right: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .sec_title.sec_title--example .sec_title__img {
    display: none;
  }
}
.sec_title.sec_title--example .sec_title__img img {
  width: 100%;
}
.sec_title.sec_title--example .sec_title__main {
  font-family: "Noto Sans JP";
  font-size: clamp(-36px, 2.8125vw, 36px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .sec_title.sec_title--example .sec_title__main {
    font-size: 4.2666666667vw;
  }
}
.sec_title.sec_title--example .sec_title__sub {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec_title.sec_title--example .sec_title__sub {
    display: block;
    font-size: 3.2vw;
    color: #2285C2;
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-left: 4.8vw;
    position: relative;
    top: 0.2666666667vw;
  }
}

.sec_title.-size-medium .sec_title__img {
  width: clamp(-24px, 1.875vw, 24px);
  margin-right: clamp(-10px, 0.78125vw, 10px);
}
@media screen and (max-width: 767px) {
  .sec_title.-size-medium .sec_title__img {
    width: 4.2666666667vw;
    margin-right: 2.1333333333vw;
  }
}
.sec_title.-size-medium .sec_title__main {
  font-size: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .sec_title.-size-medium .sec_title__main {
    font-size: 4.2666666667vw;
  }
}
.sec_title.-size-medium .sec_title__bar {
  width: clamp(-24px, 1.875vw, 24px);
  margin: 0 clamp(-10px, 0.78125vw, 10px);
}
@media screen and (max-width: 767px) {
  .sec_title.-size-medium .sec_title__bar {
    width: 4.8vw;
    margin: 0 1.6vw;
  }
}
.sec_title.-size-medium .sec_title__sub {
  font-size: clamp(-18px, 1.40625vw, 18px);
}
@media screen and (max-width: 767px) {
  .sec_title.-size-medium .sec_title__sub {
    font-size: 3.2vw;
  }
}

.sec_title2 {
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4375;
  color: #2E3639;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_title2 {
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
  }
}
.sec_title2 span {
  display: block;
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: clamp(-8px, 0.625vw, 8px);
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .sec_title2 span {
    font-size: 3.2vw;
    margin-top: 2.1333333333vw;
  }
}

.page_sub_title {
  font-family: Lato;
  font-size: clamp(-56px, 4.375vw, 56px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  color: #2285C2;
  opacity: 0.15;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page_sub_title {
    font-size: 9.0666666667vw;
  }
}

.page_sub_title2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-16px, 1.25vw, 16px);
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_sub_title2 {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
    gap: 4.8vw;
  }
}
.page_sub_title2 span {
  font-family: Lato;
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .page_sub_title2 span {
    font-size: 3.2vw;
  }
}
.page_sub_title2.-green span {
  color: #16A2A4;
}

/* 検索フォーム関連 */
.product__item {
  width: clamp(-240px, 18.75vw, 240px);
}
@media screen and (max-width: 767px) {
  .product__item {
    width: 39.2vw;
  }
}
.product__item a {
  width: 100%;
}
.product__item a img {
  width: 100%;
  aspect-ratio: 240/200;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  border: 1px solid #D3D3D3;
  margin-bottom: clamp(-10px, 0.78125vw, 10px);
}
@media screen and (max-width: 767px) {
  .product__item a img {
    aspect-ratio: 147/123;
    margin-bottom: 2.1333333333vw;
    border-radius: 0.5333333333vw;
  }
}
.product__item a .product__item_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .product__item a .product__item_title {
    font-size: 3.7333333333vw;
    margin-bottom: 2.1333333333vw;
  }
}
.product__item a .product__item_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-4px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .product__item a .product__item_tags {
    gap: 1.0666666667vw;
  }
}
.product__item a .product__item_tags li {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: clamp(-2px, 0.15625vw, 2px) clamp(-10px, 0.78125vw, 10px);
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-weight: 700;
  background: #DAF2EF;
  color: #16A2A4;
  border-radius: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .product__item a .product__item_tags li {
    font-size: 2.6666666667vw;
    padding: 0.5333333333vw 2.6666666667vw;
    border-radius: 4.2666666667vw;
  }
}

.page_search__inner {
  background: #DAF2EF;
  border-radius: clamp(-4px, 0.3125vw, 4px);
  padding: clamp(-40px, 3.125vw, 40px) clamp(-140px, 10.9375vw, 140px);
}
@media screen and (max-width: 767px) {
  .page_search__inner {
    padding: 8.5333333333vw 4.2666666667vw;
  }
}
.page_search__inner .page_search__title {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  color: #2E3639;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_search__inner .page_search__title {
    font-size: 4.8vw;
    margin: 0 auto 6.4vw;
  }
}
.page_search__inner .page_search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_search__inner .page_search__form {
    gap: 0;
  }
}
.page_search__inner .page_search__form input {
  width: clamp(-664px, 51.875vw, 664px);
  height: clamp(-50px, 3.90625vw, 50px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  border: 1px solid #16A2A4;
  font-size: clamp(-16px, 1.25vw, 16px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_search__inner .page_search__form input {
    width: 71.2vw;
    height: 11.7333333333vw;
    border-radius: 0.5333333333vw 0 0 0.5333333333vw;
    font-size: 4.2666666667vw;
  }
}
.page_search__inner .page_search__form input::-webkit-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.page_search__inner .page_search__form input::-moz-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.page_search__inner .page_search__form input:-ms-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.page_search__inner .page_search__form input::-ms-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.page_search__inner .page_search__form input::placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
@media screen and (max-width: 767px) {
  .page_search__inner .page_search__form input::-webkit-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .page_search__inner .page_search__form input::-moz-placeholder {
    font-size: 4.2666666667vw;
  }
  .page_search__inner .page_search__form input:-ms-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .page_search__inner .page_search__form input::-ms-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .page_search__inner .page_search__form input::placeholder {
    font-size: 4.2666666667vw;
  }
}
.page_search__inner .page_search__form button {
  width: clamp(-128px, 10vw, 128px);
  height: clamp(-50px, 3.90625vw, 50px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  border: 1px solid #16A2A4;
  background: #16A2A4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_search__inner .page_search__form button {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
    font-size: 2.6666666667vw;
    border-radius: 0 0.5333333333vw 0.5333333333vw 0;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .page_search__inner .page_search__form button .search-button__icon {
    display: block;
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .page_search__inner .page_search__form button .search-button__icon img {
    width: 100%;
  }
}

.-no-result {
  display: block;
}
.-no-result.-active {
  display: none;
}

.s_result {
  padding-bottom: clamp(-120px, 9.375vw, 120px);
  margin-top: clamp(-120px, 9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .s_result {
    padding-bottom: 21.3333333333vw;
    margin-top: 21.3333333333vw;
  }
}
.s_result .s_result__inner {
  position: relative;
  margin: 0 auto;
  width: clamp(-1032px, 80.625vw, 1032px);
}
@media screen and (max-width: 767px) {
  .s_result .s_result__inner {
    width: 82.9333333333vw;
  }
}
.s_result .s_result__inner .s_result__title {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .s_result .s_result__inner .s_result__title {
    font-size: 3.7333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.s_result .s_result__inner .s_result__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-40px, 3.125vw, 40px) clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .s_result .s_result__inner .s_result__list {
    gap: 10.6666666667vw 4.5333333333vw;
  }
}
.s_result .s_result__inner .s_result__reset {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #16A2A4;
  text-decoration: underline;
  text-underline-offset: clamp(-2px, 0.15625vw, 2px);
  position: absolute;
  top: calc(clamp(-30px, 2.34375vw, 30px) * -1);
  right: 0;
}
@media screen and (max-width: 767px) {
  .s_result .s_result__inner .s_result__reset {
    font-size: 3.7333333333vw;
    top: -14.9333333333vw;
  }
}
.s_result .s_result__inner.-post {
  width: clamp(-1032px, 80.625vw, 1032px);
}
@media screen and (max-width: 767px) {
  .s_result .s_result__inner.-post {
    width: 91.4666666667vw;
  }
}
.s_result .s_result__reset {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #16A2A4;
  text-decoration: underline;
  text-underline-offset: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .s_result .s_result__reset {
    font-size: 3.7333333333vw;
    top: -8vw;
  }
}
.s_result .s_result__none {
  margin-top: calc(clamp(-40px, 3.125vw, 40px) * -1);
  text-align: center;
}
.s_result .s_result__none p {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .s_result .s_result__none p {
    font-size: 3.7333333333vw;
    margin-bottom: 6.4vw;
  }
}
.s_result .s_result__none .s_result__reset {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #16A2A4;
  text-decoration: underline;
  text-underline-offset: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .s_result .s_result__none .s_result__reset {
    font-size: 3.7333333333vw;
    text-underline-offset: 0.5333333333vw;
  }
}

.search-suggestions {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-8px, 0.625vw, 8px) clamp(-16px, 1.25vw, 16px);
  width: clamp(-664px, 51.875vw, 664px);
  background: #ffffff;
  border-radius: clamp(-2px, 0.15625vw, 2px) clamp(-2px, 0.15625vw, 2px) 0 0;
  -webkit-box-shadow: 0 1px 20px 1px rgba(22, 162, 164, 0.3);
          box-shadow: 0 1px 20px 1px rgba(22, 162, 164, 0.3);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  padding: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .search-suggestions {
    width: 71.2vw;
    padding: 4.2666666667vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2.1333333333vw 0;
  }
}
.search-suggestions.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-suggestions .suggestion-item {
  width: clamp(-146px, 11.40625vw, 146px);
  font-size: clamp(-16px, 1.25vw, 16px);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .search-suggestions .suggestion-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.1333333333vw;
    font-size: 4.2666666667vw;
  }
}
.search-suggestions .suggestion-item img {
  width: 100%;
  aspect-ratio: 146/122;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: clamp(-8px, 0.625vw, 8px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  border: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .search-suggestions .suggestion-item img {
    width: 17.3333333333vw;
    aspect-ratio: 65/54;
    margin-bottom: 0;
    border-radius: 0.5333333333vw;
  }
}

/* ページ内ボタン関連 */
.page_more_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-12px, 0.9375vw, 12px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .page_more_link {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    gap: 3.2vw;
  }
}
.page_more_link .content__more_link_icon {
  display: block;
  width: clamp(-36px, 2.8125vw, 36px);
  height: clamp(-36px, 2.8125vw, 36px);
  background: #2E3639;
  position: relative;
  overflow: hidden;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .page_more_link .content__more_link_icon {
    width: 9.6vw;
    height: 9.6vw;
    border-radius: 0.5333333333vw;
  }
}
.page_more_link .content__more_link_icon::before, .page_more_link .content__more_link_icon::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  background: url(../../image/common/icon_arrow_right.svg) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .page_more_link .content__more_link_icon::before, .page_more_link .content__more_link_icon::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.page_more_link .content__more_link_icon::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.page_more_link .content__more_link_icon::after {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}
.page_more_link:hover {
  opacity: 1;
}
.page_more_link:hover .content__more_link_icon::before {
  -webkit-transform: translateX(400%);
          transform: translateX(400%);
}
.page_more_link:hover .content__more_link_icon::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.page_more_link_up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-12px, 0.9375vw, 12px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .page_more_link_up {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    gap: 3.2vw;
  }
}
.page_more_link_up .content__more_link_icon {
  display: block;
  width: clamp(-36px, 2.8125vw, 36px);
  height: clamp(-36px, 2.8125vw, 36px);
  background: #2E3639;
  position: relative;
  overflow: hidden;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .page_more_link_up .content__more_link_icon {
    width: 9.6vw;
    height: 9.6vw;
    border-radius: 0.5333333333vw;
  }
}
.page_more_link_up .content__more_link_icon::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: clamp(-14px, 1.09375vw, 14px);
  height: clamp(-14px, 1.09375vw, 14px);
  background: url(../../image/common/icon_arrow_right_up.svg) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .page_more_link_up .content__more_link_icon::before {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}
.page_more_link_up:hover {
  opacity: 1;
}
.page_more_link_up:hover .content__more_link_icon::before {
  -webkit-transform: translate(4px, -4px);
          transform: translate(4px, -4px);
}

.page_more_link_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(-8px, 0.625vw, 8px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .page_more_link_search {
    font-size: 4.2666666667vw;
    gap: 2.1333333333vw;
  }
}
.page_more_link_search span {
  width: clamp(-24px, 1.875vw, 24px);
  height: clamp(-24px, 1.875vw, 24px);
  background: #16A2A4;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page_more_link_search span {
    width: 4.8vw;
    height: 4.8vw;
  }
}
.page_more_link_search span::before, .page_more_link_search span::after {
  content: "";
  display: block;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  background: url(../../image/common/icon_arrow_right.svg) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .page_more_link_search span::before, .page_more_link_search span::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.page_more_link_search span::before {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}
.page_more_link_search span::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.page_more_link_search:hover span::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.page_more_link_search:hover span::after {
  -webkit-transform: translateX(400%);
          transform: translateX(400%);
}

/* サイト内ボタン関連 */
.button_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: clamp(-226px, 17.65625vw, 226px);
  padding: clamp(-20px, 1.5625vw, 20px) clamp(-77px, 6.015625vw, 77px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  background: #16A2A4;
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .button_search {
    width: 53.3333333333vw;
    padding: 5.3333333333vw 16.8vw;
    font-size: 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}

.button_reset {
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  background: none;
  border: none;
  text-decoration: underline;
  color: #2E3639;
  text-underline-offset: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .button_reset {
    font-size: 3.7333333333vw;
    text-underline-offset: 0.5333333333vw;
  }
}

/* お問い合わせフォーム */
.contact__form {
  background: #ffffff;
  padding: clamp(-100px, 7.8125vw, 100px) clamp(-112px, 8.75vw, 112px);
  margin-top: clamp(-80px, 6.25vw, 80px);
  /* フォームのエラーメッセージ */
  /*エラー時のメッセージ*/
  /* 初期のスタイル農地けし */
}
@media screen and (max-width: 767px) {
  .contact__form {
    padding: 8.5333333333vw 4.2666666667vw 21.3333333333vw;
    margin-top: 10.6666666667vw;
  }
}
.contact__form .contact__div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  gap: 0 clamp(-16px, 1.25vw, 16px);
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2vw 0;
    margin-bottom: 6.4vw;
  }
}
.contact__form .contact__div:last-child {
  margin-bottom: 0;
}
.contact__form .contact__div .contact__div_ttl {
  width: clamp(-236px, 18.4375vw, 236px);
  position: relative;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  top: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_ttl {
    width: 100%;
    font-size: 4.2666666667vw;
    top: 0;
  }
}
.contact__form .contact__div .contact__div_ttl.required::after {
  content: "必須";
  color: #ffffff;
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: clamp(-2px, 0.15625vw, 2px) clamp(-10px, 0.78125vw, 10px);
  background: #C80000;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_ttl.required::after {
    font-size: 3.2vw;
    padding: 0.5333333333vw 2.6666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.contact__form .contact__div .contact__div_input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input {
    width: 100%;
  }
}
.contact__form .contact__div .contact__div_input input[type=text], .contact__form .contact__div .contact__div_input input[type=email], .contact__form .contact__div .contact__div_input input[type=tel], .contact__form .contact__div .contact__div_input input[type=number], .contact__form .contact__div .contact__div_input select {
  width: 100%;
  height: clamp(-50px, 3.90625vw, 50px);
  border: none;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  padding: clamp(-12px, 0.9375vw, 12px) clamp(-16px, 1.25vw, 16px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  background: #F2F5F8 !important;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input input[type=text], .contact__form .contact__div .contact__div_input input[type=email], .contact__form .contact__div .contact__div_input input[type=tel], .contact__form .contact__div .contact__div_input input[type=number], .contact__form .contact__div .contact__div_input select {
    font-size: 4.2666666667vw;
    height: 13.3333333333vw;
    padding: 3.2vw;
    border-radius: 0.5333333333vw;
  }
}
.contact__form .contact__div .contact__div_input input[type=text]::-webkit-input-placeholder, .contact__form .contact__div .contact__div_input input[type=email]::-webkit-input-placeholder, .contact__form .contact__div .contact__div_input input[type=tel]::-webkit-input-placeholder, .contact__form .contact__div .contact__div_input input[type=number]::-webkit-input-placeholder, .contact__form .contact__div .contact__div_input select::-webkit-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.contact__form .contact__div .contact__div_input input[type=text]::-moz-placeholder, .contact__form .contact__div .contact__div_input input[type=email]::-moz-placeholder, .contact__form .contact__div .contact__div_input input[type=tel]::-moz-placeholder, .contact__form .contact__div .contact__div_input input[type=number]::-moz-placeholder, .contact__form .contact__div .contact__div_input select::-moz-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.contact__form .contact__div .contact__div_input input[type=text]:-ms-input-placeholder, .contact__form .contact__div .contact__div_input input[type=email]:-ms-input-placeholder, .contact__form .contact__div .contact__div_input input[type=tel]:-ms-input-placeholder, .contact__form .contact__div .contact__div_input input[type=number]:-ms-input-placeholder, .contact__form .contact__div .contact__div_input select:-ms-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.contact__form .contact__div .contact__div_input input[type=text]::-ms-input-placeholder, .contact__form .contact__div .contact__div_input input[type=email]::-ms-input-placeholder, .contact__form .contact__div .contact__div_input input[type=tel]::-ms-input-placeholder, .contact__form .contact__div .contact__div_input input[type=number]::-ms-input-placeholder, .contact__form .contact__div .contact__div_input select::-ms-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.contact__form .contact__div .contact__div_input input[type=text]::placeholder, .contact__form .contact__div .contact__div_input input[type=email]::placeholder, .contact__form .contact__div .contact__div_input input[type=tel]::placeholder, .contact__form .contact__div .contact__div_input input[type=number]::placeholder, .contact__form .contact__div .contact__div_input select::placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input input[type=text]::-webkit-input-placeholder, .contact__form .contact__div .contact__div_input input[type=email]::-webkit-input-placeholder, .contact__form .contact__div .contact__div_input input[type=tel]::-webkit-input-placeholder, .contact__form .contact__div .contact__div_input input[type=number]::-webkit-input-placeholder, .contact__form .contact__div .contact__div_input select::-webkit-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input input[type=text]::-moz-placeholder, .contact__form .contact__div .contact__div_input input[type=email]::-moz-placeholder, .contact__form .contact__div .contact__div_input input[type=tel]::-moz-placeholder, .contact__form .contact__div .contact__div_input input[type=number]::-moz-placeholder, .contact__form .contact__div .contact__div_input select::-moz-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input input[type=text]:-ms-input-placeholder, .contact__form .contact__div .contact__div_input input[type=email]:-ms-input-placeholder, .contact__form .contact__div .contact__div_input input[type=tel]:-ms-input-placeholder, .contact__form .contact__div .contact__div_input input[type=number]:-ms-input-placeholder, .contact__form .contact__div .contact__div_input select:-ms-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input input[type=text]::-ms-input-placeholder, .contact__form .contact__div .contact__div_input input[type=email]::-ms-input-placeholder, .contact__form .contact__div .contact__div_input input[type=tel]::-ms-input-placeholder, .contact__form .contact__div .contact__div_input input[type=number]::-ms-input-placeholder, .contact__form .contact__div .contact__div_input select::-ms-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input input[type=text]::placeholder, .contact__form .contact__div .contact__div_input input[type=email]::placeholder, .contact__form .contact__div .contact__div_input input[type=tel]::placeholder, .contact__form .contact__div .contact__div_input input[type=number]::placeholder, .contact__form .contact__div .contact__div_input select::placeholder {
    font-size: 4.2666666667vw;
  }
}
.contact__form .contact__div .contact__div_input select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url("../../image/common/icon_arrow_down.svg") !important;
  background-repeat: no-repeat !important;
  background-size: 24px auto; /* 画像のサイズ（幅 高さ）*/
  background-position: right 12px center !important; /* ←位置調整（右寄せ・上下中央） */
}
.contact__form .contact__div .contact__div_input textarea {
  width: 100%;
  height: clamp(-200px, 15.625vw, 200px);
  border: none;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  padding: clamp(-12px, 0.9375vw, 12px) clamp(-16px, 1.25vw, 16px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  background: #F2F5F8 !important;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input textarea {
    font-size: 4.2666666667vw;
    height: 53.3333333333vw;
    padding: 3.2vw 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.contact__form .contact__div .contact__div_input textarea::-webkit-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.contact__form .contact__div .contact__div_input textarea::-moz-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.contact__form .contact__div .contact__div_input textarea:-ms-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.contact__form .contact__div .contact__div_input textarea::-ms-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.contact__form .contact__div .contact__div_input textarea::placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input textarea::-webkit-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input textarea::-moz-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input textarea:-ms-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input textarea::-ms-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input textarea::placeholder {
    font-size: 4.2666666667vw;
  }
}
.contact__form .contact__div .contact__div_input_2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input_2 {
    gap: 0 3.2vw;
  }
}
.contact__form .contact__div .contact__div_input_2 .icon-post {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input_2 .icon-post {
    font-size: 4.2666666667vw;
  }
}
.contact__form .contact__div .contact__div_input_2 .icon-bar {
  width: clamp(-12px, 0.9375vw, 12px);
  height: 1px;
  background: #2285C2;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input_2 .icon-bar {
    width: 3.2vw;
    height: 1px;
  }
}
.contact__form .contact__div .contact__div_input_2 .c-postcode1 {
  width: clamp(-98px, 7.65625vw, 98px);
  height: clamp(-50px, 3.90625vw, 50px);
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input_2 .c-postcode1 {
    width: 26.1333333333vw;
    height: 13.3333333333vw;
  }
}
.contact__form .contact__div .contact__div_input_2 .c-postcode2 {
  width: clamp(-122px, 9.53125vw, 122px);
  height: clamp(-50px, 3.90625vw, 50px);
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input_2 .c-postcode2 {
    width: 39.7333333333vw;
    height: 13.3333333333vw;
  }
}
.contact__form .contact__div .contact__div_input_2 input {
  border: none;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  padding: clamp(-12px, 0.9375vw, 12px) clamp(-16px, 1.25vw, 16px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  background: #F2F5F8 !important;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input_2 input {
    font-size: 4.2666666667vw;
    height: 13.3333333333vw;
    padding: 3.2vw 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.contact__form .contact__div .contact__div_input_2 input::-webkit-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact__form .contact__div .contact__div_input_2 input::-moz-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact__form .contact__div .contact__div_input_2 input:-ms-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact__form .contact__div .contact__div_input_2 input::-ms-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact__form .contact__div .contact__div_input_2 input::placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input_2 input::-webkit-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input_2 input::-moz-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input_2 input:-ms-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input_2 input::-ms-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input_2 input::placeholder {
    font-size: 4.2666666667vw;
  }
}
.contact__form .contact__div .contact__div_input_address textarea {
  width: 100%;
  height: clamp(-50px, 3.90625vw, 50px);
  border: none;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  padding: clamp(-12px, 0.9375vw, 12px) clamp(-16px, 1.25vw, 16px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  background: #F2F5F8 !important;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input_address textarea {
    font-size: 4.2666666667vw;
    height: 13.3333333333vw;
    padding: 3.2vw 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.contact__form .contact__div .contact__div_input_address textarea::-webkit-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.contact__form .contact__div .contact__div_input_address textarea::-moz-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.contact__form .contact__div .contact__div_input_address textarea:-ms-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.contact__form .contact__div .contact__div_input_address textarea::-ms-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.contact__form .contact__div .contact__div_input_address textarea::placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div .contact__div_input_address textarea::-webkit-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input_address textarea::-moz-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input_address textarea:-ms-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input_address textarea::-ms-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .contact__form .contact__div .contact__div_input_address textarea::placeholder {
    font-size: 4.2666666667vw;
  }
}
.contact__form .contact__div2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  gap: 0 clamp(-15px, 1.171875vw, 15px);
  margin-bottom: clamp(-56px, 4.375vw, 56px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div2 {
    font-size: 4.2666666667vw;
    gap: 0 2.4vw;
    margin-bottom: 8.5333333333vw;
  }
}
.contact__form .contact__div2 .contact__div_input {
  padding-left: clamp(-60px, 4.6875vw, 60px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div2 .contact__div_input {
    padding-left: 0;
    padding-right: 16.8vw;
    white-space: nowrap;
  }
}
.contact__form .contact__div2 .contact__div_input::after {
  content: "必須";
  color: #ffffff;
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  padding: clamp(-2px, 0.15625vw, 2px) clamp(-10px, 0.78125vw, 10px);
  background: #C80000;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div2 .contact__div_input::after {
    font-size: 3.2vw;
    padding: 0.5333333333vw 2.6666666667vw;
    border-radius: 0.5333333333vw;
    left: auto;
    right: 0;
  }
}
.contact__form .contact__div2 .contact__div_input input {
  position: relative;
  top: clamp(-1px, 0.078125vw, 1px);
}
.contact__form .contact__div2 .wpcf7-list-item {
  margin: 0;
}
.contact__form .wpcf7-not-valid-tip {
  white-space: nowrap !important;
  position: absolute !important;
}
.contact__form .contact__div_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  text-align: center;
  margin: clamp(-52px, 4.0625vw, 52px) 0 clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div_text {
    font-size: 4.2666666667vw;
    text-align: left;
    margin: 6.4vw 0 6.4vw;
  }
}
.contact__form .contact__div_submit {
  text-align: center;
}
.contact__form .contact__div_submit .c-submit {
  display: block;
  width: clamp(-226px, 17.65625vw, 226px);
  height: clamp(-67px, 5.234375vw, 67px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  background: #2285C2;
  color: #ffffff;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__div_submit .c-submit {
    width: 57.6vw;
    height: 16.5333333333vw;
    border-radius: 0.5333333333vw;
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
.contact__form .contact__div_submit.-green .c-submit {
  background: #16A2A4;
}
.contact__form .contact__attention {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8333333333;
  text-align: center;
  margin-bottom: clamp(-4px, 0.3125vw, 4px);
  padding-left: clamp(-14px, 1.09375vw, 14px);
  position: relative;
}
.contact__form .contact__attention::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact__form .contact__attention {
    font-size: 3.2vw;
    margin-bottom: 1.0666666667vw;
    padding-left: 3.7333333333vw;
    text-align: left;
  }
}
.contact__form .contact__attention:last-child {
  margin-bottom: 0;
}
.contact__form .wpcf7-response-output {
  opacity: 0;
}
.contact__form .cf7-response-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: clamp(-60px, 4.6875vw, 60px);
  background: #FAF3F3;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  border-left: clamp(-8px, 0.625vw, 8px) solid #C80000;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  color: #C80000;
  position: relative;
  padding-left: clamp(-48px, 3.75vw, 48px) !important;
  margin-bottom: clamp(-56px, 4.375vw, 56px) !important;
}
@media screen and (max-width: 767px) {
  .contact__form .cf7-response-top {
    height: auto;
    border-radius: 0.5333333333vw;
    font-size: 3.2vw;
    padding-left: 9.0666666667vw !important;
    margin-bottom: 6.4vw !important;
    border-left: 2.1333333333vw solid #C80000;
  }
}
.contact__form .cf7-response-top::before {
  content: "";
  display: block;
  width: clamp(-24px, 1.875vw, 24px);
  height: clamp(-24px, 1.875vw, 24px);
  background: url("../../image/common/icon_alert.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: clamp(-16px, 1.25vw, 16px);
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact__form .cf7-response-top::before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    left: 3.2vw;
    top: 4.2666666667vw;
    bottom: auto;
  }
}
.contact__form .wpcf7-not-valid-tip {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px) !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: clamp(-4px, 0.3125vw, 4px) !important;
}
@media screen and (max-width: 767px) {
  .contact__form .wpcf7-not-valid-tip {
    font-size: 3.2vw !important;
    line-height: 5.8666666667vw;
    margin-top: 1.0666666667vw !important;
  }
}
.contact__form .c-acceptance.wpcf7-not-valid + .wpcf7-not-valid-tip {
  position: absolute !important;
}
.contact__form .wpcf7-spinner {
  display: none;
}

.contact__form.contact__form_empty {
  display: none;
}
.contact__form.contact__form_empty p {
  font-family: "Noto Sans JP";
  font-size: clamp(-13px, 1.015625vw, 13px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__form.contact__form_empty p {
    font-size: 3.7333333333vw;
    margin-top: 10.6666666667vw;
  }
}

.contact__form.contact__form_conf .contact__div {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #F2F5F8;
  padding-top: clamp(-40px, 3.125vw, 40px);
  padding-bottom: clamp(-42px, 3.28125vw, 42px);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contact__form.contact__form_conf .contact__div {
    padding-top: 8.5333333333vw;
    padding-bottom: 8.5333333333vw;
  }
}
.contact__form.contact__form_conf .contact__div.first {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .contact__form.contact__form_conf .contact__div.first {
    padding-top: 0;
  }
}
.contact__form.contact__form_conf .contact__div .contact__div_ttl {
  position: static;
}
.contact__form.contact__form_conf .contact__div .contact__div_input {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .contact__form.contact__form_conf .contact__div .contact__div_input {
    font-size: 4.2666666667vw;
  }
}
.contact__form.contact__form_conf .contact__div_submit {
  margin-top: clamp(-56px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .contact__form.contact__form_conf .contact__div_submit {
    margin-top: 8.5333333333vw;
  }
}
.contact__form.contact__form_conf .contact__div_back {
  margin-top: clamp(-24px, 1.875vw, 24px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact__form.contact__form_conf .contact__div_back {
    margin-top: 6.4vw;
  }
}
.contact__form.contact__form_conf .contact__div_back .previous-btn {
  display: block;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  background: transparent;
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: underline;
  text-underline-offset: clamp(-2px, 0.15625vw, 2px);
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .contact__form.contact__form_conf .contact__div_back .previous-btn {
    font-size: 3.7333333333vw;
    text-underline-offset: 0.5333333333vw;
  }
}

/* フローパターン関連 */
.flow_pattern ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-32px, 2.5vw, 32px) 0;
  counter-reset: rental-flow-step;
}
@media screen and (max-width: 767px) {
  .flow_pattern ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    position: relative;
  }
  .flow_pattern ul::after {
    content: "";
    display: block;
    width: 2px;
    height: 99%;
    background: #16A2A4;
    position: absolute;
    bottom: 0;
    left: 3.7333333333vw;
  }
}
.flow_pattern ul li {
  width: 33.3333333333%;
  padding-left: clamp(-40px, 3.125vw, 40px);
  padding-top: clamp(-30px, 2.34375vw, 30px);
  position: relative;
  border-top: clamp(-2px, 0.15625vw, 2px) solid #16A2A4;
}
@media screen and (max-width: 767px) {
  .flow_pattern ul li {
    width: 100%;
    padding-left: 20.2666666667vw;
    padding-top: 0;
    padding-bottom: 8.5333333333vw;
    border-top: none;
  }
  .flow_pattern ul li:last-child {
    padding-bottom: 0;
  }
}
.flow_pattern ul li::before {
  counter-increment: rental-flow-step;
  content: counter(rental-flow-step);
  position: absolute;
  top: clamp(-25px, 1.953125vw, 25px);
  left: calc(clamp(-10px, 0.78125vw, 10px) * -1);
  width: clamp(-34px, 2.65625vw, 34px);
  height: clamp(-34px, 2.65625vw, 34px);
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-weight: 700;
  color: #16A2A4;
}
@media screen and (max-width: 767px) {
  .flow_pattern ul li::before {
    font-size: 3.7333333333vw;
    top: -0.5333333333vw;
    left: 9.0666666667vw;
    width: 8vw;
    height: 8vw;
  }
}
.flow_pattern ul li::after {
  content: "";
  position: absolute;
  top: calc(clamp(-8px, 0.625vw, 8px) * -1);
  left: 0;
  width: clamp(-14px, 1.09375vw, 14px);
  height: clamp(-14px, 1.09375vw, 14px);
  background: #16A2A4;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .flow_pattern ul li::after {
    top: 2.4vw;
    left: 2.4vw;
    width: 3.2vw;
    height: 3.2vw;
  }
}
.flow_pattern ul li .rental_lease_content__rental_flow_title {
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #16A2A4;
  margin-bottom: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .flow_pattern ul li .rental_lease_content__rental_flow_title {
    font-size: 4.8vw;
    margin-bottom: 3.2vw;
  }
}
.flow_pattern ul li .rental_lease_content__rental_flow_text {
  display: block;
  width: clamp(-294px, 22.96875vw, 294px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .flow_pattern ul li .rental_lease_content__rental_flow_text {
    width: 70.6666666667vw;
    font-size: 4.2666666667vw;
    line-height: 1.625;
    margin-bottom: 3.2vw;
  }
}
.flow_pattern ul li .rental_lease_content__rental_flow_note {
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: clamp(-14px, 1.09375vw, 14px);
  margin-top: clamp(-8px, 0.625vw, 8px);
  width: clamp(-294px, 22.96875vw, 294px);
}
@media screen and (max-width: 767px) {
  .flow_pattern ul li .rental_lease_content__rental_flow_note {
    font-size: 3.2vw;
    margin-top: 0;
    padding-left: 3.7333333333vw;
    width: 70.6666666667vw;
  }
}
.flow_pattern ul li .rental_lease_content__rental_flow_note::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.flow_pattern ul li .last_child_border {
  display: block;
  position: absolute;
  right: calc(clamp(-13px, 1.015625vw, 13px) * -1);
  top: calc(clamp(-1.5px, 0.1171875vw, 1.5px) * -1);
  border-top: clamp(-2px, 0.15625vw, 2px) solid #16A2A4;
  width: clamp(-13px, 1.015625vw, 13px);
  height: clamp(-2px, 0.15625vw, 2px);
  -webkit-transform: rotate(-130deg);
          transform: rotate(-130deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media screen and (max-width: 767px) {
  .flow_pattern ul li .last_child_border {
    right: auto;
    top: auto;
    bottom: -0.2666666667vw;
    left: 0.5333333333vw;
    border-top: 0.5333333333vw solid #16A2A4;
    width: 3.4666666667vw;
    height: 0.5333333333vw;
    -webkit-transform: rotate(-235deg);
            transform: rotate(-235deg);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}
@media screen and (max-width: 767px) {
  .flow_pattern.-blue ul::after {
    background: #2285C2;
  }
}
.flow_pattern.-blue ul li {
  border-top: clamp(-2px, 0.15625vw, 2px) solid #2285C2;
}
@media screen and (max-width: 767px) {
  .flow_pattern.-blue ul li {
    border-top: none;
  }
}
.flow_pattern.-blue ul li .rental_lease_content__rental_flow_title {
  color: #2285C2;
}
.flow_pattern.-blue ul li::before {
  color: #2285C2;
  background: #F2F5F8;
}
.flow_pattern.-blue ul li::after {
  background: #2285C2;
}
.flow_pattern.-blue ul li .last_child_border {
  border-top: clamp(-2px, 0.15625vw, 2px) solid #2285C2;
}
@media screen and (max-width: 767px) {
  .flow_pattern.-blue ul li .last_child_border {
    border-top: 0.5333333333vw solid #2285C2;
  }
}
.flow_pattern.-column_4 ul li {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .flow_pattern.-column_4 ul li {
    width: 100%;
  }
}
.flow_pattern.-column_4 ul li .rental_lease_content__rental_flow_text, .flow_pattern.-column_4 ul li .rental_lease_content__rental_flow_note {
  display: block;
  width: clamp(-202px, 15.78125vw, 202px);
}
@media screen and (max-width: 767px) {
  .flow_pattern.-column_4 ul li .rental_lease_content__rental_flow_text, .flow_pattern.-column_4 ul li .rental_lease_content__rental_flow_note {
    width: 70.6666666667vw;
  }
}

/* リスト関連 */
ul.common_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(-24px, 1.875vw, 24px);
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  ul.common_list {
    gap: 4.2666666667vw;
    margin-bottom: 10.6666666667vw;
  }
}
ul.common_list li {
  background: #ffffff;
  padding: clamp(-24px, 1.875vw, 24px) clamp(-24px, 1.875vw, 24px) clamp(-40px, 3.125vw, 40px) clamp(-40px, 3.125vw, 40px);
  width: clamp(-528px, 41.25vw, 528px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  ul.common_list li {
    padding: 6.4vw 4.2666666667vw;
    width: 80vw;
    border-radius: 0.5333333333vw;
  }
}
ul.common_list li .common_list__item_list_img {
  width: clamp(-80px, 6.25vw, 80px);
  height: clamp(-80px, 6.25vw, 80px);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  ul.common_list li .common_list__item_list_img {
    width: 18.6666666667vw;
    height: 18.6666666667vw;
  }
}
ul.common_list li .common_list__item_list_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #16A2A4;
  margin-bottom: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  ul.common_list li .common_list__item_list_ttl {
    font-size: 4.8vw;
    margin-bottom: 2.1333333333vw;
  }
}
ul.common_list li .common_list__item_list_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  ul.common_list li .common_list__item_list_text {
    font-size: 4.2666666667vw;
  }
}

ul.common_list.-blue li .common_list__item_list_ttl {
  color: #2285C2;
}

/* 固定ページ共通関連 */
.single_content__title {
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
  padding-left: clamp(-24px, 1.875vw, 24px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .single_content__title {
    font-size: 5.8666666667vw;
    line-height: normal;
    margin-bottom: 8.5333333333vw;
    padding-left: 4.8vw;
  }
}
.single_content__title::before {
  content: "";
  display: block;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-36px, 2.8125vw, 36px);
  background-color: #16A2A4;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .single_content__title::before {
    width: 2.1333333333vw;
    height: 6.9333333333vw;
  }
}

.single {
  padding-top: clamp(-96px, 7.5vw, 96px);
}
@media screen and (max-width: 767px) {
  .single {
    padding-top: 17.0666666667vw;
  }
}

.single_top {
  padding: clamp(-64px, 5vw, 64px) 0 clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .single_top {
    padding: 10.6666666667vw 0 8.5333333333vw;
  }
}
.single_top .single_top__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-56px, 4.375vw, 56px);
  margin-top: clamp(-64px, 5vw, 64px);
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner {
    margin-top: 10.6666666667vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.4vw;
  }
}
.single_top .single_top__inner .single_img {
  width: clamp(-413px, 32.265625vw, 413px);
  height: clamp(-345px, 26.953125vw, 345px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner .single_img {
    width: 100%;
    height: auto;
    aspect-ratio: 343/286;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.single_top .single_top__inner .single_img.-blog {
  width: clamp(-294px, 22.96875vw, 294px);
  height: clamp(-244px, 19.0625vw, 244px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner .single_img.-blog {
    width: 100%;
    height: auto;
    aspect-ratio: 343/286;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner .single_top__inner_content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.single_top .single_top__inner .single_top__inner_content .single_date {
  font-family: Lato;
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner .single_top__inner_content .single_date {
    font-size: 4.2666666667vw;
    line-height: 1.5;
    margin-bottom: 2.1333333333vw;
  }
}
.single_top .single_top__inner .single_top__inner_content .single_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner .single_top__inner_content .single_title {
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    margin-bottom: 2.1333333333vw;
  }
}
.single_top .single_top__inner .single_top__inner_content .single_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner .single_top__inner_content .single_tags {
    gap: 2.1333333333vw;
  }
}
.single_top .single_top__inner .single_top__inner_content .single_tags li {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner .single_top__inner_content .single_tags li {
    font-size: 3.7333333333vw;
    line-height: normal;
  }
}
.single_top .single_top__inner .single_top__inner_content .single_customer {
  margin-top: clamp(-32px, 2.5vw, 32px);
  margin-bottom: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner .single_top__inner_content .single_customer {
    margin-top: 8.5333333333vw;
    margin-bottom: 4.2666666667vw;
  }
}
.single_top .single_top__inner .single_top__inner_content .single_customer .single_customer__title {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2285C2;
  margin-bottom: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner .single_top__inner_content .single_customer .single_customer__title {
    font-size: 3.7333333333vw;
    line-height: normal;
    margin-bottom: 0.5333333333vw;
  }
}
.single_top .single_top__inner .single_top__inner_content .single_customer .single_customer__text {
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner .single_top__inner_content .single_customer .single_customer__text {
    font-size: 3.7333333333vw;
    line-height: normal;
  }
}
.single_top .single_top__inner .single_top__inner_content .single_address .single_address__title {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2285C2;
  margin-bottom: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner .single_top__inner_content .single_address .single_address__title {
    font-size: 3.7333333333vw;
    line-height: normal;
    margin-bottom: 0.5333333333vw;
  }
}
.single_top .single_top__inner .single_top__inner_content .single_address .single_address__text {
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .single_top .single_top__inner .single_top__inner_content .single_address .single_address__text {
    font-size: 3.7333333333vw;
    line-height: normal;
  }
}

.single_breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
  margin-bottom: clamp(-8px, 0.625vw, 8px);
  width: 100%;
  overflow-x: scroll;
}
@media screen and (max-width: 767px) {
  .single_breadcrumbs {
    gap: 2.1333333333vw;
    margin-bottom: 3.2vw;
  }
}
.single_breadcrumbs li {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media screen and (max-width: 767px) {
  .single_breadcrumbs li {
    font-size: 3.2vw;
  }
}
.single_breadcrumbs li a {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .single_breadcrumbs li a {
    font-size: 3.2vw;
  }
}
.single_breadcrumbs .single_breadcrumbs__arrow {
  position: relative;
  width: clamp(-6px, 0.46875vw, 6px);
  height: clamp(-6px, 0.46875vw, 6px);
}
@media screen and (max-width: 767px) {
  .single_breadcrumbs .single_breadcrumbs__arrow {
    width: 1.6vw;
    height: 1.6vw;
  }
}
.single_breadcrumbs .single_breadcrumbs__arrow:after {
  content: "";
  position: absolute;
  width: clamp(-5px, 0.390625vw, 5px);
  height: clamp(-5px, 0.390625vw, 5px);
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-40%) rotate(45deg);
  transform: translateY(-40%) rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  border: 1px solid #222222;
  border-style: solid solid none none;
}
@media screen and (max-width: 767px) {
  .single_breadcrumbs .single_breadcrumbs__arrow:after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
  }
}

.the_content p, .the_content a, .the_content span, .the_content li {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .the_content p, .the_content a, .the_content span, .the_content li {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    margin-bottom: 2.1333333333vw;
  }
}
.the_content a {
  color: #2285C2;
  text-decoration: underline;
  text-underline-offset: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .the_content a {
    text-underline-offset: 0.5333333333vw;
  }
}
.the_content li {
  list-style-type: inherit;
  margin-left: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .the_content li {
    margin-left: 6.4vw;
  }
}
.the_content ul li {
  list-style-type: disc;
}
.the_content strong span {
  font-weight: 700 !important;
}
.the_content table {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .the_content table {
    margin-bottom: 10.6666666667vw;
  }
}
.the_content h1 {
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .the_content h1 {
    font-size: 6.4vw;
    line-height: 1.5;
    margin-bottom: 6.4vw;
  }
}
.the_content h2 {
  font-family: "Noto Sans JP";
  font-size: clamp(-28px, 2.1875vw, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: clamp(-28px, 2.1875vw, 28px);
}
@media screen and (max-width: 767px) {
  .the_content h2 {
    font-size: 5.3333333333vw;
    line-height: 1.5;
    margin-bottom: 5.3333333333vw;
  }
}
.the_content h3 {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .the_content h3 {
    font-size: 4.8vw;
    line-height: 1.5;
    margin-bottom: 4.8vw;
  }
}
.the_content h4 {
  font-family: "Noto Sans JP";
  font-size: clamp(-20px, 1.5625vw, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: clamp(-20px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .the_content h4 {
    font-size: 4.2666666667vw;
    line-height: 1.5;
    margin-bottom: 4.2666666667vw;
  }
}
.the_content h5 {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: clamp(-18px, 1.40625vw, 18px);
}
@media screen and (max-width: 767px) {
  .the_content h5 {
    font-size: 3.7333333333vw;
    line-height: 1.5;
    margin-bottom: 3.7333333333vw;
  }
}
.the_content h6 {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .the_content h6 {
    font-size: 3.2vw;
    line-height: 1.5;
    margin-bottom: 3.2vw;
  }
}
.the_content img {
  width: auto;
  height: auto;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .the_content img {
    margin-bottom: 10.6666666667vw;
  }
}

/* 戻るボタン */
.btn_back_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(-12px, 0.9375vw, 12px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .btn_back_link {
    font-size: 4.2666666667vw;
    gap: 3.2vw;
  }
}
.btn_back_link .btn_back_link__icon {
  display: block;
  width: clamp(-36px, 2.8125vw, 36px);
  height: clamp(-36px, 2.8125vw, 36px);
  background: #2E3639;
  position: relative;
  overflow: hidden;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .btn_back_link .btn_back_link__icon {
    width: 9.6vw;
    height: 9.6vw;
    border-radius: 0.5333333333vw;
  }
}
.btn_back_link .btn_back_link__icon::before, .btn_back_link .btn_back_link__icon::after {
  content: "";
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../../image/common/icon_arrow_left_white.svg) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .btn_back_link .btn_back_link__icon::before, .btn_back_link .btn_back_link__icon::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.btn_back_link .btn_back_link__icon::before {
  -webkit-transform: translateX(400%);
          transform: translateX(400%);
}
.btn_back_link:hover .btn_back_link__icon::before {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.btn_back_link:hover .btn_back_link__icon::after {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}

/* pdfリンク */
.btn_link_pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-4px, 0.3125vw, 4px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #16A2A4;
}
@media screen and (max-width: 767px) {
  .btn_link_pdf {
    font-size: 4.2666666667vw;
    gap: 1.0666666667vw;
  }
}
.btn_link_pdf .icon {
  display: block;
  width: clamp(-22px, 1.71875vw, 22px);
  height: clamp(-23px, 1.796875vw, 23px);
  background: url(../../image/common/icon_pdf.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .btn_link_pdf .icon {
    width: 5.8666666667vw;
    height: 6.1333333333vw;
  }
}

/*----------------------------
矢印系ボタン
--------------------------------*/
/* 右矢印青色 */
.btn_arrow_link_right-blue .arrow_link_icon {
  display: block;
  width: clamp(-22px, 1.71875vw, 22px);
  height: clamp(-22px, 1.71875vw, 22px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  background: #2285C2;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .btn_arrow_link_right-blue .arrow_link_icon {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.btn_arrow_link_right-blue .arrow_link_icon::before, .btn_arrow_link_right-blue .arrow_link_icon::after {
  content: "";
  display: block;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  background: url(../../image/common/icon_arrow_right.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .btn_arrow_link_right-blue .arrow_link_icon::before, .btn_arrow_link_right-blue .arrow_link_icon::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.btn_arrow_link_right-blue .arrow_link_icon::before {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}
.btn_arrow_link_right-blue:hover {
  opacity: 1;
}
.btn_arrow_link_right-blue:hover img {
  scale: 1.15;
}
.btn_arrow_link_right-blue:hover .arrow_link_icon::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btn_arrow_link_right-blue:hover .arrow_link_icon::after {
  -webkit-transform: translateX(400%);
          transform: translateX(400%);
}

/* 詳細を見るボタン 右矢印黒*/
.content__more_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-12px, 0.9375vw, 12px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .content__more_link {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    gap: 3.2vw;
  }
}
.content__more_link .content__more_link_icon {
  display: block;
  width: clamp(-36px, 2.8125vw, 36px);
  height: clamp(-36px, 2.8125vw, 36px);
  background: #2E3639;
  overflow: hidden;
  position: relative;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .content__more_link .content__more_link_icon {
    width: 9.6vw;
    height: 9.6vw;
    border-radius: 0.5333333333vw;
  }
}
.content__more_link .content__more_link_icon::before, .content__more_link .content__more_link_icon::after {
  content: "";
  display: block;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  background: url(../../image/common/icon_arrow_right.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .content__more_link .content__more_link_icon::before, .content__more_link .content__more_link_icon::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.content__more_link .content__more_link_icon::before {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}
@media screen and (max-width: 767px) {
  .content__more_link.-sp-small {
    font-size: 3.7333333333vw;
  }
}
.content__more_link:hover {
  opacity: 1;
}
.content__more_link:hover .content__more_link_icon::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.content__more_link:hover .content__more_link_icon::after {
  -webkit-transform: translateX(400%);
          transform: translateX(400%);
}

/* 詳細を見るボタン 斜め上矢印*/
.content__more_link_up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-12px, 0.9375vw, 12px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .content__more_link_up {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    gap: 3.2vw;
  }
}
.content__more_link_up .content__more_link_icon {
  display: block;
  width: clamp(-36px, 2.8125vw, 36px);
  height: clamp(-36px, 2.8125vw, 36px);
  background: #2E3639;
  overflow: hidden;
  position: relative;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .content__more_link_up .content__more_link_icon {
    width: 9.6vw;
    height: 9.6vw;
    border-radius: 0.5333333333vw;
  }
}
.content__more_link_up .content__more_link_icon::before {
  content: "";
  display: block;
  width: clamp(-14px, 1.09375vw, 14px);
  height: clamp(-14px, 1.09375vw, 14px);
  background: url(../../image/common/icon_arrow_right_up.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 1;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
@media screen and (max-width: 767px) {
  .content__more_link_up .content__more_link_icon::before {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .content__more_link_up.-sp-small {
    font-size: 3.7333333333vw;
  }
}
.content__more_link_up:hover {
  opacity: 1;
}
.content__more_link_up:hover .content__more_link_icon::before {
  -webkit-transform: translate(4px, -4px);
          transform: translate(4px, -4px);
}

/*----------------------------
カテゴリー系ボタン
--------------------------------*/
.btn_category_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: clamp(-8px, 0.625vw, 8px);
  padding: clamp(-8px, 0.625vw, 8px) clamp(-12px, 0.9375vw, 12px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  background: #CFEDFF;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn_category_link {
    padding: 2.1333333333vw 3.2vw;
    gap: 2.1333333333vw;
  }
}
.btn_category_link .btn_category_link_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-right: clamp(-12px, 0.9375vw, 12px);
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .btn_category_link .btn_category_link_ttl {
    font-size: 3.7333333333vw;
    padding-right: 3.2vw;
  }
}
.btn_category_link .btn_category_link_icon {
  display: block;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .btn_category_link .btn_category_link_icon {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.btn_category_link .btn_category_link_icon::before, .btn_category_link .btn_category_link_icon::after {
  content: "";
  display: block;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  background: url(../../image/common/icon_arrow_right_blue.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .btn_category_link .btn_category_link_icon::before, .btn_category_link .btn_category_link_icon::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.btn_category_link .btn_category_link_icon::before {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}
.btn_category_link:hover {
  opacity: 1;
}
.btn_category_link:hover .btn_category_link_icon::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btn_category_link:hover .btn_category_link_icon::after {
  -webkit-transform: translateX(400%);
          transform: translateX(400%);
}
.btn_category_link::after {
  content: "";
  display: block;
  width: 1px;
  height: clamp(-16px, 1.25vw, 16px);
  background: #2285C2;
  position: absolute;
  top: 0;
  right: clamp(-31px, 2.421875vw, 31px);
  bottom: 0;
  margin: auto;
}
.btn_category_link::after::before {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}
@media screen and (max-width: 767px) {
  .btn_category_link::after {
    width: 1px;
    height: 4.2666666667vw;
    right: 8.2666666667vw;
  }
}

/* ホバーインカーソル */
.hover-icon-arrow-bottom .icon {
  display: block;
  width: clamp(-18px, 1.40625vw, 18px);
  height: clamp(-18px, 1.40625vw, 18px);
  background: #2E3639;
  position: relative;
  overflow: hidden;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .hover-icon-arrow-bottom .icon {
    width: 4.8vw;
    height: 4.8vw;
    border-radius: 0.5333333333vw;
  }
}
.hover-icon-arrow-bottom .icon::after, .hover-icon-arrow-bottom .icon::before {
  content: "";
  display: block;
  width: clamp(-6px, 0.46875vw, 6px);
  height: clamp(-6px, 0.46875vw, 6px);
  -webkit-mask-image: url(../../image/common/icon_arrow_bottom.svg);
          mask-image: url(../../image/common/icon_arrow_bottom.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .hover-icon-arrow-bottom .icon::after, .hover-icon-arrow-bottom .icon::before {
    width: 1.6vw;
    height: 1.6vw;
  }
}
.hover-icon-arrow-bottom .icon::before {
  -webkit-transform: translateY(-400%);
          transform: translateY(-400%);
}
.hover-icon-arrow-bottom .icon::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hover-icon-arrow-bottom:hover {
  opacity: 1;
}
.hover-icon-arrow-bottom:hover .icon::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hover-icon-arrow-bottom:hover .icon::after {
  -webkit-transform: translateY(400%);
          transform: translateY(400%);
}

.-pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .-pc-only {
    display: none !important;
  }
}

.-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .-sp-only {
    display: block !important;
  }
}

.-pc-only-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .-pc-only-flex {
    display: none !important;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  /* ヘッダー_シャドウ */
  -webkit-box-shadow: 0 clamp(-4px, 0.3125vw, 4px) clamp(-4px, 0.3125vw, 4px) 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 clamp(-4px, 0.3125vw, 4px) clamp(-4px, 0.3125vw, 4px) 0 rgba(0, 0, 0, 0.06);
  /* spメニューコンテンツ */
}
header .header__inner {
  position: relative;
  z-index: 100;
  width: 100%;
  height: clamp(-96px, 7.5vw, 96px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 0 0 clamp(-24px, 1.875vw, 24px) 0;
  /* spハンバーガーメニュー */
}
@media screen and (max-width: 767px) {
  header .header__inner {
    height: 17.0666666667vw;
    padding: 0 0 4.2666666667vw 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 4.2666666667vw;
    -webkit-box-shadow: 0 1.0666666667vw 1.0666666667vw 0 rgba(0, 0, 0, 0.06);
            box-shadow: 0 1.0666666667vw 1.0666666667vw 0 rgba(0, 0, 0, 0.06);
    z-index: 101;
  }
}
header .header__inner .header__logo {
  width: clamp(-226px, 17.65625vw, 226px);
  margin-top: clamp(-20px, 1.5625vw, 20px);
  margin-right: auto;
  margin-left: clamp(-20px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  header .header__inner .header__logo {
    width: 39.2vw;
    margin-top: 4.2666666667vw;
    margin-right: 17.6vw;
    margin-left: 4.2666666667vw;
  }
}
header .header__inner .header__logo img {
  width: 100%;
}
header .header__inner .header__nav {
  padding-top: clamp(-20px, 1.5625vw, 20px);
  margin-right: clamp(-32px, 2.5vw, 32px);
}
header .header__inner .header__nav .header__nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: clamp(-22px, 1.71875vw, 22px);
}
header .header__inner .header__nav .header__nav_list.-top {
  margin-bottom: clamp(-13px, 1.015625vw, 13px);
  gap: clamp(-20px, 1.5625vw, 20px);
}
header .header__inner .header__nav .header__nav_list.-top .header__nav_sns1 {
  width: clamp(-20px, 1.5625vw, 20px);
}
header .header__inner .header__nav .header__nav_list.-top .header__nav_sns2 {
  width: clamp(-26px, 2.03125vw, 26px);
}
header .header__inner .header__nav .header__nav_list.-top .header__nav_sns3 {
  width: clamp(-17px, 1.328125vw, 17px);
}
header .header__inner .header__nav .header__nav_list.-top li {
  line-height: 1;
}
header .header__inner .header__nav .header__nav_list.-top li a {
  display: block;
  width: 100%;
}
header .header__inner .header__nav .header__nav_list.-top li a img {
  width: 100%;
}
header .header__inner .header__nav .header__nav_list.-bootom li {
  line-height: 1;
}
header .header__inner .header__nav .header__nav_list.-bootom li:hover a {
  opacity: 1;
  color: #2285C2;
}
header .header__inner .header__nav .header__nav_list.-bootom li:hover::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
header .header__inner .header__nav .header__nav_list.-bootom li a {
  color: #2E3639;
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
header .header__inner .header__nav .header__nav_list.-bootom li.-parent {
  position: relative;
  padding-right: clamp(-15px, 1.171875vw, 15px);
}
header .header__inner .header__nav .header__nav_list.-bootom li.-parent::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: clamp(-12px, 0.9375vw, 12px);
  height: clamp(-18px, 1.40625vw, 18px);
  background: url(../../image/common/icon_arrow.svg) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
header .header__inner .header__nav_contact {
  width: clamp(-124px, 9.6875vw, 124px);
  height: clamp(-112px, 8.75vw, 112px);
  background-color: #2E3639;
  border-radius: 0 0 0 clamp(-8px, 0.625vw, 8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-11px, 0.859375vw, 11px);
}
@media screen and (max-width: 767px) {
  header .header__inner .header__nav_contact {
    width: 25.6vw;
    height: 8vw;
    border-radius: 0.5333333333vw;
    gap: 0;
    margin-top: 4.2666666667vw;
  }
}
header .header__inner .header__nav_contact:hover {
  opacity: 1;
  background-color: #2285C2;
}
header .header__inner .header__nav_contact:hover img {
  -webkit-transform: translate(5px, -5px);
          transform: translate(5px, -5px);
}
header .header__inner .header__nav_contact img {
  width: clamp(-29px, 2.265625vw, 29px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  header .header__inner .header__nav_contact img {
    display: none;
  }
}
header .header__inner .header__nav_contact span {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  header .header__inner .header__nav_contact span {
    font-size: 3.2vw;
    line-height: normal;
  }
}
@media screen and (max-width: 767px) {
  header .header__inner .header__hamburger {
    display: block;
    border: none;
    background: none;
    width: 4.8vw;
    height: 3.7333333333vw;
    margin-top: 6.6666666667vw;
    margin-right: 4.2666666667vw;
    position: relative;
    cursor: pointer;
  }
  header .header__inner .header__hamburger span {
    display: block;
    width: 4.8vw;
    height: 0.5333333333vw;
    background: #2285C2;
    border-radius: 2.1333333333vw;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  header .header__inner .header__hamburger span:nth-child(1) {
    top: 0;
  }
  header .header__inner .header__hamburger span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  header .header__inner .header__hamburger span:nth-child(3) {
    bottom: 0;
  }
}
header .header__inner .header__hamburger.active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
header .header__inner .header__hamburger.active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(-50%) scaleX(0);
          transform: translateY(-50%) scaleX(0);
}
header .header__inner .header__hamburger.active span:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}
header .header__nav_child {
  position: absolute;
  top: clamp(-96px, 7.5vw, 96px);
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: clamp(-50px, 3.90625vw, 50px) 0 clamp(-50px, 3.90625vw, 50px) 0;
  display: none;
}
header .header__nav_child .nav-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-43px, 3.359375vw, 43px);
}
header .header__nav_child .nav-group .nav-group__title.content__more_link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  color: #2E3639;
  white-space: nowrap;
}
header .header__nav_child .nav-group .nav-group__title.content__more_link.-more_link_bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
header .header__nav_child .nav-group .nav-group__title.content__more_link.-more_link_bottom .content__more_link_icon {
  position: relative;
  bottom: clamp(-3px, 0.234375vw, 3px);
}
header .header__nav_child .nav-group ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(-24px, 1.875vw, 24px) clamp(-40px, 3.125vw, 40px);
  width: clamp(-750px, 58.59375vw, 750px);
  padding-left: clamp(-43px, 3.359375vw, 43px);
  border-left: 1px solid #2E3639;
}
header .header__nav_child .nav-group ul.-long {
  width: clamp(-900px, 70.3125vw, 900px);
}
header .header__nav_child .nav-group ul li {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
}
header .header__nav_child .nav-group .content__more_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #2E3639;
}
header .header__nav_child .nav-group .content__more_link .content__more_link_icon {
  width: clamp(-18px, 1.40625vw, 18px);
  height: clamp(-18px, 1.40625vw, 18px);
}
header .header__nav_child .nav-group .content__more_link .content__more_link_icon::before, header .header__nav_child .nav-group .content__more_link .content__more_link_icon::after {
  width: clamp(-8px, 0.625vw, 8px);
  height: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  header .header__nav_content {
    width: 100%;
    height: calc(100dvh - 17.0666666667vw);
    position: fixed;
    top: 17.0666666667vw;
    left: 0;
    z-index: 99;
    background: #ffffff;
    overflow-y: scroll;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  header .header__nav_content.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  header .header__nav_content .header__nav_content_inner {
    width: 100%;
  }
}
header .header__nav_content .header__nav_content_inner .header__nav_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 5.8666666667vw;
  padding-bottom: 6.1333333333vw;
  margin-top: 6.1333333333vw;
  border-bottom: 2px solid #2285C2;
}
header .header__nav_content .header__nav_content_inner .header__nav_sns li a {
  display: block;
  width: 6.9333333333vw;
}
header .header__nav_content .header__nav_content_inner .header__nav_sns li a img {
  width: 100%;
}
header .header__nav_content .header__nav_content_inner .header__nav_sns li.header__nav_sns1 {
  margin-right: 5.6vw;
}
header .header__nav_content .header__nav_content_inner .header__nav_sns li.header__nav_sns2 {
  margin-right: 4.8vw;
}
header .header__nav_content .header__nav_content_inner .header__nav_sns li.header__nav_sns2 a {
  width: 7.7333333333vw;
}
header .header__nav_content .header__nav_content_inner .header__nav_sns li.header__nav_sns3 a {
  width: 5.8666666667vw;
}
@media screen and (max-width: 767px) {
  header .header__nav_content .header__nav_content_inner .header__nav_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .header__nav_content .header__nav_content_inner .header__nav_bottom .nav_link, header .header__nav_content .header__nav_content_inner .header__nav_bottom .parent {
  width: 100%;
  padding: 6.4vw 4.2666666667vw;
  font-family: "Noto Sans JP";
  font-size: 4.8vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-bottom: 1px solid #D3D3D3;
}
header .header__nav_content .header__nav_content_inner .header__nav_bottom .nav_link a, header .header__nav_content .header__nav_content_inner .header__nav_bottom .parent a {
  font-size: 4.8vw;
}
header .header__nav_content .header__nav_content_inner .header__nav_bottom .parent {
  position: relative;
}
header .header__nav_content .header__nav_content_inner .header__nav_bottom .parent::after, header .header__nav_content .header__nav_content_inner .header__nav_bottom .parent::before {
  content: "";
  width: 3.7333333333vw;
  height: 0.5333333333vw;
  position: absolute;
  top: 50%;
  right: 5.3333333333vw;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #2285C2;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .header__nav_content .header__nav_content_inner .header__nav_bottom .parent::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
header .header__nav_content .header__nav_content_inner .header__nav_bottom .parent.active::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
header .header__nav_content .header__nav_content_inner .header__nav_bottom .nav_link {
  position: relative;
}
header .header__nav_content .header__nav_content_inner .header__nav_bottom .nav_link::after {
  content: "";
  display: block;
  width: 2.6666666667vw;
  height: 4.2666666667vw;
  background: url(../../image/common/icon_arrow_blue.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 5.8666666667vw;
}
header .header__nav_content .header__nav_content_inner .header__nav_bottom .nav_child {
  width: 100%;
  display: none;
}
header .header__nav_content .header__nav_content_inner .header__nav_bottom .nav_child__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6.4vw;
  padding: 6.4vw 4.2666666667vw;
  border-bottom: 0.5333333333vw solid #D3D3D3;
}
header .header__nav_content .header__nav_content_inner .header__nav_bottom .nav_child__inner .nav_link_child a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP";
  font-size: 4.2666666667vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  padding-right: 4.2666666667vw;
}
header .header__nav_content .header__nav_content_inner .header__nav_bottom .nav_child__inner .nav_link_child a::after {
  content: "";
  display: block;
  width: 2.1333333333vw;
  height: 3.2vw;
  background: url(../../image/common/icon_arrow_blue_sp.svg) no-repeat center center/contain;
  position: absolute;
  top: 0.5333333333vw;
  bottom: 0;
  margin: auto 0;
  right: 0;
}

footer {
  background: #F2F5F8;
}
footer .footer__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: clamp(-72px, 5.625vw, 72px) clamp(-100px, 7.8125vw, 100px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  footer .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 21.3333333333vw 4.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__left {
    width: 100%;
  }
}
footer .footer__inner .footer__left .footer__logo {
  width: clamp(-215px, 16.796875vw, 215px);
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__left .footer__logo {
    width: 50.6666666667vw;
    margin-bottom: 6.4vw;
  }
}
footer .footer__inner .footer__left .footer__logo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__left .footer__address {
    border-bottom: 1px solid #D3D3D3;
    margin-bottom: 8.5333333333vw;
  }
}
footer .footer__inner .footer__left .footer__address .footer__address_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(-26px, 2.03125vw, 26px);
  color: #2E3639;
  margin-bottom: clamp(-26px, 2.03125vw, 26px);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__left .footer__address .footer__address_text {
    font-size: 4.2666666667vw;
    line-height: normal;
    margin-bottom: 1.0666666667vw;
  }
  footer .footer__inner .footer__left .footer__address .footer__address_text span {
    display: inline-block;
    width: 4.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__left .footer__address .footer__address_tel_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4.2666666667vw;
  }
}
footer .footer__inner .footer__left .footer__address .footer__address_tel {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: clamp(-5px, 0.390625vw, 5px);
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__left .footer__address .footer__address_tel {
    font-size: 4.2666666667vw;
    line-height: normal;
    margin-bottom: 6.4vw;
  }
}
footer .footer__inner .footer__left .footer__address .footer__address_tel .-en {
  font-family: Lato;
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__left .footer__address .footer__address_tel .-en {
    font-size: 4.2666666667vw;
    line-height: normal;
  }
}
footer .footer__inner .footer__left .footer__address .footer__address_fax {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__left .footer__address .footer__address_fax {
    font-size: 4.2666666667vw;
    line-height: normal;
  }
}
footer .footer__inner .footer__left .footer__address .footer__address_fax .-en {
  font-family: Lato;
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__left .footer__address .footer__address_fax .-en {
    font-size: 4.2666666667vw;
    line-height: normal;
  }
}
footer .footer__inner .footer__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-64px, 5vw, 64px);
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 6.4vw;
  }
}
footer .footer__inner .footer__nav .footer__nav_group a {
  display: block;
}
footer .footer__inner .footer__nav .footer__nav_group .footer__nav_group_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-16px, 1.25vw, 16px);
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__nav .footer__nav_group .footer__nav_group_title {
    font-size: 3.7333333333vw;
    line-height: normal;
    margin-bottom: 2.1333333333vw;
  }
}
footer .footer__inner .footer__nav .footer__nav_group .footer__nav_group_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__nav .footer__nav_group .footer__nav_group_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.1333333333vw 6.4vw;
  }
}
footer .footer__inner .footer__nav .footer__nav_group .footer__nav_group_list.-right {
  gap: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__nav .footer__nav_group .footer__nav_group_list.-right {
    gap: 2.1333333333vw 6.4vw;
  }
}
footer .footer__inner .footer__nav .footer__nav_group .footer__nav_group_list.-right li a {
  font-weight: 700;
}
footer .footer__inner .footer__nav .footer__nav_group .footer__nav_group_list li a {
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__nav .footer__nav_group .footer__nav_group_list li a {
    font-size: 3.7333333333vw;
    line-height: normal;
  }
}
footer .footer__bottom {
  width: 100%;
  height: clamp(-40px, 3.125vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #2285C2;
}
@media screen and (max-width: 767px) {
  footer .footer__bottom {
    height: 7.4666666667vw;
  }
}
footer .footer__bottom p {
  text-align: center;
  font-family: Lato;
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  footer .footer__bottom p {
    font-size: 3.2vw;
    line-height: normal;
  }
}

.solution__video_list {
  margin-bottom: clamp(-56px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .solution__video_list {
    margin-bottom: 14.9333333333vw;
  }
}

.yt_list_scroll {
  width: 100%;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .yt_list_scroll {
    width: calc(100% + 3.2vw);
    overflow-x: auto;
    padding-bottom: 4.2666666667vw;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 4.2666666667vw;
  }
  .yt_list_scroll::-webkit-scrollbar {
    display: none;
  }
}

.yt_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(-24px, 1.875vw, 24px);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .yt_list {
    gap: 4.2666666667vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.yt_list li {
  width: clamp(-345px, 26.953125vw, 345px);
  aspect-ratio: 345/194;
  position: relative;
}
@media screen and (max-width: 767px) {
  .yt_list li {
    width: 68.2666666667vw;
  }
}
.yt_list li a {
  display: block;
  width: 100%;
  height: 100%;
}
.yt_list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.yt_list .yt-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(-55px, 4.296875vw, 55px);
  height: clamp(-40px, 3.125vw, 40px);
  pointer-events: none;
  background: #FF0032;
  border-radius: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .yt_list .yt-play-btn {
    width: 14.6666666667vw;
    height: 10.6666666667vw;
    border-radius: 3.2vw;
  }
}
.yt_list .yt-play-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: clamp(-14px, 1.09375vw, 14px) solid #fff;
  border-top: clamp(-8px, 0.625vw, 8px) solid transparent;
  border-bottom: clamp(-8px, 0.625vw, 8px) solid transparent;
  position: absolute;
  top: 50%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .yt_list .yt-play-btn::after {
    border-left: 3.7333333333vw solid #fff;
    border-top: 2.1333333333vw solid transparent;
    border-bottom: 2.1333333333vw solid transparent;
  }
}

/* モーダル全画面 */
.yt-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}

.yt-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.yt-modal-content {
  position: relative;
  width: 80%;
  max-width: 960px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .yt-modal-content {
    width: 100%;
    max-width: 100%;
  }
}

.yt-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-close {
  display: block;
  position: absolute;
  top: clamp(-80px, 6.25vw, 80px);
  right: clamp(-80px, 6.25vw, 80px);
  width: clamp(-30px, 2.34375vw, 30px);
  height: clamp(-30px, 2.34375vw, 30px);
  background: none;
  border: none;
  cursor: pointer;
  background: #ffffff;
  border-radius: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /* Xマーク		 */
}
@media screen and (max-width: 767px) {
  .yt-close {
    top: 5.3333333333vw;
    right: 5.3333333333vw;
    width: 8vw;
    height: 8vw;
  }
}
.yt-close::before {
  content: "";
  display: block;
  width: clamp(-20px, 1.5625vw, 20px);
  height: clamp(-2px, 0.15625vw, 2px);
  background: #2E3639;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .yt-close::before {
    width: 5.3333333333vw;
    height: 0.5333333333vw;
  }
}
.yt-close::after {
  content: "";
  display: block;
  width: clamp(-2px, 0.15625vw, 2px);
  height: clamp(-20px, 1.5625vw, 20px);
  background: #2E3639;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .yt-close::after {
    width: 0.5333333333vw;
    height: 5.3333333333vw;
  }
}

/* tiotok */
.tiktok_list_scroll {
  width: 100%;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .tiktok_list_scroll {
    width: calc(100% + 4.2666666667vw);
    overflow-x: auto;
    padding-bottom: 4.2666666667vw;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 4.2666666667vw;
  }
  .tiktok_list_scroll::-webkit-scrollbar {
    display: none;
  }
}

.tiktok_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(-24px, 1.875vw, 24px);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .tiktok_list {
    gap: 4.2666666667vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.tiktok_list li {
  width: clamp(-252px, 19.6875vw, 252px);
  aspect-ratio: 189/336;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tiktok_list li {
    width: 50.4vw;
  }
}
.tiktok_list li a {
  display: block;
  width: 100%;
  height: 100%;
}
.tiktok_list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tiktok_list .tiktok-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(-55px, 4.296875vw, 55px);
  height: clamp(-40px, 3.125vw, 40px);
  pointer-events: none;
  border-radius: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .tiktok_list .tiktok-play-btn {
    width: 14.6666666667vw;
    height: 10.6666666667vw;
    border-radius: 3.2vw;
  }
}
.tiktok_list .tiktok-play-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: clamp(-26px, 2.03125vw, 26px) solid #fff;
  border-top: clamp(-16px, 1.25vw, 16px) solid transparent;
  border-bottom: clamp(-16px, 1.25vw, 16px) solid transparent;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .tiktok_list .tiktok-play-btn::after {
    border-left: 6.9333333333vw solid #fff;
    border-top: 4.2666666667vw solid transparent;
    border-bottom: 4.2666666667vw solid transparent;
  }
}

/* モーダル全画面 */
.tiktok-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}

.tiktok-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tiktok-modal-content {
  position: relative;
  aspect-ratio: 189/450;
}
.tiktok-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.tiktok-close {
  display: block;
  position: absolute;
  top: clamp(-80px, 6.25vw, 80px);
  right: clamp(-80px, 6.25vw, 80px);
  width: clamp(-30px, 2.34375vw, 30px);
  height: clamp(-30px, 2.34375vw, 30px);
  background: none;
  border: none;
  cursor: pointer;
  background: #ffffff;
  border-radius: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /* Xマーク		 */
}
@media screen and (max-width: 767px) {
  .tiktok-close {
    top: 5.3333333333vw;
    right: 5.3333333333vw;
    width: 8vw;
    height: 8vw;
  }
}
.tiktok-close::before {
  content: "";
  display: block;
  width: clamp(-20px, 1.5625vw, 20px);
  height: clamp(-2px, 0.15625vw, 2px);
  background: #2E3639;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .tiktok-close::before {
    width: 5.3333333333vw;
    height: 0.5333333333vw;
  }
}
.tiktok-close::after {
  content: "";
  display: block;
  width: clamp(-2px, 0.15625vw, 2px);
  height: clamp(-20px, 1.5625vw, 20px);
  background: #2E3639;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .tiktok-close::after {
    width: 0.5333333333vw;
    height: 5.3333333333vw;
  }
}

.cta {
  width: 100%;
  height: auto;
  /*     aspect-ratio: 1280 / 320; */
  background: url(../../image/common/bg_contact.webp) no-repeat center center;
  background-size: cover;
  padding-top: clamp(-68px, 5.3125vw, 68px);
  padding-bottom: clamp(-68px, 5.3125vw, 68px);
}
@media screen and (max-width: 767px) {
  .cta {
    aspect-ratio: 375/374;
    padding-top: 13.8666666667vw;
    padding-bottom: 10.6666666667vw;
    background: url(../../image/common/bg_contact_sp.webp) no-repeat center center;
    background-size: cover;
  }
}
.cta .cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-246px, 19.21875vw, 246px);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .cta .cta__inner {
    height: auto;
    gap: 6.4vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.cta .cta__inner .cta__left {
  width: clamp(-414px, 32.34375vw, 414px);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(-66px, 5.15625vw, 66px);
}
@media screen and (max-width: 767px) {
  .cta .cta__inner .cta__left {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 3.2vw;
  }
}
.cta .cta__inner .cta__left .cta__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .cta .cta__inner .cta__left .cta__title {
    gap: 4.2666666667vw;
  }
}
.cta .cta__inner .cta__left .cta__title .cta__title_sub {
  font-family: Lato;
  font-size: clamp(-56px, 4.375vw, 56px);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .cta .cta__inner .cta__left .cta__title .cta__title_sub {
    font-size: 10.6666666667vw;
  }
}
.cta .cta__inner .cta__left .cta__title .cta__title_main {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .cta .cta__inner .cta__left .cta__title .cta__title_main {
    font-size: 3.7333333333vw;
  }
}
.cta .cta__inner .cta__left .cta__left_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .cta .cta__inner .cta__left .cta__left_text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
.cta .cta__inner .cta__right {
  width: clamp(-340px, 26.5625vw, 340px);
}
@media screen and (max-width: 767px) {
  .cta .cta__inner .cta__right {
    width: 100%;
  }
}
.cta .cta__inner .cta__right .cta__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: clamp(-340px, 26.5625vw, 340px);
  height: clamp(-96px, 7.5vw, 96px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  background: #2E3639;
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  padding-left: clamp(-24px, 1.875vw, 24px);
  margin-bottom: clamp(-24px, 1.875vw, 24px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta .cta__inner .cta__right .cta__button {
    width: 91.4666666667vw;
    height: 25.6vw;
    border-radius: 0.5333333333vw;
    font-size: 4.8vw;
    line-height: 1.5;
    padding-left: 8.5333333333vw;
    margin-bottom: 4.2666666667vw;
  }
}
.cta .cta__inner .cta__right .cta__button::after {
  content: "";
  display: block;
  width: clamp(-36px, 2.8125vw, 36px);
  height: clamp(-36px, 2.8125vw, 36px);
  background: url(../../image/common/icon_hikoki.svg) no-repeat center center;
  position: absolute;
  top: 0;
  right: clamp(-24px, 1.875vw, 24px);
  bottom: 0;
  margin: auto 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .cta .cta__inner .cta__right .cta__button::after {
    width: 9.6vw;
    height: 9.6vw;
    right: 7.2vw;
  }
}
.cta .cta__inner .cta__right .cta__button:before {
  content: "";
  display: block;
  width: 1px;
  height: clamp(-48px, 3.75vw, 48px);
  background: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: clamp(-88px, 6.875vw, 88px);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .cta .cta__inner .cta__right .cta__button:before {
    right: 21.3333333333vw;
    height: 12.8vw;
  }
}
.cta .cta__inner .cta__right .cta__button:hover {
  opacity: 1;
}
.cta .cta__inner .cta__right .cta__button:hover::after {
  -webkit-transform: translate(5px, -5px);
          transform: translate(5px, -5px);
}
.cta .cta__inner .cta__right .cta__tel {
  font-family: Lato;
  font-size: clamp(-20px, 1.5625vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .cta .cta__inner .cta__right .cta__tel {
    gap: 3.2vw;
    font-size: 5.3333333333vw;
  }
}
.cta .cta__inner .cta__right .cta__tel img {
  width: clamp(-18px, 1.40625vw, 18px);
}
@media screen and (max-width: 767px) {
  .cta .cta__inner .cta__right .cta__tel img {
    width: 4.8vw;
  }
}

.page-front .sub_title {
  font-family: Lato;
  font-size: clamp(-72px, 5.625vw, 72px);
  font-style: normal;
  font-weight: 700;
  line-height: 0.9166666667;
  white-space: nowrap;
  color: #2285C2;
  opacity: 0.15;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-front .sub_title {
    font-size: 9.0666666667vw;
  }
}
.page-front .sub_title2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-16px, 1.25vw, 16px);
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page-front .sub_title2 {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
    gap: 4.8vw;
  }
}
.page-front .sub_title2 span {
  font-family: Lato;
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .page-front .sub_title2 span {
    font-size: 3.2vw;
  }
}
.page-front .inner {
  width: clamp(-1080px, 84.375vw, 1080px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page-front .inner {
    width: 91.4666666667vw;
  }
}
.page-front .kv {
  padding-top: clamp(-96px, 7.5vw, 96px);
}
@media screen and (max-width: 767px) {
  .page-front .kv {
    padding-top: 17.0666666667vw;
  }
}
.page-front .kv .kv__inner {
  width: 100%;
  /*             height: calc(100vh - get_vw(96)); */
  height: clamp(0px, 100vh - clamp(-96px, 7.5vw, 96px), 54vw);
}
@media screen and (max-width: 767px) {
  .page-front .kv .kv__inner {
    /*      height: calc(100svh - get_vwSp(64)); */
    height: clamp(155vw, 100svh - 17.0666666667vw, 155vw);
  }
}
.page-front .kv .kv__inner .kv__swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.page-front .kv .kv__inner .kv__swiper .kv__wrapper {
  width: 100%;
  height: 100%;
}
.page-front .kv .kv__inner .kv__swiper .kv__wrapper .kv__slide {
  width: 100%;
  height: 100%;
}
.page-front .kv .kv__inner .kv__swiper .kv__wrapper .kv__slide .kv__img {
  width: 100%;
  height: 100%;
}
.page-front .kv .kv__inner .kv__swiper .kv__wrapper .kv__slide .kv__img img, .page-front .kv .kv__inner .kv__swiper .kv__wrapper .kv__slide .kv__img picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.page-front .kv .kv__inner .kv__swiper .kv__pagination {
  position: absolute;
  bottom: clamp(-20px, 1.5625vw, 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .page-front .kv .kv__inner .kv__swiper .kv__pagination {
    bottom: 5.3333333333vw;
  }
}
.page-front .kv .kv__inner .kv__swiper .kv__pagination .swiper-pagination-bullet {
  width: clamp(-8px, 0.625vw, 8px);
  height: clamp(-8px, 0.625vw, 8px);
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 clamp(-6px, 0.46875vw, 6px);
}
@media screen and (max-width: 767px) {
  .page-front .kv .kv__inner .kv__swiper .kv__pagination .swiper-pagination-bullet {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    margin: 0 1.6vw;
  }
}
.page-front .kv .kv__inner .kv__swiper .kv__pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}
.page-front .kv .kv__inner .kv__swiper .kv__navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}
.page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_prev,
.page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_next {
  position: absolute;
  top: 0;
  width: clamp(-48px, 3.75vw, 48px);
  height: clamp(-48px, 3.75vw, 48px);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_prev,
  .page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_next {
    width: 12.8vw;
    height: 12.8vw;
  }
}
.page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_prev:hover,
.page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_next:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
}
.page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_prev::after,
.page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_next::after {
  font-size: clamp(-18px, 1.40625vw, 18px);
  color: #ffffff;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_prev::after,
  .page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_next::after {
    font-size: 4.8vw;
  }
}
.page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_prev {
  left: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_prev {
    left: 4.2666666667vw;
  }
}
.page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_next {
  right: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page-front .kv .kv__inner .kv__swiper .kv__navigation .kv__navigation_next {
    right: 4.2666666667vw;
  }
}
.page-front .strength {
  position: relative;
}
.page-front .strength .strength__inner {
  width: clamp(-1080px, 84.375vw, 1080px);
  padding: clamp(-120px, 9.375vw, 120px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page-front .strength .strength__inner {
    width: 92.8vw;
    padding: 21.3333333333vw 0;
  }
}
.page-front .strength .strength__inner .strength__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .page-front .strength .strength__inner .strength__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.page-front .strength .strength__inner .strength__content .strength__item_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-36px, 2.8125vw, 36px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.3888888889;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page-front .strength .strength__inner .strength__content .strength__item_title {
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    margin-bottom: 5.8666666667vw;
  }
}
.page-front .strength .strength__inner .strength__content .strength__item_text {
  width: clamp(-470px, 36.71875vw, 470px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-34px, 2.65625vw, 34px);
}
@media screen and (max-width: 767px) {
  .page-front .strength .strength__inner .strength__content .strength__item_text {
    width: 100%;
    gap: 8.5333333333vw;
  }
}
.page-front .strength .strength__inner .strength__content .strength__item_text span {
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page-front .strength .strength__inner .strength__content .strength__item_text span {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
.page-front .business {
  width: 100%;
  padding: clamp(-64px, 5vw, 64px) 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-front .business {
    padding: 10.6666666667vw 0;
  }
}
.page-front .business::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(92deg, #2285C2 12.28%, #7DC9CA 46.01%, #16A2A4 94.72%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-front .business::after {
    background: linear-gradient(141deg, #2285C2 12.28%, #7DC9CA 46.01%, #16A2A4 94.72%);
  }
}
.page-front .business .business__inner {
  position: relative;
  z-index: 2;
}
.page-front .business .business__inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page-front .business .business__inner ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 4.2666666667vw;
  }
}
.page-front .business .business__inner ul li {
  width: clamp(-520px, 40.625vw, 520px);
  height: clamp(-140px, 10.9375vw, 140px);
}
@media screen and (max-width: 767px) {
  .page-front .business .business__inner ul li {
    width: 91.4666666667vw;
    height: 25.6vw;
  }
}
.page-front .business .business__inner ul li a {
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-24px, 1.875vw, 24px);
  background-color: #ffffff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-front .business .business__inner ul li a {
    gap: 3.2vw;
  }
}
.page-front .business .business__inner ul li a::before {
  content: "";
  display: block;
  width: 1px;
  height: clamp(-48px, 3.75vw, 48px);
  background-color: #A1A1A1;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: clamp(-78px, 6.09375vw, 78px);
}
@media screen and (max-width: 767px) {
  .page-front .business .business__inner ul li a::before {
    height: 12.8vw;
    right: 15.7333333333vw;
  }
}
.page-front .business .business__inner ul li a .business__arrow {
  content: "";
  display: block;
  width: clamp(-24px, 1.875vw, 24px);
  height: clamp(-22px, 1.71875vw, 22px);
  position: absolute;
  top: 0;
  right: clamp(-30px, 2.34375vw, 30px);
  overflow: hidden;
  z-index: 1;
  bottom: 0;
  margin: auto 0;
}
@media screen and (max-width: 767px) {
  .page-front .business .business__inner ul li a .business__arrow {
    width: 4vw;
    height: 4vw;
    right: 6.4vw;
  }
}
.page-front .business .business__inner ul li a .business__arrow::before, .page-front .business .business__inner ul li a .business__arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../../image/common/icon_arrow_bottom.svg);
          mask-image: url(../../image/common/icon_arrow_bottom.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #2285C2;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.page-front .business .business__inner ul li a .business__arrow::after {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.page-front .business .business__inner ul li a .business__icon {
  width: clamp(-94px, 7.34375vw, 94px);
  margin-left: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page-front .business .business__inner ul li a .business__icon {
    width: 14.9333333333vw;
    margin-left: 5.3333333333vw;
  }
}
.page-front .business .business__inner ul li a .business__icon img {
  width: 100%;
}
.page-front .business .business__inner ul li a .business__title {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page-front .business .business__inner ul li a .business__title {
    font-size: 4.8vw;
    line-height: 1.5;
  }
}
.page-front .business .business__inner ul li a:hover {
  opacity: 1;
}
.page-front .business .business__inner ul li a:hover .business__arrow::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page-front .business .business__inner ul li a:hover .business__arrow::after {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.page-front .business .business__inner ul li a.-blue .business__title {
  color: #2285C2;
}
.page-front .business .business__inner ul li a.-green::after {
  background-color: #16A2A4;
}
.page-front .business .business__inner ul li a.-green .business__title {
  color: #16A2A4;
}
.page-front .business .business__inner ul li a.-green .business__arrow::before {
  background-color: #16A2A4;
}
.page-front .business .business__inner ul li a.-green .business__arrow::after {
  background-color: #16A2A4;
}
.page-front .solution {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page-front .solution {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.page-front .solution .solution__inner .solution__sub_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__sub_title {
    margin-bottom: 2.6666666667vw;
  }
}
.page-front .solution .solution__inner .solution__sub_title div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.page-front .solution .solution__inner .solution__sub_title div p {
  padding: 0 clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__sub_title div p {
    padding: 0 1.6vw;
  }
}
.page-front .solution .solution__inner .solution__title {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__title {
    margin-bottom: 10.6666666667vw;
  }
}
.page-front .solution .solution__inner .solution__title.-green span {
  color: #16A2A4;
}
.page-front .solution .solution__inner .solution__content .solution__content_top_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.page-front .solution .solution__inner .solution__content .solution__content_top {
  width: clamp(-1180px, 92.1875vw, 1180px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-56px, 4.375vw, 56px);
  margin-bottom: clamp(-104px, 8.125vw, 104px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_top {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 8.5333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_top .solution__content_img {
  width: clamp(-600px, 46.875vw, 600px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_top .solution__content_img {
    width: 95.7333333333vw;
    margin-left: calc(50% - 50vw);
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_top .solution__content_text {
  width: clamp(-530px, 41.40625vw, 530px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_top .solution__content_text {
    width: 91.4666666667vw;
    margin-inline: auto;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_top .solution__content_text .solution__content_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4375;
  color: #2E3639;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_top .solution__content_text .solution__content_title {
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    margin-bottom: 6.4vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_top .solution__content_text p {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  font-weight: 400;
  color: #2E3639;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_top .solution__content_text p {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    margin-bottom: 6.4vw;
  }
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_top .solution__content_text a {
    margin-left: auto;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner {
  width: clamp(-1080px, 84.375vw, 1080px);
  height: clamp(-658px, 51.40625vw, 658px);
  background: url(../../image/front/img_solution_01_02.webp) no-repeat center center/cover;
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner {
    width: 91.4666666667vw;
    height: 98.6666666667vw;
    background: url(../../image/front/img_solution_01_02_sp.webp) no-repeat center center/cover;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: clamp(-58px, 4.53125vw, 58px);
  left: clamp(-440px, 34.375vw, 440px);
  width: clamp(-200px, 15.625vw, 200px);
  height: clamp(-200px, 15.625vw, 200px);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link {
    width: 34.1333333333vw;
    height: 34.1333333333vw;
    top: 10.6666666667vw;
    left: 27.7333333333vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link img {
  display: block;
  width: clamp(-80px, 6.25vw, 80px);
  margin-bottom: clamp(-7px, 0.546875vw, 7px);
  -webkit-transition: scale 0.3s ease-in-out;
  transition: scale 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link img {
    width: 14.4vw;
    margin-bottom: 1.8666666667vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link p {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.375;
  color: #2285C2;
  margin-bottom: clamp(-12px, 0.9375vw, 12px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link p {
    font-size: 3.2vw;
    line-height: 1.3333333333;
    margin-bottom: 1.3333333333vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link .small {
  font-size: clamp(-15px, 1.171875vw, 15px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link .small {
    font-size: 2.9333333333vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link .solution__content_link_icon {
  width: clamp(-22px, 1.71875vw, 22px);
  height: clamp(-22px, 1.71875vw, 22px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  background: #2285C2;
  position: relative;
  overflow: hidden;
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link .solution__content_link_icon::before, .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link .solution__content_link_icon::after {
  content: "";
  display: block;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  background: url(../../image/common/icon_arrow_right.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link .solution__content_link_icon::before, .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link .solution__content_link_icon::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link .solution__content_link_icon::before {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link .solution__content_link_icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link:hover {
  opacity: 1;
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link:hover img {
  scale: 1.15;
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link:hover .solution__content_link_icon::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link:hover .solution__content_link_icon::after {
  -webkit-transform: translateX(400%);
          transform: translateX(400%);
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link-2 {
  top: auto;
  bottom: clamp(-114px, 8.90625vw, 114px);
  left: clamp(-264px, 20.625vw, 264px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link-2 {
    top: 50.6666666667vw;
    left: 3.4666666667vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link-3 {
  top: auto;
  bottom: clamp(-114px, 8.90625vw, 114px);
  left: clamp(-616px, 48.125vw, 616px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link-3 {
    top: 50.6666666667vw;
    left: 51.7333333333vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2 {
  position: absolute;
  top: clamp(-92px, 7.1875vw, 92px);
  left: clamp(-708px, 55.3125vw, 708px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-10px, 0.78125vw, 10px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2 {
    top: 10.6666666667vw;
    left: 64.2666666667vw;
    gap: 1.0666666667vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2 p {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2 p {
    font-size: 3.2vw;
    line-height: normal;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2 .solution__content_link_icon {
  width: clamp(-22px, 1.71875vw, 22px);
  height: clamp(-22px, 1.71875vw, 22px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2 .solution__content_link_icon {
    width: 3.2vw;
    height: 3.2vw;
    border-radius: 0.5333333333vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2 .solution__content_link_icon::before, .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2 .solution__content_link_icon::after {
  content: "";
  display: block;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  background: url(../../image/common/icon_arrow_right_blue.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2 .solution__content_link_icon::before, .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2 .solution__content_link_icon::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2 .solution__content_link_icon::before {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2:hover {
  opacity: 1;
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2:hover .solution__content_link_icon::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2:hover .solution__content_link_icon::after {
  -webkit-transform: translateX(400%);
          transform: translateX(400%);
}
.page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2-2 {
  top: clamp(-132px, 10.3125vw, 132px);
}
@media screen and (max-width: 767px) {
  .page-front .solution .solution__inner .solution__content .solution__content_bottom .solution__content_bottom_inner .solution__content_link2-2 {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    top: 18.1333333333vw;
  }
}
.page-front .solution--2 {
  background: #ffffff;
}
.page-front .solution--2 .solution__inner {
  /* TikTok */
}
.page-front .solution--2 .solution__inner .solution__sub_title {
  color: #16A2A4;
}
.page-front .solution--2 .solution__inner .solution__content .solution__content_top_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.page-front .solution--2 .solution__inner .solution__content .solution__content_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.page-front .solution--2 .solution__inner .solution__content .solution__content_top .solution__content_img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__content .solution__content_top .solution__content_img {
    margin-left: auto;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.page-front .solution--2 .solution__inner .solution__content .solution__content_top .solution__content_text {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__content .solution__content_top .solution__content_text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.page-front .solution--2 .solution__inner .solution__search {
  padding: clamp(-56px, 4.375vw, 56px) clamp(-140px, 10.9375vw, 140px);
  margin: 0 auto clamp(-100px, 7.8125vw, 100px);
  border-radius: clamp(-4px, 0.3125vw, 4px);
  background: #DAF2EF;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search {
    padding: 10.6666666667vw 4.2666666667vw;
    margin: 0 auto 10.6666666667vw;
    border-radius: 1.0666666667vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  margin-bottom: clamp(-32px, 2.5vw, 32px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_title {
    font-size: 5.8666666667vw;
    margin-bottom: 6.4vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-8px, 0.625vw, 8px);
  margin-bottom: clamp(-32px, 2.5vw, 32px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_form {
    gap: 0vw;
    margin-bottom: 6.4vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_form input {
  width: clamp(-664px, 51.875vw, 664px);
  height: clamp(-50px, 3.90625vw, 50px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  border: 1px solid #16A2A4;
  background: #ffffff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_form input {
    font-size: 4.2666666667vw;
    width: 63.7333333333vw;
    height: 11.7333333333vw;
    border-radius: 0.5333333333vw 0 0 0.5333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_form button {
  width: clamp(-128px, 10vw, 128px);
  height: clamp(-50px, 3.90625vw, 50px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  background: #16A2A4;
  border: 1px solid #16A2A4;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_form button {
    width: 19.2vw;
    height: 11.7333333333vw;
    font-size: 3.7333333333vw;
    border-radius: 0.5333333333vw;
    position: relative;
    right: 0.5333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_form .search-suggestions {
  position: absolute;
  top: clamp(-50px, 3.90625vw, 50px);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_form .search-suggestions {
    top: 11.7333333333vw;
    left: 0;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category {
  color: #2E3639;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_category {
    font-size: 4.2666666667vw;
    margin-bottom: 2.1333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(-8px, 0.625vw, 8px);
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_category_list {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.1333333333vw;
    margin-bottom: 6.4vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  background: #ffffff;
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li {
    font-size: 3.7333333333vw;
    border-radius: 0.5333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: clamp(-8px, 0.625vw, 8px) clamp(-44px, 3.4375vw, 44px) clamp(-8px, 0.625vw, 8px) clamp(-20px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li a {
    padding: 2.1333333333vw 11.7333333333vw 2.1333333333vw 5.3333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li .solution__search_category_list_arrow {
  width: clamp(-9px, 0.703125vw, 9px);
  height: clamp(-9px, 0.703125vw, 9px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(-12px, 0.9375vw, 12px);
  margin: auto 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li .solution__search_category_list_arrow {
    width: 2.4vw;
    height: 2.4vw;
    right: 3.2vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li .solution__search_category_list_arrow::after, .page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li .solution__search_category_list_arrow::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../image/common/icon_arrow_right_black.svg) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li .solution__search_category_list_arrow::before {
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li:before {
  content: "";
  display: block;
  width: 1px;
  height: clamp(-16px, 1.25vw, 16px);
  background: #D3D3D3;
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(-31px, 2.421875vw, 31px);
  margin: auto 0;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li:before {
    height: 4.2666666667vw;
    right: 8.2666666667vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li:hover .solution__search_category_list_arrow::after {
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_list li:hover .solution__search_category_list_arrow::before {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_link {
  color: #2E3639;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-right: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_category_link {
    font-size: 4.2666666667vw;
    padding-right: 6.9333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_link .solution__search_category_link_icon {
  width: clamp(-24px, 1.875vw, 24px);
  height: clamp(-24px, 1.875vw, 24px);
  background: #16A2A4;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  overflow: hidden;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_category_link .solution__search_category_link_icon {
    width: 4.8vw;
    height: 4.8vw;
    border-radius: 0.5333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_link .solution__search_category_link_icon::before, .page-front .solution--2 .solution__inner .solution__search .solution__search_category_link .solution__search_category_link_icon::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: clamp(-8px, 0.625vw, 8px);
  height: clamp(-8px, 0.625vw, 8px);
  background: url(../../image/common/icon_arrow_right.svg) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__search .solution__search_category_link .solution__search_category_link_icon::before, .page-front .solution--2 .solution__inner .solution__search .solution__search_category_link .solution__search_category_link_icon::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_link .solution__search_category_link_icon::after {
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_link:hover {
  opacity: 1;
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_link:hover .solution__search_category_link_icon::before {
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.page-front .solution--2 .solution__inner .solution__search .solution__search_category_link:hover .solution__search_category_link_icon::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.page-front .solution--2 .solution__inner .solution__category {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category {
    margin-bottom: 10.6666666667vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category:last-child {
  margin-bottom: 0;
  margin-top: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category:last-child {
    margin-top: 10.6666666667vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category--manufacturer {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category--manufacturer {
    margin-bottom: 0;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-16px, 1.25vw, 16px);
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_title {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
    gap: 4.8vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_title span {
  font-family: Lato;
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #16A2A4;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_title span {
    font-size: 3.2vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list {
    gap: 2.4vw 2.1333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list li {
  width: clamp(-252px, 19.6875vw, 252px);
  height: clamp(-268px, 20.9375vw, 268px);
  background: #F2F5F8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list li {
    width: 44.5333333333vw;
    height: 50.6666666667vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list li a {
    padding: 4.2666666667vw 3.2vw 2.1333333333vw 3.2vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list li a img {
  width: clamp(-220px, 17.1875vw, 220px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list li a img {
    width: 38.1333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list li a .solution__category_item_title {
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  color: #2E3639;
  text-align: left;
  width: 100%;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list li a .solution__category_item_title {
    font-size: 4.2666666667vw;
    line-height: 1.375;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list li a .solution__category_item_icon {
  width: clamp(-36px, 2.8125vw, 36px);
  height: clamp(-36px, 2.8125vw, 36px);
  background: #2E3639;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  position: absolute;
  bottom: clamp(-12px, 0.9375vw, 12px);
  right: clamp(-12px, 0.9375vw, 12px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list li a .solution__category_item_icon {
    width: 6.9333333333vw;
    height: 6.9333333333vw;
    border-radius: 0.5333333333vw;
    bottom: 2.1333333333vw;
    right: 2.1333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list li a .solution__category_item_icon::before, .page-front .solution--2 .solution__inner .solution__category .solution__category_list li a .solution__category_item_icon::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  background: url(../../image/common/icon_arrow_right.svg) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list li a .solution__category_item_icon::before, .page-front .solution--2 .solution__inner .solution__category .solution__category_list li a .solution__category_item_icon::after {
    width: 1.8666666667vw;
    height: 1.8666666667vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list li a .solution__category_item_icon::after {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list li a:hover {
  opacity: 1;
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list li a:hover .solution__category_item_icon::before {
  -webkit-transform: translateX(400%);
          transform: translateX(400%);
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list li a:hover .solution__category_item_icon::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-40px, 3.125vw, 40px);
  margin-bottom: clamp(-39px, 3.046875vw, 39px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer {
    gap: 6.4vw;
    margin-bottom: 6.4vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer li a {
  width: 100%;
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer li a img {
  width: 100%;
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer li.-manufacturer1 {
  width: clamp(-184px, 14.375vw, 184px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer li.-manufacturer1 {
    width: 26.1333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer li.-manufacturer2 {
  width: clamp(-148px, 11.5625vw, 148px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer li.-manufacturer2 {
    width: 26.1333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer li.-manufacturer3 {
  width: clamp(-184px, 14.375vw, 184px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer li.-manufacturer3 {
    width: 26.1333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer li.-manufacturer4 {
  width: clamp(-164px, 12.8125vw, 164px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer li.-manufacturer4 {
    width: 26.1333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer li.-manufacturer5 {
  width: clamp(-184px, 14.375vw, 184px);
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category .solution__category_list--manufacturer li.-manufacturer5 {
    width: 26.1333333333vw;
  }
}
.page-front .solution--2 .solution__inner .solution__category .content__more_link, .page-front .solution--2 .solution__inner .solution__category .content__more_link_up {
  margin-left: auto;
}
.page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_pc {
    display: none;
  }
}
.page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_pc ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-24px, 1.875vw, 24px);
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
.page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_pc ul li {
  width: clamp(-252px, 19.6875vw, 252px);
  height: clamp(-448px, 35vw, 448px);
  background: #F2F5F8;
}
.page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_pc ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_pc ul li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_sp {
    display: block;
    width: 100%;
    margin-bottom: 8.5333333333vw;
  }
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_sp .swiper-wrapper .swiper-slide {
    width: 67.2vw;
    height: 119.4666666667vw;
    background: #F2F5F8;
  }
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_sp .swiper-wrapper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_sp .swiper-wrapper .swiper-slide a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_sp .solution__category_list--videos_scrollbar {
    display: none;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_sp .solution__category_list--videos_scrollbar {
    display: block;
    width: 100%;
    height: 1.3333333333vw;
    background: #D3D3D3;
    margin-top: 6.4vw;
  }
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_sp .solution__category_list--videos_scrollbar .swiper-scrollbar-drag {
    background: #2285C2;
  }
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list--videos_sp .solution__category_list--videos_scrollbar.swiper-scrollbar-horizontal {
    position: static;
  }
}
.page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list__inner {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6.4vw;
    margin-top: 6.4vw;
    position: relative;
  }
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list__inner .solution__category_list--videos_navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6.4vw;
  }
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list__inner .solution__category_list--videos_navigation .solution__category_list--videos_navigation_prev,
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list__inner .solution__category_list--videos_navigation .solution__category_list--videos_navigation_next {
    position: static;
    width: 9.6vw;
    height: 9.6vw;
    background: #2E3639;
    border-radius: clamp(-2px, 0.15625vw, 2px);
    cursor: pointer;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 0;
  }
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list__inner .solution__category_list--videos_navigation .solution__category_list--videos_navigation_prev::after,
  .page-front .solution--2 .solution__inner .solution__category_list--videos .solution__category_list__inner .solution__category_list--videos_navigation .solution__category_list--videos_navigation_next::after {
    font-size: 3.7333333333vw;
    color: #ffffff;
    font-weight: bold;
  }
}
.page-front .solution--2 .solution__inner .solution__category_list--tiktok {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-front .solution--2 .solution__inner .solution__category_list--tiktok {
    display: block;
  }
}
.page-front .news {
  padding: clamp(-120px, 9.375vw, 120px) 0;
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page-front .news {
    padding: 21.3333333333vw 0;
  }
}
.page-front .news .news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-99px, 7.734375vw, 99px);
}
@media screen and (max-width: 767px) {
  .page-front .news .news__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-front .news .news__inner .news__title {
    margin-bottom: 10.6666666667vw;
  }
}
.page-front .news .news__inner .news__list {
  width: clamp(-754px, 58.90625vw, 754px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-32px, 2.5vw, 32px);
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page-front .news .news__inner .news__list {
    width: 100%;
    gap: 6.9333333333vw;
    margin-bottom: 6.4vw;
  }
}
.page-front .news .news__inner .news__list .news__item {
  width: 100%;
}
.page-front .news .news__inner .news__list .news__item a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-bottom: clamp(-32px, 2.5vw, 32px);
  border-bottom: 1px solid #A1A1A1;
}
@media screen and (max-width: 767px) {
  .page-front .news .news__inner .news__list .news__item a {
    padding-bottom: 6.9333333333vw;
  }
}
.page-front .news .news__inner .news__list .news__item a .news__item_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
  margin-bottom: clamp(-10px, 0.78125vw, 10px);
}
@media screen and (max-width: 767px) {
  .page-front .news .news__inner .news__list .news__item a .news__item_title {
    gap: 3.2vw;
    margin-bottom: 2.4vw;
  }
}
.page-front .news .news__inner .news__list .news__item a .news__item_title .news__item_date {
  font-family: "Noto Sans JP";
  font-family: Lato;
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page-front .news .news__inner .news__list .news__item a .news__item_title .news__item_date {
    font-size: 3.2vw;
  }
}
.page-front .news .news__inner .news__list .news__item a .news__item_title .news__item_category {
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2285C2;
  background: #CFEDFF;
  padding: clamp(-2px, 0.15625vw, 2px) clamp(-10px, 0.78125vw, 10px);
  border-radius: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page-front .news .news__inner .news__list .news__item a .news__item_title .news__item_category {
    font-size: 3.2vw;
    padding: 0.5333333333vw 2.6666666667vw;
    border-radius: 4.2666666667vw;
  }
}
.page-front .news .news__inner .news__list .news__item a .news__item_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  color: #2E3639;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .page-front .news .news__inner .news__list .news__item a .news__item_text {
    font-size: 4.2666666667vw;
    line-height: 1.375;
  }
}
.page-front .news .content__more_link, .page-front .news .content__more_link_up {
  margin-left: auto;
}

.link_kiki {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-16px, 1.25vw, 16px);
  width: clamp(-335px, 26.171875vw, 335px);
  height: clamp(-92px, 7.1875vw, 92px);
  border-radius: clamp(-4px, 0.3125vw, 4px) 0 0 0;
  background: #16A2A4;
  -webkit-box-shadow: 0 0 clamp(-4px, 0.3125vw, 4px) clamp(-2px, 0.15625vw, 2px) rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 clamp(-4px, 0.3125vw, 4px) clamp(-2px, 0.15625vw, 2px) rgba(0, 0, 0, 0.15);
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .link_kiki {
    width: 55.2vw;
    height: 14.9333333333vw;
    border-radius: 1.0666666667vw 0 0 0;
    gap: 2.6666666667vw;
  }
}
.link_kiki.-active {
  opacity: 1;
  pointer-events: auto;
}
.link_kiki:hover {
  opacity: 1;
}
.link_kiki .link_kiki__icon {
  width: clamp(-58px, 4.53125vw, 58px);
  margin-left: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .link_kiki .link_kiki__icon {
    width: 8.5333333333vw;
    margin-left: 3.2vw;
  }
}
.link_kiki .link_kiki__icon img {
  width: 100%;
}
.link_kiki .link_kiki__text {
  color: #ffffff;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .link_kiki .link_kiki__text {
    font-size: 3.7333333333vw;
  }
}
.link_kiki::after {
  content: "";
  display: block;
  width: 1px;
  height: clamp(-48px, 3.75vw, 48px);
  background: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(-78px, 6.09375vw, 78px);
  margin: auto;
}
@media screen and (max-width: 767px) {
  .link_kiki::after {
    height: 6.4vw;
    right: 10.1333333333vw;
  }
}
.link_kiki::before {
  content: "";
  display: block;
  width: clamp(-20px, 1.5625vw, 20px);
  height: clamp(-20px, 1.5625vw, 20px);
  background: url(../../image/common/icon_arrow_right.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(-32px, 2.5vw, 32px);
  margin: auto;
}
@media screen and (max-width: 767px) {
  .link_kiki::before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    right: 4.2666666667vw;
  }
}

.page_solution .page_content .solution__kv {
  padding: clamp(-64px, 5vw, 64px) 0 clamp(-80px, 6.25vw, 80px);
  background: #2285C2;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_ttl {
  width: clamp(-648px, 50.625vw, 648px);
  margin: 0 auto clamp(-64px, 5vw, 64px);
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_ttl {
    width: 75.2vw;
    margin: 0 auto 10.6666666667vw;
  }
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(-40px, 3.125vw, 40px) clamp(-57px, 4.453125vw, 57px);
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 4.8vw 0;
  }
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item {
  width: clamp(-322px, 25.15625vw, 322px);
  height: clamp(-200px, 15.625vw, 200px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item {
    width: 83.7333333333vw;
    height: 42.6666666667vw;
    margin-right: auto;
  }
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item .solution__kv_list_item_inner {
  width: clamp(-258px, 20.15625vw, 258px);
  height: clamp(-115px, 8.984375vw, 115px);
  background: #ffffff;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  padding: clamp(-30px, 2.34375vw, 30px) clamp(-21px, 1.640625vw, 21px) clamp(-22px, 1.71875vw, 22px);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item .solution__kv_list_item_inner {
    width: 68.8vw;
    height: 27.2vw;
    border-radius: 0.5333333333vw;
    padding: 6.4vw 5.6vw 6.4vw;
  }
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item .solution__kv_list_item_inner::before {
  content: "";
  display: block;
  width: clamp(-47px, 3.671875vw, 47px);
  height: clamp(-59px, 4.609375vw, 59px);
  background: url(../../image/solution/img_solution_kv_fukidashi1.webp) no-repeat center center/contain;
  background-size: contain;
  position: absolute;
  bottom: calc(clamp(-28px, 2.1875vw, 28px) * -1);
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item .solution__kv_list_item_inner::before {
    width: 12.5333333333vw;
    height: 15.7333333333vw;
    bottom: -7.4666666667vw;
  }
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item .solution__kv_list_item_inner .solution__kv_list_item_ttl {
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-weight: 700;
  line-height: 1.5555555556;
  color: #2E3639;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item .solution__kv_list_item_inner .solution__kv_list_item_ttl {
    font-size: 4.8vw;
    line-height: 1.5555555556;
  }
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item .solution__kv_list_item_inner .solution__kv_list_item_ttl span {
  color: #2285C2;
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item .solution__kv_list_item_inner .solution__kv_list_item_icon {
  display: block;
  width: clamp(-22px, 1.71875vw, 22px);
  height: clamp(-22px, 1.71875vw, 22px);
  background: #2285C2;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item .solution__kv_list_item_inner .solution__kv_list_item_icon {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item .solution__kv_list_item_inner .arrow_link_icon {
  margin: 0 auto;
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item .solution__kv_list_item_img {
  width: clamp(-84px, 6.5625vw, 84px);
  height: clamp(-84px, 6.5625vw, 84px);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .solution__kv_list_item .solution__kv_list_item_img {
    width: 17.6vw;
    height: 17.6vw;
  }
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .-reverse .solution__kv_list_item_inner {
  left: 0;
  right: auto;
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .-reverse .solution__kv_list_item_inner::before {
  left: auto;
  right: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .-reverse .solution__kv_list_item_inner::before {
    left: 0;
    right: auto;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .-reverse .solution__kv_list_item_inner {
    right: 0;
    left: auto;
  }
}
.page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .-reverse .solution__kv_list_item_img {
  left: auto;
  right: 0;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .-reverse .solution__kv_list_item_img {
    left: 0;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .-sp-leverse {
    margin-left: auto;
    margin-right: 0;
  }
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .-sp-leverse .solution__kv_list_item_inner {
    right: auto;
    left: 0;
  }
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .-sp-leverse .solution__kv_list_item_inner::before {
    left: auto;
    right: 0;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .page_solution .page_content .solution__kv .solution__kv_inner .solution__kv_list .-sp-leverse .solution__kv_list_item_img {
    left: auto;
    right: 0;
  }
}
.page_solution .page_content .solution__list {
  padding: clamp(-100px, 7.8125vw, 100px) 0;
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__list {
    padding: 21.3333333333vw 0;
  }
}
.page_solution .page_content .solution__list .solution__list_inner .solution__list_lead {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  text-align: left;
  color: #2E3639;
  margin-bottom: clamp(-56px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__list .solution__list_inner .solution__list_lead {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    margin-bottom: 14.9333333333vw;
  }
}
.page_solution .page_content .solution__list .solution__list_ttl {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__list .solution__list_ttl {
    margin-bottom: 6.4vw;
  }
}
.page_solution .page_content .solution__list .solution__service_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__list .solution__service_list {
    gap: 6.4vw;
  }
}
.page_solution .page_content .solution__list .solution__service_list .solution__service_list_item {
  width: 100%;
  padding: clamp(-48px, 3.75vw, 48px) clamp(-40px, 3.125vw, 40px) clamp(-56px, 4.375vw, 56px);
  background: #ffffff;
  border-radius: clamp(-4px, 0.3125vw, 4px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__list .solution__service_list .solution__service_list_item {
    padding: 6.4vw 4.2666666667vw 22.4vw;
    border-radius: 0.5333333333vw;
  }
}
.page_solution .page_content .solution__list .solution__service_list .solution__service_list_item .solution__service_list_item_inner .service_item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__list .solution__service_list .solution__service_list_item .solution__service_list_item_inner .service_item__top {
    margin-bottom: 6.4vw;
  }
}
.page_solution .page_content .solution__list .solution__service_list .solution__service_list_item .solution__service_list_item_inner .service_item__top .service_item__top_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-16px, 1.25vw, 16px);
}
.page_solution .page_content .solution__list .solution__service_list .solution__service_list_item .solution__service_list_item_inner .service_item__top .service_item__top_inner .service_item__top_img {
  width: clamp(-56px, 4.375vw, 56px);
  height: clamp(-56px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__list .solution__service_list .solution__service_list_item .solution__service_list_item_inner .service_item__top .service_item__top_inner .service_item__top_img {
    width: 14.9333333333vw;
    height: 14.9333333333vw;
  }
}
.page_solution .page_content .solution__list .solution__service_list .solution__service_list_item .solution__service_list_item_inner .service_item__top .service_item__top_inner .service_item__top_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__list .solution__service_list .solution__service_list_item .solution__service_list_item_inner .service_item__top .service_item__top_inner .service_item__top_ttl {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__list .solution__service_list .solution__service_list_item .solution__service_list_item_inner .service_item__top .service_item__link {
    position: absolute;
    bottom: 6.4vw;
    right: 4.2666666667vw;
  }
}
.page_solution .page_content .solution__list .solution__service_list .solution__service_list_item .solution__service_list_item_inner .service_item__lead {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__list .solution__service_list .solution__service_list_item .solution__service_list_item_inner .service_item__lead {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
.page_solution .page_content .solution__list .solution__service_list .solution__service_list_item .solution__service_list_item_inner .service_item__category {
  margin-top: clamp(-24px, 1.875vw, 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__list .solution__service_list .solution__service_list_item .solution__service_list_item_inner .service_item__category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.1333333333vw;
    margin-top: 4.5333333333vw;
  }
}
.page_solution .page_content .solution__related {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .page_solution .page_content .solution__related {
    padding: 21.3333333333vw 0 21.3333333333vw;
  }
}

.page_ec {
  border-bottom: 1px solid #ddd;
}
.page_ec .page_content {
  background: #F2F5F8;
  padding-bottom: clamp(-100px, 7.8125vw, 100px);
}
.page_ec .page_content .inner .page_lead {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .page_lead {
    margin-bottom: 0;
  }
}
.page_ec .page_content .inner .ec__category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-24px, 1.875vw, 24px);
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__category_list {
    gap: 2.4vw 2.1333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.page_ec .page_content .inner .ec__category_list li {
  width: clamp(-252px, 19.6875vw, 252px);
  height: clamp(-260px, 20.3125vw, 260px);
  background: #ffffff;
  padding: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__category_list li {
    width: 44.5333333333vw;
    height: 50.6666666667vw;
    padding: 4.2666666667vw 3.2vw 2.1333333333vw 3.2vw;
  }
}
.page_ec .page_content .inner .ec__category_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-16px, 1.25vw, 16px);
  width: 100%;
  height: 100%;
}
.page_ec .page_content .inner .ec__category_list li a img {
  width: clamp(-220px, 17.1875vw, 220px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__category_list li a img {
    width: 38.1333333333vw;
  }
}
.page_ec .page_content .inner .ec__category_list li a .ec__category_item_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
}
.page_ec .page_content .inner .ec__category_list li a .ec__category_item_bottom .ec__category_item_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  bottom: clamp(-5px, 0.390625vw, 5px);
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__category_list li a .ec__category_item_bottom .ec__category_item_title {
    font-size: 4.2666666667vw;
    bottom: 0.5333333333vw;
  }
}
.page_ec .page_content .inner .ec__category_list li a .ec__category_item_bottom .ec__category_item_arrow {
  width: clamp(-36px, 2.8125vw, 36px);
  height: clamp(-36px, 2.8125vw, 36px);
  background: #2E3639;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__category_list li a .ec__category_item_bottom .ec__category_item_arrow {
    width: 6.9333333333vw;
    height: 6.9333333333vw;
    border-radius: 0.5333333333vw;
  }
}
.page_ec .page_content .inner .ec__category_list li a .ec__category_item_bottom .ec__category_item_arrow::before, .page_ec .page_content .inner .ec__category_list li a .ec__category_item_bottom .ec__category_item_arrow::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  background: url(../../image/common/icon_arrow_right.svg) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__category_list li a .ec__category_item_bottom .ec__category_item_arrow::before, .page_ec .page_content .inner .ec__category_list li a .ec__category_item_bottom .ec__category_item_arrow::after {
    width: 1.8666666667vw;
    height: 1.8666666667vw;
  }
}
.page_ec .page_content .inner .ec__category_list li a .ec__category_item_bottom .ec__category_item_arrow::after {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}
.page_ec .page_content .inner .ec__category_list li a .ec__category_item_bottom .ec__category_item_arrow_network {
  position: relative;
  bottom: clamp(-7px, 0.546875vw, 7px);
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__category_list li a .ec__category_item_bottom .ec__category_item_arrow_network {
    bottom: 0;
  }
}
.page_ec .page_content .inner .ec__category_list li a:hover {
  opacity: 1;
}
.page_ec .page_content .inner .ec__category_list li a:hover .ec__category_item_arrow::before {
  -webkit-transform: translateX(400%);
          transform: translateX(400%);
}
.page_ec .page_content .inner .ec__category_list li a:hover .ec__category_item_arrow::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.page_ec .page_content .inner .ec__manufacturer_list_inner .ec__manufacturer_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-25px, 1.953125vw, 25px);
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__manufacturer_list_inner .ec__manufacturer_list {
    gap: 2.4vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 6.4vw;
  }
}
.page_ec .page_content .inner .ec__manufacturer_list_inner .ec__manufacturer_list li {
  width: clamp(-196px, 15.3125vw, 196px);
  height: clamp(-120px, 9.375vw, 120px);
  background: #fff;
  border-radius: clamp(-4px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__manufacturer_list_inner .ec__manufacturer_list li {
    width: 44.5333333333vw;
    height: 27.2vw;
    border-radius: 0.5333333333vw;
  }
}
.page_ec .page_content .inner .ec__manufacturer_list_inner .ec__manufacturer_list li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_ec .page_content .inner .ec__manufacturer_list_inner .ec__manufacturer_list li a img {
  max-width: clamp(-140px, 10.9375vw, 140px);
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__manufacturer_list_inner .ec__manufacturer_list li a img {
    max-width: 31.7333333333vw;
  }
}
.page_ec .page_content .inner .ec__video_title {
  margin-top: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__video_title {
    margin-top: 10.6666666667vw;
  }
}
.page_ec .page_content .inner .ec__video_list {
  margin-bottom: clamp(-56px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__video_list {
    margin-bottom: 15.4666666667vw;
  }
}
.page_ec .page_content .inner .ec__video_list .page_more_link {
  margin-top: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_ec .page_content .inner .ec__video_list .page_more_link {
    margin-top: 4.2666666667vw;
  }
}
.page_ec .ec_rental {
  background: #ffffff;
  padding: clamp(-80px, 6.25vw, 80px) 0 clamp(-120px, 9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .page_ec .ec_rental {
    padding: 21.3333333333vw 0 21.3333333333vw;
  }
}
.page_ec .ec_rental .ec_rental__title {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_ec .ec_rental .ec_rental__title {
    margin-bottom: 6.4vw;
  }
}
.page_ec .ec_rental .ec_rental__text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_ec .ec_rental .ec_rental__text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    margin-bottom: 6.4vw;
  }
}
.page_ec .ec_rental .ec_rental__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_ec .ec_rental .ec_rental__list {
    gap: 7.4666666667vw;
  }
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item {
  width: clamp(-344px, 26.875vw, 344px);
}
@media screen and (max-width: 767px) {
  .page_ec .ec_rental .ec_rental__list .ec_rental__list_item {
    width: 100%;
  }
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item a {
  display: block;
  width: 100%;
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_item_img {
  width: 100%;
  margin-bottom: clamp(-16px, 1.25vw, 16px);
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 767px) {
  .page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_item_img {
    margin-bottom: 3.4666666667vw;
  }
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_item_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_bottom .ec_rental__list_item_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  bottom: clamp(-4px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_bottom .ec_rental__list_item_title {
    font-size: 4.8vw;
    bottom: 0.5333333333vw;
  }
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_bottom .ec_rental__arrow {
  width: clamp(-36px, 2.8125vw, 36px);
  height: clamp(-36px, 2.8125vw, 36px);
  background: #2E3639;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_bottom .ec_rental__arrow {
    width: 9.6vw;
    height: 9.6vw;
    border-radius: 0.5333333333vw;
  }
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_bottom .ec_rental__arrow::before, .page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_bottom .ec_rental__arrow::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  background: url(../../image/common/icon_arrow_right.svg) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_bottom .ec_rental__arrow::before, .page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_bottom .ec_rental__arrow::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item a .ec_rental__list_bottom .ec_rental__arrow::after {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item a:hover {
  opacity: 1;
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item a:hover img {
  /* object-fitの拡大率を1.15倍にする */
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item a:hover .ec_rental__arrow::before {
  -webkit-transform: translateX(400%);
          transform: translateX(400%);
}
.page_ec .ec_rental .ec_rental__list .ec_rental__list_item a:hover .ec_rental__arrow::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.page_ec .simplebar-scrollbar {
  background: #2285C2;
}

.page_category .category_search {
  margin-bottom: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_category .category_search {
    margin-bottom: 10.6666666667vw;
  }
}
.page_category .page_search__link {
  margin-top: clamp(-34px, 2.65625vw, 34px);
}
@media screen and (max-width: 767px) {
  .page_category .page_search__link {
    margin-top: 6.4vw;
  }
}
.page_category .category_nav {
  margin-bottom: calc(clamp(-2px, 0.15625vw, 2px) * -1);
}
@media screen and (max-width: 767px) {
  .page_category .category_nav {
    margin-bottom: -0.5333333333vw;
    width: 100%;
    padding: 0 4.2666666667vw;
    overflow-x: scroll;
  }
}
.page_category .category_nav .category_nav_list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.page_category .category_nav .category_nav_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-1000px, 78.125vw, 1000px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page_category .category_nav .category_nav_list ul {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 6.4vw;
  }
}
.page_category .category_nav .category_nav_list ul li {
  cursor: pointer;
  white-space: nowrap;
}
.page_category .category_nav .category_nav_list ul li span {
  display: block;
  padding: 0 clamp(-61px, 4.765625vw, 61px) clamp(-18px, 1.40625vw, 18px);
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #A1A1A1;
}
@media screen and (max-width: 767px) {
  .page_category .category_nav .category_nav_list ul li span {
    font-size: 3.7333333333vw;
    padding: 0 0 3.2vw;
  }
}
.page_category .category_nav .category_nav_list ul li.-active span {
  color: #16A2A4;
  position: relative;
}
.page_category .category_nav .category_nav_list ul li.-active span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: clamp(-4px, 0.3125vw, 4px);
  background: #16A2A4;
}
@media screen and (max-width: 767px) {
  .page_category .category_nav .category_nav_list ul li.-active span::after {
    height: 1.0666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .page_category .category_nav .category_nav_list ul li:last-child span {
    padding-right: 4.2666666667vw;
  }
}
.page_category .category_list {
  width: 100%;
  padding: clamp(-56px, 4.375vw, 56px) 0 clamp(-120px, 9.375vw, 120px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_category .category_list {
    padding: 10.6666666667vw 0 21.3333333333vw;
  }
}
.page_category .category_list .category_list__tab {
  display: none;
}
.page_category .category_list .category_list__tab.-active {
  display: block;
}
.page_category .category_list .category_list__tab_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_category .category_list .category_list__tab_title {
    font-size: 4.8vw;
    margin: 0 auto 8.5333333333vw;
  }
}
.page_category .category_list .category_list__tab_overview {
  width: 100%;
  margin: 0 auto clamp(-52px, 4.0625vw, 52px);
  position: relative;
  display: none;
}
@media screen and (max-width: 767px) {
  .page_category .category_list .category_list__tab_overview {
    display: none !important;
  }
}
.page_category .category_list .category_list__tab_overview.-active {
  display: block;
}
.page_category .category_list .category_list__tab_overview img {
  width: 100%;
  position: relative;
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list1 li:nth-child(1) {
  top: clamp(-50px, 3.90625vw, 50px);
  left: clamp(-470px, 36.71875vw, 470px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list1 li:nth-child(2) {
  top: clamp(-330px, 25.78125vw, 330px);
  left: clamp(-460px, 35.9375vw, 460px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list1 li:nth-child(3) {
  top: clamp(-140px, 10.9375vw, 140px);
  left: clamp(-680px, 53.125vw, 680px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list1 li:nth-child(4) {
  top: clamp(-60px, 4.6875vw, 60px);
  left: clamp(-230px, 17.96875vw, 230px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list1 li:nth-child(5) {
  top: clamp(-200px, 15.625vw, 200px);
  left: clamp(-850px, 66.40625vw, 850px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list1 li:nth-child(6) {
  top: clamp(-300px, 23.4375vw, 300px);
  left: clamp(-750px, 58.59375vw, 750px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list1 li:nth-child(7) {
  top: clamp(-5px, 0.390625vw, 5px);
  left: clamp(-90px, 7.03125vw, 90px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list1 li:nth-child(8) {
  top: clamp(-300px, 23.4375vw, 300px);
  left: clamp(-230px, 17.96875vw, 230px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list1 li:nth-child(8) {
  top: clamp(-300px, 23.4375vw, 300px);
  left: clamp(-240px, 18.75vw, 240px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list1 li:nth-child(9) {
  top: clamp(-210px, 16.40625vw, 210px);
  left: clamp(-80px, 6.25vw, 80px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list2 li:nth-child(1) {
  top: clamp(-220px, 17.1875vw, 220px);
  left: clamp(-620px, 48.4375vw, 620px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list2 li:nth-child(2) {
  top: clamp(-80px, 6.25vw, 80px);
  left: clamp(-620px, 48.4375vw, 620px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list2 li:nth-child(3) {
  top: clamp(-50px, 3.90625vw, 50px);
  left: clamp(-245px, 19.140625vw, 245px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list2 li:nth-child(4) {
  top: clamp(--10px, -0.78125vw, -10px);
  left: clamp(-400px, 31.25vw, 400px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list2 li:nth-child(5) {
  top: clamp(-130px, 10.15625vw, 130px);
  left: clamp(-410px, 32.03125vw, 410px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list3 li:nth-child(1) {
  top: clamp(-185px, 14.453125vw, 185px);
  left: clamp(-840px, 65.625vw, 840px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list3 li:nth-child(2) {
  top: clamp(-65px, 5.078125vw, 65px);
  left: clamp(-820px, 64.0625vw, 820px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list3 li:nth-child(3) {
  top: clamp(-217px, 16.953125vw, 217px);
  left: clamp(-420px, 32.8125vw, 420px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list3 li:nth-child(4) {
  top: clamp(-60px, 4.6875vw, 60px);
  left: clamp(-530px, 41.40625vw, 530px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list3 li:nth-child(5) {
  top: clamp(-400px, 31.25vw, 400px);
  left: clamp(-390px, 30.46875vw, 390px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list3 li:nth-child(6) {
  top: clamp(-140px, 10.9375vw, 140px);
  left: clamp(-290px, 22.65625vw, 290px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list3 li:nth-child(7) {
  top: clamp(-90px, 7.03125vw, 90px);
  left: clamp(-120px, 9.375vw, 120px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list.-list3 li:nth-child(8) {
  top: clamp(-300px, 23.4375vw, 300px);
  left: clamp(-20px, 1.5625vw, 20px);
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list li {
  width: clamp(-100px, 7.8125vw, 100px);
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list li a {
  display: block;
  width: 100%;
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list li img {
  width: 100%;
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list li:hover {
  opacity: 1;
  -webkit-animation: hoverFloatAnimation 1.5s ease-in-out infinite;
          animation: hoverFloatAnimation 1.5s ease-in-out infinite;
  z-index: 2;
}
.page_category .category_list .category_list__tab_overview .category_list__tab_overview_list li:hover a {
  opacity: 1;
}
.page_category .category_list .category_list__tab_content .category_list__tab_content_item {
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_category .category_list .category_list__tab_content .category_list__tab_content_item {
    margin-bottom: 8.5333333333vw;
  }
}
.page_category .category_list .category_list__tab_content .category_list__tab_content_item:last-child {
  margin-bottom: 0;
}
.page_category .category_list .category_list__tab_content .category_list__items_wrap {
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_category .category_list .category_list__tab_content .category_list__items_wrap {
    margin-bottom: 5.3333333333vw;
  }
}
.page_category .category_list .category_list__tab_content .category_list__items_wrap .category_list__items_head {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
  height: clamp(-56px, 4.375vw, 56px);
  background: #16A2A4;
  padding: 0 clamp(-24px, 1.875vw, 24px);
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: clamp(-4px, 0.3125vw, 4px) clamp(-4px, 0.3125vw, 4px);
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page_category .category_list .category_list__tab_content .category_list__items_wrap .category_list__items_head {
    font-size: 4.2666666667vw;
    height: 12.5333333333vw;
    padding: 0 4.2666666667vw;
  }
}
.page_category .category_list .category_list__tab_content .category_list__items_wrap .category_list__items_head .plus {
  display: block;
  width: clamp(-20px, 1.5625vw, 20px);
  height: clamp(-20px, 1.5625vw, 20px);
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .page_category .category_list .category_list__tab_content .category_list__items_wrap .category_list__items_head .plus {
    display: block;
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    position: relative;
  }
}
.page_category .category_list .category_list__tab_content .category_list__items_wrap .category_list__items_head .plus::before, .page_category .category_list .category_list__tab_content .category_list__items_wrap .category_list__items_head .plus::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_category .category_list .category_list__tab_content .category_list__items_wrap .category_list__items_head .plus::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.page_category .category_list .category_list__tab_content .category_list__items_wrap .category_list__items_head.active .plus::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.page_category .category_list .category_list__tab_content .category_list__items_wrap .category_list__items_content {
  padding: clamp(-32px, 2.5vw, 32px) clamp(-24px, 1.875vw, 24px);
  background: #ffffff;
  border-radius: 0 0 clamp(-4px, 0.3125vw, 4px) clamp(-4px, 0.3125vw, 4px);
  display: none;
}
@media screen and (max-width: 767px) {
  .page_category .category_list .category_list__tab_content .category_list__items_wrap .category_list__items_content {
    padding: 6.4vw 4.2666666667vw;
    border-radius: 0 0 1.0666666667vw 1.0666666667vw;
  }
}
.page_category .category_list .category_list__tab_content .category_list__items_wrap .category_list__items_content .category_list__items_content_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-32px, 2.5vw, 32px) clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_category .category_list .category_list__tab_content .category_list__items_wrap .category_list__items_content .category_list__items_content_inner {
    gap: 6.4vw 4.5333333333vw;
  }
}
.page_category .category_list .category_list__tab_content .category_list__items_wrap:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes hoverFloatAnimation {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes hoverFloatAnimation {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.page_purpose {
  /* 検索結果 */
}
.page_purpose .page_content {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
  width: 100%;
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_purpose .page_content {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.page_purpose .page_content .inner .purpose__list {
  margin-bottom: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_purpose .page_content .inner .purpose__list {
    margin-bottom: 10.6666666667vw;
  }
}
.page_purpose .page_content .inner .purpose__list .purpose__list_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: clamp(-56px, 4.375vw, 56px);
  padding-bottom: clamp(-56px, 4.375vw, 56px);
  border-bottom: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .page_purpose .page_content .inner .purpose__list .purpose__list_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 8.5333333333vw;
    padding-bottom: 8.5333333333vw;
    gap: 8.5333333333vw 0;
  }
}
.page_purpose .page_content .inner .purpose__list .purpose__list_inner:first-child {
  padding-top: 0;
}
.page_purpose .page_content .inner .purpose__list .purpose__list_inner .purpose__list_title {
  width: clamp(-220px, 17.1875vw, 220px);
  text-align: left;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_purpose .page_content .inner .purpose__list .purpose__list_inner .purpose__list_title {
    width: 100%;
    font-size: 4.2666666667vw;
  }
}
.page_purpose .page_content .inner .purpose__list .purpose__list_inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_purpose .page_content .inner .purpose__list .purpose__list_inner ul {
    gap: 3.2vw;
  }
}
.page_purpose .page_content .inner .purpose__list .purpose__list_inner ul .purpose__list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-6px, 0.46875vw, 6px);
}
@media screen and (max-width: 767px) {
  .page_purpose .page_content .inner .purpose__list .purpose__list_inner ul .purpose__list_item {
    gap: 1.6vw;
  }
}
.page_purpose .page_content .inner .purpose__list .purpose__list_inner ul .purpose__list_item input {
  margin: 0;
  padding: 0;
  accent-color: #2E3639;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 767px) {
  .page_purpose .page_content .inner .purpose__list .purpose__list_inner ul .purpose__list_item input {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.page_purpose .page_content .inner .purpose__list .purpose__list_inner ul .purpose__list_item label {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_purpose .page_content .inner .purpose__list .purpose__list_inner ul .purpose__list_item label {
    font-size: 4.2666666667vw;
  }
}
.page_purpose .page_content .inner .purpose__list_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_purpose .page_content .inner .purpose__list_button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 6.4vw 0;
  }
}
.page_purpose .s_result {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .page_purpose .s_result {
    margin-top: 13.3333333333vw;
  }
}

.page_rental_lease .page_content .rental_lease_content__inner_rental {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__inner_rental {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_1 {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_1 {
    margin-top: 10.6666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_1 .rental_lease_content__item_title {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_1 .rental_lease_content__item_title {
    margin-bottom: 6.4vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_1 .rental_lease_content__item_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: clamp(-25px, 1.953125vw, 25px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_1 .rental_lease_content__item_text {
    font-size: 4.2666666667vw;
    margin-bottom: 6.6666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_1 .rental_lease_content__item_link {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_1 .rental_lease_content__item_link {
    margin-top: 10.6666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_2 .rental_lease_content__item_title {
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_2 .rental_lease_content__item_title {
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_2 .rental_lease_content__item_list .rental_common_list li {
    width: 100%;
  }
}
.page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_3 .rental_lease_content__item_title {
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__inner_rental .rental_lease_content__inner_item .rental_lease_content__inner_item_3 .rental_lease_content__item_title {
    margin-bottom: 8.5333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease {
    padding: 12.2666666667vw 0 10.6666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__item_title {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__item_title {
    margin-bottom: 6.4vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__item_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__item_text {
    font-size: 4.2666666667vw;
    margin-bottom: 10.6666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease {
  background: #DAF2EF;
  border-radius: clamp(-4px, 0.3125vw, 4px);
  padding: 0 clamp(-20px, 1.5625vw, 20px);
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease {
    padding: 0 4.2666666667vw;
    border-radius: 0.5333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_title {
  padding: clamp(-20px, 1.5625vw, 20px) 0;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #16A2A4;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_title {
    font-size: 4.2666666667vw;
    padding: 5.3333333333vw 0;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_title .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  width: clamp(-21px, 1.640625vw, 21px);
  height: clamp(-2px, 0.15625vw, 2px);
  background: #16A2A4;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_title .icon {
    width: 5.6vw;
    height: 0.5333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_title .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(-21px, 1.640625vw, 21px);
  height: clamp(-2px, 0.15625vw, 2px);
  background: #16A2A4;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_title .icon::before {
    width: 5.6vw;
    height: 0.5333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_title.active .icon::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content {
  padding: clamp(-40px, 3.125vw, 40px) clamp(-20px, 1.5625vw, 20px);
  position: relative;
  display: none;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content {
    padding: 6.4vw 0 6.4vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(-2px, 0.15625vw, 2px);
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content::before {
    height: 0.5333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(-120px, 9.375vw, 120px);
  height: clamp(-2px, 0.15625vw, 2px);
  background: #16A2A4;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content::after {
    width: 32vw;
    height: 0.5333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content .rental_lease_content__what_content_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: clamp(-36px, 2.8125vw, 36px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content .rental_lease_content__what_content_text {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content ul li {
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content ul li {
    margin-bottom: 6.4vw;
  }
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content ul li:last-child {
    margin-bottom: 0;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content ul li .rental_lease_content__what_sub_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-12px, 0.9375vw, 12px);
  padding: clamp(-4px, 0.3125vw, 4px) clamp(-12px, 0.9375vw, 12px);
  background: #16A2A4;
  color: #ffffff;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content ul li .rental_lease_content__what_sub_title {
    font-size: 4.2666666667vw;
    margin-bottom: 2.1333333333vw;
    padding: 1.0666666667vw 2.6666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content ul li .rental_lease_content__what_sub_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content ul li .rental_lease_content__what_sub_text {
    font-size: 4.2666666667vw;
    margin-bottom: 2.1333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__what_lease .rental_lease_content__what_lease_content ul li:last-child {
  margin-bottom: 0;
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__merit .rental_lease_content__merit_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__merit .rental_lease_content__merit_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.4vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__merit .rental_lease_content__merit_list li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 33.3333333333%;
  padding: clamp(-24px, 1.875vw, 24px);
  background: #F2F5F8;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  padding: clamp(-24px, 1.875vw, 24px) clamp(-24px, 1.875vw, 24px) clamp(-32px, 2.5vw, 32px) clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__merit .rental_lease_content__merit_list li {
    width: 100%;
    padding: 4.2666666667vw 4.2666666667vw 6.4vw 6.4vw;
    border-radius: 0.5333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__merit .rental_lease_content__merit_list li img {
  width: clamp(-80px, 6.25vw, 80px);
  margin-bottom: clamp(-8px, 0.625vw, 8px);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__merit .rental_lease_content__merit_list li img {
    width: 18.6666666667vw;
    height: 18.6666666667vw;
    margin-bottom: 0;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__merit .rental_lease_content__merit_list li .rental_lease_content__merit_list_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-22px, 1.71875vw, 22px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #16A2A4;
  margin-bottom: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__merit .rental_lease_content__merit_list li .rental_lease_content__merit_list_title {
    font-size: 4.8vw;
    margin-bottom: 2.1333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__merit .rental_lease_content__merit_list li .rental_lease_content__merit_list_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__merit .rental_lease_content__merit_list li .rental_lease_content__merit_list_text {
    font-size: 4.2666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content_lease .rental_lease_content__merit .rental_lease_content__merit_list li .rental_lease_content__merit_list_text span {
  color: #16A2A4;
  font-weight: 700;
}
.page_rental_lease .page_content .rental_lease_content__simulation {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation {
    margin-bottom: 10.6666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_title {
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_title {
    margin-bottom: 6.4vw;
  }
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 4vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table {
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 6.4vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__head {
  margin-bottom: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__head {
    margin-bottom: 1.0666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0 clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row {
    gap: 0 1.0666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-264px, 20.625vw, 264px);
  background: #DAF2EF;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #16A2A4;
  padding: clamp(-27px, 2.109375vw, 27px) 0;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell {
    width: 30.4vw;
    font-size: 3.7333333333vw;
    padding: 4vw 0;
  }
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell-1 {
  margin-bottom: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell-1 {
    margin-bottom: 1.0666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell-2 {
  background: #F2F5F8;
  color: #2E3639;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell-2 {
    font-size: 3.7333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell-2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: clamp(-216px, 16.875vw, 216px);
  height: 1px;
  background: #D3D3D3;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell-2::before {
    width: 24vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell-left {
  border-radius: clamp(-4px, 0.3125vw, 4px) 0 0 0;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell-left {
    border-radius: 0.5333333333vw 0 0 0;
  }
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell-right {
  border-radius: 0 clamp(-4px, 0.3125vw, 4px) 0 0;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell-right {
    border-radius: 0 0.5333333333vw 0 0;
  }
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row .cell-green {
  background: #16A2A4;
  color: #ffffff;
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row.-last {
  margin-bottom: 0;
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row.-last .cell-1 {
  margin-bottom: 0;
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_content .rental_lease_content__simulation_table .simulation_table__row.-last .cell-2::before {
  display: none;
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8333333333;
  padding-left: clamp(-14px, 1.09375vw, 14px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_text {
    font-size: 3.2vw;
    padding-left: 3.7333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_text::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-weight: 700;
  line-height: normal;
  position: absolute;
  top: clamp(-2px, 0.15625vw, 2px);
  left: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__simulation .rental_lease_content__simulation_text::before {
    top: 0.5333333333vw;
    font-size: 3.2vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__lease_company {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__lease_company {
    margin-bottom: 21.3333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__content {
  margin-bottom: clamp(-36px, 2.8125vw, 36px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__content {
    margin-bottom: 6.4vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__content .lease_company__content_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-2px, 0.15625vw, 2px);
  color: #16A2A4;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__content .lease_company__content_title {
    font-size: 4.2666666667vw;
    color: #16A2A4;
    margin-bottom: 4.2666666667vw;
    white-space: nowrap;
  }
}
.page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__content .lease_company__content_title::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(clamp(-18px, 1.40625vw, 18px) * -1);
  width: clamp(-14px, 1.09375vw, 14px);
  height: clamp(-14px, 1.09375vw, 14px);
  background: url(../../image/common/icon_open_new_green.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__content .lease_company__content_title::before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    top: 0.8vw;
    right: -4.8vw;
  }
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__content .lease_company__content_title .-sama {
    display: none;
  }
}
.page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__content .lease_company__content_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8333333333;
  padding-left: clamp(-14px, 1.09375vw, 14px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__content .lease_company__content_text {
    font-size: 3.2vw;
    padding-left: 3.7333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__content .lease_company__content_text::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__content .lease_company__content_text::before {
    font-size: 3.2vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__attention {
  border-radius: clamp(-4px, 0.3125vw, 4px);
  background: #F2F5F8;
  padding: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__attention {
    padding: 6.4vw 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__attention .attention__title {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__attention .attention__title {
    font-size: 4.2666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__attention .attention__list ul li {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8333333333;
  padding-left: clamp(-14px, 1.09375vw, 14px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__attention .attention__list ul li {
    font-size: 3.2vw;
    padding-left: 3.7333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__attention .attention__list ul li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__attention .attention__list ul li::before {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__lease_company .lease_company__attention .attention__list ul li {
    font-size: 3.2vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__repair_correction {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__repair_correction {
    padding: 21.3333333333vw 0 21.3333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__repair_correction .rental_lease_content__item_title {
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__repair_correction .rental_lease_content__item_title {
    margin-bottom: 6.4vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__lead {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__lead {
    margin-bottom: 10.6666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__lead .repair_correction__lead_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: clamp(-30px, 2.34375vw, 30px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__lead .repair_correction__lead_title {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__lead .repair_correction__lead_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__lead .repair_correction__lead_text {
    font-size: 4.2666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__lead .repair_correction__lead_attention {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8333333333;
  padding-left: clamp(-14px, 1.09375vw, 14px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__lead .repair_correction__lead_attention {
    font-size: 3.2vw;
    padding-left: 3.7333333333vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__lead .repair_correction__lead_attention::before {
  content: "※";
  position: absolute;
  top: clamp(-2px, 0.15625vw, 2px);
  left: 0;
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__lead .repair_correction__lead_attention::before {
    top: 0.5333333333vw;
    font-size: 3.2vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__flow {
  margin-bottom: clamp(-56px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__flow {
    margin-bottom: 10.6666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__ex {
  background: #ffffff;
  border-radius: clamp(-4px, 0.3125vw, 4px);
  padding: clamp(-32px, 2.5vw, 32px) clamp(-32px, 2.5vw, 32px) clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__ex {
    padding: 8.5333333333vw 6.4vw;
    border-radius: 1.0666666667vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__ex .repair_correction__ex_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__ex .repair_correction__ex_title {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__ex .repair_correction__ex_list {
  width: 100%;
  height: clamp(-141px, 11.015625vw, 141px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-12px, 0.9375vw, 12px) clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__ex .repair_correction__ex_list {
    height: auto;
    gap: 3.2vw;
  }
}
.page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__ex .repair_correction__ex_list li {
  width: clamp(-242px, 18.90625vw, 242px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .page_rental_lease .page_content .rental_lease_content__repair_correction .repair_correction__ex .repair_correction__ex_list li {
    font-size: 3.7333333333vw;
    width: 100%;
  }
}

.page_manufacturers {
  /* 企業名のボタン */
}
.page_manufacturers .manufacturers_search {
  margin-bottom: clamp(-80px, 6.25vw, 80px);
}
.page_manufacturers .manufacturers_name_btn {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_name_btn {
    width: 100%;
  }
}
.page_manufacturers .manufacturers_name_btn a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-right: clamp(-20px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_name_btn a {
    font-size: 4.2666666667vw;
    padding-right: 5.3333333333vw;
  }
}
.page_manufacturers .manufacturers_name_btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(-16px, 1.25vw, 16px);
  height: clamp(-16px, 1.25vw, 16px);
  background: url(../../image/common/open-in-new.webp) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_name_btn a::after {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.page_manufacturers .manufacturers_name_btn p {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_name_btn p {
    font-size: 4.2666666667vw;
  }
}
.page_manufacturers .manufacturers_result {
  padding-bottom: clamp(-120px, 9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_result {
    padding-bottom: 21.3333333333vw;
  }
}
.page_manufacturers .manufacturers_result .manufacturers_result__title {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_result .manufacturers_result__title {
    font-size: 4.2666666667vw;
    margin-bottom: 10.6666666667vw;
  }
}
.page_manufacturers .manufacturers_result .manufacturers_result__inner {
  position: relative;
}
.page_manufacturers .manufacturers_result .manufacturers_result__inner .manufacturers_result__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-34px, 2.65625vw, 34px) 0;
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_result .manufacturers_result__inner .manufacturers_result__list {
    gap: 9.0666666667vw 0;
  }
}
.page_manufacturers .manufacturers_result .manufacturers_result__inner .manufacturers_result__reset {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #16A2A4;
  text-decoration: underline;
  text-underline-offset: clamp(-2px, 0.15625vw, 2px);
  position: absolute;
  top: calc(clamp(-30px, 2.34375vw, 30px) * -1);
  right: 0;
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_result .manufacturers_result__inner .manufacturers_result__reset {
    font-size: 3.7333333333vw;
    top: -8vw;
  }
}
.page_manufacturers .manufacturers_result__none {
  margin-top: calc(clamp(-40px, 3.125vw, 40px) * -1);
  text-align: center;
}
.page_manufacturers .manufacturers_result__none p {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_result__none p {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
  }
}
.page_manufacturers .manufacturers_result__none .manufacturers_result__reset {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #16A2A4;
  text-decoration: underline;
  text-underline-offset: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_result__none .manufacturers_result__reset {
    font-size: 3.7333333333vw;
    text-underline-offset: 0.5333333333vw;
  }
}
.page_manufacturers .manufacturers_nav {
  margin-bottom: calc(clamp(-2px, 0.15625vw, 2px) * -1);
  overflow-x: scroll;
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_nav {
    width: 91.4666666667vw;
    margin-bottom: -0.5333333333vw;
    margin-inline: auto;
  }
}
.page_manufacturers .manufacturers_nav .manufacturers_nav_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-1000px, 78.125vw, 1000px);
  gap: clamp(-20px, 1.5625vw, 20px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_nav .manufacturers_nav_list ul {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 5.3333333333vw;
  }
}
.page_manufacturers .manufacturers_nav .manufacturers_nav_list ul li {
  cursor: pointer;
}
.page_manufacturers .manufacturers_nav .manufacturers_nav_list ul li span {
  display: block;
  padding: 0 clamp(-14px, 1.09375vw, 14px) clamp(-18px, 1.40625vw, 18px);
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #A1A1A1;
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_nav .manufacturers_nav_list ul li span {
    font-size: 3.7333333333vw;
    padding: 0 0 4.8vw;
    white-space: nowrap;
  }
}
.page_manufacturers .manufacturers_nav .manufacturers_nav_list ul li.-active span {
  color: #16A2A4;
  position: relative;
}
.page_manufacturers .manufacturers_nav .manufacturers_nav_list ul li.-active span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: clamp(-4px, 0.3125vw, 4px);
  background: #16A2A4;
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_nav .manufacturers_nav_list ul li.-active span::after {
    height: 1.0666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_nav .manufacturers_nav_list ul li:last-child span {
    padding-right: 4.2666666667vw;
  }
}
.page_manufacturers .manufacturers_list {
  width: 100%;
  padding: clamp(-56px, 4.375vw, 56px) 0 clamp(-120px, 9.375vw, 120px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_list {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.page_manufacturers .manufacturers_list .manufacturers_list__tab {
  display: none;
}
.page_manufacturers .manufacturers_list .manufacturers_list__tab.-active {
  display: block;
}
.page_manufacturers .manufacturers_list .manufacturers_list__tab_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_list .manufacturers_list__tab_title {
    font-size: 6.4vw;
    margin: 0 auto 8.5333333333vw;
  }
}
.page_manufacturers .manufacturers_list .manufacturers_list__tab_content .manufacturers_list__tab_items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-34px, 2.65625vw, 34px) 0;
  background: #ffffff;
  padding: clamp(-56px, 4.375vw, 56px);
  border-radius: clamp(-4px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .page_manufacturers .manufacturers_list .manufacturers_list__tab_content .manufacturers_list__tab_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 6.4vw 4.5333333333vw;
    border-radius: 1.0666666667vw;
    gap: 3.7333333333vw 0;
  }
}

.page_case .case_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_case .case_nav ul li {
  width: 50%;
}
.page_case .case_nav ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  color: #A1A1A1;
  line-height: normal;
  text-align: center;
  padding-bottom: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page_case .case_nav ul li a {
    font-size: 3.7333333333vw;
    padding-bottom: 3.2vw;
  }
}
.page_case .case_nav ul li a.-active {
  position: relative;
  color: #2285C2;
}
.page_case .case_nav ul li a.-active::after {
  content: "";
  display: block;
  width: 100%;
  height: clamp(-4px, 0.3125vw, 4px);
  background-color: #2285C2;
  position: absolute;
  bottom: calc(clamp(-2px, 0.15625vw, 2px) * -1);
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_case .case_nav ul li a.-active::after {
    height: 1.0666666667vw;
    bottom: -0.5333333333vw;
  }
}
.page_case .case_list__nav {
  margin-bottom: clamp(-56px, 4.375vw, 56px);
  background: #CFEDFF;
  border-radius: clamp(-4px, 0.3125vw, 4px);
  padding: 0 clamp(-24px, 1.875vw, 24px);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav {
    margin-bottom: 10.6666666667vw;
    padding: 0 3.4666666667vw;
    border-radius: 1.0666666667vw;
  }
}
.page_case .case_list__nav .case_list__nav_head {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: #2285C2;
  padding: clamp(-20px, 1.5625vw, 20px) 0 clamp(-20px, 1.5625vw, 20px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_head {
    font-size: 4.2666666667vw;
    padding: 4.2666666667vw 0;
  }
}
.page_case .case_list__nav .case_list__nav_head .plus {
  display: block;
  width: clamp(-20px, 1.5625vw, 20px);
  height: clamp(-20px, 1.5625vw, 20px);
  position: absolute;
  top: clamp(-20px, 1.5625vw, 20px);
  right: clamp(-24px, 1.875vw, 24px);
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_head .plus {
    display: block;
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    position: absolute;
    top: 4vw;
    right: 0;
    bottom: 0;
  }
}
.page_case .case_list__nav .case_list__nav_head .plus::before, .page_case .case_list__nav .case_list__nav_head .plus::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #2285C2;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page_case .case_list__nav .case_list__nav_head .plus::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.page_case .case_list__nav .case_list__nav_head.-active .plus::after, .page_case .case_list__nav .case_list__nav_head.active .plus::after {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
.page_case .case_list__nav .case_list__nav_head.-active .plus::before, .page_case .case_list__nav .case_list__nav_head.active .plus::before {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.page_case .case_list__nav .case_list__nav_content {
  display: none;
  padding-bottom: clamp(-64px, 5vw, 64px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content {
    padding-bottom: 12.8vw;
  }
}
.page_case .case_list__nav .case_list__nav_content::before {
  content: "";
  display: block;
  width: 100%;
  height: clamp(-2px, 0.15625vw, 2px);
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content::before {
    height: 0.5333333333vw;
  }
}
.page_case .case_list__nav .case_list__nav_content::after {
  content: "";
  display: block;
  width: clamp(-121px, 9.453125vw, 121px);
  height: clamp(-2px, 0.15625vw, 2px);
  background: #2285C2;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content::after {
    width: 20.8vw;
    height: 0.5333333333vw;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-1000px, 78.125vw, 1000px);
  margin: 0 auto;
  padding: clamp(-32px, 2.5vw, 32px) 0 clamp(-30px, 2.34375vw, 30px);
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding: 8.5333333333vw 0 8vw;
    gap: 4.8vw;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__item_title {
  width: clamp(-200px, 15.625vw, 200px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__item_title {
    width: 100%;
    font-size: 4.2666666667vw;
    text-align: center;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form {
    gap: 0;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form input {
  width: clamp(-600px, 46.875vw, 600px);
  height: clamp(-50px, 3.90625vw, 50px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  border: 1px solid #2285C2;
  background: #ffffff;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form input {
    width: 71.2vw;
    height: 11.7333333333vw;
    border-radius: 0.5333333333vw 0 0 0.5333333333vw;
    font-size: 4.2666666667vw;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form input::-webkit-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form input::-moz-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form input:-ms-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form input::-ms-input-placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form input::placeholder {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A1A1A1;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form input::-webkit-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form input::-moz-placeholder {
    font-size: 4.2666666667vw;
  }
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form input:-ms-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form input::-ms-input-placeholder {
    font-size: 4.2666666667vw;
  }
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form input::placeholder {
    font-size: 4.2666666667vw;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form button {
  width: clamp(-128px, 10vw, 128px);
  height: clamp(-50px, 3.90625vw, 50px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  border: 1px solid #2285C2;
  background: #2285C2;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form button {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
    font-size: 3.7333333333vw;
    border-radius: 0 0.5333333333vw 0.5333333333vw 0;
    position: relative;
    right: 0.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form button .search-button__icon {
    display: block;
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_item .case_list__search_form button .search-button__icon img {
    width: 100%;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_category {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: clamp(-32px, 2.5vw, 32px);
  border-top: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_category {
    padding-bottom: 10.6666666667vw;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_category .case_list__category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_category .case_list__category_list {
    gap: 6.4vw;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_category .case_list__category_list li .case_list__category_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2285C2;
  margin-bottom: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_category .case_list__category_list li .case_list__category_title {
    font-size: 3.7333333333vw;
    margin-bottom: 3.2vw;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_category .case_list__category_list li .case_list__category_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_category .case_list__category_list li .case_list__category_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3.2vw;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_category .case_list__category_list li .case_list__category_wrap li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-6px, 0.46875vw, 6px);
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_category .case_list__category_list li .case_list__category_wrap li {
    gap: 1.6vw;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_category .case_list__category_list li .case_list__category_wrap li input {
  width: clamp(-16px, 1.25vw, 16px);
  height: clamp(-16px, 1.25vw, 16px);
  accent-color: #2285C2;
  border: 1px solid #2285C2;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_category .case_list__category_list li .case_list__category_wrap li input {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.page_case .case_list__nav .case_list__nav_content .case_list__nav_category .case_list__category_list li .case_list__category_wrap li label {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_content .case_list__nav_category .case_list__category_list li .case_list__category_wrap li label {
    font-size: 4.2666666667vw;
  }
}
.page_case .case_list__nav .case_list__nav_submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-40px, 3.125vw, 40px);
  padding-left: clamp(-218px, 17.03125vw, 218px);
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4.2666666667vw;
    padding-left: 0;
  }
}
.page_case .case_list__nav .case_list__nav_submit .nav__submit_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-170px, 13.28125vw, 170px);
  height: clamp(-57px, 4.453125vw, 57px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  background: #2285C2;
  color: #ffffff;
  border: none;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_submit .nav__submit_button {
    width: 53.3333333333vw;
    height: 16.5333333333vw;
    font-size: 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.page_case .case_list__nav .case_list__nav_submit .nav__reset_button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  background: transparent;
  border: none;
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: underline;
  text-underline-offset: clamp(-2px, 0.15625vw, 2px);
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__nav .case_list__nav_submit .nav__reset_button {
    font-size: 3.7333333333vw;
  }
}
.page_case .case_list {
  padding-top: clamp(-64px, 5vw, 64px);
  padding-bottom: clamp(-120px, 9.375vw, 120px);
  background: #F2F5F8;
  display: none;
}
@media screen and (max-width: 767px) {
  .page_case .case_list {
    padding-top: 10.6666666667vw;
    padding-bottom: 21.3333333333vw;
  }
}
.page_case .case_list.-active {
  display: block;
}
@media screen and (max-width: 767px) {
  .page_case .case_list {
    padding-top: 10.6666666667vw;
    padding-bottom: 10.6666666667vw;
  }
}
.page_case .case_list .case_list__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.4vw;
  }
}
.page_case .case_list .case_list__list .case_list__item {
  width: 100%;
  border-radius: clamp(-4px, 0.3125vw, 4px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list .case_list__item {
    width: 100%;
    border-radius: 0.5333333333vw;
    overflow: hidden;
  }
}
.page_case .case_list .case_list__list .case_list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  height: 100%;
  gap: clamp(-32px, 2.5vw, 32px);
  background: #ffffff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list .case_list__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
.page_case .case_list .case_list__list .case_list__item a .case_list__item_img {
  width: clamp(-344px, 26.875vw, 344px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list .case_list__item a .case_list__item_img {
    width: 100%;
    /*                             aspect-ratio: 343/286; */
  }
}
.page_case .case_list .case_list__list .case_list__item a .case_list__item_img.no-image {
  -o-object-fit: cover;
     object-fit: cover;
}
.page_case .case_list .case_list__list .case_list__item a .case_list__item_content {
  width: 100%;
  padding: clamp(-22px, 1.71875vw, 22px) clamp(-12px, 0.9375vw, 12px) clamp(-32px, 2.5vw, 32px) 0;
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list .case_list__item a .case_list__item_content {
    padding: 4.2666666667vw 4.2666666667vw 4.2666666667vw 6.4vw;
  }
}
.page_case .case_list .case_list__list .case_list__item a .case_list__item_content .case_list__item_content_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-4px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list .case_list__item a .case_list__item_content .case_list__item_content_title {
    font-size: 4.2666666667vw;
    margin-bottom: 2.1333333333vw;
  }
}
.page_case .case_list .case_list__list .case_list__item a .case_list__item_content .case_list__item_content_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
  padding-bottom: clamp(-12px, 0.9375vw, 12px);
  margin-bottom: clamp(-12px, 0.9375vw, 12px);
  border-bottom: 1px solid #D3D3D3;
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list .case_list__item a .case_list__item_content .case_list__item_content_tags {
    font-size: 3.2vw;
    gap: 2.1333333333vw;
    padding-bottom: 3.2vw;
    margin-bottom: 3.2vw;
    border-bottom: 1px solid #D3D3D3;
  }
}
.page_case .case_list .case_list__list .case_list__item a .case_list__item_content .case_list__item_content_tags.-blog-tags {
  width: 100%;
  border-bottom: none;
}
.page_case .case_list .case_list__list .case_list__item a .case_list__item_content .case_list__item_content_bottom .case_list__item_bottom_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2285C2;
  margin-bottom: clamp(-4px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list .case_list__item a .case_list__item_content .case_list__item_content_bottom .case_list__item_bottom_title {
    font-size: 3.7333333333vw;
    margin-bottom: 1.0666666667vw;
  }
}
.page_case .case_list .case_list__list .case_list__item a .case_list__item_content .case_list__item_content_bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-4px, 0.3125vw, 4px);
}
.page_case .case_list .case_list__list .case_list__item a .case_list__item_content .case_list__item_content_bottom ul li {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7142857143;
  color: #2E3639;
  padding-left: clamp(-24px, 1.875vw, 24px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list .case_list__item a .case_list__item_content .case_list__item_content_bottom ul li {
    font-size: 3.7333333333vw;
    padding-left: 6.4vw;
  }
}
.page_case .case_list .case_list__list .case_list__item a .case_list__item_content .case_list__item_content_bottom ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: clamp(-10px, 0.78125vw, 10px);
  top: clamp(-10px, 0.78125vw, 10px);
  margin: auto;
  width: clamp(-4px, 0.3125vw, 4px);
  height: clamp(-4px, 0.3125vw, 4px);
  background-color: #2285C2;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list .case_list__item a .case_list__item_content .case_list__item_content_bottom ul li::before {
    left: 2.6666666667vw;
    top: 2.6666666667vw;
    width: 1.0666666667vw;
    height: 1.0666666667vw;
  }
}
.page_case .case_list .case_list__list .case_list__item.-blog-item a {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_case .case_list .case_list__list .case_list__item.-blog-item .case_list__item_img {
  width: clamp(-290px, 22.65625vw, 290px);
  height: auto;
  aspect-ratio: 273/204;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list .case_list__item.-blog-item .case_list__item_img {
    width: 100%;
    aspect-ratio: unset;
  }
}
.page_case .case_list .case_list__list .case_list__item.-blog-item .case_list__item_content {
  width: calc(100% - clamp(-290px, 22.65625vw, 290px));
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list .case_list__item.-blog-item .case_list__item_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}
.page_case .case_list .case_list__list .case_list__item.-blog-item .case_list__item_content .case_list__item_content_bottom {
  margin-bottom: auto;
}
.page_case .case_list .case_list__list .case_list__item.-blog-item .case_list__item_content .case_list__item_content_bottom .case_list__item_bottom_date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #A1A1A1;
  font-family: Lato;
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  bottom: clamp(-16px, 1.25vw, 16px);
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_case .case_list .case_list__list .case_list__item.-blog-item .case_list__item_content .case_list__item_content_bottom .case_list__item_bottom_date {
    font-size: 4.2666666667vw;
    width: 100%;
    position: static;
  }
}
.page_case .case_list__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-12px, 0.9375vw, 12px);
  margin-top: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_case .case_list__pagination {
    gap: 2.1333333333vw;
    margin-top: 8.5333333333vw;
  }
}
.page_case .case_list__pagination a, .page_case .case_list__pagination span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-36px, 2.8125vw, 36px);
  height: clamp(-36px, 2.8125vw, 36px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  border: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__pagination a, .page_case .case_list__pagination span {
    width: 8.8vw;
    height: 8.8vw;
    border-radius: 0.5333333333vw;
  }
}
.page_case .case_list__pagination a.number, .page_case .case_list__pagination span.number {
  font-family: Lato;
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_case .case_list__pagination a.number, .page_case .case_list__pagination span.number {
    font-size: 3.2vw;
  }
}
.page_case .case_list__pagination a.dot, .page_case .case_list__pagination span.dot {
  border: none;
}
.page_case .case_list__pagination a.-active, .page_case .case_list__pagination span.-active {
  background: #2285C2;
  color: #ffffff;
}
.page_case .case_list__pagination a.-disabled, .page_case .case_list__pagination span.-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page_news .news_nav {
  width: 100%;
  margin-bottom: calc(clamp(-2px, 0.15625vw, 2px) * -1);
}
@media screen and (max-width: 767px) {
  .page_news .news_nav {
    margin-bottom: -0.5333333333vw;
    overflow-x: scroll;
    overflow-y: visible;
  }
}
.page_news .news_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-32px, 2.5vw, 32px);
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .page_news .news_nav ul {
    margin: 0 auto;
    gap: 6.4vw;
  }
}
.page_news .news_nav ul li a {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 0 clamp(-27px, 2.109375vw, 27px) clamp(-20px, 1.5625vw, 20px) clamp(-27px, 2.109375vw, 27px);
  border-bottom: clamp(-4px, 0.3125vw, 4px) solid transparent;
  color: #A1A1A1;
}
@media screen and (max-width: 767px) {
  .page_news .news_nav ul li a {
    font-size: 3.7333333333vw;
    padding: 0 0 3.2vw 0;
    border-bottom: 1.0666666667vw solid transparent;
  }
}
.page_news .news_nav ul li a.-active {
  border-bottom: clamp(-4px, 0.3125vw, 4px) solid #2285C2;
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .page_news .news_nav ul li a.-active {
    border-bottom: 1.0666666667vw solid #2285C2;
  }
}
.page_news .news_content {
  background: #F2F5F8;
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .page_news .news_content {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.page_news .news_content .news_content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-32px, 2.5vw, 32px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page_news .news_content .news_content__list {
    gap: 6.4vw 0;
    margin: 0 auto;
  }
}
.page_news .news_content .news_content__list li {
  width: 100%;
  border-bottom: 1px solid #D3D3D3;
}
.page_news .news_content .news_content__list li a {
  display: block;
  width: 100%;
  padding: 0 0 clamp(-32px, 2.5vw, 32px) 0;
}
@media screen and (max-width: 767px) {
  .page_news .news_content .news_content__list li a {
    padding: 0 0 6.4vw 0;
  }
}
.page_news .news_content .news_content__list li a .news_content__item_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-12px, 0.9375vw, 12px);
  margin-bottom: clamp(-9px, 0.703125vw, 9px);
}
@media screen and (max-width: 767px) {
  .page_news .news_content .news_content__list li a .news_content__item_top {
    gap: 3.2vw;
    margin-bottom: 2.4vw;
  }
}
.page_news .news_content .news_content__list li a .news_content__item_top .news_content__item_date {
  font-family: Lato;
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_news .news_content .news_content__list li a .news_content__item_top .news_content__item_date {
    font-size: 4.2666666667vw;
  }
}
.page_news .news_content .news_content__list li a .news_content__item_top .news_content__item_category {
  color: #2285C2;
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: #CFEDFF;
  padding: clamp(-2px, 0.15625vw, 2px) clamp(-10px, 0.78125vw, 10px);
  border-radius: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page_news .news_content .news_content__list li a .news_content__item_top .news_content__item_category {
    font-size: 3.2vw;
    padding: 0.5333333333vw 2.6666666667vw;
    border-radius: 4.2666666667vw;
  }
}
.page_news .news_content .news_content__list li a .news_content__item_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .page_news .news_content .news_content__list li a .news_content__item_title {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.page_client .page_content {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_client .page_content {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.page_client .page_content .client__main .client__list_inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-184px, 14.375vw, 184px);
}
@media screen and (max-width: 767px) {
  .page_client .page_content .client__main .client__list_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.2666666667vw;
  }
}
.page_client .page_content .client__main .client__list_inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_client .page_content .client__main .client__list_inner ul {
    gap: 4.2666666667vw;
  }
}
.page_client .page_content .client__main .client__list_inner ul li {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_client .page_content .client__main .client__list_inner ul li {
    font-size: 4.2666666667vw;
  }
}
.page_client .page_content .client__main .client__list_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: clamp(-112px, 8.75vw, 112px);
  margin-top: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_client .page_content .client__main .client__list_text {
    font-size: 4.2666666667vw;
    margin-top: 6.4vw;
    margin-right: auto;
    margin-left: 0;
  }
}

.page_contact .page_content {
  background: #F2F5F8;
  padding: clamp(-124px, 9.6875vw, 124px) 0 clamp(-120px, 9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .page_contact .page_content {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.page_contact .page_content .inner .contact__input_img {
  width: clamp(-336px, 26.25vw, 336px);
  margin: 0 auto clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_contact .page_content .inner .contact__input_img {
    width: 53.0666666667vw;
    margin: 0 auto 8.5333333333vw;
  }
}
.page_contact .page_content .inner .contact__ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  margin-bottom: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page_contact .page_content .inner .contact__ttl {
    font-size: 4.2666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}
.page_contact .page_content .contact__attention_wrapper {
  margin-bottom: clamp(-87px, 6.796875vw, 87px);
}
@media screen and (max-width: 767px) {
  .page_contact .page_content .contact__attention_wrapper {
    margin-bottom: 10.6666666667vw;
  }
}
.page_contact .page_content .contact__attention_wrapper .contact__attention {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8333333333;
  text-align: center;
  margin-bottom: clamp(-4px, 0.3125vw, 4px);
  padding-left: clamp(-14px, 1.09375vw, 14px);
  position: relative;
}
.page_contact .page_content .contact__attention_wrapper .contact__attention::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .page_contact .page_content .contact__attention_wrapper .contact__attention {
    font-size: 3.2vw;
    margin-bottom: 1.0666666667vw;
    padding-left: 3.7333333333vw;
    text-align: left;
  }
}
.page_contact .page_content .contact__attention_wrapper .contact__attention:last-child {
  margin-bottom: 0;
}

.page_contact.page_contact_conf {
  /* 確認画面 */
}
@media screen and (max-width: 767px) {
  .page_contact.page_contact_conf .page_content .inner .contact__input_img {
    margin: 0 auto 10.6666666667vw;
  }
}
.page_contact.page_contact_conf .contact__ttl_conf {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  margin-bottom: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_contact.page_contact_conf .contact__ttl_conf {
    font-size: 4.2666666667vw;
    margin-bottom: 10.6666666667vw;
  }
}

@media screen and (max-width: 767px) {
  .page_contact.page_contact_thanks .page_content .inner .contact__input_img {
    margin: 0 auto 10.6666666667vw;
  }
}
.page_contact.page_contact_thanks .page_content .inner .contact__ttl {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page_contact.page_contact_thanks .page_content .inner .contact__ttl {
    text-align: left;
  }
}
.page_contact.page_contact_thanks .page_content .inner .contact__attention_wrapper {
  margin-bottom: clamp(-87px, 6.796875vw, 87px);
}
@media screen and (max-width: 767px) {
  .page_contact.page_contact_thanks .page_content .inner .contact__attention_wrapper {
    margin-bottom: 10.6666666667vw;
  }
}
.page_contact.page_contact_thanks .page_content .inner .contact__attention_wrapper .contact__attention {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  padding-left: 0;
  text-align: center;
  margin-top: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_contact.page_contact_thanks .page_content .inner .contact__attention_wrapper .contact__attention {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    margin-top: 2.1333333333vw;
  }
}
.page_contact.page_contact_thanks .page_content .inner .contact__attention_wrapper .contact__attention::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .page_contact.page_contact_thanks .page_content .inner .contact__attention_wrapper .contact__attention {
    width: 100%;
    text-align: left;
  }
}

.page_network .page_content .network__service {
  padding: clamp(-100px, 7.8125vw, 100px) 0;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service {
    padding: 21.3333333333vw 0;
  }
}
.page_network .page_content .network__service .network__service_lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-56px, 4.375vw, 56px);
  width: clamp(-1180px, 92.1875vw, 1180px);
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_lead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.4vw;
    width: 100%;
    margin-bottom: 14.9333333333vw;
  }
}
.page_network .page_content .network__service .network__service_lead .network__service_lead_left {
  width: clamp(-524px, 40.9375vw, 524px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_lead .network__service_lead_left {
    width: 100%;
  }
}
.page_network .page_content .network__service .network__service_lead .network__service_lead_left .network__service_lead_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4375;
  color: #2E3639;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_lead .network__service_lead_left .network__service_lead_ttl {
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    margin-bottom: 6.4vw;
  }
}
.page_network .page_content .network__service .network__service_lead .network__service_lead_left .network__service_lead_text_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-32px, 2.5vw, 32px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_lead .network__service_lead_left .network__service_lead_text_inner {
    gap: 8.5333333333vw;
  }
}
.page_network .page_content .network__service .network__service_lead .network__service_lead_left .network__service_lead_text_inner .network__service_lead_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_lead .network__service_lead_left .network__service_lead_text_inner .network__service_lead_text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
.page_network .page_content .network__service .network__service_lead .network__service_lead_right_img {
  width: clamp(-600px, 46.875vw, 600px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_lead .network__service_lead_right_img {
    width: calc(100% + 50vw - 50%);
    position: relative;
    right: calc(50% - 50vw);
  }
}
.page_network .page_content .network__service .network__service_desc {
  margin-bottom: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_desc {
    margin-bottom: 14.9333333333vw;
  }
}
.page_network .page_content .network__service .network__service_desc:last-child {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_desc:last-child {
    margin-bottom: 21.3333333333vw;
  }
}
.page_network .page_content .network__service .network__service_desc .network__service_desc_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-56px, 4.375vw, 56px);
  width: 100%;
  margin-bottom: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_desc .network__service_desc_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.4vw;
    margin-bottom: 14.9333333333vw;
  }
}
.page_network .page_content .network__service .network__service_desc .network__service_desc_inner .service_desc__img {
  width: clamp(-500px, 39.0625vw, 500px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_desc .network__service_desc_inner .service_desc__img {
    width: 100%;
    border-radius: 0.5333333333vw;
  }
}
.page_network .page_content .network__service .network__service_desc .network__service_desc_inner .service_desc__text_inner {
  width: clamp(-524px, 40.9375vw, 524px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_desc .network__service_desc_inner .service_desc__text_inner {
    width: 100%;
  }
}
.page_network .page_content .network__service .network__service_desc .network__service_desc_inner .service_desc__text_inner .service_desc__text_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  color: #2E3639;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_desc .network__service_desc_inner .service_desc__text_inner .service_desc__text_ttl {
    font-size: 4.8vw;
    line-height: 1.5;
    margin-bottom: 4.2666666667vw;
  }
}
.page_network .page_content .network__service .network__service_desc .network__service_desc_inner .service_desc__text_inner .service_desc__text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  margin-bottom: clamp(-27px, 2.109375vw, 27px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_desc .network__service_desc_inner .service_desc__text_inner .service_desc__text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    margin-bottom: 6.4vw;
  }
}
.page_network .page_content .network__service .network__service_desc .network__service_desc_inner .service_desc__text_inner .network__service_desc_btn {
  margin-right: auto;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_desc .network__service_desc_inner .service_desc__text_inner .network__service_desc_btn {
    margin-right: 0;
    margin-left: auto;
  }
}
.page_network .page_content .network__service .network__service_desc.-reverse .network__service_desc_inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__service .network__service_desc.-reverse .network__service_desc_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page_network .page_content .network__contract {
  padding: clamp(-100px, 7.8125vw, 100px) 0;
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract {
    padding: 21.3333333333vw 0;
  }
}
.page_network .page_content .network__contract .network__contract_ttl {
  margin-bottom: clamp(-64px, 5vw, 64px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_ttl {
    margin-bottom: 6.4vw;
  }
  .page_network .page_content .network__contract .network__contract_ttl .sec_title__sub {
    display: none;
  }
}
.page_network .page_content .network__contract .network__contract_lead {
  display: none;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_lead {
    display: block;
    font-family: "Noto Sans JP";
    font-size: 4.2666666667vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625;
    color: #2E3639;
    margin-bottom: 10.6666666667vw;
  }
}
.page_network .page_content .network__contract .network__contract_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(-24px, 1.875vw, 24px) clamp(-32px, 2.5vw, 32px);
  height: clamp(-650px, 50.78125vw, 650px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.2666666667vw;
    height: auto;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item {
  width: clamp(-453px, 35.390625vw, 453px);
  padding: clamp(-24px, 1.875vw, 24px) clamp(-24px, 1.875vw, 24px) clamp(-32px, 2.5vw, 32px);
  background: #ffffff;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item {
    width: 100%;
    padding: 6.4vw 4vw;
    border-radius: 0.5333333333vw;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item.-item1 {
  width: clamp(-590px, 46.09375vw, 590px);
  height: clamp(-640px, 50vw, 640px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item.-item1 {
    width: 100%;
    height: auto;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item.-item2 {
  height: clamp(-343px, 26.796875vw, 343px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item.-item2 {
    width: 100%;
    height: auto;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item.-item3 {
  height: clamp(-273px, 21.328125vw, 273px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item.-item3 {
    width: 100%;
    height: auto;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: clamp(-11px, 0.859375vw, 11px) clamp(-24px, 1.875vw, 24px);
  background: #2285C2;
  color: #ffffff;
  position: absolute;
  top: clamp(-24px, 1.875vw, 24px);
  left: 0;
  border-radius: 0 clamp(-2px, 0.15625vw, 2px) clamp(-2px, 0.15625vw, 2px) 0;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_ttl {
    font-size: 4.2666666667vw;
    line-height: 1.375;
    padding: 3.2vw 4.2666666667vw;
    top: 6.4vw;
    border-radius: 0 0.5333333333vw 0.5333333333vw 0;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-48px, 3.75vw, 48px);
  margin-top: clamp(-98px, 7.65625vw, 98px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list {
    gap: 6.6666666667vw;
    margin-top: 18.6666666667vw;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list.-list2 {
  margin-top: clamp(-74px, 5.78125vw, 74px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list.-list2 {
    margin-top: 18.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item {
    width: 100%;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  padding-left: clamp(-13px, 1.015625vw, 13px);
  margin-bottom: clamp(-16px, 1.25vw, 16px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__ttl {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
    padding-left: 3.2vw;
    margin-bottom: 5.0666666667vw;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__ttl::before {
  content: "";
  display: block;
  width: clamp(-5px, 0.390625vw, 5px);
  height: clamp(-20px, 1.5625vw, 20px);
  background: #2285C2;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__ttl::before {
    width: 1.0666666667vw;
    height: 4.8vw;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  margin-bottom: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    margin-bottom: 2.1333333333vw;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: clamp(-10px, 0.78125vw, 10px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list {
    width: 100%;
    margin-bottom: 4.2666666667vw;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list .contract_item__list_item {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  padding-left: clamp(-24px, 1.875vw, 24px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list .contract_item__list_item {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    padding-left: 6.4vw;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list .contract_item__list_item::before {
  content: "";
  display: block;
  width: clamp(-6px, 0.46875vw, 6px);
  height: clamp(-6px, 0.46875vw, 6px);
  background: #2285C2;
  border-radius: 50%;
  position: absolute;
  left: clamp(-6px, 0.46875vw, 6px);
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list .contract_item__list_item::before {
    width: 1.6vw;
    height: 1.6vw;
    left: 1.6vw;
    top: 3.2vw;
    bottom: auto;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list .contract_item__img_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-40px, 3.125vw, 40px);
  margin-top: clamp(-16px, 1.25vw, 16px);
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list .contract_item__img_list {
    width: 82.6666666667vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4.2666666667vw;
    margin-top: 4.2666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list .contract_item__img_list .contract_item__img_list_item {
  width: clamp(-208px, 16.25vw, 208px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list .contract_item__img_list .contract_item__img_list_item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list .contract_item__img_list .contract_item__img_list_item .contract_item__img_list_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list .contract_item__img_list .contract_item__img_list_item .contract_item__img_list_text {
    font-size: 4.2666666667vw;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list .contract_item__img_list .contract_item__img_list_item img {
  width: clamp(-208px, 16.25vw, 208px);
  margin-top: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__list .contract_item__img_list .contract_item__img_list_item img {
    width: 33.6vw;
    margin-top: 0;
  }
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__note {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8333333333;
  color: #2E3639;
  white-space: nowrap;
  position: relative;
  padding-left: clamp(-14px, 1.09375vw, 14px);
}
.page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__note::before {
  content: "※";
  display: block;
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8333333333;
  color: #2E3639;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__note::before {
    font-size: 3.2vw;
    line-height: 1.8333333333;
  }
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__contract .network__contract_list .network__contract_list_item .network__contract_list_item_inner .network__contract_list_item_list .contract_item .contract_item__note {
    font-size: 3.2vw;
    line-height: 1.8333333333;
    white-space: normal;
    padding-left: 3.7333333333vw;
  }
}
.page_network .page_content .network__flow {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__flow {
    padding: 21.3333333333vw 0 21.3333333333vw;
  }
}
.page_network .page_content .network__flow .network__flow_inner .network__flow_ttl {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__flow .network__flow_inner .network__flow_ttl {
    margin-bottom: 6.4vw;
  }
}
.page_network .page_content .network__flow .network__flow_inner .network__flow_content {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__flow .network__flow_inner .network__flow_content {
    margin-bottom: 21.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .page_network .page_content .network__flow .network__related .sec_title {
    gap: 2.1333333333vw;
  }
  .page_network .page_content .network__flow .network__related .sec_title .sec_title__main {
    font-size: 5.8666666667vw;
  }
  .page_network .page_content .network__flow .network__related .sec_title .sec_title__img {
    display: block;
    width: 5.8666666667vw;
  }
}

@media screen and (max-width: 767px) {
  .page_corporate .page_nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page_corporate .page_nav ul li:nth-child(2) {
    margin-right: 26.6666666667vw;
  }
}
.page_corporate .page_content {
  /* 社長挨拶 */
  /* 経営理念 */
  /* 会社概要/組織図 */
  /* 事業所 */
  /* 沿革 */
}
.page_corporate .page_content .corporate__president {
  padding: clamp(-109px, 8.515625vw, 109px) 0 0;
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__president {
    padding: 14.9333333333vw 0 0;
  }
}
.page_corporate .page_content .corporate__president .corporate__president_inner .corporate__content_ttl {
  margin-bottom: clamp(-64px, 5vw, 64px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__president .corporate__president_inner .corporate__content_ttl {
    margin-bottom: 6.4vw;
  }
}
.page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 8.5333333333vw;
  }
}
.page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_left {
  width: clamp(-661px, 51.640625vw, 661px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_left .corporate__president_content_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  color: #2E3639;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_left .corporate__president_content_ttl {
    font-size: 5.8666666667vw;
    margin-bottom: 6.4vw;
    line-height: 1.4545454545;
  }
}
.page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_left .corporate__president_content_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_left .corporate__president_content_text {
    font-size: 4.2666666667vw;
    margin-bottom: 8.5333333333vw;
    line-height: 1.625;
  }
}
.page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_left .corporate__president_content_text:last-child {
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_left .corporate__president_content_text:last-child {
    margin-bottom: 6.4vw;
  }
}
.page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_left .corporate__president_content_text_last {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_left .corporate__president_content_text_last {
    font-size: 4.2666666667vw;
    line-height: 1.375;
  }
}
.page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_img {
  width: clamp(-339px, 26.484375vw, 339px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_img {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.page_corporate .page_content .corporate__president .corporate__president_inner .corporate__president_content .corporate__president_content_img img {
  width: 100%;
}
.page_corporate .page_content .corporate__management_philosophy {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__management_philosophy {
    padding: 21.3333333333vw 0 21.3333333333vw;
  }
}
.page_corporate .page_content .corporate__management_philosophy .corporate__management_philosophy_inner .corporate__content_ttl {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__management_philosophy .corporate__management_philosophy_inner .corporate__content_ttl {
    margin-bottom: 6.4vw;
  }
}
.page_corporate .page_content .corporate__management_philosophy .corporate__management_philosophy_inner .corporate__management_philosophy_content .corporate__management_content_img {
  width: 100%;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__management_philosophy .corporate__management_philosophy_inner .corporate__management_philosophy_content .corporate__management_content_img {
    margin-bottom: 8.5333333333vw;
  }
}
.page_corporate .page_content .corporate__management_philosophy .corporate__management_philosophy_inner .corporate__management_philosophy_content .corporate__management_content_img img {
  width: 100%;
}
.page_corporate .page_content .corporate__management_philosophy .corporate__management_philosophy_inner .corporate__management_philosophy_content .corporate__management_content_text p {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__management_philosophy .corporate__management_philosophy_inner .corporate__management_philosophy_content .corporate__management_content_text p {
    font-size: 4.2666666667vw;
    margin-bottom: 8.5333333333vw;
    line-height: 1.625;
  }
}
.page_corporate .page_content .corporate__management_philosophy .corporate__management_philosophy_inner .corporate__management_philosophy_content .corporate__management_content_text p:last-child {
  margin-bottom: 0;
}
.page_corporate .page_content .corporate__company_overview {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview {
    padding: 21.3333333333vw 0;
  }
}
.page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__content_ttl {
  margin-bottom: clamp(-64px, 5vw, 64px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__content_ttl {
    margin-bottom: 10.6666666667vw;
  }
}
.page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
  }
}
.page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list {
  width: clamp(-528px, 41.25vw, 528px);
  border-top: 1px solid #D3D3D3;
  margin-bottom: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list {
    width: 100%;
    margin-bottom: 10.6666666667vw;
  }
}
.page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item {
  padding: clamp(-25px, 1.953125vw, 25px) 0 clamp(-24px, 1.875vw, 24px);
  border-bottom: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item {
    padding: 6.4vw 0;
  }
}
.page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item .overview__content_list_item_ttl {
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  margin-bottom: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item .overview__content_list_item_ttl {
    font-size: 4.2666666667vw;
    margin-bottom: 2.1333333333vw;
  }
}
.page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item .overview__content_list_item_text {
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item .overview__content_list_item_text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
.page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item .overview__content_list_item_text .-space {
  display: none;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item .overview__content_list_item_text .-space {
    display: inline-block;
  }
}
.page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item .overview__content_yakuin_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item .overview__content_yakuin_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(-14px, 1.09375vw, 14px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item .overview__content_yakuin_list li {
    gap: 0 1.3333333333vw;
  }
}
.page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item .overview__content_yakuin_list li span:first-child {
  width: clamp(-210px, 16.40625vw, 210px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item .overview__content_yakuin_list li span:first-child {
    width: 60.2666666667vw;
  }
}
.page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item.-yakuin {
  height: clamp(-235px, 18.359375vw, 235px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list .overview__content_list_item.-yakuin {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list:first-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_content .overview__content_list:last-child {
    border-top: 0;
  }
}
.page_corporate .page_content .corporate__company_overview .corporate__company_overview_inner .corporate__company_overview_img img {
  width: 100%;
}
.page_corporate .page_content .corporate__business_office {
  padding: 0 0 clamp(-120px, 9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office {
    padding: 0 0 21.3333333333vw;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__content_ttl {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__content_ttl {
    margin-bottom: 6.4vw;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-40px, 3.125vw, 40px) 0;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list {
    gap: 10.6666666667vw 0;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 clamp(-56px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.1333333333vw 0;
    width: 100%;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__map {
  width: clamp(-430px, 33.59375vw, 430px);
  height: clamp(-280px, 21.875vw, 280px);
  background: #000;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__map {
    width: 100%;
    height: auto;
    aspect-ratio: 343/225;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__map iframe {
  width: 100%;
  height: 100%;
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content {
  width: clamp(-594px, 46.40625vw, 594px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content {
    width: 100%;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  color: #2E3639;
  margin-bottom: clamp(-32px, 2.5vw, 32px);
  padding-bottom: clamp(-16px, 1.25vw, 16px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_ttl {
    font-size: 4.8vw;
    margin-bottom: 6.4vw;
    padding-bottom: 3.2vw;
    line-height: 1.5;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D3D3D3;
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(-92px, 7.1875vw, 92px);
  height: 2px;
  background: #2285C2;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_ttl::after {
    width: 14.1333333333vw;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_text {
    font-size: 4.2666666667vw;
    margin-bottom: 4.2666666667vw;
    line-height: 1.625;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.2666666667vw 0;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_list li .office_item__office_name {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.375;
  color: #2E3639;
  margin-bottom: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_list li .office_item__office_name {
    font-size: 4.2666666667vw;
    margin-bottom: 2.1333333333vw;
    line-height: 1.375;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_list li .office_item__office_tel {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_list li .office_item__office_tel {
    font-size: 4.2666666667vw;
    margin-bottom: 0.5333333333vw;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_list li .office_item__office_fax {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_list li .office_item__office_fax {
    font-size: 4.2666666667vw;
  }
}
.page_corporate .page_content .corporate__business_office .corporate__business_office_inner .corporate__business_office_list .corporate__business_office_list_item .office_item__content .office_item__content_list li:last-child {
  margin-bottom: 0;
}
.page_corporate .page_content .corporate__history {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__history {
    padding: 21.3333333333vw 0;
  }
}
.page_corporate .page_content .corporate__history .corporate__content_ttl {
  margin-bottom: clamp(-64px, 5vw, 64px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__history .corporate__content_ttl {
    margin-bottom: 10.6666666667vw;
  }
}
.page_corporate .page_content .corporate__history .corporate__history_content .history__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-42px, 3.28125vw, 42px) 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__history .corporate__history_content .history__list {
    gap: 8.5333333333vw 0;
  }
}
.page_corporate .page_content .corporate__history .corporate__history_content .history__list::before {
  content: "";
  position: absolute;
  left: clamp(-166.5px, 13.0078125vw, 166.5px);
  top: clamp(-8px, 0.625vw, 8px);
  width: 2px;
  height: calc(100% - clamp(-18px, 1.40625vw, 18px));
  background: #D3D3D3;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__history .corporate__history_content .history__list::before {
    left: 21.3333333333vw;
    top: 2.1333333333vw;
    width: 2px;
    height: calc(100% - 11.7333333333vw);
  }
}
.page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 clamp(-96px, 7.5vw, 96px);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap {
    gap: 0 5.3333333333vw;
  }
}
.page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__year .history__year_time {
  font-family: Lato;
  font-size: clamp(-28px, 2.1875vw, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: clamp(-24px, 1.875vw, 24px);
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__year .history__year_time {
    font-size: 6.4vw;
    line-height: 1.2;
  }
}
.page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-42px, 3.28125vw, 42px) 0;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__item_inner {
    gap: 8.5333333333vw 0;
  }
}
.page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__item_inner .history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__item_inner .history__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__item_inner .history__item .history__item_dot {
  display: block;
  width: clamp(-14px, 1.09375vw, 14px);
  height: clamp(-14px, 1.09375vw, 14px);
  background: #2285C2;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__item_inner .history__item .history__item_dot {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__item_inner .history__item .history__item_time {
  font-family: Lato;
  font-size: clamp(-20px, 1.5625vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2285C2;
  width: clamp(-70px, 5.46875vw, 70px);
  margin-left: clamp(-48px, 3.75vw, 48px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__item_inner .history__item .history__item_time {
    font-size: 5.3333333333vw;
    width: 70%;
    margin-left: 5.3333333333vw;
  }
}
.page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__item_inner .history__item .history__item_time .history__item_time_small {
  font-size: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__item_inner .history__item .history__item_time .history__item_time_small {
    font-size: 4.2666666667vw;
  }
}
.page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__item_inner .history__item .history__item_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_corporate .page_content .corporate__history .corporate__history_content .history__list .history__item_wrap .history__item_inner .history__item .history__item_text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    margin-left: 8vw;
  }
}

.page_field .page_content {
  /* ポイント */
  /* 導入事例詳細 */
}
.page_field .page_content .field__main {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-80px, 6.25vw, 80px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__main {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.page_field .page_content .field__main .field__lead .field__lead_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.4375;
  color: #2E3639;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__main .field__lead .field__lead_ttl {
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    margin-bottom: 6.4vw;
  }
}
.page_field .page_content .field__main .field__lead .field__lead_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  margin-bottom: clamp(-64px, 5vw, 64px);
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__main .field__lead .field__lead_text {
    font-size: 4.2666666667vw;
    margin-bottom: 10.6666666667vw;
  }
}
.page_field .page_content .field__main .field__list {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__main .field__list {
    margin-bottom: 21.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__main .field__list li {
    width: 91.4666666667vw;
    padding: 4.2666666667vw 4.2666666667vw 6.4vw 6.4vw;
  }
  .page_field .page_content .field__main .field__list li p {
    padding-right: 2.1333333333vw;
  }
}
.page_field .page_content .field__points {
  background: #ffffff;
  padding: clamp(-100px, 7.8125vw, 100px) 0;
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__points {
    padding: 21.3333333333vw 0;
  }
}
.page_field .page_content .field__points .field__points_ttl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: clamp(-56px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__points .field__points_ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 14.9333333333vw;
    gap: 6.4vw;
  }
}
.page_field .page_content .field__points .field__points_ttl .field__points_ttl_main {
  width: clamp(-524px, 40.9375vw, 524px);
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4375;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__points .field__points_ttl .field__points_ttl_main {
    width: 100%;
    font-size: 5.8666666667vw;
    line-height: 1.2272727273;
  }
}
.page_field .page_content .field__points .field__points_ttl .field__points_ttl_text {
  width: clamp(-500px, 39.0625vw, 500px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__points .field__points_ttl .field__points_ttl_text {
    width: 100%;
    font-size: 4.8vw;
    line-height: 1.4444444444;
  }
}
.page_field .page_content .field__points ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__points ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4.2666666667vw;
  }
}
.page_field .page_content .field__points ul li {
  width: clamp(-344px, 26.875vw, 344px);
  padding: clamp(-16px, 1.25vw, 16px) clamp(-16px, 1.25vw, 16px) clamp(-40px, 3.125vw, 40px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__points ul li {
    width: 100%;
    padding: 4.2666666667vw 4.2666666667vw 8.5333333333vw 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.page_field .page_content .field__points ul li .field__points_list_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-90px, 7.03125vw, 90px);
  height: clamp(-28px, 2.1875vw, 28px);
  background: #2285C2;
  font-family: Lato;
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  border-radius: clamp(-40px, 3.125vw, 40px);
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__points ul li .field__points_list_icon {
    width: 24vw;
    height: 7.4666666667vw;
    font-size: 3.7333333333vw;
    border-radius: 10.6666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}
.page_field .page_content .field__points ul li .field__points_list_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  color: #2E3639;
  padding-left: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__points ul li .field__points_list_text {
    font-size: 4.8vw;
    line-height: 1.5;
    padding-left: 2.1333333333vw;
  }
}
.page_field .page_content .field__points ul li .field__points_list_text span {
  color: #2285C2;
}
.page_field .page_content .field__related_detail {
  background: #ffffff;
  padding-bottom: clamp(-120px, 9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .page_field .page_content .field__related_detail {
    padding-bottom: 21.3333333333vw;
  }
}

.page_assessment .page_content .assessment__lead {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-64px, 5vw, 64px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__lead {
    padding: 21.3333333333vw 0 10.6666666667vw;
  }
}
.page_assessment .page_content .assessment__lead .assessment__lead_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-56px, 4.375vw, 56px);
  width: clamp(-1180px, 92.1875vw, 1180px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__lead .assessment__lead_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.4vw;
    width: 100%;
  }
}
.page_assessment .page_content .assessment__lead .assessment__lead_wrap .assessment__lead_ttl_wrap {
  width: clamp(-524px, 40.9375vw, 524px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__lead .assessment__lead_wrap .assessment__lead_ttl_wrap {
    width: 100%;
  }
}
.page_assessment .page_content .assessment__lead .assessment__lead_wrap .assessment__lead_ttl_wrap .assessment__lead_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4375;
  color: #2E3639;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__lead .assessment__lead_wrap .assessment__lead_ttl_wrap .assessment__lead_ttl {
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    margin-bottom: 6.4vw;
  }
}
.page_assessment .page_content .assessment__lead .assessment__lead_wrap .assessment__lead_ttl_wrap .assessment__lead_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__lead .assessment__lead_wrap .assessment__lead_ttl_wrap .assessment__lead_text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
.page_assessment .page_content .assessment__lead .assessment__lead_wrap .assessment__lead_img {
  width: clamp(-600px, 46.875vw, 600px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__lead .assessment__lead_wrap .assessment__lead_img {
    width: 100%;
  }
}
.page_assessment .page_content .assessment_service {
  background: #F2F5F8;
  padding-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment_service {
    padding-bottom: 21.3333333333vw;
  }
}
.page_assessment .page_content .assessment_service .assessment_service__inner .assessment_service__list {
  margin-bottom: 0;
}
.page_assessment .page_content .assessment_service .assessment_service__inner .assessment_service__list li {
  width: clamp(-528px, 41.25vw, 528px);
  padding: clamp(-24px, 1.875vw, 24px) clamp(-24px, 1.875vw, 24px) clamp(-40px, 3.125vw, 40px) clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment_service .assessment_service__inner .assessment_service__list li {
    width: 91.7333333333vw;
    padding: 4.2666666667vw 4.2666666667vw 6.4vw 6.4vw;
  }
}
.page_assessment .page_content .assessment__case {
  background: #F2F5F8;
  padding: 0 0 clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__case {
    padding: 0 0 21.3333333333vw;
  }
}
.page_assessment .page_content .assessment__attention {
  padding: clamp(-100px, 7.8125vw, 100px) 0;
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__attention {
    padding: 21.3333333333vw 0;
  }
}
.page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content {
  position: relative;
  background: #F2F5F8;
  padding: clamp(-93px, 7.265625vw, 93px) clamp(-32px, 2.5vw, 32px) clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content {
    padding: 25.0666666667vw 4vw 6.4vw;
  }
}
.page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(-300px, 23.4375vw, 300px);
  height: clamp(-50px, 3.90625vw, 50px);
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  background: #2285C2;
  position: absolute;
  top: clamp(-24px, 1.875vw, 24px);
  left: 0;
  border-radius: 0 clamp(-2px, 0.15625vw, 2px) clamp(-2px, 0.15625vw, 2px) 0;
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_ttl {
    width: 68.2666666667vw;
    height: 12.2666666667vw;
    font-size: 4.2666666667vw;
    line-height: 1.375;
    top: 6.4vw;
    border-radius: 0 0.5333333333vw 0.5333333333vw 0;
  }
}
.page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(-33px, 2.578125vw, 33px) clamp(-25px, 1.953125vw, 25px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_list {
    gap: 4.2666666667vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_list li {
  width: clamp(-322px, 25.15625vw, 322px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_list li {
    width: 39.2vw;
  }
}
.page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_list li .assessment__attention_content_img_wrap {
  width: 100%;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  overflow: hidden;
  margin-bottom: clamp(-14px, 1.09375vw, 14px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_list li .assessment__attention_content_img_wrap {
    border-radius: 0.5333333333vw;
    margin-bottom: 2.9333333333vw;
  }
}
.page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_list li .assessment__attention_content_img_wrap img {
  width: 100%;
}
.page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_list li .assessment__attention_content_text {
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  color: #2E3639;
  padding-left: clamp(-13px, 1.015625vw, 13px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_list li .assessment__attention_content_text {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
    padding-left: 3.2vw;
  }
}
.page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_list li .assessment__attention_content_text::after {
  content: "";
  display: block;
  width: clamp(-5px, 0.390625vw, 5px);
  height: clamp(-20px, 1.5625vw, 20px);
  background: #2285C2;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__attention .assessment__attention_inner .assessment__attention_content .assessment__attention_content_list li .assessment__attention_content_text::after {
    top: 0.5333333333vw;
    bottom: auto;
    margin: auto;
    width: 1.0666666667vw;
    height: 4.8vw;
  }
}
.page_assessment .page_content .assessment__contact_flow {
  padding: 0 0 clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__contact_flow {
    padding: 0 0 21.3333333333vw;
  }
}
.page_assessment .page_content .assessment__related {
  padding: 0 0 clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_assessment .page_content .assessment__related {
    padding: 0 0 21.3333333333vw;
  }
  .page_assessment .page_content .assessment__related .sec_title {
    gap: 2.1333333333vw;
  }
  .page_assessment .page_content .assessment__related .sec_title .sec_title__main {
    font-size: 5.8666666667vw;
  }
  .page_assessment .page_content .assessment__related .sec_title .sec_title__img {
    display: block;
    width: 5.8666666667vw;
  }
}

.page_estimate .page_content {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
  width: 100%;
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content {
    padding: 14.9333333333vw 0;
  }
}
.page_estimate .page_content .page_estimate__lead {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: clamp(-56px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__lead {
    font-size: 4.2666666667vw;
    margin-bottom: 10.6666666667vw;
  }
}
.page_estimate .page_content .page_estimate__lead .page_estimate__lead_attention {
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5714285714;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__lead .page_estimate__lead_attention {
    font-size: 3.7333333333vw;
  }
}
.page_estimate .page_content .page_estimate__table {
  margin-bottom: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table {
    margin-bottom: 21.3333333333vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__item-no {
  width: clamp(-71px, 5.546875vw, 71px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__item-no {
    margin-bottom: 2.1333333333vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__item-product {
  width: clamp(-248px, 19.375vw, 248px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__item-product {
    margin-bottom: 6.4vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__item-quantity {
  width: clamp(-150px, 11.71875vw, 150px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__item-quantity {
    padding-top: 9.0666666667vw;
    position: relative;
  }
  .page_estimate .page_content .page_estimate__table .page_estimate__item-quantity::after {
    content: "数量";
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Noto Sans JP";
    font-size: 4.2666666667vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #2E3639;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__item-certificate {
  width: clamp(-136px, 10.625vw, 136px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__item-certificate {
    padding-top: 9.0666666667vw;
    position: relative;
  }
  .page_estimate .page_content .page_estimate__table .page_estimate__item-certificate::after {
    content: "校正証明書";
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Noto Sans JP";
    font-size: 4.2666666667vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #2E3639;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__item-period {
  width: clamp(-220px, 17.1875vw, 220px);
}
.page_estimate .page_content .page_estimate__table .page_estimate__item-days {
  width: clamp(-190px, 14.84375vw, 190px);
}
.page_estimate .page_content .page_estimate__table .page_estimate__item-del {
  width: clamp(-71px, 5.546875vw, 71px);
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: clamp(-4px, 0.3125vw, 4px) clamp(-4px, 0.3125vw, 4px) 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_header {
    display: none;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_header .page_estimate__header_item {
  background: #16A2A4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: clamp(-56px, 4.375vw, 56px);
  border-right: 1px solid #ffffff;
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_header .page_estimate__header_item:last-child {
  border-right: none;
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_header .page_estimate__header_item span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 6.4vw;
    background: #ffffff;
    border-top: 1px solid #D3D3D3;
  }
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body:first-child {
    border-top: none;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body:last-child {
  border-bottom: none;
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item_wrap {
  width: clamp(-286px, 22.34375vw, 286px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
  border-right: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item_wrap {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-right: none;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: clamp(-128px, 10vw, 128px);
  border-right: 1px solid #D3D3D3;
  background: #ffffff;
  /* 品番・品名 */
  /* 数量 */
  /* 証明書 */
  /* レンタル期間 */
  /* 共通パーツ */
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    height: auto;
    border-right: none;
    margin-bottom: 6.4vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item:last-child {
  border-right: none;
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item a, .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item span, .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item input, .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-conf {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item a, .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item span, .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item input, .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-conf {
    font-size: 4.2666666667vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item__sp_container {
  display: none;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item__sp_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 3.2vw;
  }
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item__sp_container .item__sp_container_title {
    font-size: 4.2666666667vw;
  }
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item__sp_container .item__sp_container_attention {
    font-size: 3.2vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .page_estimate__item-product_span {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .page_estimate__item-product_span {
    font-family: "Noto Sans JP";
    font-size: 4.8vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #2E3639;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-quantity_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-quantity_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2.1333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-quantity_inner .item__sp_input_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2.1333333333vw;
  }
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-quantity_inner .item__sp_input_inner .item-quantity_sp_attention {
    font-size: 4.2666666667vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-quantity_inner .item-quantity_sp_input_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-quantity_inner .item-quantity_sp_input_inner {
    gap: 2.1333333333vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-quantity_inner input {
  width: clamp(-40px, 3.125vw, 40px);
  height: clamp(-40px, 3.125vw, 40px);
  padding: clamp(-7px, 0.546875vw, 7px) clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-quantity_inner input {
    width: 18.6666666667vw;
    height: 11.2vw;
    padding: 2.1333333333vw 3.2vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-certificate_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-certificate_inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.1333333333vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-certificate_inner .page_estimate__item-certificate_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-10px, 0.78125vw, 10px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-certificate_inner .page_estimate__item-certificate_label {
    width: auto;
    gap: 2.6666666667vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-certificate_inner .page_estimate__item-certificate_label input {
  accent-color: #16A2A4;
  margin: 0;
  padding: 0;
  margin-top: clamp(-1px, 0.078125vw, 1px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-certificate_inner .page_estimate__item-certificate_label input {
    margin-top: 0.2666666667vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-certificate_inner .page_estimate__item-certificate_label span {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-certificate_inner .page_estimate__item-certificate_label span {
    font-size: 4.2666666667vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-period_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-period_inner {
    gap: 2.1333333333vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-period_inner .item-period_inner_span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-8px, 0.625vw, 8px);
  width: clamp(-154px, 12.03125vw, 154px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-period_inner .item-period_inner_span {
    width: 78.6666666667vw;
    gap: 3.2vw;
  }
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-period_inner .item-period_inner_span span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-period_inner .item-period_inner_span input {
    width: 71.2vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-period_inner input {
  display: block;
  width: clamp(-130px, 10.15625vw, 130px);
  height: clamp(-40px, 3.125vw, 40px);
  padding: clamp(-7px, 0.546875vw, 7px) clamp(-8px, 0.625vw, 8px);
  border: none;
  background: #F2F5F8;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-period_inner input {
    width: 78.6666666667vw;
    height: 11.2vw;
    padding: 2.1333333333vw 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-period_inner input[type=date], .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .item-period_inner input[type=date]::-webkit-date-and-time-value {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
            align-items: center;
    text-align: left;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .custom-number-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .custom-number-input input {
  border: none;
  background: #F2F5F8;
  color: #2E3639;
  text-align: center;
  -moz-appearance: textfield !important;
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .custom-number-input input::-webkit-outer-spin-button, .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .custom-number-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .custom-number-input .number-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-38px, 2.96875vw, 38px);
  height: clamp(-40px, 3.125vw, 40px);
  border: none;
  background: #F2F5F8;
  color: #2E3639;
  text-align: center;
  font-size: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .custom-number-input .number-btn {
    width: 5.3333333333vw;
    height: 11.2vw;
    font-size: 4.2666666667vw;
  }
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item .custom-number-input .number-btn:disabled {
  color: #D3D3D3;
}
.page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item-del a {
  text-decoration: underline;
  text-underline-offset: clamp(-2px, 0.15625vw, 2px);
  color: #16A2A4;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page_estimate .page_content .page_estimate__table .page_estimate__table_body .page_estimate__item-del a {
    margin-left: auto;
  }
}
.page_estimate .page_content .estimate_text, .page_estimate .page_content .estimate_text_wrap {
  display: none;
}
.page_estimate .page_content .contact__div_submit .c-submit {
  background: #16A2A4;
}

.page_server .page_content .server__lead {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-64px, 5vw, 64px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_server .page_content .server__lead {
    padding: 21.3333333333vw 0 10.6666666667vw;
  }
}
.page_server .page_content .server__lead .server__lead_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-56px, 4.375vw, 56px);
  width: clamp(-1180px, 92.1875vw, 1180px);
}
@media screen and (max-width: 767px) {
  .page_server .page_content .server__lead .server__lead_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.4vw;
    width: 100%;
  }
}
.page_server .page_content .server__lead .server__lead_wrap .server__lead_ttl_wrap {
  width: clamp(-524px, 40.9375vw, 524px);
}
@media screen and (max-width: 767px) {
  .page_server .page_content .server__lead .server__lead_wrap .server__lead_ttl_wrap {
    width: 100%;
  }
}
.page_server .page_content .server__lead .server__lead_wrap .server__lead_ttl_wrap .server__lead_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4375;
  color: #2E3639;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_server .page_content .server__lead .server__lead_wrap .server__lead_ttl_wrap .server__lead_ttl {
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    margin-bottom: 6.4vw;
  }
}
.page_server .page_content .server__lead .server__lead_wrap .server__lead_ttl_wrap .server__lead_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_server .page_content .server__lead .server__lead_wrap .server__lead_ttl_wrap .server__lead_text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
.page_server .page_content .server__lead .server__lead_wrap .server__lead_img {
  width: clamp(-600px, 46.875vw, 600px);
}
@media screen and (max-width: 767px) {
  .page_server .page_content .server__lead .server__lead_wrap .server__lead_img {
    width: 95.7333333333vw;
    position: relative;
  }
}
.page_server .page_content .server_service {
  background: #F2F5F8;
  padding-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_server .page_content .server_service {
    padding-bottom: 21.3333333333vw;
  }
}
.page_server .page_content .server_service .server_service__inner .server_service__list {
  margin-bottom: 0;
}
.page_server .page_content .server_service .server_service__inner .server_service__list li {
  width: clamp(-344px, 26.875vw, 344px);
  padding: clamp(-16px, 1.25vw, 16px) clamp(-16px, 1.25vw, 16px) clamp(-24px, 1.875vw, 24px) clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_server .page_content .server_service .server_service__inner .server_service__list li {
    width: 91.7333333333vw;
    padding: 4.2666666667vw 4.2666666667vw 6.4vw 6.4vw;
  }
}
.page_server .page_content .server_service .server_service__inner .server_service__list li .common_list__item_list_img {
  margin-bottom: clamp(-16px, 1.25vw, 16px);
}
.page_server .page_content .server_service .server_service__inner .server_service__list li .common_list__item_list_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .page_server .page_content .server_service .server_service__inner .server_service__list li .common_list__item_list_ttl {
    font-size: 4.8vw;
    line-height: 1.5;
  }
}
.page_server .page_content .server_service .server_service__inner .server_service__list li .common_list__item_list_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .page_server .page_content .server_service .server_service__inner .server_service__list li .common_list__item_list_text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
.page_server .page_content .server__related_detail {
  background: #ffffff;
  padding: clamp(-100px, 7.8125vw, 100px) 0;
}
@media screen and (max-width: 767px) {
  .page_server .page_content .server__related_detail {
    padding: 21.3333333333vw 0;
  }
}
.page_server .page_content .server__related {
  padding: 0 0 clamp(-120px, 9.375vw, 120px);
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .page_server .page_content .server__related {
    padding: 0 0 21.3333333333vw;
  }
  .page_server .page_content .server__related .sec_title {
    gap: 2.1333333333vw;
  }
  .page_server .page_content .server__related .sec_title .sec_title__main {
    font-size: 5.8666666667vw;
  }
  .page_server .page_content .server__related .sec_title .sec_title__img {
    display: block;
    width: 5.8666666667vw;
  }
}

.page_privacy .page_content .privacy__policy {
  background: #F2F5F8;
  padding: clamp(-100px, 7.8125vw, 100px) 0;
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy {
    padding: 14.9333333333vw 0;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_ttl {
  width: clamp(-856px, 66.875vw, 856px) !important;
  margin: 0 auto;
  margin-bottom: clamp(-64px, 5vw, 64px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_ttl {
    margin: 0 auto;
    margin-bottom: 10.6666666667vw;
    width: 100% !important;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item {
  counter-reset: list-item 0;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item {
    margin-bottom: 10.6666666667vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item:last-child {
  margin-bottom: 0;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-6px, 0.46875vw, 6px);
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
  padding-bottom: clamp(-13px, 1.015625vw, 13px);
  border-bottom: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ttl {
    gap: 1.6vw;
    font-size: 4.8vw;
    margin-bottom: 6.4vw;
    padding-bottom: 3.2vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text {
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  margin-bottom: clamp(-32px, 2.5vw, 32px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    margin-bottom: 6.4vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text.-last {
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text.-last {
    margin-bottom: 6.4vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text.-dot {
  padding-left: clamp(-20px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text.-dot {
    padding-left: 5.3333333333vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text.-dot::before {
  content: "・";
  position: absolute;
  left: 0;
  top: clamp(-1px, 0.078125vw, 1px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text.-dot::before {
    font-size: 4.2666666667vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text.-attention {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  padding-left: clamp(-22px, 1.71875vw, 22px);
  margin-bottom: clamp(-22px, 1.71875vw, 22px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text.-attention {
    font-size: 4.2666666667vw;
    line-height: normal;
    padding-left: 5.8666666667vw;
    margin-bottom: 6.4vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text.-attention::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  font-size: clamp(-16px, 1.25vw, 16px);
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text.-attention::before {
    font-size: 4.2666666667vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text.-bold {
  font-weight: 700;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text2 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text2 {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    margin-bottom: 2.1333333333vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_text2.-last {
  margin-bottom: 0;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_img {
  width: clamp(-75px, 5.859375vw, 75px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_img {
    width: 20vw;
    margin-inline: auto;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_img img {
  width: 100%;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ol {
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ol {
    margin-bottom: 6.4vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ol li {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  padding-left: clamp(-20px, 1.5625vw, 20px);
  margin-bottom: clamp(-12px, 0.9375vw, 12px);
  position: relative;
  counter-increment: list-item;
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ol li {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    padding-left: 5.3333333333vw;
    margin-bottom: 3.2vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ol li::before {
  content: counter(list-item) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ol li:last-child {
  margin-bottom: 0;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ul {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ul {
    margin-bottom: 10.6666666667vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ul li {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  padding-left: clamp(-22px, 1.71875vw, 22px);
  margin-bottom: clamp(-4px, 0.3125vw, 4px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ul li {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    padding-left: 5.8666666667vw;
    margin-bottom: 1.0666666667vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_contact {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_contact {
    margin-bottom: 6.4vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_contact li {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.375;
  margin-bottom: clamp(-6px, 0.46875vw, 6px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_contact li {
    font-size: 4.2666666667vw;
    line-height: 1.375;
    margin-bottom: 1.6vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_contact li:last-child {
  margin-bottom: 0;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_contact li .policy_content__list_contact_link {
  color: #2285C2;
  text-decoration: underline;
  text-underline-offset: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_contact li .policy_content__list_contact_link {
    text-underline-offset: 0.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap {
    width: 100%;
    overflow-x: scroll;
  }
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .simplebar-track {
    height: 1.3333333333vw !important;
  }
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .simplebar-scrollbar {
    background: #2285C2;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table {
    width: 100%;
    margin-bottom: 6.4vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table th, .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table td {
  border: 1px solid #D3D3D3;
  padding: clamp(-18px, 1.40625vw, 18px);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table th, .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table td {
    padding: 4.8vw;
    font-size: 3.7333333333vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table .main-td {
  text-align: left;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table .main-td ul li {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7142857143;
  padding-left: clamp(-22px, 1.71875vw, 22px);
  position: relative;
  margin-bottom: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table .main-td ul li {
    width: 92vw;
    font-size: 3.7333333333vw !important;
    padding-left: 4.8vw;
    margin-bottom: 2.1333333333vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table .main-td ul li:last-child {
  margin-bottom: 0;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table .main-td ul li::before {
  content: "・";
  position: absolute;
  left: clamp(-4px, 0.3125vw, 4px);
  top: clamp(-1px, 0.078125vw, 1px);
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table .main-td ul li::before {
    left: 0.2666666667vw;
    top: 0.2666666667vw;
    font-size: 3.4666666667vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table .-no-wrap {
  white-space: nowrap;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table thead {
  background: #2285C2;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table thead th {
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  white-space: nowrap;
  padding: clamp(-7px, 0.546875vw, 7px) clamp(-46px, 3.59375vw, 46px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_table_wrap .privacy_table thead th {
    padding: 2.4vw 10.4vw;
    font-size: 3.7333333333vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ol_personal .list_ol_personal__item {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ol_personal .list_ol_personal__item .list_personal__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-6px, 0.46875vw, 6px);
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ol_personal .list_ol_personal__item .list_personal__ttl {
    gap: 1.6vw;
    font-size: 4.8vw;
    margin-bottom: 6.4vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ol_personal .list_ol_personal__item:last-child {
  margin-bottom: 0;
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ol_personal .-item5 .-mb_narrow {
  margin-bottom: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_ol_personal .-item5 .-mb_narrow {
    margin-bottom: 3.2vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy__dl_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-5px, 0.390625vw, 5px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2285C2;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy__dl_btn {
    display: inline-block;
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy__dl_btn .policy__dl_btn_icon {
  width: clamp(-14px, 1.09375vw, 14px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy__dl_btn .policy__dl_btn_icon {
    display: inline-block;
    width: 3.7333333333vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_identification .policy_content__list_text {
  margin-bottom: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_identification .policy_content__list_text {
    margin-bottom: 2.1333333333vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_identification ul {
  padding-left: clamp(-22px, 1.71875vw, 22px);
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_identification ul {
    padding-left: 5.8666666667vw;
    margin-bottom: 6.4vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_identification ul li {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: clamp(-4px, 0.3125vw, 4px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_identification ul li {
    font-size: 4.2666666667vw;
    margin-bottom: 1.0666666667vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.1333333333vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_inner {
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_inner {
    margin-bottom: 6.4vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_inner .policy_content__list_text {
  margin-bottom: clamp(-4px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_inner .policy_content__list_text {
    margin-bottom: 1.0666666667vw;
  }
}
.page_privacy .page_content .privacy__policy .privacy__policy_content .policy_content__list .policy_content__list_item .policy_content__list_inner .policy_content__list_text:last-child {
  margin-bottom: 0;
}
.page_privacy .page_content .privacy__policy.privacy__treatment {
  background: #ffffff;
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy.privacy__treatment {
    padding: 14.9333333333vw 0;
  }
}
.page_privacy .page_content .privacy__policy.privacy__treatment .privacy__treatment_ttl {
  width: clamp(-856px, 66.875vw, 856px) !important;
  margin: 0 auto;
  margin-bottom: clamp(-64px, 5vw, 64px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy.privacy__treatment .privacy__treatment_ttl {
    margin: 0 auto;
    margin-bottom: 10.6666666667vw;
    width: 100% !important;
  }
}
.page_privacy .page_content .privacy__policy.privacy__treatment .privacy__treatment_lead {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy.privacy__treatment .privacy__treatment_lead {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    margin-bottom: 10.6666666667vw;
  }
}
.page_privacy .page_content .privacy__policy.privacy__treatment .privacy__policy_content .policy_content__list_ttl.-treatment {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_privacy .page_content .privacy__policy.privacy__treatment .privacy__policy_content .policy_content__list_ttl.-treatment {
    margin-bottom: 6.4vw;
  }
}

.page_recruit .page_content {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .page_recruit .page_content {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.page_recruit .page_content .recruit__main_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_recruit .page_content .recruit__main_ttl {
    margin-bottom: 6.4vw;
    font-size: 4.2666666667vw;
  }
}
.page_recruit .page_content .recruit__main_inner {
  margin-bottom: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_recruit .page_content .recruit__main_inner {
    margin-bottom: 14.9333333333vw;
  }
}
.page_recruit .page_content .recruit__main_inner .recruit__main_ttl_sub {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_recruit .page_content .recruit__main_inner .recruit__main_ttl_sub {
    margin-bottom: 6.4vw;
  }
}
.page_recruit .page_content .recruit__main_inner .recruit__main_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_recruit .page_content .recruit__main_inner .recruit__main_text {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
  }
}
.page_recruit .page_content .recruit__main_inner .recruit__main_text.-text-last {
  margin-bottom: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .page_recruit .page_content .recruit__main_inner .recruit__main_text.-text-last {
    margin-bottom: 2.6666666667vw;
  }
}
.page_recruit .page_content .recruit__main_inner .recruit__main_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .page_recruit .page_content .recruit__main_inner .recruit__main_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.1333333333vw;
  }
}
.page_recruit .page_content .recruit__main_inner .recruit__main_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(-18px, 1.40625vw, 18px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  background: #ffffff;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .page_recruit .page_content .recruit__main_inner .recruit__main_list li {
    font-size: 4.2666666667vw;
    padding: 3.7333333333vw 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.page_recruit .page_content .recruit__main_inner .recruit__main_text_list {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_recruit .page_content .recruit__main_inner .recruit__main_text_list {
    font-size: 3.2vw;
    margin-bottom: 6.4vw;
  }
}
.page_recruit .page_content .recruit__main_inner:last-child {
  margin-bottom: 0;
}
.page_recruit .page_content .recruit__request {
  padding: clamp(-64px, 5vw, 64px) clamp(-112px, 8.75vw, 112px);
  border-radius: clamp(-4px, 0.3125vw, 4px);
  background: #FAF3F3;
  border: 2px solid #C80000;
  text-align: center;
  margin-bottom: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .page_recruit .page_content .recruit__request {
    padding: 10.6666666667vw 4.2666666667vw;
    margin-bottom: 14.9333333333vw;
    border-radius: 1.0666666667vw;
  }
}
.page_recruit .page_content .recruit__request .recruit__request_ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #C80000;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_recruit .page_content .recruit__request .recruit__request_ttl {
    font-size: 4.8vw;
    margin-bottom: 6.4vw;
  }
}
.page_recruit .page_content .recruit__request .recruit__request_text {
  color: #2E3639;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_recruit .page_content .recruit__request .recruit__request_text {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
    text-align: left;
  }
}
.page_recruit .page_content .recruit__request .recruit__request_text span {
  font-weight: 700;
}
.page_recruit .page_content .recruit__request .recruit__request_text:last-child {
  margin-bottom: 0;
}

.page_security .page_content .security_main {
  padding: clamp(-100px, 7.8125vw, 100px) 0;
  background: #F2F5F8;
  /* リード */
  /* サービス */
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.page_security .page_content .security_main .security_kv {
  margin-bottom: clamp(-54px, 4.21875vw, 54px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_kv {
    margin-bottom: 8.5333333333vw;
  }
}
.page_security .page_content .security_main .security_kv .security_kv__inner {
  width: clamp(-1180px, 92.1875vw, 1180px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-56px, 4.375vw, 56px);
  position: relative;
  left: calc(clamp(-1080px, 84.375vw, 1080px) - clamp(-1180px, 92.1875vw, 1180px));
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_kv .security_kv__inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8.5333333333vw;
    position: relative;
    left: 0;
  }
}
.page_security .page_content .security_main .security_kv .security_kv__img {
  width: clamp(-600px, 46.875vw, 600px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_kv .security_kv__img {
    width: 95.7333333333vw;
    margin-left: calc(50% - 50vw);
  }
}
.page_security .page_content .security_main .security_kv .security_kv__left {
  width: clamp(-524px, 40.9375vw, 524px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_kv .security_kv__left {
    width: 100%;
  }
}
.page_security .page_content .security_main .security_kv .security_kv__left .security_kv__ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-32px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4375;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_kv .security_kv__left .security_kv__ttl {
    font-size: 5.8666666667vw;
    margin-bottom: 6.4vw;
  }
}
.page_security .page_content .security_main .security_kv .security_kv__left .security_kv__text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: clamp(-30px, 2.34375vw, 30px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_kv .security_kv__left .security_kv__text {
    font-size: 4.2666666667vw;
    margin-bottom: 10.4vw;
  }
}
.page_security .page_content .security_main .security_kv .security_kv__left .security_kv__text:last-child {
  margin-bottom: 0;
}
.page_security .page_content .security_main .security_lead {
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead {
    margin-bottom: 6.4vw;
  }
}
.page_security .page_content .security_main .security_lead .security_lead__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  background: #E5E8EA;
  padding: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead .security_lead__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8.5333333333vw 4.2666666667vw;
  }
}
.page_security .page_content .security_main .security_lead .security_lead__inner li {
  width: clamp(-480px, 37.5vw, 480px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead .security_lead__inner li {
    width: 100%;
  }
}
.page_security .page_content .security_main .security_lead .security_lead__inner li .security_lead__ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2285C2;
  margin-bottom: clamp(-12px, 0.9375vw, 12px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead .security_lead__inner li .security_lead__ttl {
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.page_security .page_content .security_main .security_lead .security_lead__inner li .security_lead__text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead .security_lead__inner li .security_lead__text {
    font-size: 4.2666666667vw;
  }
}
.page_security .page_content .security_main .security_lead .security_lead__inner li .security_lead__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: clamp(-383px, 29.921875vw, 383px);
  height: clamp(-78px, 6.09375vw, 78px);
  gap: clamp(-18px, 1.40625vw, 18px);
  background: #ffffff;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.375;
  color: #2285C2;
  position: relative;
  -webkit-box-shadow: 0 clamp(-4px, 0.3125vw, 4px) clamp(-4px, 0.3125vw, 4px) 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 clamp(-4px, 0.3125vw, 4px) clamp(-4px, 0.3125vw, 4px) 0 rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead .security_lead__inner li .security_lead__link {
    width: 82.9333333333vw;
    height: 20vw;
    font-size: 4.2666666667vw;
    -webkit-box-shadow: 0 1.0666666667vw 1.0666666667vw 0 rgba(0, 0, 0, 0.06);
            box-shadow: 0 1.0666666667vw 1.0666666667vw 0 rgba(0, 0, 0, 0.06);
    gap: 4.2666666667vw;
  }
}
.page_security .page_content .security_main .security_lead .security_lead__inner li .security_lead__link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(-50px, 3.90625vw, 50px);
  width: 1px;
  height: clamp(-30px, 2.34375vw, 30px);
  background: #A1A1A1;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead .security_lead__inner li .security_lead__link::after {
    right: 13.3333333333vw;
    height: 8vw;
  }
}
.page_security .page_content .security_main .security_lead .security_lead__inner li .security_lead__link .security_lead__link_img {
  display: block;
  width: clamp(-78px, 6.09375vw, 78px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead .security_lead__inner li .security_lead__link .security_lead__link_img {
    width: 20vw;
  }
}
.page_security .page_content .security_main .security_lead .security_lead__inner li .security_lead__link .security_lead__link_arrow {
  width: clamp(-14px, 1.09375vw, 14px);
  margin-left: auto;
  margin-right: clamp(-20px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead .security_lead__inner li .security_lead__link .security_lead__link_arrow {
    width: 3.7333333333vw;
    margin-right: 5.3333333333vw;
  }
}
.page_security .page_content .security_main .security_lead .security_lead__inner li.-lead-1 {
  margin-bottom: clamp(-20px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead .security_lead__inner li.-lead-1 {
    margin-bottom: 2.6666666667vw;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.page_security .page_content .security_main .security_lead .security_lead__inner li.-lead-2 {
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead .security_lead__inner li.-lead-2 {
    margin-bottom: 8.5333333333vw;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead .security_lead__inner li.-lead-3 {
    margin-bottom: 8.5333333333vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_lead .security_lead__inner li.-lead-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.page_security .page_content .security_main .sekisupe_lead {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .sekisupe_lead {
    margin-bottom: 21.3333333333vw;
  }
}
.page_security .page_content .security_main .sekisupe_lead .sekisupe_lead__inner {
  width: 100%;
  background: #CFEDFF;
  padding: clamp(-20px, 1.5625vw, 20px) clamp(-20px, 1.5625vw, 20px) clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .sekisupe_lead .sekisupe_lead__inner {
    padding: 6.4vw 4.2666666667vw;
  }
}
.page_security .page_content .security_main .sekisupe_lead .sekisupe_lead__inner .sekisupe_lead__ttl {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2285C2;
  padding-bottom: clamp(-20px, 1.5625vw, 20px);
  margin-bottom: clamp(-40px, 3.125vw, 40px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .sekisupe_lead .sekisupe_lead__inner .sekisupe_lead__ttl {
    font-size: 4.2666666667vw;
    padding-bottom: 6.4vw;
    margin-bottom: 4.2666666667vw;
  }
}
.page_security .page_content .security_main .sekisupe_lead .sekisupe_lead__inner .sekisupe_lead__ttl:before {
  content: "";
  position: absolute;
  width: 100%;
  height: clamp(-2px, 0.15625vw, 2px);
  background: #ffffff;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .sekisupe_lead .sekisupe_lead__inner .sekisupe_lead__ttl:before {
    height: 0.5333333333vw;
  }
}
.page_security .page_content .security_main .sekisupe_lead .sekisupe_lead__inner .sekisupe_lead__ttl::after {
  content: "";
  position: absolute;
  width: clamp(-121px, 9.453125vw, 121px);
  height: clamp(-2px, 0.15625vw, 2px);
  background: #2285C2;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .sekisupe_lead .sekisupe_lead__inner .sekisupe_lead__ttl::after {
    width: 20.8vw;
    height: 0.5333333333vw;
  }
}
.page_security .page_content .security_main .sekisupe_lead .sekisupe_lead__inner .sekisupe_lead__text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
  padding: 0 clamp(-20px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .sekisupe_lead .sekisupe_lead__inner .sekisupe_lead__text {
    font-size: 4.2666666667vw;
    margin-bottom: 4.2666666667vw;
    padding: 0;
  }
}
.page_security .page_content .security_main .security_service .security_service__inner .security_service__ttl {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_service .security_service__inner .security_service__ttl {
    margin-bottom: 6.4vw;
  }
}
.page_security .page_content .security_main .security_service .security_service__inner .security_service__list {
  margin-bottom: 0;
}
.page_security .page_content .security_main .security_service .security_service__inner .security_service__list li {
  height: clamp(-378px, 29.53125vw, 378px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_service .security_service__inner .security_service__list li {
    height: auto;
    width: 94.1333333333vw;
    padding-bottom: 16.8vw;
  }
}
.page_security .page_content .security_main .security_service .security_service__inner .security_service__list li .page_more_link {
  position: absolute;
  bottom: clamp(-24px, 1.875vw, 24px);
  right: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_service .security_service__inner .security_service__list li .page_more_link {
    bottom: 4.2666666667vw;
    right: 4.2666666667vw;
  }
}
.page_security .page_content .security_main .security_service .security_service__inner .security_service__list .-small {
  width: clamp(-344px, 26.875vw, 344px);
  height: clamp(-474px, 37.03125vw, 474px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_service .security_service__inner .security_service__list .-small {
    width: 94.1333333333vw;
    height: auto;
  }
}
.page_security .page_content .security_main .security_service .security_service__inner .security_service__list .-small .common_list__item_list_img {
  margin-bottom: clamp(-20px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_main .security_service .security_service__inner .security_service__list .-small .common_list__item_list_img {
    margin-bottom: 0;
  }
}
.page_security .page_content .security_related {
  padding: clamp(-100px, 7.8125vw, 100px) 0;
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_related {
    padding: 21.3333333333vw 0;
  }
}
.page_security .page_content .security_flow {
  padding-bottom: clamp(-120px, 9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_flow {
    padding-bottom: 21.3333333333vw;
  }
}
.page_security .page_content .security_flow .network_flow__inner .network_flow__ttl {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_flow .network_flow__inner .network_flow__ttl {
    margin-bottom: 6.4vw;
  }
}
.page_security .page_content .security_flow .network_flow__inner .network_flow__content {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .page_security .page_content .security_flow .network_flow__inner .network_flow__content {
    margin-bottom: 21.3333333333vw;
  }
}

.single_product {
  /* 共通設定 */
}
.single_product .product_kv {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
.single_product .product_kv .product_kv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-56px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10.6666666667vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__left {
  width: clamp(-468px, 36.5625vw, 468px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__left {
    width: 100%;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__left .product_kv__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 6/5;
  border-radius: clamp(-4px, 0.3125vw, 4px);
  overflow: hidden;
  border: 1px solid #D3D3D3;
  margin-bottom: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__left .product_kv__img {
    width: 100%;
    height: auto;
    margin-bottom: 6.4vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__left .product_kv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single_product .product_kv .product_kv__inner .product_kv__left .product_kv__cart a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: clamp(-56px, 4.375vw, 56px);
  background: #16A2A4;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__left .product_kv__cart a {
    height: 14.9333333333vw;
    font-family: "Noto Sans JP";
    font-size: 4.8vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #ffffff;
    border-radius: 0.5333333333vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__left .product_kv__cart a span {
  pointer-events: none;
}
.single_product .product_kv .product_kv__inner .product_kv__content {
  width: clamp(-556px, 43.4375vw, 556px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content {
    width: 100%;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__title {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-left: clamp(-14px, 1.09375vw, 14px);
  border-left: clamp(-6px, 0.46875vw, 6px) solid #16A2A4;
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__title {
    font-size: 4.8vw;
    padding-left: 3.7333333333vw;
    border-left: 1.6vw solid #16A2A4;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__list {
  margin-top: clamp(-24px, 1.875vw, 24px);
  margin-bottom: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__list {
    margin-top: 6.4vw;
    margin-bottom: 4.2666666667vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__list .product_kv__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-40px, 3.125vw, 40px);
  padding: clamp(-18px, 1.40625vw, 18px) 0;
  border-bottom: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__list .product_kv__item {
    gap: 10.6666666667vw;
    padding: 4.2666666667vw 0;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__list .product_kv__item:first-child {
  padding-top: 0;
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__list .product_kv__item .product_kv__item_title {
  width: clamp(-64px, 5vw, 64px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__list .product_kv__item .product_kv__item_title {
    width: 17.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__list .product_kv__item .product_kv__item_value {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__list .product_kv__item .product_kv__item_value .-red {
  display: inline-block;
  color: #FF0032;
  border-bottom: clamp(-1px, 0.078125vw, 1px) solid #FF0032;
  padding: 0 clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__list .product_kv__item .product_kv__item_value .-red {
    border-bottom: 0.2666666667vw solid #FF0032;
    padding: 0 1.0666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__list .product_kv__item .product_kv__item_value {
    font-size: 4.2666666667vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__status {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.1333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__status .product_kv__status_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-133px, 10.390625vw, 133px);
  height: clamp(-57px, 4.453125vw, 57px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  border: clamp(-2px, 0.15625vw, 2px) solid #D3D3D3;
  font-family: "Noto Sans JP";
  font-size: clamp(-13px, 1.015625vw, 13px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #D3D3D3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__status .product_kv__status_item {
    width: 44.5333333333vw;
    height: 15.2vw;
    border-radius: 0.5333333333vw;
    border: 0.5333333333vw solid #D3D3D3;
    font-size: 3.4666666667vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__status .product_kv__status_item.-active {
  border-color: #16A2A4;
  color: #16A2A4;
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links {
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links {
    margin-bottom: 6.4vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links .product_kv__links_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-16px, 1.25vw, 16px);
  margin-top: clamp(-26px, 2.03125vw, 26px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links .product_kv__links_inner {
    gap: 4.2666666667vw;
    margin-top: 6.9333333333vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links .product_kv__links_inner .product_kv__link {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
  text-underline-offset: clamp(-4px, 0.3125vw, 4px);
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links .product_kv__links_inner .product_kv__link {
    font-size: 4.2666666667vw;
    text-underline-offset: 1.0666666667vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links .product_kv__links_inner .product_kv__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links .product_kv__links_inner .product_kv__link .product_kv__item_icon.youtube {
  width: clamp(-20px, 1.5625vw, 20px);
  margin-left: clamp(-6px, 0.46875vw, 6px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links .product_kv__links_inner .product_kv__link .product_kv__item_icon.youtube {
    width: 5.3333333333vw;
    margin-left: 1.6vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links .product_kv__links_inner .product_kv__link .product_kv__item_icon.blank {
  width: clamp(-12px, 0.9375vw, 12px);
  margin-left: clamp(-4px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links .product_kv__links_inner .product_kv__link .product_kv__item_icon.blank {
    width: 3.2vw;
    margin-left: 1.0666666667vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links .product_kv__links_inner .product_kv__link .product_kv__item_icon.dl {
  width: clamp(-11px, 0.859375vw, 11px);
  margin-left: clamp(-6px, 0.46875vw, 6px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links .product_kv__links_inner .product_kv__link .product_kv__item_icon.dl {
    width: 3.2vw;
    margin-left: 1.6vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__links .product_kv__links_inner .product_kv__link .product_kv__item_icon img {
  width: 100%;
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__banners {
    gap: 2.4vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__banners .product_kv__banner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-220px, 17.1875vw, 220px);
  height: clamp(-76px, 5.9375vw, 76px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  overflow: hidden;
  border: 1px solid #2E3639;
  padding: clamp(-16px, 1.25vw, 16px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__banners .product_kv__banner a {
    width: 44.5333333333vw;
    height: 15.4666666667vw;
    border-radius: 0.5333333333vw;
    padding: 4.2666666667vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__banners .product_kv__banner a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__banners .product_kv__banner a .product_kv__item_icon {
  position: absolute;
  top: clamp(-8px, 0.625vw, 8px);
  right: clamp(-8px, 0.625vw, 8px);
  width: clamp(-12px, 0.9375vw, 12px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .single_product .product_kv .product_kv__inner .product_kv__content .product_kv__banners .product_kv__banner a .product_kv__item_icon {
    top: 2.1333333333vw;
    right: 2.1333333333vw;
    width: 3.2vw;
  }
}
.single_product .product_kv .product_kv__inner .product_kv__content .product_kv__banners .product_kv__banner a .product_kv__item_icon img {
  width: 100%;
}
.single_product .product_nav {
  width: 100%;
  padding-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .single_product .product_nav {
    padding-top: 10.6666666667vw;
    padding-bottom: 0;
    background: #F2F5F8;
  }
}
.single_product .product_nav .product_nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .single_product .product_nav .product_nav__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3.7333333333vw 4.2666666667vw;
  }
}
.single_product .product_nav .product_nav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-8px, 0.625vw, 8px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .single_product .product_nav .product_nav__item a {
    font-size: 4.2666666667vw;
    gap: 2.1333333333vw;
  }
}
.single_product .product_nav .product_nav__item .product_nav__item_icon {
  display: block;
  width: clamp(-24px, 1.875vw, 24px);
  height: clamp(-24px, 1.875vw, 24px);
  background: #2E3639;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .single_product .product_nav .product_nav__item .product_nav__item_icon {
    width: 4.8vw;
    height: 4.8vw;
    border-radius: 0.5333333333vw;
  }
}
.single_product .product_nav .product_nav__item .product_nav__item_icon::before, .single_product .product_nav .product_nav__item .product_nav__item_icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: clamp(-10px, 0.78125vw, 10px);
  height: clamp(-10px, 0.78125vw, 10px);
  -webkit-mask-image: url(../../image/common/icon_arrow_bottom.svg);
          mask-image: url(../../image/common/icon_arrow_bottom.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #ffffff;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .single_product .product_nav .product_nav__item .product_nav__item_icon::before, .single_product .product_nav .product_nav__item .product_nav__item_icon::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.single_product .product_nav .product_nav__item .product_nav__item_icon::after {
  -webkit-transform: translateY(-400%);
          transform: translateY(-400%);
}
.single_product .product_nav .product_nav__item:hover .product_nav__item_icon::before {
  -webkit-transform: translateY(400%);
          transform: translateY(400%);
}
.single_product .product_nav .product_nav__item:hover .product_nav__item_icon::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.single_product .product_content {
  width: 100%;
  background: #F2F5F8;
  padding: clamp(-80px, 6.25vw, 80px) 0 clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.single_product .product_content .product_content__lineup {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__lineup {
    margin-bottom: 14.9333333333vw;
  }
}
.single_product .product_content .product_content__lineup .product_content__lineup_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-12px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__lineup .product_content__lineup_list {
    gap: 3.2vw;
  }
}
.single_product .product_content .product_content__lineup .product_content__lineup_list .product_content__lineup_item {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  padding-left: clamp(-24px, 1.875vw, 24px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__lineup .product_content__lineup_list .product_content__lineup_item {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    padding-left: 6.4vw;
  }
}
.single_product .product_content .product_content__lineup .product_content__lineup_list .product_content__lineup_item::before {
  content: "";
  position: absolute;
  left: clamp(-8px, 0.625vw, 8px);
  top: clamp(-10px, 0.78125vw, 10px);
  display: block;
  width: clamp(-6px, 0.46875vw, 6px);
  height: clamp(-6px, 0.46875vw, 6px);
  background-color: #16A2A4;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__lineup .product_content__lineup_list .product_content__lineup_item::before {
    left: 2.1333333333vw;
    top: 2.6666666667vw;
    width: 1.6vw;
    height: 1.6vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_outline {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_outline {
    margin-bottom: 14.9333333333vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-24px, 1.875vw, 24px);
  margin-top: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail {
    gap: 6.4vw;
    margin-top: 6.4vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item {
  width: 100%;
  padding: clamp(-24px, 1.875vw, 24px);
  background: #ffffff;
  border-radius: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item {
    padding: 6.4vw 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-12px, 0.9375vw, 12px);
  width: 100%;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: clamp(-16px, 1.25vw, 16px);
  border-bottom: 1px solid #D3D3D3;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_title {
    font-size: 4.2666666667vw;
    padding-bottom: 4.2666666667vw;
    border-bottom: 1px solid #D3D3D3;
    margin-bottom: 6.4vw;
    gap: 3.2vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: clamp(-2px, 0.15625vw, 2px) clamp(-14px, 1.09375vw, 14px);
  background: #16A2A4;
  border-radius: clamp(-48px, 3.75vw, 48px);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_title span {
    font-size: 3.7333333333vw;
    padding: 0.5333333333vw 3.7333333333vw;
    border-radius: 10.6666666667vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: clamp(-24px, 1.875vw, 24px);
  width: clamp(-600px, 46.875vw, 600px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_left {
    width: 100%;
    gap: 6.4vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_text {
    width: 100%;
    font-size: 4.2666666667vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: clamp(-400px, 31.25vw, 400px);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_img img {
  width: 60%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_img img {
    width: 100%;
    max-width: 100%;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_btn {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  background: #16A2A4;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  padding: clamp(-16px, 1.25vw, 16px) clamp(-24px, 1.875vw, 24px);
  border: none;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_outline .product_content__lineup_detail .product_content__lineup_btn {
    font-size: 4.2666666667vw;
    padding: 3.7333333333vw 5.3333333333vw;
    border-radius: 0.5333333333vw;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_outline {
    margin-bottom: 15.7333333333vw;
  }
}
.single_product .product_content .product_content__feature .product_content__text_content p, .single_product .product_content .product_content__feature .product_content__text_content a, .single_product .product_content .product_content__feature .product_content__text_content span, .single_product .product_content .product_content__feature .product_content__text_content li {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__text_content p, .single_product .product_content .product_content__feature .product_content__text_content a, .single_product .product_content .product_content__feature .product_content__text_content span, .single_product .product_content .product_content__feature .product_content__text_content li {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
.single_product .product_content .product_content__feature .product_content__text_content li {
  position: relative;
  padding-left: clamp(-4px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__text_content li {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    padding-left: 1.0666666667vw;
  }
}
.single_product .product_content .product_content__feature .product_content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-12px, 0.9375vw, 12px);
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__list {
    gap: 3.2vw;
    margin-bottom: 8.5333333333vw;
  }
}
.single_product .product_content .product_content__feature .product_content__list .product_content__item {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  padding-left: clamp(-24px, 1.875vw, 24px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__list .product_content__item {
    font-size: 4.2666666667vw;
    line-height: 1.625;
    padding-left: 6.4vw;
  }
}
.single_product .product_content .product_content__feature .product_content__list .product_content__item::before {
  content: "";
  position: absolute;
  left: clamp(-8px, 0.625vw, 8px);
  top: clamp(-10px, 0.78125vw, 10px);
  display: block;
  width: clamp(-6px, 0.46875vw, 6px);
  height: clamp(-6px, 0.46875vw, 6px);
  background-color: #16A2A4;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__list .product_content__item::before {
    left: 2.1333333333vw;
    top: 2.6666666667vw;
    width: 1.6vw;
    height: 1.6vw;
  }
}
.single_product .product_content .product_content__feature .product_content__list .product_content__item .product_content__text {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8333333333;
  color: #2E3639;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__list .product_content__item .product_content__text {
    font-size: 3.2vw;
    line-height: 1.8333333333;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-24px, 1.875vw, 24px);
  width: 100%;
  margin-top: clamp(-40px, 3.125vw, 40px);
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_list {
    gap: 6.4vw;
    margin-top: 10.6666666667vw;
    margin-bottom: 10.6666666667vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item {
  width: 100%;
  padding: clamp(-24px, 1.875vw, 24px);
  background: #ffffff;
  border-radius: clamp(-8px, 0.625vw, 8px);
  list-style-type: none;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item {
    padding: 6.4vw 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-12px, 0.9375vw, 12px);
  width: 100%;
  padding-bottom: clamp(-16px, 1.25vw, 16px);
  border-bottom: 1px solid #D3D3D3;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_title {
    padding-bottom: 4.2666666667vw;
    border-bottom: 1px solid #D3D3D3;
    margin-bottom: 6.4vw;
    gap: 3.2vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_title .product_content__feature_title_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: clamp(-2px, 0.15625vw, 2px) clamp(-14px, 1.09375vw, 14px);
  background: #16A2A4;
  border-radius: clamp(-48px, 3.75vw, 48px);
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_title .product_content__feature_title_icon {
    font-size: 3.7333333333vw;
    padding: 0.5333333333vw 3.7333333333vw;
    border-radius: 10.6666666667vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_title .product_content__feature_title_icon::before {
  content: "";
}
.single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_title .product_content__feature_title_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_title .product_content__feature_title_text {
    font-size: 4.2666666667vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_item_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_item_text {
  width: clamp(-580px, 45.3125vw, 580px);
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_item_text {
    width: 100%;
    font-size: 4.2666666667vw;
  }
}
.single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_item_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-400px, 31.25vw, 400px);
  height: 100%;
  margin: auto;
}
.single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_item_img .product_content__feature_item_img_wrap {
  border: 1px solid #F2F5F8;
}
.single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_item_img .product_content__feature_item_img_wrap img {
  max-width: clamp(10px, 100%, clamp(-400px, 31.25vw, 400px) * 0.6);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__feature_list .product_content__feature_item .product_content__feature_item_img .product_content__feature_item_img_wrap img {
    max-width: 100%;
    width: 100%;
  }
}
.single_product .product_content .product_content__feature .product_content__lineup_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-12px, 0.9375vw, 12px);
}
.single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item {
  width: 100%;
  padding: clamp(-24px, 1.875vw, 24px);
  background: #ffffff;
  border-radius: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item {
    padding: 6.4vw 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-12px, 0.9375vw, 12px);
  width: 100%;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: clamp(-16px, 1.25vw, 16px);
  border-bottom: 1px solid #D3D3D3;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_title {
    font-size: 4.2666666667vw;
    padding-bottom: 4.2666666667vw;
    border-bottom: 1px solid #D3D3D3;
    margin-bottom: 6.4vw;
    gap: 3.2vw;
  }
}
.single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: clamp(-2px, 0.15625vw, 2px) clamp(-14px, 1.09375vw, 14px);
  background: #16A2A4;
  border-radius: clamp(-48px, 3.75vw, 48px);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_title span {
    font-size: 3.7333333333vw;
    padding: 0.5333333333vw 3.7333333333vw;
    border-radius: 10.6666666667vw;
  }
}
.single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
  }
}
.single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: clamp(-24px, 1.875vw, 24px);
  width: clamp(-600px, 46.875vw, 600px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_left {
    width: 100%;
  }
}
.single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_text {
    width: 100%;
    font-size: 4.2666666667vw;
  }
}
.single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-400px, 31.25vw, 400px);
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_img {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_img .product_content__lineup_detail_item_img_wrap {
  border: 1px solid #F2F5F8;
}
.single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_img .product_content__lineup_detail_item_img_wrap img {
  width: 100%;
  max-width: clamp(10px, 100%, clamp(-400px, 31.25vw, 400px) * 0.6);
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_detail_item .product_content__lineup_detail_item_img .product_content__lineup_detail_item_img_wrap img {
    max-width: 100%;
    width: 100%;
  }
}
.single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_btn {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  background: #16A2A4;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  padding: clamp(-16px, 1.25vw, 16px) clamp(-24px, 1.875vw, 24px);
  border: none;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__feature .product_content__lineup_detail .product_content__lineup_btn {
    font-size: 4.8vw;
    line-height: 7.2vw;
    padding: 4.2666666667vw 6.4vw;
    border-radius: 0.5333333333vw;
  }
}
.single_product .product_content .product_content__image {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__image {
    margin-bottom: 13.8666666667vw;
  }
}
.single_product .product_content .product_content__image .solution__video_list {
  margin-bottom: clamp(-40px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__image .solution__video_list {
    margin-bottom: 10.6666666667vw;
  }
}
.single_product .product_content .product_content__image .product_content__image_list_wrap {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__image .product_content__image_list_wrap {
    overflow-x: scroll;
  }
}
.single_product .product_content .product_content__image .product_content__image_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(-25px, 1.953125vw, 25px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__image .product_content__image_list {
    gap: 4.2666666667vw;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.single_product .product_content .product_content__image .product_content__image_list .product_content__image_list_item {
  width: clamp(-250px, 19.53125vw, 250px);
  height: auto;
  aspect-ratio: 1/1;
  background: #fcfcfc;
  position: relative;
  cursor: pointer;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  overflow: hidden;
  border: 1px solid #F2F5F8;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__image .product_content__image_list .product_content__image_list_item {
    width: 38.9333333333vw;
    border-radius: 0.5333333333vw;
    overflow: hidden;
  }
}
.single_product .product_content .product_content__image .product_content__image_list .product_content__image_list_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__image .product_content__image_list .product_content__image_list_item img {
    width: 100%;
    max-width: 100%;
  }
}
.single_product .product_content .product_content__specification .product_content__specification_inner {
  margin-bottom: clamp(-100px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__specification .product_content__specification_inner {
    margin-bottom: 24vw;
  }
}
.single_product .product_content .product_content__specification .product_content__specification_inner:last-child {
  margin-bottom: 0;
}
.single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content {
    gap: 6.4vw;
  }
}
.single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_text {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_text {
    font-size: 4.2666666667vw;
  }
}
.single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_link .has-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-220px, 17.1875vw, 220px);
  height: clamp(-76px, 5.9375vw, 76px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  overflow: hidden;
  border: 1px solid #2E3639;
  padding: clamp(-16px, 1.25vw, 16px);
  background: #ffffff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_link .has-img {
    width: 44.5333333333vw;
    height: 15.4666666667vw;
    border-radius: 0.5333333333vw;
    padding: 4.2666666667vw;
  }
}
.single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_link .has-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_link .has-img .product_kv__item_icon {
  position: absolute;
  top: clamp(-8px, 0.625vw, 8px);
  right: clamp(-8px, 0.625vw, 8px);
  width: clamp(-12px, 0.9375vw, 12px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_link .has-img .product_kv__item_icon {
    top: 2.1333333333vw;
    right: 2.1333333333vw;
    width: 3.2vw;
  }
}
.single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_link .no-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: clamp(-4px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_link .no-img {
    gap: 1.0666666667vw;
  }
}
.single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_link .no-img span {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_link .no-img span {
    font-size: 4.2666666667vw;
  }
}
.single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_table {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_table {
    font-size: 4.2666666667vw;
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 4.2666666667vw;
  }
}
.single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_table table {
  background: #ffffff;
}
.single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_table table td {
  border: 1px solid #D3D3D3;
}
.single_product .product_content .product_content__specification .product_content__specification_inner .product_content__specification_content .product_specification_img_area img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single_product .single_related {
  padding: clamp(-100px, 7.8125vw, 100px) 0;
}
@media screen and (max-width: 767px) {
  .single_product .single_related {
    padding: 21.3333333333vw 0;
  }
}
.single_product .js-image_modal_open {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 60%;
}
@media screen and (max-width: 767px) {
  .single_product .js-image_modal_open {
    max-width: 100%;
  }
}
.single_product .js-image_modal_open::before {
  content: "";
  position: absolute;
  bottom: clamp(-8px, 0.625vw, 8px);
  right: clamp(-8px, 0.625vw, 8px);
  width: clamp(-26px, 2.03125vw, 26px);
  height: clamp(-26px, 2.03125vw, 26px);
  background: url(../../image/common/icon_zoom.svg) no-repeat center center;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .single_product .js-image_modal_open::before {
    width: 6.9333333333vw;
    height: 6.9333333333vw;
    width: 6.9333333333vw;
    height: 6.9333333333vw;
    border-radius: 0.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .single_product .js-table_scroll_sp_wrap {
    width: 100%;
    overflow-x: scroll;
  }
}
.single_product table {
  table-layout: fixed;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .single_product table {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
    table-layout: auto;
    word-break: unset;
  }
}

.single_case.technology_blog .single_top {
  padding-bottom: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .single_case.technology_blog .single_top {
    padding-bottom: 14.9333333333vw;
  }
}
.single_case.technology_blog .inner .single_case__points {
  display: none;
}
.single_case .single_top {
  padding-bottom: clamp(-240px, 18.75vw, 240px);
}
@media screen and (max-width: 767px) {
  .single_case .single_top {
    padding-bottom: 123.7333333333vw;
  }
}
.single_case .single_content {
  width: 100%;
  background: #F2F5F8;
  padding: clamp(-100px, 7.8125vw, 100px) 0;
}
@media screen and (max-width: 767px) {
  .single_case .single_content {
    padding: 21.3333333333vw 0;
  }
}
.single_case .single_content .inner .single_case__points {
  background: #CFEDFF;
  padding: clamp(-56px, 4.375vw, 56px) clamp(-80px, 6.25vw, 80px) clamp(-80px, 6.25vw, 80px);
  margin-bottom: clamp(-80px, 6.25vw, 80px);
  margin-top: calc(clamp(-240px, 18.75vw, 240px) * -1);
  position: relative;
  border-radius: clamp(-4px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .single_case .single_content .inner .single_case__points {
    padding: 8.5333333333vw 6.4vw 10.6666666667vw;
    margin-bottom: 14.9333333333vw;
    margin-top: -134.4vw;
    border-radius: 1.0666666667vw;
  }
}
.single_case .single_content .inner .single_case__points .single_case__points_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-40px, 3.125vw, 40px);
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .single_case .single_content .inner .single_case__points .single_case__points_title {
    font-size: 6.4vw;
    margin-bottom: 6.4vw;
  }
}
.single_case .single_content .inner .single_case__points .single_case__points_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .single_case .single_content .inner .single_case__points .single_case__points_list {
    gap: 4.2666666667vw;
  }
}
.single_case .single_content .inner .single_case__points .single_case__points_list .single_case__points_item {
  width: 100%;
  padding: clamp(-24px, 1.875vw, 24px) clamp(-30px, 2.34375vw, 30px);
  background: #ffffff;
  border-left: 4px solid #2285C2;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .single_case .single_content .inner .single_case__points .single_case__points_list .single_case__points_item {
    padding: 5.3333333333vw 6.4vw;
    border-left: 4px solid #2285C2;
    border-radius: 0.5333333333vw;
  }
}
.single_case .single_content .inner .single_case__points .single_case__points_list .single_case__points_item .single_case__item_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  margin-bottom: clamp(-12px, 0.9375vw, 12px);
  color: #2285C2;
}
@media screen and (max-width: 767px) {
  .single_case .single_content .inner .single_case__points .single_case__points_list .single_case__points_item .single_case__item_title {
    font-size: 4.2666666667vw;
    margin-bottom: 3.2vw;
  }
}
.single_case .single_content .inner .single_case__points .single_case__points_list .single_case__points_item .single_case__item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .single_case .single_content .inner .single_case__points .single_case__points_list .single_case__points_item .single_case__item_list {
    gap: 2.1333333333vw;
  }
}
.single_case .single_content .inner .single_case__points .single_case__points_list .single_case__points_item .single_case__item_list .single_case__item_text {
  position: relative;
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
  padding-left: clamp(-16px, 1.25vw, 16px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .single_case .single_content .inner .single_case__points .single_case__points_list .single_case__points_item .single_case__item_list .single_case__item_text {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
    padding-left: 4vw;
  }
}
.single_case .single_content .inner .single_case__points .single_case__points_list .single_case__points_item .single_case__item_list .single_case__item_text::before {
  content: "";
  display: block;
  width: clamp(-4px, 0.3125vw, 4px);
  height: clamp(-4px, 0.3125vw, 4px);
  background-color: #2E3639;
  border-radius: 50%;
  position: absolute;
  left: clamp(-5px, 0.390625vw, 5px);
  top: clamp(-12px, 0.9375vw, 12px);
  margin: auto;
}
@media screen and (max-width: 767px) {
  .single_case .single_content .inner .single_case__points .single_case__points_list .single_case__points_item .single_case__item_list .single_case__item_text::before {
    width: 0.8vw;
    height: 0.8vw;
    left: 1.3333333333vw;
    top: 3.2vw;
  }
}
.single_case .single_case__contents {
  margin-bottom: clamp(-80px, 6.25vw, 80px);
}
.single_case .single_case__contents h2 {
  font-family: "Noto Sans JP";
  font-size: clamp(-24px, 1.875vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  margin-bottom: clamp(-32px, 2.5vw, 32px);
  padding-left: clamp(-20px, 1.5625vw, 20px);
  position: relative;
  margin-top: clamp(-80px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .single_case .single_case__contents h2 {
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    padding-left: 4.2666666667vw;
    margin-bottom: 6.4vw;
    margin-top: 10.6666666667vw;
  }
}
.single_case .single_case__contents h2:first-of-type {
  margin-top: 0;
}
.single_case .single_case__contents h2::before {
  content: "";
  display: block;
  width: clamp(-6px, 0.46875vw, 6px);
  height: 100%;
  background-color: #2285C2;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .single_case .single_case__contents h2::before {
    width: 1.0666666667vw;
    height: 100%;
  }
}
.single_case .single_case__contents h3 {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
  margin-bottom: clamp(-32px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .single_case .single_case__contents h3 {
    font-size: 4.8vw;
    line-height: 1.5;
    margin-bottom: 6.4vw;
  }
}
.single_case .single_case__contents p {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .single_case .single_case__contents p {
    font-size: 4.2666666667vw;
    line-height: 1.625;
  }
}
@media screen and (max-width: 767px) {
  .single_case .single_case__contents {
    margin-bottom: 10.6666666667vw;
  }
}
.single_case .single_related {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .single_case .single_related {
    padding: 21.3333333333vw 0;
  }
}

.single_news .news_wrapper {
  padding: clamp(-100px, 7.8125vw, 100px) 0 clamp(-120px, 9.375vw, 120px);
  background: #F2F5F8;
}
@media screen and (max-width: 767px) {
  .single_news .news_wrapper {
    padding: 14.9333333333vw 0 21.3333333333vw;
  }
}
.single_news .news_wrapper .news_content__top_inner_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(-12px, 0.9375vw, 12px);
  margin-bottom: clamp(-28px, 2.1875vw, 28px);
}
@media screen and (max-width: 767px) {
  .single_news .news_wrapper .news_content__top_inner_left {
    gap: 3.2vw;
    margin-bottom: 6.9333333333vw;
  }
}
.single_news .news_wrapper .news_content__top_inner_left .news_content__date {
  font-family: Lato;
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .single_news .news_wrapper .news_content__top_inner_left .news_content__date {
    font-size: 4.2666666667vw;
  }
}
.single_news .news_wrapper .news_content__top_inner_left .news_content__category {
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #2285C2;
  background: #CFEDFF;
  padding: clamp(-2px, 0.15625vw, 2px) clamp(-10px, 0.78125vw, 10px);
  border-radius: clamp(-16px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .single_news .news_wrapper .news_content__top_inner_left .news_content__category {
    font-size: 3.2vw;
    padding: 0.5333333333vw 2.6666666667vw;
    border-radius: 4.2666666667vw;
  }
}
.single_news .news_wrapper .news_content__title {
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4375;
  color: #2E3639;
  margin-bottom: clamp(-80px, 6.25vw, 80px);
  padding-bottom: clamp(-40px, 3.125vw, 40px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .single_news .news_wrapper .news_content__title {
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    margin-bottom: 10.6666666667vw;
    padding-bottom: 8.5333333333vw;
  }
}
.single_news .news_wrapper .news_content__title::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .single_news .news_wrapper .news_content__title::before {
    height: 0.5333333333vw;
  }
}
.single_news .news_wrapper .news_content__title::after {
  content: "";
  display: block;
  width: clamp(-117px, 9.140625vw, 117px);
  height: 2px;
  background: #2285C2;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .single_news .news_wrapper .news_content__title::after {
    width: 12.2666666667vw;
    height: 0.5333333333vw;
  }
}

.estimate__modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.estimate__modal.-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.estimate__modal .estimate__modal_overlay {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.estimate__modal .estimate__modal_inner {
  width: clamp(-812px, 63.4375vw, 812px);
  background: #F2F5F8;
  border-radius: clamp(-4px, 0.3125vw, 4px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner {
    width: 91.4666666667vw;
    height: 90svh;
    border-radius: 1.0666666667vw;
    overflow: scroll;
    padding-bottom: 6.4vw;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_close {
  width: clamp(-18px, 1.40625vw, 18px);
  height: clamp(-18px, 1.40625vw, 18px);
  position: absolute;
  top: clamp(-20px, 1.5625vw, 20px);
  right: clamp(-20px, 1.5625vw, 20px);
  border: none;
  background: none;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_close {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    top: 4.2666666667vw;
    right: 4.2666666667vw;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_close span {
  display: block;
  width: clamp(-24px, 1.875vw, 24px);
  height: clamp(-2px, 0.15625vw, 2px);
  background: #2E3639;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_close span {
    width: 4.8vw;
    height: 0.5333333333vw;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_close span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.estimate__modal .estimate__modal_inner .estimate__modal_close span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.estimate__modal .estimate__modal_inner .estimate__modal_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 clamp(-40px, 3.125vw, 40px);
  padding: clamp(-48px, 3.75vw, 48px) clamp(-48px, 3.75vw, 48px) clamp(-41px, 3.203125vw, 41px) clamp(-48px, 3.75vw, 48px);
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.3333333333vw;
    padding: 10.1333333333vw 6.4vw 10.1333333333vw 6.4vw;
  }
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6.4vw;
  }
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_top .estimate__modal_content_title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 44vw;
    font-family: "Noto Sans JP";
    font-size: 4.2666666667vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #2E3639;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_left {
  width: clamp(-168px, 13.125vw, 168px);
  overflow: hidden;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  border: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_left {
    width: 28vw;
    border-radius: 0.5333333333vw;
    border: 1px solid #D3D3D3;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_left img {
  width: 100%;
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right {
  width: clamp(-508px, 39.6875vw, 508px);
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right {
    width: 100%;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_title {
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_title {
    font-size: 4.2666666667vw;
    margin-bottom: 0;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item {
  width: clamp(-508px, 39.6875vw, 508px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(-20px, 1.5625vw, 20px) 0;
  border-bottom: 1px solid #D3D3D3;
  /* カスタム数値入力コントロール */
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.1333333333vw 0;
    padding: 5.3333333333vw 0;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item:first-child {
  padding-top: 0;
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item p {
  font-family: "Noto Sans JP";
  font-size: clamp(-16px, 1.25vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: clamp(-16px, 1.25vw, 16px);
  width: clamp(-165px, 12.890625vw, 165px);
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item p {
    font-size: 4.2666666667vw;
    margin-right: 0;
    width: 100%;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item p span {
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item p span {
    display: inline-block;
    font-size: 3.2vw;
    padding-left: 3.2vw;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item input {
  border: none;
  height: clamp(-42px, 3.28125vw, 42px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  font-size: clamp(-16px, 1.25vw, 16px);
  text-align: center;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item input {
    height: 11.2vw;
    border-radius: 0.5333333333vw;
    font-size: 4.2666666667vw;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item input.p-num {
  width: clamp(-315px, 24.609375vw, 315px);
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item input.p-num {
    width: 100%;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item input.p-certificate {
  height: auto;
  margin-right: clamp(-10px, 0.78125vw, 10px);
  margin-left: 0;
  accent-color: #16A2A4;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item input.p-certificate {
    margin-right: 2.6666666667vw;
    margin-left: 0;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item input.p-date {
  width: clamp(-148px, 11.5625vw, 148px) !important;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item input.p-date {
    width: 78.6666666667vw !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item input.p-date-end {
  width: clamp(-150px, 11.71875vw, 150px) !important;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item input.p-date-end {
    width: 73.0666666667vw !important;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item input.p-days {
  width: clamp(-200px, 15.625vw, 200px);
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item input.p-days {
    width: 66.9333333333vw;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .p-date-inner, .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .p-days-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .p-date-span {
  font-size: clamp(-16px, 1.25vw, 16px);
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  display: block;
  margin: clamp(-8px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .p-date-span {
    font-size: 4.2666666667vw;
    margin: 0 3.2vw 0 0;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .p-days-span {
  font-size: clamp(-16px, 1.25vw, 16px);
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
  display: block;
  margin-left: clamp(-12px, 0.9375vw, 12px);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .p-days-span {
    font-size: 4.2666666667vw;
    margin-left: 3.2vw;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input input {
  border: none;
  background: #ffffff;
  color: #2E3639;
  text-align: center;
  height: clamp(-42px, 3.28125vw, 42px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  font-size: clamp(-16px, 1.25vw, 16px);
  -moz-appearance: textfield !important;
  -webkit-appearance: textfield !important;
          appearance: textfield !important;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input input {
    height: 11.2vw;
    border-radius: 0.5333333333vw;
    font-size: 4.2666666667vw;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input input::-webkit-outer-spin-button, .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input input.p-num {
  width: clamp(-248px, 19.375vw, 248px);
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input input.p-num {
    width: 66.1333333333vw;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input input.p-days {
  width: clamp(-200px, 15.625vw, 200px);
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input input.p-days {
    width: 53.3333333333vw;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input .number-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-38px, 2.96875vw, 38px);
  height: clamp(-42px, 3.28125vw, 42px);
  border: none;
  background: #ffffff;
  color: #2E3639;
  text-align: center;
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-weight: 400;
  cursor: pointer;
  border-radius: clamp(-2px, 0.15625vw, 2px);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input .number-btn {
    width: 5.3333333333vw;
    height: 11.2vw;
    font-size: 4.8vw;
    border-radius: 0.5333333333vw;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input .number-btn:hover:not(:disabled) {
  background: #F2F5F8;
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input .number-btn:disabled {
  opacity: 1;
  cursor: not-allowed;
  color: #A1A1A1;
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input .number-btn.minus-btn {
  border-radius: clamp(-2px, 0.15625vw, 2px) 0 0 clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input .number-btn.minus-btn {
    border-radius: 0.5333333333vw 0 0 0.5333333333vw;
  }
}
.estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input .number-btn.plus-btn {
  border-radius: 0 clamp(-2px, 0.15625vw, 2px) clamp(-2px, 0.15625vw, 2px) 0;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .estimate__modal_content .estimate__modal_content_right .estimate__modal_list .estimate__modal_item .custom-number-input .number-btn.plus-btn {
    border-radius: 0 0.5333333333vw 0.5333333333vw 0;
  }
}
.estimate__modal .estimate__modal_inner .p-certificate-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .p-certificate-inner {
    gap: 6.4vw;
  }
}
.estimate__modal .estimate__modal_inner .p-certificate-inner .estimate__modal_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(-16px, 1.25vw, 16px);
  font-weight: 400;
  line-height: normal;
  color: #2E3639;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_inner .p-certificate-inner .estimate__modal_label {
    font-size: 4.2666666667vw;
  }
}
.estimate__modal .estimate__modal_button {
  width: 100%;
  padding: clamp(-32px, 2.5vw, 32px) 0;
  border-top: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_button {
    padding: 6.4vw 0 0;
  }
}
.estimate__modal .estimate__modal_button .estimate__modal_button_submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-468px, 36.5625vw, 468px);
  height: clamp(-56px, 4.375vw, 56px);
  background: #16A2A4;
  color: #ffffff;
  margin: 0 auto;
  font-family: "Noto Sans JP";
  font-size: clamp(-18px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
  border-radius: clamp(-2px, 0.15625vw, 2px);
}
@media screen and (max-width: 767px) {
  .estimate__modal .estimate__modal_button .estimate__modal_button_submit {
    width: 78.6666666667vw;
    height: 14.9333333333vw;
    font-size: 4.2666666667vw;
    border-radius: 0.5333333333vw;
  }
}

.estimate__modal_link {
  position: fixed;
  top: clamp(-152px, 11.875vw, 152px);
  right: clamp(-60px, 4.6875vw, 60px);
  z-index: 98;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-174px, 13.59375vw, 174px);
  height: clamp(-58px, 4.53125vw, 58px);
  border-radius: clamp(-2px, 0.15625vw, 2px);
  border: 2px solid #16A2A4;
  color: #16A2A4;
  font-family: "Noto Sans JP";
  font-size: clamp(-14px, 1.09375vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  -webkit-box-shadow: 0 clamp(-4px, 0.3125vw, 4px) clamp(-4px, 0.3125vw, 4px) clamp(-2px, 0.15625vw, 2px) rgba(0, 0, 0, 0.06);
          box-shadow: 0 clamp(-4px, 0.3125vw, 4px) clamp(-4px, 0.3125vw, 4px) clamp(-2px, 0.15625vw, 2px) rgba(0, 0, 0, 0.06);
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .estimate__modal_link {
    top: auto;
    right: 6.9333333333vw;
    bottom: 6.9333333333vw;
    width: 40vw;
    height: 15.4666666667vw;
    border-radius: 0.5333333333vw;
    font-size: 3.2vw;
    -webkit-box-shadow: 0 1.0666666667vw 1.0666666667vw 0.5333333333vw rgba(0, 0, 0, 0.06);
            box-shadow: 0 1.0666666667vw 1.0666666667vw 0.5333333333vw rgba(0, 0, 0, 0.06);
  }
}
.estimate__modal_link .estimate__modal_link_icon {
  width: clamp(-24px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .estimate__modal_link .estimate__modal_link_icon {
    width: 6.4vw;
  }
}
.estimate__modal_link .estimate__modal_link_icon img {
  width: 100%;
}
.estimate__modal_link .estimate__modal_link_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(-29px, 2.265625vw, 29px);
  height: clamp(-29px, 2.265625vw, 29px);
  background: #16A2A4;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  font-family: Lato;
  font-size: clamp(-12px, 0.9375vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  position: absolute;
  top: calc(clamp(-12px, 0.9375vw, 12px) * -1);
  right: calc(clamp(-12px, 0.9375vw, 12px) * -1);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .estimate__modal_link .estimate__modal_link_num {
    top: -3.2vw;
    right: -3.2vw;
    width: 7.7333333333vw;
    height: 7.7333333333vw;
    font-size: 3.2vw;
  }
}
.estimate__modal_link .estimate__modal_link_num.-active {
  -webkit-animation: fadeIn 0.8s ease-in-out 0.4s forwards;
          animation: fadeIn 0.8s ease-in-out 0.4s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}