@charset "UTF-8";
/* CSS Document */

@font-face {
  font-family: "montserrat";
  src: url("../font/montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "montserrat";
  src: url("../font/montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "montserrat";
  src: url("../font/montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "montserrat";
  src: url("../font/montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
}

html {
  font-size: 62.5% /* 16px × 62.5% = 10px */;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "montserrat", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;

  overflow-x: hidden;
}

/* footer下部固定 */
body {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
/* /footer下部固定 */

img {
  max-width: 100%;
  height: auto;
}
.sp,
.sp-br,
.nav_menu ul.sp {
  display: none;
}
.pc,
.pc-br {
  display: block;
}

a {
  display: block;
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: 0.5;
  transition-duration: 0.3s;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 86px;
  background-color: #fff;
  box-shadow: 0px 3px 13px #0000001a;
  z-index: 900;
  transition: 0.4s ease-in-out;
}
.hide {
  top: -86px;
}

.top_nav {
  position: absolute;
  width: 100%;
  max-width: 960px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.top_nav .logo {
  position: absolute;
  left: 0;
}

/*--[ regist 2022/09 ]--*/
/*
.top_nav .logo img {
  padding-top: 20px;
}
*/
.top_nav .logo img {
  padding-top: 25px;
}
/*--[ regist 2022/09 ]--*/

/*--[ regist 2022/09 ]--*/
/*
.nav_menu ul {
  display: flex;
  width: 500px;
  justify-content: space-between;
}
*/
.nav_menu ul {
  display: flex;
  width: 635px;
  justify-content: space-between;
  align-items: center;
}
/*--[ regist 2022/09 ]--*/

.nav_menu li {
  padding: 20px 0;
}
.nav_menu li a:hover,
.nav_menu li:hover {
  opacity: 1;
  color: #e60039;
}
/*--[ regist 2022/09 ]--*/
.nav_menu li a.hov:hover {
  opacity: 0.6;
}
/*--[ regist 2022/09 ]--*/
.nav_menu li {
  position: relative;
  display: inline-block;
}
.nav_menu .f_menu::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  left: 50%;
  bottom: 12px;
  background-color: #e60039;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.nav_menu li:hover::after {
  width: 100%;
}
.service_menu {
  position: relative;
  cursor: pointer;
}
.nav_menu .service_menu .drop_menu {
  position: absolute;
  display: block;
  width: 164px;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
/* 230310 inquiry icon */
.nav_menu .inquiry_li {
  display: flex;
  justify-content: space-between;
}
.nav_menu .inquiry_li .inquiry_icon {
  width: 36px;
  height: 36px;
  margin-left: 20px;
}

@media (min-width: 750px) {
  .nav_menu .service_menu:hover .drop_menu {
    opacity: 1;
    visibility: visible;
  }
}
.nav_menu .service_menu:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  left: 50%;
  bottom: 12px;
  background-color: #e60039;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.f_menu:hover {
  transition-duration: 0.3s;
}
/* .nav_menu .service_menu:hover .drop_menu {
  opacity: 1;
} */
/* .nav_menu ul .service_menu:hover .drop_menu {
  display: block;
  position: absolute;
  width: 163px;
  height: auto;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
} */

.nav_menu ul .drop_menu li {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 6px 0;
  color: #fff;
  text-align: center;
  background-color: #e60039;
  font-size: 1.3rem;
  transition: 0.5s;
}
.nav_menu ul .drop_menu .sp {
  display: none;
}
.nav_menu ul .drop_menu li a {
  color: #fff;
}
.nav_menu ul .drop_menu li a:hover {
  opacity: 0.5;
}

.mv {
  position: relative;
  /* z-index: -1; */
  width: 100%;
  /* background-color: #fff; */
  margin-top: 86px;
}
.mv .slider_box .main_slide li {
  /* background-color: #fff; */
  height: auto;
}
.mv .slider_box .main_slide li a:hover {
  opacity: 0.9;
}

/* Arrows */
.slick-prev,
.slick-next,
.slick-prev:before,
.slick-next:before {
  display: none;
  right: 0;
  left: 0;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 4%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 3px;
  margin: 0 0.5%;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 40px;
  height: 3px;
  padding: 0;
  opacity: 0.2;
  background-color: #fff;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: 0;
  outline: none;
  transition: 0.5s;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
  opacity: 1;
  background-color: #e60039;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  opacity: 1;
  background-color: #e60039;
}
.slick-active {
  /* opacity: 1;
    background-color: #E60039; */

  display: block;
  width: 40px;
  height: 3px;
  padding: 0;
  opacity: 1;
  background-color: #e60039;
}

.inner {
  width: 100%;
  margin: 30px auto 0;
  /* margin: 48px auto 0; */

  max-width: 960px;
}
.news {
  width: 750px;
}
h2 {
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: "montserrat";
  height: 34px;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 3.5em;
}
h2:before {
  content: "";
  position: absolute;
  display: inline-block;
  border-bottom: 1px solid #de151d;
  width: 40px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.news {
  margin-bottom: 80px;
}
.news_list {
  font-size: 1.6rem;
  margin-bottom: 70px;
}
.news_list .day_tag {
  width: 28%;
  margin-right: 10px;
}
.news_list li {
  display: flex;
  margin-bottom: 20px;
}
.news_list li .date {
  display: inline-block;
  width: 106px;
  color: #e60039;
  font-weight: 500;
  line-height: 26px;
}
.news_list li .category {
  display: inline-block;
  width: 90px;
  height: 26px;
  font-size: 1.3rem;
  line-height: 26px;
  text-align: center;
  color: #fff;
  background-color: #e60039;
  border-radius: 13px;
}
.news_list li .ul_text {
  text-decoration: underline;
  width: 70%;
  overflow: hidden;
}
.news_list li .ul_text a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* pagenation */
.pager ul.pagination {
  text-align: center;
  padding: 0;
  margin: 0 auto 60px;
}

.pager .pagination li {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 2px;
  padding: 0;
  text-align: center;
  /* background:#9D50BB; */
}

.pager .pagination li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  display: table;
  color: #000;
  text-decoration: none;
  vertical-align: middle;
}

.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active {
  color: #e60039;
  /* background: #ccf; */
}

.pager .arrow-r::before {
  display: block;
  position: absolute;
  content: "";
  right: 19px;
  top: 23.5px;
  width: 20px;
  height: 1px;
  background: #000;
}
.pager .arrow-r::after {
  display: block;
  position: absolute;
  content: "";
  right: 20px;
  top: 21px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
}

.pager .arrow-l::before,
.pager .arrow-r::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pager .arrow-l::after {
  top: 12px;
  left: 6px;
}
.pager .arrow-r::after {
  top: 12px;
  right: 6px;
}

.pager .arrow-l:hover::before,
.pager .arrow-r:hover::before {
  background: #e60039;
}
.pager .arrow-l:hover::after,
.pager .arrow-r:hover::after {
  border-right: 1px solid #e60039;
  border-top: 1px solid #e60039;
}

.btn {
  position: relative;
  width: 180px;
  text-align: center;
  margin: 0 auto;
}
.arrow-r {
  display: block;
  padding: 14px;
  text-align: center;
}
.arrow-r::before {
  display: block;
  position: absolute;
  content: url(../image/arrow.svg);
  width: 24px;
  height: auto;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.arrow-l {
  display: block;
  padding: 14px;
  text-align: center;
}

.arrow-l::before {
  display: block;
  position: absolute;
  content: "";
  left: 19px;
  top: 23.5px;
  width: 20px;
  height: 1px;
  background: #000;
}
.arrow-l::after {
  display: block;
  position: absolute;
  content: "";
  left: 20px;
  top: 21px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(-135deg);
}

.block {
  width: 100%;
  height: 334px;
  padding-top: 90px;
  margin-bottom: 7px;
}
.block h2 {
  color: #fff;
}
.btn_red {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  border-radius: 2em;
  border: 1px solid #000;
  background-color: #fff;
  transition: 0.5s;
}
.btn05 {
  overflow: hidden;
}

.btn05:before {
  content: "";
  /* z-index: -1; */
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-color: #e60039;
  border-radius: 2em;
  transition: 0.2s ease-in-out;
}

.btn05 a:hover {
  color: #fff;
  opacity: 0.99;
}
.btn05:hover:before {
  left: 0;
}
.btn_red .arrow-r:hover::before {
  content: url(../image/arrow_wh.svg);
}

/* .btn_red:hover{
    color: #fff;
    background-color: #E60039;
    border: 1px solid #E60039;
}
.btn_red .arrow-r:hover::before{
    background: #fff;
}
.btn_red .arrow-r:hover::after{
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
} */

.product {
  background: url(../image/top_product_bg.png) no-repeat center / cover;
}

.row_item {
  display: flex;
}
.row_item .block {
  position: relative;
  width: 50%;
  height: 176px;
  margin-right: 7px;
  padding-top: 54px;
}
.row_item .block:nth-of-type(2) {
  margin-right: 0;
}
.row_item .block h2 {
  margin-bottom: 17px;
}
.row_item .block p {
  color: #fff;
  font-weight: 400;
  text-align: center;
}
.about {
  background: url(../image/top_about_bg.png) no-repeat center / cover;
}
.history {
  background: url(../image/top_history_bg.png) no-repeat center / cover;
}
.bk_btn {
  position: absolute;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 54px;
}
.bk_btn:hover {
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
}

.footer {
  position: relative;
  /* padding: 45px 3.5% 115px; */
  background-color: #000;
}
.go-top {
  /* position: relative; */
  position: fixed;
  width: 116px;
  height: 34px;
  padding-top: 14px;
  bottom: 0;
  right: 50px;
  color: #fff;
  font-size: 1.2rem;
  background-color: #e60039;
  text-transform: uppercase;
  text-align: center;
  font-family: "Montserrat";
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.go-top::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 20%;
  left: 48%;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform-origin: center;
  transform: rotate(45deg);
}
.go-top:hover {
  background-color: #ff5d85;
}
.go-top:hover::after {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.active {
  opacity: 1;
  visibility: visible;
}

/*このクラスが付与されると表示する*/
.absolute {
  position: absolute;
  top: -34px;
  bottom: auto;
}

.footer_logo {
  position: absolute;
  top: 45px;
  left: 18%;
}

.footer_logo img {
  width: 100px;
}
.footer_nav {
  padding: 45px 3.5% 115px;
}
.nav_box {
  padding-left: 30%;
  /* padding: 10% 30% 10% 30%; */
}

.footer_menu {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  color: #fff;
}

.footer_nav .footer_menu:first-of-type {
  width: 24%;
  vertical-align: top;
}
.footer_nav .footer_menu:last-of-type {
  width: 75%;
}
.sub_f_menu .menu_box {
  width: 30%;
}

.footer_menu .menu_box {
  display: inline-block;
  vertical-align: top;
}
.footer_menu .menu_box ul {
  width: 100%;
  margin-right: 80px;
}

.menu_box li {
  margin-bottom: 10px;
}
.menu_box li {
  position: relative;
}
.menu_box li a {
  color: #fff;
}
.menu_box li::after {
  display: block;
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  top: 5px;
  left: -14px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
.menu_box li.non_arrow::after {
  display: none;
}
.footer_copy {
  position: absolute;
  right: 12%;
  bottom: 6%;
  font-size: 1.2rem;
  font-weight: 100;
  color: #fff;
}

/* mirror */
.footer_nav_mi {
  display: flex;
  width: 96%;
  max-width: 960px;
  margin: 2% auto;
  justify-content: space-between;
}
.footer_logo_mi {
  width: 20%;
}
.footer_logo_mi img {
  width: 100px;
  height: 24px;
}
.footer_copy_mi {
  font-size: 1.2rem;
  font-weight: 100;
  color: #fff;
  text-align: right;
  line-height: 24px;
}

@media screen and (max-width: 750px) {
  .footer_nav_mi {
    width: 86%;
    margin: 6% auto;
  }
  .footer_logo_mi {
    width: 28%;
  }
}
.sns_list {
  margin-top: 10px;
}
.sns_list .sns_icon {
  display: inline-block;
  width: 25px;
  margin: 3% 4% 0;
}
.sns_list .sns_icon:first-of-type {
  margin-left: 0;
  width: 22px;
}

/* NEWS */
.breadcrumb {
  width: 100%;
  max-width: 960px;
  margin: 123px auto 0;
  /* text-transform: uppercase; */
}
.breadcrumb .bread_list li:first-of-type {
  text-transform: uppercase;
}
.breadcrumb .bread_list {
  display: flex;
  font-size: 1.3rem;
  flex-wrap: wrap;
}
.breadcrumb .bread_list li {
  display: flex;
  list-style: none;
  color: #000;
  font-weight: 400;
  margin-right: 0.3em;
}
.breadcrumb li::after {
  content: ">";
  padding: 0 0.2em;
  color: #555;
  margin-left: 0.4em;
}

.breadcrumb li:last-child::after {
  content: "";
}

.subtitle {
  font-size: 2.7rem;
  height: 46px;
  margin-bottom: 2.5em;
}

/* NEWS_article */
.article {
  margin-bottom: 80px;
}
.article_title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.article_tag {
  font-size: 1.3rem;
  line-height: 20px;
  text-align: right;
  color: #e60039;
  margin-bottom: 30px;
}
.tag {
  display: inline-table;
  width: 70px;
  height: 20px;
  font-size: 1.1rem;
  line-height: 20px;
  margin-left: 10px;
  text-align: center;
  color: #fff;
  background-color: #e60039;
}
.article_box {
  margin-bottom: 60px;
}
.article_box .contents {
  width: 750px;
  margin: 0 auto;
}
.article_text p {
  margin-bottom: 36px;
  line-height: 2;
  word-wrap: break-word;
}
.article_pic {
  display: flex;
  justify-content: space-around;
  margin-bottom: 70px;
}
.sheet {
  text-align: center;
}
.table_dl {
  background-color: #f8f8f8;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 40px 0 60px;
}
.table_dt {
  padding: 10px 15px 0 15px;
  border-top: 1px solid #ccc;
  width: 30%;
  float: left;
}
.table_dd {
  padding: 10px 15px 0 20px;
  padding-bottom: 6px;
  border-top: 1px solid #ccc;
  background: #fff;
  margin-left: 30%;
  border-left: 1px solid #ccc;
  text-align: left;
}
.table_dd::after {
  content: "";
  display: block;
  clear: both;
}
.table_dt span {
  font-size: 14px;
}

/* products */
.menu_list {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 56px;
}
.menu_list ul {
  display: flex;
  justify-content: left;
  /* flex-wrap: wrap; */
}
.menu_name {
  width: 18%;
  height: 28px;
  height: 34px;
  border-bottom: 1px solid #646464;
  margin-bottom: 40px;
  margin-left: 2%;
}
.menu_list ul .menu_name:last-of-type {
  margin-bottom: 0px;
}
.menu_name a {
  height: 34px;
}
.menu_name a:hover {
  opacity: 1;
  color: #e60039;
  border-bottom: 4px solid #e60039;
}

.full_mv img {
  width: 100%;
}
.product-box {
  padding-top: 70px;
}
.bg_gray {
  background-color: #f0f0f0;
}
.type_title p {
  width: 100%;
  height: 40px;
  font-weight: 900;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 40px;
  padding-left: 14px;
  color: #e60039;
  background-color: #fff;
  box-shadow: 2px 2px 6px #00000026;
  margin-bottom: 55px;
}

.item_list ul {
  display: flex;
  justify-content: space-between;
  /* justify-content: left; */
  flex-wrap: wrap;
  /* margin-bottom: 100px; */
}
.item_list .device_list {
  justify-content: left;
}

.item_box {
  /* display: inline-block; */
  position: relative;
  width: 46.876%;
  /* height: 550px; */
  height: auto;
  padding: 2%;
  /* background: url(../image/products/item_box_bg.png); */
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #fff;
  margin-bottom: 6%;
  border-radius: 20px;
  box-shadow: 5px 5px 10px #0000000d;
}
li.item_box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 0.4s;
  background-color: transparent;
}

li.item_box:hover::after {
  background-color: rgba(255, 255, 255, 0.3);
}
.item_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.thumb_bg {
  position: absolute;
  top: 0;
  left: 0;
}
.thumb_img {
  position: absolute;
  width: 78%;
  /* top: 12%; */
  top: 70px;
  margin-bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.item_title {
  position: absolute;
  width: 90%;
  /* top: 3%; */
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}
.item_title .item_name {
  width: 80%;
  display: inline-block;
}
.item_title .item_name span {
  font-size: 2.5rem;
  margin-right: 2%;
}
.item_title .new_tag {
  position: absolute;
  display: inline-block;
  right: 0;
  /* width: 58px; */
  /* height: 20px; */
  padding: 0 14px;
  font-size: 1.3rem;
  line-height: 20px;
  text-align: center;
  background-color: #de151d;
  border-radius: 10px;
}
.item_contents {
  position: relative;
  display: inline-block;
  width: 100%;
  /* padding: 70% 10% 0; */
  padding: 300px 30px 80px;
  left: 50%;
  transform: translateX(-50%);
}
.item_detail img {
  margin-bottom: 4%;
}
.item_lead {
  /* width: 81.483%;
  margin: 0 auto; */
}
.item_lead p {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 500;
}
.thm-spec dt,
.thm-spec dd {
  width: 48%;
  overflow-wrap: break-word;
}
.thm-spec dt {
  float: left;
}
.thm-spec dd {
  float: right;
}
.item_table {
  margin-bottom: 15px;
  overflow: hidden;
}
.item_table dt {
  float: left;
  width: 32%;
}
.item_table dd {
  position: relative;
  float: right;
  width: 64%;
}
.item_table dd::before {
  position: absolute;
  content: "：";
  left: -6%;
}

.clear_box {
  clear: both; /* 回り込みを解除する */
}

.item_box .link_box {
  position: absolute;
  width: 92%;
  height: 80px;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.link_box_acc {
  position: relative;
  width: 100%;
  padding-top: 30%;
  z-index: 1;
}

.item_box .btn_circle a {
  /* float: left; */
  position: absolute;
  width: 66px;
  height: 66px;
  bottom: 0;
  border: 1px solid #e60039;
  border-radius: 100%;
}
.item_box .btn_circle a:hover {
  color: #fff;
  background-color: #e60039;
  opacity: 1;
}
.item_box .btn_circle a {
  position: absolute;
  width: 66px;
  height: 66px;
  /* top: 50%; */
  left: 0;
  bottom: 0;
  padding: 18px 0;
  /* padding: 4.4% 0; */
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
  /* margin-top: 28%; */
  color: #e60039;
}

.item_box .btn_text {
  position: absolute;
  width: 112px;
  bottom: 10px;
  right: 0;
}
.item_box .btn_text .arrow-r {
  padding: 0;
  text-align: left;
}
.item_box .btn_text .arrow-r::after {
  top: 7px;
  right: 0;
}
.item_box .btn_text .arrow-r::before {
  right: 0;
}

.acc_title p {
  width: 100%;
  padding: 6px 20px;
  font-size: 1.6rem;
  font-weight: 500;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin-bottom: 30px;
}

.item_acc {
  position: relative;
  width: 290px;
  height: auto;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  margin-right: 4rem;
}
.item_acc:nth-of-type(3n) {
  margin-right: 0;
}
.item_acc::before {
  position: absolute; /*--positionを追加--*/
  top: 0;
  left: 100%;
  margin: 0 2rem;
  content: "";
  width: 1px; /*--縦線の太さ(幅)--*/
  height: 100%;
  background-color: #707070; /*--縦線の色--*/
}
.item_acc:nth-of-type(3n)::before {
  display: none;
}

.item_acc .acc_contents img {
  margin-bottom: 20px;
}
.acc_name p {
  font-weight: 600;
}
.acc_name p:last-of-type {
  font-size: 1.8rem;
}
.box {
  box-shadow: 0px 0px 20px #00000029;
}
.box_item {
  padding: 60px;
  border-top: 1px solid #707070;
}
.box_item:first-of-type {
  border: none;
}
.box_service {
  width: 480px;
  margin: 0 auto;
  text-align: center;
}
.box_title {
  margin-bottom: 38px;
  text-align: center;
}
.box_title img {
  display: inline-block;
  margin-right: 10px;
}
.box_title p {
  display: inline-block;
  font-size: 3rem;
  font-weight: 600;
  color: #e60039;
  line-height: 70px;
  vertical-align: top;
}
.line_text {
  font-size: 2.7rem;
  padding-bottom: 4px;
  border-bottom: 2px solid #e60039;
  margin-bottom: 12px;
  font-weight: 600;
}
.box_service .text_scr {
  text-align: left;
  margin-bottom: 56px;
}

.box_shop {
  /* width: 816px; */
  width: 86.901%;
  margin: 0 auto;
  text-align: center;
  max-width: 815px;
}
.shop_link {
  position: relative;
  /* display: flex; */
  /* justify-content: space-between; */
}
.shop_link::before {
  /* position: absolute;
  display: inline-block;
  content: "";
  width: 1px; */

  /* height: 400px; */

  /* height: 100%;
  top: 50%;
  left: 50%;
  background-color: #707070;
  transform: translate(-50%, -50%); */
}
.link_list {
  position: relative;
  /* width: 340px; */
  /* width: 44.818%; */
  width: 100%;
  border-bottom: 1px solid #707070;
  /* margin-bottom: 40px; */
  margin: 0 auto 40px;
}
.shop_link p {
  font-size: 2rem;
  font-weight: 600;
  color: #646464;
  margin-bottom: 36px;
}
.link_list ul {
  width: 44.818%;
  margin: 0 auto;
}
.link_list .link_item {
  position: relative;
  width: 100%;
  height: 80px;
  border: 1px solid #707070;
  border-radius: 20px;
  margin-bottom: 30px;
}
.link_list .link_item img {
  position: absolute;
  /* width: 60%; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* .link_list::after {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin: 0 6.75rem;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #707070;
} */

.link_list:last-of-type::after {
  display: none;
}
.link_list:last-of-type {
  border: none;
}

.bottom_btn {
  width: 100%;
  padding: 46px;
}

/* products_detail */
.device_title {
  position: relative;
  width: 100%;
  height: 66px;
  margin-bottom: 40px;
}
.code_num {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.3rem;
  text-align: right;
  margin-bottom: 10px;
}
.acc_num_title {
  margin-bottom: 0;
}
.acc_code_num {
  font-size: 1.3rem;
}
.model_num {
  position: absolute;
  width: 56%;
  bottom: 0;
  left: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}
.acc_model_num {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}
.btn_dl {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
}
.btn_dl p {
  margin-right: 20px;
}
.btn_dl p:last-of-type {
  margin-right: 0;
}

.btn_dl .r-fix {
  position: absolute;
  right: 0;
}

.box_dl a {
  position: relative;
  display: table-cell;
  width: 180px;
  height: 35px;
  color: #fff;
  font-size: 1.2rem;
  text-align: left;
  padding-left: 8%;
  vertical-align: middle;
  background-color: #f45e6f;
  border-radius: 8px;
  vertical-align: middle;
}
.box_dl a::after {
  position: absolute;
  top: 32%;
  right: 6%;
  margin-left: 6px;
  content: url(../image/products/DL_icon.png);
}

.detail_menu .menu_name {
  width: 100%;
}
#mainImg {
  width: 100%;
}
.product_imgs {
  display: inline-block;
  width: 50%;
  margin-right: 40px;
}
.product_imgs img {
  padding: 4%;
  border: 1px solid #707070;
  margin-bottom: 20px;
}
.image_thumbs {
  display: flex;
  width: 100%;
  overflow-x: scroll;
  /* justify-content: space-between; */
  margin-bottom: 20px;
}
.image_thumbs li {
  width: 18%;
  width: 88px;
  height: auto;
  padding-right: 10px;
  flex-shrink: 0;
}
.product_detail {
  display: inline-block;
  width: 44%;
  vertical-align: top;
}
.product_detail .product_name {
  font-size: 2.4rem;
  font-weight: 600;
  color: #e60039;
  margin-bottom: 30px;
}
.box_product {
  margin-bottom: 100px;
}

.product_detail .item_table {
  margin-bottom: 30px;
}
.btn_buy a {
  position: relative;
  width: 100px;
  height: 100px;
  border: 1px solid #e60039;
  border-radius: 100%;
  color: #e60039;
}
.btn_buy a p {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.5rem;
  font-weight: 500;
  transform: translate(-50%, -50%);
}
.btn_buy a:hover {
  opacity: 1;
  color: #fff;
  background-color: #e60039;
}

.product_scr .full_mv img {
  /* margin-bottom: 50px; */
  margin: 0 auto 20px;
}
.product_text {
  width: 960px;
  /* margin: 0 auto; */
  margin: 0 auto 75px;
  text-align: center;
}

.scr_title {
  font-weight: 600;
  font-size: 1.4em;
  margin-bottom: 10px;
}
.function_list ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.function_item {
  width: 20%;
  margin-right: 6.5%;
  overflow-wrap: break-word;
}
.function_item:nth-of-type(4n) {
  margin-right: 0;
}
.function_item img {
  width: 42%;
  margin: 0 auto 10px;
}

.function_item p {
  text-align: center;
}

.fuction_name {
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.function_point .full_mv img {
  margin-bottom: 15px;
}
.function_point .product_text {
  text-align: left;
  margin-bottom: 50px;
}

.point_list ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}
.point_item {
  width: 32%;
  margin: 0 2% 4% 0;
  display: flex;
}
.point_item:nth-of-type(3n) {
  margin-right: 0;
}
.point_icon {
  display: inline-block;
  /* vertical-align: middle; */
  width: 34%;
}
.point_scr {
  display: inline-block;
  width: 60%;
  /* vertical-align: middle; */
  padding: 3% 0 0 2%;
}
.point_scr .bold {
  font-weight: 600;
}

.part_info {
  margin-bottom: 60px;
}
.part_list .row {
  display: flex;
}
.part_list .column {
  display: block;
}
.part_list .column .part_img {
  width: 100%;
}
.part_img {
  width: 470px;
  margin: 0 40px 60px 0;
}
.part_img:last-of-type {
  margin-right: 0;
}
.part_img p {
  display: inline-block;
  padding: 1px 18px;
  color: #fff;
  background-color: #e60039;
  border-radius: 2em;
}
.part_namelist {
  position: relative;
  display: flex;
  width: 100%;
  padding: 2%;
  background-color: #f5f5f5;
}
.part_namelist ul {
  width: 50%;
  border-right: 1px dashed #000;
}
.part_namelist ul:last-of-type {
  border: none;
}
.part_namelist li {
  line-height: 2;
  padding: 0 10px 0 20px;
}

.pink p {
  color: #fff;
  background-color: #f45e6f;
}
.border .item_acc .acc_contents img {
  border: 1px solid #707070;
}
.product_subtitle h2 {
  margin-bottom: 2.5em;
}
.product_subtitle h2::before {
  width: 340px;
  border-bottom: 2px solid #de151d;
  bottom: -4px;
}
.detail_btnbox {
  padding: 4% 0;
}
.btn_detail a {
  display: block;
  width: 300px;
  height: 89px;
  font-size: 1.5rem;
  line-height: 89px;
  text-align: center;
  margin: 0 auto;
  color: #e60039;
  border: 1px solid #e60039;
  border-radius: 10px;
}

/* product spec */

.line_title {
  height: 36px;
  font-size: 2rem;
  border-bottom: 2px solid #e60039;
  margin-bottom: 40px;
  font-weight: 600;
}
.spec_sheet {
  width: 80%;
  margin: 0 auto 60px;
  text-align: left;
}
.spec_sheet .device_name {
  font-size: 1.4rem;
  margin-bottom: 1%;
}
.sheet_dl {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  font-size: 1.4rem;
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
  margin-bottom: 2%;
}
.sheet_dt {
  width: 16%;
  background-color: #f5f5f5;
}
.sheet_dd {
  width: 84%;
}
.sheet_dt,
.sheet_dd {
  padding: 8px 14px;
  box-sizing: border-box;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  overflow-wrap: break-word;
}
.package_list {
  display: flex;
  flex-wrap: wrap;
}
.package_list ul {
  width: 50%;
  margin-bottom: 60px;
}
.package_item {
  margin-bottom: 4px;
}
.package_item::before {
  content: "■";
  color: #e60039;
}
.package_list .package_detail {
  width: 100%;
}
.package_list .package_detail:last-of-type {
  margin-bottom: 0;
}
.size {
  margin: 10px 0;
}
.size_info {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}
.size_info .package_item {
  width: 30%;
  margin: 0 3% 3% 0;
}
.size_info .package_item:last-of-type {
  margin-right: 0;
}

.acc_model .device_title {
  height: 100px;
  margin-bottom: 40px;
}
.acc_model .code_num {
  top: unset;
  bottom: 0;
}

/* company */
.co_box {
  display: flex;
  width: 700px;
  height: 70px;
  margin: 0 auto 40px;
}
.co_box .co_logo {
  width: 26%;
  /* border-right: 1px solid #000; */
}
.co_box .co_logo img {
  width: 148px;
  padding-top: 20px;
}
.co_info {
  padding: 14px 0 0 26px;
  border-left: 1px solid #000;
}
.co_name {
  font-weight: 600;
}
.co_name span {
  color: #e60039;
}
.company_name {
  font-size: 1.7rem;
  color: #e60039;
  text-align: center;
  margin-bottom: 30px;
}
.photos {
  margin-bottom: 100px;
}
.photos ul {
  display: flex;
}
.photos:last-of-type {
  margin-bottom: 120px;
}
.co_detail {
  width: 72.917%;
  margin: 0 auto 30px;
}
/* .co_sheet {
  text-align: left;
  margin-bottom: 50px;
} */
.co_sheet .sheet_dl {
  border: none;
}
.co_sheet .sheet_dt,
.co_sheet .sheet_dd {
  border: none;
  background: #fff;
}
.co_sheet .sheet_dt:nth-last-of-type(2n),
.co_sheet .sheet_dd:nth-last-of-type(2n) {
  background-color: #f5f5f5;
}
.co_list {
  width: 100%;
  display: flex;
  margin: 0 auto 50px;
  justify-content: space-between;
}
.co_list .co_info {
  margin-right: 5%;
}
.co_logobox {
  width: 150px;
  margin: 6% auto;
}

/* 230810 */
.concept_list li {
  margin-bottom: 30px;
  font-size: 1.5rem;
}
.concept_list span {
  display: block;
  font-size: 20px;
  font-weight: 600;
}
.co_sentence {
  font-size: 1.5rem;
  margin-bottom: 40px;
}
.co_sentence p {
  margin-bottom: 26px;
}
.co_pic {
  width: 100%;
  margin-bottom: 40px;
}
.co_detail2 {
  width: 72.917%;
  margin: 0 auto 100px;
}
.list_dl {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  font-size: 1.4rem;
  margin-bottom: 2%;
}
.list_dt {
  position: relative;
  width: 30%;
  /* background-color: #f5f5f5; */
  text-align: center;
}
.list_dt .list_logo {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.list_dt img {
  margin: auto;
}
.list_dd {
  width: 70%;
}
.list_dd p {
  padding-left: 10px;
}
.list_dd .row_item {
  position: relative;
  height: 154px;
}
.list_dd .row_item p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.list_dd .row_item img {
  position: absolute;
  width: 196px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.list_dt,
.list_dd {
  padding: 20px 20px;
  box-sizing: border-box;
  overflow-wrap: break-word;
  border-bottom: 2px solid #dcdcdc;
}
.dd_line p {
  padding: 28px 0 28px 10px;
  border-bottom: 2px solid #dcdcdc;
}
.dd_line p:first-of-type {
  padding-top: 8px;
}
.dd_line p:last-of-type {
  border-bottom: none;
  padding-bottom: 8px;
}
@media screen and (max-width: 750px) {
  .co_detail2 {
    width: 100%;
    margin-bottom: 80px;
  }
  .company_photos {
    margin-bottom: 70px;
  }
  .list_dl {
    display: block;
  }
  .list_dt,
  .list_dd {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .list_dt {
    height: 104px;
    border: none;
  }
  .list_dd {
    height: 210px;
  }
  .list_dd .row_item p {
    width: 100%;
    top: 20px;
    transform: unset;
  }
  .list_dd .row_item img {
    top: 44%;
    left: 50%;
    transform: translateX(-50%);
  }
  .list_dt .list_logo {
    width: 180px;
  }

  .sec_line {
    width: 220px;
    height: 140px;
    margin: 0 auto;
    border-bottom: 2px solid #dcdcdc;
  }
  .sec_line .list_logo {
    margin-bottom: 20px;
  }
  .list_dd:last-of-type {
    height: 240px;
  }
  .dd_line {
    width: 220px;
    margin: 0 auto;
  }
  .dd_line p:first-of-type {
    padding: 26px 0;
  }
}

/* about */
.top_bg {
  margin: 86px calc(50% - 50vw);
  width: 100vw;
  height: 145px;
  background: url(../image/top_bg_about.png);
}
.top_bg_history {
  background: url(../image/top_bg_history.png);
}
.top_bg_history .bg_bread a,
.top_bg_history .bg_bread li,
.top_bg_history .bg_bread li::after {
  color: #fff;
}
.about_inner {
  width: 692px;
  margin: 0 auto;
}
.big_title img {
  width: 270px;
  margin: 0 auto 100px;
}
.bg_bread {
  width: 960px;
  margin: 0 auto;
  padding-top: 26px;
}
.about_lead {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 70px;
}
.profile_pic {
  width: 350px;
  margin: 0 auto 40px;
}
.profile_text {
  line-height: 1.8;
  margin: 20px auto;
}
.profile_text span {
  font-size: 1.7rem;
  font-weight: 600;
}

.t-bold {
  font-weight: 700;
}

/* Service_business */
.service {
  margin: 48px auto 60px;
}
.ser_list {
  width: 750px;
  margin: 0 auto;
}
.ser_item {
  background-color: #fff;
  margin-bottom: 70px;
  box-shadow: 2px 2px 15px #00000029;
}
.list_box {
  display: flex;
}
.list_box img {
  width: 56.8%;
  height: auto;
}

.icon_box {
  width: 43.2%;
  padding: 23px;
  color: #fff;
  background-color: #f45e6f;
}
.ser_icon {
  display: flex;
  margin-bottom: 35px;
}
.icon_box .ser_icon img {
  width: 86px;
  height: auto;
  margin-right: 10px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
.icon_box .ser_icon p {
  padding: 6px 0;
  line-height: 1.2;
  font-size: 3rem;
  font-weight: 700;
}
.icon_box .ser_lead {
  font-size: 1.3rem;
}
.point_text {
  display: flex;
  width: 67%;
  margin: 0 auto;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bold_text {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
}
.bold_text .big_t {
  font-size: 4rem;
  font-weight: 600;
}
.bold_text .small_t {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 4px;
}
.arrow_bold {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 6px;
  top: 18px;
  background-color: #fff;
  margin: 0 16px 0 10px;
}

.arrow_bold:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: -9px;
  left: 12px;
  border: 12px solid transparent;
  border-left: 12px solid #fff;
}
.ser_text {
  padding: 50px 50px 30px;
}
.ser_text p {
  margin-bottom: 33px;
}
.ser_text .btn_red {
  margin: 0 0 0 auto;
}

/* service_odm */
.odm_point {
  margin-bottom: 100px;
}
.odm_point .odm_scr {
  width: 560px;
  margin: 0 auto;
  font-size: 1.5rem;
  margin-bottom: 50px;
}
.odm_point .odm_scr p {
  margin-bottom: 20px;
}
.bg_line {
  width: 100%;
  height: auto;
  padding: 82px 0 42px;
  background: url(../image/odm_img_bg.png) no-repeat center / cover;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
  margin-bottom: 50px;
}
.point_num {
  display: flex;
  width: 34%;
  margin: 0 auto;
}
.red_num {
  width: 100%;
  font-size: 1.5rem;
  color: #e60039;
  font-weight: 600;
  text-align: center;
  margin-bottom: 46px;
  line-height: 1.2;
}
.red_num p {
  font-weight: 600;
}
.red_num span {
  font-family: "montserrat";
  font-size: 8rem;
  font-weight: 700;
}

.btn_round {
  position: relative;
  width: 260px;
  margin: 0 auto 6%;
  border-radius: 15px;
  border: 1px solid #e60039;
  background-color: #e60039;
  transition: 0.5s;
}
.btn_round a {
  color: #fff;
}

.btn_round:hover {
  opacity: 0.5;
}

.btn_long {
  width: 340px;
  margin-bottom: 30px;
}

.size_m {
  padding: 20px 0;
}
.size_m::before {
  content: url(../image/arrow_wh.svg);
  top: 29px;
  /* background: #fff; */
}
.size_m::after {
  top: 26px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}
.odm {
  margin-bottom: 100px;
}
.odm h3 {
  font-size: 2.7rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 26px;
}
.odm_pic {
  flex-wrap: wrap;
  opacity: 0.6;
  border-top: 2px solid #e60039;
  margin-bottom: 30px;
}
.odm_pic li {
  width: 33.333%;
}

.odm_list {
  width: 690px;
  margin: 0 auto 30px;
}
.odm_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.odm_item {
  position: relative;
  display: flex;
  width: 48%;
  height: 100px;
  font-size: 1.5rem;
  /* background-color: #C8C8C8; */
  /* margin: 1%; */
  border-top: 2px dotted #c8c8c8;
}
.odm_item:nth-last-of-type(-n + 2) {
  border-bottom: 2px dotted #c8c8c8;
}

.odm_icon {
  width: 80px;
  height: 80px;
  padding: 10px 0;
}
.odm_item p {
  line-height: 100px;
  margin-left: 6%;
}
.odm_item::before {
  position: absolute;
  content: "";
  top: 8%;
  right: -4%;
  width: 2px;
  height: 80px;
  /* transform: translateY(-50%); */
  border-right: 2px dotted #c8c8c8;
}
.odm_item:nth-of-type(2n)::before {
  border: none;
}

/* history */
.history_inner {
  width: 684px;
  margin: 0 auto;
}
.bg_navy {
  color: #fff;
  background-color: #051f39;
  overflow: hidden;
}
.history_lead {
  position: relative;
  text-align: center;
  margin-bottom: 67px;
}
.history_title {
  position: relative;
}
.history_lead .bg_image {
  position: absolute;
  width: 60%;
  top: -120px;
  left: -300px;
}
.lead_title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.lead_sub {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.history_title p:last-of-type {
  font-size: 1.4rem;
}
.history_list {
  position: relative;
}
.history_list .bg_image {
  position: absolute;
  width: 60%;
  top: -60px;
  left: -340px;
}
.history_list .r-img {
  left: unset;
  right: -340px;
}
.history_list .under_img {
  top: unset;
  bottom: -280px;
}
.history_list .logo_history {
  width: 120px;
  margin: 4% auto;
}
.history_list table {
  position: inherit;
  border-collapse: separate;
  border-spacing: 12px;
  width: 100%;
  text-align: left;
}
.history_list tr {
  padding: 2% 0;
}
.history_list th {
  font-family: "montserrat";
  width: 12%;
  font-size: 1.7rem;
  font-weight: 600;
  border-right: 1px solid #de151d;
}
.history_list td {
  width: 80%;
  padding-left: 5%;
  font-weight: 300;
  font-size: 1.4rem;
}

.history_list tr td:first-of-type,
.form_table tr td:first-of-type {
  padding: unset;
  border-top: unset;
  width: unset;
  background-color: unset;
}
.history_list tr td:last-of-type,
.form_table tr td:last-of-type {
  padding: unset;
  border-top: unset;
  width: unset;
  background-color: unset;
}

.history_list tr td:last-of-type {
  width: 88%;
  padding-left: 4%;
}
.form_table tbody {
  border-right: unset;
  border-bottom: unset;
  border-left: unset;
  margin: unset;
}

.history_inner .bottom_btn {
  padding: 100px 0 20px;
}
.history_inner .bottom_btn .btn_red {
  margin-bottom: 40px;
}
.notice_text {
  font-size: 1.1rem;
  font-weight: 100;
  margin: 0 auto;
}
.function_point {
  padding: 0;
  margin-bottom: 150px;
}
/* support */
.sup_inner {
  width: 960px;
  margin: 30px auto 0;
}
.sup_inner2 {
  width: 520px;
}
.sup_inner .line_title p {
  font-weight: 600;
}
.bottom_space {
  margin-bottom: 0;
}
.btn_list {
  display: flex;
  width: 875px;
  justify-content: space-between;
  margin: 0 auto 100px;
}
.btn_support {
  position: relative;
  width: 270px;
  border-radius: 1em;
  transition: 0.5s;
  background-color: #f45e6f;

  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 3.4% 0;
}
.sup-menu {
  height: 70px;
}

.btn_support:hover {
  opacity: 0.5;
}
.btn_support .btn_icon {
  position: absolute;
  width: 58px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 4%;
}
.btn_support .btn_name {
  position: absolute;
  width: 70%;
  top: 50%;
  left: 16%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.small_text {
  display: block;
  font-size: 1rem;
}

.tab-group {
  display: flex;
  justify-content: left;
}
.tab {
  position: relative;
  width: 154px;
  height: 38px;
  /* flex-grow: 1; */
  padding: 8px 0;
  margin-right: 10px;
  text-align: center;
  background-color: #dcdcdc;
  border-radius: 5px 5px 0px 0px;
  border: solid 1px #c8c8c8;
  border-bottom: none;
  cursor: pointer;
}
.tab.is-active {
  color: #000;
  background: #fff;
  transition: all 0.2s ease-out;
}
.tab.is-active::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  background-color: #fff;
}
.panel-group {
  width: 100%;
  height: auto;
  padding: 20px 20px 3px;
  border-top: none;
  background: #fff;
  border: solid 1px #c8c8c8;
  margin-bottom: 100px;
}
.panel {
  display: none;
}
.panel.is-show {
  display: block;
}

.support_list {
  padding: 20px;
  background-color: #f45e6f;
}

.li-open {
  position: relative;
  width: 100%;
  padding: 6px 20px;
  background: #ffe8ee;
  border: 1px solid #707070;
  border-radius: 5px;
  margin-bottom: 17px;
}
.act_btn::before {
  /* 閉じている時 */
  position: absolute;
  content: url(../image/arrow_1_red.svg);
  width: 15px;
  right: 20px;
  transform-origin: center center;
  transition-duration: 0.2s;
}
.act_btn.rotate::before {
  /* 開いている時 */
  transform: rotate(180deg);
}

.tab_inner {
  display: none;
}
.answer {
  display: none;
}
.open {
  display: block;
}
.question {
  position: relative;
  margin: 14px 0 0;
  padding: 6px 13px;
  color: #fff;
  background-color: #f45e6f;
}
.question::before {
  /* 閉じている時 */
  position: absolute;
  content: url(../image/arrow_1_wh.svg);
  width: 15px;
  right: 12px;
  transform-origin: center center;
  transition-duration: 0.2s;
}
.question.rotate::before {
  /* 開いている時 */
  transform: rotate(180deg);
}
.answer {
  padding: 20px 13px;
  background-color: #fff;
  margin-bottom: 10px;
  overflow-wrap: break-word;
}

/* 20240904 Q&A */
.question .que {
  width: 92%;
}
.answer a {
  display: inline-block;
  color: #386bcc;
  text-decoration: underline;
}
/* 20240904 Q&A img */
.answer img {
  width: 60%;
  margin: 0 auto;
}
/* 20240904 answer table */
.answer .a_table br {
  display: none;
}
.answer .a_table table {
  width: 80%;
}
.answer .a_table td br {
  display: block;
}
.answer .a_table th:first-of-type {
  background-color: #f8f8f8;
}
.answer .a_table tbody {
  border: 1px solid #ccc;
}
.answer .a_table th,
.answer .a_table tr td {
  border-right: 1px solid #ccc;
  padding: 6px;
}

@media screen and (max-width: 750px) {
  .answer img {
    width: 98%;
    margin: 0 auto;
  }
  .answer .a_table table {
    width: 100%;
    table-layout: fixed;
  }
  .answer .a_table td br {
    display: block;
    content: "";
    margin-bottom: 6px;
  }
}

.red_text {
  color: #f45e6f;
  font-weight: bold;
  margin-right: 4px;
}
.level_btn {
  position: relative;
  padding: 6px 4%;
  z-index: +1;
  cursor: pointer;
  color: #000;
  background-color: #ffe8ee;
  border-bottom: 1px solid #fff;
  border-radius: 5px;
  transition-duration: 0.2s;
  border: 1px solid #707070;
  margin-bottom: 10px;
}
.level_one {
  background: #f45e6f 0% 0% no-repeat padding-box;
  margin-bottom: 10px;
  opacity: 1;
}

.dl_list {
  margin-bottom: 100px;
}
.dl_item {
  position: relative;
  width: 100%;
  height: 70px;
  padding: 0 30px;
  border-bottom: 1px solid #555;
}
.dl_item .model_no {
  line-height: 70px;
}
.dl_item .btn_dl {
  position: absolute;
  width: 40%;
  top: 24%;
  right: 30px;
  bottom: unset;
  /* transform: translateY(-50%); */
}
.dl_item .btn_dl .slim_btn:first-of-type {
  position: absolute;
  left: 0;
}
.dl_item .btn_dl .slim_btn:last-of-type {
  position: absolute;
  right: 0;
}

.chat_info {
  width: 75%;
  padding: 30px;
  margin: 0 auto 93px;
  border: 1px solid #000;
  border-radius: 1em;
}
.chat_title {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  color: #e60039;
  padding-bottom: 10px;
  border-bottom: 1px solid #e60039;
  margin-bottom: 20px;
}
.chat_info p:nth-of-type(2) {
  margin-bottom: 20px;
}
.chat_info .sup_note {
  left: 20%;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.chat_info .btn_support {
  width: 374px;
  margin: 0 auto 4%;
}
.chat_info .btn_support::before {
  position: absolute;
  content: url(../image/icon_headphone.svg);
  width: 48px;
  top: 52%;
  left: 4%;
  transform: translateY(-50%);
}
.chat_info .btn_support::after {
  position: absolute;
  content: url(../image/arrow_wh.svg);
  width: 24px;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
}
.end_margin {
  margin: 0 auto 60px;
}
/* contact */
.mini_sub {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  padding: 4px 0;
  background-color: #f45e6f;
  border-radius: 2em;
  margin-bottom: 18px;
}
.contact_title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}
.contact_notice {
  padding: 18px 36px;
  border: 1px solid #646464;
  font-size: 1.6rem;
  border-radius: 1em;
  text-align: center;
  margin-bottom: 70px;
}
.contact_notice p:first-of-type {
  color: #e60039;
  margin-bottom: 14px;
}
.contact_notice p:last-of-type {
  font-size: 1.8rem;
  font-weight: 600;
}
.contact_notice p:last-of-type a {
  display: inline-block;
  color: #e60039;
  text-decoration: underline;
}
.contact_inner {
  width: 540px;
  margin: 0 auto 40px;
}
.box_contact {
  font-size: 1.5rem;
  text-align: left;
}
.box_contact form {
  margin-bottom: 98px;
}
.form_table tr,
.form_table th,
.form_table td {
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
}
.form_table th {
  margin-bottom: 10px;
}
.form_table th span {
  display: inline-block;
  width: 36px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 1.2rem;
  color: #fff;
  background-color: #c41418;
  border-radius: 4px;
  margin-left: 10px;
}
.form_table tr {
  margin-bottom: 30px;
}
.form_table td input,
.form_table td textarea {
  width: 540px;
  padding: 10px 20px;
  box-sizing: border-box;
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
}
.con_pri .box_pri {
  height: 155px;
  overflow-y: scroll;
  margin-bottom: 10px;
  padding: 14px 20px;
  font-size: 1.4rem;
  background: #fff;
  border: 1px solid #787878;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.box_check {
  text-align: center;
  font-size: 1.6rem;
  margin: 20px auto 40px;
}
.notice_red {
  width: 416px;
  color: #e60039;
  margin: 68px auto 30px;
  text-align: center;
}

/* send_btn */
input[type="submit"] {
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 1.6rem;
  line-height: 60px;
  width: 100%;
  height: auto;
  vertical-align: top;
  position: absolute;
  top: 0;
  cursor: pointer;
}
.send_btn {
  position: relative;
  display: block;
  background-color: #e60039;
  width: 260px;
  height: 60px;
  margin: 0 auto 98px;
  border-radius: 15px;
  color: #fff;
  border: none;
  transition: 0.3s;
}
.send_btn::before {
  content: url(../image/arrow_wh.svg);
  position: absolute;
  width: 24px;
  height: auto;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.send_btn:hover {
  background-color: #f9bfcd;
}
/* hcaptcha css */
.wpcf7-spinner {
  display: none !important;
}
.box_contact .captcha_area .h-captcha {
  text-align: center;
  margin-bottom: 0;
}
.hcap_cf7-h-captcha-invalid {
  text-align: center;
  display: block;
  position: absolute;
  top: -140px;
}

/*リセット */
input[type="checkbox"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックスデザイン */
input[type="checkbox"] {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  vertical-align: middle;
}
input[type="checkbox"]::before,
input[type="checkbox"]::after {
  position: absolute;
  content: "";
  display: block;
}
input[type="checkbox"]::before {
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #707070;
  transform: translateY(-54%);
}
input[type="checkbox"]::after {
  width: 16px;
  height: 10px;
  top: -8px;
  left: 5px;
  transform: rotate(-45deg);
  border-bottom: 3px solid #e60039;
  border-left: 3px solid #e60039;
  opacity: 0;
}
input[type="checkbox"]:checked::after {
  opacity: 1; /*チェック後表示*/
}
.check_text {
  font-size: 1.6rem;
}

.wp-block-table.bottomss,
.wp-block-image.bottomss {
  margin: 0 0 5em;
}

tbody {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 40px 0 60px;
}
tr td:first-of-type {
  padding: 10px 0 10px 15px;
  border-top: 1px solid #ccc;
  width: 30%;
  background-color: #f8f8f8;
}
tr td:last-of-type {
  padding: 10px 0 10px 15px;
  border-top: 1px solid #ccc;
  width: 70%;
  background-color: #fff;
}
.wp-container-3.wp-block-group.alignwide.overpic {
  width: calc(100% + 100px);
  margin: 0 -50px;
}

.box_contact .size_m {
  padding: 5px 0;
}
.box_contact .size_m::before {
  top: 30px;
}

.btn_red.arrow-r.hcap_cf7-h-captcha-invalid.wpcf7-not-valid-tip {
  display: none !important;
}
.breadcrumb li.wpcf7c-elm-step1::after,
.breadcrumb li.wpcf7c-elm-step2::after {
  content: "";
}
.wpcf7-form .form-item .wpcf7-not-valid-tip,
.wpcf7-form .captcha_area .wpcf7-not-valid-tip,
.wpcf7-form .privacy_check .wpcf7-not-valid-tip,
.wpcf7-form .selectbox .wpcf7-not-valid-tip,
.wpcf7-form .message .wpcf7-not-valid-tip {
  position: absolute;
  display: block;
  color: #dc3232;
  font-size: 0.9em;
  font-weight: 700;
  bottom: -110%;
  bottom: -200%;
  left: -1.5%;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
  display: none !important;
}

/*------------ 404 content_note ------------*/
.content_note {
  text-align: center;
  margin: 15% auto 0;
}
.note_text {
  margin-bottom: 3.125%;
}
.big_text {
  font-size: 7rem;
  font-weight: bold;
  line-height: 1.2;
  color: #e60039;
}
.note_text .small_text {
  font-size: 2.2rem;
  margin-bottom: 5%;
  color: #e60039;
}
.note_read {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e60039;
}
.bt_space {
  margin-bottom: 8%;
}
.content_note .btn_contact {
  width: 100%;
  margin: 0 auto;
}

/* Contact _ 送信完了画面 */
.contact_box {
  margin: 48px auto 0;
}
.contact_thanks {
  text-align: center;
}
.red_sub {
  font-size: 2.5rem !important;
  color: #e60039 !important;
  font-weight: 600;
  margin-bottom: 36px;
}

/* スクロールフェードイン表示 */
/* 製品詳細ページ */
/*.element {*/
/* 最初は非表示 */
/* transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
*/
/* （装飾用スタイル） */
/*width: 80%;
  height: 120px;
  background-color: #ddd;
}

.fadeIn {
  transform: translateY(30px);
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  transform: translateX(0);
  opacity: 1;
}
*/

/* teaser */
.teaser_top {
  margin-top: 86px;
}
.teaser_bg {
  background-color: #f0f0f0;
}
.ts_inner {
  padding-top: 60px;
}
.ts_products {
  margin-bottom: 100px;
}
.ts_title {
  font-size: 3rem;
  font-weight: 600;
  color: #e60039;
  margin-bottom: 20px;
}
.ts_item_box {
  background-color: #fff;
  padding: 4.167% 4.688%;
  border-radius: 20px;
  box-shadow: 5px 5px 10px #0000000d;
  margin-bottom: 50px;
}
.ts_item-name {
  font-family: "montserrat";
  font-size: 2.2rem;
  font-weight: 600;
  float: left;
}
.ts_item-no {
  font-size: 4rem;
  color: #e60039;
  font-weight: 700;
}
.ts_day {
  display: inline-block;
  width: 208px;
  float: right;
  background-color: #e60039;
  color: #fff;
  font-size: 1.9rem;
  text-align: center;
  line-height: 47px;
  border-radius: 2em;
}
.ts_img {
  width: 640px;
  margin: 0 auto 32px;
}
.ts_read {
  font-size: 2.5rem;
  margin-bottom: 32px;
}
.ts_col {
  height: 134px;
  line-height: 1.5;
  column-count: 2;
  column-fill: auto;
}
.ts_col li {
  position: relative;
  left: 14px;
}
.ts_col li::before {
  position: absolute;
  content: "・";
  left: -14px;
}
.sp_list li:nth-of-type(n + 3):nth-of-type(-n + 5)::before {
  display: none;
}
.ts_textbox {
  margin-bottom: 70px;
}
.ts_textbox p {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 57px;
}
.ts_linktext {
  font-size: 1.6rem;
  text-decoration: underline;
}
.ts_linktext li {
  position: relative;
  left: 16px;
  margin-bottom: 10px;
}
.ts_linktext li a::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  left: -16px;
  margin-right: 0.5em;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 12px solid #e60039;
}
.ts_linktext a {
  display: inline-block;
  text-decoration: underline;
}
.ts_btn {
  position: relative;
  display: block;
  background-color: #e60039;
  width: 340px;
  height: 80px;
  margin: 0 auto 98px;
  border-radius: 15px;
  color: #fff;
  border: none;
}
.ts_btn::before {
  content: url(../image/arrow_wh.svg);
  position: absolute;
  width: 24px;
  height: auto;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.ts_btn a {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  line-height: 80px;
}
/* close */
.close_btn_red {
  width: 260px;
  height: 53px;
  text-align: center;
  background-color: #e60039;
  border-radius: 2em;
  margin: 0 auto;
  color: #fff;
  line-height: 50px;
}
.close_btn {
  color: #a0a0a0;
  pointer-events: none;
}
.close_btn:hover {
  color: #a0a0a0 !important;
}
.close_btn::after {
  display: none;
}
.menu_box ul .close_btn::after {
  border-right: 1px solid #a0a0a0 !important;
  border-top: 1px solid #a0a0a0 !important;
}
.slick-dots {
  display: none;
}
.slick-active {
  background-color: #fff;
}

/* ------------------------
Chat bot
------------------------ */
.chatbot {
  position: fixed;
  width: 60px;
  height: 50px;
  bottom: 20px;
  left: 20px;
  color: #fff;
  background-color: #4faed8;
  box-shadow: 4px 4px 8px #00000040;
  border-radius: 10px;
  cursor: pointer;
  z-index: 100;
}
.chatbot img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.chatbot_text {
  display: none;
  width: 90%;
  margin-top: 2%;
  line-height: 1.3;
}

/*---------- dialog ----------*/

.dialog {
  display: none;
  box-sizing: border-box;
  position: fixed;
  width: 60px;
  bottom: 20px;
  left: 20px;
  border: 4px solid #f45e6f;
  box-shadow: 4px 4px 8px #00000040;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 20px;
  z-index: 999;
}

.dialog .dialog-header {
  position: relative;
  display: flex;
  /* padding: 10px; */
  color: #fff;
  background-color: #f45e6f;
}

.dialog .dialog-header .dialog-img {
  /* margin: 2% 4% 0 2%; */
  position: relative;
  width: 60px;
  height: 50px;
}
.dialog .dialog-header .dialog-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dialog .dialog-header .close-btn {
  display: none;
  position: absolute;
  width: 14px;
  /* bottom: 26px; */
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.dialog__inner {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  /*height: 400px;*/
  height: 0px;
  /* background-color: #115baa; */
}

.dialog iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}
.dialog .dialog-header .close-btn {
  /* bottom: 13px; */
}

.chatbot {
  width: 250px;
}
.chatbot a {
  display: flex;
  width: 90%;
  margin: auto;
}
.chatbot img {
  position: static;
  width: 18%;
  top: 0;
  left: 0;
  transform: unset;
  margin-right: 4%;
}
.chatbot_text {
  display: block;
  width: 78%;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.3;
  margin-top: 3%;
  font-feature-settings: "palt";
}

.retailer_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin-bottom: 50px;
}

ul.retailer_list li {
  margin-top: 13px;
  margin-right: 13px;
}

ul.retailer_list li:nth-child(4n) {
  margin-right: 0;
}

/* ------------------------
Chat bot
------------------------ */

/* 230823_privacy */
.privacy {
  margin: 48px auto 60px;
}
.privacy .pri_text {
  margin-bottom: 50px;
}
.privacy .pri_lead {
  margin-bottom: 58px;
}
.privacy li {
  margin-bottom: 30px;
}
.privacy li .list_sub {
  font-weight: 600;
}

@media screen and (max-width: 750px) {
  .privacy {
    padding: 0 30px;
  }
}
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */

@media screen and (max-width: 750px) {
  body {
    font-size: 1.5rem;
  }
  h2 {
    margin-bottom: 2em;
  }
  .pc,
  .pc-br {
    display: none;
  }
  .sp,
  .sp-br,
  .nav_menu ul.sp {
    display: block;
  }

  header {
    height: 70px;
  }

  .top_nav {
    position: relative;
    display: block;
    width: 100%;
    top: 0;
    left: 0;
    transform: translate(0, 0%);
  }
  .top_nav .logo {
    position: absolute;
    width: 100%;
    height: 70px;
    top: 0;
    background-color: #fff;
    z-index: 200;
    /* border-bottom: 1px solid #c8c8c8; */
  }
  .top_nav .logo a {
    display: inline-block;
  }
  .top_nav .logo img {
    padding: 25px 30px;
  }

  .nav_menu {
    /* display: none; */
    position: absolute;
    width: 100%;
    top: 70px;
    background-color: #fff;
    /* transform: translateX(250px); */
    transition: all 0.5s;
  }
  .nav_menu ul {
    display: block;
    width: 100%;
  }
  .nav_menu ul li {
    position: relative;
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #c8c8c8;
  }
  .nav_menu ul li:first-of-type {
    border-top: 1px solid #c8c8c8;
  }

  /*--[ regist 2022/09 ]--*/
  .nav_menu ul li:last-child {
    padding: 30px;
    border-bottom: none;
  }
  .nav_menu ul li:last-child img {
    width: 210px;
    margin: 0 auto;
  }
  /*--[ regist 2022/09 ]--*/

  .nav_menu ul .drop_menu li::before,
  .nav_menu ul .f_menu::before {
    position: absolute;
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    /* top: 43%; */
    top: 26px;
    right: 30px;
    border-right: 1px solid #e60039;
    border-top: 1px solid #e60039;
    transform: rotate(45deg);
    transition: 0.3s;
  }

  /* 230310 inquiry icon */
  .nav_menu .inquiry_li {
    width: 90%;
    margin: 0 auto;
  }
  .nav_menu .inquiry_li .inquiry_icon {
    width: 60px;
    height: 60px;
  }

  .service_menu::before {
    position: absolute;
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    /* top: 43%; */
    top: 26px;
    right: 30px;
    border-right: 1px solid #e60039;
    border-top: 1px solid #e60039;
    transform: rotate(45deg);
    transition: transform 0.2s ease-in-out, top 0.2s ease, bottom 0.2s ease;
  }
  .nav_menu .service_menu::after {
    display: none;
  }
  .arrow_rotate::before {
    transform: rotate(135deg);
  }
  .roll_menu {
    position: absolute;
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    /* top: 43%; */
    top: 26px;
    right: 30px;
    border-right: 1px solid #e60039;
    border-top: 1px solid #e60039;
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
  }
  .roll {
    transform: rotate(135deg);
  }
  .nav_menu .service_menu .drop_menu {
    position: relative;
    display: block;
    width: 100%;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    /* transition: all 0.5s ease; */
  }
  .open_submenu {
    max-height: 122px !important;
  }

  .nav_menu .f_menu::after {
    display: none;
    color: #000;
  }
  .nav_menu li a:hover,
  .nav_menu li:hover {
    color: #000;
  }

  .nav_menu ul .service_menu {
    /* pointer-events: none; */
  }

  .nav_menu ul .drop_menu li {
    display: block;
    font-size: 1.5rem;
    text-align: left;
    background-color: #fff;
    padding: 34px 0 4px 20px;
    border: none;
  }

  .nav_menu ul .drop_menu li a {
    color: #000;
  }

  .nav_menu ul .drop_menu li::before {
    top: 38px;
    right: 10px;
  }

  #toggle {
    position: fixed;
    top: 28px;
    /* right: 30px; */
    right: 20px;
  }

  #toggle-box {
    position: relative;
    width: 36px;
    height: 14px;
    cursor: pointer;
  }

  #toggle-box > span {
    width: 100%;
    height: 3px;
    left: 0;
    display: block;
    background: #e60039;
    position: absolute;
    transition: transform 0.2s ease-in-out, top 0.2s ease, bottom 0.2s ease;
  }

  #toggle-box > span:first-child {
    top: 0;
  }
  #toggle-box > span:last-child {
    bottom: 0;
  }

  #toggle {
    z-index: 1000;
  }

  #nav-content {
    z-index: 100;
    overflow: auto;
    width: 100%;
    height: auto;
    background: #fff;
    color: #000;
    position: fixed;
    right: 0;
    text-align: left;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  #nav-content a:hover {
    opacity: 0.6;
  }

  .is-open {
    overflow: hidden;
  }

  .is-open #toggle-box > span {
    background: #e60039;
  }

  .is-open #toggle-box > span:first-child {
    top: 50%;
    left: -2%;
    transform: rotate(45deg) translateY(-50%);
  }

  .is-open #toggle-box > span:last-child {
    top: 50%;
    left: 4%;
    transform: rotate(-45deg) translateY(-50%);
  }

  .is-open #nav-content {
    z-index: 100;
    transform: translateY(0);
    overflow-x: hidden;
  }

  .menu-background {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: #fff;
    z-index: 100;
    opacity: 0; /* 透明度を0にすることで隠す */
    transition: opacity 0.2s; /* 透明度の0→1になる速度 */
  }
  .menu-background.open {
    width: 100%;
    height: 100%;
    opacity: 1; /* メニューが表示されているときには背景が表示 */
  }

  .mv {
    margin-top: 70px;
  }
  .breadcrumb {
    width: 100%;
    padding-left: 7.696%;
    /* margin: 94px auto 40px; */
  }
  .inner {
    width: 100%;
    margin-top: 42px;
    padding: 0 7.696%;
  }

  .news_list li {
    display: block;
    margin-bottom: 30px;
  }
  .news_list .day_tag {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .news_list li .ul_text {
    width: 100%;
  }
  .news_list li .ul_text a {
    overflow: unset;
    text-overflow: unset;
    white-space: normal;
  }

  .row_item {
    display: block;
  }
  .row_item .block {
    width: 100%;
    margin-right: 0;
  }
  .footer_logo {
    left: 7.696%;
  }
  .nav_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 14% 7.696%;
  }
  .footer_nav .footer_menu:first-of-type {
    width: 46%;
    vertical-align: top;
  }
  .footer_nav .footer_menu:last-of-type {
    width: 46%;
  }
  .sub_f_menu .menu_box {
    width: 100%;
  }
  .menu_box li {
    margin-bottom: 22px;
  }
  .footer_menu .menu_box {
    display: block;
  }
  .footer_copy {
    right: 7.696%;
    bottom: 5%;
  }
  .go-top {
    right: 20px;
  }

  .article_box .contents {
    width: 100%;
  }
  .article_pic {
    display: block;
  }
  .article_pic img {
    margin-bottom: 30px;
  }

  /* products */
  .product-box {
    padding-top: 8px;
  }
  .menu_list {
    margin-bottom: 10px;
  }
  .menu_list ul {
    flex-wrap: wrap;
  }
  .menu_name {
    width: 48%;
    height: 40px;
    font-size: 1.5rem;
    border: 1px solid #000;
    margin-bottom: 6%;
    line-height: 40px;
    border-radius: 20px;
  }
  .menu_name a {
    height: auto;
    line-height: 37px;
  }
  .item_box .link_box {
    width: 88%;
  }
  .item_lead {
    width: 90%;
  }
  .item_box .btn_circle a {
    padding: 6.6% 0;
  }
  .item_list ul {
    display: block;
  }
  .item_box {
    width: 100%;
    padding: 0% 0% 12%;
    margin-bottom: 10%;
  }
  .item_box .btn_text {
    width: 120px;
  }
  .item_box:last-of-type {
    margin-bottom: 83px;
  }

  .thm-spec dt,
  .thm-spec dd {
    width: 100%;
    overflow-wrap: break-word;
  }

  .item_contents {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 70% 10% 15%;
    /* padding: 300px 30px 70px;*/
    left: 50%;
    transform: translateX(-50%);
  }

  .box_service,
  .box_shop {
    width: 100%;
  }
  .type_title p {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 0 7.696%;
    margin-bottom: 40px;
  }

  .acc_title p {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    margin-bottom: 10px;
  }
  .item_acc::before {
    width: 100%;
    height: 1px;
    top: unset;
    bottom: 0;
    left: 0;
    margin: 0;
  }
  .item_acc:last-of-type::before {
    display: none;
  }
  .item_acc:last-of-type {
    margin-bottom: 0;
  }

  /* product_detail */
  .box_product {
    margin-bottom: 60px;
  }
  .product_detail .item_table {
    font-size: 1.3rem;
  }
  .item_table dt {
    width: 40%;
  }
  .item_table dd {
    width: 54%;
  }
  .item_table dd::before {
    left: -10%;
  }

  .product_imgs {
    width: 100%;
    margin-right: 0;
  }
  .product_detail {
    width: 100%;
  }
  .product_text {
    width: 100%;
    padding: 0 30px;
    text-align: left;
  }
  .scr_title {
    margin-bottom: 10px;
  }
  .function_item img {
    margin-bottom: 30px;
  }
  .function_list ul {
    display: block;
  }
  .function_item {
    width: 63.64%;
    margin: 0 auto 50px;
  }
  .function_item:nth-of-type(4n) {
    margin: 0 auto 50px;
  }
  .function_point {
    padding: 0;
    margin-bottom: 80px;
  }
  .full_mv img {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
  .point_list {
    padding: 0 7.696%;
  }
  .point_list ul {
    display: block;
    margin-bottom: 40px;
  }
  .point_item {
    width: 100%;
  }
  .part_list .row {
    display: block;
  }
  .part_img {
    width: 100%;
  }
  .part_namelist {
    display: block;
    padding: 4% 2%;
  }
  .part_namelist ul {
    width: 100%;
    border: none;
  }
  .notice_text {
    font-size: 1.2rem;
  }

  .detail_btnbox {
    padding: 10% 7.696%;
  }

  /* product_spec */
  .device_title {
    height: 180px;
  }
  .model_num {
    width: 100%;
    top: 0;
    overflow-wrap: break-word;
  }
  .acc_num_title {
    height: auto;
    margin-bottom: 14px;
  }
  .acc_model_num {
    margin-bottom: 14px;
  }
  .acc_inner {
    margin-top: 0;
  }
  .code_num {
    width: 100%;
    top: 50%;
  }
  .acc_code_num {
    text-align: right;
  }
  .box_dl a {
    position: relative;
    height: 55px;
    padding-left: 16%;
    text-align: left;
  }
  .box_dl a::after {
    right: 14%;
    /* margin-right: 20px; */
  }
  .detail_menu .menu_name {
    /* width: 31.82%; */
    width: 31.203%;
    border: none;
    border-radius: 0%;
    border-bottom: 4px solid #e60039;
  }
  .detail_menu .menu_name a {
    font-size: 1.5rem;
    color: #e60039;
  }
  .spec_sheet {
    width: 100%;
  }
  .sheet_dt {
    width: 40%;
  }
  .sheet_dd {
    width: 60%;
  }
  .package_list {
    display: block;
  }
  .package_list ul {
    width: 100%;
    margin-bottom: 0;
  }
  .package_list ul:last-of-type {
    margin-bottom: 60px;
  }
  .size_info .package_item {
    width: 100%;
  }
  .box_item {
    padding: 30px;
  }
  .box_title img {
    width: 60px;
  }
  .box_title {
    margin-bottom: 20px;
  }
  .box_title p {
    font-size: 2.5rem;
    line-height: 60px;
  }
  .line_text {
    font-size: 2.5rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .shop_link {
    display: block;
  }
  .shop_link p {
    font-size: 1.8rem;
  }
  .link_list::after {
    display: none;
  }
  .link_list {
    width: 100%;
    border-bottom: 1px solid #707070;
    margin-bottom: 40px;
  }
  .link_list ul {
    width: 100%;
  }
  .shop_link::before {
    display: none;
  }
  .link_list:last-of-type {
    border: none;
  }
  .link_list .link_item:last-of-type {
    margin-bottom: 40px;
  }

  /* company */
  .co_box {
    display: block;
    width: 100%;
    height: auto;
  }
  .co_box .co_logo {
    width: 45.456%;
    margin: 0 auto 16px;
  }
  .co_info {
    padding: 0;
    border-left: none;
    border-top: 1px solid #000;
  }
  .co_info {
    text-align: center;
  }
  .co_detail {
    width: 100%;
  }
  .photos {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
  .photos ul {
    flex-wrap: wrap;
  }
  .photos ul li {
    width: 50%;
  }
  .line_title {
    height: auto;
    font-size: 1.7rem;
    padding-bottom: 8px;
  }
  .co_list {
    display: block;
    width: 100%;
  }
  .co_info {
    padding-top: 6%;
    margin: 0 0 4% 0;
    font-size: 1.4rem;
  }
  .co_info span {
    display: inline-block;
    margin-bottom: 2%;
  }
  .subtitle {
    font-size: 2rem;
    height: 36px;
    margin-bottom: 2em;
  }
  .bottom_btn {
    padding: 46px 0;
  }
  /* about */
  .about_inner,
  .profile_pic,
  .bg_bread {
    width: 100%;
  }
  .top_bg {
    margin-top: 70px;
  }

  /* service_business */
  .ser_list {
    width: 100%;
    margin-bottom: 60px;
  }
  .ser_item {
    box-shadow: none;
    margin-bottom: 30px;
  }
  .ser_item:last-of-type {
    box-shadow: 2px 2px 15px #00000029;
  }
  .list_box {
    display: block;
  }
  .icon_box,
  .list_box img {
    width: 100%;
  }
  .ser_text {
    padding: 30px;
  }
  .ser_text .btn_red {
    margin: 0 auto;
  }

  /* service_odm */
  .odm_point .odm_scr,
  .odm_list {
    width: 100%;
  }
  .odm h3 {
    font-size: 2.5rem;
    padding: 0 30px;
  }
  .odm_list {
    padding: 0 30px;
  }
  .point_num,
  .odm_list ul {
    display: block;
  }
  .odm_item {
    width: 100%;
  }
  .odm_item::before {
    display: none;
  }
  .odm_item:nth-last-of-type(-n + 2) {
    border-bottom: none;
  }
  .odm_item:last-of-type {
    border-bottom: 2px dotted #c8c8c8;
  }

  /* history */
  .history_inner {
    width: 100%;
    overflow: hidden;
  }
  .history_lead,
  .history_list {
    padding: 0 30px;
  }
  .history_lead .bg_image,
  .history_list .bg_image {
    width: 100%;
    top: 0;
    left: -50%;
  }
  .history_list th {
    width: 24%;
  }
  .history_list tr td:last-of-type {
    width: 77%;
    padding-left: 6%;
  }
  .history_list .r-img {
    left: unset;
    right: -50%;
  }
  .history_list .under_img {
    top: unset;
    bottom: -30%;
  }
  .history_list table {
    border-spacing: 0 16px;
  }
  .history_list td {
    width: 45%;
  }
  .history_inner .bottom_btn {
    padding: 80px 30px 40px;
  }
  .notice_text {
    font-size: 1rem;
    margin: 10% auto;
  }

  /* support */
  .sup_inner {
    width: 100%;
  }
  .btn_list {
    display: block;
    width: 100%;
    margin-bottom: 50px;
  }
  .btn_support {
    margin: 0 auto 20px;
  }
  .sup_inner .line_title {
    width: 84%;
    margin: 0 auto 30px;
  }
  .tab-group {
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1.4rem;
  }
  .tab {
    width: 46%;
    border: 1px solid #000000;
    border-radius: 5px;
    margin-bottom: 20px;
    background-color: #fff;
    opacity: 0.25;
  }
  .tab.is-active {
    opacity: 1;
  }
  .tab.is-active::before {
    display: none;
  }
  .panel-group {
    font-size: 1.4rem;
    padding: 28px 30px 10px;
  }
  .li-open {
    padding: 6px 10px;
  }
  .dl_item {
    display: block;
    width: 84%;
    height: 100px;
    padding: 16px 0;
    margin: 0 auto;
  }
  .dl_item .btn_dl {
    width: 100%;
    position: inherit;
    top: 0;
    right: 0;
    transform: unset;
  }
  .dl_item .btn_dl P {
    width: 46%;
  }
  .dl_item .btn_dl .box_dl a {
    height: 35px;
  }
  .dl_item .model_no {
    line-height: 1.5rem;
    margin-bottom: 16px;
  }
  .dl_item .btn_dl .slim_btn a {
    height: 35px;
  }
  .chat_info {
    width: 84%;
    padding: 25px 20px 20px;
  }
  .chat_info .btn_support {
    width: 100%;
    font-size: 1.6rem;

    padding: 5% 0;
    margin-bottom: 8%;
  }
  .chat_info .btn_support::before {
    left: 0;
  }
  .chat_info p:last-of-type {
    /* left: 18%; */
    font-size: 1.6rem;
  }
  .btn_support .btn_name {
    width: 68%;
    left: 20%;
  }
  .btn_support .btn_icon {
    margin-left: 2%;
  }
  .box_contact .captcha_area .h-captcha {
    margin: 2% auto 20%;
  }
  .box_contact .btn_round {
    margin-bottom: 20%;
  }

  /* contact */
  .contact_inner {
    width: 100%;
  }
  .form_table td input,
  .form_table td textarea,
  .notice_red {
    width: 100%;
    text-align: left;
  }
  .contact_notice {
    text-align: left;
  }
  .contact_box {
    padding: 0 20px;
  }
  .hcap_cf7-h-captcha-invalid {
    top: -166px;
  }

  /* teaser */
  .teaser_top {
    margin-top: 46px;
  }
  .ts_products {
    margin-bottom: 50px;
  }
  .ts_item_box {
    padding: 6%;
  }
  .ts_title {
    font-size: 2.5rem;
  }
  .ts_item-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .ts_item-no {
    font-size: 3.3rem;
  }
  .ts_img {
    width: 100%;
  }
  .ts_read {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .ts_col {
    height: auto;
    column-count: 1;
    font-size: 1.3rem;
  }
  .ts_day {
    font-size: 1.5rem;
    width: 166px;
    height: 38px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  .ts_textbox p {
    font-size: 2rem;
  }

  .ts_btn {
    width: 100%;
    margin-bottom: 68px;
  }

  .dialog {
    width: 250px;
  }
  .dialog .dialog-header {
    padding: 0 6px;
  }

  .retailer {
    width: 230px;
    margin-right: auto;
    margin-left: auto;
  }

  .retailer_list {
    display: block;
  }

  ul.retailer_list li {
    margin-right: 0;
  }

  .retailer_list li:nth-child(even) {
    margin: 10px 0;
  }
}

/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
/* aiwa play */
#ap p {
  font-size: 1.5rem;
  color: #707070;
}

#ap header {
  background-color: transparent;
  box-shadow: none;
  /* display: none; */
}
#ap .header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 24px 50px;
}
#ap .lp_header {
  background-color: rgba(255, 255, 255, 0.7);
}
.ap_top {
  display: flex;
  margin-right: 42px;
  z-index: 1000;
}
.top_linkBtn:first-of-type {
  margin-right: 12px;
}
/* sp nav menu */
body.is-open {
  overflow: hidden;
}

#ap header .logo {
  z-index: 1000;
}
#ap header .logo_fd {
  display: none;
}
#ap header.h_bg .logo {
  display: none;
}
#ap header.h_bg .logo_fd {
  display: inline;
}
#ap header .logo_red {
  display: none;
}
#ap header.h_bg .logo_red {
  display: inline;
}
#ap .slide_menu .ap_menu {
  position: fixed;
  display: block;
  width: 470px;
  height: 100vh;
  top: 0;
  right: -470px;
  margin: 0;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  padding-top: 110px;
  transition: all 0.5s;
}
#ap .slide_menu .ap_menu li {
  height: 80px;
}
#ap .slide_menu .ap_menu a {
  line-height: 80px;
  margin-bottom: 0;
  color: #e60039;
  font-weight: 600;
}

