@charset "UTF-8";
/* ----------------------  common ---------------------- */
html {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  line-height: 1.8;
  overflow: hidden;
  position: relative;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

a {
  color: inherit;
  transition: all 0.3s;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}
a[href^="tel:"] {
  cursor: default;
  opacity: 1;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}

h1,
h2,
h3,
h4,
strong {
  font-weight: 700;
}

.font_en {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
}

.font_mplus_r {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.txt_center {
  text-align: center;
}

.txt_left {
  text-align: left;
}

.txt_right {
  text-align: right;
}

.txt_lead {
  font-size: clamp(13px, 1.8vw, 18px);
}
.txt_lead.is_bold {
  font-weight: 700;
}
.txt_lead.is_l {
  font-size: clamp(14px, 2vw, 20px);
}

.txt_link {
  color: #1ea1aa;
  text-decoration: underline;
}

.disp_ib {
  display: inline-block;
}

.list_disc {
  list-style-type: disc;
  text-align: left;
  padding-left: 2em;
}

.inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.inner.is_s {
  max-width: 940px;
}

/* title */
.sec_ttl {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 1.6em;
  text-align: center;
}
.sec_ttl.is_m {
  font-size: clamp(20px, 2.9vw, 32px);
}
.sec_ttl.is_s {
  font-size: clamp(18px, 2.8vw, 30px);
}
@media (max-width: 767px) {
  .sec_ttl {
    margin-bottom: 1em;
  }
}

/* btn */
.btn_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  margin-top: 3em;
}
@media (max-width: 767px) {
  .btn_list {
    flex-direction: column;
    gap: 0.6em;
    margin-top: 2.2em;
  }
}

.btn {
  background: #000;
  border-radius: 100px;
  display: block;
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 500;
  text-align: center;
  padding: 0.8em 1em 0.8em 0.8em;
  position: relative;
  width: 350px;
}
@media (max-width: 1024px) {
  .btn {
    width: 34vw;
  }
}
@media (max-width: 767px) {
  .btn {
    max-width: 250px;
    width: 62vw;
  }
}
.btn::before {
  content: "";
  border-radius: 100%;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 16px;
}
@media (max-width: 767px) {
  .btn::before {
    width: 22px;
    height: 22px;
    right: 11px;
  }
}
.btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 2px;
  border-right: solid 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 27px;
}
@media (max-width: 767px) {
  .btn::after {
    right: 20px;
  }
}
.btn.btn_01 {
  background: #ff9500;
  color: #fff;
}
.btn.btn_01::before {
  background: #fff;
}
.btn.btn_01::after {
  border-color: #ff9500;
}
.btn.btn_02 {
  background: #fff;
  border: 2px solid #1ea1aa;
  color: #1ea1aa;
}
.btn.btn_02::before {
  background: #1ea1aa;
}
.btn.btn_02::after {
  border-color: #fff;
}
.btn.btn_02_invert {
  background: #1ea1aa;
  color: #fff;
}
.btn.btn_02_invert::before {
  background: #fff;
}
.btn.btn_02_invert::after {
  border-color: #1ea1aa;
}

.btn_gr {
  background: #1ea1aa;
  color: #fff;
  border-radius: 100px;
  display: block;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 500;
  text-align: center;
  padding: 0.8em 1em 0.8em 0.8em;
  position: relative;
  margin: 1em auto;
  width: 260px;
}
.btn_gr::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px;
  border-right: solid 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 24px;
}
@media (max-width: 767px) {
  .btn_gr {
    max-width: 250px;
    width: 58vw;
  }
  .btn_gr::after {
    width: 6px;
    height: 6px;
    right: 20px;
  }
}

/* padding */
.pd_l {
  padding: 100px 0;
}

.pdt_l {
  padding-top: 100px;
}

.pdb_l {
  padding-bottom: 100px;
}

.pd_m {
  padding: 60px 0;
}

.pdt_m {
  padding-top: 60px;
}

.pdb_m {
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  .pd_l {
    padding: 60px 0;
  }
  .pdt_l {
    padding-top: 60px;
  }
  .pdb_l {
    padding-bottom: 60px;
  }
  .pd_m {
    padding: 40px 0;
  }
  .pdt_m {
    padding-top: 40px;
  }
  .pdb_m {
    padding-bottom: 40px;
  }
}
/* display */
.is_sp,
.is_tb {
  display: none !important;
}

@media (max-width: 1024px) {
  .is_pc {
    display: none !important;
  }
  .is_tb {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .is_pctb {
    display: none !important;
  }
  .is_sp {
    display: block !important;
  }
}
/* ----------------------  header ---------------------- */
.header {
  background: #fff;
  border-radius: 100px;
  box-shadow: 0px 5px 20px 0px rgba(26, 161, 169, 0.3);
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1360px;
  width: 96%;
  height: 80px;
  z-index: 99;
}
@media (max-width: 1024px) {
  .header {
    height: 60px;
  }
}
@media (max-width: 767px) {
  .header {
    top: 12px;
  }
}
.header_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.4em;
  height: 100%;
}
@media (max-width: 767px) {
  .header_block {
    padding: 0 1.2em;
  }
}
.header_block .logo {
  position: relative;
  z-index: 100;
}
.header_block .logo a {
  display: flex;
  align-items: center;
  gap: 1.2em;
  height: 100%;
}
@media (max-width: 767px) {
  .header_block .logo a {
    gap: 0.8em;
  }
}
.header_block .logo img {
  display: block;
  width: 186px;
}
@media (max-width: 1180px) {
  .header_block .logo img {
    width: 146px;
  }
}
@media (max-width: 767px) {
  .header_block .logo img {
    width: 118px;
  }
}
.header_block .logo span {
  display: block;
  font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .header_block .logo span {
    font-size: 9px;
    letter-spacing: 0;
  }
}
.header_menu {
  position: relative;
}
.header_nav > ul {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.header_nav a {
  display: block;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  padding: 2em 1.4em;
}
.header_nav a:hover {
  opacity: 0.6;
}
@media (max-width: 1024px) {
  .header_nav {
    display: none;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0px 5px 20px 0px rgba(26, 161, 169, 0.3);
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.6em 1.6em 2.8em;
    width: 94%;
  }
  .header_nav.on,
  .header_nav ul {
    display: block;
  }
  .header_nav a {
    border-bottom: 1px solid #e6e6e6;
    font-size: 1.4rem;
    padding: 0.6em 2em 0.6em 0.6em;
  }
}
.header_nav .btn {
  padding: 0.8em 1.2em 0.8em 0.8em;
  width: 200px;
}
.header_nav .btn::before {
  content: "";
  width: 20px;
  height: 20px;
  right: 12px;
}
.header_nav .btn::after {
  right: 20px;
}
@media (max-width: 1180px) {
  .header_nav .btn {
    width: 160px;
  }
}
@media (max-width: 1024px) {
  .header_nav .btn {
    background: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #d9d9d9;
    font-size: 1.4rem;
    padding: 0.6em;
    text-align: left;
    max-width: none;
    width: 100%;
  }
  .header_nav .btn::before, .header_nav .btn::after {
    content: none;
  }
  .header_nav .btn.btn_01 {
    color: #ff9500;
  }
}

/* header submenu */
.has_child {
  position: relative;
}
.has_child::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 45%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #1ea1aa;
  border-right: 2px solid #1ea1aa;
  transform: rotate(135deg);
}
.has_child:hover > ul, .has_child:active > ul {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1024px) {
  .has_child::before {
    transition: transform 0.2s ease;
    right: 0.6em;
    top: 16px;
  }
  .has_child.active::before {
    transform: rotate(-45deg);
  }
}
.has_child ul {
  background: #fff;
  box-shadow: 0px 5px 20px 0px rgba(26, 161, 169, 0.3);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2em;
  width: 420px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  padding: 1.6em 1.6em 2em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 88px;
  z-index: 4;
}
@media (max-width: 1024px) {
  .has_child ul {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    position: relative;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
    margin: 0.6em 0;
  }
}
.has_child ul li:hover > ul,
.has_child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
.has_child ul li {
  border-bottom: 1px solid #e6e6e6;
  width: 100%;
}
@media (max-width: 1024px) {
  .has_child ul li {
    border-bottom: 0;
  }
}
.has_child ul li a {
  font-size: clamp(12px, 1vw, 13px);
  padding: 0.6em;
  position: relative;
}
.has_child ul li a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 2px #1ea1aa;
  border-right: solid 2px #1ea1aa;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 6px;
}
@media (max-width: 1024px) {
  .has_child ul li a {
    border: 0;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0.6em 0.8em;
  }
  .has_child ul li a::before {
    content: none;
  }
}
.has_child ul li:last-child > a {
  border-bottom: none;
}

