@charset "UTF-8";
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

table {
  width: 100%;
  background: none;
  border: none;
  box-shadow: none;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
  font-size: 62.5%;
}

body {
  margin: auto;
  width: auto;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  letter-spacing: 0.05em;
}

.pc_only {
  display: block;
}
@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block !important;
  }
}

.c-to-l {
  text-align: center;
}
@media (max-width: 768px) {
  .c-to-l {
    text-align: left;
  }
}

a {
  color: #333;
}

body:not(.page-id-10) .grecaptcha-badge {
  visibility: hidden !important;
}

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main_width {
  max-width: 1900px;
  width: 96%;
  margin: auto;
}
@media (max-width: 1440px) {
  .main_width {
    width: calc(100% - 100px);
  }
}
@media (max-width: 768px) {
  .main_width {
    width: calc(100% - 60px);
  }
}
.main_width.w900 {
  max-width: 900px;
}
.main_width.w1200 {
  max-width: 1200px;
}
.main_width.w1500 {
  max-width: 1500px;
}
.main_width.w_margen {
  width: calc(100% - 100px);
}
.main_width .main_width {
  width: 100%;
}

/*=============================================*/
/*  layout                               */
/*=============================================*/
@media (max-width: 1550px) {
  .main {
    margin-top: 87px;
  }
}
@media (max-width: 768px) {
  .main {
    margin-top: 80px;
  }
}

/*=============================================*/
/*  common parts                               */
/*=============================================*/
.fixed_btn {
  display: none;
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1000;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .fixed_btn {
    bottom: 0;
    top: auto;
    transform: translateY(0);
    width: 100%;
  }
}
.fixed_btn .btn {
  display: block;
  padding: 45px 10px 15px 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-size: 100%;
  background-position: right center;
  transition: all 0.3s;
}
.fixed_btn .btn:hover {
  background-position: top center;
  background-size: 200%;
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .fixed_btn .btn {
    padding: 15px 20px 15px 40px;
    text-align: center;
  }
  .fixed_btn .btn:hover {
    opacity: 1;
  }
}
.fixed_btn .btn span {
  position: relative;
  display: inline-block;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media (max-width: 1024px) {
  .fixed_btn .btn span {
    writing-mode: unset;
    text-orientation: unset;
  }
}
.fixed_btn .btn span::before {
  position: absolute;
  left: 50%;
  top: -30px;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../img/ico/ico-mail-white.svg) no-repeat center/contain;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .fixed_btn .btn span::before {
    left: -30px;
    top: 50%;
    width: 23px;
    height: 23px;
    transform: translateY(-50%);
  }
}

.scrolled_top {
  display: none;
  align-items: flex-end;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 80px;
  height: 80px;
  border: 2px solid #2f9f8a;
  z-index: 1001;
}
@media (max-width: 1024px) {
  .scrolled_top {
    bottom: 70px;
    width: 50px;
    height: 50px;
  }
}
.scrolled_top a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  margin: auto;
  padding-bottom: 10px;
  background-color: #fff;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .scrolled_top a {
    font-size: 1.3rem;
    padding-bottom: 0;
  }
}
.scrolled_top a::before {
  position: absolute;
  left: 50%;
  top: 20px;
  content: "";
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom: 15px solid #2f9f8a;
  border-top: 0;
  transform: translateX(-50%);
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .scrolled_top a::before {
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #2f9f8a;
    border-top: 0;
    top: 10px;
  }
}
@media (min-width: 1024px) {
  .scrolled_top a:hover {
    background-color: #2f9f8a;
    color: #fff;
  }
  .scrolled_top a:hover::before {
    border-bottom: 15px solid #fff;
  }
}

