@charset "UTF-8";
body, html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.875;
  color: #485157;
  -webkit-text-size-adjust: none;
}
@media all and (max-width: 749px) {
  body, html {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.76;
  font-weight: normal;
  font-size: 1rem;
}

html, body, div, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

b, strong, th {
  font-weight: normal;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input, textarea, select, button {
  font-size: 1rem;
  color: #485157;
  font-family: "Noto Sans JP", sans-serif;
}

button, input[type=submit], input[type=reset], input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
}

/*select::-ms-expand {
	display: none;
}*/
input[type=text], input[type=email], input[type=tel], input[type=search], textarea {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgba(129, 129, 129, 0.6);
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(129, 129, 129, 0.6);
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: rgba(129, 129, 129, 0.6);
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: rgba(129, 129, 129, 0.6);
}

input::placeholder, textarea::placeholder {
  color: rgba(129, 129, 129, 0.6);
}

button, input[type=submit], input[type=reset], input[type=button] {
  padding: 0;
  cursor: pointer;
  display: inline-block;
}

ol, ul {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

iframe {
  width: 100%;
  height: 100%;
}

img {
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
}

svg {
  vertical-align: top;
}

a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

:focus {
  outline: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media all and (max-width: 749px) {
  .drawer-nav {
    position: fixed;
    z-index: 900;
    width: 100%;
    top: 56px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;
  }
  .drawer-menu {
    background: #353E43;
    height: calc(100vh - 56px);
    max-height: 100dvh;
    overflow-y: auto;
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }
  #drawer-overlay {
    background-color: transparent;
    position: fixed;
    z-index: 750;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
    overflow-y: scroll;
  }
  #drawer-overlay::before {
    content: "";
    width: 1px;
    height: calc(100% + 1px);
    display: block;
  }
  .drawer-opened #drawer-overlay {
    display: block;
  }
  .drawer-opened .drawer-nav {
    pointer-events: auto;
    opacity: 1;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.required {
  display: inline-block;
  position: relative;
  top: -1px;
  width: 37px;
  padding-bottom: 1px;
  line-height: 23px;
  background-color: #00B6B2;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
}
@media all and (max-width: 749px) {
  .required {
    width: 35px;
    line-height: 19px;
  }
}

input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
  display: block;
  width: 100%;
  background: #eaeff2;
  font-size: 14px;
  padding: 0 15px;
  border-radius: 5px;
  border: none;
}

input[type=text], input[type=email], input[type=tel], input[type=password] {
  height: 60px;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #eaeff2;
}
input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #353E43;
  content: "";
}
@media all and (max-width: 749px) {
  input[type=radio] {
    width: 20px;
    height: 20px;
  }
  input[type=radio]:checked:before {
    width: 8px;
    height: 8px;
  }
}

textarea {
  height: 470px;
  resize: vertical;
  padding: 15px;
}

@media all and (max-width: 749px) {
  input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
    border-block-width: 1px;
  }
  input[type=text], input[type=email], input[type=tel], input[type=password] {
    height: 46px;
  }
  textarea {
    height: 294px;
  }
}
.select_01 {
  display: inline-block;
  width: 100%;
  max-width: 263px;
  height: 50px;
  position: relative;
  border: 1px solid #00B6B2;
  border-radius: 50px;
  text-align: center;
  overflow: hidden;
}
.select_01_current {
  position: absolute;
  line-height: 48px;
  font-size: 14px;
  font-weight: 600;
  color: #00B6B2;
  width: 100%;
  z-index: 100;
  pointer-events: none;
  background-color: #fff;
}
.select_01 select {
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50px;
  height: 100%;
  width: 100%;
  text-align: center;
  color: #00B6B2;
  font-size: 14px;
}
.select_01::after {
  content: "";
  z-index: 200;
  display: block;
  position: absolute;
  width: 6.41px;
  height: 10px;
  top: calc(50% - 5px);
  right: 22px;
  rotate: 90deg;
  background: url(../img/common/arrow_01_mc.svg) center center no-repeat;
}
@media all and (max-width: 749px) {
  .select_01 {
    max-width: 255px;
  }
  .select_01_current {
    font-size: 13px;
  }
  .select_01 select {
    height: 44px;
    font-size: 13px;
  }
  .select_01::after {
    right: 15px;
  }
}

input[type=submit], button {
  color: #00B6B2;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media screen and (min-width: 750px) {
  input[type=submit]:hover, button:hover {
    color: #fff;
  }
}

body {
  position: relative;
  background: #fff;
  color: #485157;
}