#ap.is-open .slide_menu .ap_menu {
  /* display: block; */
  right: 0;
}

#ap.is-open #toggle-box > span {
  background-color: #707070;
}

#ap #toggle {
}

/* toggle */
#ap #toggle {
  position: absolute;
  top: 18px;
  right: 30px;
  padding: 16px 0;
  cursor: pointer;
  z-index: 1000;
}
#ap #toggle-box {
  position: relative;
  width: 36px;
  height: 14px;
}
#ap #toggle-box > span {
  width: 100%;
  height: 3px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.2s ease-in-out, top 0.2s ease, bottom 0.2s ease;
}
#ap #toggle-box > span:first-child {
  top: 0;
}
#ap #toggle-box > span:last-child {
  bottom: 0;
}
#ap.is-open header.h_bg #toggle-box > span {
  background-color: #707070;
}
#ap.is-open #toggle-box > span:first-child {
  top: 50%;
  left: -2%;
  transform: rotate(45deg) translateY(-50%);
}
#ap.is-open #toggle-box > span:last-child {
  top: 50%;
  left: 4%;
  transform: rotate(-45deg) translateY(-50%);
}
/* /toggle */

/* スクロールヘッダー */
#ap header.h_bg {
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
}

#ap header.h_bg #toggle-box > span {
  background-color: #e60039;
}

