@charset "utf-8";
/* CSS Document */
.flow-navi {
  position: fixed;
  top: 60px;
  right: 0;
  z-index: 101;
}
.flow-navi {
  position: fixed;
  top: 60px;
  right: 0;
  z-index: 101;
}
@media only screen and (max-width: 1024px) {
  .flow-navi {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .flow-navi ul {
    display: flex;
  }
}
.flow-navi ul li {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .flow-navi ul li {
    margin-bottom: 0;
  }
}
.flow-navi ul li img {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .flow-navi ul li img {
    width: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  #footer {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  #footer {
    padding-bottom: 100px;
  }
}
.border_box {
  border: 1px solid #ACACAC;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}
#main .pa0 {
  padding: 0;
}
#main .pa05 {
  padding: 5px;
}
#main .pa10 {
  padding: 10px;
}
/*テーブル幅指定*/
table.normal th {
  padding: 15px !important;
}
table.normal td {
  padding: 15px !important;
  font-size: 16px !important;
  -webkit-text-size-adjust: 100%;
}
.container {
  max-width: 980px;
  margin: auto;
  width: 100%;
}
/*-----------------------------------
ヘッダー
-----------------------------------*/
#header .header_title {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}
.logo_wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo_wrap .logo {
  width: 380px;
  height: auto;
}
.logo_wrap .logo img {
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.logo_wrap .logo:hover {
  opacity: 0.7;
}
.logo_wrap .tel {
  font-size: 3.2rem;
  text-align: center;
  font-weight: 700;
  transition: 0.5s;
  color: #15195c;
}
.logo_wrap .tel:hover {
  transform: translateY(3px);
}
.logo_wrap .tel .small {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
}
.header_btn {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.header_title .header_btn .btn {
  display: block;
  background-color: #0066cc;
  color: #fff;
  width: 240px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  height: 55px;
  border-radius: 8px;
  border: 2px solid #0066cc;
  transition: all 0.3s;
  line-height: 2.5;
}
.header_title .header_btn .btn:first-child {
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header_title .header_btn .btn:first-child::before {
  content: '24時間受付';
  display: block;
  font-size: 14px;
  padding-bottom: 5px;
}
.header_title .header_btn .btn:hover {
  transform: translateY(3px);
  color: #0066cc;
  background-color: #fff;
}
.header_title .header_btn .line {
  display: block;
  width: 55px;
  height: auto;
  aspect-ratio: 1 / 1;
  transition: all 0.3s;
}
.header_title .header_btn .line img {
  width: 100%;
  height: auto;
}
.header_title .header_btn .line:hover {
  transform: translateY(3px);
}
@media screen and (max-width: 1024px) {
  .header_title {
    flex-direction: unset;
  }
  .header_title .tel {
    display: none;
  }
  .header_title .header_btn {
    display: none;
  }
  .logo_wrap {
    display: contents;
  }
  .logo_wrap .logo {
    max-width: 400px;
    width: 80%;
  }
}
/*-----------------------------------
PCとスマホでCTAが変わるボタン
-----------------------------------*/
.cta_wrap {
  box-sizing: border-box;
  border: 3px solid #000;
  text-align: center;
  max-width: 700px;
  width: 100%;
  margin: 40px auto 0 auto;
}
#main .cta_wrap .catch {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  background-color: #000;
  margin-bottom: 0;
  padding: 5px;
}
.cta_wrap > div {
  padding: 2rem;
}
#main .cta_wrap > div p {
  font-weight: 700;
  font-size: 18px;
  line-height: 2.4;
}
#main .cta_wrap img {
  width: 300px;
  height: auto;
}
#main .cta_wrap a {
  width: 100%;
  max-width: 350px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 20px auto 0 auto;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  gap: 5px;
}
#main .cta_wrap a::after {
  content: '';
  display: inline-block;
  background-image: url("../images/arrow_down.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 98%;
  max-width: 20px;
  aspect-ratio: 1/1;
  transform: rotate(-90deg);
}
#main .cta_wrap a:hover {
  animation: bounce 0.5s ease;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-12px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
#main .cta_wrap .for_pc {
  background-color: #F59020;
}
#main .cta_wrap .for_sp {
  background-color: #06C755;
  display: none;
}
@media screen and (max-width: 650px) {
  #main .cta_wrap .for_pc {
    display: none;
  }
  #main .cta_wrap .for_sp {
    display: flex;
  }
  #main .cta_wrap .catch {
    font-size: 16px;
  }
  #main .cta_wrap > div p {
    font-size: 16px;
  }
  #main .cta_wrap img {
    width: 250px;
  }
  #main .cta_wrap a {
    max-width: 280px;
  }
}
/*-----------------------------------
既存の赤と青のボタン調整
-----------------------------------*/
#main .btnBlue, #main .btnRed {
  max-width: 600px;
  width: 70%;
  padding: 15px 5px;
  border-radius: 999px;
  font-weight: 700;
  box-sizing: border-box;
  transition: 0.3s;
  margin: 0 auto 20px auto;
}
#main .btnBlue {
  background-color: #0070c9;
  color: #fff;
}
#main .btnBlue:hover {
  background-color: #fff;
  color: #0070c9 !important;
}
#main .btnRed {
  background-color: #CD0B0E;
  color: #fff !important;
}
#main .btnRed:hover {
  background-color: #fff;
  color: #CD0B0E !important;
}
@media screen and (max-width: 650px) {
  #main .btnBlue, #main .btnRed {
    max-width: 400px;
    width: 90%;
  }
}
/*-----------------------------------
WPボタン
-----------------------------------*/
#main .wp_btn {
  max-width: 900px;
  width: 100%;
  margin: 6rem auto 0 auto;
  display: flex;
  gap: 3rem;
  padding-bottom: 1rem;
}
#main .wp_btn > div {
  box-sizing: border-box;
  border: 3px solid #f1ab3e;
  border-radius: 10px;
  position: relative;
  flex: 1;
  transition: 0.3s;
}
#main .wp_btn > div > a {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#main .wp_btn > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
#main .wp_btn > div:last-of-type {
  border: 3px solid #10005e;
}
#main .wp_btn > div::before {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 50px;
  height: 50px;
}
#main .wp_btn > div:first-of-type::before {
  background-image: url("../images/common/glass_icon02.png");
}
#main .wp_btn > div:last-of-type::before {
  background-image: url("../images/common/noto_icon.png");
}
#main .wp_btn p {
  margin-bottom: 0;
  font-weight: 700;
}
#main .wp_btn .ttl {
  font-size: 20px;
  padding: 2rem 1rem 1rem 1rem;
  background-color: #f1ab3e;
  color: #fff;
  text-align: center;
}
#main .wp_btn div:last-of-type .ttl {
  background-color: #10005e;
}
#main .wp_btn .txt {
  font-size: 16px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}
#main .wp_btn .txt::before {
  content: '';
  width: 30px;
  height: 30px;
  background: #f1ab3e;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