a {
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

@media all and (max-width: 749px) {
  html {
    scroll-padding-top: 76px;
  }
  .hide_sp {
    display: none !important;
  }
}
@media screen and (min-width: 750px) {
  html {
    scroll-padding-top: 106px;
  }
  .hide_pc {
    display: none !important;
  }
  .page-under {
    padding-top: 76px;
  }
}
#contents {
  overflow: hidden;
  position: relative;
  z-index: 700;
  padding-top: 20px;
}
@media all and (max-width: 749px) {
  #contents {
    padding-top: 45px;
  }
}

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  height: 90px;
  background: #fff;
}
.header_logo {
  z-index: 910;
  color: #485157;
}
.header_logo_text {
  display: block;
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
}
.header_logo_text em {
  font-family: "Asap", sans-serif;
  color: #00B6B2;
}
.header_logo_text i {
  font-weight: 300;
}
@media all and (max-width: 749px) {
  .header {
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 15px;
  }
  .header_logo img {
    display: block;
    width: 95.59px;
    height: 20px;
  }
  .header_logo_text {
    display: block;
    margin-top: 6px;
    font-size: 10px;
  }
}
@media screen and (min-width: 750px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    padding-left: 25px;
    padding-right: 20px;
  }
  .header_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 8px 30px;
    margin-bottom: 11px;
  }
  .header_logo_text {
    position: relative;
    top: -1px;
  }
}

#headerFixed {
  position: fixed;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  border-bottom: 1px solid #EAEFF2;
}
#headerFixed.is-show {
  top: 0;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 750px) {
  #headerFixed {
    height: 76px;
  }
  #headerFixed .gnav_list a:not(.btn_contact) {
    font-size: 14px;
  }
  #headerFixed .gnav_contact {
    width: 198px;
  }
  #headerFixed .btn_contact {
    font-size: 13px;
  }
}

.gnav {
  position: relative;
  z-index: 800;
  letter-spacing: 0;
  margin-left: auto;
}
@media all and (max-width: 749px) {
  .gnav_menu {
    padding: 24px 0 80px;
  }
  .gnav_list {
    width: 285px;
    margin: 0 auto;
  }
  .gnav_list a:not(.btn_contact) {
    color: #BDC7CE;
  }
  .gnav_list .nav_lv_1 {
    margin-left: 17px;
  }
  .gnav_contact {
    margin-top: 40px;
  }
  .gnav_contact .btn_contact {
    background: none;
    padding: 14px 0;
  }
  .gnav .nav_list {
    line-height: 2;
  }
  .gnav .nav_list .nav_lv_1 > a {
    font-size: 22px;
    border-bottom: 1px solid #BDC7CE;
    padding-bottom: 3px;
  }
  .gnav .nav_list .nav_lv_1 > ul {
    margin-top: 18px;
  }
  .gnav .nav_list .nav_lv_1:nth-child(2) {
    margin-top: 20px;
  }
  .gnav .nav_list .nav_lv_2 {
    font-size: 14px;
  }
  .gnav .nav_list .nav_lv_3 a::before {
    content: "- ";
  }
}
@media screen and (min-width: 750px) {
  .gnav {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .gnav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.9282576867%;
    font-weight: 600;
    white-space: nowrap;
  }
  .gnav_list a:not(.btn_contact) {
    font-size: 15px;
    color: #485157;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
  }
  .gnav_list a:not(.btn_contact):hover {
    color: #00B6B2;
  }
  .gnav_contact {
    width: 210px;
  }
}

@media all and (max-width: 749px) {
  .drawer-toggle {
    height: 36px;
    width: 36px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 910;
    background-color: #00B6B2;
    border-radius: 50%;
  }
  .drawer-toggle span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 10px;
    height: 2px;
    background: #fff;
    width: 16px;
    border-radius: 2px;
    -webkit-transform-origin: 0;
        -ms-transform-origin: 0;
            transform-origin: 0;
  }
  .drawer-toggle span:nth-of-type(1) {
    top: 12px;
  }
  .drawer-toggle span:nth-of-type(2) {
    top: 17px;
  }
  .drawer-toggle span:nth-of-type(3) {
    top: 22px;
  }
  .drawer-toggle.opened span:nth-of-type(1) {
    rotate: 45deg;
    top: 11.5px;
    left: 13px;
  }
  .drawer-toggle.opened span:nth-of-type(3) {
    rotate: -45deg;
    top: 22.5px;
    left: 13px;
  }
  .drawer-toggle.opened span:nth-of-type(2) {
    opacity: 0;
  }
}
@media screen and (min-width: 750px) {
  .drawer-toggle {
    display: none;
  }
}

@media all and (max-width: 749px) {
  body.drawer-opened .header {
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
    overflow-x: scroll;
  }
  body.drawer-opened .header::after {
    content: "";
    width: 1px;
    height: calc(100% + 1px);
    display: block;
  }
}
#pageTop {
  display: none;
  position: fixed;
  z-index: 790;
  right: 15px;
  bottom: 15px;
  height: 40px;
  width: 40px;
  background: rgba(72, 81, 87, 0.5) url(../img/common/arrow_01_wh.svg) calc(50% + 1px) center no-repeat;
  border: 1px solid rgba(0, 182, 178, 0.5);
  border-radius: 50%;
  font-size: 1px;
  color: transparent;
  rotate: -90deg;
}
@media all and (max-width: 749px) {
  #pageTop {
    height: 32px;
    width: 32px;
    background-size: 5.41px 8px;
  }
}
@media screen and (min-width: 750px) {
  #pageTop {
    -webkit-transition: border-color 0.3s ease-out, background-color 0.3s ease-out;
    transition: border-color 0.3s ease-out, background-color 0.3s ease-out;
  }
  #pageTop:hover {
    border-color: #00B6B2;
    background-color: #00B6B2;
  }
}