#ap .apmv_full {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url(../image/aiwaplay/aiwa_play_mv_pc.jpg) center / cover;
  margin-bottom: 36px;
}

/* 　初心者セット公開用 */
/* #ap .apmv_full {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url(../image/aiwaplay/aiwa-play-RX01_beginners_set_pc.png) center / contain;
  background-repeat: no-repeat;
  background-color: #e60039;
  margin: 0 0 36px 0;
} */
.link_clickable {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: transparent;
}
#ap .mv_title {
  position: absolute;
  width: 496px;
  top: 26%;
  left: 12%;
}

.rental_btn {
  position: absolute;
  width: 220px;
  height: 60px;
  bottom: 35px;
  left: 30px;
  z-index: 1;
}

#ap .breadcrumb {
  margin: 48px auto 100px;
}
#ap .breadcrumb .bread_list li:first-of-type {
  text-transform: inherit;
}

.ap_mv {
  position: relative;
  width: 100%;
  height: 230px;
  background: url(../image/aiwaplay/ap_mv_pc.jpg) center / cover;
}
#ap .ap_mv .mv_title {
  width: 240px;
  top: 34%;
}

.apmenu {
  display: flex;
  justify-content: space-between;
}
.apmenu a {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 100px;
}

#ap h4 {
  font-size: 2.7rem;
  color: #33528d;
  font-weight: 400;
}
#ap .ap_inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.ap_block {
  margin-bottom: 205px;
}