/***************************************/
/** fv */
/***************************************/
.top_fv_block .fv_wrapper {
  position: relative;
}
.top_fv_block .img .forpc {
  display: block;
}
@media (max-width: 1024px) {
  .top_fv_block .img .forpc {
    display: none;
  }
}
.top_fv_block .img .forsp {
  display: none;
}
@media (max-width: 1024px) {
  .top_fv_block .img .forsp {
    display: block;
    width: 100%;
  }
}
.top_fv_block .fv_text {
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .top_fv_block .fv_text {
    top: 55%;
    bottom: 15%;
    left: 20px;
    transform: translateY(0);
  }
}
.top_fv_block .fv_text .description {
  font-size: 3vw;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .top_fv_block .fv_text .description {
    font-size: 5vw;
  }
}
.top_fv_block .fv_text .description .lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: inherit;
}
.top_fv_block .fv_text .title {
  line-height: 1.4;
  font-size: 4.5vw;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .top_fv_block .fv_text .title {
    font-size: 7vw;
  }
}
.top_fv_block .fv_text .title .lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: inherit;
}
.top_fv_block .fv_btn {
  max-width: 400px;
  width: 83%;
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .top_fv_block .fv_btn {
    max-width: 350px;
  }
}
@media (max-width: 1024px) {
  .top_fv_block .fv_btn {
    max-width: 380px;
  }
}
@media (max-width: 768px) {
  .top_fv_block .fv_btn {
    max-width: 350px;
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .top_fv_block .fv_btn {
    max-width: 300px;
  }
}
.top_fv_block .fv_btn .btn {
  display: block;
  padding: 20px 20px 20px 30px;
  border: 2px solid #fff;
  transition: all 0.3s;
}
.top_fv_block .fv_btn .btn:hover {
  filter: brightness(1.1);
}
@media (max-width: 1200px) {
  .top_fv_block .fv_btn .btn {
    padding-left: 20px;
  }
}
.top_fv_block .fv_btn .btn span {
  position: relative;
  display: inline-block;
  padding-left: 2em;
  line-height: 1;
  font-size: clamp(1.6rem, 1.5vw, 2.5rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .top_fv_block .fv_btn .btn span {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
  }
}
.top_fv_block .fv_btn .btn span::before {
  position: absolute;
  left: 0;
  top: 52%;
  content: "";
  min-width: 25px;
  width: 2vw;
  height: 25px;
  background: url(../img/ico/ico-mail-white.svg) no-repeat center/contain;
  transform: translateY(-50%);
}

/********************************************/
/* @top appeal */
/********************************************/
.top_appeal_block {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .top_appeal_block {
    padding: 60px 0;
  }
}
.top_appeal_block .description {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .top_appeal_block .description {
    margin-bottom: 30px;
  }
}
.top_appeal_block .description p {
  font-size: clamp(1.8rem, 1.9vw, 2.3rem);
  font-weight: 500;
  line-height: 2;
}
.top_appeal_block .appeal_btn .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 5px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, rgb(47, 159, 138) 0%, rgb(15, 106, 130) 100%);
  background-color: #e0f1ed;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .top_appeal_block .appeal_btn .btn {
    flex-direction: column;
    border-image-source: linear-gradient(180deg, rgb(47, 159, 138) 0%, rgb(15, 106, 130) 100%);
  }
}
.top_appeal_block .appeal_btn .btn:hover {
  opacity: 0.8;
}
.top_appeal_block .appeal_btn .text {
  display: block;
  padding: 25px 80px;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  flex: 1;
}
@media (max-width: 768px) {
  .top_appeal_block .appeal_btn .text {
    padding: 25px 10px;
    line-height: 1.8;
  }
}
.top_appeal_block .appeal_btn .text .color-primary {
  border-bottom: 2px solid #2f9f8a;
  padding-bottom: 2px;
  font-size: clamp(2.8rem, 2.6vw, 3.5rem);
}
.top_appeal_block .appeal_btn .text .color-primary .lato {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.top_appeal_block .appeal_btn .arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 20px;
  background: linear-gradient(120deg, rgb(15, 117, 98) 0%, rgb(15, 106, 130) 100%);
  text-align: center;
}
@media (max-width: 768px) {
  .top_appeal_block .appeal_btn .arrow {
    display: block;
    width: 100%;
    padding: 15px 10px;
    background: linear-gradient(180deg, rgb(15, 117, 98) 0%, rgb(15, 106, 130) 100%);
  }
}
.top_appeal_block .appeal_btn .arrow span {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 2.6vw, 2.7rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
.top_appeal_block .appeal_btn .arrow span::after {
  position: absolute;
  left: 50%;
  bottom: -23px;
  content: "";
  width: 30px;
  height: 20px;
  background: url(../img/ico/ico-arrow-white.svg) no-repeat center/contain;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .top_appeal_block .appeal_btn .arrow span::after {
    left: auto;
    right: -40px;
    top: 50%;
    width: 25px;
    transform: translate(0, -50%);
  }
}

/********************************************/
/* @top reasons */
/********************************************/
.top_reasons_block .bg-color {
  padding: 80px 0;
  background-color: #e0f1ed;
}
@media (max-width: 768px) {
  .top_reasons_block .bg-color {
    padding-top: 30px;
  }
}
.top_reasons_block .main_title {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .top_reasons_block .main_title {
    margin-bottom: 15px;
  }
}
.top_reasons_block .main_title .sub {
  font-size: clamp(1.8rem, 3.3vw, 4rem);
  font-weight: 700;
  line-height: 1.5;
}
.top_reasons_block .main_title .sub .lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: inherit;
}
.top_reasons_block .main_title p {
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 700;
}
.top_reasons_block .main_title p .lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: inherit;
}