/* toggle */
.menu_toggle {
  display: none;
}

@media (max-width: 1024px) {
  .menu_toggle {
    background: 0;
    border: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
  .menu_toggle__line,
  .menu_toggle::before,
  .menu_toggle::after {
    content: "";
    width: 22px;
    height: 2px;
    background-color: #000;
    transition: transform 0.3s, opacity 0.3s;
  }
  .menu_toggle.is-opened .menu_toggle__line {
    opacity: 0;
  }
  .menu_toggle.is-opened::before {
    transform: translateY(7px) rotate(45deg);
  }
  .menu_toggle.is-opened::after {
    transform: translateY(-7px) rotate(-45deg);
  }
}
/* ---------------------- footer ---------------------- */
.footer {
  background: #fff;
}
.footer_main {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  padding: 3.4em 0;
}
@media (max-width: 767px) {
  .footer_main {
    flex-direction: column-reverse;
    gap: 3.4em;
    padding: 2.8em 0;
  }
}
.footer_address {
  width: 38%;
}
@media (max-width: 767px) {
  .footer_address {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.footer_address .sns_list {
  display: flex;
  gap: 2%;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .footer_address .sns_list {
    gap: 3%;
    justify-content: center;
    margin-bottom: 1.4em;
    width: 100%;
  }
}
.footer_address .sns_list li {
  width: 30px;
}
.footer_address .logo {
  width: 150px;
}
@media (max-width: 767px) {
  .footer_address .logo {
    display: block;
    margin: 0 auto;
    width: 140px;
  }
}
.footer_address .address {
  font-size: clamp(10px, 0.9vw, 12px);
  margin: 1.6em 0 1em;
}
.footer_address .logos {
  display: flex;
  align-items: flex-start;
  gap: 1.4%;
}
.footer_address .logos img {
  max-width: 130px;
}
@media (max-width: 767px) {
  .footer_address .logos img {
    max-width: 110px;
  }
}
.footer_menu {
  margin: 0 0 0 auto;
  width: 60%;
}
@media (max-width: 767px) {
  .footer_menu {
    padding: 0 1.4em;
    width: 100%;
  }
}
.footer_menu .list {
  display: flex;
  justify-content: flex-end;
  gap: 3%;
}
@media (max-width: 767px) {
  .footer_menu .list {
    flex-direction: column;
    gap: 1.2em;
  }
}
.footer_menu .list li {
  width: 5em;
}
.footer_menu .list li.is_l {
  width: 23em;
}
.footer_menu .list a {
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 500;
}
.footer_menu .list .sub {
  margin-top: 0.4em;
}
.footer_menu .list .sub a {
  display: block;
  font-size: 85%;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.3em 0 0.3em 1em;
  position: relative;
}
.footer_menu .list .sub a::before {
  content: "";
  background: #aaa;
  width: 0.42em;
  height: 1px;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.footer_copyright {
  background: #f7f7f7;
  color: #565656;
  font-size: 1rem;
  text-align: center;
  padding: 1.8em;
}
@media (max-width: 767px) {
  .footer_copyright {
    padding: 1.2em;
  }
}

/* ---------------- bg ---------------- */
.fv_bg {
  background: url(../images/fv_bg.webp) no-repeat top center/100%;
  padding-top: 140px;
}
@media (max-width: 767px) {
  .fv_bg {
    background: url(../images/fv_bg_s.webp) no-repeat top center/100%;
    padding-top: 96px;
  }
}
.fv_bg.is_sub {
  background: url(../images/fv_bg.webp) no-repeat top center/100%;
  position: relative;
}
.fv_bg.is_sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(circle at 86% 56%, rgba(31, 161, 170, 0.18), rgba(255, 255, 255, 0) 24%);
  background-size: 100% 30%;
  background-repeat: repeat-y;
}
.fv_bg.is_sub::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(circle at 18% 62%, rgba(31, 161, 170, 0.14), rgba(255, 255, 255, 0) 24%);
  background-size: 100% 36%;
  background-repeat: repeat-y;
}
@media (max-width: 767px) {
  .fv_bg.is_sub {
    background: url(../images/fv_bg_s.webp) no-repeat top center/100%;
    padding-top: 96px;
  }
}

.main_bg {
  background: #f8fcfd;
  position: relative;
}
.main_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(circle at 86% 20%, rgba(31, 161, 170, 0.2), rgba(255, 255, 255, 0) 24%);
  background-size: 100% 34%;
  background-repeat: repeat-y;
}
.main_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(circle at 30% 60%, rgba(31, 161, 170, 0.16), rgba(255, 255, 255, 0) 24%);
  background-size: 100% 42%;
  background-repeat: repeat-y;
}
.main_bg section {
  position: relative;
  z-index: 1;
}

.simple_bg {
  background: #f8fcfd;
  background: #f8fcfd linear-gradient(190deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 60%, rgba(31, 161, 170, 0.1) 100%);
  padding-top: 140px;
  position: relative;
}
@media (max-width: 767px) {
  .simple_bg {
    padding-top: 96px;
  }
}

