@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, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html body {
  border-top: none;
}

body {
  line-height: 1;
}

.mac body {
 font-family: "Noto-sans" !important;
}

*,
*::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;
}

/*------------------------------------------------------------------------
 default
-------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -ms-overflow-style: scrollbar;
}

html body {
  line-height: 1.8;
}

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: #00A27D;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

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

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

/*------------------------------------------------------------------------
 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;
  }
}

/* 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: 1400px;
    margin: 0 auto;
    padding: 0 5%;
  }
  .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_green {
  background-color: #F0FAF7;
}

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

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

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

/*------------------------------------------------------------------------
 animation
-------------------------------------------------------------------------*/
.animation_js_box {
  opacity: 0;
  transform: translateY(10%);
  transition: 0.5s all ease;
}

.animation_js_box.fadein {
  opacity: 1;
  transform: translateY(0);
}

.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;
  font-weight: 700;
  background: linear-gradient(90deg, #00a27d, #20a683, #31aa89, #3ead8e, #4ab194, #55b59a, #5fb89f, #69bca5);
  box-shadow: 5px 8px 6px #00000029;
}
.main_btn:visited, .main_btn:link {
  color: #fff;
}

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

.main_btn:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #69bca5, #5fb89f, #55b59a, #4ab194, #3ead8e, #31aa89, #20a683, #00a27d);
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 1;
  content: "";
}

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

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

.sub_btn {
  color: #00A27D;
  background-color: #EFFAF6;
  transition: all 0.3s ease;
}

.white_btn {
  color: #00A27D;
  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: #fff;
    background-color: transparent;
  }
}

.green_line_btn {
  color: #00A27D;
  border: 1px solid #00A27D;
  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: #00A27D;
  }
}

.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: #00A27D;
    background-color: #fff;
  }
}

/*------------------------------------------------------------------------
 title
-------------------------------------------------------------------------*/
.main_title {
  text-align: center;
  margin: 35px 0 60px;
  color: #31A27D;
  font-size: 25px;
  font-weight: 600;
}

.main_title .label {
  display: block;
  color: #00A27D;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.2px;
}

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

@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) {
  .main_title {
    margin-bottom: 30px;
  }
  .main_title .label {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  .main_title .title {
    font-size: 2.1rem;
  }
  .main_title + .lead_text {
    margin: -10px 0 30px;
  }
}

/*------------------------------------------------------------------------
 award-list
-------------------------------------------------------------------------*/
.award_flame {
  text-align: center;
}
.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: #00A27D;
  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) {
  .award_section {
    position: relative;
    padding: 14% 0 0;
  }
  .award_section.bg_green {
    background-color: transparent;
  }
  .award_section:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 17%;
    background-position: top;
    background-image: url(https://www.hammock.jp/assetview/assets/images/2022/top/bg_wave_sp_top.svg);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
  }
  .award_section .content_wrapper {
    padding: 32px 25px 40px;
    background-color: #F0FAF7;
  }
  .award_section .award_list_box {
    width: 85%;
    max-width: 400px;
    margin: 0 auto;
  }
}

/*------------------------------------------------------------------------
　icon_row_list
-------------------------------------------------------------------------*/
.icon_row_list .icon_row_list_item {
  border-bottom: 1px solid #EDE5E5;
}

.icon_row_list .icon_row_list_item:first-child {
  border-top: 1px solid #EDE5E5;
}

.icon_row_list .icon_row_list_item .img_wrap img {
  display: block;
}

.icon_row_list .icon_row_list_item .text_wrap .title {
  color: #00A27D;
  font-weight: 700;
  line-height: 1.6;
}
.icon_row_list_box .kome {
    float: right;
    font-size: 14px;
    margin: 10px auto -10px;
}