#main .wp_btn .txt::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 32px;
  bottom: 0;
  margin: auto;
}
#main .wp_btn div:last-of-type .txt::before {
  background: #10005e;
}
@media screen and (max-width: 980px) {
  #main .wp_btn {
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    gap: 4rem;
  }
}
@media screen and (max-width: 650px) {
  #main .wp_btn {
    gap: 3rem;
  }
  #main .wp_btn .ttl {
    padding: 15px 5px 5px 5px;
  }
  #main .wp_btn > div::before {
    width: 45px;
    height: 45px;
  }
  #main .wp_btn .txt::before {
    width: 25px;
    height: 25px;
    right: 10px;
  }
  #main .wp_btn .txt::after {
    width: 6px;
    height: 6px;
    right: 20px;
  }
}
/*-----------------------------------
WPパーツ
-----------------------------------*/
.wp_dl {
  box-sizing: border-box;
  padding: 2rem 4rem;
  border: 5px solid #108ec1;
  position: relative;
  transition: all 0.25s ease;
  margin-top: 4rem;
  clear: both;
}
.wp_dl a {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.wp_dl:hover {
  opacity: 0.8;
  transform: translateY(-4px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}
#main .wp_dl > h3 {
  border: none;
  text-align: center;
  color: #108ec1;
  margin-bottom: 1rem;
  font-size: 24px;
}
#main .wp_dl > h3::after {
  content: none;
}
#main .wp_dl > p {
  text-align: center;
  font-weight: 700;
}
#main .wp_dl > div {
  display: flex;
  align-items: center;
  gap: 6rem;
}
#main .wp_dl > div img {
  width: 45%;
  height: auto;
}
#main .wp_dl > div > div {
  background-color: #f3f9fc;
  box-sizing: border-box;
  padding: 2rem;
  flex: auto;
}
#main .wp_dl > div > div > p {
  font-weight: 700;
  color: #108ec1;
  text-align: center;
  margin-bottom: 10px;
}
.list_or li::before {
  background-color: #f1a329 !important;
}
#main .wp_dl .btn {
  color: #fff;
  background-color: #108ec1;
  width: 250px;
  margin: 2rem auto 0 auto;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  height: 50px;
  box-shadow: 3px 3px 0px 0px rgba(0, 31, 107, 1);
  border-radius: 1rem;
  font-size: 20px;
}
#main .wp_dl .btn::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/btn_arrow01.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 980px) {
  #main .wp_dl > div {
    flex-direction: column;
  }
  #main .wp_dl > div img {
    width: 100%;
  }
  #main .wp_dl > div > div {
    width: 100%;
  }
  #main .wp_dl > div {
    gap: 2rem;
  }
}
@media screen and (max-width: 650px) {
  .wp_dl {
    padding: 2rem;
  }
  #main .wp_dl > h3 {
    font-size: 20px;
  }
  #main .wp_dl > p {
    font-size: 16px;
  }
  #main .wp_dl > div > div > p {
    font-size: 16px;
  }
  #main .wp_dl > div > div {
    padding: 15px;
  }
  #main .wp_dl .btn {
    max-width: 250px;
    width: 100%;
  }
}
/*-----------------------------------
新しいコンタクトフォーム
-----------------------------------*/
.cta_container .must, .cta_container .any {
  font-size: 12px;
  color: #fff;
  line-height: 1;
  border-radius: 999px;
  padding: 2px 8px;
  margin-right: 5px;
}
.cta_container .must {
  background-color: #A20406;
}
.cta_container .any {
  background-color: #878787;
}
#main .cta_container .item {
  font-weight: 700;
}
.cta_container input[type="text"] {
  height: 50px;
  padding: 5px;
  box-sizing: border-box;
  width: 100%;
}
.cta_container .select_box {
  height: 50px;
  width: 100%;
  max-width: 300px;
  position: relative;
}
.cta_container select {
  height: 100%;
  width: 100%;
}
.cta_container .select_box::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto 0;
}
.item_fl {
  margin-bottom: 20px;
}
.cta_container .item_fl {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  row-gap: 10px;
}
.cta_container .item_fl li {
  width: calc((100% - 4rem) / 3);
  font-weight: 500;
  font-size: 16px;
}
.cta_container .item_fl input {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.cta_container .radio li {
  font-size: 16px;
  font-weight: 500;
}
.cta_container .radio li:not(:last-child) {
  margin-bottom: 10px;
}
.cta_container textarea {
  width: 100%;
  padding: 5px;
  height: 200px;
}
#main .cta_container .submit {
  width: 80%;
  max-width: 500px;
  height: 50px;
  margin: 4rem auto 0 auto;
}
.cta_container .submit input {
  height: 100%;
  width: 100%;
  border: none;
  color: #FFF;
  border-radius: 999px;
  background-color: #06C;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 2.2;
}
@media screen and (max-width: 980px) {
  .cta_container .item_fl li {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (max-width: 650px) {
  .cta_container .item_fl li {
    width: 100%;
  }
  .cta_container textarea {
    width: 100%;
    padding: 5px;
    height: 150px;
  }
  #main .cta_container .submit {
    width: 90%;
    max-width: 300px;
    height: 40px;
    margin: 2rem auto 0 auto;
  }
  .cta_container .select_box {
    height: 40px;
  }
  .cta_container input[type="text"] {
    height: 40px;
    ;
  }
}
/*-----------------------------------
お問い合わせフォーム　注意書き
-----------------------------------*/
#main .cta_container .caution p {
  font-size: 14px;
  line-height: 1.8;
}
/*-----------------------------------
お問い合わせフォーム　注意書き 移行後削除
-----------------------------------*/
#contactForm .caution p {
  font-size: 14px;
  line-height: 1.8;
}
#contactForm dd textarea {
  height: 240px;
}
@media screen and (max-width:650px) {
  #contactForm dd textarea {
    height: 180px;
  }
}
/*-----------------------------------
ロゴ
-----------------------------------*/
#header {
  margin: 1rem auto;
}
#header .header_top {
  padding: 0;
}
#header .header_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header_title .header_logo {
  width: 70%;
  height: auto;
  max-width: 450px;
  clear: both;
}
#header .header_title .header_logo img {
  width: 100%;
}
#header .header_title .header_logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
#header .header_title .header_contact {
  clear: both;
}
@media screen and (max-width: 1024px) {
  #header .header_title {
    margin: 0;
  }
  #header .header_title .header_logo {
    margin: 1rem 0 1.5rem 0;
  }
  #header .header_title .header_logo {
    width: 80%;
    max-width: 400px;
    margin: 0;
  }
  .header {
    top: 3% !important;
    right: 10px;
    width: 35px;
    height: auto;
  }
  .el_humburger {
    width: 100%;
    right: 0;
  }
}
/*-----------------------------------
SPで22カラムに変更
-----------------------------------*/
@media only screen and (max-width: 980px) {
  #main .fl_sp {
    flex-direction: row;
    gap: 2rem;
    row-gap: 4rem;
  }
  #main .fl_sp > div {
    width: calc((100% - 2rem) / 2);
  }
}
/*-----------------------------------
注目キーワード
-----------------------------------*/
#main .trend_kw {
  padding-bottom: 10px;
}
#main .trend_kw p {
  font-weight: 700;
  margin-bottom: 1rem;
}
#main .trend_kw ul {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
#main .trend_kw ul li {
  transition: transform 0.1s ease-in-out 0.1s;
}
#main .trend_kw ul li:hover {
  transform: translateY(5px);
}
#main .trend_kw ul li > a {
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
  padding: 5px 15px;
  border-radius: 999px;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 1.6rem;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
