/*------------------------------------------------------------------------
 header
-------------------------------------------------------------------------*/
.hInner {
  background: transparent linear-gradient(92deg, #2EB389 0%, #00ABCC 100%) 0% 0% no-repeat padding-box;
}
.hInner ul {
  display: flex;
  justify-content: end;
  padding: 5px 0 4px;
  max-width: 1200px;
  margin: auto;
}
.hInner li {
  margin-left: 23px;
  vertical-align: initial;
  margin-bottom: 0px;
}
.hInner li a {
  color: #fff !important;
  font-size: 12px;
  line-height: 1.8;
}
.header {
  position: relative;
  width: 100%;
  font-size: 14px;
  transition: all .4s cubic-bezier(1,0,0,1);
  -webkit-transition: all .4s cubic-bezier(1,0,0,1);
  z-index: 99;
}
.header.is-hidden {
  transform: translate(0, -101%);
}
.header .logo_box a {
  display: block;
}
.header .logo_box a img {
  display: block;
  margin: 0;
}

.header .nav_list > a {
  position: relative;
  color: #393636;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.header .nav_list > a:hover,
.header .nav_list:hover {
  text-decoration: none;
  color: #37B389;
}

.header .nav_btn {
  display: block;
  font-weight: 700;
  text-align: center;
}

.header .main_btn:before {
  border-radius: 0;
}

/*旧AssetViewページ用*/
.header .main_btn {
  color: #fff;
}

.header .sub_btn {
  color: #00A27D;
}

.header .logo_box {
  padding-right: 0;
  margin-bottom: 0;
}

.header *,
.header *::before,
.header *::after {
  box-sizing: border-box;
}

@media screen and (min-width: 1000px) {
  .header .logo_box {
    width: 130px;
  }
  .header .logo_box a {
    transition: all 0.3s ease;
  }
  .header .logo_box a:hover {
    opacity: 0.8;
  }

  .header .menu_area{
    background: #fff;
    box-shadow: 3px 3px 10px #00000029;
  }
  .header .menu_area.fixed{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
  }
  .header .menu_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: auto;
  }
  .header .menu_wrap .nav_wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column-reverse;
  }
  .header .menu_wrap .nav_box {
    display: flex;
    align-items: center;
  }
  .header .menu_wrap .btn_wrap {
    display: flex;
    justify-content: space-between;
    width: 316px;
  }
  .header .menu_wrap .nav_list {
    position: relative;
    margin: 0 27px 0 0;
  }
  .header .main_btn,
  .header .sub_btn {
    padding: 8px 4px 7px;
    color: #fff;
    text-align: center;
    border: #37B389;
    background: #37B389;
    border-radius: 30px;
    width: 150px;
  }
  .header .main_btn:hover,
  .header .sub_btn:hover {
    opacity: .8;
    text-decoration: none;
  }
  .header .main_btn::before{
    display: none;
  }
  .header .sub_btn{
    background: #000;
  }
  .header .nav_btn{
    box-shadow: none;
  }
  .header .menu_wrap .nav_list.js-menu {
    margin-right: 45px;
  }
  .js-menu .arrow_icon {
    position: absolute;
    top: 6px;
    right: -16px;
    border-top: 2px solid #00A27D;
    border-right: 2px solid #00A27D;
    height: 9px;
    width: 9px;
    transform: rotate(135deg);
  }
  .js-menu.active .arrow_icon {
    top: 10px;
    transform: rotate(-45deg);
  }
}