.footer {
  margin-top: 90px;
}
.footer .scroll_wrap {
  margin-bottom: 85px;
}
.footer .bnr_calomama {
  margin-top: 85px;
  margin-bottom: 80px;
}
.footer_bottom {
  background: #485157;
  color: #EAEFF2;
  padding: 60px 70px 22px 45px;
  font-size: 13px;
}
.footer_bottom a {
  color: #BDC7CE;
}
.footer_com_logo {
  margin-bottom: 17px;
}
.footer_com_info {
  line-height: 2;
}
.footer_com_url {
  font-family: "Asap", sans-serif;
}
.footer_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 20px;
  margin-top: 50px;
}
.footer_copyright small {
  font-family: "Asap", sans-serif;
  font-size: 13px;
  color: #79858D;
}
@media all and (max-width: 749px) {
  .footer {
    margin-top: 60px;
  }
  .footer .scroll_wrap {
    margin-bottom: 60px;
  }
  .footer .bnr_calomama {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .footer_bottom {
    padding: 30px 15px 55px;
    font-size: 12px;
  }
  .footer_com_logo {
    width: 120px;
    margin-bottom: 15px;
  }
  .footer_com_url {
    font-size: 13px;
  }
  .footer_link {
    margin-top: 20px;
  }
  .footer_copyright {
    margin-top: 25px;
    text-align: right;
  }
  .footer_copyright small {
    font-size: 11px;
  }
}
@media screen and (min-width: 750px) {
  .footer {
    margin-top: 66px;
  }
  .footer_nav {
    border-radius: 30px 30px 0px 0px;
    background: #353e43;
    padding: 90px 45px;
  }
  .footer_nav_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    max-width: 1088px;
    margin: 0 auto;
  }
  .footer_nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 622px;
    width: 57.1691176471%;
  }
  .footer_nav_list .nav_lv_1 {
    width: 50%;
  }
  .footer_nav_contact {
    width: 100%;
    margin-top: 45px;
  }
  .footer_nav_contact .btn_contact {
    padding: 14px 0;
  }
  .footer_nav .nav_list {
    line-height: 2;
  }
  .footer_nav .nav_list a:not(.btn_contact) {
    color: #BDC7CE;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
  }
  .footer_nav .nav_list a:not(.btn_contact):hover {
    color: #fff;
  }
  .footer_nav .nav_list .nav_lv_1 > a {
    font-size: 22px;
  }
  .footer_nav .nav_list .nav_lv_1 > ul {
    margin-top: 18px;
  }
  .footer_nav .nav_list .nav_lv_2 {
    font-size: 14px;
  }
  .footer_nav .nav_list .nav_lv_3 a::before {
    content: "- ";
  }
  .footer_logo img {
    display: block;
    margin-bottom: 25px;
  }
  .footer_logo_text {
    display: block;
    color: #EAEFF2;
    font-size: 14px;
  }
  .footer_logo_text b {
    font-family: "Asap", sans-serif;
  }
  .footer_bottom a {
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
  }
  .footer_bottom a:hover {
    color: #fff;
  }
  .footer_bottom_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    max-width: 1088px;
    margin: 0 auto;
  }
}

@media all and (max-width: 749px) {
  .inner_01 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 750px) {
  .inner_01 {
    padding-left: 44px;
    padding-right: 44px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}

@media all and (max-width: 749px) {
  .inner_02 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 750px) {
  .inner_02 {
    max-width: 1176px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 44px;
    padding-right: 44px;
  }
}

@media screen and (min-width: 750px) {
  .l_c2_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .l_c2_01.__reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .l_c2_01_left {
    max-width: 530px;
    width: 48.7132352941%;
  }
  .l_c2_01_right {
    max-width: 530px;
    width: 48.7132352941%;
  }
}

.frame_01 {
  padding: 12px 20px;
  background: #F2F6F8;
  border-radius: 5px;
}
@media all and (max-width: 749px) {
  .frame_01 {
    padding: 12px 15px;
  }
}

.textblock_01 > p:not(:last-child), .textblock_01 > ul:not(:last-child), .textblock_01 > ol:not(:last-child), .textblock_01 > dl:not(:last-child) {
  margin-bottom: 1.8em;
}
.textblock_01 > section:not(:first-child), .textblock_01 > div:not(:first-child) {
  margin-top: 2.5em;
}
.textblock_01 strong {
  font-weight: 600;
}

.dl_01 {
  --dl_01-dt-w:5em;
}
.dl_01 dt {
  font-weight: 600;
  color: #00B6B2;
}
@media all and (max-width: 749px) {
  .dl_01 {
    --dl_01-dt-w:90px;
  }
}
@media screen and (min-width: 750px) {
  .dl_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .dl_01 dt {
    width: var(--dl_01-dt-w);
  }
  .dl_01 dd {
    width: calc(100% - var(--dl_01-dt-w));
  }
}

.js_stretch_ac_container {
  position: relative;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
}
.js_stretch_ac_mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 67px;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 100%);
}
.js_stretch_ac_trigger_wrap {
  margin-top: 15px;
  text-align: center;
}
@media all and (max-width: 749px) {
  .js_stretch_ac_container {
    height: 177px;
  }
  .js_stretch_ac_mask {
    height: 110px;
  }
}
@media screen and (min-width: 750px) {
  .js_stretch_ac_container {
    height: 180px;
  }
}

