@charset "UTF-8";
/*------------------------------------------------------------------------
 各種設定
-------------------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  scroll-behavior: smooth;
}

body {
  line-height: 1;
}

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

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul li,
ol li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table, tbody, tfoot, thead, tr, th, td {
  vertical-align: top;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

div,ul {
-webkit-backface-visibility:hidden;
backface-visibility:hidden;
}
/*------------------------------------------------------------------------
 default
-------------------------------------------------------------------------*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -ms-overflow-style: scrollbar;
}

body {
  background-color: #fff;
  color: #393636;
  font-size: 1.4em;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  word-break: break-word;
}

a {
  color: #23758B;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

@media screen and (min-width: 1000px) {
  a:hover {
    text-decoration: none;
  }
}

a, img, button {
  transition: ease 0.3s;
}

img {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

input, select, textarea {
  background-color: #fff;
  border: 1px solid #EDE5E5;
  box-sizing: border-box;
  color: #393636;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="radio"],
input[type="file"] {
  display: none;
}

input[type="checkbox"] {
  border: none;
  margin: 0;
  opacity: 0;
}

input::-ms-reveal {
  visibility: hidden;
}

input::-ms-clear {
  visibility: hidden;
}

input::-webkit-calendar-picker-indicator {
  display: none;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

.section {
  padding: 60px 0;
}

/*------------------------------------------------------------------------
 Basicパーツ
 -------------------------------------------------------------------------*/
/*.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 54, 54, 0.3);
  z-index: 2;
}

.overlay.show {
  display: block;
}*/

/*------------------------------------------------------------------------
 PC/SP 切り替え
 -------------------------------------------------------------------------*/
@media screen and (min-width: 1000px) {
  .sp_only {
    display: none !important;
  }
}

@media screen and (max-width: 999px) {
  .pc_only {
    display: none !important;
  }
}

/*------------------------------------------------------------------------
 header (avc+）
-------------------------------------------------------------------------*/
.hInner {
  background: #BBE2EC;
}
.header .nav_list > a:hover,
.header .nav_list:hover {
  color: #247489;
}
.header .logo_box {
  width: 200px;
  margin-bottom: 20px;
}
.header .main_btn {
  border: #247489;
  background: #247489;
}
.header .menu_wrap {
  max-width: 1300px;
}
.js-menu .arrow_icon {
  border-top: 2px solid #247489;
  border-right: 2px solid #247489;
}
.megamenu {
  background: #E0F4FC;
}
.megamenu__sitemap-title {
  color: #247489;
}
.megamenu__sitemap-link:hover {
  color: #247489;
}
.menu_icon_box .menu_icon span {
  background-color: #247489;
}

/*------------------------------------------------------------------------
 footer (avc+）
-------------------------------------------------------------------------*/
.footer .main_menu_box a {
  color: #247489 !important;
}
.footer .main_menu_box a:hover {
   text-decoration: underline;
}
.footer .main_menu_box .main_category {
  color: #247489;
}
@media screen and (min-width: 1000px) {
  .footer .main_menu_box .sub_link {
    border-bottom: none;
    height: auto;
  }
}

/* wrapper
---------------------------------------------------------- */
.wrapper {
  display: block;
  overflow-x: hidden;
}

.btn_wrapper .btn {
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .wrapper {
    padding-top: 80px;
  }
  .content_wrapper {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    /*padding: 0 5%;*/
  }
  .footer .content_wrapper {
    max-width: 1400px;
    padding: 0 5%;
  }
  .content_wrapper.inquiry {
    max-width: 1380px;
  }
  .btn_wrapper {
    margin: 60px 0 0;
  }
}

@media screen and (max-width: 999px) {
  .wrapper {
    padding-top: 50px;
  }
  .content_wrapper {
    width: 100%;
    padding: 0 25px;
  }
  .btn_wrapper {
    margin: 30px 0 0;
  }
}

/*------------------------------------------------------------------------
 section
-------------------------------------------------------------------------*/
section.bg_blue {
  background-color: #E0F4FC;
}

section.bg_white {
  background-color: #fff;
}

section.bg_blue_grad {
  background: linear-gradient(#E0F4FC, #CEE8F4);
}

section.bg_blue_grad02 {
  background: linear-gradient(#CEE8F4, #9DD2E9);
}

section.ripples {
  padding: 0;
}

@media screen and (min-width: 1000px) {
  section {
    padding: 100px 0;
  }
}

@media screen and (max-width: 999px) {
  section {
    padding: 40px 0;
  }
}

/*------------------------------------------------------------------------
 animation
-------------------------------------------------------------------------*/
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #69BCA5;
  z-index: 100;
}

.loading .circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.loading .circle:before {
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: white;
  animation: circleAnime 1s ease infinite;
  content: "";
}

@keyframes circleAnime {
  0% {
    width: 15px;
    height: 15px;
    background-color: white;
  }
  100% {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0);
  }
}

/*------------------------------------------------------------------------
 ボタン
-------------------------------------------------------------------------*/
/* btn
---------------------------------------------------------- */
.btn {
  display: block;
  padding: 17px 0;
  border: none;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6;
  border-radius: 8px;
}

/*.btn:hover {
  opacity: 0.7;
}*/

@media screen and (min-width: 1000px) {
  .btn {
    width: 300px;
  }
}

@media screen and (max-width: 999px) {
  .btn {
    width: 75%;
  }
}

/* btn
---------------------------------------------------------- */
.main_btn {
  position: relative;
  color: #fff;
  background: #23758B;
  box-shadow: 5px 8px 6px #00000029;
}

.main_btn:hover {
  text-decoration: none;
}

.main_btn .text {
  position: relative;
  z-index: 2;
  color: #fff;
}

@media screen and (min-width: 1000px) {
  .main_btn:hover:before {
    opacity: 1;
  }
}

.sub_btn,
.new_header .sub_btn {
  color: #23758B;
  background-color: #E2F4FD;
  transition: all 0.3s ease;
}

.sub_btn:hover {
  text-decoration: none;
}

@media screen and (min-width: 1000px) {
  .sub_btn:hover {
    color: #EFFAF6;
    background-color: #23758B;
  }
}