.top_reasons_block .check_box {
  position: relative;
  border: 4px solid #c6c6c6;
  padding: 25px 30px;
  background-color: #fff;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .top_reasons_block .check_box {
    padding: 10px 20px;
    margin-bottom: 60px;
  }
}
.top_reasons_block .check_box::after {
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  content: "";
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 30px solid #2f9f8a;
  border-bottom: 0;
}
@media (max-width: 768px) {
  .top_reasons_block .check_box::after {
    bottom: -45px;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    border-top: 20px solid #2f9f8a;
    border-bottom: 0;
  }
}
.top_reasons_block .check_box .item {
  position: relative;
  padding-left: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px dotted;
  border-bottom: 1px dotted;
  border-image: repeating-linear-gradient(to right, #c6c6c6 0 2px, transparent 1px 6px) 1;
  font-size: clamp(1.6rem, 2.1vw, 2.5rem);
  font-weight: 500;
}
@media (max-width: 768px) {
  .top_reasons_block .check_box .item {
    padding-left: 30px;
  }
}
.top_reasons_block .check_box .item:first-child {
  border-top: none;
}
.top_reasons_block .check_box .item:last-child {
  border-bottom: none;
}
.top_reasons_block .check_box .item::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 38px;
  height: 30px;
  background: url(../img/ico/ico-check-mark.svg) no-repeat center/contain;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .top_reasons_block .check_box .item::before {
    width: 20px;
    height: 20px;
  }
}
.top_reasons_block .description {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .top_reasons_block .description {
    margin-bottom: 30px;
  }
}
.top_reasons_block .description p {
  line-height: 1.5;
  font-size: clamp(1.8rem, 2.9vw, 2.8rem);
  font-weight: 700;
}
.top_reasons_block .description p .lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: inherit;
}
.top_reasons_block .description strong {
  font-size: clamp(2.3rem, 3.7vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.top_reasons_block .description strong .lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: inherit;
}
.top_reasons_block .description strong small {
  font-size: clamp(2rem, 2.8vw, 3.5rem);
}

.top_reasons_block .btn_box {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .top_reasons_block .btn_box {
    max-width: 300px;
  }
}
.top_reasons_block .btn_box .btn {
  position: relative;
  display: block;
  padding: 30px 10px;
  line-height: 1;
  background-size: 100%;
  background-position: right center;
  transition: all 1s;
}
.top_reasons_block .btn_box .btn:hover {
  background-position: left center;
  background-size: 200%;
}
@media (max-width: 768px) {
  .top_reasons_block .btn_box .btn {
    padding: 25px 10px;
  }
}
.top_reasons_block .btn_box .btn::after {
  position: absolute;
  right: 20px;
  top: 50%;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .top_reasons_block .btn_box .btn::after {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #fff;
  }
}
.top_reasons_block .btn_box .btn span {
  display: inline-block;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/********************************************/
/* @top flow */
/********************************************/
.top_flow_block {
  padding: 125px 0;
}
@media (max-width: 768px) {
  .top_flow_block {
    padding: 60px 0;
  }
}
.top_flow_block .main_title {
  padding-bottom: 20px;
  text-align: center;
  font-size: clamp(2.5rem, 3.6vw, 4rem);
  font-weight: 700;
  line-height: 1.5;
}
.top_flow_block .main_title .lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: inherit;
}
.top_flow_block .description {
  margin-bottom: 60px;
}
.top_flow_block .description p {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
}

.top_flow_block .block {
  position: relative;
}
.top_flow_block .block:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .top_flow_block .block:not(:last-child) {
    margin-bottom: 50px;
  }
}
.top_flow_block .block:not(:last-child)::after {
  position: absolute;
  left: 50%;
  bottom: -70px;
  transform: translateX(-50%);
  content: "";
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 30px solid #2f9f8a;
  border-bottom: 0;
}
@media (max-width: 768px) {
  .top_flow_block .block:not(:last-child)::after {
    bottom: -35px;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    border-top: 15px solid #2f9f8a;
    border-bottom: 0;
  }
}

