@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;
}

/* =======================================
  root color 
======================================= */
:root {
  --color-btn-00: #FFF;
  --color-btn-01: #000;
  --color-btn-02: #ED7D31;
  --color-btn-03: #B2685E;
  --color-btn-04: #0076AA;
  --color-btn-05: #007D6E;

  --color-bg-00: #FFF;
  --color-bg-01: #000;
  --color-bg-02: #ED7D31;
  --color-bg-03: #B2685E;
  --color-bg-04: #0076AA;
  --color-bg-05: #007D6E;
  --color-bg-07: #ECF5F8;

  --color-font-00: #FFF;
  --color-font-01: #000;
  --color-font-02: #ED7D31;
  --color-font-03: #B2685E;
  --color-font-04: #0076AA;
  --color-font-05: #007D6E;
}

/* =======================================
  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: 3.57vw;
    line-height: 1.35;
  }
}

._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: var(--color-btn-01);
}

.color-orange {
  color: var(--color-btn-02);
}

.color-blue {
  color: var(--color-btn-04);
}

.color-green {
  color: var(--color-btn-05);
}

/* 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: 960px;
}

/* inner sp */
@media screen and (max-width:560px) {
  .inner01 {
    width: 85.71vw;
  }
}

/* =======================================
  button
======================================= */
.button {
  position: relative;
  min-width: 400px;
  border-radius: 10px;
  padding: 27px 80px;
  background-color: var(--color-btn-02);

  box-shadow: 0 6px var(--color-btn-03);
  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: 20px;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-image: url("../img/circle_right_orange_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 var(--color-btn-03);
  opacity: 1 !important;
}

.button--big::before {
  margin-top: -24px;
  width: 48px;
  height: 48px;
}

.button__text {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-font-00);
}

.button__text--big {
  font-size: 35px;
}

/* button sp */
@media screen and (max-width:560px) {
  .button {
    min-width: 71.42vw;
    border-radius: 1.78vw;
    padding: 3.57vw;

    box-shadow: 0 1.07vw var(--color-btn-03);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .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 var(--color-btn-03);
  }

  .button--big {
    padding: 5.35vw;
  }

  .button--big::before {
    margin-top: -3.57vw;
    width: 7.14vw;
    height: 7.14vw;
  }

  .button__text {
    font-size: 4.46vw;
    line-height: 1.72;
  }

  .button__text--big {
    font-size: 5.35vw;
    line-height: 1.43;
  }
}

/* =======================================
  contents header
======================================= */
.contents-header {
  position: relative;
}

.contents-header__title-wrap {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

*+.contents-header__title {
  margin-top: 5px;
  text-align: center;
}

.contents-header__title--small {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.contents-header__title--nomal {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.03em;
}

.contents-header__title--middle {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-font-04);
}

.contents-header__title--big {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--color-font-04);
}

.contents-header__title--underline {
  background: linear-gradient(transparent 70%, rgba(237, 125, 49, 0.21) 70%);
}

.contents-header__text {
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}

*+.contents-header__text {
  margin-top: 10px;
}

/* contents header sp */
@media screen and (max-width:560px) {
  *+.contents-header__title {
    margin-top: 0.89vw;
  }

  .contents-header__title--small {
    font-size: 3.57vw;
    letter-spacing: 0;
  }

  .contents-header__title--nomal {
    font-size: 4.64vw;
    letter-spacing: 0;
  }

  .contents-header__title--middle {
    font-size: 6.07vw;
    line-height: 1.38;
  }

  .contents-header__title--big {
    font-size: 6.42vw;
    line-height: 1.38;
  }

  .contents-header__text {
    font-size: 3.21vw;
  }

  *+.contents-header__text {
    margin-top: 1.78vw;
  }
}

/* =======================================
  header global
======================================= */
.header-global {
  position: fixed;
  top: 0;
  width: 100%;
  min-width: 1366px;
  background-color: var(--color-bg-00);
  z-index: 20;
}

.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: 210px;
}

.header-global-navi02__link {
  display: block;
  height: 100%;
  padding: 20px 25px;
  text-align: center;
  background-color: var(--color-bg-02);
  cursor: pointer;
}

.header-global-navi02__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--color-font-00);
}