@media screen and (min-width: 1000px) {
  .icon_row_list .icon_row_list_item {
    display: flex;
    width: 100%;
    padding: 24px 30px;
  }
  .icon_row_list .icon_row_list_item .img_wrap {
    width: 100px;
    height: 100px;
    margin-right: 40px;
  }
  .icon_row_list .icon_row_list_item .text_wrap {
    width: calc(100% - 140px);
  }
  .icon_row_list .icon_row_list_item .text_wrap .title {
    margin-bottom: 8px;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 999px) {
  .icon_row_list .icon_row_list_item {
    position: relative;
    padding: 20px;
  }
  .icon_row_list .icon_row_list_item .img_wrap {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
  }
  .icon_row_list .icon_row_list_item .text_wrap .title {
    display: flex;
    align-items: center;
    min-height: 40px;
    margin-bottom: 10px;
    padding-left: 50px;
  }
}

/*------------------------------------------------------------------------
 news-list
-------------------------------------------------------------------------*/
.news_list a {
  width: 100%;
  transition: all 0.3s ease;
}

.news_list a:hover {
  text-decoration: none;
}

.news_list a .about_box {
  display: flex;
  align-items: center;
  width: 100%;
}

.news_list a .about_box .date {
  display: block;
  margin-right: 15px;
  color: #AAAAAA;
}

.news_list a .about_box .category {
  color: #393636;
  font-size: 1.2rem;
}

.news_list a .news_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 1000px) {
  .news_list a:hover {
    opacity: 0.8;
  }
}

/*------------------------------------------------------------------------
 slide_list
-------------------------------------------------------------------------*/
.case_list * {
  min-width: 0;
  min-height: 0;
}

.case_list .case_box {
  display: flex;
}

.case_list .case_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);
}

.case_list .case_list_item a {
  display: block;
  transition: all 0.3s ease;
}

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

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

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

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

.case_list .text_box .company_name {
  display: block;
  color: #00A27D;
  font-weight: 700;
  line-height: 1.6;
}

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

.case_list .text_box .sub_info_box {
  position: absolute;
  bottom: 30px;
  border-radius: 8px;
  background-color: #F0FAF7;
  padding: 20px;
}

.case_list .text_box .sub_info_box p {
  color: #00A27D;
  line-height: 1.6;
}

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

@media screen and (min-width: 1000px) {
  .case_list .case_list_item {
    width: 33.3%;
    padding-bottom: 130px;
  }
  .case_list .case_list_item a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  .case_list .case_list_item a:hover .img_box img {
    transform: scale(1.2);
  }
  .case_list .case_list_item .text_box {
    display: flex;
    padding: 30px 30px 0;
  }
  .case_list .case_list_item .text_box .company_name {
    margin-bottom: 15px;
    font-size: 1.7rem;
  }
  .case_list .case_list_item .text_box .text {
    margin-bottom: 15px;
  }
  .case_list .case_list_item .text_box .sub_info_box {
    left: 30px;
    width: calc(100% - 60px);
  }
}

@media screen and (max-width: 999px) {
  .case_list .case_list_item {
    width: 75%;
    padding-bottom: 125px;
  }
  .case_list .case_list_item .company_name {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  .case_list .case_list_item .text_box {
    padding: 20px 24px 0;
  }
  .case_list .case_list_item .sub_info_box {
    left: 24px;
    width: calc(100% - 48px);
    font-size: 1.2rem;
  }
}

.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: #00A27D;
  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: #00A27D;
  background-color: #F0FAF7;
}

.seminar_list .category_list .category.active {
  color: #fff;
  background-color: #00A27D;
}

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

/*------------------------------------------------------------------------
 two_row_list
-------------------------------------------------------------------------*/
.two_row_list .two_row_list_item {
  padding: 30px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(72, 69, 69, 0.05);
}