.white_btn {
  color: #23758B;
  font-weight: 700;
  border: 2px solid #fff;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(72, 69, 69, 0.05);
  transition: all 0.3s ease;
}

.white_btn:hover {
  text-decoration: none;
  opacity: 1;
}

@media screen and (min-width: 1000px) {
  .white_btn:hover {
    color: #23758B;
    background: #FFF;
  }
}

.blue_btn {
  color: #fff;
  background-color: #23758B;
  transition: all 0.3s ease;
}

.blue_btn:hover {
  text-decoration: none;
}

@media screen and (min-width: 1000px) {
  .blue_btn:hover {
    background-color: #23758B;
  }
}

.green_line_btn {
  color: #23758B;
  border: 1px solid #23758B;
  background-color: #fff;
  transition: all 0.3s ease;
}

.green_line_btn:hover {
  text-decoration: none;
}

@media screen and (min-width: 1000px) {
  .green_line_btn:hover {
    color: #fff;
    background-color: #23758B;
  }
}

.white_line_btn {
  color: #fff;
  font-weight: 700;
  border: 2px solid #fff;
  background-color: transparent;
  transition: all 0.3s ease;
}

.white_line_btn:hover {
  text-decoration: none;
  opacity: 1;
}

@media screen and (min-width: 1000px) {
  .white_line_btn:hover {
    color: #23758B;
    background: #FFF;
  }
}

/*------------------------------------------------------------------------
 title
-------------------------------------------------------------------------*/
.title{
  text-align: center;
  display: block;
}

.main_title {
  font-weight: 700;
  line-height: 1.4;
}

.main_title img{
  width: 300px;
}

.sub_title {
  color: #23758B;
  font-family: sans-serif, "Poppins";
  font-weight: 500;
  line-height: 1;
}