.top_flow_block .lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: inherit;
}
.top_flow_block .flow_wrapper {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .top_flow_block .flow_wrapper {
    margin-bottom: 60px;
  }
}
.top_flow_block .flow_wrapper .one {
  padding: 15px 20px;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
}
.top_flow_block .flow_wrapper .two, .top_flow_block .flow_wrapper .three {
  padding: 20px;
}
@media (max-width: 768px) {
  .top_flow_block .flow_wrapper .two, .top_flow_block .flow_wrapper .three {
    padding-top: 15px;
  }
}
.top_flow_block .flow_wrapper .two .inner_title, .top_flow_block .flow_wrapper .three .inner_title {
  padding-bottom: 10px;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
}
.top_flow_block .flow_wrapper .two .sub_title, .top_flow_block .flow_wrapper .three .sub_title {
  display: block;
  padding: 10px;
  font-size: clamp(1.7rem, 2.3vw, 1.8rem);
  font-weight: 700;
  background-color: #e0f1ed;
}
@media (max-width: 768px) {
  .top_flow_block .flow_wrapper .two .sub_title, .top_flow_block .flow_wrapper .three .sub_title {
    padding: 5px;
  }
}
.top_flow_block .flow_wrapper .two .text, .top_flow_block .flow_wrapper .three .text {
  display: block;
  padding: 15px 30px;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .top_flow_block .flow_wrapper .two .text, .top_flow_block .flow_wrapper .three .text {
    padding: 10px 20px;
  }
}

.top_flow_block .flow_btn .btn {
  position: relative;
  display: flex;
  align-items: center;
  border: 3px solid #2f9f8a;
  transition: all 0.3s;
}
@media (max-width: 580px) {
  .top_flow_block .flow_btn .btn {
    flex-direction: column;
    border: 6px solid #2f9f8a;
  }
}
.top_flow_block .flow_btn .btn::before {
  position: absolute;
  right: 27px;
  top: 50%;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 768px) {
  .top_flow_block .flow_btn .btn::before {
    right: 5px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fff;
  }
}
.top_flow_block .flow_btn .btn::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 70px;
  height: 100%;
  background-color: #2f9f8a;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .top_flow_block .flow_btn .btn::after {
    top: auto;
    bottom: 0;
    width: 20px;
    height: 100%;
  }
}
.top_flow_block .flow_btn .btn:hover {
  border-color: #0f6a82;
}
.top_flow_block .flow_btn .btn:hover::after {
  background-color: #0f6a82;
}
.top_flow_block .flow_btn .btn:hover .title {
  color: #0f6a82;
}
.top_flow_block .flow_btn .btn .img {
  max-width: 200px;
}
.top_flow_block .flow_btn .btn .img img {
  width: 100%;
}
@media (max-width: 580px) {
  .top_flow_block .flow_btn .btn .img {
    max-width: 100%;
    width: 100%;
  }
  .top_flow_block .flow_btn .btn .img img {
    width: 100%;
  }
}
.top_flow_block .flow_btn .btn .text_area {
  padding: 30px 80px 35px 40px;
}
@media (max-width: 768px) {
  .top_flow_block .flow_btn .btn .text_area {
    padding: 5px 30px 5px 10px;
  }
}
.top_flow_block .flow_btn .btn .text_area .title {
  font-size: clamp(2.1rem, 3.4vw, 3.6rem);
  font-weight: 700;
  transition: all 0.3s;
}
.top_flow_block .flow_btn .btn .text_area .text {
  font-size: 1.6rem;
}