.ankerlink {
  margin-bottom: 86px;
  padding-bottom: 50px;
  border-bottom: 20px solid #F2F6F8;
}
.ankerlink_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 20px;
}
@media all and (max-width: 749px) {
  .ankerlink {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom-width: 15px;
  }
  .ankerlink_list {
    gap: 5px 5px;
  }
}

.bnr_calomama {
  text-align: center;
}
.bnr_calomama img {
  image-rendering: auto;
}
@media all and (max-width: 749px) {
  .bnr_calomama img {
    width: 375px;
  }
}

body {
  --scroll-gap: 54px;
}
@media all and (max-width: 749px) {
  body {
    --scroll-gap: 29px;
  }
}

@-webkit-keyframes infiniteScroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-50% - var(--scroll-gap) / 2));
            transform: translateX(calc(-50% - var(--scroll-gap) / 2));
  }
}

@keyframes infiniteScroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-50% - var(--scroll-gap) / 2));
            transform: translateX(calc(-50% - var(--scroll-gap) / 2));
  }
}
.scroll_wrap {
  width: 100%;
  overflow: hidden;
}
.scroll_track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: infiniteScroll 25s linear infinite;
          animation: infiniteScroll 25s linear infinite;
}
.scroll_track.__reverse {
  animation-direction: reverse;
}
.scroll_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0 var(--scroll-gap);
}
.scroll_inner img {
  min-width: 1666px;
}
@media all and (max-width: 749px) {
  .scroll_inner img {
    min-width: 925px;
    width: 925px;
  }
}
@media all and (max-width: 749px) {
  .news_list_item:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 750px) {
  .news_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 50px 2.5735294118%;
  }
  .news_list_item {
    width: 31.6176470588%;
  }
}

.news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #485157;
}
.news_item_date {
  font-size: 13px;
  color: #bdc7ce;
  -webkit-box-ordinal-group: 41;
      -ms-flex-order: 40;
          order: 40;
}
.news_item_title {
  -webkit-box-ordinal-group: 31;
      -ms-flex-order: 30;
          order: 30;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}
.news_item_ctg {
  -webkit-box-ordinal-group: 21;
      -ms-flex-order: 20;
          order: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  font-size: 13px;
  line-height: 27px;
  font-weight: 600;
}
.news_item_ctg li {
  padding: 0 10px 1px;
  border-radius: 14px;
  background: #00b6b2;
  color: #fff;
}
.news_item_ctg li.__new {
  background: #F00000;
}
.news_item_img {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 14px;
  background: transparent;
  border: 1px solid #eaeff2;
}
.news_item_img img {
  width: 100%;
  aspect-ratio: 344/230;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: scale 0.3s ease-out;
  transition: scale 0.3s ease-out;
}
@media all and (max-width: 749px) {
  .news_item_ctg {
    font-size: 12px;
    line-height: 24px;
  }
  .news_item_img img {
    height: 61.3333333333vw;
  }
}
@media screen and (min-width: 750px) {
  .news_item {
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
  }
  .news_item:hover {
    color: #00B6B2;
  }
  .news_item:hover .news_item_img img {
    scale: 1.15;
  }
}