@media screen and (min-width: 1000px) {
  .main_title {
    margin-bottom: 60px;
    font-size: 3.1rem;
  }
  .sub_title {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .lead_text {
    margin: 30px 0;
    text-align: center;
    font-size: 16px;
  }
}

@media screen and (max-width: 999px) {
  .main_title {
    margin-bottom: 30px;
    font-size: 2.1rem;
  }
  .main_title img{
    width: 222px;
  }
  .sub_title {
    margin-bottom: 27px;
    font-size: 1.9rem;
  }
  .lead_text {
    text-align: center;
    margin: -10px 0 30px;
  }

}

/*------------------------------------------------------------------------
 inquiry_btn
-------------------------------------------------------------------------*/
.inquiry_btn {
    margin: auto;
    color: #23758B;
    font-size: 20px;
    width: 320px;
    background: transparent linear-gradient(90deg, #fff 0%, #fff 100%) 0% 0% no-repeat padding-box;
}
.inquiry_btn_brue {
  color: #fff;
  border: 2px solid #23758B;
  background: transparent linear-gradient(90deg, #23758B 0%, #23758B 100%) 0% 0% no-repeat padding-box;
}
.inquiry_btn:hover {
  opacity: 1;
  color: #fff;
  background: #23758B;
}
.inquiry_btn_brue:hover {
  opacity: 1;
  color: #23758B;
  background: #fff;
}

@media screen and (max-width: 999px) {
  .inquiry_btn {
    font-size: 14px;
    width: 253px;
    padding: 6px 0;
	margin-bottom: 10px;
  }

}

/*------------------------------------------------------------------------
 seminar
-------------------------------------------------------------------------*/
.seminar_list * {
  min-width: 0;
  min-height: 0;
}

.seminar_list .seminar_box {
  display: flex;
  justify-content: center;
}

.seminar_list .seminar_list_item {
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(72, 69, 69, 0.05);
}

.seminar_list .seminar_list_item a {
  display: block;
  transition: all 0.3s ease;
}

.seminar_list .img_box {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.seminar_list .img_box::before {
  content: '';
  float: left;
  padding-top: calc(9 / 16 * 100%);
}

.seminar_list .img_box::after {
  content: '';
  clear: both;
  display: block;
}

.seminar_list .img_box img,
.seminar_list .img_box iframe {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  transition: all 0.3s ease;
}

.seminar_list .text_box .date_title {
  display: block;
  color: #23758B;
  font-weight: 700;
  line-height: 1.6;
}

.seminar_list .text_box .text {
  color: #393636;
}

.seminar_list .category_list {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  bottom: 30px;
  width: calc(100% - 60px);
  margin: 0 auto;
}

.seminar_list .category_list .category {
  display: block;
  padding: 10px;
  border-radius: 20px;
  font-size: 1.2rem;
  line-height: 1;
}

.seminar_list .category_list .category.basic {
  color: #23758B;
  background-color: #F7F7F7;
}

.seminar_list .category_list .category.active {
  color: #fff;
  background-color: #23758B;
}

.seminar_list .category_list .category.disable {
  color: #AAAAAA;
  background-color: #F7F7F7;
}

.seminar_list .category_list .category:not(:last-child) {
  margin-right: 10px;
}

.seminar_list .slick-slide {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

@media screen and (min-width: 1000px) {
  .seminar_list .seminar_list_item {
    width: calc(33.3% - 10px);
    margin-right: 15px;
  }
  .seminar_list .seminar_list_item:nth-child(3n) {
    margin-right: 0;
  }
  .seminar_list .seminar_list_item a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  .seminar_list .seminar_list_item a:hover .img_box img {
    transform: scale(1.2);
  }
  .seminar_list .seminar_list_item .text_box {
    padding: 30px 30px 77px;
  }
  .seminar_list .seminar_list_item .text_box .date_title {
    margin-bottom: 10px;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 999px) {
  .seminar_list .seminar_list_item {
    width: 75%;
  }
  .seminar_list .seminar_list_item .text_box {
    padding: 20px 30px 72px;
  }
  .seminar_list .seminar_list_item .text_box .date_title {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}

/*------------------------------------------------------------------------
 task_list
-------------------------------------------------------------------------*/
.task_list_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 60px 0;
}
.top .task_list_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 30px 0;
}
.top .task_list .last {
  width: 100%;
  padding: 40px;
  margin-top: 30px;
  border-radius: 13px;
  background-color: #FFF;
}
 .task_list_box li{
  width: 48%;
  padding: 10px;
  margin: 20px 0;
  border-radius: 13px;
  background-color: #FFF;
  display: inline-block;
}
.top .task_list_box li {
  width: calc(100% / 3 - 14px);
  padding: 10px;
  margin: 20px 0 0;
  border-radius: 13px;
  background-color: #FFF;
  display: inline-block;
}
 .task_list_box img {
  position: absolute;
  width: 27.2%;
  margin: 0;
  padding: 0 15px;
}
.top .task_list_box img {
    display: block;
    width: 60px;
    padding: 0;
    margin-right: -20px;
    left: 35px;
}
 .task_list_box p{
  width: 100%;
  padding: 4px 10px 10px 160px;
  font-size: 12px;
}
.top .task_list_box p {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  /*text-align: center;*/
}
.task_list_box .feature_title{
  font-size: 17px;
  color: #0B262C;
  font-weight: 500;
}
.top .task_list_box .feature_title{
	font-size: 17px;
    color: #3B7488;
    font-weight: 600;
    line-height: 30px;
    padding: 10px 0 0 40px;
    text-align: center;
}
.img_bottom{
  margin-bottom: 60px;
}

@media screen and (max-width: 999px) {
  .task_list_box {
    margin: 20px 0;
  }
  .top .task_list_box {
    margin: 20px 0 0;
  }
  .task_list_box .feature_title {
    font-size: 16px;
  }
  .task_list_box li{
    width: 100%;
    padding: 5px;
    margin: 0 0 15px;
  }
   .top .task_list_box li{
    width: 100%;
    padding: 5px;
    margin: 0 0 15px;
  }
  .top .task_list_box img {
    position: static;
    width: 100%;
  }
   .task_list_box img {
    left: 0;
    padding: 14px;
  }
   .task_list_box p{
    padding: 8px 0 8px 27%;
  }
   .top .task_list_box p {
    padding: 0 20px 20px;
   }
  .img_bottom {
    margin-bottom: 30px;
  }
}

/*------------------------------------------------------------------------
 casestudy
-------------------------------------------------------------------------*/
.casestudy_name{
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 20px;
}
.casestudy_name span{
    font-size: 15px;
}
.casestudy_box p{
    width: 110px;
    padding: 6px 20px;
    margin: 1em 0;
    font-size: larger;
    color: #47B2FF;
    border: solid 1px #47B2FF;
    border-radius: 10px;
}

@media screen and (min-width: 1000px) {
    .casestudy_box {
        width: 46%;
        padding: 0 0 40px 0;
        margin-right: 40px;
        display: inline-block;
    }

    .casestudy_box li{
        font-size: larger;
    	font-weight: 500;
    	margin-left: 1.4em;
    	text-indent: -1.4em;
    }

}
@media screen and (max-width: 999px) {
    .casestudy_box p{
        width: 99px;
        font-size: revert;
    }
}

/*------------------------------------------------------------------------
 About
-------------------------------------------------------------------------*/
.row_list_circle{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 60px 0 100px;
}

.row_list_circle li{
  width: 28%;
  display: inline-block;
}

.row_list_circle li p{
  font-size: 21px;
  margin-top: 20px;
  text-align: center;
}

.feature_bottom_bg {
  margin-top: -46px;
  background-color: #fff;
}

@media screen and (max-width: 999px) {
  .row_list_circle {
    margin: 0 0 33px 0;
  }
  .row_list_circle li p {
    font-size: 12px;
  }
  .feature_bottom_bg {
    margin-top: -36px;
  }
  .feature_bottom_bg {
    margin-top: -30px;
  }
}
/*------------------------------------------------------------------------
 Solution
-------------------------------------------------------------------------*/

.solution_sub_title{
  text-align: left;
  margin-bottom: 34px;
}

.solution_sub_title::before{
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(https://www.hammock.jp/assetview/cloudplus/assets/images/symbol.png);
  background-size: contain;
  vertical-align: middle;
  margin: -5px -6px 0 0;
}
.solution_img{
  width: 61%;
  position: absolute;
}
.top .solution_img {
    width: 52%;
    position: absolute;
    z-index: 3;
}
.solution_img02{
  right: 0;
  z-index: 1;
}
.solution_box{
  background-color: #fff;
  box-shadow: 0px 0px 16px rgb(0 0 0 / 16%);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 30px;
  position: relative;
}
.top .solution_box {
    box-shadow: none;
}
.solution_explan{
  width: 50%;
  display: inline-block;
  z-index: 2;
  margin-top: 14%;
}
.top .solution_explan {
  margin-top: 0;
  margin-bottom: 11%;
}
.top .solution_explan_last{
  margin-bottom: 0;
}

.solution_box .detail_title{
  font-size: 20px;
  margin-bottom: 12px;
}
.top .solution_box .detail_title {
    color: #707070;
    font-size: 21px;
    text-align: center;
}
.top .solution_box .main_btn {
    margin: 60px auto 0;
    font-size: 15px;
    width: 250px;
}
.solution_box .detail_title span{
  color:#23758B;
}
.kinou{
  margin-top: 17px;
}
.kinou li{
  width: auto;
  font-size: 12px;
  padding: 5px 13px;
  margin: 0 0.7% 1% 0;
  border: 2px solid #C3E1EC;
  border-radius: 40px;
  display: inline-block;
  text-align: center;
}
.soon{
  width: 49%;
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 60px;
}
.soon .solution_sub_title{
  margin-bottom: 30px;
}
.soon p {
  margin-bottom: 10px;
  font-size: 15px;
}
.soon .gray{
  color: #767676;
}

@media screen and (max-width: 999px) {
  .solution_img {
    width: 90%;
    position: sticky;
    display: block;
    margin: auto;
  }
  .top .solution_img {
    width: 90%;
    position: sticky;
  }
  .solution_explan {
    width: 100%;
  }
  .solution_box .detail_title{
    font-size: 17px;
  }
  .top .solution_box .detail_title {
    font-size: 16px;
  }
  .top .solution_box .main_btn {
    margin: 20px auto 0;
    width: 90%;
  }
  .kinou {
    text-align: left;
  }
  .kinou li {
    font-size: 10px;
    padding: 5px 8px;
  }
  .soon {
    width: 100%;
  }
  #Solution .mv_btn_area{
    margin-bottom: 29px;
  }
}

/*------------------------------------------------------------------------
 Inquiry
-------------------------------------------------------------------------*/

.inquiry-form{
  text-align: center;
}
.inquiry-logo {
  padding: 23% 0 30px;
}
.ground{
  color: #fff;
  font-size: 22px;
  margin-right: 38%;
}
.inquiry-logo img{
  margin-top: -27px;
}
.inquiry-explan{
  color: #fff;
  font-size: 17px;
  padding: 30px 0;
}
.company_logo{
  position: absolute;
  margin: auto;
  width: 18%;
  left: 41%;
  bottom: 10%;
}

@media screen and (min-width: 1000px) {
  .inquiry_main_btn{
    width: 368px;
    padding: 9px 0;
	margin-bottom: 30px;
  }
}

@media screen and (max-width: 999px) {
  .inquiry-form{
    width: 46vh;
    height: 49vh;
  }
  .ground {
    font-size: 11px;
  }
  .inquiry-logo {
    padding: 16% 0 10px;
  }
  .inquiry-logo img {
    width: 100%;
    margin-top: -8px;
  }
  .inquiry-explan {
    font-size: 12px;
    padding: 18px 0;
  }
  .inquiry .content_wrapper{
    padding: 0;
  }
}

.small_link {
    color: #666;
    font-size: 1.2rem;
    position: absolute;
    top: 5px;
    right: 317px;
    z-index: 10;
}
.small_link:hover {
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
	.small_link {
    	color: #fff;
    	position: inherit;
		text-align: center;
	}
}


/*------------------------------------------------------------------------
 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(45deg, rgba(39,165,255,1) 0%, rgba(115,197,255,1) 62%);
}

.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;
  line-height: 1.6;
}

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

.cta_contact .cta_catch_box .white_btn {
  margin: 0 auto;
}

.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 #23758B;
  border-right: 2px solid #23758B;
  height: 8px;
  width: 8px;
  transform: rotate(45deg);
  content: "";
}

.cta_contact .cta_link_box .link_item .title {
  margin-bottom: 3px;
  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);
    margin-right: 20px;
  }
  .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);
    margin: 7.5px 0;
  }
  .cta_contact .cta_link_box .link_item a {
    height: 100%;
    padding: 30px 70px 30px 30px;
    transition: all 0.3s ease;
  }
  .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(45deg, rgba(39,165,255,1) 0%, rgba(115,197,255,1) 62%);
}

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

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

.cta_basic .btn_list_item .catch {
  display: block;
  color: #fff;
  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 a {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (min-width: 1000px) {
  .cta_basic .content_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
  }
  .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);
    margin: 27px;
  }
  .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);
  }
  .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: 60%;
    margin: -30px auto 0;
    padding: 60px 0 10px;
  }
}

@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;
  }
}


/*------------------------------------------------------------------------
 title
-------------------------------------------------------------------------*/
.main_title {
  text-align: center;
}
.main_title .label {
  display: block;
  color: #23758B;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.2px;
}
.main_title .title {
  display: block;
  font-weight: 700;
  line-height: 1.4;
}
.about_logo_area {
  position: relative;
  font-size: 36px;
  line-height: 3;
  text-align: center;
  margin-bottom: 50px;
}
.about_logo_area span{
  position: absolute;
  margin-left: 9px;
}
.about_logo_area .logo{
  width: 35%;
}
.about_text{
  text-align: center;
  font-size: 18px;
}
.for_customers_list_box p {
  color: #23758B;
}

@media screen and (min-width: 1000px) {
  .main_title {
    margin-bottom: 60px;
  }
  .main_title .label {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .main_title .title {
    font-size: 3.4rem;
  }
  .main_title + .lead_text {
    margin: -30px 0 60px;
    text-align: center;
  }
}

@media screen and (max-width: 999px) {
  .about_logo_area {
    font-size: 21px;
    margin-bottom: 30px;
    padding-right: 30px;
  }
  .about_logo_area .logo {
    width: 70%;
  }
  .about_text {
    font-size: 14px;
  }
}

/*------------------------------------------------------------------------
 MV
-------------------------------------------------------------------------*/
.l-mv.top #video{
  top: 46%;
}
.mv_area{
  width: 1000px;
  margin: 110px auto;
}
.top.lp .mv_area{
  width: 1000px;
  margin: 60px auto;
}
.main_visual .catch_box {
  width: 100%;
  padding-top: 4%;
}
.main_visual .main_catch_box .main_catch {
  font-size: 30px;
  text-align: center;
}
.top .main_visual .main_catch_box .main_catch {
  font-size: 25px;
  text-align: left;
  width: 650px;
  margin: 0 auto;
}
.top .main_visual .main_catch_box .sub_catch {
  width: 650px;
  margin: 0 auto 70px;
}
.main_visual .main_catch_box .sub_catch {
  width: 650px;
  margin: 0 auto 120px;
}
.main_visual.top.lp .main_catch_box .main_catch {
  font-size: 26px; /*font-size: 38px;*/
  color: #3BB5CC;
  margin: 0;
  margin-bottom: 50px;
}
.main_visual.top.lp .main_catch_box .main_catch img {
  width: 72%;
}
.main_visual.top.lp .main_catch_box .sub_catch {
  width: 500px;
  margin: 20px 0 70px;
  line-height: 40px;
}
.main_visual.top.lp .mv_img{
  top: 7%;
}
.main_visual.top.lp .main_btn {
  margin: 0;
}
.main_visual.lp .main_btn {
  margin: auto;
}

.sub_catch p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    float: right;
    padding: 10px 56px 0;
}
.main_visual .main_img_box {
    position: absolute;
    right: 13%;
    width: 41%;
    animation: mainImgPc 4s ease-out infinite;
}
.main_visual .main_btn {
    margin: 0 auto 2px;
    z-index: 99;
}
.main_visual .main_btn:hover {
    opacity: 0.8;
}
.main_visual .award_list_box {
    margin-left: -40px;
    width: 35%;
    min-width: 460px;
}
.main_visual .award_list .award_list_item .bg {
    font-size: 1.4rem;
}
.for_customers_list_box p{
    width: 37%;
}
.for_customers_list_box ul{
  width: 100%;
  margin-left: 5%;
}
.for_customers_list_box li::before {
    content: url(https://www.hammock.jp/assetview/assets/images/product/product18.png);
    top: 7px;
}
#content_area {
    background: #fff;
}
.transparent {
    width: 100%;
    height: 100px;
    margin-top: -97px;
    position: absolute;
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFFFFFD9 61%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}

@media screen and (max-width: 999px) {
  .mv_area {
      width: 80%;
      margin: 49px auto;
  }
  .top .mv_area {
      width: 80%;
      margin: 49px auto;
  }
  .main_visual .main_catch_box .main_catch {
      font-size: 18px;
  }
  .main_visual.top.lp .main_catch_box .sub_catch {
    width: 100%;
    margin: 0 auto 57px;
  }
  .main_visual.top.lp .main_catch_box .main_catch {
    font-size: 30px;
    color: #3BB5CC;
    margin: 0;
    width: 100%;
  }
  .top.lp .main_visual .main_catch_box .sub_catch {
      width: 100%;
      margin: 0 auto 40px;
  }
  .main_visual .main_btn {
      margin: 70px auto 2px;
  }
  .main_visual.top.lp .main_btn {
      margin: 0 auto 2px;
  }
  .sub_catch p {
      font-size: 11px;
      padding: 10px 24px 0;
  }
  .l-mv {
      height: 43vh;
      background: #fff fixed;
  }
  .top .l-mv {
    height: 122vh;
  }
  .top .l-mv #video {
      transform: translate(-50%, -50%) scale(0.7);
  }
  .transparent {
      height: 38px;
      margin-top: -53px;
  }
  .for_customers_list_box {
      margin-top: 16px;
  }
  .for_customers_list_box p {
      width: 100%;
  }
  .for_customers_list_box ul {
      width: 100%;
  }
  .for_customers_list_box li::before {
      top: -8px;
  }
  .for_customers_list_box li {
      text-align: left;
  }
}

@media screen and (max-width: 375px){
  .top .mv_area {
    margin: 49px auto 20px;
  }
  .top .main_visual .main_catch_box .main_catch {
    font-size: 17px;
  }
  .top .main_visual .main_catch_box .sub_catch {
    margin: 0 auto 30px;
  }
  .top .l-mv {
    height: 145vh;
  }
}

.anchor{
    padding-top: 78px;
    margin-top: -78px;
}
#About.anchor{
    padding-top: 80px;
    margin-top: -80px;
    position: relative;
    z-index: -999;
}
@media screen and (max-width: 999px) {
  .anchor{
    padding-top: 50px;
    margin-top: -50px;
  }
}

.wu_trouble{
    color: #23758B;
    text-align: center;
    font-size: 23px;
    font-weight: 500;
    /*margin-top: 45px;*/
}
.white_list_box {
    padding: 40px 0 40px 100px;
}
@media screen and (max-width: 999px) {
.for_customers_list_box {
    padding: 20px;
}
.wu_trouble {
    font-size: 18px;
}
.main_title .label {
    font-size: 16px;
    padding-bottom: 10px;
}
}


/* TOPボタン */
.main_visual .mv_btn_area {
    text-align: center;
}
.mv_btn_area li {
    width: 23.3%;
    padding: 20px 24px 4px 24px;
    margin-right: 2.8%;
    border-radius: 9px;
    background-color: #fff;
    box-shadow: 0 3px 6px rgb(72 69 69 / 16%);
    display: inline-block;
    text-align: center;
}
.mv_btn_area li:last-of-type {
    margin-right: 0;
}
.mv_btn_area img {
  margin: 0 20px 28px 30px;
}
.mv_btn_area .main_btn {
    width: 210px;
    padding: 12px;
    font-size: 12px;
}
.mv_btn_area .detail{
    color: black;
    font-size: 15px;
    font-weight: 600;
    margin-right: 17px;
    scroll-behavior: smooth;
}
.mv_btn_area .detail::before{
    content: url(https://www.hammock.jp/assetview/landing/cloud/images/sign_right.svg);
    vertical-align: middle;
    display: inline-block;
    width: 24%;
    scale: 0.4;
}

@media screen and (max-width: 999px) {
.mv_btn_area li {
    width: 80%;
    margin-right: 0;
}
.top .mv_btn_area li {
    width: 80%;
    margin-right: 0;
    margin-bottom: 20px;
}
}

@media screen and (max-width: 375px){
  .top .mv_btn_area img {
    margin: 0 20px 20px 30px;
  }
  .top .mv_btn_area li {
    margin-bottom: 10px;
  }
}


/*------------------------------------------------------------------------
 PC更新管理 / SaaS管理 / IT資産管理 / 情報漏洩
-------------------------------------------------------------------------*/
@media screen and (max-width: 999px){
.new_header .logo_box_lp {
    width: 126px;
    margin-bottom: -4px;
}
}

.lp .mv_area{
  width: 600px;
  margin: 110px 10%;
}
.mv_img{
    position: absolute;
    top: 30%;
    right: 10%;
    width: 500px;
}
@media screen and (min-width: 1540px) {
  .lp .mv_area{
    margin: 110px 14%;
  }
}
@media screen and (min-width: 1580px) {
  .mv_img {
    right: 17%;
  }
}
@media screen and (min-width: 1850px) {
  .lp .mv_area{
    margin: 110px 16%;
  }
  .mv_img {
    right: 20%;
  }
}
@media screen and (max-width: 1320px) {
  .lp .mv_area {
    margin: 110px 6%;
  }
  .mv_img {
    right: 6%;
  }
}
@media screen and (max-width: 1200px) {
  .lp .mv_area {
    margin: 110px 3%;
  }
  .mv_img {
    right: 2%;
    top: 38%;
    width: 450px;
  }
}


.main_visual.lp .main_catch_box .main_catch {
font-size: 24px;
color: #707070;
}
.main_visual.lp .main_catch_box .sub_catch {
  width: 500px;
  margin: 20px auto 70px;
}
.main_visual.lp .main_btn {
    width: 380px;
    font-size: 24px;
}
.mv_area_lp {
    width: 1000px;
    margin: 70px auto 100px;
}
.l-mv_lp {
    height: 110vh;
}
.main_visual .mv_area_lp .main_catch_box .sub_catch {
    margin: 0 auto -50px;
}
.transparent_lp {
  width: 100%;
  height: 100px;
  margin-top: -97px;
  position: absolute;
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFFFFFD9 61%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}

@media screen and (max-width: 1300px){
  .l-mv_lp #video {
    transform: translate(-50%, -50%) scale(0.8);
  }
}
@media screen and (max-width: 999px){
  .l-mv.lp {
    height: 64vh;
  }
  .l-mv #video {
    transform: translate(-50%, -50%) scale(0.6);
  }
  .mv_area_lp {
    width: 80%;
    margin: 55px auto 80px;
  }
  .top.lp .mv_area, .lp .mv_area {
    width: 80%;
    margin: 49px auto;
  }
  .lp .mv_img {
    position: static;
    margin: auto;
    display: block;
  }
  .transparent {
    height: 38px;
    margin-top: -34px;
  }
  .main_visual.lp .main_catch_box .sub_catch {
	width: 100%;
    margin: 0 auto 30px;
  }
  .main_visual.lp .main_catch_box .main_catch {
    font-size: 18px;
  }
  .l-mv_lp {
      height: 70vh;
  }
  .main_visual.lp .main_btn {
    width: 75%;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px){
  .l-mv_lp #video {
    transform: translate(-50%, -50%) scale(0.6);
  }
  .l-mv_lp {
    height: 63vh;
  }
  .transparent_lp {
    height: 53px;
    margin-top: -53px;
  }
}
@media screen and (max-width: 375px){
  .l-mv_lp {
    height: 581px;
  }
 .l-mv.lp.lp {
    height: 80vh;
  }
}

.trouble_list_box ul {
    display: inline-block;
    vertical-align: middle;
}
.trouble_list_box li {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    line-height: 3;
}
.trouble_list_box li::before {
    position: absolute;
    content: url(https://www.hammock.jp/assetview/assets/images/product/product18.png);
    top: 7px;
    left: -11%;
    scale: 0.7;
}
.white_list_box.trouble_list_box {
    padding: 40px 100px;
}
.trouble_list_box .wu_trouble {
    margin-top: 0;
    margin-bottom: 15px;
}
@media screen and (max-width: 999px){
    .white_list_box.trouble_list_box {
        margin: 30px 0 40px;
        padding: 20px;
    }
    .white_list_box.trouble_list_box li {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 10px;
        padding-left: 48px;
        text-align: left;
    }
    .white_list_box.trouble_list_box li::before {
        top: -8px;
        left: 0%;
        scale: 0.5;
    }
}

@media screen and (min-width: 1000px){
    .situation_img{
        padding: 0 10%;
    }
}
.lead_text_situation{
    font-size: 20px;
    padding-top: 18px;
    margin: 30px 0;
    text-align: center;
    font-weight: bold;
}
.situation_box{
    width: 90%;
    margin: auto;
    padding: 30px 60px;
}
.situation_box img{
    position: absolute;
    width: 24%;
    top: -18px;
    right: 10%;
}
@media screen and (max-width: 999px){
    .situation_box img {
        position: initial;
        width: 100%;
        padding-top: 19px;
    }
}

.main_btn_cta{
    margin: 70px auto 0;
}
.cta_area{
    position: relative;
    padding-bottom: 20px;
}
@media screen and (min-width: 1000px){
  .cta_area{
      width: 1000px;
      display: block;
      margin: 0 auto;
  }
}
.cta_area:before {
    position: absolute;
    content: "";
    top: 0;
    left: 40%;
    border-style: solid;
    border-width: 60px 100px 0 100px;
    border-color: #E0F4FC transparent transparent transparent;
}
.cta_area_pt{
    padding-top: 100px;
}
.cta_area p {
    position: relative;
    font-size: 25px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 80px;
    font-weight: bold;
}
.cta_area p:after {
    content: "";
    width: 606px;
    height: 6px;
    background-color: #D9F3F9;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 29px;
    margin: -11px auto;
}
.cta_area .short:after {
    width: 462px;
}
.cta_area .logo {
    width: 22%;
}

@media screen and (max-width: 999px){
  .cta_area:before {
    left: 45%;
    border-width: 30px 50px 0 50px;
    top: -1px;
  }
  .cta_area p {
    font-size: 15px;
    line-height: 38px;
  }
  .cta_area p:after {
    width: 385px;
    left: -10px;
    bottom: 13px;
  }
  .cta_area .short:after {
    width: 263px;
  }
  .cta_area .logo {
    width: 34%;
  }
}

@media screen and (max-width: 767px){
  .cta_area:before {
    left: 38%;
  }
}

.section_num{
    position: relative;
    padding-left: 42px;
}
.section02, .section04{
    padding-top: 18px;
}
.section_num:before{
    position: absolute;
    left: -17px;
    scale: 0.4;
    top: -17px;
}
.section01:before{
    content: url(https://www.hammock.jp/assetview/cloudplus/assets/images/saas/num01.png);
}
.section02:before{
    content: url(https://www.hammock.jp/assetview/cloudplus/assets/images/saas/num02.png);
    top: 1px;
}
.section03:before{
    content: url(https://www.hammock.jp/assetview/cloudplus/assets/images/saas/num03.png);
}
.section04:before{
    content: url(https://www.hammock.jp/assetview/cloudplus/assets/images/saas/num04.png);
    top: 1;
}
.section05:before{
    content: url(https://www.hammock.jp/assetview/cloudplus/assets/images/saas/num05.png);
}
.section06:before{
    content: url(https://www.hammock.jp/assetview/cloudplus/assets/images/saas/num06.png);
}
.section07:before{
    content: url(https://www.hammock.jp/assetview/cloudplus/assets/images/saas/num07.png);
}

.it_sol .bg_blue {
  background: #F8FCFD;
  padding: 20px 50px 92px 50px;
  margin-bottom: 80px;
}
.it_sol .bg_blue .solution_box{
  background-color: transparent;
  box-shadow: none;
}

@media screen and (min-width: 1000px){
  .solution_explan__left{
      margin-right: 50%;
  }
  .solution_explan__right{
      margin-left: 50%;
  }
  .pc_sol .solution_explan__01,
  .saas_sol .solution_explan__01{
      margin-bottom: 13%;
  }
  .pc_sol .solution_explan__02{
      margin-top: 9%;
      margin-bottom: 20%;
  }
  .pc_sol .solution_explan__03{
      margin-top: 12%;
      margin-bottom: 15%;
  }
  .saas_sol .solution_explan__02{
      margin-top: 19%;
      margin-bottom: 10%;
  }
  .saas_sol .solution_explan__03{
      margin-top: 12%;
      margin-bottom: 29%;
  }
  .saas_sol .solution_explan__04{
      margin-top: -10%;
      margin-bottom: 10%;
  }
  .saas_sol .solution_explan__05{
      margin-top: 11%;
      margin-bottom: 14%;
  }
  .it_sol .solution_explan__01{
    margin-bottom: 13%;
  }
  .it_sol .solution_explan__02{
    margin-bottom: 6%;
  }
  .it_sol .solution_explan__03{
    margin-top: 4%;
    margin-bottom: 7%;
  }
  .it_sol .bg_blue .solution_img {
    width: 47%;
    left: 53px;
  }
  .it_sol .bg_blue .solution_explan {
    margin: 5% auto 5% 53%;
  }
  .it_sol .bg_blue .solution_box .detail_title {
    font-size: 18px;
  }
  .leak_sol .solution_img02{
    width: 90%;
  }
  .leak_sol .solution_explan__01{
    margin-bottom: 18%;
  }
  .leak_sol .solution_explan__02{
    margin-top: 21%;
  }
  .leak_sol .solution_explan__03{
    margin-top: 8%;
    margin-bottom: 25%;
  }
	 .leak_sol .bg_blue .solution_explan {
    margin: 0 auto 0 53%;
  }

}

@media screen and (max-width: 999px){
  .solution_explan__01,
  .solution_explan__02,
  .solution_explan__03,
  .solution_explan__04,
  .solution_explan__05{
      margin-bottom: 16%;
  }
  .it_sol .bg_blue {
    padding: 20px 0 0;
    margin-bottom: 50px;
  }
  .it_sol .bg_blue .solution_box .detail_title {
    font-size: 14px;
  }
}

@media screen and (min-width: 1000px) {
  .topic_text {
    margin: 30px 0;
    text-align: center;
    font-size: 16px;
  }
  .main_title + .topic_text {
    margin: -30px 0 30px;
    text-align: center;
  }
}

@media screen and (max-width: 999px){
  .topic_text {
    text-align: center;
    margin: -10px 0 -20px;
  }
}


/*------------------------------------------------------------------------
 トップバナー
-------------------------------------------------------------------------*/
.top_banner {
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 100;
}
/*.top_banner a:hover {
	transform: scale(1);
	animation: 2s ease-in-out btn_anim;
}*/
.side_cta_close {
    position: absolute;
    right: -2px;
    top: -15px;
    background: #EBEBEB;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    line-height: 26px;
    color: #000;
    text-align: center;
    font-size: 20px;
}
.fadein-before{
    /*opacity: 0;*/
    transform:translateX(400px);
    transition:/*opacity 1s,*/transform .9s;
}
.fadein-after{
    /*opacity: 1;*/
    transform: translate(0);
}
/*注意：タブレット用もあるので767pxの幅変更しない*/
@media screen and (min-width: 768px) {
  .top_banner_sp {
      display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .top_banner_pc {
      display: none !important;
  }
  .top_banner {
      left: 30px;
      bottom: -10px;
  }
}

/*@keyframes btn_anim {
  0% {
      transform: scale(0.95);
  }
  25% {
    transform: scale(1);
  }
  100% {
      transform: scale(1);
  }
}*/


/*------------------------------------------------------------------------
 ダウンロードページ
-------------------------------------------------------------------------*/
#web-tools_biz div#g-contents {
    clear: both;
    margin: 0 auto;
    padding: 0;
    width: 1000px;
    overflow: hidden;
}
@media screen and (max-width: 960px){
  #web-tools_biz div#g-contents {
      width: 100%;
      padding: 0 5%;
      box-sizing: border-box;
  }
}
#web-tools_biz .logo_box{
  width: 1000px;
  margin: 0 auto 24px;
  display: block;
  float: none;
}
#web-tools_biz .logo_box .logo{
  width: 180px;
  float: left;
  padding-bottom: 20px;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  #web-tools_biz .logo_box{
    width: 100%;
  }
  #web-tools_biz .logo_box .logo{
    margin: 0 20px;
  }
}
#web-tools_biz h1#page-name{
  font-size: 28px;
  margin: 0;
  line-height: 1.4;
  color: #23758B;
}
@media screen and (max-width: 767px) {
  #web-tools_biz h1#page-name{
    font-size: 24px;
    line-height: 1.2;
  }
}
#web-tools_biz .category_title{
  font-size: 24px;
  margin: 2em 0 1em;
  border-bottom: solid 2px #23758B;
}
#web-tools_biz .item{
  color: #00A27D;
  background: linear-gradient(45deg, #f4fcf9, #f3fcf8, #f3fbf7, #f2fbf6, #f2faf5, #f1faf3, #f1f9f2, #f1f9f1);
  padding: 7px 25px;
  border-radius: 5px;
  font-size: 17px;
  margin-bottom: 18px;
  font-weight: 700;
}
#web-tools_biz .download_wappar{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #web-tools_biz .download_wappar{
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
  }
}
#web-tools_biz .download_wappar::after {
  display: block;
  content:"";
  width: 28%;
}
#web-tools_biz a.download_area {
  color: #000;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 28%;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  #web-tools_biz a.download_area {
    width: 28%;
  }
}
@media screen and (max-width: 767px) {
  #web-tools_biz a.download_area {
    width: 100%;
  }
}
#web-tools_biz a.download_area:visited,
#web-tools_biz a.download_area:link,
#web-tools_biz a.download_area:hover {
  color: #000;
  text-decoration: none;
}
#web-tools_biz a.download_area:hover{
  opacity: .6;
}
#web-tools_biz .download_title{
  color: #000;
  margin: 0;
  line-height: 1.3;
}
#web-tools_biz .download_button {
  border: solid 1px #23758B;
  color: #23758B;
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
}
#web-tools_biz .download_button img {
  vertical-align: middle;
  padding: 0 0 4px 4px;
}
#web-tools_biz .kome{
  font-size: 12px;
}
#web-tools_biz .download_wappar_2{
  display: grid;
  grid-template-rows: 4em 8em 34px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #web-tools_biz .download_wappar_2{
    display: block;
    width: 100%;
  }
}
#web-tools_biz .download_contents{
  line-height: 1.4em;
  margin: 0;
  padding: 0;
  font-size: 15px;
}
#web-tools_biz .download_contents.giga_contents {
  margin-top: -28px;
}
#web-tools_biz .download_image{
  display: inline-block;
  width: auto;
  margin: 0 auto 10px;
}
#web-tools_biz .t_center{
  text-align: center;
}