/* 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: 0 0 0 3.57vw;
  }

  .header-global__left {
    width: 50.71vw;
  }

  .header-global__navi01 {
    display: none;
  }

  .header-global__navi02 {
    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;
  }

  /* navi02 */
  .header-global-navi02 {}

  .header-global-navi02__item {
    min-width: 21.42vw;
  }

  .header-global-navi02__link {
    width: 100%;
    padding: 4.46vw 0.89vw;
  }

  .header-global-navi02__text {
    font-size: 2.85vw;
    letter-spacing: 0;
  }

  /* sp-menu */
  .sp-menu {}

  .sp-menu__button {
    display: block;
    width: 12.5vw;
    height: 100%;
    padding: 3.57vw 4.46vw;
    background-image: url("../img/btn_menu_green.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;
  }

  .button--navi-sp {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  /* 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: 426px;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
}

.webp .main-visual {
  background-image: url("../img/main-visual-pc.webp"), url("../img/main-visual-mask-pc.webp");
}

.no-webp .main-visual {
  background-image: url("../img/main-visual-pc.png"), url("../img/main-visual-mask-pc.png");
}

.main-visual__inner {}

.main-visual__box {
  width: 100%;
  padding: 65px 0 0;
}

.main-vusual__frame-title {
  display: inline-block;
  border-radius: 5px;
  border: 2px solid var(--color-bg-00);
  padding: 5px 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-font-00);
}

.main-visual__title {
  display: block;
  margin-top: 15px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--color-font-00);
}

.main-visual__title-logo {
  display: block;
  margin-top: 20px;
  width: 571px;
}

.main-visual__title-logo img {
  max-width: 100%;
  object-fit: cover;
}

.main-vusual__button {
  margin-top: 15px;
  width: 322px;
}

.button--main-vusual {
  min-width: 322px;
  padding: 20px 45px;
}

/* main visual sp */
@media screen and (max-width:560px) {
  .main-visual {
    height: 103.03vw;
  }

  .webp .main-visual {
    background-image: url("../img/main-visual-sp.webp"), url("../img/main-visual-mask-sp.webp");
  }

  .no-webp .main-visual {
    background-image: url("../img/main-visual-sp.png"), url("../img/main-visual-mask-sp.png");
  }

  .main-visual__inner {}

  .main-visual__box {
    padding: 39.28vw 0 0;
  }

  .main-vusual__frame-title {
    border-radius: 0.89vw;
    border: 0.53vw solid var(--color-bg-00);
    padding: 0.89vw 5.35vw;
    font-size: 4.28vw;
    text-align: center;
  }

  .main-visual__title {
    margin-top: 2.67vw;
    font-size: 3.57vw;
  }

  .main-visual__title-logo {
    margin-top: 3.57vw;
    width: 100%;
  }

  .main-vusual__button {
    margin: 4.46vw auto 0;
    width: 71.42vw;
  }

  .button--main-vusual {
    min-width: 71.42vw;
    padding: 3.57vw;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* =======================================
  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--small {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.main-cv__text--big {
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--color-font-04);
}

.main-cv__text--underline {
  background: linear-gradient(transparent 70%, rgba(237, 125, 49, 0.21) 70%);
}

/* main cv sp */
@media screen and (max-width:560px) {
  .main-cv__inner {
    padding: 7.14vw 0;
  }

  .main-cv__text {
    font-size: 4.64vw;
    letter-spacing: 0;
  }

  .main-cv__text:nth-child(n+2) {
    margin-top: 1.78vw;
  }

  .main-cv__text:nth-child(n+2) {
    margin-top: 1.78vw;
  }

  .main-cv__text--small {
    font-size: 3.57vw;
  }

  .main-cv__text--big {
    font-size: 6.25vw;
    line-height: 1.42;
    letter-spacing: 0.1em;
  }
}

/* =======================================
  cv
======================================= */
.cv {
  background-color: rgba(0, 118, 170, 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: var(--color-font-00);
}

.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;
}

/* cv sp */
@media screen and (max-width:560px) {
  .cv__inner {
    padding: 10.71vw 0;
  }

  .cv__title {
    font-size: 4.28vw;
    line-height: 1.45;
  }

  .cv__title::before {
    left: -4.38vw;
    margin-top: -1.89vw;
    width: 3.78vw;
    height: 3.78vw;
    background-image: url("../img/line-diagonal_left_white-sp.svg");
  }

  .cv__title::after {
    right: -4.38vw;
    margin-top: -1.89vw;
    width: 3.78vw;
    height: 3.78vw;
    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;
}

.sales-point__inner {
  padding: 0 0 80px;
}

.sales-point__list {
  width: 100%;
}

/* sales-point-list */
.sales-point-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;
}

.sales-point-list__item {
  width: 454px;
}

/* sales-point-box */
.sales-point-box {
  height: 100%;
  border-radius: 10px;
  padding: 25px 20px;
  background-color: var(--color-bg-00);
}

.sales-point-box__number {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-font-04);
}

.sales-point-box__title {
  margin-top: 5px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.29;
  text-align: center;
}

.sales-point-box__thum {
  display: block;
  margin-top: 20px;
  width: 100%;
  max-height: 231px;
}

.sales-point-box__thum-img {
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.sales-point-box__text {
  margin-top: 25px;
  font-weight: 500;
}

/* sales point sp */
@media screen and (max-width:560px) {
  .sales-point__inner {
    padding: 0 0 14.28vw;
  }

  /* sales-point-list */
  .sales-point-list__item {
    width: 100%;
  }

  .sales-point-list__item:nth-child(n+2) {
    margin-top: 8.03vw;
  }

  /* sales-point-box */
  .sales-point-box {
    height: auto;
    border-radius: 1.78vw;
    padding: 5.35vw;
  }

  .sales-point-box__number {
    font-size: 3.57vw;
    line-height: 1.35;
  }

  .sales-point-box__title {
    margin-top: 0.89vw;
    font-size: 5.17vw;
    line-height: 1.48;
  }

  .sales-point-box__thum {
    margin-top: 4.46vw;
    width: 100%;
    max-height: 41.25vw;
  }

  .sales-point-box__thum-img {
    border-radius: 2.14vw;
  }

  .sales-point-box__text {
    margin-top: 3.57vw;
  }
}

/* =======================================
  service
======================================= */
.service {
  background-color: var(--color-bg-07);
}

.service__inner {
  padding: 80px 0;
}

.service__list {
  margin-top: 70px;
}

.service__service-frame {
  margin-top: 80px;
}

/* service-list */
.service-list {
  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;
}

.service-list__item {
  width: 100%;
}

.service-list__item:nth-child(n+2) {
  margin-top: 70px;
}

/* service-block */
.service-block {}

.service-block__case {
  text-align: center;
}

.service-block__case-icon {
  display: inline-block;
  border-radius: 15px;
  padding: 3px 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-font-00);
  background-color: var(--color-bg-04);
}

.service-block__text {
  margin-top: 10px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}

.service-block__title {
  margin-top: 5px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-font-04);
}

.service-block__service-box-list {
  margin-top: 30px;
}

/* service-box-list */
.service-box-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-box-list__item {
  position: relative;
  width: 450px;
}

.service-box-list__item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -35px;
  margin-top: -20px;
  width: 17px;
  height: 40px;

  background-image: url("../img/triangle_right_blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* service-box */
.service-box {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 65px 30px 25px;
  background-color: var(--color-bg-00);

  background-repeat: no-repeat;
  background-position: center 15px;
  background-size: 40px 40px;
}

.service-box--bubble {
  background-image: url("../img/icon_circle_bubble_black.svg");
}

.service-box--check {
  background-image: url("../img/icon_circle_check_blue.svg");
}

.service-box__text {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.service-box__text--big {
  font-size: 20px;
  color: var(--color-font-04);
}

/* service-frame */
.service-frame {
  border-radius: 15px;
  border: 2px solid var(--color-bg-04);
  padding: 40px;
  background-color: var(--color-bg-00);

  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-frame__thum {
  display: block;
  width: 400px;
  height: 280px;
}

.service-frame__thum-img {
  border-radius: 20px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-frame__desc {
  width: 435px;
}

.service-frame__title-wrap {}

.service-frame__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.03em;
}

.service-frame__title--small {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.33;
}

.service-frame__text {
  margin-top: 10px;
  font-weight: 500;
}

/* service sp */
@media screen and (max-width:560px) {
  .service__inner {
    padding: 11.6vw 0 14.28vw;
  }

  .service__list {
    margin-top: 9.82vw;
  }

  .service__service-frame {
    margin-top: 14.28vw;
  }

  /* service-list */
  .service-list__item:nth-child(n+2) {
    margin-top: 14.28vw;
  }

  /* service-block */
  .service-block__case-icon {
    display: inline-block;
    border-radius: 2.67vw;
    padding: 0.53vw 2.67vw;
    font-size: 3.57vw;
  }

  .service-block__text {
    margin-top: 1.78vw;
    font-size: 3.57vw;
  }

  .service-block__title {
    margin-top: 0.89vw;
    font-size: 4.64vw;
    letter-spacing: 0;
  }

  .service-block__service-box-list {
    margin-top: 5.35vw;
  }

  /* service-box-list */
  .service-box-list__item {
    width: 100%;
  }

  .service-box-list__item:nth-child(n+2) {
    margin-top: 14.28vw;
  }

  .service-box-list__item:nth-child(n+2)::before {
    top: -8.92vw;
    left: 50%;
    margin-top: 0;
    margin-left: -5.35vw;
    width: 10.71vw;
    height: 4.46vw;

    background-image: url("../img/triangle_down_blue.svg");
  }

  /* service-box */
  .service-box {
    border-radius: 1.78vw;
    padding: 15.17vw 5.35vw 5.35vw;

    background-position: center 4.46vw;
    background-size: 8.92vw 8.92vw;
  }

  .service-box__text {
    line-height: 1.5;
  }

  .service-box__text--big {
    font-size: 4.64vw;
  }

  /* service-frame */
  .service-frame {
    border-radius: 2.67vw;
    border: 0.53vw solid var(--color-bg-04);
    padding: 7.14vw 5.35vw;
  }

  .service-frame__thum {
    width: 100%;
    height: 50vw;
  }

  .service-frame__thum-img {
    border-radius: 3.57vw;
  }

  .service-frame__desc {
    margin-top: 3.57vw;
    width: 100%;
  }

  .service-frame__title {
    font-size: 4.64vw;
    line-height: 1.19;
    letter-spacing: 0.05em;
  }

  .service-frame__title--small {
    font-size: 3.57vw;
    line-height: 1.19;
  }

  .service-frame__text {
    margin-top: 3.57vw;
  }
}

/* =======================================
  sales point
======================================= */
.consultant {
  position: relative;
}

.consultant__inner {
  padding: 60px 0 80px;
}

.consultant__list {
  margin-top: 60px;
}

/* consultant-list */
.consultant-list {}

.consultant-list__item {}

.consultant-list__item:nth-child(n+2) {
  margin-top: 30px;
}

/* consultant-box */
.consultant-box {
  border-radius: 10px;
  padding: 55px 80px 55px 40px;

  background-color: var(--color-bg-00);

  background-repeat: no-repeat;

  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;

}

.consultant-box--care {
  background-image: url("../img/bg-care.svg");
  background-position: calc(100% - 40px) 82px;
  background-size: 194px 194px;
}

.consultant-box--bag {
  background-image: url("../img/bg-bag.svg");
  background-position: calc(100% - 40px) 175px;
  background-size: 192px 166px;
}

.consultant-box--bubble {
  background-image: url("../img/bg-bubble.svg");
  background-position: calc(100% - 40px) 146px;
  background-size: 190px 177px;
}

.consultant-box__thum {
  display: block;
  width: 330px;
  height: 203px;
}

.consultant-box__thum-img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.consultant-box__desc {
  width: 470px;
}

.consultant-box__case {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: var(--color-font-04);
}

.consultant-box__title {
  margin-top: 5px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.consultant-box__text {
  margin-top: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* consultant sp */
@media screen and (max-width:560px) {
  .consultant__inner {
    padding: 14.28vw 0;
  }
  .consultant__list {
    margin-top: 8.03vw;
  }

  /* consultant-list */
  .consultant-list__item:nth-child(n+2) {
    margin-top: 7.14vw;
  }
  /* consultant-box */
  .consultant-box {
    border-radius: 1.78vw;
    padding: 5.35vw;
  }
  .consultant-box--care {
    background-position: calc(100% - 2.67vw) 66.96vw;
    background-size: 25.89vw 25.89vw;
  }

  .consultant-box--bag {
    background-position: calc(100% - 2.67vw) 85vw;
    background-size: 27.14vw 23.39vw;
  }
  .consultant-box--bubble {
    background-position: calc(100% - 2.67vw) 83.5vw;
    background-size: 25.71vw 23.92vw;
  }

  .consultant-box__thum {
    width: 100%;
    height: 41.25vw;
  }
  .consultant-box__thum-img {
    border-radius: 2.14vw;
  }
  .consultant-box__desc {
    width: 100%;
    margin-top: 3.57vw;
  }
  .consultant-box__case {
    font-size: 3.57vw;
    line-height: 1.35;
    text-align: center;
  }

  .consultant-box__title {
    margin-top: 0.89vw;
    font-size: 5.35vw;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
  }
  .consultant-box__text {
    margin-top: 3.57vw;
    letter-spacing: 0;
  }
}

/* =======================================
  register
======================================= */
.register {
  background-color: var(--color-bg-07);
}

.register__inner {
  padding: 70px 0 20px;
}

.register__form {
  margin-top: 30px;
}

/* =======================================
  footer global
======================================= */
.footer-global {}

.footer-global__inner {
  padding: 65px 0 50px;

  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__copy {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

/* 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: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-global-link__link::after {
  position: absolute;
  top: 50%;
  right: -14px;
  margin-top: -6px;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  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: 8.92vw 0 7.14vw;
  }

  .footer-global__copy {
    margin-top: 3.57vw;
    font-size: 3.21vw;
    line-height: 1.44;
  }

  /* footer-global-link */
  .footer-global-link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer-global-link__item:nth-child(n+2) {
    margin-left: 7.14vw;
  }

  .footer-global-link__link {
    padding-right: 0.89vw;
    font-size: 3.57vw;
    line-height: 1.45;
  }

  .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 {
    bottom: 12%;
    width: 14.28vw;
    height: 14.28vw;
  }
}