#main .trend_kw ul li > a::before {
  content: '';
  display: inline-block;
  background-image: url("../images/hashtag.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
}
/*-----------------------------------
動画
-----------------------------------*/
.movie_wrap {
  display: flex;
  gap: 2rem;
  background-color: aliceblue;
  box-sizing: border-box;
  padding: 4rem 2rem;
}
#main .movie_wrap h4 {
  border: none;
  color: #108ec1;
}
#main .movie_wrap .youtube {
  width: 45%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  margin: 0;
  padding: 0;
}
#main .movie_wrap .youtube iframe {
  width: 100%;
  height: 100%;
}
#main .movie_wrap > div {
  flex: 1;
}
#main .movie_wrap > div p {
  font-size: 16px;
}
#main .movie_wrap img {
  width: 100%;
  height: auto;
}
#main .movie_wrap > div p:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 980px) {
  .movie_wrap {
    flex-direction: column;
  }
  #main .movie_wrap .youtube {
    width: 100%;
  }
}
/*-----------------------------------
LINEお友達登録ボタン
-----------------------------------*/
#main .line_btn {
  display: flex;
  gap: 2rem;
  max-width: 800px;
  width: 98%;
  margin: 4rem auto 1rem auto;
}
#main .line_btn li {
  flex: 1;
  border-radius: 999px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  box-sizing: border-box;
  position: relative;
  transition: transform 200ms ease;
  will-change: transform;
  clear: both;
}
#main .line_btn li:first-child {
  box-shadow: 4px 6px 0px 0px #f15a24;
  background-color: #f59020;
}
#main .line_btn li:last-child {
  box-shadow: 4px 6px 0px 0px #007c09;
  background-color: #4cc764;
}
#main .line_btn li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 2rem 0;
}
#main .line_btn li span {
  background-color: #fff;
  color: #4cc764;
  display: inline-block;
  font-size: 20px;
  border-radius: 999px;
  box-sizing: border-box;
  width: 60%;
  border: 3px solid #4cc764;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding: 2px;
}
#main .line_btn li:first-child span {
  border: 3px solid #f59020;
  color: #f59020;
}
#main .line_btn p {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  position: relative;
  top: 8px;
}
#main .line_btn li p::before {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  height: auto;
  aspect-ratio: 1/1;
}
#main .line_btn li:first-child p::before {
  background-image: url("../images/common/glass_icon.png");
  width: 35px;
}
#main .line_btn li:last-child p::before {
  background-image: url("../images/common/line_icon.png");
  width: 50px;
}
#main .line_btn li:hover {
  transform: translateY(4px);
}
@media screen and (max-width:980px) {
  #main .line_btn p {
    font-size: 26px;
    top: 10px;
  }
  #main .line_btn li span {
    font-size: 18px;
    width: 70%;
  }
  #main .line_btn li:first-child p::before {
    width: 30px;
  }
}
@media screen and (max-width:750px) {
  #main .line_btn {
    flex-direction: column;
    max-width: 450px;
    width: 98%;
    gap: 4rem;
  }
  #main .line_btn li p {
    font-size: 24px;
  }
  #main .line_btn li span {
    font-size: 20px;
    width: 75%;
    top: -15px;
  }
  #main .line_btn li:first-child p::before {
    width: 35px;
  }
}
/*-----------------------------------
記事途中のCMコーナー
-----------------------------------*/
#main .cm p {
  margin-bottom: 0;
}
#main .cm {
  clear: both;
}
#main .cm .ttl {
  background-color: #108ec1;
  display: inline-block;
  border-radius: 1rem 1rem 0 0;
  color: #fff;
  font-weight: 700;
  box-sizing: border-box;
  padding: 5px 15px;
  max-width: 80%;
}
.cm > div {
  border: 1px solid #108ec1;
  box-sizing: border-box;
  padding: 3rem;
  border-radius: 0 2rem 2rem 2rem;
  display: flex;
  gap: 2rem;
}
.cm > div .item {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#main .cm > div .item p {
  font-size: 16px;
  flex-grow: 1;
}
.cm > div img {
  width: 25%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.btn_group {
  display: flex;
  gap: 2rem;
  max-width: 700px;
  width: 100%;
  margin: auto;
  padding-bottom: 1rem;
}
.btn_group li {
  flex: 1;
  text-align: center;
  font-weight: 700;
  border-radius: 1rem;
  box-sizing: border-box;
  box-shadow: 0px 3px 0px 0px rgba(0, 31, 107, 1);
  position: relative;
}
.btn_group li:hover {
  top: 5px;
  box-shadow: none;
}
.btn_group li:first-child {
  background-color: #108ec1;
  color: #fff;
}
.cm .btn_group {
  margin: 4rem 0 0 0;
  padding-bottom: 0;
}
.btn_group li a {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn_group li a::after {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}
#main .btn_group li:first-child a {
  color: #fff;
}
#main .btn_group li:first-child a::after {
  background-image: url("../images/btn_arrow01.png");
}
#main .btn_group li:last-child a::after {
  background-image: url("../images/btn_arrow02.png");
}
.btn_group li:last-child {
  background-color: #fff;
  border: 1px solid #108ec1;
}
#main .btn_group li:last-child a {
  color: #108ec1;
}
@media only screen and (max-width: 980px) {
  .cm > div {
    flex-direction: column-reverse;
    align-items: center;
    padding: 4rem;
  }
  .cm > div img {
    width: 100%;
  }
  .cm > div .item {
    width: 100%;
  }
  .cm .btn_group {
    max-width: inherit;
  }
}
@media only screen and (max-width: 650px) {
  #main .cm .ttl {
    display: block;
    max-width: inherit;
  }
  .cm > div {
    padding: 2rem;
    border-radius: 0 0 2rem 2rem;
  }
  .cm .btn_group {
    margin-top: 2.4rem;
  }
  .btn_group {
    max-width: 400px;
    flex-direction: column;
    gap: 1.5rem;
  }
}
/*-----------------------------------
目次
-----------------------------------*/
#content #indexMenu li {
  margin-left: 0;
}
#indexMenu > ul > li > a {
  font-weight: bold;
}
#indexMenu > ul > li {
  margin-top: 10px;
}
#indexMenu > ul > li::before {
  content: none !important;
}
#content #indexMenu li:before {
  margin-right: 5px;
}
#indexMenu > ul > li > ul {
  margin-top: 3px;
}
#indexMenu > ul > li > ul li {
  text-indent: -1em;
  padding-left: 1em;
}
/*-----------------------------------
トップのレイアウト（主にレスポンシブ）
-----------------------------------*/
.flow-navi {
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 650px) {
  .flow-navi {
    display: block;
    top: auto;
    bottom: 0;
    transform: translateY(0%);
  }
}
@media screen and (max-width:1200px) {
  .secMv .inner {
    width: 98%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #header {
    font-size: 12px;
    height: auto;
    padding: 0;
    width: 100%;
  }
  #content {
    margin: auto;
    padding: 15px 0 0 0;
    width: 94%;
    display: block;
  }
  #side {
    width: 100%;
    margin-left: 0;
  }
  #gnavi {
    display: none;
  }
  #ftwrap {
    width: 98%;
    grid-template-columns: repeat(1, 1fr);
  }
  .side_panel {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .side_panel > p {
    width: calc((100% - 3rem) / 3);
    padding: 0;
  }
  .side_panel > p img {
    width: 100%;
  }
  #footer ul li {
    margin: 3px 10px;
    padding: 15px 0 15px 40px;
    width: auto;
    border-radius: 5px;
    border: solid 1px #ffffff;
    background: #fff url(../images/arrow_02.png) 26px center no-repeat;
  }
  #footer ul li a {
    display: block;
    color: #095ba8;
    font-size: inherit;
  }
  #footer .footer_info {
    float: none;
    width: 100%;
    padding: 20px 0 10px 0;
    text-align: center;
    color: #fff;
    font-size: inherit;
    line-height: normal;
  }
  #footer h6.footer_area {
    font-size: 0.9em;
    display: inline-block;
    background-size: 16px 16px;
  }
  #main {
    margin: auto;
  }
  #footer h6.footer_area {
    background-image: url(../images/footernv-icon-area.png);
    font-size: 1em;
    background-size: contain;
  }
  #footer ul {
    padding: 0;
  }
}
@media screen and (max-width:1024px) {
  .side_panel {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .side_panel > p {
    width: calc((100% - 2rem) / 2) !important;
    padding: 0 !important;
    clear: both;
  }
  .side_panel > p img {
    width: 100%;
  }
  #footer {
    padding-bottom: 0;
  }
}
/*-----------------------------------
グローバルナビ
-----------------------------------*/
#gnavi {
  z-index: 999;
}
#gnavi .submenu {
  background-color: rgb(57, 54, 54, 0.9);
  width: 100%;
  position: absolute;
  left: 0;
  box-sizing: border-box;
  padding: 4rem;
}
#gnavi .submenu p {
  color: #fff;
  font-size: 2rem;
  width: 100%;
  border-bottom: 2px solid #A09D9D;
  padding-bottom: 5px;
}
#gnavi ul.submenu > li {
  width: 90%;
  max-width: 1260px;
  margin: auto;
}
#gnavi ul.submenu .submenu_child li {
  width: calc((100% - 12rem) / 4);
  border-bottom: 1px solid #A09D9D;
  position: relative;
}
#gnavi ul.submenu .submenu_child02 > ul {
  display: flex;
  gap: 4rem;
  width: 100%;
  flex-wrap: wrap;
}
#gnavi ul.submenu .submenu_child02 > ul li {
  width: calc((100% - 8rem) / 3);
  border-bottom: 1px solid #A09D9D;
  font-size: 2rem;
  position: relative;
}
#gnavi ul.submenu .submenu_child li::before, #gnavi ul.submenu .submenu_child02 > ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
}
#gnavi ul.submenu li a {
  background-color: transparent;
  text-align: left;
  padding: 5px;
  transition: .5s;
}
#gnavi li ul {
  position: static;
}
#gnavi ul.submenu .submenu_child .header_btn {
  width: 75%;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border: none;
  margin-top: 2rem;
}
#gnavi ul.submenu .submenu_child .header_btn::before {
  content: none;
}
#gnavi ul.submenu .submenu_child .header_btn a {
  padding: 10px;
  width: calc((100% - 2rem) / 2);
  text-align: center;
  background-color: #1553A7;
}
.accordion_head, .accordion_head02 {
  position: relative;
}
.accordion_head::before, .accordion_head02::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: .5s;
}
/* 初期状態：非表示 */
#gnavi .accordion_inner, #gnavi .accordion_inner02 {
  display: none !important;
  width: 100%;
}
/* active時にflex表示 */
#gnavi .accordion_inner.active {
  display: flex !important;
  flex-wrap: wrap;
  margin-top: 2rem !important;
  gap: 4rem;
  row-gap: 2rem;
  transition: 'opacity 0.3s ease'
}
#gnavi .accordion_inner02.active {
  width: 100% !important;
  flex-wrap: wrap !important;
  gap: 2rem;
  display: flex !important;
}
.accordion_head.active::before, .accordion_head02.active::before {
  transform: rotate(-140deg);
}
#gnavi ul.submenu .submenu_child03 .accordion_head {
  width: 100% !important;
  margin-top: 2rem;
}
ul.submenu_child03.accordion_inner {
  width: 100% !important;
}
#gnavi ul.submenu .submenu_child03 .accordion_inner02 {
  display: none;
}
#gnavi ul.submenu .submenu_childWrap .accordion_inner02 > li {
  width: calc((100% - 10rem) / 6);
}
#gnavi li ul {
  padding: 0;
}
#gnavi ul.submenu .submenu_child03 .accordion_inner02 > li a {
  text-align: center;
  background-color: #333;
  border-radius: 999px;
}
ul.submenu_child03.accordion_inner {
  width: 100% !important;
  flex-wrap: wrap !important;
}
#gnavi ul.submenu .submenu_childWrap {
  width: 100% !important;
}
#gnavi ul.submenu .submenu_childWrap p {
  border: none;
}
#gnavi ul.submenu .submenu_child03 li {
  width: 100%
}
@media screen and (max-width:1200px) {
  #gnavi ul.submenu .submenu_child li, #gnavi .submenu_child2 > ul li {
    width: calc((100% - 8rem) / 3);
  }
}
.navigation_wrapper {
  padding-bottom: 200px;
}
.exbtn02 {
  display: inline-block;
  background: #ac4848;
  padding: 10px;
  margin: 0;
  color: #fff;
}
#main p {
  font-weight: 500;
  letter-spacing: 0.05em;
}
/*リンクの色*/
a {
  color: #1A0DAB;
}
/*ロゴ一覧*/
.l-slide__item {
  width: calc(100vw / 9);
}
@media only screen and (max-width: 1000px) {
  .l-slide__item {
    width: calc(100vw / 4);
  }
}
#main .contain {
  object-fit: contain;
}
#main .contain img {
  object-fit: contain;
}
/*-----------------------------------
マーカー風下線
-----------------------------------*/
.marker {
  background: linear-gradient(transparent 60%, #ff6 60%);
  font-weight: 700;
}
/*-----------------------------------
関連サービス紹介
-----------------------------------*/
.related_services {
  display: flex;
  gap: 2rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  width: 98%;
  margin: auto;
}
.related_services > .item {
  width: calc((100% - 2rem) / 2);
  display: flex;
  gap: 2rem;
  box-sizing: border-box;
  padding: 1.5rem;
  border: 2px solid #93b0da;
  box-shadow: 3px 5px 0px 0px rgba(0, 31, 107, 1);
  position: relative;
  transition: .3s;
}
#main .related_services > .item:hover {
  transform: scale(0.98);
  opacity: .7;
}
#main .related_services > .item img {
  width: 150px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex-shrink: 0;
}
#main .related_services > .item > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#main .related_services > .item p {
  font-size: 1.4rem;
  margin-bottom: 0;
}
#main .related_services > .item h4 {
  font-size: 1.8rem;
  border: none;
  margin-bottom: 0;
}
#main .related_services p.link_txt {
  font-weight: 700;
  margin-bottom: 0;
  margin-top: auto;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