/*ダウンロードページフッター*/
#web-tools_biz .post-send_title_footer{
  display: block;
  background: #f8f8f8;
}
#web-tools_biz .post-send_title_footer a{
  text-decoration: none;
  color: #23758B;
}
#web-tools_biz .post-send_title_footer a:visited{
  color: #23758B;
}
#web-tools_biz .post-send_title_footer a:hover{
  text-decoration: underline;
}
#web-tools_biz .post-send_title_footer_wrapper {
  width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  #web-tools_biz .post-send_title_footer_wrapper {
    width: 100%;
    padding: 24px 15px 15px;
    box-sizing: border-box;
    margin: 20px 0 0;
  }
}
#web-tools_biz .post-send_title_footer_wrapper h2 {
  border-left: solid 10px #727272;
  padding-left: 15px;
  font-size: 20px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #web-tools_biz .post-send_title_footer_wrapper h2 {
    font-size: 18px;
  }
}
#web-tools_biz .post-send_title_footer_wrapper p {
  padding: 10px 25px 20px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #web-tools_biz .post-send_title_footer_wrapper p {
    font-size: 14px;
  }
}
#web-tools_biz .post-send_title_footer_wrapper ul {
  color: #23758B;
  padding: 10px 25px 0;
  list-style-position: inside;
}
#web-tools_biz .post-send_title_footer_wrapper ul li a {
  color: #23758B;
  font-size: 16px;
}
#web-tools_biz .post-send_title_footer_wrapper ul li a:visited {
  color: #23758B;
}
@media screen and (max-width: 767px) {
  #web-tools_biz .post-send_title_footer_wrapper ul li a {
    font-size: 14px;
  }
}