#ap h4 {
  margin-bottom: 18px;
}
.t_line {
  border: 1px solid #33528d;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-bottom: 30px;
}
.ap_script {
  line-height: 1.8;
  margin-bottom: 70px;
}
#ap .ap_script_box {
  margin-bottom: 40px;
}
#ap .ap_script_box p:first-of-type {
  padding: 14px;
  font-size: 1.7rem;
  background-color: #eff3fa;
  color: #33528d;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 20px;
}
#ap .ap_script_box .red_notice {
  color: #e60039;
  font-size: 1.5rem;
}

.yt_title {
  font-weight: 600;
  margin-bottom: 17px;
}
.yt_wrap {
  position: relative;
  /* padding-top: 56.25%; */
  width: 100%;
  margin-bottom: 70px;
  transition: all 0.3s;
  cursor: pointer;
}
.yt_wrap:hover {
  opacity: 0.7;
}

.yt_wrap_s {
  width: 50%;
  height: 270px;
  padding-top: inherit;
}

.yt_wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.player {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.yt_thumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}

.r_btn a {
  position: relative;
  width: 386px;
  height: 76px;
  padding: 0 30px;
  background-color: #0f3669;
  border-radius: 4em;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #fff;
  display: grid;
  place-items: center start;
  box-shadow: 5px 5px 10px #33528d4f;
  box-sizing: border-box;
}
.r_btn a::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  right: 30px;
  background-image: url(../image/aiwaplay/r_arrow.svg);
  transform: translateY(-50%);
  transition: all 0.3s;
}
.r_btn a:hover::after {
  right: 20px;
}