.two_row_list .main_title {
  color: #00A27D;
  font-weight: 700;
  line-height: 1.6;
  border-radius: 8px;
  background: linear-gradient(45deg, #f4fcf9, #f3fcf8, #f3fbf7, #f2fbf6, #f2faf5, #f1faf3, #f1f9f2, #f1f9f1);
}

.two_row_list .main_title + .text {
  margin-bottom: 30px;
}

@media screen and (min-width: 1000px) {
  .two_row_list .two_row_list_box {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .two_row_list .two_row_list_item {
    width: calc(50% - 7.5px);
  }
  .two_row_list .main_title {
    margin-bottom: 30px;
    padding: 15px;
    font-size: 2.1rem;
  }
  .two_row_list .main_title + .text {
    padding: 0 30px;
    text-align: center;
  }
}

@media screen and (max-width: 999px) {
  .two_row_list .two_row_list_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .two_row_list .main_title {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 1.5rem;
  }
}

/*------------------------------------------------------------------------
 white_sep_list
-------------------------------------------------------------------------*/
.white_sep_list .white_sep_list_item {
  position: relative;
}

.white_sep_list .white_sep_list_item .content_wrap .number_label {
  display: inline-block;
  color: #00A27D;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
}

.white_sep_list .white_sep_list_item .content_wrap .number_label .under_line {
  position: relative;
}

.white_sep_list .white_sep_list_item .content_wrap .number_label .under_line:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #00A27D;
  transform: translateX(-50%);
  content: "";
}

.white_sep_list .white_sep_list_item .content_wrap .title {
  color: #00A27D;
  font-weight: 700;
  line-height: 1.6;
}

.white_sep_list .white_sep_list_item .content_wrap .catch_copy {
  color: #00A27D;
  font-weight: 500;
}

.white_sep_list .white_sep_list_item .img_wrap {
  position: relative;
}

.white_sep_list .white_sep_list_item .img_wrap .img_inner {
  position: relative;
  z-index: 1;
}

.white_sep_list .white_sep_list_item .img_wrap img {
  display: block;
}

.white_sep_list .white_sep_list_item .img_wrap:before {
  position: absolute;
  width: 100%;
  z-index: 0;
  content: "";
}

@media screen and (min-width: 1000px) {
  .white_sep_list .white_sep_list_item:nth-child(odd) .pc_flex_box {
    flex-direction: row-reverse;
    width: 96%;
    margin-left: 4%;
  }
  .white_sep_list .white_sep_list_item:nth-child(odd) .content_wrap {
    padding: 50px 110px 60px 60px;
  }
  .white_sep_list .white_sep_list_item:nth-child(even) .pc_flex_box {
    width: 93%;
    margin-right: 7%;
  }
  .white_sep_list .white_sep_list_item:nth-child(even) .content_wrap {
    padding: 50px 60px 60px 120px;
  }
  .white_sep_list .white_sep_list_item:not(:last-child) {
    margin-bottom: 120px;
  }
  .white_sep_list .white_sep_list_item:last-child {
    margin-bottom: 80px;
  }
  .white_sep_list .white_sep_list_item .pc_flex_box {
    display: flex;
    width: 100%;
  }
  .white_sep_list .white_sep_list_item .img_wrap {
    width: 45%;
  }
  .white_sep_list .white_sep_list_item .img_wrap.blob01 {
    top: 40px;
    right: 6%;
  }
  .white_sep_list .white_sep_list_item .img_wrap.blob01 .img_inner {
    position: absolute;
    top: 6%;
    right: 4%;
    width: 87%;
  }
  .white_sep_list .white_sep_list_item .img_wrap.blob02 {
    left: 7%;
  }
  .white_sep_list .white_sep_list_item .img_wrap.blob02 .img_inner {
    position: absolute;
    top: 50%;
    right: 14%;
    width: 70%;
    transform: translate(0, -50%);
  }
  .white_sep_list .white_sep_list_item .content_wrap {
    width: 55%;
    border-radius: 8px;
    background-color: #F7F7F7;
  }
  .white_sep_list .white_sep_list_item .content_wrap .number_label {
    margin-bottom: 30px;
  }
  .white_sep_list .white_sep_list_item .content_wrap .number_label .under_line {
    padding-bottom: 5px;
  }
  .white_sep_list .white_sep_list_item .content_wrap .title {
    margin-bottom: 5px;
    font-size: 2.7rem;
  }
  .white_sep_list .white_sep_list_item .content_wrap .catch_copy {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
  .white_sep_list .white_sep_list_item .content_wrap .text {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 999px) {
  .white_sep_list .white_sep_list_item {
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 5px 25px rgba(57, 54, 54, 0.05);
  }
  .white_sep_list .white_sep_list_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .white_sep_list .white_sep_list_item .img_wrap {
    max-width: 450px;
    margin: 0 auto 30px;
  }
  .white_sep_list .white_sep_list_item .img_wrap.blob01 .img_inner {
    position: absolute;
    top: 6%;
    right: 4%;
    width: 87%;
  }
  .white_sep_list .white_sep_list_item .img_wrap.blob02 .img_inner {
    position: absolute;
    top: 50%;
    right: 14%;
    width: 70%;
    transform: translate(0, -50%);
  }
  .white_sep_list .white_sep_list_item .content_wrap .number_label {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
  }
  .white_sep_list .white_sep_list_item .content_wrap .number_label .under_line {
    padding-bottom: 7px;
  }
  .white_sep_list .white_sep_list_item .content_wrap .title {
    margin-bottom: 5px;
    font-size: 1.7rem;
  }
  .white_sep_list .white_sep_list_item .content_wrap .catch_copy {
    margin-bottom: 10px;
  }
  .white_sep_list .white_sep_list_item .content_wrap .text {
    margin-bottom: 20px;
  }
  .white_sep_list .white_sep_list_item .content_wrap .main_btn {
    margin: 0 auto;
  }
}

/*------------------------------------------------------------------------
 separate-column
-------------------------------------------------------------------------*/
.separate-column .contents .title {
  font-weight: 700;
  line-height: 1.6;
}

.separate-column .contents .text p {
  margin-bottom: 20px;
}

@media screen and (min-width: 1000px) {
  .separate-column {
    display: flex;
    align-items: center;
    width: 75%;
    margin: 90px auto 0;
  }
  .separate-column .img_wrap {
    width: calc(40% - 30px);
    margin-right: 30px;
  }
  .separate-column .contents {
    width: calc(60% - 30px);
    margin-left: 30px;
  }
  .separate-column .contents .title {
    margin-bottom: 25px;
    font-size: 2.7rem;
  }

  #Products .separate-column {
    width: 66%;
  }
  #Products .separate-column .img_wrap {
    width: 60%;
  }
  #Products .separate-column .contents .title {
    font-size: 3.7rem;
    color: #33AD8D;
    font-weight: 600;
  }
  #Products .separate-column .contents .title span {
    display: block;
    font-size: 1.7rem;
    color: #3B3938;
  }
  #Products .separate-column .contents .text p {
    font-size: 16px;
  }
}