/*------------------------------------------------------------------------
 最低契約数 - テーブル
-------------------------------------------------------------------------*/
.kakaku_main_title {
    margin-top: 120px;
    color: #23758B;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}
table{
  border-collapse:collapse;
}
table.tab-kakaku{
  margin: 30px auto 0;
  width: 750px;
}
table.tab-kakaku th{
padding:.3em;
border:solid 1px #aaa;
background:#f2f2f2;
}
table.tab-kakaku tr td{
  padding:.5em;
  border: solid 1px #CECECE;
  background:#fff;
  color: #23758B;
  font-size: 20px;
  font-weight: bold;
}
table.tab-kakaku td.bg{
  padding:.5em;
  border: solid 1px #CECECE;
  background-color: #707070;
  width: 24%;
}
.t_center {
  text-align: center;
}
table.tab-kakaku .pack td{
  font-size: 15px;
  color: #fff;
}
.pack_kome{
  margin: -55px auto 60px;
  width: 730px;
  font-size: 13px;
  color: #888888;
}


@media screen and (max-width: 999px) {
  .kakaku_main_title {
    margin-top: 0;
  }
  table.tab-kakaku .pack td {
    font-size: 12px;
  }
  table.tab-kakaku {
    font-size: 11px;
    width: 100%;
    margin: 30px auto 40px;
  }
  table.tab-kakaku td.bg {
    padding: 0.8em;
  }
  .pack_kome{
    margin: -32px auto 40px;
    width: 100%;
  }
}

.small_text {
  font-size: 1.2rem;
}

/*------------------------------------------------------------------------
 TOP 製品一覧
-------------------------------------------------------------------------*/
.gray_area {
  background: #F8F8F8;
  padding: 30px;
  border-radius: 10px;
  margin: 0 -7%;
}
.top_product_area {
  display: flex;
  justify-content: space-between;
}
.product_title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 20px;
}
.top_product_detail {
  width: calc(100% / 4 - 14px);
  padding: 20px;
  border-radius: 9px;
  background-color: #fff;
  border: 3px solid #BBE2ED;
}
.top_product_detail img {
  text-align: center;
  display: block;
  margin: 0 auto 10px;
}
.top_product_detail p {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: #247489;
}
.top_product_detail ul {
  margin-bottom: 20px;
  padding-left: 10px;
}
.top_product_detail:last-of-type ul {
  padding-left: 0;
}
.top_product_detail li {
  font-size: 12px;
  line-height: 26px;
}
.top_product_detail li:before {
  content: "";
  width: 7px;
  height: 7px;
  margin: 2px 7px 2px 0;
  display: inline-block;
  background-color: #23748A;
  border-radius: 50%;
}
.top_product_detail .main_btn {
  width: 90%;
  margin: auto;
  padding: 10px;
  border-radius: 4px;
  font-size: 13px;
}
@media screen and (max-width: 999px) {
  .top_product_area {
    display: block;
  }
  .top_product_detail {
    width: 100%;
    margin-bottom: 20px;
  }
}