.spec_box {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.spec_item {
  width: 48%;
  text-align: center;
  margin-bottom: 43px;
}
.aptem_name {
  font-size: 2.2rem;
  color: #fff;
  background-color: #707070;
  padding: 13px;
  font-weight: 600;
}
.aptem_pic {
  padding: 20px 0 30px;
  background-color: #f5f5f5;
}
#ap .aptem_pic p {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.aptem_pic img {
  width: 50%;
  margin: 0 auto;
}
.spec_li li {
  height: 52px;
  display: grid;
  place-items: center center;
  border-left: 5px solid #f5f5f5;
  border-bottom: 5px solid #f5f5f5;
  box-sizing: border-box;
}
.second_tem .aptem_name {
  background-color: #be161d;
}
.second_tem .aptem_pic {
  background-color: #f2f6fc;
}
.second_tem .spec_li li {
  border-left: none;
  border-right: 5px solid #f2f6fc;
  border-bottom: 5px solid #f2f6fc;
}
.spec_title {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  margin-bottom: 43px;
}
.spec_title .hexa li {
  height: 52px;
  margin: 0 auto;
  padding: 8.5px 0;
}
#ap .spec_title .hexa li p {
  position: relative;
  display: inline-block;
  width: 126px;
  height: 30px;
  line-height: 30px;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  background-color: #bfbfbf;
}
.spec_title .hexa li p:before,
.spec_title .hexa li p:after {
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  content: "";
  border: 15px solid transparent;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;

  box-sizing: border-box;
}
.spec_title .hexa li p:before {
  right: 100%;
  border-right-color: #bfbfbf;
}
.spec_title .hexa li p:after {
  left: 100%;
  border-left-color: #bfbfbf;
}
.spec_note {
  text-align: center;
  margin-bottom: 67px;
}

.r_btn_li {
  display: flex;
  width: 96%;
  margin: 0 auto;
  justify-content: space-between;
}
.bg_gr {
  background-color: #696969 !important;
}
.bg_red {
  background-color: #be161d !important;
}
#ap .center_bold {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 36px;
}
#ap .bold {
  font-weight: bold;
}
.text_link {
  display: inline;
  color: #386bcc;
  cursor: pointer;
}

#js-pagetop {
  position: fixed;
  bottom: 120px;
  right: 120px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: bottom 0.4s;
  transition: bottom 0.4s;
}
.h_bg #js-pagetop {
  bottom: 26px;
  right: 120px;
}
.btn_receive {
  position: relative;
  width: 154px;
  height: 154px;
}
#js-pagetop button {
  position: absolute;
  display: grid;
  place-items: center center;
  top: 50%;
  left: 50%;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  border: 1px solid rgba(190, 22, 29, 1);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(190, 22, 29, 1);
  text-align: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
#js-pagetop button:hover {
  display: grid;
  place-items: center center;
  width: 154px;
  height: 154px;
  opacity: 0.7;
}
.rx_footer.h_bg #js-pagetop button {
  position: absolute;
  display: grid;
  place-items: center center;
  top: 50%;
  left: 50%;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  background: rgba(190, 22, 29, 0.8);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.rx_footer.h_bg #js-pagetop button:hover {
  display: grid;
  place-items: center center;
  width: 154px;
  height: 154px;
  opacity: 0.7;
}

.manual_li li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.manual_li li .ap_script {
  width: 52%;
}
.manual_li li .manual_img {
  width: 38%;
}
.manual_img iframe {
  width: 100%;
  height: 205px;
}
.manual_block {
  margin-bottom: 80px;
}

#ap .go-top {
  /* position: relative; */
  width: 38px;
  height: 38px;
  bottom: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0;
  border: 2px solid #e60039;
  font-size: 0;
}
#ap .go-top::before {
  width: 13px;
  height: 13px;
  top: 14px;
  left: 11px;
  border-top: 2px solid #e60039;
  border-left: 2px solid #e60039;
}

#js-pagetop.sss {
  position: absolute;
  top: -178px;
  bottom: auto;
}
#ap .go-top.absolute {
  top: -64px;
}

/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */

/* 20241209 mid MV */
@media screen and (min-width: 751px) and (max-width: 950px) {
  #ap .apmv_full {
    /* background: url(../image/aiwaplay/aiwa-play-RX01_beginners_set_tb.png) center / contain; */
    /* background-repeat: no-repeat; */
    /* width: 100%; */
    /* background-color: #e60039; */
    /* min-height: 100vh; */
    /* margin-bottom: 36px; */
  }
}