/********************************************/
/* @top consultant */
/********************************************/
.top_consultant_block .bg-color {
  padding: 100px 0;
  background-color: #e0f1ed;
}
@media (max-width: 768px) {
  .top_consultant_block .bg-color {
    padding: 60px 0;
  }
}
.top_consultant_block .main_title {
  text-align: center;
  margin-bottom: 30px;
  font-size: clamp(2.8rem, 3.6vw, 4rem);
  font-weight: 700;
}
@media (max-width: 768px) {
  .top_consultant_block .main_title {
    margin-bottom: 10px;
  }
}
.top_consultant_block .description {
  margin-bottom: 30px;
}
.top_consultant_block .description p {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
}

.top_consultant_block .record {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .top_consultant_block .record {
    margin-bottom: 40px;
  }
}
.top_consultant_block .record .inner_title {
  padding-bottom: 15px;
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: 700;
  text-align: center;
}
.top_consultant_block .number {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 0;
  background-color: #fff;
  border: 2px solid #2f9f8a;
}
@media (max-width: 768px) {
  .top_consultant_block .number {
    padding: 0 20px;
  }
}
.top_consultant_block .number .block {
  width: 50%;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .top_consultant_block .number .block {
    width: 100%;
    padding: 10px 0;
  }
}
.top_consultant_block .number .block:nth-of-type(1) {
  border-right: 1px solid #2f9f8a;
}
@media (max-width: 768px) {
  .top_consultant_block .number .block:nth-of-type(1) {
    border-right: none;
    border-bottom: 1px solid #2f9f8a;
  }
}
.top_consultant_block .number p {
  text-align: center;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
}
.top_consultant_block .number .num {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  font-size: clamp(4.5rem, 4.5vw, 6rem);
  color: #2f9f8a;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.top_consultant_block .number .num small {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
}

.top_consultant_block .representative {
  display: flex;
  flex-wrap: wrap;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  column-gap: 40px;
  row-gap: 30px;
}
@media (max-width: 768px) {
  .top_consultant_block .representative {
    margin-bottom: 60px;
  }
}
.top_consultant_block .representative .img {
  width: 25%;
}
@media (max-width: 768px) {
  .top_consultant_block .representative .img {
    width: 100%;
    max-width: 300px;
    min-width: 250px;
    margin: auto;
  }
}
.top_consultant_block .representative .text_area {
  width: calc(75% - 40px);
}
@media (max-width: 768px) {
  .top_consultant_block .representative .text_area {
    width: 100%;
  }
}

.top_consultant_block .representative .text_area .name {
  border-bottom: 1px solid #2f9f8a;
  margin-bottom: 20px;
}
.top_consultant_block .representative .text_area .name .sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.top_consultant_block .representative .text_area .name p {
  font-size: 2.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .top_consultant_block .representative .text_area .item img {
    margin: auto;
  }
}

