@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --white-color: #FFF;
  --primary-color: #02517F;
  --accsent-color: #E98842;
  --sub-color01: #024F5D;
  --sub-color02: #1798C0;
  --sub-color03: #C7EAFC;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

body {
  color: var(--primary-color);
  background-color: #FCFCFC;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */
@media screen and (min-width: 768px) {
  .br-lg {
    display: none;
  }
}

.br-sm {
  display: none;
}
@media screen and (min-width: 1080px) {
  .br-sm {
    display: inline;
  }
}


/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 40px);
}

.l_container {
  max-width: calc(var(--content-width) + 40px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 40px);
}

.l_contents {
  padding: 40px 0;
}

@media screen and (min-width: 1080px) {
  .l_contents {
    padding: 80px 0;
  }
}

.l_header {
  width: 100vw;
  height: auto;
  padding: 5px 10px;
  background: #FCFCFC;
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l_header {
    padding: 10px 15px;
  }
}
@media screen and (min-width: 1080px) {
  .l_header {
    padding: 20px 23px;
  }
}

.l_header-logo {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.l_header-logo_link {
  font-size: 9px;
  font-weight: 100;
  color: #000;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .l_header-logo_link {
    font-size: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .l_header-logo_link {
    font-size: 24px;
  }
}

.l_header-logo_icon {
  width: 76px;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .l_header-logo_icon {
    width: 100px;
    margin-right: 10px;
  }
}
@media screen and (min-width: 1080px) {
  .l_header-logo_icon {
    width: 180px;
    margin-right: 20px;
  }
}

.l_footer {
  width: 100%;
  height: auto;
  background: var(--white-color);
}

.l_footer_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-bottom: 1px solid #B6B5B5;
  margin: 0 16px;
  padding: 20px 0 12px;
}
@media screen and (min-width: 768px) {
  .l_footer_list {
    gap: 65px;
  }
}
@media screen and (min-width: 1080px) {
  .l_footer_list {
    gap: 100px;
  }
}

.l_footer_item {
  font-size: 10px;
  color: var(--sub-color01);
}
@media screen and (min-width: 768px) {
  .l_footer_item {
    font-size: 14px;
  }
}
@media screen and (min-width: 1080px) {
  .l_footer_item {
    font-size: 16px;
  }
}

.l_footer a {
  transition: opacity .3s;
}
.l_footer a:hover{
  opacity:0.7;
}

.l_footer-copyright {
  width: 100%;
  height: auto;
  margin: 8px auto 12px;
  text-align: center;
}

.l_footer-copyright_text {
  font-size: 7px;
  color: var(--sub-color01);
}
@media screen and (min-width: 768px) {
  .l_footer-copyright_text {
    font-size: 10px;
  }
}
@media screen and (min-width: 1080px) {
  .l_footer-copyright_text {
    font-size: 12px;
  }
}

/* ---------- module ---------- */
.m_cta_btn {
  width: 135px;
  height: 34px;
  background-color: var(--accsent-color);
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  transition: opacity .3s;
}
@media screen and (min-width: 768px) {
  .m_cta_btn {
    width: 200px;
    height: 45px;
    border-radius: 5px;
  }
}
@media screen and (min-width: 1080px) {
  .m_cta_btn {
    width: 300px;
    height: 55px;
    border-radius: 8px;
  }
}

.m_cta_btn:hover {
  opacity: 0.7;
}

.m_cta_btn::after {
  content: "";
  width: 98%;
  height: 94%;
  border: 1px solid var(--white-color);
  border-radius: 3px;
  position: absolute;
  top: 2.5%;
  left: 1%;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .m_cta_btn::after {
    border-radius: 5px;
  }
}
@media screen and (min-width: 1080px) {
  .m_cta_btn::after {
    border-radius: 8px;
  }
}

.m_cta_btn-link {
  width: 100%;
  height: 100%;
  font-size: 10px;
  font-weight: bold;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .m_cta_btn-link {
    font-size: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .m_cta_btn-link {
    font-size: 20px;
  }
}

.m_section_title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .m_section_title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1080px) {
  .m_section_title {
    font-size: 36px;
  }
}


/* ---------- top-fv ---------- */
.top_fv {
  width: 100%;
  height: auto;
  max-width: 1440px;
  margin: 0 auto;
  background: #FCFCFC;
}