@media screen and (max-width: 750px) {
  #ap #toggle-box > span {
    background: #fff;
  }
  #ap .header {
    padding: 23px 30px;
  }
  #ap .ap_top {
    margin-right: 62px;
  }
  #ap #toggle {
    top: 14px;
  }

  #ap .shop_icon img {
    width: 24px;
    height: 24px;
  }
  .is-open .shop_icon img,
  #ap .h_bg .shop_icon img {
    display: none !important;
  }
  .is-open .shop_icon,
  #ap .h_bg .shop_icon {
    background-image: url(../image/aiwaplay/shop_icon_red.svg) !important;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  #ap .slide_menu .ap_menu {
    padding-top: 70px;
  }
  #ap .slide_menu .ap_menu li {
    height: 68px;
  }
  #ap .slide_menu .ap_menu a {
    line-height: 68px;
  }
  /* 追加ボタン */
  #ap .slide_menu .ap_menu .detail_btn {
    width: 280px;
    margin: 16px auto 0;
  }

  span {
    /* display: contents; */
  }
  #ap p {
    font-size: 1.3rem;
  }

  #ap .apmv_full {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url(../image/aiwaplay/aiwa_play_mv_sp.jpg) center / cover;
    margin-bottom: 36px;
  }

  /* #ap .apmv_full {
    background: url(../image/aiwaplay/aiwa-play-RX01_beginners_set_sp.png) center / contain;
    background-repeat: no-repeat;
    width: 100%;
    background-color: #e60039;
    min-height: 100vh;
    margin-bottom: 36px;
  } */

  #ap .mv_title {
    /* width: 60%; */
    width: 70%;
    /* top: 24%; */
    top: 28%;
    left: 30px;

    -webkit-filter: drop-shadow(0px 0x 6px rgba(0, 0, 0, 0.8)); /* SafariなどのWebkitブラウザ用 */
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.8));
  }
  .ap_mv {
    height: 110px;
    background-position: 80% 50%;
  }
  #ap .ap_mv .mv_title {
    top: 64%;
  }
  #ap.is-open .slide_menu .ap_menu {
    width: 100%;
  }
  #ap .breadcrumb {
    width: 100%;
    margin: 24px auto 40px;
    padding: 0 30px;
  }
  .ap_block {
    margin-bottom: 70px;
    padding: 0 30px;
  }
  .ap_block:last-of-type {
    margin-bottom: 100px;
  }
  #ap h4 {
    font-size: 1.7rem;
  }
  .ap_script {
    margin-bottom: 40px;
  }
  .yt_wrap {
    margin-bottom: 36px;
  }
  .yt_wrap_s {
    width: 100%;
    height: inherit;
    /* padding-top: 56.25%; */
  }
  .r_btn a {
    width: 80%;
    height: 60px;
    margin: auto;
    font-size: 1.4rem;
    padding: 0 22px;
  }
  .r_btn a::after {
    width: 24px;
    height: 24px;
    right: 18px;
  }
  .r_btn_li .r_btn {
    width: 48%;
  }

  .aptem_name {
    font-size: 1rem;
  }
  #ap .aptem_pic p {
    font-size: 0.8rem;
  }
  .aptem_pic {
    padding: 8px 0 30px;
  }
  .spec_li li {
    height: 68px;
    font-size: 1rem;
    border-bottom: 24px solid #f5f5f5;
  }
  .second_tem .spec_li li {
    border-bottom: 24px solid #f2f6fc;
  }

  .spec_title .hexa li {
    height: 68px;
  }
  #ap .spec_title .hexa li p {
    width: 96px;
    height: 24px;
    line-height: 24px;
    font-size: 1rem;
  }
  .spec_title .hexa li p:before,
  .spec_title .hexa li p:after {
    border: 12px solid transparent;
  }
  .spec_title .hexa li p:before {
    right: 100%;
    border-right-color: #bfbfbf;
  }
  .spec_title .hexa li p:after {
    right: 100%;
    border-left-color: #bfbfbf;
  }
  .spec_title {
    bottom: 22px;
  }
  .spec_li li:nth-of-type(-n + 4),
  .spec_title .hexa li:nth-of-type(-n + 4) {
    height: 120px;
  }

  .r_btn_li {
    width: 100%;
  }
  .r_btn_li .r_btn a {
    width: 100%;
    height: 50px;
    padding: 0 22px;
    font-size: 1.2rem;
  }
  .r_btn_li .r_btn a::after {
    width: 20px;
    height: 20px;
    right: 14px;
  }
  #ap .ap_script_box p:first-of-type {
    font-size: 1.3rem;
  }
  .manual_li li {
    display: block;
  }
  .manual_li li .ap_script {
    width: 100%;
  }
  .manual_li li .manual_img {
    width: 100%;
  }

  .manual_block {
    margin-bottom: 80px;
  }
  #js-pagetop {
    right: auto;
    left: 30px;
    bottom: 20px;
  }
  #js-pagetop {
    bottom: 26px;
  }
  .btn_receive {
    width: 220px;
    height: 60px;
  }
  #js-pagetop button {
    width: 220px;
    height: 60px;
    font-size: 1.2rem;
    border-radius: 30px;
  }
  #js-pagetop button:hover {
    width: 220px;
    height: 60px;
  }
  .rx_footer.h_bg #js-pagetop button {
    width: 220px;
    height: 60px;
    font-size: 1.2rem;
    border-radius: 30px;
  }
  .rx_footer.h_bg #js-pagetop button:hover {
    width: 220px;
    height: 60px;
  }
  #js-pagetop.sss {
    top: -80px;
  }

  .rental_btn {
    bottom: 30px;
    /* left: auto;
    right: 20px; */
    width: 150px;
  }
}

/* mailpoet style */

#ap #mailpoet_form_1 {
  position: fixed;
  max-width: 642px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  background-color: #e40039;
  border-radius: 20px;
  z-index: 2000;
}
#ap #mailpoet_form_1 form.mailpoet_form {
  padding: 44px;
}
#ap #mailpoet_form_1 p {
  color: #fff;
}
#ap .t_right p {
  text-align: right !important;
  line-height: 42px;
}
#ap #mailpoet_form_1 .mailmaga_title {
  margin: 0 0 40px 130px;
}
#ap #form_email_1 {
  height: 42px;
  border: 1px solid #fff;
}
#ap .mailpoet_select {
  position: relative;
  width: 100%;
  height: 42px;
  border: 1px solid #fff;
  border-radius: 0;
  background-color: #fff;
  color: #6b6b6b;
}
#ap select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
#ap select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
#ap select {
  background-image: url(../image/aiwaplay/arrow_down_red.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 13px 13px;
}
.label_t {
  padding: 6px 0 0 28px;
}
.label_t .mailpoet_radio_label {
  position: relative;
}
#ap form input[type="radio"] {
  position: absolute;
  left: -34px;
  top: -5px;
  border: #fff;
}
#ap .mailpoet_radio {
  width: 22px;
  height: 22px;
}

#ap input[type="submit"] {
  position: inherit;
  width: 236px;
  height: 58px;
  line-height: 48px;
  color: #fff;
  margin: 0 auto !important;
  border: 1px solid #fff !important;
  border-radius: 29px;
}
#ap .mailmaga_btn {
  margin-top: 36px;
}
#ap #mailpoet_form_1 .mailpoet_paragraph {
  margin-bottom: 10px;
}
#ap .mailpoet_form_column {
  width: 100%;
}
#ap #mailpoet_form_1 .mailpoet_paragraph.last {
  padding: 0 26%;
}
#ap fieldset {
  display: flex;
  padding: 6px 0;
}
#ap .mailpoet_radio_label {
  color: #fff;
  margin-right: 48px;
}
#ap .parsley-required,
.parsley-custom-error-message {
  color: #fff;
}

@media screen and (max-width: 750px) {
  #ap #mailpoet_form_1 {
    width: 90%;
  }
  #ap #mailpoet_form_1 form.mailpoet_form {
    padding: 38px 30px 24px;
  }
  #ap #mailpoet_form_1 .mailmaga_title {
    margin: 0 auto 24px;
  }
  #ap #mailpoet_form_1 .mailpoet_paragraph {
    margin-bottom: 8px;
    /* padding: 0 !important; */
  }
  #ap .mailmaga_btn {
    margin-top: 24px;
  }
  #ap .t_right p {
    text-align: left !important;
    margin-bottom: 10px;
  }
  #ap #mailpoet_form_1 .mailpoet_paragraph.mailmaga_btn {
    padding: 0;
  }
}
.mailmaga_box {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
#ap .open_box {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9000;
  background: rgba(255, 255, 255, 0.6);
  visibility: visible;
  opacity: 1;
}

#ap #mailpoet_form_1 .cl_btn {
  position: absolute;
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  top: 10px;
  right: 14px;
  background-image: url(../image/aiwaplay/close_btn.svg);
  cursor: pointer;
  visibility: visible !important;
}
option {
  /* background-color: #33528d; */
}

select[multiple] option {
  color: #333;
  padding: 5px 5px 5px 35px;
  position: relative;
}

select[multiple] option:checked {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(./assets/check.svg) 10px center / 15px auto no-repeat !important;
}

/* mailpoet 画面 */
.mailpoet-manage-subscription {
  width: 100%;
  margin: 0 auto;
  max-width: 450px;
}
.mailpoet_paragraph {
  margin-bottom: 20px;
}
.mailpoet-manage-subscription fieldset {
  border: none;
  margin-left: 0;
  padding-left: 0;
}
.mailpoet_text_label {
  margin-right: 10px;
}
.mailpoet_select {
  display: block;
}
.mailpoet_paragraph label {
  display: block;
  margin-bottom: 6px;
}

.mailpoet_paragraph input[type="submit"] {
  -webkit-appearance: none;
  position: unset;
  width: 100%;
  height: auto;
  width: 200px;
  height: 60px;
  border: none;
  background-color: #be161d;
  color: #fff;
  font-size: 1.6rem;
  line-height: 60px;
  vertical-align: top;
  border-radius: 2em;
  cursor: pointer;
  margin: 0 auto;
}

.mailpoet_confirm_unsubscribe {
  text-align: center;
}
.mailpoet_confirm_unsubscribe > a {
  width: 320px;
  height: 58px;
  line-height: 60px;
  background-color: #be161d;
  color: #fff;
  border-radius: 2em;
  cursor: pointer;
  margin: 40px auto 10%;
}

#ap .manage_sub .mailpoet_select {
  border: 1px solid #000;
  padding: 0 20px;
  border-radius: 8px;
}
#ap .manage_sub form input[type="radio"] {
  position: unset;
}
#ap .manage_sub .mailpoet_radio_label {
  color: #000;
  text-align: left;
}
.mailpoet-manage-subscription .mailpoet-change-email-info {
  font-size: 0;
}
.mailpoet-manage-subscription .mailpoet-change-email-info::before {
  font-size: 14px;
  content: "メールアドレスを変更する場合、一度購読を停止しもう一度サインアップをしてください。購読を中止したい方は、下記から「購読中止」を選び「保存」を押してください。";
  /* white-space: pre; */
}

#ap .label_t legend {
  display: none;
}

#ap .mailpoet_confirm_unsubscribe {
  font-size: 0;
}
#ap .mailpoet_confirm_unsubscribe::before {
  font-size: 14px;
  content: "aiwa play RX01メルマガの購読を中止する方は、下記のボタンをクリックしてください。";
}

#ap .mailpoet_confirm_unsubscribe a {
  font-size: 0;
  border-radius: 29px;
}
#ap .mailpoet_confirm_unsubscribe a::before {
  font-size: 16px;
  color: #fff;
  content: "購読を中止する";
}
#ap .mailpoet_segment_label {
  display: none;
}
#ap .mailpoet_select_label {
  text-align: left;
}
.link_text a {
  color: #386bcc;
}

/* LP_css */
.lp_bg {
  position: relative;
  width: 100%;
  height: 856px;
  background: url(../image/lp/lp_main_top02.png) center / cover;
  background-repeat: no-repeat;
  margin-bottom: 36px;
}
.lp_top_inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.lp_inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.lp_contents {
  display: block;
  margin-top: 30px;
}
.lp_contents img {
  margin: 0 20px 35px auto;
}
.lp_contents img:nth-of-type(1) {
  width: 324px;
  margin-right: 50px;
}
.lp_contents img:nth-of-type(2) {
  width: 394px;
  margin-bottom: 11px;
}
.lp_contents img:nth-of-type(3) {
  width: 315px;
}
.lp_btn_list {
  position: absolute;
  display: block;
  top: 63%;
  right: 294px;
}
.lp_btn_row {
  display: flex;
  width: 480px;
  justify-content: space-between;
  margin: 0 auto 70px;
}
.lp_btn {
  position: relative;
  padding: 18px 47px 18px 70px;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #e60039;
  border: 3px solid #b5002d;
  border-radius: 13px;
  margin-bottom: 20px;
}
.lp_btn::before {
  position: absolute;
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
.lp_btn:nth-of-type(1)::before {
  background: url(../image/lp/icon_mail.svg) no-repeat;
}
.lp_btn:nth-of-type(2)::before {
  background: url(../image/lp/icon_shop.svg) no-repeat;
}
.lp_btn::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 26px;
  right: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.center_contents {
  text-align: center;
  margin: 0 auto;
}
.center_contents img {
  margin: 0 auto;
}
#ap .top_title {
  margin-bottom: 32px;
}
#ap .top_title img {
  width: 412px;
}
.lp_point1 {
  margin-bottom: 65px;
}
.t_sideline {
  position: relative;
  display: block;
  width: 428px;
  margin: 20px auto;
}
.t_sideline::before,
.t_sideline::after {
  position: absolute;
  content: "";
  top: 0;
  width: 8px;
  height: 70px;
  background-color: #e60039;
  border-radius: 1em;
}
.t_sideline::before {
  left: 0;
  transform: rotate(-38deg);
}
.t_sideline::after {
  right: 0;
  transform: rotate(38deg);
}
.gif_list,
.action_list {
  text-align: center;
}
.action_list .t_sideline {
  display: inline-block;
  width: inherit;
  padding: 0 20px;
}
.action_list .t_sideline::before,
.action_list .t_sideline::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 30px;
}

.center_contents .lp_point_img1 {
  margin-top: -80px;
}

.red_box_text {
  display: inline-block;
  padding: 12px 26px;
  background-color: #e60039;
  border: 4px solid #b5002d;
  border-radius: 30px;
}
.lp_color_bg {
  position: relative;
  padding: 90px 0 30px;
  background-color: #33528d;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-bottom: 140px;
  overflow-x: clip;
}
.reason_item {
  margin-bottom: 120px;
}
#ap .lp_color_bg .reason_title {
  width: 420px;
  height: 84px;
  border-radius: 42px;
  line-height: 84px;
  top: -42px;
}

.comment_item {
  width: 100%;
  max-width: 1040px;
  margin: 30px auto 0;
}
.comment_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.comment_box {
  width: 320px;
  height: 352px;
  background-color: #fff;
  padding: 25px;
  border: 1px solid #d8d8d8;
  border-radius: 16px;
  font-size: 1.4rem;
}
#ap .comment_title {
  font-size: 2.1rem;
  color: #e66a00;
  text-align: center;
  font-weight: 600;
  margin: 14px auto 20px;
}
#ap .comment_box .comment_lead {
  position: relative;
  width: 100%;
  height: 204px;
}
#ap .comment_box .comment_lead p {
  font-size: 1.4rem;
}
.text_block {
  position: absolute;
  bottom: 0;
}

.demo_play img {
  width: 700px;
  margin-bottom: 70px;
}
.demo_play iframe {
  width: 65%;
  height: auto;
  aspect-ratio: 16/9;
  margin-bottom: 50px;
}

.reason_list {
  display: flex;
  justify-content: space-between;
  margin: 25px auto 70px;
}
.reason_box {
  position: relative;
  width: 48%;
  border: 3px solid #f2577d;
  padding: 48px 38px 24px;
}
#ap .reason_box > a:hover {
  opacity: 1;
}

#ap .reason_title {
  position: absolute;
  top: -25px;
  left: 50%;
  width: 252px;
  height: 50px;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 50px;
  background-color: #f2577d;
  text-align: center;
  border-radius: 25px;
  transform: translateX(-50%);
}
#ap .bg_blue .reason_title {
  background-color: #3aa0c6;
}

.reason_box li {
  display: flex;
  margin-bottom: 8px;
}
.reason_box .num_box {
  width: 18%;
  max-width: 86px;
  /* height: 36px; */
  background-color: #f2577d;
  padding: 4px 0;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  margin-right: 2%;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
}
.reason_box .num_box span {
  font-size: 2.3rem;
}
#ap .box_blue {
  border-color: #3aa0c6;
}
#ap .box_blue .reason_title {
  background-color: #3aa0c6;
}
#ap .box_blue .num_box {
  background-color: #3aa0c6;
}
#ap .reason_box li a {
  width: 80%;
}
#ap .reason_t {
  font-size: 2rem;
  text-decoration: underline;
}
.point_title {
  position: relative;
  width: 932px;
  margin: 0 auto;
}
.circle_box {
  display: inline-block;
  width: 120px;
  height: 120px;
  background-color: #f2577d;
  border-radius: 60px;
  text-align: center;
  font-weight: 600;
  padding-top: 32px;
  line-height: 30px;
}
.circle_title {
  position: absolute;
  display: inline-block;
  top: 20px;
  left: 110px;
  width: 822px;
  height: 68px;
  border-bottom: 5px solid #f2577d;
  padding-left: 24px;
}
.bg_blue .circle_box {
  background-color: #3aa0c6;
}
.bg_blue .circle_title {
  border-color: #3aa0c6;
}

.rx01_img {
  position: relative;
  width: 100%;
  height: 410px;
  margin: 0 auto 20px;
  max-width: 1200px;
}
.rx01_img .big_img {
  position: absolute;
  width: 100%;
  top: -100px;
  left: 140px;
  max-width: 1254px;
}
.ex_text {
  position: absolute;
  width: 100%;
  top: -12px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}
.ex_text_2nd {
  top: auto;
  bottom: 2%;
}