#main .related_services p.link_txt span {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #05308f;
  position: relative;
  flex-shrink: 0;
}
#main .related_services p.link_txt span::after {
  content: '';
  width: 5px;
  height: 5px;
  color: #fff;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  transform: rotate(45deg);
  top: 9px;
  left: 7px;
}
#main .related_services > .item a {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width:980px) {
  .related_services {
    flex-direction: column;
    gap: 1.5rem;
  }
  .related_services > .item {
    width: 100%;
  }
}
@media screen and (max-width:650px) {
  .related_services > .item {
    flex-direction: column;
    padding: 2rem;
  }
  #main .related_services > .item p {
    font-size: 1.6rem;
    ;
  }
  #main .related_services > .item img {
    width: 100%;
    aspect-ratio: 6 / 4;
    object-fit: cover;
  }
}
/*-----------------------------------
お悩みリスト　
-----------------------------------*/
.worry_list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.5rem;
  column-gap: 1rem;
}
.worry_list li {
  flex: 1 1 48%;
  border: 2px solid #b5b6b6;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: .3s;
}
.worry_list li::after {
  content: '';
  display: inline-block;
  background-color: #b5b6b6;
  width: auto;
  aspect-ratio: 1 / 1;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
.worry_list li::before {
  content: '';
  width: 9px;
  height: 9px;
  border: 0;
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  z-index: 1;
}
.worry_list li > a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 1rem;
  color: #2c2623;
  font-weight: 700;
  font-size: 1.8rem;
  position: relative;
  z-index: 3;
  font-size: clamp(16px, 1.25vw, 18px);
  box-sizing: border-box;
}
.worry_list li:hover {
  opacity: .7;
}
@media screen and (max-width:980px) {
  .worry_list li::before {}
}
@media screen and (max-width:650px) {
  .worry_list {
    flex-direction: column;
    gap: 1rem;
  }
  .worry_list li > a {
    padding: 5px;
  }
  .worry_list li {
    width: 100%;
    flex: auto;
  }
  .worry_list li::before {
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    width: 6px;
    height: 6px;
    right: 14px;
  }
}
/*-----------------------------------
問い合わせページ　
-----------------------------------*/
#contactForm input[type="submit"] {
  width: 90%;
  max-width: 500px;
  display: block;
  margin: auto;
}
#contactForm dl dd label, #contactForm input[type="checkbox"] {
  cursor: pointer;
}
/*-----------------------------------
CTA
-----------------------------------*/
.cta_area {
  background: #fffbf0;
  padding: 6rem 0 6rem 0;
  border-bottom: 2px solid #F59020;
  border-top: 2px solid #F59020;
  margin-top: 6rem;
  text-align: center;
  clear: both;
}
#main .cta_area ul {
  display: flex;
  gap: 4rem;
  justify-content: center;
  max-width: 900px;
  width: 90%;
  margin: auto;
}
#main .cta_area ul li {
  flex: 1;
  height: 80px;
  background-color: #F59020;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  box-shadow: 3px 5px 0px 0px rgba(181, 96, 2, 71);
  margin: 2rem auto 0 auto;
  transition: 0.3s;
  position: relative;
  bottom: 0;
}
#main .cta_area ul li:first-child {
  font-size: 2.4rem;
}
#main .cta_area ul li:last-child {
  background-color: #FFF;
  border: 3px solid #F59020;
}
#main .cta_area ul li:last-child a {
  color: #F59020;
  display: flex;
  align-items: center;
  gap: 5px;
}
#main .cta_area ul li:last-child a::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: auto;
  aspect-ratio: 1 / 1;
  background-image: url("../images/mail_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
}
#main .cta_area ul li span {
  display: block;
  font-size: 1.4rem;
}
#main .cta_area ul li i {
  margin-right: 5px;
}
#main .cta_area .btn {
  width: 100%;
  height: 100%;
  color: #FFF;
}
#main .cta_area > ul li:hover {
  bottom: -5px;
}
#main .cta_area p {
  color: #333;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 0 3rem;
  line-height: 1;
  margin-bottom: 0;
}
#main .cta_area p::before, #main .cta_area p::after {
  content: '';
  display: inline-block;
  background: #F59020;
  height: 3px;
  width: 20px;
  position: absolute;
  bottom: 5px;
}
#main .cta_area p::before {
  transform: rotate(45deg);
  left: 0
}
#main .cta_area p::after {
  transform: rotate(-45deg);
  right: 0;
}
#main .cta_area .btn {
  width: 100%;
  height: 100%;
  color: #FFF;
  /* Flexで中央寄せ */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}
/* テキスト部のサイズと行揃え */
#main .cta_area .btn span {
  font-size: 1.4rem;
  line-height: 1;
  width: 100%;
  position: relative;
  top: 10px;
}
@media screen and (max-width: 980px) {
  #main .cta_area ul {
    gap: 2rem;
    width: 95%;
  }
}
@media screen and (max-width: 650px) {
  .cta_area {
    padding: 3rem 0;
  }
  #main .cta_area ul {
    flex-direction: column;
    justify-content: center;
    margin-top: 2rem;
  }
  #main .cta_area ul li {
    height: 70px;
    width: 100%;
    max-width: 400px;
    flex: auto;
    margin: auto;
  }
  #main .cta_area ul li:first-child a {
    font-size: 2.2rem;
  }
  #main .cta_area .btn {
    font-size: 1.8rem;
  }
  .cta_area {
    margin-top: 4rem;
  }
}
/*-----------------------------------
hタグデザイン変更
-----------------------------------*/
#main h1 {
  font-size: 3.2rem;
  background-color: #333;
  padding: 10px 15px;
  box-sizing: border-box;
  color: #fff;
  line-height: 1.3;
}
#main h2 {
  text-align: left;
  font-size: 3rem;
  margin-bottom: 4rem;
  margin-top: 0;
}
#main h2::after {
  content: none;
}
#main h3 {
  border-left: none;
  padding: 0;
  border-bottom: 1px solid #C9C3C3;
  position: relative;
}
#main h3::after {
  content: '';
  display: inline-block;
  background-color: #333;
  height: 1px;
  width: 15%;
  position: absolute;
  left: 0;
  bottom: -1px;
}
#main h4 {
  padding-bottom: 0;
}
#main .hikakuList > div h3::after {
  content: none;
}
@media screen and (max-width: 650px) {
  #main h1 {
    font-size: 2.4rem;
  }
  #main h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  #main h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  #main h4 {
    font-size: 1.8rem;
  }
}
/*-----------------------------------
h2直下の目次
-----------------------------------*/
#main .toc {
  border-left: 4px solid #ccc;
  padding-left: 2rem;
  margin-bottom: 2rem;
}
#main .toc p {
  font-weight: 700;
  line-height: 1.2;
}
#main .toc ol {
  font-weight: 500;
  margin-left: 0;
}
#main .toc ol li:last-child {
  margin-bottom: 0;
}
/*-----------------------------------
この記事でわかること
-----------------------------------*/
#main .heading p {
  background-color: #000;
  color: #fff;
  font-weight: 700;
  margin: 0;
  padding: 1rem 1.5rem;
  display: inline-block;
  line-height: 1;
  box-sizing: border-box;
  font-size: 1.6rem;
}
#main .heading ul {
  border: 1px solid #000;
  padding: 4rem;
  box-sizing: border-box;
}
#main .heading ul li {
  font-weight: 700;
  position: relative;
  padding-left: 2rem;
}
#main .heading ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 10px;
}
#main .heading ul li:not(:last-child) {
  margin-bottom: 1rem;
}
@media screen and (max-width: 650px) {
  #main .heading ul {
    padding: 2rem;
  }
  #main .heading ul li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