@media screen and (max-width: 999px) {
  ul.hInner {
    display: none;
  }
  .header {
    position: fixed;
    top: 0;
    height: 50px;
    display: flex;
    background: #fff;
    z-index: 999;
    justify-content: space-between;
  }
  .header .logo_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
  }
  .header .logo_box {
    width: 110px;
    margin-left: 20px;
  }
  .header .download_btn_wrap .main_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 12px;
    font-size: 1.1rem;
  }
  .header .menu_wrap {
    display: none;
    background: #fff;
    position: fixed;
    top: 50px;
    left: 0;
    overflow: auto;
    width: 100%;
    height: 100vh;
    transition: all 0.3s ease;
    transform: translateY(-110%);
  }
  .header .menu_wrap.show {
    display: block;
    transform: translateY(0);
  }
  .header .menu_wrap .nav_list {
    border-bottom: 1px solid #EDE5E5;
  }
  .header .menu_wrap .nav_list a .arrow_icon {
    position: absolute;
    top: 28px;
    right: 20px;
    border-top: 2px solid #00A27D;
    border-right: 2px solid #00A27D;
    height: 10px;
    width: 10px;
    transform: rotate(45deg);
  }
  .header .menu_wrap .btn_wrap {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    padding: 0 20px 70px;
  }
  .header .menu_wrap .btn_wrap .nav_btn {
    padding: 15px;
    border-radius: 8px;
  }
  .header .menu_wrap .btn_wrap .main_btn,
  .header .menu_wrap .btn_wrap .sub_btn {
    margin: 0;
    margin-bottom: 15px;
  }
  .header .nav_list > a {
    width: 100%;
    padding: 20px;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: left;
  }
  .header .small_link {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin: 20px 0 0;
  }
}

@media screen and (max-width: 1170px) and (min-width: 1000px) {
  .header .logo_box {
    width: 100px;
  }
  .header .menu_wrap .nav_box {
    margin-right: 0;
  }
  .header .menu_wrap .nav_list {
    margin-right: 20px;
  }
  .header .nav_list > a {
    font-size: 1.2rem;
  }
  .header .main_btn,
  .header .sub_btn {
    padding: 0 10px;
    font-size: 1.3rem;
  }
  .header .main_btn,
  .header .sub_btn {
    width: 137px;
  }
}

.menu_product_01 ul,
.menu_product_02 ul{
display: flex;
}
.menu_product_01 .menu_list:not(:last-child),
.menu_product_02 .menu_list:not(:last-child) {
margin-right: 40px;
}
.menu_product_01 a,
.menu_product_02 a{
width: 100%;
padding: 10px 0;
box-shadow: 0 5px 25px rgb(72 69 69 / 25%);
margin: 10px 0;
display: flex;
}
.menu_product_01 span,
.menu_product_02 span{
padding: 10px;
font-size: 13px;
}
.menu_product_01 img,
.menu_product_02 img{
width: 85%;
margin: 0 auto;
}

/*------------------------------------------------------------------------
 megamenu
-------------------------------------------------------------------------*/
.megamenu {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 110px;
  height: calc(90vh - 110px);
  width: 100%;
  background: #F0FAF7;
  -webkit-transition: opacity .35s ease;
  transition: opacity .35s ease;
  z-index: 10000;
}
.megamenu.m_fixed {
  top: 80px;
  height: calc(80vh - 80px);
}
.megamenu.is-active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .megamenu {
    left: 0;
    min-width: 0;
    height: calc(100% - 60px);
    top: 60px;
  }
}

.megamenu__body {
  height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  overflow-y: scroll;
  width: 100%;
}
.megamenu_side {
  width: 68%;
}

.megamenu_side02{
  width: 30%;
  text-align: center;
}

.megamenu_logo {
  display: flex;
  justify-content: space-between;
}