.point_box {
  position: relative;
  width: 100%;
  max-width: 770px;
  height: auto;
  margin: 0 auto 4%;
}
.sec_box {
  height: 464px;
}
.sec_box p:nth-of-type(2) {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.pink_title {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  margin: 40px auto 12px;
  line-height: 58px;
  background-color: #f2577d;
  border-radius: 28px;
}
.point_inner {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.inner_762 {
  width: 100%;
  max-width: 762px;
  margin: 0 auto;
}
.inner_784 {
  width: 100%;
  max-width: 784px;
  margin: 0 auto;
}
.inner_900 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.point_img01 {
  position: absolute;
  top: 10px;
}
.align_r {
  position: absolute;
  bottom: 0;
  right: 60px;
}
.wh_box {
  display: inline-block;
  height: 50px;
  padding: 0 92px;
  color: #626262;
  line-height: 48px;
  background-color: #fff;
  border: 2px solid #626262;
  border-radius: 25px;
  text-align: center;
  margin-bottom: 15px;
}
.mode_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.mode_list li {
  width: 48%;
  margin-bottom: 18px;
}
.mode_list .mode_img {
  /* position: relative; */
  width: 100%;
  height: auto;
  /* margin-bottom: 10px; */
}
.mode_list .mode_img .gif_item {
  /* position: absolute; */
  /* top: 18px; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  border-radius: 15px;
}
.gif_list .wh_box {
  position: relative;
  width: 98%;
  height: 36px;
  line-height: 34px;
  top: 18px;
  /* left: 50%; */
  padding: 0;
  /* transform: translateX(-50%); */
  margin-bottom: 0;
}
.figure {
  position: relative;
  display: flex;
  width: 100%;
  top: 15px;
}
.figure .figure_img {
  width: 40.69%;
  max-width: 319px;
}
.figure .figure_text {
  width: 50%;
  padding-top: 100px;
}
#ap .figure .figure_text p,
#ap .message_box p {
  color: #000;
}
.figure_name {
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding-left: 20px;
  border-bottom: 2px solid #3aa0c6;
}
#ap .figure_ex {
  padding: 10px 0 0 20px;
  font-size: 1.4rem;
}
#ap .message_box {
  position: static;
  width: 100%;
  height: auto;
  padding: 30px 58px 24px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 15px #aca5823e;
  margin-bottom: 50px;
}
#ap .message_box p {
  line-height: 26px;
  margin-bottom: 20px;
}
/* #ap .message_box::after {
  position: absolute;
  content: "";
  width: 176px;
  height: 106px;
  bottom: 24px;
  right: 24px;
  background-image: url(../image/lp/lp_img_wakai_sign.png);
} */
.sign_img {
  margin-left: auto;
  margin-top: -70px;
}
.yt_list {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
}
.yt_list li {
  width: 31%;
  margin-bottom: 50px;
}
.yt_list li .wh_box {
  width: 100%;
  height: 34px;
  line-height: 34px;
  padding: 0;
}
.sns_link {
  margin-bottom: 72px;
}
#ap .sns_link p {
  font-size: 1.9rem;
  color: #236dcc;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
}
.sns_link_item {
  display: flex;
  width: 214px;
  justify-content: space-between;
  margin: 0 auto;
}

.app_link {
  text-align: center;
}
.app_link .wh_box {
  margin: 0 auto 20px;
  color: #3aa0c6;
  border-color: #3aa0c6;
}
.app_link_item li {
  display: flex;
  margin-bottom: 30px;
}
.app_link_item li:last-of-type {
  margin-bottom: 50px;
}
.app_link_item li .app_icon {
  width: 22%;
}
.app_link_item .app_detail {
  margin-top: 16px;
}
#ap .app_link_item .app_detail p {
  text-align: left;
  color: #000;
  margin-bottom: 20px;
}
#ap .let_play {
  margin-bottom: 30px;
}
#ap .let_play p {
  text-align: center;
  font-weight: 600;
  color: #000;
  font-feature-settings: "palt";
}
.bottom_bg {
  position: relative;
  width: 100%;
  height: 485px;
  background: url(../image/lp/lp_bottom_img.png) center / cover;
}
.bottom_bg .bottom_bg_item {
  position: absolute;
  width: 100%;
  max-width: 983px;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* space margin */
.sc_10 {
  margin-bottom: 10px;
}
.sc_20 {
  margin-bottom: 20px;
}
.sc_60 {
  margin-bottom: 60px;
}
.sc_80 {
  margin-bottom: 80px;
}

/* text align */
.t_left {
  text-align: left;
}
.t_right {
  text-align: right;
}

/* lp_font_color */
.t_center {
  text-align: center;
  margin: 0 auto;
}
.t_right {
  text-align: right;
}
#ap .t_wh {
  color: #fff;
}
#ap .t_bk {
  color: #000;
}
#ap .t_yel {
  color: #ffff46;
}
#ap .t_red {
  color: #e60039;
}
#ap .t_gray {
  color: #626262;
}
#ap .t_pink {
  color: #f2577d;
}
#ap .t_blue {
  color: #3aa0c6;
}

#ap .bg_yel {
  background-color: #fff9d9;
}
#ap .bg_pink {
  background-color: #fdf0f4;
}
#ap .bg_blue {
  background-color: #f0fbff;
  margin-bottom: 70px;
}

/* t_line color */
.line_gray {
  border-color: #626262;
  margin-bottom: 50px;
}
.line_red {
  border-color: #f03b68;
  margin-bottom: 50px;
}
.line_blue {
  border-color: #3aa0c6;
  margin-bottom: 50px;
}
.lp_footer {
  width: 100%;
  /* max-width: 1200px; */
  height: 94px;
  background-color: #fff;
  margin: 0 auto;
}

.footer_sns {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: 54px;
  justify-content: space-between;
  margin: 20px auto;
}
.footer_sns .footer_logo_mi {
  position: absolute;
  display: flex;
  width: 46%;
  left: 0;
  z-index: 20;
  justify-content: left;
}
.footer_sns .footer_logo_mi a {
  margin-right: 13px;
}
.footer_sns .footer_logo_mi a img {
  width: 100%;
  height: 52px;
}
.footer_sns .footer_logo_mi a:first-of-type img {
  width: 186px;
  height: 30px;
  margin-top: 11px;
}
.footer_sns .footer_logo_mi a:first-of-type {
  margin-right: 52px;
}
.footer_sns .footer_copy_mi {
  position: absolute;
  right: 0;
}
.footer_sns .footer_copy_mi {
  height: 52px;
  line-height: 52px;
}

/* lp_font_size */
#ap .fs13 {
  font-size: 1.3rem;
}
#ap .fs17 {
  font-size: 1.7rem;
}
#ap .fs18 {
  font-size: 1.8rem;
}
#ap .fs20 {
  font-size: 2rem;
}
#ap .fs21 {
  font-size: 2.1rem;
}
#ap .fs23 {
  font-size: 2.3rem;
}
#ap .fs25 {
  font-size: 2.5rem;
}
#ap .fs28 {
  font-size: 2.8rem;
}
#ap .fs30 {
  font-size: 3rem;
}
#ap .fs31 {
  font-size: 3.1rem;
}
#ap .fs34 {
  font-size: 3.4rem;
}
#ap .fs37 {
  font-size: 3.7rem;
}
#ap .fs38 {
  font-size: 3.8rem;
}
#ap .fs42 {
  font-size: 4.2rem;
}
#ap .fs47 {
  font-size: 4.7rem;
}
#ap .fs55 {
  font-size: 5.5rem;
}

/* lp_font_weight */
#ap .fw_6 {
  font-weight: 600;
}
#ap .fw_7 {
  font-weight: 700;
}

/* LP_mail */
.lp_logo {
  width: 100%;
  margin: 100px auto 28px;
  text-align: center;
}
.lp_logo img {
  width: 318px;
  height: auto;
  margin: 0 auto 13px;
}
.lp_logo h1 {
  font-size: 2.5rem;
  color: #e60039;
  font-weight: 600;
}
.lp_top {
  margin-right: 0;
}

#ap #lp_mail #mailpoet_form_1 {
  position: inherit;
  transform: inherit;
  background-color: #fff;
}
#ap #lp_mail #mailpoet_form_1 p,
#ap #lp_mail .mailpoet_radio_label {
  color: #626262;
}
#ap #lp_mail #form_email_1,
#ap #lp_mail .mailpoet_select {
  border-color: #707070;
}
#ap #lp_mail input[type="submit"] {
  background-color: #e60039;
  transition: all 0.3s;
}
#ap #lp_mail input[type="submit"]:hover {
  opacity: 0.6;
}
#ap #lp_mail .parsley-required,
.parsley-custom-error-message {
  color: #900;
}

@media screen and (max-width: 1140px) {
  .rx01_img .big_img {
    top: 50%;
    left: 10;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 750px) {
  .lp_bg {
    height: 507px;
    margin-top: 223px;
    background: url(../image/lp/lp_main_top_sp02.png) 25% / cover;
    overflow-x: clip;
    margin-bottom: 40px;
  }
  .lp_top_inner {
    position: absolute;
    top: -232px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px;
  }
  .lp_contents {
    position: relative;
  }
  .lp_contents img:nth-of-type(1),
  .lp_contents img:nth-of-type(2),
  .lp_contents img:nth-of-type(3) {
    margin: 0 auto;
  }
  .lp_contents img:nth-of-type(1) {
    width: 234px;
  }
  .lp_contents img:nth-of-type(2) {
    width: 346px;
  }
  .lp_contents img:nth-of-type(3) {
    position: absolute;
    width: 214px;
    top: 360px;
    right: -42px;
  }
  .lp_btn_list {
    position: absolute;
    width: 45.334%;
    left: 20px;
    top: 626px;
    z-index: 10;
    min-width: 164px;
  }
  .lp_btn {
    font-size: 1.3rem;
    padding: 14px 40px;
  }
  .lp_btn::before {
    width: 22px;
    height: 22px;
    left: 14px;
  }
  .lp_btn::after {
    top: 22px;
    right: 12px;
  }
  .lp_bg .lp_btn::after {
    top: 17px;
  }
  #ap .top_title img {
    width: 80%;
  }
  .lp_point1 {
    margin-bottom: 30px;
  }

  .lp_inner {
    padding: 0 20px;
  }

  .lp_btn_row,
  .demo_play iframe,
  .point_title,
  .circle_title,
  .point_box,
  #ap .reason_title,
  #ap .lp_color_bg .reason_title,
  .bottom_bg .bottom_bg_item {
    width: 100%;
  }
  #ap .top_title img {
    width: 79%;
  }
  .t_sideline {
    position: relative;
    display: inline-block;
    width: 200px;
    margin-bottom: 10px;
  }
  .t_sideline::before,
  .t_sideline::after {
    width: 4px;
    height: 30px;
  }
  .lp_btn_row {
    display: block;
    width: 86%;
    margin-bottom: 50px;
  }
  .lp_btn_row .lp_btn {
    padding: 20px 10px 20px 32px;
    font-size: 1.8rem;
  }
  .lp_btn_row .lp_btn::before {
    width: 32px;
    height: 32px;
    left: 32px;
  }
  .lp_btn_row .lp_btn::after {
    top: 28px;
    right: 22px;
  }
  .lp_color_bg {
    padding: 20px 20px 40px;
    margin-bottom: 60px;
  }
  #ap .bg_blue {
    padding-bottom: 4px;
    margin-bottom: 50px;
  }
  .comment_list,
  .mode_list,
  .reason_list,
  .yt_list {
    display: block;
  }
  .comment_box {
    width: 98%;
    height: 370px;
    margin: 0 10px 30px;
  }
  #ap .comment_box .comment_lead {
    height: 220px;
  }
  .red_box_text {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    border: inherit;
    border-top: 2px solid #b5002d;
    border-bottom: 2px solid #b5002d;
  }
  .center_contents .lp_point_img1 {
    margin-top: -50px;
  }
  .reason_item p {
    text-align: left;
    line-height: 2em;
  }
  .reason_list {
    margin-top: 46px;
  }
  .reason_box {
    width: 100%;
    padding: 21px 16px 24px;
    margin-bottom: 46px;
  }
  #ap .reason_title {
    width: 164px;
    height: 32px;
    font-size: 1.5rem;
    line-height: 32px;
    top: -20px;
  }
  #ap .reason_box li a {
    width: 78%;
  }
  #ap .reason_t {
    font-size: 1.4rem;
    margin-top: 2px;
    line-height: 1.5;
  }
  .reason_box .num_box {
    width: 60px;
    height: 26px;
    line-height: 18px;
    font-size: 1.1rem;
  }
  .reason_box .num_box span {
    font-size: 1.6rem;
  }
  #ap .lp_color_bg .reason_title {
    width: 250px;
    height: 60px;
    line-height: 60px;
    top: -30px;
  }
  .point_title {
    margin: 20px auto 34px;
  }

  .circle_box {
    width: 86px;
    height: 86px;
    padding-top: 18px;
    line-height: 1.8em;
  }
  .circle_title {
    height: auto;
    left: 0;
    top: 8px;
    padding: 0 0 10px 94px;
    line-height: 1.3;
    font-feature-settings: "palt";
  }
  .ex_text {
    top: 8px;
  }
  .rx01_img .big_img {
    width: -webkit-fill-available;
    width: -moz-available;
    left: 0;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .ex_text_2nd {
    top: auto;
  }
  .point_box {
    /* min-height: 254px; */
  }
  .sec_box {
    height: auto;
    margin-bottom: 10%;
  }
  .point_box .pink_title {
    height: 35px;
    line-height: 35px;
    margin-top: 20px;
  }
  .rx01_img {
    /* height: 410px; */
  }
  .rx01_img p {
    text-align: left;
  }
  .point_img01 {
    position: relative;
  }
  .align_r {
    position: absolute;
    width: 48%;
    left: 20px;
    bottom: -10px;
    right: auto;
    text-align: right;
  }
  .wh_box {
    height: 28px;
    line-height: 28px;
    padding: 0 47px;
  }
  .mode_list li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .point_inner p {
    text-align: left;
  }
  .action_list .t_sideline {
    width: 240px;
  }
  .action_list .t_sideline::before,
  .action_list .t_sideline::after {
    top: 0;
  }
  .gif_list .mode_list li {
    margin-bottom: 0;
  }
  .gif_list .mode_list li:last-of-type {
    margin-bottom: 10px;
  }
  .mode_img p {
    text-align: center;
  }
  .double_l br {
    display: inline;
  }
  .gif_list .double_l {
    width: 96%;
    text-align: center;
    /* line-height: 0.8;
    margin-bottom: 10px; */
  }
  .gif_list .double_l::before,
  .gif_list .double_l::after {
    top: 2px;
    height: 48px;
  }
  .gif_list .double_l::before {
    left: 10px;
    transform: rotate(-18deg);
  }
  .gif_list .double_l::after {
    right: 10px;
    transform: rotate(18deg);
  }
  .gif_list img {
    width: 98%;
  }
  .sc_80,
  .sc_60 {
    margin: 0 auto 30px;
  }
  .simple2,
  .simple4 {
    margin-bottom: 40px;
  }
  .simple3,
  .simple5 {
    margin-bottom: 70px;
  }
  .mode_list {
    width: 90%;
    margin: 0 auto;
  }
  .mode_list li img {
    margin: 0 auto 10px;
  }
  .figure {
    display: block;
    top: 10px;
  }
  .figure .figure_img {
    width: 58%;
    margin: 0 auto;
  }
  .figure .figure_text {
    width: 100%;
    padding-top: 10px;
  }
  .figure_name {
    padding-left: 20%;
  }
  #ap .message_box {
    padding: 30px 30px 24px;
    margin-top: 30px;
  }
  #ap .message_box p {
    font-size: 1.6rem;
  }
  .sign_img {
    margin-top: -20px;
  }
  .yt_list li {
    width: 90%;
    /* min-width: 280px; */
    margin: 0 auto 30px;
  }
  .yt_list li img {
    width: 100%;
  }
  .app_link .wh_box {
    height: 47px;
    line-height: 45px;
    padding: 0 20px;
  }
  .app_link_item li {
    display: block;
    width: 86%;
    margin: 0 auto 30px;
  }
  .app_link_item li .app_icon {
    width: 56%;
    max-width: 170px;
    margin: 0 auto;
  }
  .bottom_bg {
    height: 153px;
  }
  .bottom_bg .bottom_bg_item {
    width: 90%;
    top: -28px;
  }
  .lp_footer {
    height: 160px;
  }
  .footer_sns {
    position: inherit;
    display: block;
    margin: 52px auto;
  }
  .footer_sns .footer_logo_mi {
    position: inherit;
    width: 90%;
    margin: 0 auto;
  }
  .footer_sns .footer_copy_mi {
    position: inherit;
    text-align: center;
  }
  .footer_sns .footer_logo_mi a:last-of-type {
    margin-right: 0;
  }
  #ap .go-top.absolute {
    top: -50px;
  }
  /* slide */
  .slider {
    margin: 30px auto 0;
    max-width: 500px;
    width: 80%;
  }
  .slick-img img {
    height: auto;
    width: 100%;
  }

  /* lp_mail */
  #ap .lp_header {
    padding: 23px 20px;
  }
  #ap .lp_header .logo {
    padding-top: 8px;
  }
  #ap .lp_header .ap_top {
    margin-right: 0;
  }
  #ap .lp_header .top_linkBtn:nth-of-type(1) {
    padding-top: 6px;
  }
  #ap .lp_header .top_linkBtn:nth-of-type(2) .shop_icon img {
    width: 160px;
    height: 36px;
  }

  #lp_mail {
    margin-bottom: 80px;
  }

  /* lp_font_size */
  #ap .fss12 {
    font-size: 1.2rem;
  }
  #ap .fss13 {
    font-size: 1.3rem;
  }
  #ap .fss15 {
    font-size: 1.5rem;
  }
  #ap .fss16 {
    font-size: 1.6rem;
  }
  #ap .fss17 {
    font-size: 1.7rem;
  }
  #ap .fss18 {
    font-size: 1.8rem;
  }
  #ap .fss19 {
    font-size: 1.9rem;
  }
  #ap .fss20 {
    font-size: 2rem;
  }
  #ap .fss21 {
    font-size: 2.1rem;
  }
  #ap .fss22 {
    font-size: 2.2rem;
  }
  #ap .fss23 {
    font-size: 2.3rem;
  }
  #ap .fss24 {
    font-size: 2.4rem;
  }
  #ap .fss25 {
    font-size: 2.5rem;
  }
  #ap .fss27 {
    font-size: 2.7rem;
  }
  #ap .fss28 {
    font-size: 2.8rem;
  }
  #ap .fss30 {
    font-size: 3rem;
  }
  #ap .fss31 {
    font-size: 3.1rem;
  }
  #ap .fss34 {
    font-size: 3.4rem;
  }
  #ap .fss37 {
    font-size: 3.7rem;
  }
  #ap .fss38 {
    font-size: 3.8rem;
  }
  #ap .fss42 {
    font-size: 4.2rem;
  }
  #ap .fss47 {
    font-size: 4.7rem;
  }
  #ap .fss55 {
    font-size: 5.5rem;
  }
  .t_left {
    text-align: left;
  }
  .lp_slide {
    width: 88.575%;
    margin: 0 auto;
    max-width: 500px;
  }
  .lp_slide .slick-prev,
  .lp_slide .slick-next,
  .lp_slide .slick-prev:before,
  .lp_slide .slick-next:before {
    display: none;
    right: inherit;
    left: inherit;
  }
  .lp_slide .slick-prev,
  .lp_slide .slick-next {
    width: 10px;
    height: 19px;
    z-index: 10;
  }
  .lp_slide .slick-prev {
    content: "";
    background: url(../image/lp/slide_prev.svg) no-repeat;
    left: -25px;
  }
  .lp_slide .slick-next {
    content: "";
    background: url(../image/lp/slide_next.svg) no-repeat;
    right: -25px;
  }
  .t_right {
    padding-right: 26px;
  }
}
/* 500 */
@media screen and (max-width: 500px) {
  .chat_info {
    width: 100%;
    padding: 20px 15px 15px;
  }
}
/* 375 */
@media screen and (max-width: 375px) {
  .comment_box {
    height: 400px;
  }
  #ap .comment_box .comment_lead {
    height: 248px;
  }

  .simple2 {
    height: 80px;
  }
  .simple4 {
    height: 120px;
  }
  .simple3,
  .simple5 {
    height: 90px;
  }
}