.top_consultant_block .staff_list {
  margin-bottom: 60px;
}
.top_consultant_block .staff_list .title {
  font-size: clamp(2.2rem, 2.3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 40px;
}
.top_consultant_block .staff_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.top_consultant_block .staff_list ul li {
  width: calc((100% - 60px) / 3);
}
@media (max-width: 768px) {
  .top_consultant_block .staff_list ul li {
    width: calc((100% - 30px) / 2);
  }
}
.top_consultant_block .staff_list ul li .img {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.top_consultant_block .staff_list ul li .caption small {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}
.top_consultant_block .staff_list ul li .caption .name {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.top_consultant_block .consultant_btn {
  max-width: 520px;
  margin: auto;
}
.top_consultant_block .consultant_btn .text {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #2f9f8a;
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
}
.top_consultant_block .consultant_btn .text::before {
  position: absolute;
  left: 50%;
  bottom: -9px;
  content: "";
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 9px solid #2f9f8a;
  border-bottom: 0;
  transform: translateX(-50%);
}
.top_consultant_block .consultant_btn .btn {
  position: relative;
  display: block;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 80px;
  font-size: clamp(1.6rem, 2.3vw, 2.5rem);
  color: #fff;
  text-align: center;
  font-weight: 500;
  background-size: 100%;
  background-position: right center;
  transition: all 1s;
}
@media (max-width: 768px) {
  .top_consultant_block .consultant_btn .btn {
    padding: 10px 40px;
  }
}
.top_consultant_block .consultant_btn .btn:hover {
  background-position: left center;
  background-size: 200%;
}
.top_consultant_block .consultant_btn .btn::after {
  position: absolute;
  right: 27px;
  top: 50%;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .top_consultant_block .consultant_btn .btn::after {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #fff;
  }
}

/********************************************/
/* @top case */
/********************************************/
.top_case_block {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .top_case_block {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.top_case_block .main_title {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(2.8rem, 3.6vw, 4rem);
  font-weight: 700;
}
@media (max-width: 768px) {
  .top_case_block .main_title {
    margin-bottom: 20px;
  }
}

.top_case_block .slide_wrapper {
  position: relative;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
}
.top_case_block .slide_wrapper .swiper {
  max-width: 1600px;
  width: 92%;
}
.top_case_block .slide_wrapper .swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.top_case_block .slide_wrapper a {
  position: relative;
  display: block;
  transition: all 0.3s;
  height: 100%;
}
.top_case_block .slide_wrapper a::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 144px;
  height: 32px;
  content: "詳しく見る";
  padding-right: 20px;
  background-color: #fff;
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  text-align: center;
  font-weight: 500;
}
.top_case_block .slide_wrapper a::after {
  position: absolute;
  right: 20px;
  bottom: 16px;
  content: "";
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 6px solid #333;
  border-right: 0;
  transform: translateY(50%);
}
.top_case_block .slide_wrapper a:hover {
  opacity: 0.8;
}
.top_case_block .slide_wrapper .contents {
  padding: 30px 30px 60px 30px;
  height: 100%;
}
.top_case_block .slide_wrapper .contents .post_title {
  display: block;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #fff;
}
.top_case_block .slide_wrapper .contents .details {
  padding: 10px 15px;
  background-color: #fff;
}
.top_case_block .slide_wrapper .contents .details .support {
  display: flex;
  gap: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #2f9f8a;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .top_case_block .slide_wrapper .contents .details .support {
    flex-wrap: wrap;
    row-gap: 0;
  }
}
.top_case_block .slide_wrapper .contents .details .support .tag {
  display: block;
  width: 20%;
}
.top_case_block .slide_wrapper .contents .details .support p {
  display: block;
  width: calc(80% - 15px);
}
@media (max-width: 1024px) {
  .top_case_block .slide_wrapper .contents .details .support p {
    width: 100%;
  }
}
.top_case_block .slide_wrapper .contents .details .c_name {
  display: flex;
  gap: 12px;
  padding-top: 10px;
}
.top_case_block .slide_wrapper .contents .details .c_name .icon {
  width: 20%;
}
.top_case_block .slide_wrapper .contents .details .c_name img {
  display: block;
  width: 50px;
  height: 50px;
  margin: auto;
}
.top_case_block .slide_wrapper .contents .details .box {
  width: calc(80% - 12px);
}
.top_case_block .slide_wrapper .contents .details .box .addr, .top_case_block .slide_wrapper .contents .details .box .industry {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.45;
}
.top_case_block .slide_wrapper .btn_container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 99;
}
@media (max-width: 1024px) {
  .top_case_block .slide_wrapper .btn_container {
    max-width: 150px;
    top: 120%;
    bottom: -20%;
    transform: translateX(-50%);
  }
}
.top_case_block .slide_wrapper .swiper-button-prev::after,
.top_case_block .slide_wrapper .swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
  cursor: pointer;
}
.top_case_block .slide_wrapper .swiper-button-prev::after {
  left: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  background: url(../img/ico/swiper-prev.svg) no-repeat center/contain;
  transform: translateY(-50%);
  z-index: 99;
}
.top_case_block .slide_wrapper .swiper-button-next::after {
  right: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  background: url(../img/ico/swiper-next.svg) no-repeat center/contain;
  transform: translateY(-50%);
  z-index: 99;
}

.top_case_block .consultant_btn {
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .top_case_block .consultant_btn {
    margin-top: 120px;
  }
}
.top_case_block .consultant_btn .btn {
  position: relative;
  display: block;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 80px;
  font-size: clamp(1.6rem, 2.3vw, 2.5rem);
  color: #fff;
  text-align: center;
  font-weight: 500;
  background-size: 100%;
  background-position: right center;
  transition: all 1s;
}
@media (max-width: 768px) {
  .top_case_block .consultant_btn .btn {
    padding: 15px 40px;
  }
}
.top_case_block .consultant_btn .btn:hover {
  background-position: left center;
  background-size: 200%;
}
.top_case_block .consultant_btn .btn::after {
  position: absolute;
  right: 27px;
  top: 50%;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .top_case_block .consultant_btn .btn::after {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #fff;
  }
}

/********************************************/
/* @top custom_post */
/********************************************/
.custom_post_block .bg-color {
  padding: 100px 0;
  background-color: #e0f1ed;
}
@media (max-width: 768px) {
  .custom_post_block .bg-color {
    padding: 60px 0;
  }
}
.custom_post_block .main_title {
  text-align: center;
  margin-bottom: 30px;
  font-size: clamp(2.8rem, 3.6vw, 4rem);
  font-weight: 700;
}
@media (max-width: 768px) {
  .custom_post_block .main_title {
    margin-bottom: 10px;
  }
}
.custom_post_block .description p {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 480px) {
  .custom_post_block .description p {
    text-align: left;
  }
}
.custom_post_block .common_title {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid #2f9f8a;
  width: 230px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  font-weight: 700;
  font-size: clamp(2.2rem, 2.3vw, 2.4rem);
}
.custom_post_block .common_title::before {
  position: absolute;
  left: 50%;
  bottom: -9px;
  content: "";
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 9px solid #2f9f8a;
  border-bottom: 0;
  transform: translateX(-50%);
}

.custom_post_block .recommend {
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .custom_post_block .recommend {
    margin-bottom: 70px;
  }
}

.custom_post_block .recommend_list .item {
  border-top: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
}
.custom_post_block .recommend_list .item a {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 30px;
  padding: 25px 0;
  transition: all 0.3s;
}
.custom_post_block .recommend_list .item a:hover {
  opacity: 0.8;
}
.custom_post_block .recommend_list .item a:hover .img img {
  transform: scale(1.1);
}
.custom_post_block .recommend_list .item .img {
  width: 25%;
  overflow: hidden;
}
.custom_post_block .recommend_list .item .img.pc {
  display: block;
}
@media (max-width: 768px) {
  .custom_post_block .recommend_list .item .img.pc {
    display: none;
  }
}
.custom_post_block .recommend_list .item .img.sp {
  display: none;
}
@media (max-width: 768px) {
  .custom_post_block .recommend_list .item .img.sp {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .custom_post_block .recommend_list .item .img {
    width: 100%;
    column-gap: 20px;
  }
  .custom_post_block .recommend_list .item .img img {
    display: block;
    width: 35%;
  }
  .custom_post_block .recommend_list .item .img .title {
    width: calc(65% - 20px);
  }
}
.custom_post_block .recommend_list .item .img img {
  transform: scale(1);
  transition: all 0.3s;
}
.custom_post_block .recommend_list .item .text_area {
  width: calc(75% - 30px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .custom_post_block .recommend_list .item .text_area {
    width: 100%;
  }
}
.custom_post_block .recommend_list .item .title {
  font-size: 2.2rem;
  font-weight: 700;
  padding-bottom: 10px;
}
.custom_post_block .recommend_list .item .description {
  display: block;
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.custom_post_block .recommend_list .item .btn {
  max-width: 180px;
  margin-left: auto;
  margin-top: auto;
}
.custom_post_block .recommend_list .item .btn span {
  position: relative;
  display: block;
  padding: 10px 30px;
  color: #fff;
  background-position: right center;
  background-size: 100%;
  transition: all 1s;
}
.custom_post_block .recommend_list .item .btn span:hover {
  background-size: 200%;
  background-position: left center;
}
.custom_post_block .recommend_list .item .btn span::after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  border-right: 0;
  transform: translateY(-50%);
}

.custom_post_block .roop_column {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 30px;
}
.custom_post_block .roop_column .post {
  width: calc((100% - 45px) / 4);
}
@media (max-width: 768px) {
  .custom_post_block .roop_column .post {
    width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 480px) {
  .custom_post_block .roop_column .post {
    width: 100%;
  }
}
.custom_post_block .roop_column .post a {
  display: block;
  transition: all 0.3s;
}
.custom_post_block .roop_column .post a:hover {
  color: #2f9f8a;
}
.custom_post_block .roop_column .post a:hover img {
  transform: scale(1.1);
}

.custom_post_block .roop_column {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .custom_post_block .roop_column {
    margin-bottom: 50px;
  }
}
.custom_post_block .roop_column .img {
  position: relative;
  padding-top: 74%;
  overflow: hidden;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .custom_post_block .roop_column .img {
    padding-top: unset;
    margin-bottom: 0;
  }
}
.custom_post_block .roop_column .img img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .custom_post_block .roop_column .img img {
    width: auto;
    height: auto;
    object-fit: unset;
    position: static;
  }
}
.custom_post_block .roop_column .post_details .date {
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.custom_post_block .roop_column .post_details .cats .cat {
  display: inline-block;
  padding: 2px 10px;
  font-size: 1.4rem;
  color: #fff;
  background-color: #2f9f8a;
}
@media (max-width: 768px) {
  .custom_post_block .roop_column .post_details .cats .cat {
    font-size: 1.2rem;
  }
}
.custom_post_block .roop_column .box {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-top: 5px;
}
.custom_post_block .roop_column .post_title {
  padding-top: 15px;
  display: block;
  font-size: clamp(1.3rem, 1.9vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .custom_post_block .roop_column .post_title {
    padding-top: 10px;
  }
}

.custom_post_block #column .column_btn .btn {
  position: relative;
  display: block;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 80px;
  font-size: clamp(1.6rem, 2.3vw, 2.5rem);
  color: #fff;
  text-align: center;
  font-weight: 500;
  background-size: 100%;
  background-position: right center;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .custom_post_block #column .column_btn .btn {
    padding: 15px 40px;
  }
}
.custom_post_block #column .column_btn .btn:hover {
  background-position: left center;
  background-size: 200%;
  filter: brightness(1.1);
}
.custom_post_block #column .column_btn .btn::after {
  position: absolute;
  right: 27px;
  top: 50%;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .custom_post_block #column .column_btn .btn::after {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #fff;
  }
}