/* ---------------- mv ---------------- */
.mv_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .mv_block {
    flex-direction: column;
    padding: 0.2em 0 2em;
  }
}
.mv_block .txt_item {
  width: 48%;
}
@media (max-width: 767px) {
  .mv_block .txt_item {
    text-align: center;
    width: 100%;
  }
}
.mv_block .txt_item .sub_txt {
  color: #1ea1aa;
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 700;
  margin-bottom: 1em;
}
.mv_block .txt_item .sub_txt span {
  background: #1ea1aa;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  font-size: 134%;
  font-weight: 500;
  line-height: 1.5;
  padding: 0 1em;
  margin-right: 0.4em;
}
@media (max-width: 767px) {
  .mv_block .txt_item .sub_txt span {
    font-size: 124%;
    padding: 0 0.8em;
  }
}
.mv_block .txt_item .mv_ttl {
  font-size: clamp(16px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .mv_block .txt_item .mv_ttl {
    font-size: clamp(14px, 2.3vw, 28px);
    margin-bottom: 1em;
  }
}
.mv_block .txt_item .mv_ttl strong {
  display: block;
  font-size: 124%;
  font-weight: inherit;
}
.mv_block .txt_item .mv_ttl .font_en {
  font-size: 114%;
}
.mv_block .txt_item .mv_ttl img {
  display: block;
  margin-top: 1em;
  max-width: 480px;
}
@media (max-width: 1024px) {
  .mv_block .txt_item .mv_ttl img {
    max-width: 330px;
  }
}
@media (max-width: 767px) {
  .mv_block .txt_item .mv_ttl img {
    max-width: 260px;
    margin: 0.8em auto;
  }
}
.mv_block .pic_item {
  position: relative;
  right: -4%;
  width: 52%;
}
@media (max-width: 767px) {
  .mv_block .pic_item {
    position: static;
    width: 100%;
  }
}
.mv_block .pic_item .balloon {
  display: flex;
  justify-content: center;
  gap: 2.4%;
}
.mv_block .pic_item .balloon li {
  position: relative;
  width: 160px;
  height: 176px;
}
.mv_block .pic_item .balloon li::before {
  content: "";
  background: url(../images/mv_balloon.webp) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv_block .pic_item .balloon li:first-child, .mv_block .pic_item .balloon li:last-child {
  top: 1.4em;
}
@media (max-width: 1024px) {
  .mv_block .pic_item .balloon li {
    width: 120px;
    height: 136px;
  }
}
@media (max-width: 767px) {
  .mv_block .pic_item .balloon li {
    width: 94px;
    height: 104px;
  }
}
.mv_block .pic_item .balloon li p {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  line-height: 1.5;
  text-align: center;
  width: 86%;
}
@media (max-width: 1024px) {
  .mv_block .pic_item .balloon li p {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .mv_block .pic_item .balloon li p {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
.mv_block .pic_item .pc {
  display: block;
  margin: 0.8em auto;
  max-width: 611px;
  width: 100%;
}
@media (max-width: 767px) {
  .mv_block .pic_item .pc {
    margin-top: 1em;
    max-width: 400px;
    width: 90%;
  }
}
.mv_block .btn_list {
  justify-content: flex-start;
  gap: 4%;
  margin: 0;
}
@media (max-width: 767px) {
  .mv_block .btn_list {
    display: block;
  }
}
.mv_block .btn {
  position: relative;
  width: 280px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .mv_block .btn {
    font-size: 1.4rem;
    width: 200px;
  }
}
@media (max-width: 767px) {
  .mv_block .btn {
    margin: 0.8em auto;
    width: 240px;
  }
}

/* ---------------------- worries ---------------------- */
.worries {
  position: relative;
  padding: 4em 0 14em;
}
@media (max-width: 767px) {
  .worries {
    padding: 2em 0 11.6em;
  }
}
.worries::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #e2e3e3;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 32px 40px;
  border-top-color: currentColor;
  border-bottom: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .worries::before {
    bottom: -24px;
  }
}
.worries .ttl_box {
  background: #1ea1aa;
  border-radius: 0 50px 50px 0;
  padding: 7.6em 7vw 7.6em 4vw;
  width: 56%;
}
@media (max-width: 1024px) {
  .worries .ttl_box {
    padding: 2.4em 3em 9.6em;
    width: 68%;
  }
}
@media (max-width: 767px) {
  .worries .ttl_box {
    border-radius: 0 25px 25px 0;
    padding: 2em 2em 12em;
    width: 90%;
  }
}
.worries .ttl_box .ttl {
  color: #fff;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.4;
  max-width: 640px;
  display: block;
  margin: 0 0 0 auto;
}
.worries .ttl_box .ttl strong {
  display: inline-block;
  font-size: 118%;
  letter-spacing: 0.1em;
}
.worries .ttl_box .ttl > span {
  font-size: 82%;
}
.worries .ttl_box .ttl .icon {
  background: url(../images/icon_arrow_worries.svg) no-repeat center/contain;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-left: 0.4em;
}
@media (max-width: 1024px) {
  .worries .ttl_box .ttl .icon {
    display: none;
  }
}
.worries .detail_box {
  background: #e3e3e3;
  background: linear-gradient(180deg, rgba(227, 227, 227, 0.8) 0%, rgb(227, 227, 227) 100%);
  border-radius: 50px 0 0 0;
  padding: 5em 2em 4em;
  max-width: 1680px;
  width: 59.6%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  .worries .detail_box {
    padding: 4em 3em 2em;
    width: 84%;
  }
}
@media (max-width: 767px) {
  .worries .detail_box {
    border-radius: 0;
    padding: 2.4em 1.4em 1.2em;
    width: 100%;
  }
}
.worries .detail_box .list {
  margin: 0 auto;
  max-width: 700px;
}
.worries .detail_box .list li {
  background: #fff;
  border: 1px solid #1ea1aa;
  border-radius: 100px;
  box-shadow: 0px 0px 10px 0px rgba(19, 118, 124, 0.4);
  position: relative;
  margin-bottom: 1.6em;
  min-height: 5.2em;
}
@media (max-width: 1024px) {
  .worries .detail_box .list li {
    margin-bottom: 1em;
    min-height: 4.4em;
  }
}
@media (max-width: 767px) {
  .worries .detail_box .list li {
    min-height: 5em;
  }
}
.worries .detail_box .list li::before {
  content: "";
  background: url(../images/icon_question.webp) no-repeat center/contain;
  position: absolute;
  top: -10px;
  left: 8px;
  width: 40px;
  height: 40px;
}
@media (max-width: 1024px) {
  .worries .detail_box .list li::before {
    left: 6px;
    width: 34px;
    height: 34px;
  }
}
.worries .detail_box .list li span {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.2em 2em 0.2em 3.4em;
  font-size: clamp(12px, 1.4vw, 18px);
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
}
@media (max-width: 767px) {
  .worries .detail_box .list li span {
    letter-spacing: 0;
    line-height: 1.4;
  }
}

/* ---------------------- solution ---------------------- */
.solution {
  padding: 50px 0 20px;
}
.solution .main_ttl {
  text-align: center;
}
.solution .main_ttl .sub_txt {
  color: #1ea1aa;
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 700;
  margin-bottom: 1em;
}
.solution .main_ttl .sub_txt span {
  background: #1ea1aa;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  font-size: 128%;
  font-weight: 500;
  line-height: 1.5;
  padding: 0 1em;
  margin-right: 0.4em;
}
.solution .main_ttl .ttl {
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.5;
}
.solution .main_ttl .ttl strong {
  display: block;
  font-size: 132%;
}
.solution .main_ttl .ttl .font_en {
  font-size: 114%;
}
.solution .main_ttl .ttl img {
  display: block;
  margin: 0.8em auto 0.2em;
  max-width: 388px;
  width: 100%;
}
@media (max-width: 1024px) {
  .solution .main_ttl .ttl img {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .solution .main_ttl .ttl img {
    max-width: 260px;
  }
}
.solution .list {
  display: flex;
  justify-content: center;
  gap: 2.4%;
  margin: 2.6em 0 1.8em;
}
@media (max-width: 767px) {
  .solution .list {
    flex-direction: column;
    align-items: center;
    gap: 0.6em;
  }
}
.solution .list li {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(234, 246, 247) 100%);
  border: 1px solid #1ea1aa;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(26, 161, 169, 0.5);
  display: flex;
  align-items: center;
  padding: 1.4em 1.8em;
  max-width: 280px;
  width: 100%;
}
@media (max-width: 767px) {
  .solution .list li {
    border-radius: 10px;
    display: block;
    text-align: center;
    padding: 1em 1.8em;
    max-width: 240px;
  }
}
.solution .list p {
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  width: 100%;
}
.solution .main_pic {
  display: block;
  margin: 0 auto;
  max-width: 704px;
  width: 100%;
}
@media (max-width: 1024px) {
  .solution .main_pic {
    max-width: 560px;
  }
}

/* ---------------------- about ---------------------- */
.about .dl_box {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #7fa4c9;
  padding: 2.6em 2em;
  display: flex;
  justify-content: center;
  gap: 8%;
  align-items: center;
  margin: 3em auto;
  max-width: 900px;
}
@media (max-width: 767px) {
  .about .dl_box {
    flex-direction: column;
    padding: 2em 1.6em 2.4em;
    margin: 2em 0;
  }
}
.about .dl_box .item {
  text-align: center;
}
@media (max-width: 767px) {
  .about .dl_box .item {
    display: contents;
  }
}
.about .dl_box .item .dl_ttl {
  color: #004994;
  font-size: clamp(16px, 2.5vw, 26px);
}
.about .dl_box .item .dl_ttl span {
  display: block;
  font-size: 62%;
  font-weight: inherit;
}
@media (max-width: 767px) {
  .about .dl_box .item .dl_ttl {
    order: 1;
  }
}
.about .dl_box .item p {
  font-size: clamp(12px, 1.4vw, 15px);
  margin: 1em 0;
}
@media (max-width: 767px) {
  .about .dl_box .item p {
    order: 3;
    margin: 1.4em 0;
  }
}
.about .dl_box .item .btn_dl {
  background: #004994;
  color: #fff;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about .dl_box .item .btn_dl {
    order: 4;
  }
}
.about .dl_box .item .btn_dl::before {
  content: "";
  background: url(../images/icon_dl.webp) no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  width: 26px;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .about .dl_box .item .btn_dl::before {
    right: 12px;
    width: 20px;
  }
}
.about .dl_box .item .btn_dl::after {
  content: none;
}
.about .dl_box .pic {
  display: block;
  max-width: 310px;
  width: 100%;
}
@media (max-width: 767px) {
  .about .dl_box .pic {
    order: 2;
    margin-top: 1.6em;
    max-width: 220px;
  }
}
.about .bop_box {
  background: #e8f5f6;
  border-radius: 30px;
  border: 2px solid #1ea1aa;
  margin-top: 8em;
}
@media (max-width: 767px) {
  .about .bop_box {
    border-radius: 16px;
    margin-top: 4em;
  }
}
.about .bop_box .bop_ttl {
  background: #1ea1aa;
  border-radius: 10px;
  color: #fff;
  font-size: clamp(16px, 2.6vw, 28px);
  font-weight: 500;
  text-align: center;
  margin: -0.85em auto 1.4em;
  max-width: 210px;
}
@media (max-width: 767px) {
  .about .bop_box .bop_ttl {
    max-width: 36vw;
  }
}
.about .bop_box .list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2%;
  padding: 0 2em 3.2em;
}
@media (max-width: 1024px) {
  .about .bop_box .list {
    padding: 0 1.4em 2.4em;
  }
}
@media (max-width: 767px) {
  .about .bop_box .list {
    padding: 0 1em 2em;
  }
}
.about .bop_box .list .circle {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(234, 246, 247) 100%);
  border: 2px solid #1ea1aa;
  box-shadow: 0px 0px 10px 0px rgba(26, 161, 169, 0.5);
  border-radius: 100%;
  text-align: center;
  position: relative;
  width: 20%;
  max-width: 220px;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .about .bop_box .list .circle {
    width: 25vw;
  }
}
.about .bop_box .list .circle p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(16px, 2.6vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  width: 96%;
}
.about .bop_box .list .circle p span {
  display: block;
  font-size: 75%;
  font-weight: inherit;
}
@media (max-width: 767px) {
  .about .bop_box .list .circle p {
    font-size: 3vw;
    letter-spacing: 0;
    line-height: 1.4;
  }
}
.about .bop_box .list .plus {
  color: #7a7a7a;
  font-size: 300%;
}
@media (max-width: 767px) {
  .about .bop_box .list .plus {
    font-size: 100%;
    line-height: 1.4;
  }
}

/* ---------------------- point ---------------------- */
.point .point_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4em 0;
  margin: 0 auto;
  max-width: 880px;
  gap: 3%;
  position: relative;
}
@media (max-width: 767px) {
  .point .point_box {
    padding: 1em 0 0;
    margin-bottom: -1em;
  }
}
.point .point_box::before {
  content: "";
  background: #fff;
  border-radius: 100%;
  box-shadow: 0px 0px 50px 0px rgba(26, 161, 169, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 630px;
  aspect-ratio: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .point .point_box::before {
    width: 62vw;
  }
}
@media (max-width: 767px) {
  .point .point_box::before {
    width: 80vw;
  }
}
.point .point_box li {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #1ea1aa;
  box-shadow: 0px 0px 10px 0px rgba(26, 161, 169, 0.5);
  margin-bottom: 1.8em;
  max-width: 400px;
  width: 48%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .point .point_box li {
    border-radius: 10px;
  }
}
.point .point_box li .ttl {
  background: #1ea1aa;
  border-radius: 16px 16px 0 0;
  position: relative;
  text-align: center;
  padding: 1.4em 1em 0;
}
@media (max-width: 1024px) {
  .point .point_box li .ttl {
    padding-top: 1em;
  }
}
@media (max-width: 767px) {
  .point .point_box li .ttl {
    border-radius: 6px 6px 0 0;
    padding: 0.8em 0.4em 0;
  }
}
.point .point_box li .ttl::before {
  content: "";
  margin: auto;
  overflow: hidden;
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  height: 34px;
  background: #1aa1a9;
  border-radius: 50%/100% 100% 0 0;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .point .point_box li .ttl::before {
    bottom: -20px;
    height: 22px;
  }
}
.point .point_box li .ttl span {
  color: #fff;
  display: inline-block;
  font-size: clamp(16px, 2.5vw, 26px);
  font-weight: 500;
  position: relative;
}
.point .point_box li .txt {
  padding: 3em 2.2em 2em;
}
@media (max-width: 767px) {
  .point .point_box li .txt {
    line-height: 1.5;
    padding: 2.4em 1.2em 1.6em;
  }
}

/* ---------------------- merit ---------------------- */
.merit_ttl {
  text-align: center;
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .merit_ttl {
    margin-bottom: 1.4em;
  }
}
.merit_ttl span {
  background: #004994;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(16px, 3.2vw, 36px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: inline-block;
  padding: 0.16em 2em;
}
@media (max-width: 1024px) {
  .merit_ttl span {
    padding: 0.4em 2em;
  }
}
@media (max-width: 767px) {
  .merit_ttl span {
    line-height: 1.3;
    padding: 0.4em 2em 0.6em;
  }
}
.merit_list {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  padding: 5em 0 3em;
}
@media (max-width: 1024px) {
  .merit_list {
    flex-direction: column;
    margin: 0 auto;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .merit_list {
    padding: 3em 0 1.4em;
  }
}
.merit_list li {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #7fa4c9;
  flex: 1;
  text-align: center;
  padding: 3em 2.6em;
  position: relative;
}
@media (max-width: 1024px) {
  .merit_list li {
    margin-bottom: 3em;
  }
  .merit_list li:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .merit_list li {
    border-radius: 10px;
    padding: 2.6em 1.8em 2.2em;
    margin-bottom: 2.2em;
  }
}
.merit_list li .num {
  background: #004994;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 500;
  padding: 0.2em 2em;
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
}
.merit_list li .ttl {
  color: #004994;
  font-size: clamp(16px, 2.4vw, 24px);
  line-height: 1.5;
  margin-bottom: 1em;
}
.merit_list li .detail {
  text-align: left;
}
.merit_lead {
  font-size: clamp(16px, 2.6vw, 28px);
  font-weight: 700;
  text-align: center;
  margin: 1em 0 3em;
}
@media (max-width: 767px) {
  .merit_lead {
    text-align: left;
  }
}

.features_list li {
  background: #fff;
  border: 1px solid #1ea1aa;
  border-radius: 30px;
  box-shadow: 0px 0px 10px 0px rgba(26, 161, 169, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2%;
  padding: 4em 5.4em;
  margin-bottom: 2.8em;
}
@media (max-width: 1024px) {
  .features_list li {
    padding: 3.2em 3.4em;
  }
}
@media (max-width: 767px) {
  .features_list li {
    border-radius: 16px;
    flex-direction: column;
    padding: 2.4em 2em;
    margin-bottom: 1.6em;
  }
}
.features_list li .txt_wrap {
  width: 54%;
}
@media (max-width: 767px) {
  .features_list li .txt_wrap {
    width: 100%;
  }
}
.features_list li .num {
  background: #1ea1aa;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  display: inline-block;
  padding: 0.16em 1.8em;
}
.features_list li .ttl {
  font-size: clamp(16px, 2.5vw, 26px);
  line-height: 1.5;
  margin: 1em 0;
}
.features_list li .pic {
  max-width: 400px;
  width: 40%;
}
@media (max-width: 767px) {
  .features_list li .pic {
    margin-top: 1.6em;
    width: 70%;
  }
}

/* ---------------------- cta ---------------------- */
.cta {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta_lead {
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 700;
  margin-bottom: 1em;
}
.cta_main {
  border-top: 1px solid #1ea1aa;
  padding-bottom: 2em;
}
.cta_main .logo {
  padding: 2.4em 0 1em;
}
@media (max-width: 767px) {
  .cta_main .logo {
    padding: 2.2em 0 0.2em;
  }
}
.cta_main .logo img {
  display: block;
  margin: 0 auto 0.6em;
  max-width: 350px;
  width: 100%;
}
@media (max-width: 1024px) {
  .cta_main .logo img {
    max-width: 290px;
  }
}
@media (max-width: 767px) {
  .cta_main .logo img {
    margin: 0 auto 1em;
    max-width: 210px;
  }
}

.cta_bg_01 {
  background: radial-gradient(circle, rgb(255, 255, 255) 10%, rgba(31, 161, 170, 0.1) 100%);
}

.cta_bg_02 {
  background: linear-gradient(190deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 73%, rgba(31, 161, 170, 0.1) 100%);
}

/* ---------------------- function ---------------------- */
.function .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4%;
  margin-top: 6em;
}
@media (max-width: 1024px) {
  .function .list {
    flex-direction: column;
    align-items: center;
    margin-top: 4em;
  }
}
.function .list li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(26, 161, 169, 0.5);
  padding: 4.6em 3.8em;
  position: relative;
  margin-bottom: 6.4em;
  max-width: 550px;
  width: 48%;
}
@media (max-width: 1024px) {
  .function .list li {
    padding: 4em 3em 3.2em;
    margin-bottom: 4.2em;
    width: 100%;
  }
  .function .list li:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .function .list li {
    border-radius: 10px;
    padding: 3.2em 1.8em 2.6em;
    margin-bottom: 2.8em;
  }
}
.function .list li .num {
  background: #1ea1aa;
  border-radius: 100px;
  color: #fff;
  font-size: 4rem;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  line-height: 82px;
  text-align: center;
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1;
  width: 82px;
}
@media (max-width: 1024px) {
  .function .list li .num {
    font-size: 3rem;
    line-height: 64px;
    width: 64px;
  }
}
@media (max-width: 767px) {
  .function .list li .num {
    top: -0.8em;
    font-size: 2.4rem;
    line-height: 46px;
    width: 46px;
  }
}
.function .list li .ttl {
  font-size: clamp(16px, 2.5vw, 26px);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1em;
  min-height: 3em;
}
@media (max-width: 1024px) {
  .function .list li .ttl {
    min-height: auto;
  }
}
.function .list li .txt {
  min-height: 10em;
}
@media (max-width: 1024px) {
  .function .list li .txt {
    min-height: auto;
    margin-bottom: 2.4em;
  }
}
@media (max-width: 767px) {
  .function .list li .txt {
    margin-bottom: 1.6em;
  }
}
.function .list li img {
  display: block;
  margin: 3.2em auto 0;
  max-width: 370px;
  width: 100%;
}
@media (max-width: 767px) {
  .function .list li img {
    margin: 2em auto 0;
  }
}

/* ---------------------- director6 ---------------------- */
.integration_ttl {
  color: #334363;
  font-size: clamp(16px, 3.2vw, 36px);
  text-align: center;
  margin-bottom: 2em;
}
.integration_ttl span {
  color: #0061af;
  font-weight: 700;
}
.integration_list {
  display: flex;
  justify-content: center;
  gap: 1.2%;
  margin: 0 auto;
  max-width: 1010px;
}
@media (max-width: 767px) {
  .integration_list {
    flex-wrap: wrap;
    max-width: 400px;
  }
}
.integration_list li {
  flex: 1;
}
@media (max-width: 767px) {
  .integration_list li {
    flex: auto;
  }
  .integration_list li.is_last {
    display: flex;
    justify-content: center;
    gap: 1.2%;
  }
}
.integration_list .box {
  border: 3px solid #fff;
  border-radius: 18px;
  box-shadow: 2px 2px 16px 0px rgba(174, 196, 220, 0.4);
  position: relative;
  text-align: center;
  width: 32.4%;
}
@media (max-width: 767px) {
  .integration_list .box {
    margin-top: 1.6em;
    width: 48%;
  }
}
.integration_list .box .logo {
  display: block;
  position: absolute;
  top: -0.84em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.integration_list .box .item {
  border-radius: 14px;
  padding: 2em 1em 1.2em;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .integration_list .box .item {
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .integration_list .box .item {
    padding: 1.4em 0.2em 1.2em;
  }
}
.integration_list .box .item::before {
  content: "";
  margin: auto;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%/100% 100% 0 0;
  transform: rotate(180deg);
}
.integration_list .box .ttl {
  background: #fff;
  border: 1px solid;
  border-radius: 100px;
  display: inline-block;
  font-size: 100%;
  font-weight: normal;
  text-align: center;
  padding: 0 2em;
  position: relative;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .integration_list .box .ttl {
    padding: 0 1em;
  }
}
.integration_list .box .detail {
  display: flex;
  justify-content: center;
  gap: 2%;
}
.integration_list .box .detail li {
  line-height: 1.3;
  font-size: 120%;
}
@media (max-width: 1024px) {
  .integration_list .box .detail li {
    font-size: 100%;
  }
}
.integration_list .box .txt_wrap {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.integration_list .box .txt_wrap .txt {
  display: inline-block;
  font-size: 120%;
  line-height: 1.4;
  text-align: left;
}
.integration_list .box .txt_wrap .txt span {
  display: block;
  font-size: 68%;
}
@media (max-width: 767px) {
  .integration_list .box .txt_wrap .txt {
    font-size: 100%;
  }
}
.integration_list .box .note {
  font-size: clamp(10px, 1.5vw, 13px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-top: 0.4em;
}
.integration_list .box .note .icon {
  font-size: 110%;
}
.integration_list .box .note a {
  text-decoration: underline;
}
.integration_list .box.is_director6 {
  background: #e7eff8;
}
.integration_list .box.is_director6 .logo {
  width: 202px;
}
@media (max-width: 1024px) {
  .integration_list .box.is_director6 .logo {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .integration_list .box.is_director6 .logo {
    width: 70%;
  }
}
.integration_list .box.is_director6 .ttl {
  color: #fff;
  background: #1464bf;
}
.integration_list .box.is_director6 .detail,
.integration_list .box.is_director6 .icon {
  color: #1464bf;
}
.integration_list .box.is_director6 .txt {
  color: #2e4060;
}
.integration_list .box.is_director6 .director6_cont {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6%;
  margin: 0.6em 0;
}
.integration_list .box.is_director6 .director6_cont img {
  display: block;
  margin-top: 0.4em;
  width: 81px;
}
@media (max-width: 1024px) {
  .integration_list .box.is_director6 .director6_cont img {
    width: 70px;
  }
}
@media (max-width: 767px) {
  .integration_list .box.is_director6 .director6_cont img {
    width: 30%;
  }
}
.integration_list .box.is_director6 .director6_disc {
  color: #2e4060;
}
.integration_list .box.is_director6 .director6_disc li {
  font-size: 120%;
  text-align: left;
  padding-left: 1.4em;
  position: relative;
}
@media (max-width: 1024px) {
  .integration_list .box.is_director6 .director6_disc li {
    font-size: 100%;
  }
}
@media (max-width: 1024px) {
  .integration_list .box.is_director6 .director6_disc li {
    font-size: 90%;
  }
}
.integration_list .box.is_director6 .director6_disc li::before {
  content: "";
  background: #2e4060;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 8px;
}
@media (max-width: 767px) {
  .integration_list .box.is_director6 .director6_disc li::before {
    left: 5px;
  }
}
.integration_list .box.is_director6 .director6_disc li::after {
  content: "";
  background: #2e4060;
  border-radius: 100%;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 8px;
  left: 0;
}
@media (max-width: 767px) {
  .integration_list .box.is_director6 .director6_disc li::after {
    width: 10px;
    height: 10px;
  }
}
.integration_list .box.is_director6 .director6_disc li:last-of-type::before {
  content: none;
}
.integration_list .box.is_mppcreator {
  background: #ecf4f6;
}
.integration_list .box.is_mppcreator .logo {
  top: -1.32em;
  width: 185px;
}
@media (max-width: 1024px) {
  .integration_list .box.is_mppcreator .logo {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .integration_list .box.is_mppcreator .logo {
    top: -1.12em;
    width: 66%;
  }
}
.integration_list .box.is_mppcreator .ttl {
  color: #1a859e;
  border-color: #1a859e;
}
.integration_list .box.is_mppcreator .txt,
.integration_list .box.is_mppcreator .icon {
  color: #1a859e;
}
.integration_list .box.is_mppcreator sup {
  font-size: 70%;
  vertical-align: top;
}
.integration_list .box.is_mppcreator .pic {
  display: block;
  margin: 1em auto 0;
  max-width: 156px;
  width: 100%;
}
@media (max-width: 767px) {
  .integration_list .box.is_mppcreator .pic {
    max-width: 110px;
  }
}
.integration_list .box.is_irepo {
  background: #fef4e5;
  width: 100%;
}
.integration_list .box.is_irepo .logo {
  width: 180px;
}
@media (max-width: 1024px) {
  .integration_list .box.is_irepo .logo {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .integration_list .box.is_irepo .logo {
    width: 66%;
  }
}
.integration_list .box.is_irepo .ttl {
  color: #fff;
  background: #e66002;
  border: none;
}
.integration_list .box.is_irepo .detail,
.integration_list .box.is_irepo .icon {
  color: #e66002;
}
.integration_list .box.is_mb {
  margin-top: 1.4em;
  background: #f0eaf5;
  width: 100%;
}
@media (max-width: 767px) {
  .integration_list .box.is_mb {
    margin-top: auto;
  }
}
.integration_list .box.is_mb .logo {
  width: 208px;
}
@media (max-width: 1024px) {
  .integration_list .box.is_mb .logo {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .integration_list .box.is_mb .logo {
    width: 72%;
  }
}
.integration_list .box.is_mb .ttl {
  color: #fff;
  background: #6c34a0;
  border: none;
}
.integration_list .box.is_mb .detail,
.integration_list .box.is_mb .icon {
  color: #6c34a0;
}

/* ---------------------- support ---------------------- */
.support_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3%;
}
@media (max-width: 767px) {
  .support_box {
    flex-direction: column;
    gap: 1.6em;
  }
}
.support_box .txt {
  font-size: clamp(13px, 1.8vw, 18px);
  width: 63%;
}
@media (max-width: 767px) {
  .support_box .txt {
    width: 100%;
  }
}
.support_box .pic {
  max-width: 287px;
  width: 34%;
}
@media (max-width: 1024px) {
  .support_box .pic {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .support_box .pic {
    width: 48vw;
  }
}

/* ---------------------- business ---------------------- */
.business {
  padding: 80px 0 160px;
}
@media (max-width: 767px) {
  .business {
    padding: 20px 0 80px;
  }
}
.business_item {
  display: flex;
  justify-content: center;
  gap: 5%;
}
@media (max-width: 767px) {
  .business_item {
    gap: 2%;
  }
}
.business_item > li {
  border-radius: 20px;
  background: rgb(254, 255, 255);
  box-shadow: 0px 0px 20px 0px rgba(26, 161, 169, 0.4);
  padding: 3.4em 1.4em;
  max-width: 420px;
  width: 48%;
}
@media (max-width: 1024px) {
  .business_item > li {
    padding: 2.8em 1.4em;
    width: 40%;
  }
}
@media (max-width: 767px) {
  .business_item > li {
    border-radius: 10px;
    letter-spacing: 0;
    padding: 2em 0.8em;
    width: 49%;
  }
}
.business_item .ttl {
  color: #004994;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1em;
}
.business_item .list_disc {
  margin: 0 auto;
  max-width: 190px;
}
@media (max-width: 767px) {
  .business_item .list_disc {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}

/* ---------------------- company ---------------------- */
.company_ttl {
  font-size: clamp(16px, 2.6vw, 28px);
  text-align: center;
  margin-bottom: 1.2em;
}
.company_ttl img {
  display: block;
  margin: 0.6em auto;
  width: 240px;
}
@media (max-width: 767px) {
  .company_ttl img {
    width: 150px;
  }
}
.company .lead {
  text-align: center;
}
@media (max-width: 767px) {
  .company .lead {
    text-align: left;
  }
}
.company .irepo_bnr {
  margin: 2em auto;
  max-width: 990px;
  width: 100%;
}
.company .irepo_bnr img {
  border-radius: 4px;
  border: 1px solid #ff9500;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
  display: block;
}
.company .irepo_bnr .note {
  color: #565656;
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: right;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .company .irepo_bnr .note {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
.company_data {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4%;
  margin: 3em auto;
  max-width: 990px;
}
@media (max-width: 1024px) {
  .company_data {
    flex-direction: column;
    gap: 1%;
    margin: 2em auto 0;
  }
}
.company_data dl {
  background: #f7f7f7;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: 0.04em;
  margin-bottom: 1em;
  padding: 2em;
  width: 49%;
}
@media (max-width: 1024px) {
  .company_data dl {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .company_data dl {
    line-height: 1.5;
    margin-bottom: 0.6em;
    padding: 2em 1.2em;
  }
}
.company_data dl dt {
  font-weight: 500;
  width: 27%;
}
@media (max-width: 1024px) {
  .company_data dl dt {
    width: 30%;
  }
}

/* ---------------------- news ---------------------- */
.news {
  background: #f8f8f8;
}
.news .sec_ttl {
  color: #2e4061;
}
.news_box {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 3.8em 2em 1.6em;
}
@media (max-width: 767px) {
  .news_box {
    padding: 3.2em 1.8em 0.6em;
  }
}
.news_box .news_item {
  color: #2e4061;
  display: flex;
  margin-bottom: 3em;
}
.news_box .news_item.is-hidden {
  display: none;
}
@media (max-width: 767px) {
  .news_box .news_item {
    border-bottom: 1px solid rgba(46, 64, 97, 0.6);
    flex-direction: column;
    padding-bottom: 1em;
  }
}
.news_box .news_item .main {
  border-right: 1px solid rgba(46, 64, 97, 0.6);
  padding: 0 2em 0 1em;
  width: 40%;
}
.news_box .news_item .main .data {
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 600;
  margin-bottom: 0.2em;
}
.news_box .news_item .main .ttl {
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .news_box .news_item .main {
    border: 0;
    padding: 0;
    width: 100%;
  }
}
.news_box .news_item .sub {
  padding: 0 1.6em;
  width: 60%;
}
.news_box .news_item .sub .detail {
  font-size: clamp(12px, 1.4vw, 15px);
}
.news_box .news_item .sub .detail a {
  color: #1ea1aa;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .news_box .news_item .sub {
    padding: 1em 0;
    width: 100%;
  }
}
.news .more_btn {
  background: #2e4061;
  color: #fff;
  margin: 3em auto 0;
}
.news .more_btn::after {
  content: "";
  transform: translateY(-50%) rotate(135deg);
}

/* news開閉 */
.news_wrap.is-open .news_item.is-hidden {
  display: flex;
  animation: news_fadein 0.35s ease forwards;
}

/* anime */
@keyframes news_fadein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------------------- breadcrumb ---------------------- */
.breadcrumb {
  font-size: clamp(12px, 1.2vw, 14px);
}
.breadcrumb a {
  color: #1ea1aa;
}

/* ---------------------- function_main ---------------------- */
.function_main {
  position: relative;
  z-index: 1;
}
.function_main .ttl_wrap {
  margin-bottom: 3em;
}
.function_main .ttl_wrap .ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6em;
  font-size: clamp(20px, 4vw, 40px);
  margin-bottom: 1.2em;
}
.function_main .ttl_wrap .ttl .logo img {
  display: block;
  max-width: 330px;
  width: 30vw;
}
@media (max-width: 767px) {
  .function_main .ttl_wrap .ttl .logo img {
    width: 40vw;
  }
}
.function_main .ttl_wrap .ttl .txt {
  font-weight: 700;
}
.function_main .ttl_wrap .ttl .txt .font_en {
  display: inline-block;
  font-size: 175%;
  line-height: 1;
  margin: 0 0.04em;
}
.function_main .ttl_wrap .lead {
  font-size: clamp(16px, 2.5vw, 26px);
  text-align: center;
}
@media (max-width: 767px) {
  .function_main .ttl_wrap .lead {
    text-align: left;
  }
}
.function_main .main_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6%;
  margin-top: 6em;
}
@media (max-width: 1024px) {
  .function_main .main_list {
    gap: 4.6%;
  }
}
@media (max-width: 767px) {
  .function_main .main_list {
    flex-direction: column;
    margin-top: 2em;
  }
}
.function_main .main_list li {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #1ea1aa;
  box-shadow: 0px 0px 10px 0px rgba(26, 161, 169, 0.5);
  padding: 2.4em 1.8em 3.4em;
  position: relative;
  margin-bottom: 4.4em;
  max-width: 550px;
  width: 47%;
}
@media (max-width: 767px) {
  .function_main .main_list li {
    border-radius: 10px;
    padding: 1.4em 1.8em 2.4em;
    margin-bottom: 2em;
    width: 100%;
  }
}
.function_main .main_list li .num {
  font-size: clamp(30px, 3.6vw, 40px);
  text-align: center;
}
.function_main .main_list li .ttl {
  font-size: clamp(18px, 2.8vw, 30px);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  min-height: 3.2em;
}
.function_main .main_list li .ttl span {
  font-size: 70%;
  font-weight: inherit;
}
@media (max-width: 767px) {
  .function_main .main_list li .ttl {
    min-height: auto;
  }
}
.function_main .main_list li img {
  display: block;
  margin: 2em auto;
  max-width: 370px;
  width: 100%;
}
@media (max-width: 767px) {
  .function_main .main_list li img {
    margin: 1.6em auto 1.8em;
  }
}
.function_main .main_list li .btn {
  margin: 0 auto;
  width: 300px;
}
@media (max-width: 1024px) {
  .function_main .main_list li .btn {
    width: 30vw;
  }
}
@media (max-width: 767px) {
  .function_main .main_list li .btn {
    width: 62vw;
  }
}

/* ---------------------- function_detail ---------------------- */
.function_detail {
  position: relative;
  z-index: 1;
}
.function_detail .function_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .function_detail .function_head {
    flex-direction: column;
    gap: 2em;
  }
}
.function_detail .function_head .item {
  width: 47%;
}
@media (max-width: 767px) {
  .function_detail .function_head .item {
    width: 100%;
  }
}
.function_detail .function_head .ttl {
  line-height: 1.5;
  margin-bottom: 0.8em;
}
@media (max-width: 767px) {
  .function_detail .function_head .ttl {
    line-height: 1.3;
  }
}
.function_detail .function_head .ttl .num {
  color: #1ea1aa;
  display: block;
  font-size: clamp(20px, 2.9vw, 32px);
  font-weight: 700;
  margin-bottom: 0.3em;
}
.function_detail .function_head .ttl .num .font_en {
  display: inline-block;
  font-size: 110%;
  margin-left: 0.2em;
}
.function_detail .function_head .ttl .txt {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 700;
}
.function_detail .function_head .ttl .txt .txt_s {
  display: inline-block;
  font-size: 80%;
  font-weight: inherit;
  line-height: 1.7;
}
.function_detail .function_head .pic {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.2em 0.8em;
  max-width: 570px;
  width: 48%;
}
@media (max-width: 767px) {
  .function_detail .function_head .pic {
    border-radius: 10px;
    padding: 1.4em;
    width: 100%;
  }
}
.function_detail .function_head .pic.is_01 img {
  max-width: 540px;
}
.function_detail .function_head .pic.is_02 img {
  max-width: 530px;
}
.function_detail .function_head .pic.is_03 img {
  max-width: 515px;
}
.function_detail .function_head .pic.is_04 img {
  margin: 1em 0;
  max-width: 450px;
}
.function_detail .function_head .pic.is_05 img {
  margin: 3em 0;
  max-width: 250px;
}
@media (max-width: 767px) {
  .function_detail .function_head .pic.is_05 img {
    max-width: 180px;
  }
}
.function_detail .function_head .pic p {
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0.8em;
}
.function_detail .function_head .pic img {
  width: 100%;
}
.function_detail .function_box {
  background: #f3fafb;
  border: 2px solid #1ea1aa;
  border-radius: 40px;
  box-shadow: 0px 0px 40px 0px rgba(26, 161, 169, 0.4);
  padding: 4.8em;
  margin-top: 5.2em;
}
@media (max-width: 1024px) {
  .function_detail .function_box {
    padding: 4.6em 3.4em;
  }
}
@media (max-width: 767px) {
  .function_detail .function_box {
    border-radius: 20px;
    padding: 3em 1.8em;
    margin-top: 2em;
  }
}
.function_detail .function_box .box_ttl {
  font-size: clamp(18px, 2.8vw, 32px);
  line-height: 1.5;
  margin-bottom: 0.8em;
}
.function_detail .function_box .box_ttl .txt_s {
  font-size: 85%;
  font-weight: inherit;
}
@media (max-width: 767px) {
  .function_detail .function_box .box_ttl {
    margin-bottom: 1em;
  }
}
.function_detail .function_box .inner_box {
  background: #fff;
  border-radius: 20px;
  padding: 4.8em 3.6em;
  margin-top: 3.4em;
}
@media (max-width: 1024px) {
  .function_detail .function_box .inner_box {
    padding: 4em 3em;
  }
}
@media (max-width: 767px) {
  .function_detail .function_box .inner_box {
    border-radius: 10px;
    padding: 2.6em 1.6em;
    margin-top: 2.4em;
  }
}
.function_detail .function_box .example {
  margin-bottom: 5em;
}
.function_detail .function_box .example:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .function_detail .function_box .example {
    margin-bottom: 3.6em;
  }
}
.function_detail .function_box .example_ttl {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  font-size: clamp(16px, 2.6vw, 28px);
  line-height: 1.4;
  margin-bottom: 1.2em;
}
.function_detail .function_box .example_ttl .num {
  background: #1ea1aa;
  border-radius: 100px;
  display: block;
  color: #fff;
  font-size: 85%;
  font-weight: 700;
  text-align: center;
  padding: 0.08em 0.6em 0.02em;
  width: 5em;
}
.function_detail .function_box .example_ttl .ttl_txt {
  color: #1ea1aa;
  display: block;
  font-weight: 700;
}
.function_detail .function_box .example .txt {
  margin-bottom: 3em;
}
.function_detail .function_box .example .pic {
  margin: 2em auto 0;
  max-width: 500px;
  width: 100%;
}
@media (max-width: 767px) {
  .function_detail .function_box .example .pic {
    max-width: 360px;
  }
}
.function_detail .function_box .example .pic.is_col {
  display: flex;
  max-width: 700px;
  align-items: flex-start;
  justify-content: center;
  gap: 4%;
}
.function_detail .function_box .example .pic.is_col div {
  max-width: 320px;
  width: 48%;
}
@media (max-width: 767px) {
  .function_detail .function_box .example .pic.is_col {
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
  }
  .function_detail .function_box .example .pic.is_col div {
    max-width: 240px;
    width: 80%;
  }
}
.function_detail .function_box .list_box {
  background: #e8f5f6;
  border-radius: 14px;
  padding: 2em 2.4em;
  margin: 0 auto 3em;
  max-width: 530px;
}
@media (max-width: 767px) {
  .function_detail .function_box .list_box {
    border-radius: 8px;
    line-height: 1.6;
  }
}
.function_detail .function_box .list_box ol {
  margin: 0 auto;
  max-width: 420px;
}
.function_detail .function_box .list_box ol li {
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 500;
  text-indent: -0.72em;
  padding-left: 0.72em;
}
.function_detail .function_box .list_box ol li span {
  color: #1ea1aa;
  display: inline-block;
  font-size: 120%;
  font-weight: 700;
  margin-right: 0.1em;
}
.function_detail .function_box .box_item {
  margin-bottom: 5em;
}
.function_detail .function_box .box_item:last-of-type {
  margin-bottom: 0;
}
.function_detail .function_box .box_item .ttl {
  font-size: clamp(16px, 2.6vw, 28px);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0.8em;
}
.function_detail .function_box .box_item .bottom_ttl {
  font-size: clamp(15px, 2vw, 22px);
  line-height: 1.4;
  text-align: center;
  margin-top: 0.8em;
}
.function_detail .function_box .box_item .point_txt {
  text-align: center;
  margin-top: 0.6em;
}
.function_detail .function_box .box_item .point_txt span {
  border-bottom: 2px solid #1ea1aa;
  font-size: clamp(15px, 2vw, 22px);
  line-height: 1.5;
  display: inline-block;
}
.function_detail .function_box .box_item .point_txt strong {
  color: #1ea1aa;
}
.function_detail .function_box .box_item .pic {
  margin: 0.4em auto;
  max-width: 665px;
  width: 100%;
}
.function_detail .function_box .box_item .pic.is_m {
  max-width: 655px;
}
.function_detail .function_box .box_item .pic.is_s {
  max-width: 500px;
}
@media (max-width: 767px) {
  .function_detail .function_box .box_item .pic {
    max-width: 400px !important;
  }
}
.function_detail .function_box .txt_block {
  margin: 4em auto;
  max-width: 900px;
  width: 100%;
}
@media (max-width: 767px) {
  .function_detail .function_box .txt_block {
    margin: 2.6em auto;
  }
}
.function_detail .function_box .txt_block .ttl {
  background: #1ea1aa;
  border-radius: 5px;
  color: #fff;
  font-size: clamp(15px, 2.4vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  padding: 0.1em 1em 0.2em;
  margin-bottom: 1.4em;
}
@media (max-width: 767px) {
  .function_detail .function_box .txt_block .ttl {
    padding: 0.4em 1em;
  }
}
.function_detail .function_box .txt_block .list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .function_detail .function_box .txt_block .list {
    flex-direction: column;
    gap: 1.2em;
    letter-spacing: 0;
  }
}
.function_detail .function_box .txt_block .list > li {
  background: #e8f5f6;
  border: 2px solid #1ea1aa;
  border-radius: 10px;
  padding: 2em 2.4em 2.6em;
  width: 48%;
}
@media (max-width: 767px) {
  .function_detail .function_box .txt_block .list > li {
    padding: 1.4em 1.6em 2em;
    width: 100%;
  }
}
.function_detail .function_box .txt_block .list.is_col1 {
  flex-direction: column;
  gap: 1.2em;
}
.function_detail .function_box .txt_block .list.is_col1 li {
  width: 100%;
}
.function_detail .function_box .txt_block .list .list_ttl {
  background: #1ea1aa;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(15px, 2vw, 22px);
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  padding: 0.04em 0.8em 0.06em;
  margin-bottom: 1em;
}
.function_detail .function_box .txt_block .list .num_ttl {
  font-size: clamp(13px, 1.8vw, 18px);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 1em;
}
.function_detail .function_box .txt_block .list .num_ttl > span {
  color: #1ea1aa;
  display: inline-block;
  font-size: 120%;
  font-weight: inherit;
  margin-right: 0.2em;
}
.function_detail .function_box .txt_block .list ul {
  padding: 0 2.4em;
}
@media (max-width: 1024px) {
  .function_detail .function_box .txt_block .list ul {
    padding: 0 0 0 1.8em;
  }
}
.function_detail .function_box .txt_block .list ul li {
  font-weight: 500;
}
.function_detail .function_box .txt_block .txt {
  margin-top: 2em;
}
.function_detail .function_box .txt_block .link_arrow {
  display: inline-block;
  color: #1ea1aa;
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 700;
  text-decoration: underline;
  position: relative;
  margin-bottom: 0.4em;
}
.function_detail .function_box .txt_block .link_arrow:first-of-type {
  margin-top: 2em;
}
.function_detail .function_box .txt_block .link_arrow::before {
  content: "";
  background: #1ea1aa;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 22px;
  height: 22px;
  right: -30px;
}
.function_detail .function_box .txt_block .link_arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: -21px;
}

/* ---------------------- page_404 ---------------------- */
.page_404 {
  padding: 3em 0 8em;
  text-align: center;
}
.page_404 .ttl {
  font-size: clamp(18px, 2.8vw, 30px);
  margin-bottom: 1em;
}/*# sourceMappingURL=style.css.map */