@charset "UTF-8";

/* =======================================
  font
======================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@700&display=swap');

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* =======================================
  common
======================================= */
html {
  overflow-y: auto;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "HiraKakuPro-W3", "ヒラギノ角ゴ Pro W3", "Meiryo", "メイリオ", "Arial", sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  min-width: 1366px;
  width: 100%;
  font-size: 16px;
  line-height: 1.68;
  color: #000000;
  scrollbar-gutter: stable;
}

/* body sp */
@media screen and (max-width:560px) {
  body {
    min-width: auto;
    min-width: initial;
    font-size: 2.85vw;
  }
}

._fix {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* vue */
[v-cloak] {
  display: none !important;
}

/* pageAnchor */
._pageAnchorBase {
  position: relative;
}

._pageAnchor {
  position: absolute;
}

/* display */
.pc {
  display: block;
}

.sp {
  display: none;
}

.br-pc {
  display: block;
}

.br-sp {}

/* display sp */
@media screen and (max-width:560px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .br-pc {
    display: inline;
  }

  .br-sp {
    display: block;
  }
}

._no-display {
  display: none !important;
}

/* text */
.text-pc {
  display: inline;
}

.text-block {
  display: block;
}

@media screen and (max-width:560px) {
  .text-pc {
    display: none;
  }
}

.text-bold {
  font-weight: 700;
}

.text-link {
  text-decoration: underline;
}

.text-dot {
  display: block;
  position: relative;
  padding-left: 1em;
}

.text-dot::before {
  content: "・";
  position: absolute;
  left: 0;
}

.text-kome {
  position: relative;
  padding-left: 1em;
}

.text-kome::before {
  content: "※";
  position: absolute;
  left: 0;
}

.text-square {
  position: relative;
  padding-left: 1em;
}

.text-square::before {
  content: "■";
  position: absolute;
  left: 0;
}

.text-double-circle {
  position: relative;
  padding-left: 1em;
}

.text-double-circle::before {
  content: "◎";
  position: absolute;
  left: 0;
}

/* a */
a {
  color: inherit;
}

a:hover,
button:hover {
  opacity: 0.7;
}

/* color */
.color-black {
  color: #0A0A0A;
}

.color-pink {
  color: #FF8C7D;
}

.color-green {
  color: #007D6E;
}

/* bg */

/* mask */
.mask-global {
  display: none;
}

.mask-global--open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 23, 49, 0.73);
  z-index: 10;
}

/* shadow */
.box-shadow01 {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.13);
}

.box-shadow02 {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.13);
}

/* shadow sp */
@media screen and (max-width:560px) {
  .box-shadow01 {
    box-shadow: 0vw 0vw 1.42vw 0vw rgba(0, 0, 0, 0.13);
  }

  .box-shadow02 {
    box-shadow: 0vw 0vw 3.57vw 0vw rgba(0, 0, 0, 0.13);
  }
}

/* =======================================
  inner
======================================= */
.inner01 {
  margin: 0 auto;
  width: 1100px;
}

/* inner sp */
@media screen and (max-width:560px) {
  .inner01 {
    width: 85.71vw;
  }
}