/********************************************/
/* @top news */
/********************************************/
.top_news_block {
  padding: 125px 0;
}
@media (max-width: 768px) {
  .top_news_block {
    padding: 60px 0;
  }
}
.top_news_block .main_title {
  text-align: center;
  margin-bottom: 30px;
  font-size: clamp(2.8rem, 3.6vw, 4rem);
  font-weight: 700;
}
@media (max-width: 768px) {
  .top_news_block .main_title {
    margin-bottom: 10px;
  }
}
.top_news_block .news_list {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .top_news_block .news_list {
    margin-bottom: 50px;
  }
}
.top_news_block .news_list .post {
  border-top: 1px solid #c6c6c6;
}
.top_news_block .news_list .post:last-child {
  border-bottom: 1px solid #c6c6c6;
}
.top_news_block .news_list .post a, .top_news_block .news_list .post .no_link {
  display: block;
  padding: 20px 0;
  transition: all 0.3s;
}
.top_news_block .news_list .post a:hover, .top_news_block .news_list .post .no_link:hover {
  opacity: 0.7;
  color: #2f9f8a;
}
.top_news_block .news_list .post .no_link:hover {
  opacity: 1;
  color: inherit;
}
.top_news_block .news_list .post .date {
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
}
.top_news_block .news_list .post .post_title {
  font-size: clamp(1.6rem, 1.9vw, 2rem);
  font-weight: 700;
}
.top_news_block .news_btn .btn {
  position: relative;
  display: block;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 80px;
  font-size: clamp(1.6rem, 2.3vw, 2.5rem);
  color: #fff;
  text-align: center;
  font-weight: 500;
  background-size: 100%;
  background-position: right center;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .top_news_block .news_btn .btn {
    padding: 15px 40px;
  }
}
.top_news_block .news_btn .btn:hover {
  background-position: left center;
  background-size: 200%;
  filter: brightness(1.1);
}
.top_news_block .news_btn .btn::after {
  position: absolute;
  right: 27px;
  top: 50%;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .top_news_block .news_btn .btn::after {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #fff;
  }
}/*# sourceMappingURL=style.css.map */