.megamenu_white_box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(72, 69, 69, 0.05);
}
.megamenu_white_box .more {
  position: absolute;
  color: #000;
  font-size: 12px;
  right: 50px;
  bottom: 20px;
  text-decoration: underline;
}
.megamenu_side .product_area {
  text-align: center;
  width: 49%;
}
.megamenu_side .product_area:hover,
.megamenu__sitemap-block .product_area:hover {
  opacity: 0.7;
}
.megamenu_side .product_area .name {
  color: #000;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}
.megamenu_side .product_area img {
  width: 50%;
}
.megamenu_side .product_area img.logo_cloud {
 margin: 12px auto 7px;
}
.logo_avcplus {
 width: 80%;
}

.megamenu_side .product_area .description {
  color: #000;
  font-size: 10px;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .megamenu__body-inner {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 30px 0;
    max-width: 1300px;
  }
}
@media (max-width: 1250px) {
  .megamenu__body-inner {
    margin: 0 40px;
  }
}
@media (max-width: 767px) {
  .megamenu_side {
    width: 100%;
    margin-bottom: 15px;
  }
  .megamenu__body-inner {
    padding: 25px 36px 40px;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .megamenu_content {
    width: 100%;
    align-content: normal;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: justify;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .megamenu_content {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .megamenu__sitemap-block {
    width: 100%;
  }
}
.megamenu__sitemap-block:last-of-type {
  margin-bottom: 0;
}
.megamenu__sitemap-title {
  display: block;
  color: #05A17D;
  font-size: 16px !important;
  font-weight: bold;
  letter-spacing: .1em;
  position: relative;
  -webkit-transition: color .35s ease;
  transition: color .35s ease;
}
.megamenu__sitemap-block:first-of-type .megamenu__sitemap-title {
  position: absolute;
  padding-left: 3.6%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .megamenu__sitemap-title {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .megamenu__sitemap-block .arrow::before{
    -webkit-transform: rotate(45deg);
    transform: rotate(-45deg);
    transition: .3s;
  }
  .megamenu__sitemap-block:first-of-type .megamenu__sitemap-title {
    position: static;
  }
}
.megamenu__sitemap-list {
  display: flex;
  justify-content: space-between;
  padding-left: 5%;
}
.megamenu__sitemap-list ul {
  margin: 20px 0 0 0;
  padding-right: 22px;
}
.megamenu__sitemap-block:first-of-type .megamenu__sitemap-list ul {
  margin-top: 0;
}

.megamenu__sitemap-list.megamenu__sitemap-avcplus {
  display: block;
  padding-left: 0;
}
.megamenu__sitemap-list.megamenu__sitemap-avcplus ul {
  margin: 30px 0 0 0;
  padding-right: 0;
}
.megamenu__sitemap-block:first-of-type .megamenu__sitemap-list.megamenu__sitemap-avcplus ul {
  margin-top: 0;
}

.megamenu__sitemap-list.megamenu__sitemap-avcplus .megamenu__sitemap-link{
  font-size: 16px;
  font-weight: bold;
  padding-top: 20px;
}

.megamenu__sitemap-list.megamenu__sitemap-industry ul{
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .megamenu__sitemap-list {
    display: inline;
  }
  .megamenu__sitemap-block:last-of-type .megamenu__sitemap-list ul {
    margin-top: 0;
  }
}

.megamenu__sitemap-item {
  margin: 0 0 5px 0;
  line-height: 1.8;
}
.megamenu__sitemap-item.first{
  margin: 0 0 6px 0;
}
.megamenu__sitemap-item.last{
  margin: 0 0 16px 0;
}
@media (max-width: 767px) {
  .megamenu__sitemap-item {
    line-height: 1.5;
  }
}
.megamenu__sitemap-item:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .megamenu__sitemap-item:last-of-type {
    margin-bottom: 5px;
  }
}

.megamenu__sitemap-link {
  display: block;
  color: #222;
  font-size: 12px;
  position: relative;
  -webkit-transition: color .35s ease;
  transition: color .35s ease;
}
.megamenu__sitemap-block:nth-child(2) .megamenu__sitemap-link {
  font-size: 16px;
  font-weight: bold;
}
.megamenu__sitemap-link:link {
  color: #222;
}
.megamenu__sitemap-link:hover {
  color: #05A17D;
  text-decoration: none;
}

.overlay {
  display: none;
  z-index: 49;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(18, 25, 18, 0.75);
}

/*------------------------------------------------------------------------
 new_megamenu_20250210
-------------------------------------------------------------------------*/
@media (max-width: 1300px) {
  .megamenu__body-inner {
    margin: 0 40px;
  }
}
.megamenu {
  height: calc(95vh - 110px);
  background: #fff !important;
}
.megamenu.m_fixed {
  height: calc(91vh - 80px);
}
.megamenu_content_product {
  display: none;
  justify-content: space-between;
}
.megamenu_content_product.active {
  display: flex;
}
.megamenu_content {
  display: none;
}
.megamenu_content.active {
  display: flex;
}
.megamenu__sitemap-item.first::after {
  display: none;
}
.megamenu__sitemap-item.first {
  margin: 0 0 10px 0;
}
.logo_avcplus {
  width: 80%;
  margin: 20px auto;
}
.megamenu_side .product_area img.logo_onpre {
  width: 70%;
  margin: 20px auto;
}
.megamenu_side .product_area img.logo_cloud {
  width: 70%;
  margin: 20px auto;
}
.pc_avcplus {
  width: auto;
  height: 80%;
}
.megamenu_side .product_area img.pc_onpre {
  width: auto;
  height: 90%;
  margin-top: -10px;
}
.megamenu_side .product_area img.pc_cloud {
  width: auto;
  height: 90%;
  margin-top: -10px;
}
.megamenu_side {
  width: 54%;
}
.megamenu_side02 {
  width: 44%;
}
.megamenu_side .more {
  position: absolute;
  color: #000;
  font-size: 12px;
  right: 20px;
  bottom: 0;
  text-decoration: underline;
} 
.megamenu_side .product_area,
.megamenu_side02 .product_area {
  width: 40%;
  height: 100px;
}
.megamenu__sitemap-list {
  position: relative;
  padding-left: 4%;
}
.megamenu__sitemap-list ul {
  width: calc(100% / 3);
  margin: 0;
}
.megamenu__sitemap-list ul .img_box {
  display: block;
  width: 90%;
  margin: 0 auto 10px;
}

.megamenu_content_product .megamenu__sitemap-item {
  position: relative;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: solid 1px #EDE5E5;
}
.megamenu__sitemap-link {
  padding-bottom: 0;
}
.megamenu_content_product .megamenu__sitemap-item::after {
  display: block;
  position: absolute;
  top: 24%;
  right: 6px;
  border-top: 1px solid #7b7b7b;
  border-right: 1px solid #7b7b7b;
  height: 8px;
  width: 8px;
  transform: rotate(45deg);
  content: "";
}
.megamenu_content_product .megamenu__sitemap-item.first::after {
  display: none;
}

.column_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.column_list .item {
  background-color: #fff;
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px; 
}
.column_list.two .item {
  width: calc(100% / 2 - 10px);
}
.column_list .item:hover {
  text-decoration: none;
}
.column_list.two .item dl {
  display: flex;
}
.column_list.two .item dl .img_box {
  width: 70px;
  margin-top: -5px;
}
.column_list.four .item {
  width: calc(100% / 5 - 20px);
  margin-bottom: 20px;
  position: relative;
  height: 200px;
}
.megamenu__sitemap-item.last {
  margin: 0 0 47px 0;
}
.column_list .item:hover {
  opacity: .7;
}
.column_list .item .img_box {
  width: 80%;
}
.column_list.four .item .img_box {
  position: absolute;
  width: 70% !important;
  top: 44%;
  left: 50%;
  transform: translate(-50%,-50%)
}
.column_list .sub_title {
  text-align: center;
  color: #393636;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 68px;
  width: 60%;
}
.column_list.four .sub_title {
  position: absolute;
  width: 100%;
  line-height: 0;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}
.column_list .text {
  font-size: 11px;
  text-align: center;
  color: #393636;
  font-weight: 500;
  line-height: 1.7;
}

.megamenu__sitemap-list.megamenu__sitemap-industry ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
.megamenu__sitemap-industry .megamenu__sitemap-link {
  display: grid;
  text-align: center;
}
.megamenu__sitemap-industry .megamenu__sitemap-link img{
  width: 70%;
  margin: 20px auto;
}

.menu_button{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 700px;
  margin: 0 auto 30px;
}
.green_label{
  border-radius: 5px;
  color: #00A27D;
  background: linear-gradient(45deg, #f4fcf9, #f3fcf8, #f3fbf7, #f2fbf6, #f2faf5, #f1faf3, #f1f9f2, #f1f9f1);
  padding: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  width: 340px;
  cursor: pointer;
}
.green_label:hover {
  opacity: .8;
}
.green_label.active{
  color: #fff;
  background: #00A27D;
}

/*------------------------------------------------------------------------
 hamburger
-------------------------------------------------------------------------*/
.menu_icon_box {
  width: 18px;
  height: 14px;
}

.menu_icon_box .menu_icon {
  position: relative;
}

.menu_icon_box .menu_icon span {
  display: block;
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background-color: #00A27D;
  transition: all 0.3s ease;
}

.menu_icon_box .menu_icon span:first-child {
  top: 0;
}

.menu_icon_box .menu_icon span:nth-child(2) {
  top: 7px;
}

.menu_icon_box .menu_icon span:last-child {
  top: 14px;
}

.menu_icon_box.active .menu_icon span:first-child {
  top: 7px;
  transform: rotate(45deg);
}

.menu_icon_box.active .menu_icon span:nth-child(2) {
  opacity: 0;
}

.menu_icon_box.active .menu_icon span:last-child {
  top: 7px;
  transform: rotate(-45deg);
}

/*------------------------------------------------------------------------
 footer
-------------------------------------------------------------------------*/
.footer {
  background-color: #F7F7F7;
}

.footer .intro_box {
  border-radius: 4px;
  background-color: #fff;
}

.footer .main_menu_box a {
  color: #00A27D !important;
  font-size: 1.4rem;
}

.footer .intro_box .text_box .title {
  font-weight: 700;
}

.footer .main_menu_box .main_category {
  color: #00A27D;
  padding-top: 20px;
  font-weight: bold;
  line-height: 1.4;
  border-top: 1px solid #EDE5E5;
}

.footer .sub_menu_box {
  border-top: 1px solid #EDE5E5;
}

.footer .sub_menu_box li:after {
  display: none;
}

.footer .sub_menu_box a {
  color: #817F7F !important;
  font-size: 1.2rem;
  line-height: 1.4;
}

.footer  .sub_list .definition_list .category  {
  width: auto !important;
  color: #393636;
  font-size: 1.4rem;
}

.footer .privacy_list {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 30px;
}

.footer .privacy_list li {
  margin: 0 10px;
}

.footer .privacy_list .privacy_img {
  width: 200px;
  margin: 20px 0;
}

.footer .privacy_list .iso_img {
  width: 146px;
}

.footer .copyright {
  display: block;
  margin: 0 auto;
  color: #AAAAAA;
  text-align: center;
}

.footer .intro_box .text_box {
  overflow: hidden;
  height: auto;
  padding: 0;
  color: #393636;
  font-size: 1.4rem;
  border: none;
  background-color: transparent;
}

@media screen and (min-width: 1000px) {
  .footer {
    padding-top: 60px;
  }
  .footer .intro_box {
    display: flex;
    width: 100%;
    margin-bottom: 60px;
    padding: 42px 60px;
  }
  .footer .intro_box .img_wrap {
    width: 200px;
    margin-right: 60px;
  }
  .footer .intro_box .text_box {
    width: calc(100% - 260px);
  }
  .footer .intro_box .text_box .title {
    margin-bottom: 15px;
  }
  .footer .main_menu_box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
  }
  .footer .main_menu_box .main_link_box {
    width: calc(100% / 4 - 15px);
  }
  .footer .main_menu_box .main_list {
    margin-bottom: 0;
  }
  .footer .main_menu_box .main_category {
    margin-bottom: 20px;
    text-decoration: underline;
  }
  .footer .main_menu_box .main_category:hover {
    text-decoration: none;
  }
  .footer .main_menu_box .sub_link {
    margin: -10px 0 30px;
  }
  .footer .main_menu_box .sub_link.separate {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .footer .main_menu_box .sub_link.separate .sub_list {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .footer .sub_menu_box {
    padding-top: 30px;
    margin-bottom: 55px;
  }
  .footer .sub_menu_box .sub_link_box {
    text-align: center;
  }
  .footer .sub_menu_box li {
    display: inline-block;
    margin: 0 10px;
  }
  .footer .copyright {
    padding-bottom: 30px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 999px) {
  .footer {
    padding-top: 40px;
  }
  .footer .intro_box {
    margin-bottom: 30px;
    padding: 30px 24px;
  }
  .footer .intro_box .img_wrap {
    width: 150px;
    margin: 0 auto 15px;
  }
  .footer .intro_box .text_box .title {
    width: 100% !important;
    margin-bottom: 10px;
    text-align: center;
  }
  .footer .main_menu_box {
    margin-bottom: 20px;
  }
  .footer .main_menu_box .main_link_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .footer .main_menu_box .main_list {
    width: calc(50% - 5px);
  }
  .footer .main_menu_box .main_category {
    margin-bottom: 15px;
  }
  .footer .main_menu_box .sub_link {
    display: none;
  }
  .footer .sub_menu_box {
    padding-top: 20px;
    margin-bottom: 30px;
  }
  .footer .sub_menu_box li {
    margin-bottom: 10px;
  }
  .footer .copyright {
    padding-bottom: 10px;
    font-size: 1rem;
  }

  .flexdBox {
    position: fixed;
    bottom: 0;
    padding: 10px 24px;
    left: 0;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
    background-color: rgba(245,249,253,0.8);
  }
  .flexdBox ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .flexdBox li {
    width: 100%;
    margin-bottom: 0;
  }
  .flexdBox li a {
    padding: 7px 10px;
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #37B389;
    border-radius: 30px;
    border: 2px solid #37B389;
  }
}

.foot_band{
  position: fixed;
  width: 100%;
  bottom: 0;
  background: transparent linear-gradient(269deg, #2EB389 0%, #00ABCC 100%) 0% 0% no-repeat padding-box;
  opacity: 0.75;
  z-index: 100;
}
.foot_band .content_wrapper{
  padding: 0;
  display: flex;
  justify-content: flex-end;
  margin: 4px auto 2px;
}
.foot_band ul{
  display: flex;
  justify-content: space-between;
  width: 320px;
}
.foot_band li{
  padding: 0;
  margin: 0;
}
.foot_band a {
  position: relative;
  color: #fff;
}
.foot_band a:after{
  position: absolute;
  scale: .7;
  content: url(https://www.hammock.jp/assetview/assets/images/link.svg);
}

#foot-band{
  transition: all .4s cubic-bezier(1,0,0,1);
  -webkit-transition: all .4s cubic-bezier(1,0,0,1);
}
#foot-band.is-hidden {
  transform: translate(0, 101%) translate(0, 22px);
}

/*------------------------------------------------------------------------
 cta
-------------------------------------------------------------------------*/
.cta_tel_box .tel_link {
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.cta_tel_box .spphone_link {
  display: inline-block;
  color: #fff;
}

@media screen and (min-width: 1000px) {
  .cta_tel_box .tel_link {
    margin-bottom: 5px;
    font-size: 3.4rem;
    pointer-events: none;
  }
}

@media screen and (max-width: 999px) {
  .cta_tel_box {
    margin-bottom: 30px;
  }
  .cta_tel_box .tel_link {
    margin-bottom: 3px;
    font-size: 2.7rem;
  }
}

.cta_contact {
  background: linear-gradient(90deg, #00a27d, #20a683, #31aa89, #3ead8e, #4ab194, #55b59a, #5fb89f, #69bca5);
}

.cta_contact .cta_catch_box, .cta_contact p {
  color: #fff;
}

.cta_contact .cta_catch_box {
  text-align: center;
}

.cta_contact .cta_catch_box .main_catch {
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.6;
}

.cta_contact .cta_catch_box .main_catch + p {
  margin-bottom: 30px;
}

.cta_contact .cta_catch_box .white_btn {
  color: #00A27D;
  margin: 0 auto;
}

.cta_contact .cta_catch_box .white_btn:hover {
  color: #fff;
}

.cta_contact .cta_link_box .link_item a {
  display: block;
  position: relative;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(72, 69, 69, 0.05);
}

.cta_contact .cta_link_box .link_item a:before {
  display: block;
  position: absolute;
  top: 50%;
  border-top: 2px solid #00A27D;
  border-right: 2px solid #00A27D;
  height: 8px;
  width: 8px;
  transform: rotate(45deg);
  content: "";
}

.cta_contact .cta_link_box .link_item .title {
  width: 100% !important;
  margin-bottom: 3px;
  color: #00A27D;
  font-weight: 700;
}

.cta_contact .cta_link_box .link_item .text {
  color: #393636;
}

@media screen and (min-width: 1000px) {
  .cta_contact {
    padding: 60px 0;
  }
  .cta_contact .content_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cta_contact .cta_catch_box {
    width: calc(45% - 15px);
  }
  .cta_contact .cta_catch_box .main_catch {
    font-size: 3.4rem;
  }
  .cta_contact .cta_catch_box .white_btn {
    margin-bottom: 30px;
  }
  .cta_contact .cta_link_box {
    width: calc(55% - 15px);
  }
  .cta_contact .cta_link_box .link_list_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .cta_contact .cta_link_box .link_item {
    width: calc(50% - 7.5px);
    height: auto;
    margin: 7.5px 0;
    padding: 0;
    border: none;
  }
  .cta_contact .cta_link_box .link_item a {
    height: 100%;
    padding: 30px 70px 30px 30px;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
  .cta_contact .cta_link_box .link_item a:before {
    right: 30px;
    transition: all 0.3s ease;
  }
  .cta_contact .cta_link_box .link_item a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  .cta_contact .cta_link_box .link_item a:hover:before {
    right: 25px;
  }
}

@media screen and (max-width: 999px) {
  .cta_contact {
    padding: 40px 0 25px;
  }
  .cta_contact .cta_catch_box .main_catch {
    font-size: 2.1rem;
  }
  .cta_contact .cta_catch_box .white_btn {
    margin-bottom: 30px;
  }
  .cta_contact .cta_link_box .link_item {
    margin-bottom: 15px;
  }
  .cta_contact .cta_link_box .link_item a {
    padding: 24px 52px 24px 20px;
  }
  .cta_contact .cta_link_box .link_item a:before {
    right: 20px;
  }
}

.cta_basic {
  background: linear-gradient(90deg, #04e8f1 0%, #01bcc4 100%);
}

.cta_basic .telephone_wrap,
.cta_basic .contact_link_wrap {
  color: #fff;
}

.cta_basic .cta_tel_box p {
  margin: 0;
  font-size: 1.4rem;
}

.cta_basic .cta_btn_wrap {
  margin-bottom: 30px;
}

.cta_basic .btn_list_item .catch {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

.cta_basic .img_wrap img {
  display: block;
}

.cta_basic .telephone_wrap .info_text .title {
  display: block;
  font-size: 1.6rem;
}

.cta_basic .telephone_wrap .info_text .small_text {
  font-size: 1.2rem;
}

.cta_basic .contact_link_wrap {
  text-align: center;
}

.cta_basic .contact_link_wrap p {
  margin: 0;
  font-size: 1.4rem;
}

.cta_basic .contact_link_wrap a {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.cta_basic .cta_btn_wrap .white_btn {
  color: #01bcc4;
}
.cta_basic .cta_btn_wrap .white_btn:hover {
  color: #fff;
}
.cta_basic .cta_btn_wrap .white_line_btn {
  color: #fff;
}
.cta_basic .cta_btn_wrap .white_line_btn:hover {
  color: #01bcc4;
}

@media screen and (min-width: 1000px) {
  .cta_basic .content_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cta_basic .img_wrap {
    position: relative;
    overflow: hidden;
    width: calc(50% - 15px);
    padding-top: 27%;
  }
  .cta_basic .img_wrap img {
    position: absolute;
    top: -14%;
    left: 0;
    width: 100%;
  }
  .cta_basic .contents {
    width: calc(50% - 15px);
  }
  .cta_basic .cta_btn_wrap .btn_list_box {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .cta_basic .cta_btn_wrap .btn_list_item {
    width: calc(50% - 7.5px);
    margin: 0;
  }
  .cta_basic .cta_btn_wrap .btn_list_item .catch {
    margin-bottom: 15px;
  }
  .cta_basic .cta_btn_wrap .btn {
    width: 100%;
  }
  .cta_basic .telephone_wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .cta_basic .telephone_wrap .info_text {
    width: calc(50% - 15px);
    margin-right: 15px;
    text-align: right;
  }
  .cta_basic .telephone_wrap .info_text .text_wrap {
    display: inline-block;
    text-align: left;
  }
  .cta_basic .telephone_wrap .cta_tel_box {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
  .cta_basic .contact_link_wrap a:hover {
    text-decoration: none;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1170px) {
  .cta_basic .content_wrapper {
    display: block;
    padding: 0 5%;
  }
  .cta_basic .img_wrap {
    margin: 0 auto;
    padding-top: 0;
  }
  .cta_basic .img_wrap img {
    position: static;
  }
  .cta_basic .contents {
    width: 80%;
    margin: -30px auto 0;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 999px) {
  .cta_basic .cta_btn_wrap .btn_list_item:not(:last-child) {
    margin-bottom: 20px;
  }
  .cta_basic .cta_btn_wrap .btn_list_item .catch {
    margin-bottom: 5px;
  }
  .cta_basic .cta_btn_wrap .btn {
    margin: 0 auto;
  }
  .cta_basic .img_wrap {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
    padding-top: 30px;
  }
  .cta_basic .contents {
    padding-bottom: 50px;
  }
  .cta_basic .telephone_wrap {
    text-align: center;
  }
  .cta_basic .telephone_wrap .info_text {
    margin-bottom: 15px;
  }
  .cta_basic .telephone_wrap .cta_tel_box {
    margin-bottom: 15px;
  }
}


/*------------------------------------------------------------------------
 award-list
-------------------------------------------------------------------------*/
.bg_blue {
    background-color: #F0FAF7;
}
.award_flame {
  text-align: center;
}

/*ITレビュー変更に伴う修正 230122*/
.award_list_box dt {
  width: 300px !important;
  margin: 0 auto;
}
.award_list_box .contents {
  text-align: center;
}
/*ITレビュー変更に伴う修正 ここまで*/

.award_outline_title {
  display: inline-block;
  position: relative;
  width: auto !important;
  margin-bottom: 20px;
  color: #01bcc4;
  font-weight: 700;
  line-height: 1.5;
}

.award_outline_title:before, .award_outline_title:after {
  display: block;
  position: absolute;
  bottom: 0;
  width: 32px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.award_outline_title:before {
  left: 0;
  background-image: url(https://www.hammock.jp/assetview/assets/images/2022/top/decoration_left.svg);
}

.award_outline_title:after {
  right: 0;
  background-image: url(https://www.hammock.jp/assetview/assets/images/2022/top/decoration_right.svg);
}

.award_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.award_list .award_list_item {
  position: relative;
  font-weight: 700;
  text-align: center;
}

.award_list .award_list_item:before, .award_list .award_list_item:after {
  display: block;
  position: absolute;
  visibility: visible;
  background-image: url(https://www.hammock.jp/assetview/assets/images/2022/top/flame_olive.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.award_list .award_list_item:before {
  left: 0;
}

.award_list .award_list_item:after {
  right: 0;
  transform: scale(-1, 1);
}

.award_list .award_list_item .bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #393636;
  border-radius: 50%;
  background: linear-gradient(rgba(255, 255, 255, 0.25), white);
}

@media screen and (min-width: 1000px) {
  .award_outline_title {
    padding: 0 50px;
    font-size: 1.7rem;
  }
  .award_list .award_list_item {
    width: calc(25% - 7.5px);
    margin: 0 7.5px 10px 0;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .award_list .award_list_item:nth-child(4n) {
    margin-right: 0;
  }
  .award_list .award_list_item:before, .award_list .award_list_item:after {
    top: 6px;
    width: 23px;
    height: 72px;
  }
  .award_list .award_list_item .bg {
    height: 82px;
    padding: 0 20px;
  }
}

@media screen and (max-width: 999px) {
  .award_outline_title {
    padding: 0 42px;
    font-size: 1.4rem;
  }
  .award_list .award_list_item {
    width: calc(33.3% - 6px);
    margin-right: 6px;
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .award_list .award_list_item:nth-child(3n) {
    margin-right: 0;
  }
  .award_list .award_list_item:before, .award_list .award_list_item:after {
    top: 6px;
    width: 14px;
    height: 44px;
  }
  .award_list .award_list_item .bg {
    height: 62px;
  }
}

@media screen and (min-width: 1000px) {
  .award_section .award_list_box {
    padding: 30px 60px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(72, 69, 69, 0.05);
  }
  .award_section .award_outline_title {
    font-size: 2.7rem;
  }
  .award_section .award_list .award_list_item {
    width: 97px;
    margin: 10px;
    font-size: 1.3rem;
  }
  .award_section .award_list .award_list_item:before, .award_section .award_list .award_list_item:after {
    top: 3px;
    width: 20px;
    height: 64px;
  }
  .award_section .award_list .award_list_item .bg {
    height: 64px;
    padding: 0 10px;
  }
}

@media screen and (max-width: 999px) {
  .section.award_section {
    position: relative;
    padding: 14% 0 0;
  }
  .award_section.bg_blue {
    background-color: transparent;
  }
  .award_section .content_wrapper {
    padding: 32px 25px 40px;
    background-color: #E8F7FE;
  }
  .award_section .award_list_box {
    width: 85%;
    max-width: 400px;
    margin: 0 auto;
  }
}