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

/*------------------------------------------------------------------------
 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: #01bcc4;
  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) {
  .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_blue {
  background-color: #E6FAFB;
}

.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, #01bcc4 0%, #04e8f1 100%);
  box-shadow: 5px 8px 6px #00000029;
}

.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, #04e8f1 0%, #01bcc4 100%);
  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: #01bcc4;
  background-color: #EAF7FF;
  transition: all 0.3s ease;
}

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

@media screen and (min-width: 1000px) {
  .sub_btn:hover {
    color: #EAF7FF;
    background-color: #01bcc4;
  }
}

.white_btn {
  color: #01bcc4;
  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;
  }
}

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

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

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

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

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

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

.main_title .label {
  display: block;
  color: #01bcc4;
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*------------------------------------------------------------------------
　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: #01bcc4;
  font-weight: 700;
  line-height: 1.6;
}

@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: #01bcc4;
  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: #E8F7FE;
  padding: 20px;
}

.case_list .text_box .sub_info_box p {
  color: #01bcc4;
  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: #01bcc4;
  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: #01bcc4;
  background-color: #E8F7FE;
}

.seminar_list .category_list .category.active {
  color: #fff;
  background-color: #01bcc4;
}

.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: #01bcc4;
  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: #01bcc4;
  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: #01bcc4;
  transform: translateX(-50%);
  content: "";
}

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

.white_sep_list .white_sep_list_item .content_wrap .catch_copy {
  color: #01bcc4;
  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;
  }
}

@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, #01bcc4 0%, #04e8f1 100%);
}

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

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

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

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

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

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

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

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

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

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

.cta_basic .img_wrap img {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

.intro_company .text_box {
  overflow: hidden;
  height: auto;
  color: #01bcc4;
  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);
  }
}

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

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

.pickup_slide {
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(30deg, #aed8ca, #a5d4c5, #9bd0bf, #91ccba, #87c8b5, #7dc4af, #73c0aa, #68bca5);
  box-shadow: 0 5px 15px rgba(72, 69, 69, 0.05);
}

.pickup_slide .title {
  display: inline-block;
  position: relative;
  padding: 0 16px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
}

.pickup_slide .title:before, .pickup_slide .title:after {
  display: block;
  position: absolute;
  bottom: 7px;
  width: 1px;
  height: 12px;
  background-color: #fff;
  content: "";
}

.pickup_slide .title:before {
  left: 0;
  transform: rotate(-30deg);
}

.pickup_slide .title:after {
  right: 0;
  transform: rotate(30deg);
}

.pickup_slide .pickup_js_box {
  display: none;
}

.pickup_slide .pickup_js_box.slick-initialized {
  display: block;
}

.pickup_slide a {
  width: calc(100% - 40px);
  margin: 0 auto;
}

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

.pickup_slide .img_wrap {
  margin: 0 auto 10px;
  border-radius: 8px;
  background-color: #fff;
}

.pickup_slide .img_inner {
  position: relative;
  overflow: hidden;
  width: 70%;
  height: 100%;
  margin: 0 auto;
}

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

.pickup_slide .img_inner:after {
  content: '';
  clear: both;
  display: block;
}

.pickup_slide .img_inner img {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  transition: all 0.3s ease;
  transform: translate(0, -50%);
}

.pickup_slide .text_wrap {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
}

.pickup_slide .slide_dot_nav {
  height: 6px;
}

.pickup_slide .slide_dot_nav li {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 3px;
}

.pickup_slide .slide_dot_nav li button {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-indent: -99999px;
  border-radius: 50%;
  background-color: #AED8CA;
}

.pickup_slide .slide_dot_nav li.slick-active button {
  background-color: #fff;
}

@media screen and (min-width: 1000px) {
  .pickup_slide {
    position: absolute;
    right: 2%;
    bottom: 20%;
    width: 210px;
    padding: 14px 0 20px;
  }
  .pickup_slide .title {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
  .pickup_slide a {
    transition: all 0.3s ease;
  }
  .pickup_slide a:hover {
    opacity: 0.8;
  }
  .pickup_slide .img_wrap {
    height: 80px;
  }
}

@media screen and (max-width: 999px) {
  .pickup_slide {
    width: calc(100% - 50px);
    margin: 0 auto 40px;
    padding: 20px 0;
  }
  .pickup_slide .title {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .pickup_slide .img_wrap {
    width: 80%;
    height: 120px;
  }
  .pickup_slide .img_inner {
    max-width: 150px;
  }
}

.news_slide {
  background-color: #fff;
}

.news_slide .news_slide_title {
  color: #01bcc4;
  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 #01bcc4;
  border-right: 1px solid #01bcc4;
  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: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    padding: 24px 30px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 5px 25px rgba(72, 69, 69, 0.05);
  }
  .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;
}

.anchor{
    padding-top: 80px;
    margin-top: -80px;
}
@media screen and (max-width: 999px) {
  .anchor{
    padding-top: 50px;
    margin-top: -50px;
  }
}

/*------------------------------------------------------------------------
 TOPバナー
-------------------------------------------------------------------------*/
.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);
  }
}*/