/*-----------------------------------
メリットリスト デメリットリスト
-----------------------------------*/
.good_point li:not(:last-child), .weak_point li:not(:last-child) {
  margin-bottom: 5px;
}
.good_point li, .weak_point li {
  font-weight: 700;
  position: relative;
  padding-left: 24px;
}
.good_point li::before, .weak_point li::before {
  font-size: 2rem;
  font-family: "Font Awesome 6 Free";
  left: 0;
  position: absolute;
}
.good_point li::before {
  content: '〇';
  color: #3C70CA;
  font-size: 1.6rem;
  top: -1px;
}
.weak_point li::before {
  content: '\f00d';
  color: #E4070B;
}
@media screen and (max-width: 650px) {
  .weak_point li::before {
    top: 2px;
  }
}
/*-----------------------------------
TOPに戻る追従ボタン
-----------------------------------*/
.pagetop {
  background-color: #333;
  position: fixed;
  bottom: 15px;
  right: 65px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 999;
}
.pagetop span {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.pagetop a {
  display: inline-block;
  text-align: center;
  width: 100%;
  height: 100%;
}
.pagetop:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  .pagetop {
    bottom: 10px;
    right: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetop {
    bottom: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 650px) {
  .pagetop {
    bottom: 24vw;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  .pagetop span {
    width: 10px;
    height: 10px;
    top: 54%;
  }
}
/*-----------------------------------
  フッターa　hover
-----------------------------------*/
#footer a:hover {
  text-decoration: underline;
}
#footer .footer_info p.eigyousyo {
  margin-bottom: 3px;
}
/*-----------------------------------
  会社概要dl
-----------------------------------*/
.company > div {
  display: flex;
  padding: 3rem 0;
  border-top: 1px solid #cccccc;
}
.company > div:last-of-type {
  border-bottom: 1px solid #cccccc;
}
.company dt, .company dd {
  font-size: 1.8rem;
}
.company dt {
  width: 25%;
  font-weight: 700;
}
.company dd {
  font-weight: 500;
}
.company .child {
  width: 75%;
}
.company .child dd {
  width: 100%;
}
.company .child dd:not(:first-child) {
  margin-top: 2rem;
}
.company ul {
  list-style: disc;
  padding-left: 2rem;
}
.company ul li {
  font-size: 1.8rem;
  font-weight: 500;
}
.company ul li:not(:first-child) {
  padding-top: 1rem;
}
@media screen and (max-width:980px) {
  .company > div {
    flex-direction: column;
    gap: 2rem;
  }
  .company dt, .company .child {
    width: 100%;
  }
}
/*-----------------------------------
  table　th固定
-----------------------------------*/
table.fixed {
  border-collapse: collapse;
  width: 100%;
}
table.fixed th {
  width: 25%;
  background-color: #f1f1f1;
  border: 1px solid #CCC;
  padding: 1rem;
}
table.fixed td {
  width: 75%;
  background-color: #FFF;
  line-height: 1.8;
  box-sizing: border-box;
  padding: 1.5rem;
  border: 1px solid #CCC;
  font-weight: 500;
}
@media screen and (max-width:980px) {
  .table_wrap {
    overflow: scroll;
    width: 100%;
  }
  table.fixed {
    width: 900px;
  }
  table.fixed th {
    width: 20%;
    text-align: center;
  }
  table.fixed td {
    width: 80%;
  }
}
@media screen and (max-width:650px) {
  table.fixed {
    width: 650px;
  }
  table.fixed th {
    width: 25%;
    text-align: center;
    font-size: 14px;
  }
  table.fixed td {
    width: 75%;
    font-size: 14px !important;
  }
}
/*-----------------------------------
  h1+リード文
-----------------------------------*/
#main .page_lead h1 {
  margin-bottom: 1rem;
  background: none;
  color: #333;
  padding: 0;
}
#main .page_lead p {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding-bottom: 0.5rem;
}
@media screen and (max-width:650px) {
  #main .page_lead p {
    font-size: 1.8rem;
  }
}
/*-----------------------------------
  製品ページタグ
-----------------------------------*/
ul.tag {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 1rem 0;
}
ul.tag li {
  line-height: 1;
  background-color: #090058;
  color: #ffffff;
  font-size: 14px;
  box-sizing: border-box;
  padding: 6px 10px;
  border-radius: 3px;
}
/*-----------------------------------
  リスト三角バージョン
-----------------------------------*/
ul.column1 {
  padding-left: 0;
}
ul.column1 li {
  line-height: 1.6;
  background-position: 5px 6px;
  font-weight: 500;
}
ul.column1 li {
  margin-bottom: 5px;
}
ul.column1 li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width:650px) {
  ul.column1 li {
    background-position: 4px 8px;
  }
}
/*-----------------------------------

ABテスト料金ページ

-----------------------------------*/
/*レンタル費用h2*/
#main .ao_title {
  text-align: center;
}
#main .ao_title h2 {
  color: #46a49d;
  margin-bottom: 1rem;
}
#main .ao_title h2::after {
  content: none;
}
#main .ao_title p {
  color: #333;
  font-size: 2.4rem;
  font-weight: 700;
}
/*料金目安*/
#main .priceBox_ao {
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 95%;
  max-width: 750px;
  margin: 0 auto 5rem auto;
  border-radius: 0;
  flex-direction: column;
}
#main .priceBox_ao h3 {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  font-size: 2.4rem;
}
#main .priceBox_ao h3::before, #main .priceBox_ao h3::after {
  content: '';
  display: inline-block;
  height: 1px;
  width: 3rem;
  background-color: #231a19;
}
#main .priceBox_ao .priceBoxPrc {
  border-left: none;
  padding: 0;
  justify-content: center;
  width: auto;
}
#main .priceBox_ao .priceBoxPrc .priceBoxLabel {
  background-color: #46a49d;
  font-weight: 700;
  font-size: 2rem;
  padding: 1rem 1.5rem;
}
/*タブ*/
.tab-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  row-gap: 2rem;
  padding-bottom: 2rem;
}
.tab {
  text-align: center;
  width: calc((100% - 3rem) / 3);
  padding: 10px;
  background-color: #FFF;
  cursor: pointer;
  box-sizing: border-box;
  color: #46a49d;
  border: 1px solid #46a49d;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 2rem;
}
.tab.active {
  background-color: #46a49d;
  border-radius: 1rem;
  color: #FFF;
  position: relative;
}
.tab.active::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 12px solid #46a49d; /* 好みで色を変えてください */
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}
.content-container .panel {
  display: none; /*必須*/
}
.content-container .panel.show {
  display: block; /*必須*/
}
.tabs_ao {
  padding-bottom: 0;
}
/*画像サイズ*/
.rectangle {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: auto;
  object-position: 0 -20px;
}
/*アコーディオン*/
.accordion_ao .title {
  background-color: #fed3ca;
  font-weight: 500;
}
.accordion_ao .toggle:checked + .title + .content {
  padding: 4rem;
  max-height: initial;
  transition: 0s;
}
.accordion_ao .content {
  box-sizing: border-box;
  border: 1px solid #f1f1f1;
  border-top: none;
}
.accordion_ao .content p {
  margin: 0 0 2rem 0;
  padding: 0;
}
.accordion_ao .column1 {
  padding: 0;
}
.accordion_ao .title::before {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1rem;
  height: 1rem;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  right: 15px;
  background-color: transparent;
  top: 40%;
}
.accordion_ao .toggle:checked + .title::before {
  transform: rotate(-45deg) !important;
}
.accordion_ao .title::after {
  content: none;
}
.border_bg {
  border: 1px solid #f1f1f1;
  padding: 4rem;
  box-sizing: border-box;
}
/*他社比較*/
.tashaHikakuTbl_ao table {
  border-spacing: 5px;
}
.tashaHikakuTbl_ao table th.komoku {
  background-color: #46a49d;
  color: #fff;
  position: relative;
}
.tashaHikakuTbl_ao table th.komoku::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #46a49d;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  margin: auto;
}
.tashaHikakuTbl table tr.company th.mainH, .tashaHikakuTbl_ao table td.mainD {
  font-size: 2rem;
}
/*オプション　アコーディオン*/
.option_ao {
  padding: 6rem 4rem;
}
.option_ao .option {
  margin-bottom: 2.4rem;
}
.option_ao .toggle:checked + .title + .content {
  transition: 0s;
  max-height: initial;
  padding: 4rem 2rem;
  background-color: #f1f1f1;
}
#main .option_ao .content p {
  margin: 2rem 0 0 0;
  padding: 0;
}
.option_ao .title {
  font-size: 1.8rem;
}
@media screen and (max-width:980px) {
  /*レンタル費用h2*/
  #main .ao_title p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:650px) {
  /*タブ*/
  .tab-container {
    gap: 1rem;
    row-gap: 1.6rem;
  }
  .tab {
    font-size: 1.4rem;
    width: calc((100% - 2rem) / 3);
    padding: 10px 5px;
  }
  /*アコーディオン*/
  .accordion_ao .toggle:checked + .title + .content {
    padding: 2rem;
  }
  .border_bg {
    padding: 2rem;
  }
  .accordion_ao .title::before {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 6px;
    height: 6px;
    border-left: 0;
  }
  /*料金目安*/
  #main .priceBox .priceBoxPrc {
    font-size: 1.4rem;
  }
  #main .priceBox .priceBoxPrc .priceBoxNum {
    font-size: 4.8rem;
  }
  #main .priceBox_ao .priceBoxPrc .priceBoxLabel {
    font-size: 1.6rem;
  }
  /*オプション　アコーディオン*/
  .option_ao {
    padding: 4rem 2rem;
  }
}
@media screen and (max-width:360px) {
  /*タブ*/
  .tab {
    font-size: 1.4rem;
    width: calc((100% - 1rem) / 2);
  }
}
/*-----------------------------------

メインビジュアル

-----------------------------------*/
.topMv .under ul {
  flex: 1;
  width: auto;
}
.al_center {
  align-items: center;
}
/*MVボタン*/
.mv_btn {
  flex: 1;
  justify-items: center;
}
.topMv .under .specialBtn {
  width: 100%;
  max-width: 550px;
}
.topMv .under .specialBtn:last-child a {
  background-color: #70bb46;
  border-bottom: 5px solid #187b2c;
  margin-top: 1.6rem;
}
.topMv .under .specialBtn:last-child a:hover {
  background: #5a9937;
}
@media only screen and (max-width: 1024px) {
  .topMv .under {
    justify-content: center;
  }
  .topMv .under ul {
    width: 100%;
    margin-bottom: 50px;
  }
  .mv_btn {
    flex: auto;
    width: 100%;
  }
  .topMv .under .specialBtn {
    width: 90%;
    margin: auto;
  }
}
/*メディア掲載*/
.media {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 6rem;
}
.media li {
  width: calc((100% - 8rem) / 4);
}
.media li img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .media {
    gap: 1rem;
    margin-bottom: 0;
  }
  .media li {
    width: calc((100% - 2rem) / 3);
  }
}
/*選ばれる3つの理由*/
.reason_wrap {
  display: flex;
  gap: 4rem;
  margin-top: 8rem;
}
.reason_wrap > div {
  width: calc((100% - 8rem) / 3);
  text-align: center;
  background-color: #ebf8ff;
  box-sizing: border-box;
  padding: 5rem 2rem 2rem 2rem;
  border-radius: 10px;
  position: relative;
}
.reason_wrap > div::before {
  content: '01';
  background-color: #0186d1;
  color: #fff;
  font-size: 4rem;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  font-weight: 900;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 5px;
}
.reason_wrap > div:nth-of-type(2)::before {
  content: '02';
}
.reason_wrap > div:last-of-type::before {
  content: '03';
}
#main .reason_wrap > div h3 {
  color: #0186d1;
  padding: 0;
  border-left: none;
  margin-bottom: 1.6rem;
  border: none;
}
#main .reason_wrap > div h3::after {
  content: none;
}
.reason_wrap .bg {
  background-color: #0186d1;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 80%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.reason_wrap p {
  text-align: left;
}
.reason_wrap .bg img {
  width: 50%;
  height: auto;
  aspect-ratio: 1 / 1;
}
@media screen and (max-width: 1024px) {
  .reason_wrap.reason_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .reason_wrap > div {
    width: calc((100% - 4rem) / 2);
  }
}
@media screen and (max-width: 650px) {
  .reason_wrap.reason_wrap {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
  }
  .reason_wrap > div {
    width: 95%;
    max-width: 400px;
  }
}
/*フッター　営業所一覧*/
#footer h6 {
  font-size: 14px;
}
#footer h6.footer_area {
  background-image: url(../images/footernv-icon-area.png);
  background-size: 20px 20px;
}
@media screen and (max-width: 1024px) {
  #footer h6.footer_area {
    display: inline-block;
    background-size: 16px 16px;
    padding: 0 0 0 20px;
  }
}
/*右寄せ・左寄せ*/
.al_right {
  text-align: right !important;
}
.al_left {
  text-align: left !important;
}
/*margin-bottom打消し*/
.mb0 {
  margin-bottom: 0 !important;
}
/*padding-bottom打消し*/
.pb0 {
  padding-bottom: 0 !important;
}
/*margin*/
.ma0 {
  margin: 0 !important;
}
.mt40 {
  margin-top: 4rem !important;
}
.mt60 {
  margin-top: 6rem !important;
}
/*リンク装飾*/
a > i {
  font-size: 1.6rem;
  margin-left: 5px;
}
/*ボタン2カラム*/
.btn_wrap {
  display: flex;
  gap: 4rem;
  justify-content: center;
  padding: 8rem 0 4rem 0;
}
.btn_wrap li {
  position: relative;
  max-width: 275px;
  flex: 1;
  height: 50px;
  border-radius: 999px;
  text-align: center;
  transition: .5s;
  box-sizing: border-box;
}
.btn_wrap li a {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 2;
  transition: .5s;
}
.btn_wrap li::before {
  display: block;
  position: absolute;
  font-size: 1.8rem;
  font-weight: 700;
  width: 100%;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.btn_wrap li:first-child::before {
  content: 'プランをチェック';
  color: #70bb46;
}
.btn_wrap li:last-child::before {
  content: 'まずはお気軽に';
  color: #f26b4e;
}
.btn_wrap li::after {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 100%;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.btn_wrap li:first-child::after {
  background-image: url(../images/icon01.png);
}
.btn_wrap li:last-child::after {
  background-image: url(../images/icon02.png);
}
.btn_wrap li:first-child {
  background-color: #70bb46;
  border: 2px solid #70bb46;
}
.btn_wrap li:last-child {
  background-color: #f26b4e;
  border: 2px solid #f26b4e;
}
.btn_wrap li:first-child:hover, .btn_wrap li:last-child:hover {
  background-color: #fff;
}
.btn_wrap li:first-child:hover a {
  color: #70bb46;
}
.btn_wrap li:last-child:hover a {
  color: #f26b4e;
}
@media screen and (max-width:650px) {
  .btn_wrap {
    gap: 2rem;
  }
  .btn_wrap li {
    height: 45px;
  }
  .btn_wrap li a {
    font-size: 2rem;
  }
  .btn_wrap li::before {
    font-size: 1.6rem;
  }
  .btn_wrap li::after {
    width: 45px;
    top: -50px;
  }
}
/*説明リスト*/
.description_list > div:not(:last-child) {
  margin-bottom: 2.4rem;
  border-bottom: 1px solid #CCC;
  padding-bottom: 2rem;
}
.description_list dt::before {
  content: '';
  margin-right: 10px;
  background-color: #ACACAC;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  position: relative;
  top: 8px;
}
.description_list dt {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
}
.description_list dd {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
}
/*　リスト　2カラム　*/
.list_fl {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4rem;
  row-gap: 1rem;
}
.list_fl li {
  width: calc((100% - 4rem) / 2) !important;
  margin: 0 !important;
}
@media screen and (max-width:650px) {
  .list_fl {
    flex-direction: column;
  }
  .list_fl li {
    width: 100% !important;
  }
}
/*　リスト　3カラム　*/
.list_fl_3 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 1rem;
}
.list_fl_3 li {
  width: calc((100% - 4rem) / 3) !important;
  margin: 0 !important;
}
.list_fl_3 {
  padding: 0 !important;
}
@media screen and (max-width:650px) {
  .list_fl_3 li {
    width: calc((100% - 2rem) / 2) !important;
  }
}
.point_list2 li:not(:last-child) {
  margin-bottom: 5px;
}
/*　リスト　おすすめ2　*/
.point_list2 li {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
  /*
  margin-left: 10px;
*/
  padding-left: 15px;
}
.point_list2 li::before {
  content: '';
  margin-right: 10px;
  background-color: #000000;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 0;
}
.point_list2 li:not(:last-child) {
  margin-bottom: 1rem;
}
/*サービスページ目次*/
.menu_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  row-gap: 1rem;
}
.menu_list li {
  width: calc((100% - 4rem) / 3);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  transition: .5s;
  cursor: pointer;
  background-color: #108EC1;
  box-sizing: border-box;
  border: 1px solid #108EC1;
}
.menu_list li:hover {
  background-color: #fff;
}
.menu_list li:hover a {
  color: #108EC1 !important;
}
.menu_list li:hover a::after {
  background-image: url("../images/arrow_down02.png");
}
.menu_list li a::after {
  content: '';
  display: inline-block;
  background-image: url("../images/arrow_down.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.menu_list li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff !important;
  position: relative;
  transition: .5s;
  padding: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width:980px) {
  .menu_list li {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (max-width:650px) {
  .menu_list {
    flex-direction: column;
    align-items: center;
  }
  .menu_list li {
    width: 100%;
    max-width: 450px;
  }
  .menu_list li a {
    padding: 1.5rem 1rem;
  }
  .menu_list li a::after {
    width: 20px;
    height: 20px;
    right: 1rem;
  }
  .reason_wrap > div h3 {
    font-size: 2.4rem !important;
  }
}
/*よくあるお悩み*/
#main .worries h2 {
  font-size: 2.4rem !important;
  margin: 0 !important;
  text-align: center;
}
.worries h2 span {
  font-size: 4rem;
  background: linear-gradient(transparent 75%, #108EC1 75%);
}
.worries h2::after {
  content: none !important;
}
.worries h2 br {
  display: none;
}
/*.worries {
  box-sizing: border-box;
  padding: 6rem;
  border: 2px solid #333;
  outline: 2px solid #333;
  outline-offset: -15px;
}*/
.worries ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
  row-gap: 2rem;
  margin: 4rem auto 4rem auto;
}
.worries ul li {
  font-weight: 700;
  width: calc((100% - 4rem) / 2);
  border-bottom: 2px solid #E4E4E4;
  padding-bottom: 5px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 1.8rem;
}
.worries ul li::before {
  content: '';
  display: inline-block;
  background-image: url("../images/check.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.solution_lead::before {
  content: '';
  display: block;
  width: 3.2rem;
  height: 48px;
  background-image: url("../images/arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto 4rem auto;
}
.solution_lead::after {
  content: '';
  display: inline-block;
  width: 90px;
  height: 90px;
  background-image: url("../images/light_bulb.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
  transform: rotate(-30deg);
  position: absolute;
  left: -80px;
  bottom: 0;
}
.solution_lead {
  position: relative;
  width: fit-content;
  margin: 4rem auto 0 auto;
}
#main .solution_lead p {
  width: 100%;
  font-weight: 700;
  line-height: 1;
}
#main .solution_lead p:first-child {
  font-size: 2.2rem;
  color: #fff;
  background-image: url("../images/speech_bubble.png");
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  width: 135px;
  height: 60px;
  line-height: 2.4;
}
#main .solution_lead p:last-child {
  font-size: 3.2rem;
  letter-spacing: .1em;
}
#main .solution_lead p:last-child span {
  font-size: 5.5rem;
}
.solution {
  background-color: #C9DDDE;
  padding: 6rem 4rem 4rem 4rem;
  box-sizing: border-box;
  position: relative;
  margin-top: 6rem;
}
#main .solution p {
  text-align: center;
  font-weight: 700;
}
#main .solution p:last-child {
  margin-bottom: 0;
}
#main .solution h3 {
  background-color: #0F90BF;
  border: none;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 1rem;
  width: 90%;
  position: absolute;
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#main .solution h3::after {
  content: none;
}
@media only screen and (max-width: 980px) {
  .worries h2 {
    line-height: 1;
  }
  .worries ul {
    flex-direction: column;
  }
  .worries ul li {
    width: 100%;
  }
  .solution_lead {
    text-align: center;
  }
}
@media only screen and (max-width: 650px) {
  .worries h2 {
    font-size: 2rem !important;
  }
  .worries h2 span {
    font-size: 2.8rem;
  }
  .worries h2 br {
    display: block;
  }
  .worries ul {
    gap: 1rem;
  }
  .worries ul li {
    width: 100%;
  }
  #main .lead p:first-child {
    position: relative;
  }
  .solution_lead::after {
    width: 55px;
    height: 55px;
    left: -53px;
    bottom: 7px;
  }
  #main .solution_lead p:last-child span {
    font-size: 2.8rem;
  }
  #main .solution_lead p:last-child {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 350px) {
  .worries h2 {
    font-size: 1.8rem !important;
  }
  .worries h2 span {
    font-size: 2.8rem;
  }
  #main .solution_lead p:first-child {
    width: 125px;
    height: 55px;
    font-size: 2rem;
  }
}
/*フロー*/
.flow {
  display: flex;
  gap: 6rem;
  position: relative;
}
.flow:not(:first-of-type) {
  padding-top: 4rem;
}
.flow:not(:last-of-type) .flow_item {
  border-bottom: 1px solid #CCC9C9;
  padding-bottom: 4rem;
}
.flow p {
  margin-bottom: 0 !important;
}
.flow .step {
  background-color: #108EC1;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2 !important;
  font-size: 1.4rem !important;
}
.flow .tel_num {
  margin-top: 5px;
}
.flow .step span {
  font-size: 3.2rem !important;
}
.flow_item {
  flex: 1;
}
#main .flow_item h3 {
  border-left: none;
  padding: 0;
  margin-bottom: 2rem;
  border: none;
}
#main .flow_item h3::after {
  content: none;
}
.contact_wrap {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}
.contact_wrap > div {
  background-color: #F5F5F5;
  box-sizing: border-box;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 5px;
  position: relative;
  flex: 1;
  transition: .5s;
}
.contact_wrap > div:hover {
  opacity: .7;
  transform: scale(0.95);
}
.contact_wrap p {
  font-weight: 700;
  line-height: 1.4 !important;
  font-size: 2rem !important;
}
.contact_wrap p > i {
  margin-right: 5px;
  font-size: 2rem;
  color: #108EC1;
}
.contact_wrap .mid {
  font-size: 1.4rem !important;
}
.contact_wrap > div:nth-of-type(2) a {
  display: inline-block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.contact_wrap .small {
  font-size: 1.4rem !important;
  margin-top: 1rem;
}
@media only screen and (max-width: 980px) {
  .flow {
    gap: 4rem;
  }
  .flow .step {
    width: 90px;
    height: 90px;
  }
}
@media only screen and (max-width: 650px) {
  .flow {
    gap: 2rem;
  }
  .flow .step {
    width: 60px;
    height: 60px;
    font-size: 1.2rem !important;
  }
  .flow .step span {
    font-size: 2.4rem !important;
  }
  .flow_item h3 {
    margin-bottom: 1rem !important;
  }
  .contact_wrap {
    flex-direction: column;
  }
  .contact_wrap .pc_none {
    display: block;
  }
  .flow:not(:first-of-type) {
    padding-top: 2rem;
  }
  .flow:not(:last-of-type) .flow_item {
    padding-bottom: 2rem;
  }
}
.btn_nav {
  display: flex;
  gap: 2rem;
  row-gap: 1rem;
  flex-wrap: wrap;
}
.btn_nav li {
  width: calc((100% - 4rem) / 3);
  text-align: center;
  background-color: #108ec1;
  border-radius: 999px;
  height: 50px;
  line-height: 2.8;
  transition: .5s;
  position: relative;
}
.btn_nav li::before {
  content: '\f358';
  font: var(--fa-font-solid);
  position: absolute;
  right: 20px;
  font-size: 18px;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.btn_nav li a {
  width: 100%;
  height: 100%;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}
.btn_nav li:hover {
  opacity: .8;
}
/*AIページ 1カラム*/
.fl_wrap {
  background-color: #f1f1f1;
  padding: 2rem;
  box-sizing: border-box;
}
#main .fl_wrap h3 {
  border: none;
  padding: 0 !important;
  margin-bottom: 2rem !important;
}
#main .fl_wrap h3::after {
  content: none;
}
.fl {
  display: flex;
  gap: 4rem;
}
.fl img {
  width: 50%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.fl > div {
  flex: 1;
}
.fl > div {
  display: flex;
  flex-direction: column;
}
.fl > div > p {
  flex-grow: 1;
}
/*AIページ 2カラム*/
.fl_2 {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.fl_2 > div {
  width: calc((100% - 2rem) / 2);
  box-sizing: border-box;
  background-color: #f1f1f1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
#main .fl_2 > div h3 {
  text-align: center;
  border: none;
  padding: 0;
}
#main .fl_2 > div h3::after {
  content: none;
}
.fl_2 p {
  flex-grow: 1;
}
.fl_2 img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1rem;
}
.fl .btn, .fl_2 .btn, .fl_3 .btn {
  display: block;
  max-width: 300px;
  margin: auto;
  width: 100%;
  color: #fff;
  background-color: #108ec1;
  border-radius: 999px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  height: 50px;
  line-height: 2.8;
  transition: .5s;
  position: relative;
}
.fl .btn {
  margin: auto 0 0 auto;
}
.fl .btn:hover, .fl_2 .btn:hover {
  opacity: .7;
}
.fl .btn::before, .fl_2 .btn::before {
  content: '\f138';
  font: var(--fa-font-solid);
  position: absolute;
  right: 20px;
  font-size: 18px;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
/*　リスト　おすすめ　*/
.point_list li {
  font-weight: 700;
  position: relative;
  padding-left: 22px;
}
.point_list li:not(:first-child) {
  margin-top: 5px;
}
.point_list li::before {
  content: '';
  display: inline-block;
  background: url("../images/circle-check-solid.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 4px;
}
/* flex 3カラム */
.fl_3 {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  row-gap: 4rem;
}
.fl_3 > div {
  width: calc((100% - 4rem) / 3);
  display: flex;
  flex-direction: column;
}
.fl_3 > div img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.fl_3 p {
  flex-grow: 1;
  font-size: 16px !important;
}
.fl_3 ul {
  flex-grow: 1;
}
@media screen and (max-width:750px) {
  .fl_3 {
    flex-direction: column
  }
  .fl_3 > div {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  /*AIページ 1カラム*/
  .fl_wrap {
    padding: 4rem;
  }
  .fl_wrap h3 {
    text-align: center;
  }
  .fl {
    flex-direction: column;
    gap: 0;
  }
  .fl img {
    width: 100%;
    margin-bottom: 1rem;
  }
  .fl .btn {
    margin: auto;
  }
  .fl > div > p {
    flex-grow: 0;
  }
  /*AIページ 2カラム*/
  .fl_2 {
    flex-direction: column;
  }
  .fl_2 > div {
    width: 100%;
    padding: 4rem;
  }
  .fl_2 > div .pc_none {
    display: block;
  }
  .fl .btn, .fl_2 .btn {
    max-width: 350px;
  }
  .fl_3 .fl_wrap {
    padding: 2rem;
  }
}
@media screen and (max-width: 650px) {
  .btn_nav {
    gap: 1rem;
  }
  .btn_nav li {
    width: calc((100% - 1rem) / 2);
    height: 45px;
    line-height: 2.9;
  }
  .btn_nav li a {
    font-size: 16px;
  }
  .btn_nav li::before {
    font-size: 15px;
  }
  /*AIページ 1カラム*/
  .fl_wrap {
    padding: 2rem;
  }
  /*AIページ 2カラム*/
  .fl_2 > div {
    padding: 2rem;
  }
}
@media screen and (max-width: 380px) {
  /*AIページナビ*/
  .btn_nav li a {
    font-size: 14px;
  }
  .btn_nav li::before {
    right: 10px;
  }
}
/*センター揃えボタン*/
.btnRed {
  display: block;
  border-radius: 20px;
  border: 1px solid #CD0B0E;
  color: #CD0B0E !important;
  text-decoration: none;
  text-align: center;
  width: 80%;
  padding: 10px 0;
  box-sizing: border-box;
  margin: 10px auto 30px auto;
}
.btnRed:hover {
  background: #CD0B0E;
  color: #fff !important;
}
.btnRed {
  display: block;
  border-radius: 20px;
  border: 1px solid #CD0B0E;
  color: #CD0B0E !important;
  text-decoration: none;
  text-align: center;
  width: 80%;
  padding: 10px 0;
  box-sizing: border-box;
  margin: 10px auto 30px auto;
}
.btnRed:hover {
  background: #CD0B0E;
  color: #fff !important;
}
.btnRed {
  display: block;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #CD0B0E;
  color: #CD0B0E !important;
  text-decoration: none;
  text-align: center;
  width: 80%;
  padding: 10px 0;
  box-sizing: border-box;
  margin: 10px auto 30px auto;
}
.btnRed:hover {
  background: #CD0B0E;
  color: #fff !important;
}
.btnBlue:hover {
  background: #0070c9;
  color: #fff !important;
}
.btnBlue {
  display: block;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #0070c9;
  color: #0070c9;
  text-decoration: none;
  text-align: center;
  width: 80%;
  padding: 10px 0;
  box-sizing: border-box;
  margin: 10px auto 30px auto;
}
@media screen and (max-width: 1024px) {
  .column_stay div.col_half {
    float: left;
    width: 48% !important;
  }
}
/*テキスト付き画像*/
.exfle3 {
  width: 32%;
  margin-bottom: 20px;
}
.exfle3 a {
  color: #fff;
}
/*共通CTA*/
.cvContactBox {
  margin-bottom: 100px;
}
/*SP版各種*/
@media screen and (max-width: 1024px) {
  .el_humburger {
    top: 0 !important;
  }
  .header {
    top: 30px;
  }
}
@media screen and (max-width: 980px) {
  .pc_none {
    display: inline-block;
  }
  .header {
    top: 15px;
  }
}
/*おすすめ記事*/
.column_list li::before {
  content: '';
  display: inline-block;
  background-image: url("../images/pen-solid.svg");
  width: 16px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  vertical-align: middle;
}
.column_list li:not(:first-child) {
  margin-top: 5px;
}
.column_list li {
  text-indent: -1em;
  padding-left: 1em;
}
.column_list li a {
  color: #333;
  font-weight: 500;
  transition: .5s;
}
.column_list li a:hover {
  text-decoration: underline;
}
.column_bg {
  background-color: #f1f1f1;
  padding: 4rem;
  border: 1px solid #333;
  margin-bottom: 4rem;
}
@media screen and (max-width: 650px) {
  .column_bg {
    padding: 2rem;
  }
}
/*シェアボタン*/
.share_btn.top {
  text-align: right;
}
.share_btn a {
  display: inline-block;
  transition: .5s;
}
.share_btn.top a:hover {
  opacity: .6;
}
.share_btn a:not(:last-child) {
  margin-right: 1rem;
}
.share_btn .fa-brands {
  font-size: 3.2rem;
}
.share_btn .fa-line {
  color: #00B900;
}
.share_btn .fa-square-x-twitter {
  color: #333333;
}
.share_btn.bottom {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.share_btn.bottom > div {
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  width: 200px;
  transition: .5s;
}
.share_btn.bottom > div:hover {
  opacity: .6;
  transform: scale(.95);
}
.share_btn.bottom > div:first-child {
  background-color: #00B900;
}
.share_btn.bottom > div:nth-child(2) {
  background-color: #333;
}
.share_btn.bottom > div:last-child {
  background-color: #3B5998;
}
.share_btn.bottom .fa-brands {
  font-size: 2rem;
  color: #fff;
}
.share_btn.bottom a {
  width: 100%;
  height: 100%;
  margin: 0;
  color: #fff;
}
.share_btn.bottom > div:not(:nth-of-type(2)) .fa-brands::before {
  margin-right: 5px;
}
.share_btn_wrap {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 4rem auto;
  text-align: center;
}
@media screen and (max-width:450px) {
  .share_btn.bottom {
    flex-direction: column;
    align-items: center;
  }
}
/*背景グレイ*/
.back-glay {
  padding: 20px 60px;
  background: #f1f1f1;
  border-radius: 10px;
  box-sizing: border-box;
  column-gap: 10px;
}
/*背景グレイ 余白小さいver*/
.back-glay02 {
  background: #f1f1f1;
  padding: 30px;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 650px) {
  .back-glay02 {
    padding: 20px;
  }
}
/*下線*/
.border {
  border-bottom: 1px solid #333;
}
/*太字*/
.bold {
  font-weight: 700;
}
/*余白*/
.mb40 {
  margin-bottom: 4rem
}
.mb60 {
  margin-bottom: 6rem
}
/* もっと見るボタン */
.more_list .example_data.is-hidden {
  display: none;
}
.more {
  margin: auto;
  max-width: 240px;
  width: 90%;
}
.more .btn {
  height: 50px;
  font-size: 1.8rem;
  width: 100%;
  border-radius: 999px;
  background-color: #0070c9;
  border: none;
  color: #fff;
  cursor: pointer;
} /* コラムindex もっと見るボタン */
.column_more > div.is-hidden02 {
  display: none;
}
.column_more > div:not(:last-of-type) {
  margin-bottom: 6rem;
  clear: both;
  margin: 0px 0 60px 0;
  overflow: hidden;
}
.more02 {
  margin: auto;
  max-width: 240px;
  width: 90%;
}
.more02 .btn {
  height: 50px;
  font-size: 1.8rem;
  width: 100%;
  border-radius: 999px;
  background-color: #0070c9;
  border: none;
  color: #fff;
  cursor: pointer;
}
/*タグ*/
.cat-tag {
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-end;
}
.cat-tag li a {
  display: inline-block;
  background: #2c2623;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 1.2rem;
  color: #fff;
  margin-left: 10px;
}
/*フォーム*/
select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  color: #333;
  font-size: 16px;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
#contactForm p {
  line-height: 0.5;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
#contactForm dt {
  margin-bottom: 10px;
}
#contactForm .select {
  background: #fff;
  height: 40px;
  width: 300px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.select::after {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  z-index: -1;
}
/*div.col_athird img{
    float: left;
    width: 80%;
    margin-right: 0;
    text-align: left;
}*/
/*div.col_athird {
    float: left;
    width: 30%;
    margin-right: 3%;
    text-align: left;
}
*/
/*トップページ用
.servicemenu {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    grid-template:
        "menu1 menu2 menu3" 1fr
        "menu1 menu4 menu5" 1fr/550px 1fr 1fr;
}

*/
/*contentsページのindex画像*/
#content_index img {
  max-width: 100%;
  width: 350px;
  height: auto;
}
/*バナー風*/
.bnr1 {
  width: 80%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.bnr1:hover {
  opacity: 0.8;
}
.bnr1 img {
  width: 100%;
  position: relative;
  margin: 0 auto;
  transition: 1s all;
}
.bnr1 img:hover {
  transform: scale(1.2, 1.2);
  transition: 0.5s all;
}
.bnr1 .bnr-text {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  text-align: left;
  color: white;
}
.bnr1 .bnr-title {
  font-size: 2.5rem;
  font-weight: bold;
  filter: drop-shadow(0px 0px 3px #333);
}
.bnr1 .bnr-text .bnr-read {
  font-size: 1rem;
  color: black;
}
.bnr1 .bnr-btn {
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 20%;
  border-radius: 30px;
  background-color: #000;
  color: #fff;
  padding: 10px;
  text-align: center;
  z-index: 1;
  transition: .3s;
}
/*チェックボックスのリスト*/
ul.check li {
  margin: 0px 0px 0px 10px;
  line-height: 150%;
}
ul.check li:before {
  content: "\f14a";
  font-family: FontAwesome;
  margin-right: .7em;
}
/*サービス紹介用*/
.exflex_service {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0px;
}
@media only screen and (max-width: 1024px) {
  .exflex_service {
    display: flex;
    flex-direction: column;
  }
  .exflex_service .exfle3 {
    width: 100%
  }
  .exflex_service .exfle3 .catebnr h4 {
    font-size: 1.8rem;
    padding: 5px;
  }
}
/*工場LP用*/
.factory-fv {
  background-image: url("../images/lp/lp-factory/factory-fv01.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.factory-fv .inner {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 1260px;
  margin-left: auto;
  margin-right: auto;
}
.factory-fv .inner .mvText {
  display: flex;
  align-items: center;
}
.factory-fv .inner .large {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 3px;
  margin-right: 100px;
}
.factory-fv .inner .medium {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 3px;
}
.factory-fv .under .specialBtn {
  width: 48%;
}
.factory-fv .under .specialBtn a {
  display: block;
  background: #f26b4e;
  border-bottom: 5px solid #d24628;
  padding: 10px 20px;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
.factory-fv .under {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.factory-fv .under .specialBtn a .spbtnLead {
  background: #fff;
  padding: 0;
  text-align: center;
  margin: 0;
  color: #000;
  line-height: 2;
  font-size: 1.3rem;
  letter-spacing: 2px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.factory-fv .under .specialBtn a .spbtnTxt {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 0;
  line-height: 2;
  text-shadow: 1px 1px 1px rgba(147, 147, 147, 0.3);
}
@media only screen and (max-width: 1024px) {
  .factory-fv .inner {
    width: 98%;
  }
  .factory-fv .inner .mvText {
    flex-wrap: wrap;
  }
  .factory-fv .inner .large {
    font-size: 8vw;
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .factory-fv .under {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
  }
  .factory-fv .under .specialBtn {
    width: 100%;
  }
  .factory-fv .under .specialBtn a {
    width: 100%;
  }
  .factory-fv .inner .medium {
    width: 100%;
    margin-top: 15px;
    margin-right: 0;
    text-align: center;
    font-size: 4vw;
  }
}
/*マンションLP用*/
.apartment-fv {
  background-image: url("../images/lp/lp-apartment/apartment-fv.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.apartment-fv .inner {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 1260px;
  margin-left: auto;
  margin-right: auto;
}
.apartment-fv .inner .mvText {
  display: flex;
  align-items: center;
}
.apartment-fv .inner .large {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 3px;
  margin-right: 100px;
}
.apartment-fv .inner .medium {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 3px;
}
.apartment-fv .under .specialBtn {
  width: 48%;
}
.apartment-fv .under .specialBtn a {
  display: block;
  background: #FF0000;
  border-bottom: 5px solid #970B0B;
  padding: 10px 20px;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
.apartment-fv .under {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.apartment-fv .under .specialBtn a .spbtnLead {
  background: #fff;
  padding: 0;
  text-align: center;
  margin: 0;
  color: #000;
  line-height: 2;
  font-size: 1.3rem;
  letter-spacing: 2px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.apartment-fv .under .specialBtn a .spbtnTxt {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 0;
  line-height: 2;
  text-shadow: 1px 1px 1px rgba(147, 147, 147, 0.3);
}
@media only screen and (max-width: 1024px) {
  .apartment-fv .inner {
    width: 98%;
  }
  .apartment-fv .inner .mvText {
    flex-wrap: wrap;
  }
  .apartment-fv .inner .large {
    font-size: 8vw;
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .apartment-fv .under {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
  }
  .apartment-fv .under .specialBtn {
    width: 100%;
  }
  .apartment-fv .under .specialBtn a {
    width: 100%;
  }
  .apartment-fv .inner .medium {
    width: 70%;
    margin-left: 20%;
    margin-top: 15px;
    margin-right: 0;
    text-align: left;
    font-size: 4vw;
  }
}
/*スマホの時ちょっと小さいh1*/
@media only screen and (max-width: 1024px) {
  #main .h1-m {
    font-size: 3rem;
    color: #000;
    letter-spacing: 0.08em;
    margin-bottom: 50px;
  }
}
/*表のフォントサイズ*/
.tashaHikakuTbl table td .ma, .tashaHikakuTbl table th .ma {
  font-size: 2.5rem;
  color: #f26b4e;
  font-weight: 900;
}
.tashaHikakuTbl table td .ba, .tashaHikakuTbl table th .ba {
  font-size: 2.5rem;
  color: #696969;
  font-weight: 900;
}
.tashaHikakuTbl table td .san, .tashaHikakuTbl table th .san {
  font-size: 2.5rem;
  color: #0000cd;
  font-weight: 900;
}