#Products dt {
    width: auto !important;
}

@media screen and (max-width: 999px) {
  .separate-column .img_wrap {
    width: 60%;
    margin: 40px auto 30px;
  }
  .separate-column .contents .title {
    margin-bottom: 10px;
    font-size: 1.7rem;
    text-align: center;
  }
  .separate-column .contents .btn {
    margin: 0 auto;
  }
}

/*------------------------------------------------------------------------
 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, #00a27d, #20a683, #31aa89, #3ead8e, #4ab194, #55b59a, #5fb89f, #69bca5);
}

.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: #00A27D;
}
.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: #00A27D;
}

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

/*------------------------------------------------------------------------
 introducing company
-------------------------------------------------------------------------*/
.intro_company {
  overflow: hidden;
  background-color: #fff;
}

.intro_company .text_box {
  overflow: hidden;
  height: auto;
  color: #00A27D;
  text-align: center;
  border: none;
  background-color: #fff;
}

.intro_company .text_box .main_catch {
  font-weight: 500;
  line-height: 1.4;
}

.intro_company .text_box .number {
  font-weight: 700;
}

.intro_company .img_box .company_logo_box {
  display: flex;
}

.intro_company .img_box img {
  display: block;
  max-width: inherit;
}

@media screen and (min-width: 1000px) {
  .intro_company {
    padding-top: 90px;
  }
  .intro_company .text_box .main_catch {
    font-size: 3.4rem;
  }
  .intro_company .img_box {
    position: relative;
    width: 1882px;
    padding: 40px 0;
    z-index: 0;
  }
  .intro_company .img_box .company_logo_box {
    animation: loopSlidePc 15s linear infinite;
  }
  .intro_company .img_box .company_logo_box.second {
    margin: 20px 0;
  }
  .intro_company .img_box .company_logo_item {
    height: 70px;
  }
  .intro_company .img_box img {
    height: 70px;
  }
}

@media screen and (max-width: 999px) {
  .intro_company .text_box {
    padding: 40px 0;
    text-align: center;
  }
  .intro_company .text_box .main_catch {
    font-size: 2.1rem;
  }
  .intro_company .text_box .number {
    font-size: 4.1rem;
  }
  .intro_company .text_box .text {
    margin-top: 5px;
    font-weight: 500;
  }
  .intro_company .img_box {
    width: 1075px;
    padding: 0 0 40px;
  }
  .intro_company .img_box .company_logo_box {
    animation: loopSlideSp 15s linear infinite;
  }
  .intro_company .img_box .company_logo_item {
    height: 40px;
  }
  .intro_company .img_box img {
    height: 40px;
  }
}

@keyframes loopSlidePc {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1882px);
  }
}

@keyframes loopSlideSp {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1075px);
  }
}