/* =======================================
  button
======================================= */
.button {
  position: relative;
  min-width: 400px;
  border-radius: 10px;
  padding: 27px 60px;
  background-color: #FF8C7D;

  box-shadow: 0 6px #B2685E;
  cursor: pointer;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  margin-top: -22.5px;
  width: 45px;
  height: 45px;
  background-image: url("../img/circle_right_pink_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.button:hover {
  -webkit-transform: translate(0, 3px);
  -moz-transform: translate(0, 3px);
  transform: translate(0, 3px);
  box-shadow: 0 3px #B2685E;
  opacity: 1 !important;
}

.button__text {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.22;
  color: #FFF;
}

/* button sp */
@media screen and (max-width:560px) {
  .button {
    min-width: 85.71vw;
    border-radius: 1.78vw;
    padding: 4.46vw 3.57vw;

    box-shadow: 0 1.07vw #B2685E;
  }

  .button::before {
    right: 3.57vw;
    margin-top: -3.57vw;
    width: 7.14vw;
    height: 7.14vw;
  }

  .button:hover {
    -webkit-transform: translate(0, 0.53vw);
    -moz-transform: translate(0, 0.53vw);
    transform: translate(0, 0.53vw);
    box-shadow: 0 0.53vw #B2685E;
  }

  .button__text {
    font-size: 4.82vw;
    line-height: 1.59;
  }
}

/* =======================================
  slide
======================================= */
.slide-arrow {
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  margin-top: -76px;
  width: 120px;
  height: 112px;
  font-size: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 6;
}

.prev-arrow {
  left: -175px;
}

.prev-arrow--circle {
  border-radius: 50%;
}

.next-arrow {
  right: -175px;
}

.next-arrow--circle {
  border-radius: 50%;
}

.slick-dots {
  margin-top: 40px;
  position: relative;
  bottom: auto;
  text-align: center;
}

.slick-dots li {
  width: 10px;
  height: 10px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.16);
}

.slick-dots li button:before {
  font-size: 20px;
  line-height: 10px;
  width: 10px;
  height: 10px;
  color: #FFF;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  /* color: #666666; */
  color: #0DA89C;
  opacity: 1;
}

/* slide sp */
@media screen and (max-width:560px) {
  .slide-arrow {
    margin-top: -7.5vw;
    width: 16.07vw;
    height: 15vw;
  }

  .prev-arrow {
    left: -8.5vw;
  }

  .next-arrow {
    right: -8.5vw;
  }

  .slick-dots {
    margin-top: 5.35vw;
  }

  .slick-dots li {
    width: 1.78vw;
    height: 1.78vw;
  }

  .slick-dots li button {
    width: 1.78vw;
    height: 1.78vw;
    padding: 0vw;
    box-shadow: 0vw 0.17vw 1.78vw 0vw rgba(0, 0, 0, 0.16);
  }

  .slick-dots li button:before {
    font-size: 3.57vw;
    line-height: 1.78vw;
    width: 1.78vw;
    height: 1.78vw;
  }
}

/* =======================================
  contents header
======================================= */
.contents-header {
  position: relative;
  text-align: center;
}

.contents-header__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.03em;
}

.contents-header__text {
  letter-spacing: 0.01em;
}

.contents-header__text--color-white {
  color: #FFF;
}

*+.contents-header__text {
  margin-top: 20px;
}

/* contents header sp */
@media screen and (max-width:560px) {
  .contents-header__title {
    font-size: 5.35vw;
    line-height: 1.4;
  }

  .contents-header__text {
    font-size: 3.21vw;
    line-height: 1.5;
  }

  *+.contents-header__text {
    margin-top: 5.35vw;
  }
}

/* =======================================
  header global
======================================= */
.header-global {
  position: fixed;
  top: 0;
  width: 100%;
  min-width: 1366px;
  background-color: #fff;
  z-index: 20;
  /* overflow: auto;
  scrollbar-gutter: stable; */
}