.related {
  margin-top: 50px;
  padding-top: 46px;
  padding-bottom: 46px;
  background-color: #F2F6F8;
}
@media all and (max-width: 749px) {
  .related {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.biz_case_icon {
  display: inline-block;
  background-color: #00B6B2;
  border-radius: 28px;
  line-height: 27px;
  font-size: 18px;
  font-family: "Asap", sans-serif;
  letter-spacing: -0.03em;
  padding: 0 13px 2px;
  color: #fff;
}
.biz_case_icon b {
  font-weight: 600;
}
.biz_meti_info_item:not(:last-child) {
  margin-bottom: 15px;
}
.biz_meti_info_title {
  margin-bottom: 5px;
  font-weight: 600;
  color: #00B6B2;
}
.biz_meti_info_text {
  font-size: 14px;
}
@media all and (max-width: 749px) {
  .biz_meti_info:not(:last-child) {
    margin-bottom: 10px;
  }
  .biz_case_icon {
    border-radius: 25px;
    line-height: 24px;
    font-size: 16px;
    padding: 0 12px 1px;
  }
}

.wp_post h1 {
  font-size: 30px;
  line-height: 146.6666666667%;
}
.wp_post_content {
  --list-mark-w:20px;
}
.wp_post_content h2, .wp_post_content h3, .wp_post_content h4 {
  font-weight: 600;
}
.wp_post_content h2 {
  font-size: 24px;
  color: #fff;
  line-height: 140%;
  border-radius: 5px;
  background-color: #00B6B2;
  margin-top: 80px;
  padding: 10px 15px 13px;
}
.wp_post_content h3 {
  font-size: 18px;
  color: #353E43;
  margin-top: 50px;
  margin-bottom: 32px;
  line-height: 155.5555555556%;
}
.wp_post_content p, .wp_post_content ul, .wp_post_content ol, .wp_post_content dl, .wp_post_content figure, .wp_post_content .frame {
  margin-top: 40px;
}
.wp_post_content p:not(:last-child), .wp_post_content ul:not(:last-child), .wp_post_content ol:not(:last-child), .wp_post_content dl:not(:last-child), .wp_post_content figure:not(:last-child), .wp_post_content .frame:not(:last-child) {
  margin-bottom: 40px;
}
.wp_post_content ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wp_post_content ul > li::before {
  content: "●";
  font-size: 13px;
  padding-top: 5px;
  width: var(--list-mark-w);
  min-width: var(--list-mark-w);
  max-width: var(--list-mark-w);
}
.wp_post_content ol {
  counter-reset: list_num_01 0;
}
.wp_post_content ol > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wp_post_content ol > li::before {
  counter-increment: list_num_01 1;
  content: counter(list_num_01) ".";
  color: #00B6B2;
  font-weight: 500;
  width: var(--list-mark-w);
  min-width: var(--list-mark-w);
  max-width: var(--list-mark-w);
}
.wp_post_content iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.wp_post_content video {
  display: block;
  width: 100%;
}
.wp_post_content img {
  display: block;
  margin: 0 auto;
}
.wp_post_content figcaption, .wp_post_content .wp-caption-text, .wp_post_content .caption {
  margin-top: 10px;
  font-size: 14px;
  color: #79858d;
  text-align: left;
  line-height: 1.6;
}
.wp_post_content .caption {
  display: inline-block;
}
.wp_post_content b, .wp_post_content strong {
  font-weight: 600;
}
.wp_post_content u {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-color: #83716a;
}
.wp_post_content a {
  color: #00B6B2;
  display: inline-block;
  position: relative;
}
.wp_post_content a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid #00B6B2;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}
.wp_post_content a[target=_blank] {
  margin-right: 5px;
}
.wp_post_content a[target=_blank]::before {
  width: calc(100% - 14px);
}
.wp_post_content a[target=_blank]::after {
  content: "";
  display: inline-block;
  position: relative;
  top: -1px;
  width: 9px;
  height: 9px;
  margin-left: 5px;
  background: url(../img/common/icon_blank_mc.svg) center center no-repeat;
  background-size: contain;
}
.wp_post_content .frame {
  padding: 20px;
  background: #F2F6F8;
  border-radius: 5px;
}
.wp_post_content .__provider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.wp_post_content .__provider dt {
  color: #79858D;
  margin-top: 3px;
}
.wp_post_content .__provider dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: calc(100% - 8em);
  margin-top: 3px;
}
.wp_post_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.wp_post .m-icon {
  display: none;
}
@media all and (max-width: 749px) {
  .wp_post h1 {
    font-size: 20px;
  }
  .wp_post_content h2 {
    margin-top: 60px;
    padding: 8px 10px 10px;
    border-radius: 3px;
    font-size: 20px;
  }
  .wp_post_content h3 {
    margin-top: 45px;
    font-size: 16px;
    margin-bottom: 25px;
  }
  .wp_post_content p, .wp_post_content ul, .wp_post_content ol, .wp_post_content dl, .wp_post_content figure {
    margin-top: 25px;
  }
  .wp_post_content p:not(:last-child), .wp_post_content ul:not(:last-child), .wp_post_content ol:not(:last-child), .wp_post_content dl:not(:last-child), .wp_post_content figure:not(:last-child) {
    margin-bottom: 25px;
  }
  .wp_post_content img {
    max-width: 100%;
    max-height: 500px;
  }
  .wp_post_content figcaption {
    margin-top: 5px;
    font-size: 12px;
  }
  .wp_post_content .frame {
    padding: 10px 12px;
  }
  .wp_post_content .__provider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .wp_post_content .__provider dt, .wp_post_content .__provider dd {
    margin-top: 1px;
  }
  .wp_post_nav {
    font-size: 14px;
  }
}
@media screen and (min-width: 750px) {
  .wp_post_content {
    max-width: 716px;
    margin: 0 auto;
  }
  .wp_post a:hover::before {
    -webkit-animation: link_u_anim 0.5s ease-out;
            animation: link_u_anim 0.5s ease-out;
  }
  .wp_post a[target=_blank]:hover::before {
    -webkit-animation: link_u_anim_blank 0.5s ease-out;
            animation: link_u_anim_blank 0.5s ease-out;
  }
}

@-webkit-keyframes link_u_anim {
  0% {
    opacity: 0;
    width: 0;
  }
  40% {
    opacity: 0;
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes link_u_anim {
  0% {
    opacity: 0;
    width: 0;
  }
  40% {
    opacity: 0;
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes link_u_anim_blank {
  0% {
    opacity: 0;
    width: 0;
  }
  40% {
    opacity: 0;
    width: 0;
  }
  100% {
    width: calc(100% - 14px);
  }
}
@keyframes link_u_anim_blank {
  0% {
    opacity: 0;
    width: 0;
  }
  40% {
    opacity: 0;
    width: 0;
  }
  100% {
    width: calc(100% - 14px);
  }
}
.pagenation {
  margin-top: 80px;
  margin-bottom: 90px;
}
.pagenation.__is_single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
}
.pagenation .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
}
.pagenation a, .pagenation .current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #00B6B2;
  color: #00B6B2;
  border-radius: 60px;
  line-height: 1;
  font-weight: 600;
}
.pagenation .current, .pagenation .page {
  font-family: "Asap", sans-serif;
  font-size: 14px;
  height: 60px;
  width: 60px;
}
.pagenation .current {
  background-color: #00B6B2;
  color: #fff;
}
.pagenation .extend {
  font-weight: 600;
  color: #00B6B2;
  width: 60px;
  text-align: center;
}
.pagenation .previouspostslink, .pagenation .nextpostslink, .pagenation .backtolist {
  position: relative;
  width: 102px;
  height: 60px;
  font-size: 14px;
  padding-bottom: 2px;
}
.pagenation .previouspostslink::after, .pagenation .nextpostslink::after {
  content: "";
  background: url(../img/common/arrow_01_mc.svg) center center no-repeat;
  background-size: contain;
  display: block;
  width: 6.41px;
  height: 100%;
  position: absolute;
  top: 0;
  -webkit-transition: background-image 0.3s ease-out;
  transition: background-image 0.3s ease-out;
}
.pagenation .previouspostslink {
  margin-right: 20px;
  padding-left: 22px;
}
.pagenation .previouspostslink::after {
  left: 20px;
  rotate: 180deg;
}
.pagenation .nextpostslink {
  margin-left: 20px;
  padding-right: 22px;
}
.pagenation .nextpostslink::after {
  right: 20px;
}
@media all and (max-width: 749px) {
  .pagenation {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .pagenation.__is_single {
    gap: 0 8px;
  }
  .pagenation .wp-pagenavi::after {
    content: "";
    display: block;
    width: 100%;
    height: 30px;
  }
  .pagenation .wp-pagenavi .previouspostslink {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .pagenation .wp-pagenavi .nextpostslink {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .pagenation .current, .pagenation .page {
    width: 44px;
    height: 44px;
  }
  .pagenation .extend {
    width: 44px;
  }
  .pagenation .previouspostslink, .pagenation .nextpostslink, .pagenation .backtolist {
    height: 44px;
    width: 80px;
    margin: 0 7px;
    font-size: 13px;
  }
  .pagenation .previouspostslink {
    padding-left: 16px;
  }
  .pagenation .previouspostslink::after {
    left: 15px;
  }
  .pagenation .nextpostslink {
    padding-right: 16px;
  }
  .pagenation .nextpostslink::after {
    right: 15px;
  }
  .pagenation .current, .pagenation .page {
    font-size: 20px;
  }
}
@media screen and (min-width: 750px) {
  .pagenation a {
    -webkit-transition: color 0.3s ease-out, background-color 0.3s ease-out, background-image 0.3s ease-out;
    transition: color 0.3s ease-out, background-color 0.3s ease-out, background-image 0.3s ease-out;
  }
  .pagenation a:hover {
    color: #fff;
    background-color: #00B6B2;
  }
  .pagenation a:hover::after {
    background-image: url(../img/common/arrow_01_wh.svg);
  }
}

@media screen and (min-width: 750px) {
  .fade {
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  .fade:hover {
    opacity: 0.7;
  }
}
[data-inview] {
  opacity: 0;
}

[data-inview=fade-left] {
  translate: -20px 0;
}

[data-inview=fade-right] {
  translate: 20px 0;
}

[data-inview=fade-up], [data-inview=fade-delay] {
  translate: 0 20px;
}

[data-inview=fade-down] {
  translate: -20px;
}

.title_01 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
.title_01 i {
  display: block;
  font-size: 56px;
  font-family: "Asap", sans-serif;
  color: #00B6B2;
  letter-spacing: -0.03em;
}
.title_01 span {
  display: block;
  margin-top: 0.5em;
  font-size: 1rem;
}
@media all and (max-width: 749px) {
  .title_01 {
    font-size: 20px;
  }
  .title_01 i {
    font-size: 36px;
  }
}

.title_02 {
  margin-bottom: 30px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.3;
  background: url(../img/common/title_02.svg) left center no-repeat;
  padding-left: 24px;
  line-height: 40px;
  padding-bottom: 2px;
}
@media all and (max-width: 749px) {
  .title_02 {
    margin-bottom: 25px;
    background-size: 7px auto;
    background-size: clamp(5px, 1.8666666667vw, 7px) auto;
    font-size: 26px;
    font-size: clamp(20px, 6.9333333333vw, 26px);
  }
}

.title_03 {
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.4;
  font-size: 16px;
}
.title_03 i {
  display: block;
  font-size: 28px;
  font-family: "Asap", sans-serif;
  font-weight: 400;
  color: #00B6B2;
  letter-spacing: -0.03em;
}
@media all and (max-width: 749px) {
  .title_03 {
    margin-bottom: 24px;
  }
  .title_03 i {
    font-size: 23px;
  }
}

.title_04 {
  font-size: 34px;
  font-weight: 600;
}
@media all and (max-width: 749px) {
  .title_04 {
    font-size: 26px;
  }
}

@media screen and (min-width: 750px) {
  .link_u {
    display: inline-block;
  }
  .link_u::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    border-top: 1px solid #fff;
    -webkit-transition: width 0.3s ease-out;
    transition: width 0.3s ease-out;
  }
  .link_u.__mc::after {
    border-color: #00B6B2;
  }
  .link_u:hover::after {
    width: 100%;
  }
}

.link_u_anim {
  display: inline-block;
}
.link_u_anim::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid #BDC7CE;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}
.link_u_anim.__inline::after {
  position: relative;
  top: -3px;
}
.link_u_anim.__mc::after {
  border-color: #00B6B2;
}
@media screen and (min-width: 750px) {
  .link_u_anim:hover::after {
    border-top-color: #fff;
    -webkit-animation: link_u_anim 0.5s ease-out;
            animation: link_u_anim 0.5s ease-out;
  }
  .link_u_anim:hover.__mc::after {
    border-color: #00B6B2;
  }
}

@keyframes link_u_anim {
  0% {
    opacity: 0;
    width: 0;
  }
  40% {
    opacity: 0;
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.arrow_01 {
  font-size: 14px;
  color: #00B6B2;
}
.arrow_01::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.08em;
  background: url(../img/common/arrow_01_mc.svg) center center no-repeat;
  background-size: contain;
  width: 6.41px;
  height: 10px;
  margin-left: 10px;
  -webkit-transition: background-image 0.3s ease-out;
  transition: background-image 0.3s ease-out;
}
.arrow_01.__disabled {
  pointer-events: none;
  color: #d5c7c1;
}
.arrow_01.__disabled::before {
  background: url(../img/common/arrow_01_disabled.svg);
}
.arrow_01.__down::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.arrow_01.__back::before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.arrow_01.__next {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media all and (max-width: 749px) {
  .arrow_01 {
    gap: 6px;
  }
}
@media screen and (min-width: 750px) {
  .arrow_01:hover::before {
    background-image: url(../img/common/arrow_01_mc.svg);
  }
}

.icon_blank::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 1px;
  width: 9px;
  height: 9px;
  margin-left: 6px;
  background: url(../img/common/icon_blank_wh.svg) center center no-repeat;
  background-size: contain;
  -webkit-transition: background-image 0.3s ease-out;
  transition: background-image 0.3s ease-out;
}
.icon_blank.__mc {
  color: #00B6B2;
}
.icon_blank.__mc::after {
  background-image: url(../img/common/icon_blank_mc.svg);
}

.js_ac_trigger_icon {
  position: relative;
  width: 17px;
  height: 17px;
}
.js_ac_trigger_icon::before, .js_ac_trigger_icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  height: 1px;
  width: 17px;
  background-color: #00B6B2;
}
.js_ac_trigger_icon::after {
  rotate: 90deg;
  -webkit-transition: rotate 0.3s ease-out, opacity 0.3s ease-out;
  transition: rotate 0.3s ease-out, opacity 0.3s ease-out;
}
.js_ac_trigger.__opened .js_ac_trigger_icon::after {
  rotate: 180deg;
  opacity: 0;
}

.js_ac_close {
  display: block;
  color: #00B6B2;
  text-align: center;
  width: 4em;
  height: 40px;
  margin: 20px auto 0;
}

.btn_contact {
  display: block;
  padding: 15px 0;
  background-color: #00B6B2;
  border: 1px solid #00B6B2;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  line-height: 1.4;
  font-size: 14px;
  font-weight: 600;
}
.btn_contact i {
  display: block;
  font-weight: 400;
  font-size: 12px;
}
.btn_contact.__bg_none {
  background: none;
}
@media screen and (min-width: 750px) {
  .btn_contact {
    -webkit-transition: color 0.3s ease-out, background-color 0.3s ease-out;
    transition: color 0.3s ease-out, background-color 0.3s ease-out;
  }
  .btn_contact:hover {
    color: #00B6B2;
    background-color: #fff;
  }
  .btn_contact.__bg_none {
    background: none;
  }
  .btn_contact.__bg_none:hover {
    color: #fff;
    background-color: #00B6B2;
  }
}

.btn_01 {
  --btn_01-height:60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: var(--btn_01-height);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 182, 178, 0.5);
  border-radius: var(--btn_01-height);
  color: #00B6B2;
  font-weight: 600;
  font-size: 14px;
}
.btn_01::after {
  content: "";
  background: url(../img/common/arrow_01_mc.svg) center center no-repeat;
  background-size: contain;
  display: block;
  width: 6.41px;
  height: 100%;
  position: absolute;
  right: 22px;
  top: 0;
  -webkit-transition: background-image 0.3s ease-out;
  transition: background-image 0.3s ease-out;
}
@media screen and (min-width: 750px) {
  .btn_01 {
    -webkit-transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
    transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
  }
  .btn_01:hover {
    color: #fff;
    background-color: #00B6B2;
    border-color: #00B6B2;
  }
  .btn_01:hover::after {
    background-image: url(../img/common/arrow_01_wh.svg);
  }
}

.btn_02 {
  --btn_02-width:193px;
  --btn_02-height:50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: var(--btn_02-width);
  height: var(--btn_02-height);
  padding-bottom: 1px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 182, 178, 0.5);
  border-radius: var(--btn_02-height);
  color: #00B6B2;
  font-weight: 600;
  font-size: 14px;
}
.btn_02::after {
  content: "";
  background: url(../img/common/arrow_01_mc.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  display: block;
  width: 6.41px;
  height: calc(100% + 1px);
  right: 18px;
  top: 0;
  -webkit-transition: background-image 0.3s ease-out;
  transition: background-image 0.3s ease-out;
}
@media all and (max-width: 749px) {
  .btn_02 {
    --btn_02-height:44px;
    --btn_02-width:170px;
  }
}
@media screen and (min-width: 750px) {
  .btn_02 {
    -webkit-transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
    transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
  }
  .btn_02:hover {
    color: #fff;
    background-color: #00B6B2;
    border-color: #00B6B2;
  }
  .btn_02:hover::after {
    background-image: url(../img/common/arrow_01_wh.svg);
  }
}

.btn_03 {
  --btn_03-height:50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: var(--btn_03-height);
  padding: 0 50px 1px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 182, 178, 0.5);
  border-radius: var(--btn_03-height);
  color: #00B6B2;
  font-weight: 600;
  font-size: 14px;
}
.btn_03::before {
  content: "";
  background: url(../img/common/arrow_01_mc.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  display: block;
  width: 6.41px;
  height: calc(100% + 1px);
  left: 24px;
  top: 0;
  rotate: 90deg;
  -webkit-transition: background-image 0.3s ease-out;
  transition: background-image 0.3s ease-out;
}
@media all and (max-width: 749px) {
  .btn_03 {
    --btn_03-height:44px;
    padding: 0 18px 1px 38px;
  }
}
@media screen and (min-width: 750px) {
  .btn_03 {
    -webkit-transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
    transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
  }
  .btn_03:hover {
    color: #fff;
    background-color: #00B6B2;
    border-color: #00B6B2;
  }
  .btn_03:hover::before {
    background-image: url(../img/common/arrow_01_wh.svg);
  }
}

.btn_back {
  --btn_01-height:60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: var(--btn_01-height);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 182, 178, 0.5);
  border-radius: var(--btn_01-height);
  color: #00B6B2;
  font-weight: 600;
  font-size: 14px;
}
.btn_back::before {
  content: "";
  background: url(../img/common/arrow_01_mc.svg) center center no-repeat;
  background-size: contain;
  display: block;
  width: 6.41px;
  height: 100%;
  position: absolute;
  left: 22px;
  top: 0;
  -webkit-transition: background-image 0.3s ease-out;
  transition: background-image 0.3s ease-out;
  rotate: 180deg;
}
@media screen and (min-width: 750px) {
  .btn_back {
    -webkit-transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
    transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
  }
  .btn_back:hover {
    color: #fff;
    background-color: #00B6B2;
    border-color: #00B6B2;
  }
  .btn_back:hover::after {
    background-image: url(../img/common/arrow_01_wh.svg);
  }
}

.align_center {
  text-align: center;
}

.mt_5 {
  margin-top: 5px;
}

.mb_5 {
  margin-bottom: 5px;
}

.ml_5 {
  margin-left: 5px;
}

.mr_5 {
  margin-right: 5px;
}

.mt_10 {
  margin-top: 10px;
}

.mb_10 {
  margin-bottom: 10px;
}

.ml_10 {
  margin-left: 10px;
}

.mr_10 {
  margin-right: 10px;
}

.mt_15 {
  margin-top: 15px;
}

.mb_15 {
  margin-bottom: 15px;
}

.ml_15 {
  margin-left: 15px;
}

.mr_15 {
  margin-right: 15px;
}

.mt_20 {
  margin-top: 20px;
}

.mb_20 {
  margin-bottom: 20px;
}

.ml_20 {
  margin-left: 20px;
}

.mr_20 {
  margin-right: 20px;
}

.mt_25 {
  margin-top: 25px;
}

.mb_25 {
  margin-bottom: 25px;
}

.ml_25 {
  margin-left: 25px;
}

.mr_25 {
  margin-right: 25px;
}

.mt_30 {
  margin-top: 30px;
}

.mb_30 {
  margin-bottom: 30px;
}

.ml_30 {
  margin-left: 30px;
}

.mr_30 {
  margin-right: 30px;
}

.mt_35 {
  margin-top: 35px;
}

.mb_35 {
  margin-bottom: 35px;
}

.ml_35 {
  margin-left: 35px;
}

.mr_35 {
  margin-right: 35px;
}

.mt_40 {
  margin-top: 40px;
}

.mb_40 {
  margin-bottom: 40px;
}

.ml_40 {
  margin-left: 40px;
}

.mr_40 {
  margin-right: 40px;
}

.mt_45 {
  margin-top: 45px;
}

.mb_45 {
  margin-bottom: 45px;
}

.ml_45 {
  margin-left: 45px;
}

.mr_45 {
  margin-right: 45px;
}

.mt_50 {
  margin-top: 50px;
}

.mb_50 {
  margin-bottom: 50px;
}

.ml_50 {
  margin-left: 50px;
}

.mr_50 {
  margin-right: 50px;
}

.fc_red {
  color: #F00000 !important;
}

.bold {
  font-weight: 600;
}

.underline {
  text-decoration: underline;
}/*# sourceMappingURL=common.css.map */