/*------------------------------------------------------------------------
 top
-------------------------------------------------------------------------*/
.main_visual {
  position: relative;
  background-color: #fff;
}

.main_visual .main_catch_box .main_catch img[src$=".svg"],
.main_visual .main_catch_box .main_img_box img[src$=".svg"] {
  display: block;
  width: 100%;
}

.main_visual .main_catch_box .text {
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (min-width: 1000px) {
  .main_visual {
    overflow: hidden;
    background-position: bottom;
    background-image: url(https://www.hammock.jp/assetview/assets/images/2022/top/bg_wave_pc.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .main_visual .catch_box {
    padding: 2% 0 0 6%;
  }
  .main_visual .main_catch_box .main_catch {
    width: 58%;
    max-width: 800px;
    margin-bottom: 30px;
  }
  .main_visual .main_catch_box .sub_catch {
    width: 40%;
    max-width: 660px;
    margin-bottom: 30px;
  }
  .main_visual .main_catch_box .sub_catch img {
    width: 100%;
  }
  .main_visual .main_catch_box .text {
    width: 50%;
    margin-bottom: 30px;
    font-size: 2.7rem;
  }
  .main_visual .main_img_box {
    position: absolute;
    right: 12%;
    width: 29%;
    animation: mainImgPc 4s ease-out infinite;
  }
  .main_visual .main_btn {
    width: 400px;
    padding: 20px 0;
    font-size: 2.1rem;
  }
  .main_visual .award_list_box {
    position: absolute;
    bottom: 0%;
    right: 8%;
    width: 30%;
    min-width: 460px;
    max-width: 560px;
  }
  .main_visual .award_list .award_list_item .bg {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 999px) {
  .main_visual .main_catch_box {
    margin-top: 30px;
    text-align: center;
  }
  .main_visual .main_catch_box .main_catch {
    width: 80%;
    max-width: 420px;
    margin: 0 auto 15px;
  }
  .main_visual .main_catch_box .sub_catch {
    width: 65%;
    max-width: 380px;
    margin: 0 auto 30px;
  }
  .main_visual .main_catch_box .text {
    margin-bottom: 50px;
    font-size: 1.3rem;
  }
  .main_visual .mv_btn_area {
    margin-bottom: 30px;
  }
  .main_visual .mv_btn_area .btn {
    margin: 0 auto;
  }
  .main_visual .main_img_box {
    position: relative;
    top: 0;
    width: calc(100% - 50px);
    max-width: 500px;
    margin: 0 auto 32px;
    animation: mainImgSp 4s ease-out infinite;
  }
  .main_visual .award_box {
    margin-top: -240%;
    padding: 30% 0 0;
    background-position: 0 1px;
    background-image: url(https://www.hammock.jp/assetview/assets/images/2022/top/bg_wave_sp_top_pale.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .main_visual .award_box .sp_color_inner {
    padding: 207% 25px 20px;
    background: linear-gradient(180deg, #f5fcfa, #f4fcfa, #f4fcf9, #f3fcf9, #f3fbf9, #f2fbf9, #f2fbf8, #f1fbf8);
  }
  .main_visual .award_list_box {
    width: 85%;
    max-width: 400px;
    margin: 0 auto;
  }
  .main_visual .sp_wave_box {
    padding: 17% 0 0;
    background-position: top;
    background-image: url(https://www.hammock.jp/assetview/assets/images/2022/top/bg_wave_sp_under.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

@keyframes mainImgPc {
  0% {
    top: 5%;
  }
  50% {
    top: 7%;
  }
  100% {
    top: 5%;
  }
}

@keyframes mainImgSp {
  0% {
    top: 0;
  }
  50% {
    top: -10px;
  }
  100% {
    top: 0;
  }
}

.news_slide {
  background-color: #fff;
}

.news_slide .news_slide_title {
  color: #00A27D;
  font-family: "Poppins", sans-serif;
}

.news_slide .news_js_box {
  display: none;
}

.news_slide .news_js_box.slick-initialized {
  display: block;
}

.news_slide .green_line_btn {
  position: relative;
}

.news_slide .green_line_btn:before {
  position: absolute;
  right: 15px;
  border-top: 1px solid #00A27D;
  border-right: 1px solid #00A27D;
  height: 9px;
  width: 9px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  content: "";
}

@media screen and (min-width: 1000px) {
  .news_slide {
    display: flex;
    align-items: center;
    position: inherit;
    width: 62%;
    padding: 24px 30px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 5px 25px rgba(72, 69, 69, 0.05);
    margin: 0 auto 30px;
  }
  .news_slide .news_slide_box {
    width: calc(100% - 170px);
  }
  .news_slide .btn_wrap {
    margin-left: 30px;
  }
  .news_slide .green_line_btn {
    width: 140px;
    padding: 9px 36px 7px 10px;
    font-size: 1.4rem;
  }
  .news_slide .green_line_btn:before {
    top: 14px;
  }
  .news_slide .green_line_btn:hover:before {
    right: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

@media screen and (max-width: 999px) {
  .news_slide {
    width: calc(100% - 50px);
    padding: 20px 20px 30px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(72, 69, 69, 0.05);
  }
  .news_slide .news_slide_title {
    display: block;
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-align: center;
  }
  .news_slide .news_slide_box {
    margin-bottom: 10px;
  }
  .news_slide .green_line_btn {
    width: 90%;
    margin: 0 auto;
    padding: 17px 20px;
  }
  .news_slide .green_line_btn:before {
    top: 24px;
  }
}

.pankuzu a {
  display: inline-block;
}

.event_tag_venue,
.event_tag_status {
  box-sizing: content-box;
}

#event .award_list_item .bg {
  background: linear-gradient(rgba(255, 255, 255, 0.25), white);
}

.cta_contact .cta_link_box .link_item:after {
  display: none;
}

.cta_basic + .footer {
  margin-top: 0;
}

@media screen and (min-width: 1000px) {
  #event #g-contents-event {
    padding-top: 0 !important;
  }
  main.second_content + .cta_contact {
    margin-top: 60px;
  }
}

@media screen and (max-width: 999px) {
  main.second_content {
    padding-top: 50px;
  }
  .application-privacypolicy main.second_content {
    padding-top: 80px;
  }
  main.second_content + .cta_contact {
    margin-top: 40px;
  }
}
/*機能*/
.topage {
    display: inline-block;
    height: 25px;
}
.topagedown {
    display: inline-block;
    height: 29px;
}

/*20220920*/
.mv_btn_area {
   max-width: 53%;
   text-align: left;
   margin: 5% 0 0 6%;
}
.plus-area {
	width: 55%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
    position: relative;
}
.plus-area:after {
    position: absolute;
    width: 120px;
    border-radius: 50%;
    top: -14px;
    left: -14px;
    background: #23758B;
    content: "NEW";
    font-size: 32px;
    color: #fff;
    text-align: center;
    line-height: 120px;
    letter-spacing: 3px;
    font-weight: 400;
    transform: rotate(-10deg);
}
.asset-area {
    width: 42%;
    position: relative;
    display: inline-block;
}
.mv_btn_area .btn-product {
	position: relative;
	padding: 25px 24px 4px 24px;
	margin-right: 2%;
	border-radius: 19px;
	background-color: #fff;
	box-shadow: 0 3px 6px rgb(72 69 69 / 16%);
	display: inline-block;
	text-align: center;
}
.plus-area .btn-product {
	border-bottom: 7px solid #23758B;
	width: 100%;
	background-image: url(/assetview/assets/images/2022/top/bg_cloudplus.png);
    background-size: 100% auto;
    background-position: bottom;
	background-repeat:no-repeat;
}
.asset-area .btn-product {
	border-bottom: 7px solid #00A27D;
	width: 100%;
	margin-bottom: 14px;
	padding: 10px 24px 4px 24px;
}
.mv_btn_area .flow{
    font-size: 16px;
    letter-spacing: 4px;
    font-weight: 500;
    color: #23758B;
    padding: 6px 0 2px;
    width: 160px;
    margin: 0 auto 20px;
    background: #FAFAFA;
    border-radius: 29px;
}
.asset-area .flow{
  	color: #00A27D;
  	margin: 0 auto 8px;
}
.asset-area .description{
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 17px;
    line-height: 38px;
	color: #00272D;
}
.mv_btn_area .detail::after{
	vertical-align: middle;
    display: inline-block;
    margin-left: 4px;
    width: 17px;
    padding: 3px;
}
.plus-area img{
    padding: 0px 38px;
}
.asset-area img{
    padding: 0 39px;
}
.mv_btn_area .btn_main {
    padding: 6px 0;
    width: 79%;
    font-size: 1.4rem;
    transition: all 0.2s;
    color: #fff;
}
.plus-area .btn_main {
    background-color: #23758B;
	margin: 28px auto 39px;
}
.asset-area .btn_main {
  	background-color: #00A27D;
  	margin: 5.8% auto;
}
.plus-area .btn-product:hover {
  	margin-top: 5px;
  	border-bottom: 2px solid #23758B;
  	transition: all 0.2s;
  	text-decoration: none;
}
.asset-area .btn-product:hover {
  	margin-top: 5px;
  	border-bottom: 2px solid #00A27D;
  	transition: all 0.2s;
  	text-decoration: none;
}
.mv_btn_area .btn_main:hover {
	font-weight: 600;
	outline-offset: -2px;
	background-color: #fff;
  	opacity: 1;
  	text-decoration: none;
}
.plus-area .btn_main:hover {
  	color: #23758B;
  	outline: 2px solid #23758B;
}
.asset-area .btn_main:hover {
  	color: #00A27D;
  	outline: 2px solid #00A27D;
}

@media screen and (max-width: 1500px) {
    .plus-area:after{
      width: 100px;
      font-size: 24px;
      line-height: 100px;
    }
}
@media screen and (max-width: 1365px) {
    .mv_btn_area {
        max-width: 49%;
    }
    .description {
        font-size: 16px;
        line-height: 32px;
    }
    .plus-area .btn_main {
        margin: 8% auto 12.5%;
    }
}
@media screen and (max-width: 1200px) {
	.main_visual .award_list_box {
    	width: 36%;
    	min-width: auto;
	}
	.plus-area:after{
        width: 90px;
      	font-size: 202x;
      	line-height: 89px;
    }
}
@media screen and (max-width: 999px) {
	.mv_btn_area {
   		margin: 0 auto;
	}
    .mv_btn_area .btn-product{
        padding-top: 15px;
        margin-bottom: 8%;
    }
    .plus-area {
        width: 100%;
        padding: 0 25px;
    }
    .asset-area {
        width: 100%;
        padding: 0 25px;
    }
    .main_visual .mv_btn_area .btn {
        margin: 15px auto 18px;
    }
    .description {
        font-size: 15px;
        margin-bottom: 9px;
        line-height: 33px;
    }
    .flow {
        font-size: 15px;
        margin: 0 auto 9px;
    }
    .asset-area img {
        width: 72%;
    }
	.main_visual .award_list_box {
    	width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.mv_btn_area {
		max-width: 100%;
   		width: 100%;
	}
    .plus-area:after{
      	left: 7px;
    }
}
@media screen and (min-width: 1000px) {
	.sp_wave_box{
		 position: relative;
	}
	.main_visual {
    margin: 20px 0 0;
	}
	.slide_dot_nav {
		visibility:hidden;
	}
}




/*------------------------------------------------------------------------
 top
 TODO: 上の旧TOPの必要ないソースを削除してマージする
-------------------------------------------------------------------------*/
.gallery-cell {
  width: 66%;
  counter-increment: gallery-cell;
  aspect-ratio: 8 / 3;
}
.product_btn {
  width: 63%;
  margin: 0 auto 26px;
}
.menu_product ul{
display: flex;
}
.menu_product a{
width: 100%;
padding: 5.6% 0;
box-shadow: 0 3px 6px #00000029;
border-radius: 8px;
margin-bottom: 10px;
display: flex;
}
.menu_product span{
text-align: center;
font-size: 13px;
}
.menu_product img{
width: 100%;
margin: 0 auto;
}


/* 製品一覧*/

.product_area li {
  width: 31%;
  padding: 7px 24px 4px 24px;
  margin: 0 1.8% 60px 0;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 5px 8px 6px #00000029;
  display: inline-block;
  position: relative;
}
.product_area li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 18%;
  top: 0;
  left: 0;
  border-radius: 8px 8px 0 0;
  background: #2771BC;
}
.product_area .onpre_product_area:before {
  background: #45A27C;
}
.product_area li:nth-of-type(3n){
  margin-right: 0;
}
.product_area a {
    text-decoration: none;
}
.product_area a:hover {
    opacity: 0.8;
}
.target{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  z-index: 11;
  position: relative;
  text-align: center;
}
.product_area .left {
  width: 42%;
  padding-right: 20px;
  display: inline-block;
  text-align: center;
  margin-top: 4%;
}
.product_area .right {
  width: 50%;
  display: inline-block;
  position: absolute;
  margin-top: 6%;
  color: #000;
}
.product_area .logo-img {
  max-width: 76%;
  margin: auto;
  display: block;
}
.product_area .logo-img_plus {
  max-width: 96%;
}
.product_area .logo-area{
  height: 40px;
}
.sol_title{
  font-size: 13px;
  padding-bottom: 13px;
}

@media screen and (max-width: 999px) {
  .product_area li {
    width: 100%;
    margin: 0 0 30px;
  }
}

/*AssetViewで解決できる課題*/
.problem_outline_title {
  text-align: center;
  position: relative;
  width: auto !important;
  margin-bottom: 40px;
  color: #00A27D;
  font-weight: 500;
}
.problem_btn {
  position: relative;
  color: #fff;
  font-weight: 400;
  background-color: #31A27D;
  box-shadow: 3px 3px 10px #00000029;
  transition: all 0.3s ease;
  font-size: 2.1rem;
  padding: 24px 0 24px 30px;
  border-radius: 4px;
}
.problem_btn:hover {
  text-decoration: none;
}
.problem_btn:visited {
  color: #fff;
}
.problem_btn:before {
  position: absolute;
  content: url(https://www.hammock.jp/assetview/assets/images/top/solution_icon01.png);
  left: 7%;
  scale: 0.8;
  top: 5px;
}
.problem_btn_02:before {
  content: url(https://www.hammock.jp/assetview/assets/images/top/solution_icon02.png);
}
.problem_btn:after {
  position: absolute;
  content: url(https://www.hammock.jp/assetview/assets/images/top/solution_icon03.png);
  right: 7%;
  scale: 0.7;
  top: 23px;
}
.problem_section .problem_list_box {
  padding: 42px 19% 32px;
  border-radius: 12px;
  background: #F7F7F7;
}
@media screen and (min-width: 1000px) {
  .problem_list_box .cta_btn_wrap .btn_list_item {
    width: calc(50% - 46px);
  }
  .problem_section .problem_outline_title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 999px) {
  .problem_section {
    position: relative;
    padding: 14% 0 0;
  }
  .problem_section .content_wrapper {
    padding: 32px 25px 40px;
  }
  .problem_section .problem_list_box {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0 10px;
  }
  .problem_list_box .cta_btn_wrap .btn_list_item {
    width: 100%;
  }
  .problem_outline_title {
    font-size: 18px;
  }
  .problem_btn:before {
    left: 3%;
    scale: 0.6;
  }
}


/*------------------------------------------------------------------------
モーダル
-------------------------------------------------------------------------*/
.modal {
  position: fixed;
  width: 100%;
  height: 100vw;
  top: 0;
  left: 0;
  display: none;
  z-index: 99999;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  }

  .modalOpen {
  border: none;
  cursor: pointer;
  }

  .modalInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F2F2F2;
  }

  .modalInner img {
  width: auto;
  max-width: 1140px;
  height: 85vh;
  max-height: 695px;
  }

  .modal .inner {
  position: absolute;
  width: 1140px;
  max-width: 90vw;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 695px;
  max-height: 85vh;
  z-index: 11;
  top: 46vh;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  }

  .modal .inner .bg_white {
  overflow-y: auto;
  }

  .modal .inner .modalClose {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  cursor: pointer;
  }

  .modal .inner .modalClose img {
  width: 100% !important;
  }

  @media screen and (min-width: 481px) {
  .modal .inner {
    -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
            box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
  }
  }

  @media screen and (max-width: 480px) {
  .modal .inner {
    -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
            box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
  }
  }

  @media screen and (min-width: 1000px) {
  .modal .inner .modalClose {
    width: 50px;
    height: 50px;
  }
  }

  @media screen and (max-width: 999px) {
  .modal .inner .bg_white {
    border-right: 3px solid #F2F2F2;
    border-left: 3px solid #F2F2F2;
  }
  .modal .inner .modalClose {
    width: 13vw;
    height: 13vw;
  }
  .modalInner {
    display: block;
    overflow-x: scroll;
  }
  }

  .overLay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100vh;
  }
  .anchor{
    padding-top: 80px;
    margin-top: -80px;
  }
  @media screen and (max-width: 999px) {
  .anchor{
    padding-top: 50px;
    margin-top: -50px;
  }
  }