.top_fv_content {
  width: 100%;
  margin: 0 auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top_fv_content {
    flex-direction: row;
  }
}

.top_fv_img-wrap {
  width: 100%;
  max-width: 344px;
  height: auto;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 768px) {
  .top_fv_img-wrap {
    max-width: 50%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.top_fv_img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.top_fv_cc-wrap {
  width: 100%;
  max-width: 375px;
  height: auto;
  padding: 0 24px;
  margin-top: 27px;
}
@media screen and (min-width: 768px) {
  .top_fv_cc-wrap {
    max-width: 50%;
  }
}

.top_fv_copy {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top_fv_copy {
    font-size: 36px;
  }
}
@media screen and (min-width: 1080px) {
  .top_fv_copy {
    font-size: 40px;
  }
}

.top_fv_subcopy {
  font-size: 14px;
  margin-top: 16px;
}
@media screen and (min-width: 768px){
  .top_fv_subcopy {
    font-size: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .top_fv_subcopy {
    font-size: 20px;
  }
}

.top_fv_cc-img-wrap {
  width: 182px;
  height: auto;
  margin: 27px auto 0;
}
@media screen and (min-width: 768px) {
  .top_fv_cc-img-wrap {
    max-width: 50%;
  }
}
@media screen and (min-width: 1080px) {
  .top_fv_cc-img-wrap {
    width: 344px;
    margin: 27px 100px 0;
  }
}

.top_fv_cc-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- top-worry ---------- */
.top_worry {
  background: linear-gradient(rgba(23, 152, 191) 0%, rgba(161, 216, 252) 100%);
}

.top_worry_title {
   color: var(--white-color);
}

.top_worry_bubbles {
  width: 100%;
  margin-top: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px
}
@media screen and (min-width: 1080px) {
  .top_worry_bubbles {
    margin-top: 57px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 57px 30px;
  }
}

.top_worry_bubble {
  position: relative;
  width: fit-content;
  max-width: min(720px, 100%);
  margin-inline: auto;
  padding: 14px;
  background: var(--white-color);
  border-radius: 100px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .top_worry_bubble {
    padding: 16px 20px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble {
    padding: 18px 24px;
    font-size: 21px;
    font-weight: bold;
    border-radius: 25px;
  }
}

.top_worry_bubble::before,
.top_worry_bubble::after {
  content:"";
  position:absolute;
  background: var(--white-color);
  border-radius:50%;
  z-index: var(--z-index-default);
}

.top_worry_bubble::after {
  width: 24px;
  height: 24px;
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble::after {
    width: 44px;
    height: 44px;
  }
}

.top_worry_bubble:nth-child(1)::after {
  bottom: -10px;
  left: 37px;
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble:nth-child(1)::after {
    left: auto;
    right: 48px;
  }
}

.top_worry_bubble:nth-child(2)::after {
  bottom: -10px;
  right: 37px;
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble:nth-child(2)::after {
    right: auto;
    left: 80px;
  }
}

.top_worry_bubble:nth-child(3)::after {
  bottom: -10px;
  left: 37px;
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble:nth-child(3)::after {
    left: auto;
    right: 140px;
  }
}

.top_worry_bubble:nth-child(4)::after {
  bottom: -10px;
  right: 37px;
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble:nth-child(4)::after {
    right: auto;
    left: 75px;
  }
}

.top_worry_bubble::before {
  width: 10px;
  height: 10px;
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble::before {
    width: 19px;
    height: 19px;
  }
}

.top_worry_bubble:nth-child(1)::before {
  bottom: -30px;
  left: 55px;
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble:nth-child(1)::before {
    bottom: -50px;
    left: auto;
    right: 40px;
  }
}

.top_worry_bubble:nth-child(2)::before {
  bottom: -30px;
  right: 55px;
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble:nth-child(2)::before {
    bottom: -43px;
    right: auto;
    left: 60px;
  }
}

.top_worry_bubble:nth-child(3)::before {
  bottom: -30px;
  left: 55px;
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble:nth-child(3)::before {
    bottom: -50px;
    left: auto;
    right: 135px;
  }
}

.top_worry_bubble:nth-child(4)::before {
  bottom: -30px;
  right: 55px;
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble:nth-child(4)::before {
    bottom: -50px;
    right: auto;
    left: 65px;
  }
}

.top_worry_bubble:nth-child(1){ 
  transform: translateX(-20%);
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble:nth-child(1) {
    transform: translateX(20%);
  }
}

.top_worry_bubble:nth-child(2){ 
  transform: translateX(20%);
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble:nth-child(2) {
    transform: translateX(-20%);
  }
}

.top_worry_bubble:nth-child(3){ 
  transform: translateX(-10%);
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble:nth-child(3) {
    transform: translateX(-15%);
  }
}

.top_worry_bubble:nth-child(4){ 
  transform: translateX(22%);
}
@media screen and (min-width: 1080px) {
  .top_worry_bubble:nth-child(4) {
    transform: translateX(10%);
  }
}

.top_worry_img-wrap {
  width: 140px;
  height: auto;
  margin: 44px auto 0;
}
@media screen and (min-width: 1080px) {
  .top_worry_img-wrap {
    width: 200px;
    margin: 40px auto 0;
  }
}
@media screen and (min-width: 1080px) {
  .top_worry_img-wrap {
    width: 267px;
    margin: 32px auto 0;
  }
}

.top_worry_img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- top-solution ---------- */
.top_solution {
  background: url('../img/青の半円.png') no-repeat bottom / cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_solution {
    background: url('../img/青の半円PC.png') no-repeat bottom / cover;
  }
  
}

.top_solution::before {
  content: "";
  position: absolute;
  width: 192px;
  height: 27px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 27px solid #A0D7FC;
  border-right: 96px solid transparent;
  border-left: 96px solid transparent;
  border-bottom: 0;
}
@media screen and (min-width: 1080px) {
  .top_solution::before {
    width: 416px;
    height: 51px;
    border-top: 51px solid #A0D7FC;
    border-right: 208px solid transparent;
    border-left: 208px solid transparent;
  }
}

.solution_section_title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.solution_title_img-wrap {
  width: 56px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .solution_title_img-wrap {
    width: 96px;
  }
}
@media screen and (min-width: 1080px) {
  .solution_title_img-wrap {
    width: 142px;
  }
}

.solution_title_img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.solution_section_title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: 16px;
}
@media screen and (min-width: 768px) {
  .solution_section_title-wrap {
    margin-left: 24px;
  }
}
@media screen and (min-width: 1080px) {
  .solution_section_title-wrap {
    margin-left: 32px;
  }
}

.solution_section_logo-wrap {
  font-size: 14px;
  color: #000;
  font-weight: 100;
}
@media screen and (min-width: 768px) {
  .solution_section_logo-wrap {
    font-size: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .solution_section_logo-wrap {
    font-size: 28px;
  }
}

.solution_section_logo-img {
  width: 132px;
  height: auto;
  object-fit: cover;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .solution_section_logo-img {
    width: 190px;
  }
}
@media screen and (min-width: 1080px) {
  .solution_section_logo-img {
    width: 253px;
  }
}

.solution_section_text {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .solution_section_text {
    font-size: 22px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .solution_section_text {
    font-size: 30px;
    margin-top: 24px;
  }
}

.top_solution_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 39px auto 47px;
  position: relative;
  z-index: var(--z-index-default);
}
@media screen and (min-width: 768px) {
  .top_solution_content {
    margin: 42px auto 54px;
  }
}
@media screen and (min-width: 1080px) {
  .top_solution_content {
    margin: 45px auto 60px;
  }
}

.top_solution_content::before {
  content: "";
  width: 100%;
  height: calc(100% + 20px);
  background: #F0F2F2;
  border-radius: 10px;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1080px) {
  .top_solution_content::before {
    height: calc(100% + 40px);
    border-radius: 20px;
    top: 40px
  }
}

.top_solution_wrap {
  width: auto;
  height: auto;
  background: var(--sub-color02);
  border-radius: 8px;
  padding: 10px 30px;
}
@media screen and (min-width: 768px) {
  .top_solution_wrap {
    padding: 12px 40px;
    border-radius: 15px;
  }
}
@media screen and (min-width: 1080px) {
  .top_solution_wrap {
    padding: 16px 50px;
    border-radius: 20px;
  }
}

.top_solution_content-text {
  width: 100%;
  height: 100%;
  color: var(--white-color);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1080px) {
  .top_solution_wrap {
    font-size: 30px;
  }
}

.top_solution_text-wrap {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.top_solution_text {
  font-size: 14px;
  color: var(--sub-color01);
  text-align: center;
  margin-top: 29px;
}
@media screen and (min-width: 768px) {
  .top_solution_text {
    font-size: 16px;
  }
}

.top_solution_text-highlight {
  color: #0494C1;
  font-weight: bold;
}

.top_solution_text__large {
  font-size: 18px;
  color: var(--sub-color01);
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top_solution_text__large {
    font-size: 21px;
  }
}

.top_solution_img-wrap {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 27px;
}
@media screen and (min-width: 768px) {
  .top_solution_img-wrap {
    gap: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .top_solution_img-wrap {
    gap: 24px;
  }
}

.top_solution_img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 100px;
}
@media screen and (min-width: 768px) {
  .top_solution_img {
    width: 120px;
    height: 120px;
  }
}
@media screen and (min-width: 1080px) {
  .top_solution_img {
    width: 158px;
    height: 158px;
  }
  
}

/* ---------- top-reason ---------- */
.top_reason {
  background: var(--sub-color03);
  border-radius: 50px;
  box-shadow: 3px 3px 6px rgb(46, 55, 104, 0.35);
  position: relative;
  z-index: var(--z-index-default);
}

.top_reason_list {
  width: 100%;
  margin: 63px auto 0; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 64px;
  flex-shrink: 0;
}
@media screen and (min-width: 786px) {
  .top_reason_list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 64px 30px;
  }
}

.top_reason_item {
  width: 100%;
  max-width: 343px;
  height: auto;
  border: 2px solid var(--sub-color02);
  border-radius: 30px;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  padding: 0 24px 40px;
  gap: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_reason_item {
    width: calc((100% - 60px) / 2);
    height: 380px;
    gap: 32px;
  }
}
@media screen and (min-width: 1080px) {
  .top_reason_item {
    width: calc((100% - 60px) / 3);
    height: 430px;
    gap: 40px;
  }
}

.top_reason_num-wrap {
  width: 60px;
  height: 30px;
  background: var(--white-color);
  border: 2px solid var(--sub-color02);
  border-bottom: transparent;
  border-radius: 60px 60px 0 0;
  padding: 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1080px) {
  .top_reason_num-wrap {
    width: 90px;
    height: 45px;
    padding: 35px auto;
    top: -45px;
  }
}

.top_reason_num {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-top: 40px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .top_reason_num {
    font-size: 43px;
    margin-top: 60px;
  }
}

.top_reason_num::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: url("../img/REASON_@2x.png") no-repeat center top / cover;
  width: 36px;
  height: 14px;
  font-size: 10px;
  font-weight: 100;
}
@media screen and (min-width: 768px) {
  .top_reason_num::before {
    top: -5px;
  }
}
@media screen and (min-width: 1080px) {
  .top_reason_num::before {
    width: 56px;
    height: 20px;
    top: -10px;
  }
}

.top_reason_title {
  font-weight: 900;
  text-align: center;
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .top_reason_title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .top_reason_title {
    font-size: 23px;
  }  
}

.top_reason-item_img-wrap {
  width: 116px;
  height: 120px;
  flex-shrink: 0;
}
@media screen and (min-width: 1080px) {
  .top_reason-item_img-wrap {
    width: 140px;
    height: 131px;
  }
}

.top_reason-item_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_reason_text {
  font-size: 14px;
}
@media screen and (min-width: 1080px) {
  .top_reason_text {
    font-size: 16px;
    height: 130px;
  }
}

.top_reason_img-wrap {
  margin: 36px auto 0;
  width: 148px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .top_reason_img-wrap {
    width: 220px;
  }
}
@media screen and (min-width: 1080px) {
  .top_reason_img-wrap {
    width: 284px;
    margin: 48px auto 0;
  }
}

.top_reason_img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- top-introduce ---------- */
.top_introduce {
  background: url(../img/introduce-bg.png) no-repeat center top / cover;
  margin-top: -50px;
  padding: 50px 0 0;
  position: relative;
  z-index: 0;
}

@media screen and (min-width: 1080px) {
  .top_introduce_container {
    margin-top: 40px;
  }
}

.top_introduce_content {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 1080px) {
  .top_introduce_content {
    margin-top: 45px;
  }
}

.top_introduce_text {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top_introduce_text {
    font-size: 16px;
  }
}

.top_introduce_text__point {
  background: linear-gradient( to bottom, transparent 75%,#E38D5F 75%, #E38D5F 95%, transparent 95%);
}

.top_introduce_text__large {
  font-size: 15px;
  color: #0494C1;
}
@media screen and (min-width: 768px) {
  .top_introduce_text__large {
    font-size: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .top_introduce_text__large {
    font-size: 21px;
  }
}

.top_introduce_graph {
  width: 100%;
  height: auto;
  padding: 18px;
  background: var(--white-color);
  box-shadow: 0 0 4px rgb(2, 81, 127, 9);
}
@media screen and (min-width: 768px) {
  .top_introduce_graph {
    max-width: 650px;
    padding: 24px;
  }
}
@media screen and (min-width: 1080px) {
  .top_introduce_graph {
    max-width: 781px;
    padding: 36px;
    margin: 20px 0;
  }
}

.top_introduce_graph-text {
  font-size: 9px;
  color: var(--sub-color01);
}
@media screen and (min-width: 768px) {
  .top_introduce_graph-text {
    font-size: 12px;
    margin-left: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .top_introduce_graph-text {
    font-size: 14px;
    margin-left: 24px;
  }
}

.top_introduce_img-wrap {
  margin-top: 12px;
  width: 100%;
  height: auto;
}

.top_introduce_img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.top_introduce_text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top_introduce_text-wrap {
    flex-direction: row;
    gap: 16px;
  }
}

.top_introduce_text__graph {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .top_introduce_text__graph {
    font-size: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .top_introduce_text__graph {
    font-size: 21px;
  }
}

.top_introduce_text-box {
  width: auto;
  height: auto;
  padding: 5px 8px;
  background: var(--sub-color02);
  border-radius: 4px;
  margin-top: 14px;
  font-size: 18px;
  font-weight: bold;
  color: var(--white-color);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top_introduce_text-box {
    margin-top: 0;
    font-size: 22px;
    padding: 8px 16px;
    border-radius: 8px;
  }
}
@media screen and (min-width: 1080px) {
  .top_introduce_text-box {
    font-size: 28px;
    padding: 8px 24px;
    border-radius: 10px;
  }
}

.top_introduce_text__big {
  font-size: 25px;
  color: var(--white-color);
}
@media screen and (min-width: 768px) {
  .top_introduce_text__big {
    font-size: 30px;
  }
}
@media screen and (min-width: 1080px) {
  .top_introduce_text__big {
    font-size: 36px;
  }
}

/* ---------- top-service ---------- */
.top_service{
  background-image:
    url("../img/service-bg01.png"),
    url("../img/service-bg01.png"),
    url("../img/service-bg02.png");
  background-position:
    top center,
    center 60%,
    bottom center;
  background-repeat:
    no-repeat, no-repeat, no-repeat;
  background-size:
    auto 25%, auto 25%, auto 25%;
}
@media screen and (min-width: 768px) {
  .top_service{
    background-image:
      url("../img/service-bg01.png"),
      url("../img/service-bg02.png");
    background-position:
      top center,
      bottom center;
    background-repeat:
      no-repeat, no-repeat;
    background-size:
      100% 50%, 100% 50%;
  }
}

.top_service-section_subtitle {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .top_service-section_subtitle {
    font-size: 14px;
    margin-top: 22px;
  }
}
@media screen and (min-width: 1080px) {
  .top_service-section_subtitle {
    font-size: 16px;
    margin-top: 26px;
  }
}

.top_service_list {
  width: 100%;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 42px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top_service_list {
    gap: 30px;
  }
}

.top_service_item {
  width: 100%;
  height: auto;
  border: 2px solid var(--sub-color02);
  border-radius: 20px;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .top_service_item {
    width: calc((100% - 30px) / 2);
  }
}

.top_service_heading {
  width: 100%;
  height: auto;
  background: var(--sub-color02);
  border-radius: 17px 17px 0 0;
  text-align: center;
}

.top_service_title {
  font-weight: bold;
  color: var(--white-color);
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .top_service_title {
    font-size: 22px;
  }
}
@media screen and (min-width: 1080px) {
  .top_service_title {
    font-size: 28px;
  }
}

.top_service_subtitle {
  font-size: 14px;
  color: var(--white-color);
  margin: 8px auto;
}
@media screen and (min-width: 768px) {
  .top_service_subtitle {
    font-size: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .top_service_subtitle {
    font-size: 18px;
  }
}

.top_service_img-wrap {
  width: 230px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .top_service_img-wrap {
    width: 345px;
  }
}

.top_service_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_service_text {
  font-size: 14px;
  color: var(--sub-color01);
  font-weight: 500;
  margin: 0 16px 26px 16px;
}
@media screen and (min-width: 768px) {
  .top_service_text {
    margin: 0 22px 40px 22px;
  }
}
@media screen and (min-width: 1080px) {
  .top_service_text {
    line-height: 1.8;
    margin: 0 30px 50px 30px;
  }
}

/* ---------- top-promise ---------- */
.top_promise {
  background: url(../img/promise-bg-SP.png) no-repeat center top / cover;
}
@media screen and (min-width: 768px) {
  .top_promise {
    background: url(../img/promise-bg.png) no-repeat center top / cover;
  }
}

.top_promise_subtitle {
  font-weight: bold;
  color: var(--sub-color01);
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.top_promise_list {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.top_promise_item {
  width: 96%;
  max-width: 540px;
  height: auto;
  border-radius: 20px;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top_promise_item {
    max-width: 100%;
    height: 180px;
    flex-direction: row;
  }
}

.top_promise_text-wrap {
  width: 100%;
  height: auto;
  padding: 16px 26px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .top_promise_text-wrap {
    padding: 16px 60px;
  }
}

.top_promise_title {
  font-size: 17px;
  font-weight: 900;
  color: var(--sub-color01);
}
@media screen and (min-width: 768px) {
  .top_promise_title {
    font-size: 22px;
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1080px) {
  .top_promise_title {
    font-size: 28px;
  }
}

.top_promise_num {
  font-size: 28px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .top_promise_num {
    font-size: 40px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 1080px) {
  .top_promise_num {
    font-size: 48px;
    margin-right: 20px;
  }
  
}

.top_promise_text {
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-color01);
}
@media screen and (min-width: 768px) {
  .top_promise_text {
    font-size: 16px;
  } 
}

.top_promise_img-wrap {
  width: 100%;
  height: 180px;
  border-radius: 0 0 20px 20px;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_promise_img-wrap {
    width: 35%;
    height: 100%;
    border-radius: 0 20px 20px 0;
  }
}

.top_promise_img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(to bottom, rgb(255, 255, 255), transparent);
}
@media screen and (min-width: 768px) {
  .top_promise_img-wrap::after {
    width: 15%;
    height: 100%;
    background: linear-gradient(to right, rgb(255, 255, 255), transparent);
  }
}

.top_promise_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
}
@media screen and (min-width: 768px) {
  .top_promise_img {
    border-radius: 0 20px 20px 0;
  }
}

/* ---------- top-post ---------- */
.post {
  background: var(--white-color);
}

.post_title {
  font-weight: 500;
  padding: 0 16px 0;
  color: var(--sub-color01);
}
@media screen and (min-width: 768px) {
  .post_title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .post_title {
    font-size: 23px;
    padding: 0 20px 0;
  }
}

.post_content {
  margin: 18px auto 23px;
}

.news_post_content {
  min-height: 74vh;
}

.post_list {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.post_item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #B6B5B5;
}

.post_item:first-child {
  border-top: 1px solid #B6B5B5;
}

.post a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  font-size: 13px;
  font-weight: 500;
  width: 100%;
  height: auto;
  padding: 13px 16px;
  color: var(--sub-color01);
}
@media screen and (min-width: 768px) {
  .post a {
    padding: 16px;
  } 
}
@media screen and (min-width: 1080px) {
  .post a {
    font-size: 14px;
    padding: 20px;
    gap: 32px;
  } 
}

.top_post_btn-wrap {
  display: inline-block;
  width: auto;
}

/* ---------- top-contact ---------- */
.top_contact {
  background: var(--sub-color03);
}

.top_contact-section_title {
  font-weight: 500;
}

.top_contact_container {
  width: 100%;
  max-width: 450px;
  height: auto;
  background: var(--white-color);
  padding: 32px 13px 30px;
  margin: 0 auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
}
@media screen and (min-width: 768px) {
  .top_contact_container {
    padding: 48px 24px 40px;
    gap: 20px;
    max-width: 700px;
  }
}
@media screen and (min-width: 1080px) {
  .top_contact_container {
    padding: 66px 72px 75px;
    gap: 30px;
    max-width: 100%;
  }
}

.top_contact_explanation-wrap {
  margin: 0 auto;
}

.top_contact_explanation {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .top_contact_explanation {
    font-size: 12px;
  }
}
@media screen and (min-width: 1080px) {
  .top_contact_explanation {
    font-size: 14px;
  }
}

.top_contact_form {
  width: 100%;
  height: auto;
  padding: 23px 12px 33px;
  background-color: #F5F5F5;
  border: 1px solid #D0D0D0;
}
@media screen and (min-width: 768px) {
  .top_contact_form {
    padding: 40px 24px 50px;
  }
}
@media screen and (min-width: 1080px) {
  .top_contact_form {
    padding: 57px 57px 62px;
  }
}

.top_contact_form_item {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.top_contact_form_item:not(:first-child) {
  margin-top: 16px;
}

.top_contact_form_label {
  font-size: 15px;
  font-weight: bold;
  margin-left: 13px;
}
@media screen and (min-width: 768px) {
  .top_contact_form_label {
    margin-left: 10px;
  }
}
@media screen and (min-width: 1080px) {
  .top_contact_form_label {
    margin-left: 8px;
  }
}

.required {
  color: #F00627;
}

.top_contact_form_input {
  width: 100%;
  height: 34px;
  border: 1px solid #C3C3C3;
  background: var(--white-color);
  padding: 0 10px;
  font-size: 16px;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .top_contact_form_input {
    height: 40px;
    padding: 0 14px;
    margin-top: 8px;
  }
}
@media screen and (min-width: 1080px) {
  .top_contact_form_input {
    height: 50px;
    padding: 0 18px;
    margin-top: 10px;
  }
}

.top_contact_form_textarea {
  width: 100%;
  height: 123px;
  border: 1px solid #C3C3C3;
  background: var(--white-color);
  padding: 10px;
  font-size: 16px;
  margin-top: 6px;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .top_contact_form_textarea {
    height: 180px;
  }
}
@media screen and (min-width: 1080px) {
  .top_contact_form_textarea {
    height: 223px;
  }
}

.top_contact_form_btn-wrap {
  width: 142px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  background: var(--sub-color02);
  border-radius: 4px;
  transition: opacity .3s;
}
@media screen and (min-width: 768px) {
  .top_contact_form_btn-wrap {
    width: 162px;
    height: 30px;
    margin: 30px auto 0;
  }
}
@media screen and (min-width: 1080px) {
  .top_contact_form_btn-wrap {
    width: 210px;
    height: 40px;
    margin: 40px auto 0;
  }
}

.top_contact_form_btn-wrap:hover{
  opacity:0.7;
}

.top_contact_form-btn {
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-color);
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .top_contact_form-btn {
    font-size: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .top_contact_form-btn {
    font-size: 18px;
  }
}






/* ---------- news-single ---------- */
.news {
  background: #FCFCFC;
}

.news_content {
  min-height: 73vh;
  padding: 16px 20px;
  border-radius: 20px;
  background: var(--white-color);
  margin-top: 40px;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .news_content {
    padding: 40px;
    align-items: center;
  }
}

.news time {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .news time {
    font-size: 12px;
  }
}
@media screen and (min-width: 1080px) {
  .news time {
    font-size: 14px;
  }
}

.news h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--sub-color01);
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .news h3 {
    font-size: 24px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .news h3 {
    font-size: 28px;
    margin-top: 30px;
  }
}

.news p {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .news p {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .news p {
    font-size: 18px;
    margin-top: 30px;
  }
}

.news_img-wrap {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .news_img-wrap {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1080px) {
  .news_img-wrap {
    margin-top: 32px;
  }
}

.news img {
  max-width: 540px;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .news img {
    width: 45%;
  }
}

.news_btn-wrap {
  display: inline-block;
  width: auto;
  margin: 32px auto 16px;
  padding: 8px 20px;
}
@media screen and (min-width: 768px) {
  .news_btn-wrap {
    margin: 40px auto 24px;
    padding: 10px 30px;
  }
}
@media screen and (min-width: 1080px) {
  .news_btn-wrap {
    margin: 48px auto 32px;
    padding: 16px 40px;
  }
}

.news_btn {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .news_btn {
    font-size: 14px;
  }
}
@media screen and (min-width: 1080px) {
  .news_btn {
    font-size: 16px;
  }
}


/* ---------- js ---------- */
