/*--------------*/
/*FONT*/
/*Rule*/
/*BUTTON*/
/*FV*/
/*ABOUT*/
/*SOLUTION*/
/*STRENGTH*/
/*FORM*/
/*BUTTON*/
/*個別ページ*/
/*--------------*/

/*FONT*/
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.noto-sans-jp500 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.noto-sans-jp-400 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.manrope {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.sicuveiw {
  font-family: "sicuveiw-dsp", sans-serif;
  font-weight: 600;
  font-style: normal;
}
/*END*/

/*Rule*/
* {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	line-height: 1.8em;
}
body {
	width: 100%;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
/*END*/

/*BUTTON*/
.btn-blue {
	background: linear-gradient(to right, #0045b3, #0459e0);
	transition: background 0.2s;
}
.btn-black-mini {
	background: url(images/arrow-right-w.svg) no-repeat right 24px center #000;
	background-size: 24px;
	transition: 0.2s;
}
.btn-black-mini:hover {
	background: url(images/arrow-right-w.svg) no-repeat right 16px center #1D4ED8;
	background-size: 24px;
	transition: 0.2s;
}
.btn-black-big {
	background: url(images/arrow_btn_big.png) no-repeat right 32px center #000;
	background-size: auto 100%;
	transition: background 0.2s;
}
.btn-black-big:hover {
	background: url(images/arrow_btn_big.png) no-repeat right 32px center #1D4ED8;
	background-size: auto 100%;
	transition: background 0.2s;
}

/*END*/

/*FV*/
.fv {
	background: linear-gradient(to top, #f2f4f5, #f2f4f5);
}
.fv_inside {
	background: url(images/eng_ttl.png) no-repeat center bottom;
	background-size: 100%;
}
.fv_main {
	background: url(images/fv.png) no-repeat right 10% center;
	background-size: 480px;
	padding-right: 560px;
}
/*END*/

/*ABOUT*/
.fukidashi {
  background: url(images/hand.png) no-repeat left 24px center #1D4ED8;
  background-size: 48px;
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.fukidashi::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 12px 8px 12px 0;
  border-color: transparent #1D4ED8 transparent transparent;
  translate: -100% -50%;
}
/*END*/

/*SOLUTION*/
.bg-img01 {
	background: url(images/city.png) no-repeat bottom center;
	background-size: 80%;
}
.gradient-text {
  background: linear-gradient(45deg, #0044b1, #0459e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*END*/
/*STRENGTH*/
.bg-img02 {
	background: url(images/bg-img2.png) no-repeat bottom center #f3f4f6;
	background-size: 80%;
}
/*END*/

/*FORM*/
/* ===== フォーム共通スタイル ===== */

/* 基本 input / textarea */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #d1d5db; /* 薄いグレー */
  border-radius: 0.5rem;      /* 角丸 */
  background-color: #f9f8f6;
  color: #111827;             /* ダークテキスト */
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

/* focus 時のスタイル */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #3b82f6;   /* ブルー */
  box-shadow: 0 0 0 1px #3b82f6;
}

/* textarea 固有 */
textarea {
  height: 120px;        /* 高さをある程度確保 */
  resize: none !important;         /* 縦方向のみリサイズ可能 */
  padding: 0.5rem 0.75rem !important;
}

/* radio ボタン */
input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: #3b82f6;    /* モダンブラウザで色変更 */
  margin-right: 0.5rem;
  vertical-align: middle;
  cursor: pointer;
}

/* ラベルとの組み合わせ */
input[type="radio"] + label {
  cursor: pointer;
  font-size: 14px;
  color: #111827;
}

input[type="submit"] {
  display: inline-block;
  width: 100%;
  max-width: 360px;
  padding: 1rem 3rem;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  user-select: none;
  transition:
	background-color 0.25s ease,
	color 0.25s ease,
	transform 0.1s ease,
	box-shadow 0.2s ease;
  /* 通常時（黒） */
  background-color: #111;       /* 黒 */
  color: #fff;
}

/* ===== Hover（青へ変化） ===== */
input[type="submit"]:hover {
  background-color: #2563eb;    /* blue-600 */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* ===== Active（クリック中） ===== */
input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ===== Focus（Tab移動） ===== */
input[type="submit"]:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow:
	0 0 0 4px rgba(37,99,235,0.25),
	0 1px 3px rgba(0,0,0,0.08);
}

/* ===== Disabled ===== */
input[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #9ca3af;
  box-shadow: none;
}

/* 中央配置用 */

.check_serv {
	display: flex;             /* Flexboxを有効にする */
	flex-direction: row;       /* 要素を横並びにする（columnで縦） */
	flex-wrap: wrap;         /* 折り返さない（wrapで折り返す） */
	justify-content: flex-start; /* 主軸方向の整列（center, space-betweenなど） */
	align-items: stretch;      /* 交差軸方向の整列（centerなど） */
}
.check-box {
  cursor: pointer;
}

.check-box input {
  display: none;
}
.wpcf7-list-item {
	margin: 0 16px 0 0 !important;
}
.check-box .wpcf7-list-item {
	margin: 0 16px 0 0 !important;
	display: block;
}

.check-box .wpcf7-list-item-label {
	font-size: 12px !important;
	width: 142px;
	display: block;
	height: 180px;
}

.check-box input + .wpcf7-list-item-label:hover {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.check-box input + .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: relative;
  top: 0.25em;
  margin: 0 0 8px 0;
  width: 142px;
  height: 142px;
  border-radius: 16px;
  background-color: #eceff2;
}

.check-box .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label::before {
  background-image: url("images/check1.png");
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat, no-repeat;

}
.check-box .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label::before {
  background-image: url("images/check2.png");
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat, no-repeat;

}
.check-box .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label::before {
  background-image: url("images/check3.png");
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat, no-repeat;

}
.check-box .wpcf7-list-item:nth-child(4) .wpcf7-list-item-label::before {
  background-image: url("images/check4.png");
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat, no-repeat;

}
.check-box .wpcf7-list-item:nth-child(5) .wpcf7-list-item-label::before {
  background-image: url("images/check5.png");
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat, no-repeat;

}


.check-box input:checked + .wpcf7-list-item-label:before {
  background-color: #fbc818;
}



.wpcf7-not-valid-tip {
	color: #dc3232;
	font-size: 0.7em !important;
	font-weight: normal;
	display: block;
}

.select-wrap {
  position: relative;
  display: inline-block;
}

/* select本体 */
.select-wrap select {
  margin-top: 16px !important;
  margin-bottom: 8px !important;
  appearance: none;
  min-width: 160px;
  height: 2.8em;
  padding: 4px 32px 4px 8px !important; /* ← 右側余白を広げる */
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}

/* ▼矢印 */
.select-wrap::after {
  content: "";
  position: absolute;
  pointer-events: none;
  right: 10px;
  top: 57%;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateY(-50%);
}




/*END*/
/*個別ページ*/
.entry-content p {
  line-height: 2em;
  margin-bottom: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.entry-content ol li {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400 !important;
  font-style: normal;
}

.entry-content h2 {
  font-size: 24px;
  margin: 40px 0 24px 0;
  border-bottom: 1px solid #00c;
  padding-bottom: 8px;
}
.entry-content h3 {
  font-size: 20px;
  margin: 24px 0 24px 0;
  padding-bottom: 8px;
  color: #00a;
}

.entry-content h4 {
  margin-left: 24px;
}

.entry-content strong {
  color: #009;
  font-size: 18px;
}
.entry-content ol li {

    list-style-type: decimal !important;     /* 数字（1,2,3...）を明示 */
    list-style-position: inside !important;  /* 内側に */
    margin-left: 0 !important;
    padding-left: 0 !important;
    margin-bottom: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400 !important;
    font-style: normal;

}
.entry-content ul {
  list-style-type: lower-alpha;
  padding: 16px;
  background: #f4f4f4;
  border-radius: 8px;
  margin-top: 16px;
  margin-left: 40px;
  margin-bottom: 32px;
}

.entry-content ul li {

    list-style-type: lower-alpha !important;     /* 数字（1,2,3...）を明示 */
    list-style-position: inside !important;  /* 内側に */
    margin-left: 0 !important;
    padding-left: 0 !important;
    margin: 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400 !important;
    font-style: normal;

}

.entry-content a {
  font-weight: 400 !important;
  font-style: normal;
} 

/*END*/



@media (max-width: 1350px) {
  /*FV*/
  .fv_main {
      background: url(images/fv.png) no-repeat right center;
      background-size: 480px;
      padding-right: 520px;
  }
}

@media (max-width: 1280px) {
  /*FV*/
  .fv_main {
      background: url(images/fv.png) no-repeat right center;
      background-size: 42%;
      padding-right: 48%;
  }
}

@media (max-width: 1024px) {
  /*ABOUT*/
  .fukidashi {
    background: url(images/hand_b.png) no-repeat left 20px center #1D4ED8;
    background-size: 28px;
    position: relative;
    display: inline-block;
    margin-left: 0px;
    text-align: left;
  }
  
  .fukidashi::after {
    content: "";
    position: absolute;
    top: 101%;
    left: 50%;
    border-style: solid;
    border-width: 12px 8px 12px 0;
    border-color: transparent #1D4ED8 transparent transparent;
    translate: -100% -50%;
    transform: rotate(270deg); /* 時計回り45度 */
  }
  .bg-img01 {
      background: url(images/city.png) no-repeat bottom right;
      background-size: 50%;
  }
  .bg-img02 {
      background: none;
      background-size: 80%;
  }
  /*END*/
}

@media (max-width: 768px) {
  .fv_main {
      background: url(images/fv.png) no-repeat center top 128px;
      background-size: 320px;
      padding-right: 0;
  }
  .fv_inside {
      background: url(images/eng_ttl.png) no-repeat center bottom;
      background-size: 100%;
  }
}




@media (max-width: 640px) {
  
.fv_main {
    background: url(images/fv.png) no-repeat center top 128px;
    background-size: 180px;
    padding-right: 0;
}

.height-safe {
  height: calc(var(--real-vh) * 100);
}


.btn-black-big {
    background: url(images/arrow-right-w.svg) no-repeat right 24px center #000;
    background-size: 24px;
    transition: background 0.2s;
}
.btn-black-big:hover {
  background: url(images/arrow-right-w.png) no-repeat right 24px center #1D4ED8;
  background-size: 24px;
  transition: background 0.2s;
}




.check-box input + .wpcf7-list-item-label::before {
  display: none;
}

.wpcf7-list-item-label {
  margin-right: 16px;
  
}
input[type="radio"] {

    margin-right: 0.1rem;

}

.check-box .wpcf7-list-item-label {
  font-size: 14px !important;
  width: auto;
  display: inline-block;
  height: auto;
  margin-left: 4px;
  position: relative;
  bottom: 2px;
  
}
.wpcf7-list-item {
  margin: 0 0 0 0 !important;
}
.check-box .wpcf7-list-item {
  margin: 0 0 0 0 !important;
  display: block;
}


.check-box input + .wpcf7-list-item-label::before {
  display: none;
}

.check-box .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label::before {
  display: none;

}
.check-box .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label::before {
  display: none;

}
.check-box .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label::before {
  display: none;

}
.check-box .wpcf7-list-item:nth-child(4) .wpcf7-list-item-label::before {
  display: none;

}
.check-box .wpcf7-list-item:nth-child(5) .wpcf7-list-item-label::before {
  display: none;
}


.check-box input:checked + .wpcf7-list-item-label:before {
  display: none;
}

.check-box input {
    display: inline-block;
}
.check_serv {
    display: inline-block;
}






}