/* 320 */
@media screen and (max-width: 320px) {
  .comment_box {
    height: 424px;
  }
  #ap .comment_box .comment_lead {
    height: 282px;
  }

  .simple2 {
    height: 90px;
  }
  .simple4 {
    height: 130px;
  }
  .simple3,
  .simple5 {
    height: 170px;
  }
}

.con_pri ul li {
  margin-bottom: 8px;
  text-indent: -1em;
  padding-left: 1em;
}

/* 20230916_NEW POST */
.inner_new {
  width: 100%;
  max-width: 784px;
  margin: 0 auto 100px;
}
.support_select,
.user_case {
  width: 100%;
  max-width: 784px;
  margin: 0 auto 100px;
}
.redline_title {
  width: 100%;
  max-width: 784px;
  padding: 10px 0;
  margin: 0 auto 50px;
  font-size: 1.7rem;
}
.redline_title p:first-of-type {
  font-size: 2.2rem;
  font-weight: 600;
  border-bottom: 2px solid #e60039;
  margin-bottom: 20px;
  line-height: 2;
}
.redline_title p:last-of-type {
  font-size: 1.4rem;
}
.support_select ul,
.user_case ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.support_select ul li {
  width: 48%;
  height: 147px;
  border: 1px solid #707070;
  border-radius: 10px;
  text-align: center;
  line-height: 147px;
  font-size: 1.7rem;
  margin-bottom: 20px;
}

/* 20241031 サポート追加 */
.sup_inner2 .support_select2 {
  width: 100%;
  margin-bottom: 40px;
}

.text_link2 {
  font-size: 1.5rem;
  text-align: right;
  margin-bottom: 82px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 導入事例 */
.user_case ul li {
  width: 32%;
}
p.user_case_title {
  font-size: 1.7rem;
  /*      color:rgb(255,100,100); */
  margin: 0px !important;
  font-weight: bold;
}

/* お問い合わせ */
/* .box_contact p {
  display: none;
} */
.form_table tr {
  position: relative;
}
.form_table tr td.up_text {
  position: absolute;
  font-size: 1.2rem;
  top: 0;
  right: 0;
}
.other_link {
  text-align: right;
  font-size: 1.2rem;
  /* margin-bottom: 18px; */
}
/* red_btn2 */
.btn_item {
  display: flex;
  width: 80%;
  margin: 0 auto;
  justify-content: space-between;
}
.red_btn2 p {
  text-align: center;
  line-height: 1.8;
  font-size: 1.7rem;
  margin-bottom: 30px;
}
.red_btn2 a {
  position: relative;
  width: 264px;
  height: 62px;
  background-color: #e60039;
  color: #fff;
  border-radius: 15px;
  line-height: 62px;
  text-align: center;
  margin: 0 auto 66px;
}
.red_btn2 a:hover {
  opacity: 0.5;
}
.red_btn2 a::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 10px;
  top: 50%;
  right: 20px;
  background-image: url(../image/btn_arrow.svg);
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.contact_link {
  margin-bottom: 102px;
}
.contact_link li {
  font-size: 1.7rem;
  margin-bottom: 30px;
}
.contact_link li a {
  display: inline-block;
  font-weight: 600;
  text-decoration: underline;
  margin-right: 6px;
}
.contact_info {
  font-size: 1.5rem;
}
.contact_info span {
  font-size: 1.2rem;
}
.intro_text,
.intro_list ul p {
  font-size: 1.7rem;
  margin-bottom: 41px;
}
.intro_list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
.intro_list ul li {
  width: 32%;
}
.intro_list ul li img {
  border-radius: 5px;
  margin-bottom: 10px;
}
.intro_list ul::after {
  display: block;
  width: 32%;
  content: "";
}

/* 導入事例 */
.case_box {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  border: 1px solid #707070;
  border-radius: 20px;
  justify-content: space-between;
  padding-left: 42px 0 0 35px;
  margin-bottom: 30px;
}
.case_box img {
  width: 50%;
  border-radius: 0 20px 20px 0;
}
.case_title {
  width: 325px;
  margin: 45px 0 0 35px;
}
.case_title p:first-of-type {
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}
.case_donu {
  font-size: 1.7rem;
  color: #e60039;
  font-weight: bold;
  margin-bottom: 10px;
}
.case_line_text {
  padding-bottom: 30px;
  border-bottom: 1px solid #707070;
  margin-bottom: 30px;
}
.case_text {
  margin-bottom: 30px;
}
.case_sub {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

/* 製品情報お知らせ */
.pro_info {
  width: 90%;
  border: 1px solid #707070;
  border-radius: 10px;
  max-width: 848px;
}
.pro_info .news_list {
  width: 100%;
  margin: 0 auto;
  padding: 30px 30px 0;
  box-sizing: border-box;
}
.pro_info .news_list li .ul_text a,
.it_info .news_list li .ul_text a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: inherit;
  white-space: inherit;
}
.pro_info .link_text {
  padding: 0 30px;
  text-align: right;
  margin-bottom: 20px;
}
/* chat_box */
.chat_box .chat_info {
  border: none;
  padding-top: 0;
}
.redline_title .sup_note {
  font-weight: 600;
  margin: 20px 0;
}

/* 過去のモデル */
.archive_item {
  width: 690px;
  margin: 0 auto 30px;
}
.archive_item .item_menu ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  padding: 0 20px;
  margin: 0 auto 75px;
}
.item_menu ul li {
  width: 24%;
  font-size: 1.3rem;
  text-align: center;
  padding: 6px 0;
  border: 1px solid #707070;
  margin: 0 1% 2% 0;
  border-radius: 2em;
}
.item_menu ul li:nth-child(4n) {
  margin-right: 0;
}
.archive_list {
  margin-bottom: 70px;
}

/* 表示ススタイル */
.menu_list.flex_wrap ul {
  flex-wrap: wrap;
}
.model_names2 {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}
.model_names2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  background-color: #666;
  transform: translateY(-50%);
  z-index: -1;
}
.model_names2 p {
  display: inline-block;
  font-size: 1.5rem;
  background-color: #fff;
  padding: 4px 6px 4px 0;
}
.archive_list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.archive_list ul li {
  width: 48.551%;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.archive_list ul li a {
  display: block;
}
.archive_list ul li a p:first-of-type {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #464646;
}
.archive_list ul li a p:last-of-type {
  font-size: 1.3rem;
  color: #6e6e6e;
}

/* 製品情報一覧 */
.menu_list.add_menu ul {
  flex-wrap: wrap;
}
.bold {
  font-weight: bold;
}

/* 20240806 support */
.support_select2 {
  width: 90%;
  max-width: 784px;
  margin: 0 auto 88px;
}
.support_select2 li {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 15px;
  margin-bottom: 50px;
}
.support_select2 h5 {
  font-size: 18px;
  font-weight: 600;
  padding-left: 10px;
  border-left: 9px solid #e60039;
  margin-bottom: 25px;
}
.support_select2 .sup_line {
  display: flex;
  justify-content: space-between;
}
.support_select2 .sup_line span {
  color: #e60039;
  font-weight: 600;
}
.support_select2 .sup_line p {
  line-height: 35px;
}
.sup_btn {
  width: 168px;
  height: 35px;
  text-align: center;
  font-size: 12px;
  line-height: 35px;
  color: #fff;
  background-color: #f45e6f;
  border-radius: 1em;
  cursor: pointer;
  transition: all 0.3s;
}
.sup_btn.con_btn {
  width: 196px;
}
.sup_btn:hover {
  opacity: 0.5;
}
.sup_btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-135deg);
  margin: -3px 0 0 6px;
}

/* 20240806 support modal */
.modal_box {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  padding: 20vw 0;
  z-index: 2000;
  overflow-x: scroll;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.modal_box.active {
  opacity: 1;
  visibility: visible;
}
.sup_box {
  position: absolute;
  width: 90%;
  max-width: 700px;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  padding: 68px 44px;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.3);
}
.sup_box .box_off {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  top: -18px;
  right: -18px;
  background-color: #de151d;
  border-radius: 2em;
  cursor: pointer;
}
.box_off::before,
.box_off::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 3px;
  height: 23px;
  background: #fff;
}
.box_off::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.box_off::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sup_box_t1,
.sup_box_t2 {
  border-bottom: 2px solid #e60039;
  padding-bottom: 18px;
  margin-bottom: 26px;
}
.sup_box_t2 {
  border-bottom: 1px dashed #939393;
}
.mid_text {
  font-size: 20px;
  font-weight: 400;
}
.imp_text {
  font-size: 20px;
  font-weight: 600;
}
.imp_text span {
  font-size: 30px;
}
.small_text,
.imp_text span.small_text {
  display: inline;
  font-size: 13px;
  font-weight: 400;
}
.sup_box .sup_btn {
  margin: auto;
}
.mb90 {
  margin-bottom: 90px;
}

@media screen and (max-width: 750px) {
  .end_margin {
    margin-bottom: 60px;
  }
  .redline_title {
    width: 100%;
    padding: 0 30px 8px;
  }
  .redline_title p:first-of-type {
    font-size: 1.7rem;
  }
  .btn_item {
    display: block;
    width: 80%;
  }
  .red_btn2 a {
    margin-bottom: 40px;
  }
  .inner_new {
    width: 100%;
    padding: 0 26px;
  }
  .contact_link li a {
    display: block;
    margin-bottom: 8px;
  }

  .intro_list ul {
    display: block;
  }
  .intro_list ul li {
    width: 100%;
  }
  .intro_list ul::after {
    display: none;
  }

  /* サポート */
  .support_select ul {
    display: block;
    padding: 0 30px;
  }
  .support_select ul li {
    width: 80%;
    height: 100px;
    margin: 0 auto 20px;
    line-height: 100px;
  }
  .text_link2 {
    text-align: center;
  }

  /* 製品情報お知らせ */
  .pro_info .news_list {
    padding: 30px 0 0;
  }
  .pro_info .link_text {
    padding: 0;
  }

  /* 過去のモデル */
  .archive_item {
    width: 100%;
    padding: 0 30px 70px;
  }
  .archive_item .item_menu ul {
    padding: inherit;
    justify-content: space-between;
  }
  .archive_item .item_menu ul li {
    width: 46%;
    margin: 0 auto 15px;
  }
  .archive_list ul {
    display: block;
  }
  .archive_list ul li {
    width: 100%;
  }

  /* 導入事例 */
  .case_box {
    display: block;
    width: 100vw;
    margin: 0 calc(50% - 50vw) 30px;
    border-radius: 0;
    border-right: none;
    border-left: none;
  }
  .case_title {
    width: 84%;
    margin: 30px auto;
  }
  .case_box img {
    width: 100%;
    border-radius: 0;
  }

  /* Form */
  .form_table tr td.up_text {
    position: inherit;
    margin-top: 8px;
  }

  /* 20240806 support */
  .sup_box {
    padding: 38px 20px;
  }
  .support_select2 .sup_line {
    display: block;
  }
  .support_select2 .sup_line p {
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .support_select2 .sup_line .sup_btn {
    margin-left: auto;
    line-height: 35px;
  }
  .mb90 {
    margin-bottom: 45px;
  }
  /* text size  */
  .imp_text {
    font-size: 14px;
  }
  .imp_text span {
    font-size: 20px;
  }
  .mid_text {
    font-size: 18px;
  }
}

/* 20240528 製品一覧メニュー */
.ca_menu {
  padding: 20px;
  margin-bottom: 60px;
  background-color: #f4f4f4;
  box-sizing: border-box;
}
.menu_inner {
  margin-bottom: 2%;
}
.menu_inner p {
  padding: 4px 8px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  border-left: 6px solid #e60039;
  border-bottom: 1px solid #e60039;
  box-sizing: border-box;
}
.ca_list {
  width: 100%;
  display: flex;
  padding: 0 8px;
  flex-wrap: wrap;
  justify-content: left;
}
.ca_list li {
  width: 222px;
  font-size: 1.3rem;
  margin: 0 4px 14px 0;
}
.ca_list li a {
  display: block;
  line-height: 1.2;
  /* background-color: #fafdd9; */
}
.ca_list li a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
  margin: -8px 0 0 6px;
}
.old_model {
  font-size: 1.3rem;
  text-align: right;
}
.old_model a {
  display: inline-block;
  border: 1px solid #000;
  padding: 4px 20px 2px;
  border-radius: 2em;
}
.old_model a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-135deg);
  margin: -4px 0 0 6px;
}

/* 240618 カテゴリーボタン*/
.category_menu .ca_menu_box {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 8% 0;
  z-index: 2000;
  display: none;
  overflow-x: scroll;
}

.category_menu .ca_menu {
  position: relative;
  width: 80%;
  max-width: 980px;
  margin: 0 auto;
  border: 10px solid #fff;
  box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.3);
}
.category_menu .ca_menu .off_menu {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  top: -26px;
  right: -26px;
  background-color: #de151d;
  border-radius: 2em;
  cursor: pointer;
}
.off_menu::before,
.off_menu::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 23px; /* 棒の高さ */
  background: #fff;
}
.off_menu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.off_menu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.category_menu .ca_btn p {
  position: fixed;
  /* display: none; */
  opacity: 0; /* 初期状態で透明 */
  visibility: hidden; /* 初期状態で見えない */
  top: 100px;
  left: 80px;
  padding: 20px 8px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  background-color: #de151d;
  border-radius: 12px;
  margin-bottom: 4%;
  z-index: 50;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}
.category_menu .ca_btn p:hover {
  transform: translateY(2px);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}
.ca_btn p span {
  font-size: 1.2rem;
  border: 1px solid #fff;
  padding: 4px 3px;
  font-weight: 400;
  border-radius: 6px;
}
.over_hidden {
  overflow: hidden;
}

/* 20241105 バッテリー*/
.list1,
.list2 {
  margin-bottom: 40px;
}
.list1 ul li,
.list1 ul li p,
.list2 ul li,
.list2 ul li p {
  line-height: 1.8;
}
.list1 ul li,
.list2 li {
  margin-bottom: 28px;
  font-size: 1.4rem;
}
.list1 ul li a {
  display: inline-block;
}
.list2 .line_li {
  padding-top: 40px;
  border-top: 1px solid #909090;
}
.list_scr {
  margin-bottom: 40px;
}
.list1 h3,
.list2 h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.list2 h4 {
  font-size: 1.6rem;
  font-weight: 600;
}
.l-line::before {
  content: "";
  border-left: 8px solid #000;
  margin-right: 1%;
}

/* 250430 固定購入ボタン */
.buy-btn {
  position: fixed;
  display: flex;
  bottom: 60px;
  right: 58px;
  width: 100px;
  height: 100px;
  background-color: #e60039;
  border-radius: 50px;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(196, 0, 49, 0.4);
  z-index: 50;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}
a:hover.buy-btn {
  opacity: 1;
  transform: translateY(6px);
}

@media screen and (max-width: 750px) {
  .menu_inner:last-of-type {
    margin-bottom: 10%;
  }
  .menu_inner p {
    margin-bottom: 16px;
  }
  .ca_list li {
    width: 100%;
    margin-bottom: 18px;
  }
  .ca_list.li_2 li {
    width: 48%;
  }
  .old_model {
    text-align: center;
  }

  /* 240618 カテゴリーボタン*/
  .category_menu .ca_menu {
    width: 90%;
  }
  .category_menu .ca_btn p {
    left: auto;
    right: 20px;
  }

  /* 20241105 バッテリー*/
  .inner_new .redline_title {
    padding: 0 0 8px;
  }
  .list1,
  .list2 {
    overflow-wrap: anywhere;
  }

  /* 20250430 ヘッダーストアボタン */
  .top_nav .logo img {
    width: 120px;
    padding: 0;
    margin: 26px 0 0 20px;
  }
  .nav_menu .inquiry_li {
    justify-content: center;
  }
  .nav_menu .inquiry_li .inquiry_icon {
    margin-left: 0;
  }
  .header-store-btn {
    position: absolute;
    z-index: 200;
    top: 17px;
    right: 74px;
  }

  /* 250430 固定購入ボタン */
  .buy-btn {
    bottom: 50px;
    right: 28px;
  }
}