.header-global__inner {
  width: 100%;
  min-height: 70px;
  padding: 0 0 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-global__left {
  width: 284px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-global__logo {
  width: 100%;
}

.header-global__logo-link {
  display: block;
}

.header-global__logo-img {
  max-width: 100%;
  object-fit: cover;
}

.header-global__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-global__navi01 {}

.header-global__navi02 {
  margin-left: 30px;
}

.header-global__sp-menu {
  display: none;
}

/* navi01 */
.header-global-navi01 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-global-navi01__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-global-navi01__item:nth-child(n+2) {
  margin-left: 35px;
}

.header-global-navi01__link {
  display: block;
}

.header-global-navi01__text {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* navi02 */
.header-global-navi02 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-global-navi02__item {
  min-width: 260px;
}

.header-global-navi02__link {
  display: block;
  height: 100%;
  padding: 20px 25px;
  background-color: #FF8C7D;
  background-repeat: no-repeat;
}

.header-global-navi02__link--email {
  background-image: url("../img/icon_email_cirlce_transparent.svg");
  background-position: 25px center;
  background-size: 30px 30px;
}

.header-global-navi02__text {
  padding-left: 35px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #FFF;
}

/* header-global-navi-sp */
.header-global-navi-sp {
  display: none;
}

/* header global sp */
@media screen and (max-width:560px) {
  .header-global {
    min-width: 100%;
  }

  .header-global__inner {
    min-height: 13.39vw;
    padding: 2.67vw 5.35vw 2.67vw 3.57vw;
  }

  .header-global__left {
    width: 50.71vw;
  }

  .header-global__navi01 {
    display: none;
  }

  .header-global__navi02 {
    display: none;
    margin-left: 0;
  }

  .header-global__sp-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  /* sp-menu */
  .sp-menu {
    width: 5.89vw;
    height: 5.89vw;
  }

  .sp-menu__button {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../img/btn_menu_black.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 5.89vw 3.92vw;
    cursor: pointer;
  }

  .sp-menu__button--open {
    background-image: url("../img/btn_close_black.svg");
    background-size: 4.28vw 4.28vw;
  }

  /* header-global-navi-sp */
  .header-global-navi-sp {
    display: none;
    width: 100%;
    position: fixed;
    top: 13.39vw;
    left: 0;
    z-index: 15;
    background-color: #ECF8F5;
  }

  .header-global-navi-sp__inner {
    width: 100%;
    padding: 7.14vw 7.14vw 8.92vw;
  }

  .header-global-navi-sp__navi01 {}

  .header-global-navi-sp__button {
    margin-top: 8.92vw;
  }

  /* header-global-navi01 */
  .header-global-navi01 {}

  .header-global-navi01__item {
    width: 100%;
  }

  .header-global-navi01__item:nth-child(n+2) {
    margin-left: 0;
  }

  .header-global-navi01__link {
    width: 100%;
    display: block;
    border-top: 0.17vw solid #CCCCCC;
    padding: 4.46vw 3.57vw;
    text-align: left;
    background-image: url("../img/wedge_right_green.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 3.57vw) center;
    background-size: 1.42vw 2.85vw;
    cursor: pointer;
  }

  .header-global-navi01__item:last-child .header-global-navi01__link {
    border-bottom: 0.17vw solid #CCCCCC;
  }

  .header-global-navi01__text {
    font-size: 3.21vw;
    font-weight: 700;
    line-height: 1.44;
    letter-spacing: 0.1em;
  }
}

/* =======================================
  main visual
======================================= */
.main-visual {
  width: 100%;
  height: 362px;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
}

.webp .main-visual {
  background-image: url("../img/main-visual-mask-pc.webp"), url("../img/main-visual-pc.webp");
}

.no-webp .main-visual {
  background-image: url("../img/main-visual-mask-pc.png"), url("../img/main-visual-pc.png");
}

.main-visual__inner {
  margin: 0 auto;
  width: 1100px;
}

.main-visual__box {
  width: 100%;
  padding: 100px 0 0;
}

.main-visual__title {
  font-size: 53px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.05em;
  color: #FFF;
}

/* main visual sp */
@media screen and (max-width:560px) {
  .main-visual {
    height: 53.57vw;
  }

  .webp .main-visual {
    background-image: url("../img/main-visual-mask-sp.webp"), url("../img/main-visual-sp.webp");
  }

  .no-webp .main-visual {
    background-image: url("../img/main-visual-mask-sp.png"), url("../img/main-visual-sp.png");
  }

  .main-visual__inner {
    width: 100%;
    padding: 0 7.14vw;
  }

  .main-visual__box {
    padding: 17.85vw 0 0;
  }

  .main-visual__title {
    font-size: 5.89vw;
  }
}

/* =======================================
  main cv
======================================= */
.main-cv {}

.main-cv__inner {
  padding: 60px 0 65px;
  text-align: center;
}

.main-cv__text {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.main-cv__text:nth-child(n+2) {
  margin-top: 10px;
}

.main-cv__text--big {
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: 0;
  color: #007D6E;
}

.main-cv__text--underline {
  background: linear-gradient(transparent 70%, rgba(255, 140, 125, 0.21) 70%);
}

/* main cv sp */
@media screen and (max-width:560px) {
  .main-cv__inner {
    padding: 10.71vw 0;
  }

  .main-cv__text {
    font-size: 4.64vw;
    line-height: 1.46;
  }

  .main-cv__text:nth-child(n+2) {
    margin-top: 1.78vw;
  }

  .main-cv__text--big {
    font-size: 6.07vw;
    line-height: 1.46;
  }
}

/* =======================================
  cv
======================================= */
.cv {
  background-color: rgba(0, 125, 110, 0.85);
}

.cv__inner {
  position: relative;
  padding: 60px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cv__header {
  width: 100%;
  text-align: center;
}

.cv__title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #FFF;
}

.cv__title::before {
  display: block;
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  margin-top: -11.5px;
  width: 13px;
  height: 23px;
  background-image: url("../img/line-diagonal_left_white-pc.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cv__title::after {
  display: block;
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  margin-top: -11.5px;
  width: 13px;
  height: 23px;
  background-image: url("../img/line-diagonal_right_white-pc.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cv__button {
  margin: 20px auto 0;
  width: 650px;
}

/* cv sp */
@media screen and (max-width:560px) {
  .cv__inner {
    padding: 10.71vw 0;
  }

  .cv__title {
    font-size: 4.1vw;
    line-height: 1.47;
  }

  .cv__title::before {
    left: -8.38vw;
    margin-top: -5.44vw;
    width: 5.71vw;
    height: 10.89vw;
    background-image: url("../img/line-diagonal_left_white-sp.svg");
  }

  .cv__title::after {
    right: -8.38vw;
    margin-top: -5.44vw;
    width: 5.71vw;
    height: 10.89vw;
    background-image: url("../img/line-diagonal_right_white-sp.svg");
  }

  .cv__button {
    margin: 3.57vw auto 0;
    width: 100%;
  }
}

/* =======================================
  sales point
======================================= */
.sales-point {
  position: relative;
  background-color: #ECF8F5;
}

.sales-point::after {
  position: absolute;
  content: "";
  bottom: -85px;
  left: 50%;
  margin-left: -100px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
  border-top: 85px solid #ECF8F5;
  border-bottom: 0;
  z-index: 5;
}

.sales-point__inner {
  padding: 80px 0;
}

.sales-point__list {
  margin: 30px auto 0;
  width: 1040px;
  min-height: 403px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  background-image: url("../img/circle_docters_tow.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 403px 403px;
}

/* sales-point-list */
.sales-point-list {
  width: 352px;
}

.sales-point-list--wide {
  width: 382px;
}

.sales-point-list__item {}

.sales-point-list__item:nth-child(n+2) {
  margin-top: 20px;
}

/* sales-point-box */
.sales-point-box {
  border-radius: 10px;
  padding: 16px 30px;
  background-color: #FFF;
}

.sales-point-box__text {
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}

.sales-point-box__text--big {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #007D6E;
}

/* sales point sp */
@media screen and (max-width:560px) {
  .sales-point::after {
    bottom: -9.71vw;
    margin-left: -12.5vw;
    border-right: 12.5vw solid transparent;
    border-left: 12.5vw solid transparent;
    border-top: 10.71vw solid #ECF8F5;
  }

  .sales-point__inner {
    padding: 10.71vw 0;
  }

  .sales-point__list {
    margin: 5.35vw auto 0;
    width: 85.71vw;
    min-height: auto;
    min-height: inherit;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    background-position: center center;
    background-size: 85.71vw 85.71vw;
  }

  /* sales-point-list */
  .sales-point-list {
    width: 62.85vw;
  }

  .sales-point-list--wide {
    margin-top: 65.17vw;
  }

  .sales-point-list:nth-child(n+2) {
    margin-top: 65.17vw;
  }

  .sales-point-list__item:nth-child(n+2) {
    margin-top: 3.57vw;
  }

  /* sales-point-box */
  .sales-point-box {
    border-radius: 1.78vw;
    padding: 2.85vw 5.35vw;
  }

  .sales-point-box__text--big {
    font-size: 3.57vw;
    /* line-height: 1.5; */
  }
}

/* =======================================
  service
======================================= */
.service {}

.service__inner {
  padding: 110px 0 70px;
}

.service__list {
  margin-top: 30px;
}

/* service-list */
.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.service-list__item {
  width: 520px;
}

.service-list__item:nth-child(n+3) {
  margin-top: 30px;
}

/* service-box */
.service-box {
  height: 100%;
  border-radius: 10px;
  padding: 25px 30px 30px;
  background-color: #FFF;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.service-box__left {
  width: 93px;
}

.service-box__icon {
  width: 100%;
  height: 93px;
}

.service-box__icon-img {
  max-width: 100%;
  object-fit: cover;
}

.service-box__right {
  width: 332px;
}

.service-box__number {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.01em;
  color: #007D6E;
}

.service-box__title {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.service-box__text {
  margin-top: 10px;
  letter-spacing: 0.03em;
}

.service-box__notice {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.03em;
}

/* service sp */
@media screen and (max-width:560px) {
  .service__inner {
    padding: 17.85vw 0 14.28vw;
  }

  .service__list {
    margin-top: 8.92vw;
  }

  /* service-list */
  .service-list__item {
    width: 100%;
  }

  .service-list__item:nth-child(n+2) {
    margin-top: 5.35vw;
  }

  .service-list__item:nth-child(n+3) {
    margin-top: 5.35vw;
  }

  /* service-box */
  .service-box {
    height: auto;
    height: inherit;
    border-radius: 1.78vw;
    padding: 5.35vw;
  }

  .service-box__left {
    width: 15.17vw;
  }

  .service-box__icon {
    width: 100%;
    height: 15.17vw;
  }

  .service-box__right {
    width: 58.03vw;
  }

  .service-box__number {
    font-size: 3.57vw;
    line-height: 1.3;
  }

  .service-box__title {
    margin-top: 0.53vw;
    font-size: 4.1vw;
    line-height: 1.43;
  }

  .service-box__text {
    margin-top: 2.67vw;
    font-size: 3.03vw;
    line-height: 1.76;
  }

  .service-box__notice {
    margin-top: 0.89vw;
    font-size: 2.67vw;
    line-height: 1.4;
  }
}

/* =======================================
  slider
======================================= */
.slider {
  padding-bottom: 90px;
}

.slider__inner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slider-box {
  margin: 0 auto;
  width: 1100px;

  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.slider-box__item {
  margin: 0 11px;
  width: 344px;
  height: 231px;
}

.slider-box._slider-on {
  width: 366px;
  display: block !important;
}

.slider-box .slick-slide.slider-box__item {}

.slider-box__img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider-box .slick-list {
  overflow: visible;
}

/* slider sp */
@media screen and (max-width:560px) {
  .slider {
    padding-bottom: 14.28vw;
  }

  .slider-box {
    width: 100%;
  }

  .slider-box__item {
    margin: 0 1.25vw;
    width: 50.89vw;
    height: 34.1vw;
  }

  .slider-box._slider-on {
    width: 53.39vw;
    display: block !important;
  }
}

/* =======================================
  model-case
======================================= */
.model-case {
  background-color: #ECF8F5;
}

.model-case__inner {
  padding: 60px 0 100px;
}

.model-case__list {}

/* model-case-list */
.model-case-list {}

.model-case-list__item {
  padding-top: 35px;
}

.model-case-list__item:nth-child(n+2) {
  margin-top: 30px;
}

/* model-case-box */
.model-case-box {
  position: relative;
  border-radius: 10px;
  padding: 75px 80px 55px 55px;
  background-color: #FFF;
}

.model-case-box__number {
  position: absolute;
  top: -35px;
  left: 0;

  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #FF8C7D;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.model-case-box__number-case {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.01em;
  color: #FFF;
}

.model-case-box__number-num {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #FFF;
}

.model-case-box__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.model-case-box__body-left {
  width: 500px;
}

.model-case-box__body-right {
  width: 430px;
}

.model-case-box__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.model-case-box__table {
  margin-top: 20px;
}

.model-case-box__thum {
  display: block;
  width: 100%;
  /* height: 412px; */
  height: 100%;
}

.model-case-box__thum-img {
  max-width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.model-case-box__point {
  margin-top: 40px;
}

/* table-box */
.table-box {}

.table-box__caption {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.01em;
  color: #007D6E;
}

.table-box__table {
  margin-top: 10px;
}

/* table-list */
.table-list {}

.table-list__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.table-list__title {
  width: 100px;
  border-top: 1px solid #DCE1F2;
  border-left: 1px solid #DCE1F2;
  padding: 8px 0 8px 10px;

  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;

  background-color: #ECF8F5;
}

.table-list__desc {
  width: calc(100% - 100px);
  border-top: 1px solid #DCE1F2;
  border-left: 1px solid #DCE1F2;
  border-right: 1px solid #DCE1F2;
  padding: 8px 10px 8px 20px;

  letter-spacing: 0.01em;
}

.table-list__line:last-child .table-list__title {
  border-bottom: 1px solid #DCE1F2;
}

.table-list__line:last-child .table-list__desc {
  border-bottom: 1px solid #DCE1F2;
}

/* point-box */
.point-box {
  border-radius: 10px;
  border: 1px solid #007D6E;
  padding: 15px 35px 25px 25px;
}

.point-box__icon {
  padding-left: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.01em;
  color: #007D6E;

  background-image: url("../img/icon_light-bulb_green.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 17px auto;
}

.point-box__text {
  margin-top: 7px;
  letter-spacing: 0.01em;
}

/* model-case sp */
@media screen and (max-width:560px) {
  .model-case__inner {
    padding: 10.71vw 0 14.28vw;
  }

  .model-case__list {
    margin-top: 7.14vw;
  }

  /* model-case-list */
  .model-case-list__item {
    padding-top: 6.25vw;
  }

  .model-case-list__item:nth-child(n+2) {
    margin-top: 10.71vw;
  }

  /* model-case-box */
  .model-case-box {
    border-radius: 1.78vw;
    padding: 13.39vw 6.25vw 8.92vw;
  }

  .model-case-box__number {
    top: -6.25vw;

    width: 17.85vw;
    height: 17.85vw;
  }

  .model-case-box__number-case {
    font-size: 3.21vw;
  }

  .model-case-box__number-num {
    font-size: 6.78vw;
  }

  .model-case-box__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .model-case-box__body-left {
    width: 100%;
  }

  .model-case-box__body-right {
    width: 100%;
  }

  .model-case-box__title {
    font-size: 4.64vw;
    line-height: 1.38;
  }

  .model-case-box__table {
    margin-top: 5.35vw;
  }

  .model-case-box__thum {
    margin-top: 3.57vw;
    width: 100%;
    height: 40.35vw;
  }

  .model-case-box__thum-img {
    border-radius: 3.57vw;
  }

  .model-case-box__point {
    margin-top: 5.35vw;
  }

  /* table-box */
  .table-box__caption {
    font-size: 3.57vw;
    line-height: 1.3;
  }

  .table-box__table {
    margin-top: 1.78vw;
  }

  /* table-list */
  .table-list__title {
    width: 19.64vw;
    border-top: 0.17vw solid #DCE1F2;
    border-left: 0.17vw solid #DCE1F2;
    padding: 1.42vw 0 1.42vw 1.78vw;

    font-size: 3.03vw;
    line-height: 1.47;
  }

  .table-list__desc {
    width: calc(100% - 19.64vw);
    padding: 1.42vw 1.78vw;

    font-size: 3.03vw;
    line-height: 1.47;
  }

  .table-list__line:last-child .table-list__title {
    border-bottom: 0.17vw solid #DCE1F2;
  }

  .table-list__line:last-child .table-list__desc {
    border-bottom: 0.17vw solid #DCE1F2;
  }

  /* point-box */
  .point-box {
    border-radius: 1.78vw;
    border: 0.17vw solid #007D6E;
    padding: 2.67vw 4.46vw;
  }

  .point-box__icon {
    padding-left: 4.46vw;
    font-size: 3.57vw;
    line-height: 1.3;

    background-size: 3.75vw auto;
  }

  .point-box__text {
    margin-top: 1.78vw;
    font-size: 3.03vw;
    line-height: 1.58;
  }
}

/* =======================================
  flow
======================================= */
.flow {}

.flow__inner {
  padding: 30px 0 45px;
}

.flow__body {
  margin: 30px auto 0;
  width: 960px;
}

.flow__arrow-bar {
  padding: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.36;
  text-align: center;
  color: #FFF;

  background-image: url("../img/arrow-bar_right_green.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.flow__list {
  margin-top: 35px;
}

/* flow-list */
.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flow-list__item {
  position: relative;
  width: 165px;
}

.flow-list__item:nth-child(n+2) {
  margin-left: 33px;
}

.flow-list__item:nth-child(n+2)::before {
  position: absolute;
  top: 130px;
  left: -28.5px;
  content: "";
  width: 24px;
  height: 41px;

  background-image: url("../img/triangle_right_green.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* flow-box */
.flow-box {}

.flow-box__left {
  display: none;
}

.flow-box__right {
  width: 100%;
}

.flow-box__icon {
  margin: 20px auto 0;
  width: 127px;
  height: 127px;
}

.flow-box__icon-img {
  max-width: 100%;
  object-fit: cover;
}

.flow-box__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flow-box__number-num {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;

  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #007D6E;
}

.flow-box__number-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.flow-box__text {
  margin-top: 20px;
  letter-spacing: 0.05em;
}

.flow-box__notice {
  margin-top: 5px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* flow sp */
@media screen and (max-width:560px) {
  .flow__inner {
    padding: 17.85vw 0 16.96vw;
  }

  .flow__body {
    margin: 7.14vw auto 0;
    width: 75vw;
  }

  .flow__arrow-bar {
    display: none;
  }

  .flow__list {
    margin-top: 0;
  }

  /* flow-list */
  .flow-list__item {
    width: 100%;
  }

  .flow-list__item:nth-child(n+2) {
    margin-left: 0;
    margin-top: 15.17vw;
  }

  .flow-list__item:nth-child(n+2)::before {
    top: -9.64vw;
    left: 50%;
    margin-left: -3.66vw;
    width: 7.32vw;
    height: 4.28vw;

    background-image: url("../img/triangle_down_green.svg");
  }

  /* flow-box */
  .flow-box {
    border-top: 0.17vw solid #CCCCCC;
    border-bottom: 0.17vw solid #CCCCCC;
    padding: 2.67vw 0;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flow-box__left {
    display: block;
    width: 19.64vw;
  }

  .flow-box__right {
    width: 51.78vw;
  }

  .flow-box__icon {
    margin: 0;
    width: 19.64vw;
    height: 19.64vw;
  }

  .flow-box__number {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .flow-box__number-num {
    font-size: 5vw;
    letter-spacing: 0.1em;
  }

  .flow-box__number-text {
    padding-left: 1.42vw;
    font-size: 3.92vw;
    line-height: 1.36;
  }

  .flow-box__text {
    margin-top: 1.78vw;
    font-size: 3.03vw;
    line-height: 1.58;
    letter-spacing: 0.01em;
  }

  .flow-box__notice {
    margin-top: 1.78vw;
    font-size: 2.5vw;
    letter-spacing: 0.01em;
  }
}

/* =======================================
  qualification
======================================= */
.qualification {
  background-color: #ECF8F5;
}

.qualification__inner {
  padding: 85px 0;
}

.qualification__body {
  margin-top: 30px;
}

/* qualification-box*/
.qualification-box {
  border-radius: 18px;
  padding: 40px;
  background-color: #FFF;
}

.qualification-box__title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-align: center;
}

.qualification-box__info {
  margin-top: 10px;
  padding-left: 260px;
}

.qualification-box__notice {
  font-size: 14px;
  font-size: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* qualification sp */
@media screen and (max-width:560px) {
  .qualification__inner {
    padding: 10.71vw 0;
  }

  .qualification__body {
    margin-top: 5.35vw;
  }

  /* qualification-box*/
  .qualification-box {
    border-radius: 3.21vw;
    padding: 7.14vw 5.35vw;
  }

  .qualification-box__title {
    font-size: 4.64vw;
    line-height: 1.38;
  }

  .qualification-box__info {
    margin-top: 5.35vw;
    padding-left: 0;
  }

  .qualification-box__notice {
    font-size: 3.21vw;
  }
}

/* =======================================
  footer global
======================================= */
.footer-global {}

.footer-global__inner {
  padding: 40px 0 15px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-global__logo {
  width: 444px;
}

.footer-global__logo-img {
  max-width: 100%;
  object-fit: cover;
}

.footer-global__link {
  margin-top: 35px;
}

.footer-global__copy {
  margin-top: 50px;
  font-size: 12px;
  line-height: 1.41;
  color: #7B7B7B;
}

/* footer-global-link */
.footer-global-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-global-link__item {}

.footer-global-link__item:nth-child(n+2) {
  margin-left: 70px;
}

.footer-global-link__link {
  position: relative;
  display: block;
  padding-right: 5px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.footer-global-link__link::after {
  position: absolute;
  top: 50%;
  right: -12px;
  margin-top: -6px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../img/icon_windows_black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* button-anchor-top */
.button-anchor-top {}

.button-anchor-top__button {
  bottom: 3%;
  position: fixed;
  right: 5%;
  display: none;
  border-radius: 50%;
  z-index: 10;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.button-anchor-top__img {
  width: 100%;
  object-fit: cover;
}

/* footer global sp */
@media screen and (max-width:560px) {
  .footer-global__inner {
    padding: 10.71vw 0 7.14vw;
  }

  .footer-global__logo {
    width: 65vw;
  }

  .footer-global__link {
    margin-top: 6.25vw;
  }

  .footer-global__copy {
    margin-top: 5.35vw;
    font-size: 2.67vw;
    line-height: 1.4;
  }

  /* footer-global-link */
  .footer-global-link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-global-link__item:nth-child(n+2) {
    margin-left: 0;
    margin-top: 5.35vw;
  }

  .footer-global-link__link {
    padding-right: 0.89vw;
    font-size: 3.21vw;
    line-height: 1.58;
  }

  .footer-global-link__link::after {
    right: -3.75vw;
    margin-top: -1.42vw;
    width: 2.85vw;
    height: 2.85vw;
  }

  /* button-anchor-top */
  .button-anchor-top__button {
    width: 14.28vw;
    height: 14.28vw;
  }
}