@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  background: #fff;
  font-family: 'Zen Kaku Gothic New', 'Poppins', sans-serif;
  color: #000;
  line-height: 1.8;
  word-break: break-all;
  font-feature-settings: "palt" 1;
  overflow: hidden;
}

.inner {
  max-width: 130rem;
  position: relative;
  margin: 0 auto;
  padding-left: 5rem;
  padding-right: 5rem;
}

@media screen and (max-width: 768px) {
  .inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.pc {
  display: block;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.pc-tb {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc-tb {
    display: none;
  }
}

.tb {
  display: none;
}

@media screen and (max-width: 1024px) {
  .tb {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .tb {
    display: none;
  }
}

.tb-sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .tb-sp {
    display: block;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.text_link {
  color: #000;
  position: relative;
  transition: all .3s;
  padding-right: 3rem;
  display: inline-block;
}

.text_link::after {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("../img/icon_link.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 1280px) {
  .text_link:hover {
    text-decoration: unset;
  }
}

/*----- mainv -----*/
.mainv {
  width: 100%;
}

.mainv .mainv-inner {
  position: relative;
}

.mainv .mainv__logo {
  width: 12rem;
  position: absolute;
  top: 2rem;
  left: 4.5rem;
}

@media screen and (max-width: 768px) {
  .mainv .mainv__logo {
    width: 10rem;
    top: 1rem;
    left: 2rem;
  }
}

/*----- cta -----*/
.cta {
  background-color: #f1dd90;
  padding-top: 12.5rem;
  padding-bottom: 6.4rem;
}

@media screen and (max-width: 1280px) {
  .cta {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .cta {
    padding-top: 8rem;
  }
}

.cta .cta__title {
  position: relative;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  padding: 0 7rem 0 8.9rem;
  letter-spacing: 0.05em;
  margin: 0 auto 4rem;
  width: fit-content;
}

.cta .cta__title::before {
  content: "";
  display: block;
  width: 40.5rem;
  height: 16.7rem;
  background-image: url("../img/cta_flag.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 1280px) {
  .cta .cta__title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .cta .cta__title::before {
    width: 29rem;
    height: 12rem;
  }
}

@media screen and (max-width: 1024px) {
  .cta .cta__title {
    font-size: 2.5rem;
    padding: 0 4rem 0 5rem;
  }
  .cta .cta__title::before {
    width: 21.75rem;
    height: 9rem;
  }
}

@media screen and (max-width: 768px) {
  .cta .cta__title {
    font-size: 2.2rem;
    line-height: 1.5;
    padding: 0 3rem 0 5rem;
  }
  .cta .cta__title::before {
    left: 0;
    bottom: 3rem;
  }
}

.cta .cta__box {
  background-color: #fff;
  padding: 5rem 5rem 3.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1280px) {
  .cta .cta__box {
    padding: 4rem 5rem 2.6rem;
  }
}

@media screen and (max-width: 1280px) {
  .cta .cta__box {
    padding: 4rem 3rem 2.6rem;
  }
}

@media screen and (max-width: 768px) {
  .cta .cta__box {
    flex-direction: column;
    padding: 4rem 2rem 2.6rem;
  }
}

.cta .cta__box-l {
  margin-right: 3.2vw;
}

@media screen and (max-width: 768px) {
  .cta .cta__box-l {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

.cta .cta__btn {
  position: relative;
  display: block;
  background-color: #7caacc;
  color: #fff;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  border-radius: 55px;
  padding: 3.3rem 15rem 3.3rem 12rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: all .3s;
}

.cta .cta__btn::before {
  content: "";
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
  transition: all .3s;
}

.cta .cta__btn::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #7caacc;
  border-right: 2px solid #7caacc;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 4.4rem;
  transition: all .3s;
}

@media screen and (max-width: 1280px) {
  .cta .cta__btn {
    font-size: 2rem;
    padding: 2rem 10rem 2rem 7rem;
  }
  .cta .cta__btn::before {
    width: 3rem;
    height: 3rem;
    right: 2.3rem;
  }
  .cta .cta__btn::after {
    width: 0.8rem;
    height: 0.8rem;
    right: 3.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .cta .cta__btn {
    font-size: 1.6rem;
    padding: 2rem 8rem 2rem 6rem;
  }
  .cta .cta__btn::before {
    width: 2.5rem;
    height: 2.5rem;
    right: 1.5rem;
  }
  .cta .cta__btn::after {
    width: 0.6rem;
    height: 0.6rem;
    right: 2.5rem;
  }
}

@media screen and (min-width: 1280px) {
  .cta .cta__btn:hover::before {
    content: "";
    right: 3.5rem;
  }
  .cta .cta__btn:hover::after {
    right: 4.9rem;
  }
}

.cta .cta__num {
  font-size: 5.6rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #7caacc;
  font-family: "Poppins", sans-serif;
  position: relative;
  padding-left: 5rem;
}

@media screen and (max-width: 1280px) {
  .cta .cta__num {
    font-size: 4rem;
  }
}

@media screen and (max-width: 1024px) {
  .cta .cta__num {
    font-size: 3.3rem;
    padding-left: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .cta .cta__num {
    padding-left: 3rem;
  }
}

.cta .cta__num::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

@media screen and (max-width: 1280px) {
  .cta .cta__num::before {
    width: 3rem;
    height: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .cta .cta__num::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .cta .cta__num::before {
    width: 2rem;
    height: 2rem;
  }
}

.cta .cta__num-tel {
  margin-bottom: 1rem;
}

.cta .cta__num-free {
  margin-bottom: 0.6rem;
}

.cta .cta__num-tel::before {
  background-image: url("../img/icon_tel.png");
}

.cta .cta__num-free::before {
  background-image: url("../img/icon_free.png");
}

.cta .cta__num-tel span {
  font-size: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
  .cta .cta__num-tel span {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .cta .cta__num-tel span {
    font-size: 1.2rem;
  }
}

.cta .cta__txt {
  font-size: 1.9rem;
}

@media screen and (max-width: 1280px) {
  .cta .cta__txt {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1024px) {
  .cta .cta__txt {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .cta .cta__txt {
    text-align: center;
  }
}

/*----- type -----*/
.type {
  position: relative;
  padding-top: 12.7rem;
  padding-bottom: 4rem;
}

@media screen and (max-width: 1280px) {
  .type {
    padding-top: 8rem;
  }
}

@media screen and (max-width: 768px) {
  .type {
    padding-top: 5rem;
  }
}

.type .type__bgtxt {
  position: absolute;
  top: 3rem;
  left: 5rem;
  writing-mode: vertical-rl;
  font-size: 20rem;
  color: #fff;
  -webkit-text-stroke: 1px #9ab7a7;
  font-weight: 600;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.035em;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (max-width: 1280px) {
  .type .type__bgtxt {
    font-size: 15rem;
    left: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type__bgtxt {
    font-size: 8rem;
    left: 1rem;
  }
}

.type .type__txt {
  font-size: 2.2rem;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 2.2;
  font-weight: 500;
  padding: 0 8rem;
}

@media screen and (max-width: 1280px) {
  .type .type__txt {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type__txt {
    text-align: left;
    font-size: 1.6rem;
    padding: 0 2rem;
  }
}

.type .type__title {
  width: 63rem;
  margin: 8rem auto 15.3rem;
}

@media screen and (max-width: 1280px) {
  .type .type__title {
    width: 44rem;
    margin: 5rem auto 15.3rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type__title {
    width: 31.4rem;
    margin: 4rem auto 7rem;
  }
}

.type .type_item {
  position: relative;
  background-color: #e8f2ec;
}

.type .type_item::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -18.5rem;
}

@media screen and (max-width: 1440px) {
  .type .type_item::before {
    top: -14rem;
  }
}

@media screen and (max-width: 1280px) {
  .type .type_item::before {
    top: -12rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item::before {
    top: -5rem;
  }
}

.type .type_item__inner {
  max-width: 70rem;
  min-width: 45rem;
  text-align: center;
}

@media screen and (max-width: 1280px) {
  .type .type_item__inner {
    max-width: 55rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item__inner {
    min-width: unset;
    width: 90%;
  }
}

.type .type_item__title {
  font-size: 5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(transparent 70%, #fff 0%);
  display: inline;
  padding: 0 2px 1rem;
}

@media screen and (max-width: 1280px) {
  .type .type_item__title {
    font-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item__title {
    font-size: 2.8rem;
    background: linear-gradient(transparent 60%, #fff 0%);
    padding: 0 2px 0.5rem;
  }
}

.type .type_item__top {
  padding: 0 1.3rem;
  margin: 3rem 0 8rem;
  text-align: left;
}

@media screen and (max-width: 1280px) {
  .type .type_item__top {
    margin: 2rem 0 6rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item__top {
    margin: 1.5rem 0 6rem;
    padding: 0 0;
  }
}

.type .type_item__txt {
  font-size: 3rem;
  font-weight: 700;
}

@media screen and (max-width: 1280px) {
  .type .type_item__txt {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item__txt {
    font-size: 2rem;
  }
}

.type .type_item__num {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0.7rem;
  color: #9ab7a7;
}

@media screen and (max-width: 1280px) {
  .type .type_item__num {
    font-size: 4.5rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item__num {
    font-size: 3.5rem;
  }
}

.type .type_item__small {
  font-size: 2.1rem;
}

@media screen and (max-width: 1024px) {
  .type .type_item__small {
    font-size: 1.8rem;
  }
}

.type .type_item__tab {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 3.6rem 6rem;
  border-top: 1px solid #000;
  text-align: left;
}

@media screen and (max-width: 1280px) {
  .type .type_item__tab {
    padding: 3rem 4rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item__tab {
    padding: 2rem 2.5rem;
  }
}

.type .type_item__tab + .type_item__tab {
  margin-top: 6.5rem;
}

.type .type_item__tab_title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  background-color: #9ab7a7;
  border-radius: 1rem 1rem 0 0;
  border: 1px solid #000;
  width: 11.8rem;
  height: 3.3rem;
  position: absolute;
  top: -3.3rem;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .type .type_item__tab_title {
    font-size: 1.6rem;
    width: 10rem;
    height: 3rem;
    top: -3rem;
  }
}

.type .type_item__tab_txt {
  font-size: 1.7rem;
  line-height: calc(30 / 17);
  margin-bottom: 2.6rem;
}

@media screen and (max-width: 1280px) {
  .type .type_item__tab_txt {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.type .type_item__tab_ullist,
.type .type_item__tab_ollist {
  font-size: 1.8rem;
}

@media screen and (max-width: 1280px) {
  .type .type_item__tab_ullist,
  .type .type_item__tab_ollist {
    font-size: 1.5rem;
  }
}

.type .type_item__tab_listitem {
  list-style: none;
  position: relative;
  padding-left: 3rem;
  line-height: calc(30 / 17);
}

@media screen and (max-width: 1280px) {
  .type .type_item__tab_listitem {
    padding-left: 2.7rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item__tab_listitem {
    padding-left: 2rem;
  }
}

.type .type_item__tab_listitem span {
  font-weight: 500;
}

.type .type_item__tab_ullist .type_item__tab_listitem {
  margin-bottom: -0.2rem;
}

@media screen and (max-width: 768px) {
  .type .type_item__tab_ullist .type_item__tab_listitem {
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }
}

.type .type_item__tab_ullist .type_item__tab_listitem:last-child {
  margin-bottom: 0;
}

.type .type_item__tab_ullist .type_item__tab_listitem::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50px;
  background-color: #9ab7a7;
  position: absolute;
  top: 1.3rem;
  left: 0.7rem;
}

@media screen and (max-width: 1280px) {
  .type .type_item__tab_ullist .type_item__tab_listitem::before {
    width: 0.8rem;
    height: 0.8rem;
    top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item__tab_ullist .type_item__tab_listitem::before {
    left: 0;
  }
}

.type .type_item__tab_ollist .type_item__tab_listitem {
  counter-increment: number;
  margin-bottom: 1.6rem;
}

@media screen and (max-width: 768px) {
  .type .type_item__tab_ollist .type_item__tab_listitem {
    line-height: 1.4;
  }
}

.type .type_item__tab_ollist .type_item__tab_listitem:last-child {
  margin-bottom: 0;
}

.type .type_item__tab_ollist .type_item__tab_listitem::before {
  content: counter(number) ".";
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #9ab7a7;
  position: absolute;
  top: 0.1rem;
  left: 0.6rem;
}

@media screen and (max-width: 1280px) {
  .type .type_item__tab_ollist .type_item__tab_listitem::before {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item__tab_ollist .type_item__tab_listitem::before {
    left: 0;
  }
}

.type .type_item__img_wrap {
  position: absolute;
  width: 34.375vw;
}

@media screen and (max-width: 768px) {
  .type .type_item__img_wrap {
    width: 50vw;
    max-width: 20rem;
  }
}

.type .type_item__img_wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f1dd90;
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  z-index: 0;
}

@media screen and (max-width: 1280px) {
  .type .type_item__img_wrap::before {
    top: -1rem;
    left: -1rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item__img_wrap::before {
    top: -0.5rem;
    left: -0.5rem;
  }
}

.type .type_item__img_wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #7caacc;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 0;
}

@media screen and (max-width: 1280px) {
  .type .type_item__img_wrap::after {
    bottom: -1rem;
    right: -1rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item__img_wrap::after {
    bottom: -0.5rem;
    right: -0.5rem;
  }
}

.type .type_item__img {
  position: relative;
  background-color: #fff;
  border: 1px solid #000;
  padding: 2.2rem;
  z-index: 5;
}

@media screen and (max-width: 1024px) {
  .type .type_item__img {
    padding: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item__img {
    padding: 0.5rem;
  }
}

.type .type_item__note {
  font-size: 1.7rem;
  margin: -3rem 0 0;
}

@media screen and (max-width: 1280px) {
  .type .type_item__note {
    font-size: 1.3rem;
  }
}

.type .type_item--01 {
  width: calc((1400 / 1920) * 100%);
  margin-left: auto;
  margin-bottom: 30rem;
  border-radius: 0 0 0 50rem;
  padding: 7rem 5rem 12.5rem 0;
}

@media screen and (max-width: 1280px) {
  .type .type_item--01 {
    margin-bottom: 20rem;
  }
}

@media screen and (max-width: 1024px) {
  .type .type_item--01 {
    border-radius: 0 0 0 30rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item--01 {
    width: 95%;
    border-radius: 0 0 0 20rem;
    padding: 5rem 1rem 15rem 1rem;
  }
}

.type .type_item--01 .type_item__img_wrap {
  top: -9.3rem;
  left: -18.75vw;
}

@media screen and (max-width: 768px) {
  .type .type_item--01 .type_item__img_wrap {
    top: auto;
    left: 4vw;
    bottom: -15rem;
  }
}

.type .type_item--01 .type_item__inner {
  margin-left: 24vw;
}

@media screen and (max-width: 1280px) {
  .type .type_item--01 .type_item__inner {
    margin-left: 20vw;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item--01 .type_item__inner {
    margin-left: auto;
    margin-right: auto;
  }
}

.type .type_item--01::before {
  background-image: url("../img/type_num01.png");
  width: 27.2rem;
  height: 27rem;
  right: 15rem;
}

@media screen and (max-width: 1440px) {
  .type .type_item--01::before {
    width: 20.15rem;
    height: 20rem;
  }
}

@media screen and (max-width: 1280px) {
  .type .type_item--01::before {
    width: 16.12rem;
    height: 16rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item--01::before {
    width: 10.1rem;
    height: 10rem;
    right: 2rem;
  }
}

.type .type_item--02 {
  width: calc((1330 / 1920) * 100%);
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 20rem;
  border-radius: 0 0 50rem 0;
  padding: 7.8rem 0 14.5rem 5rem;
}

@media screen and (max-width: 1280px) {
  .type .type_item--02 {
    width: calc((1400 / 1920) * 100%);
    margin-bottom: 14rem;
  }
}

@media screen and (max-width: 1024px) {
  .type .type_item--02 {
    border-radius: 0 0 30rem 0;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item--02 {
    width: 95%;
    border-radius: 0 0 20rem 0;
    padding: 5rem 1rem 15rem 1rem;
    margin-bottom: 20rem;
  }
}

.type .type_item--02 .type_item__img_wrap {
  top: -17.5rem;
  left: auto;
  right: -21.66vw;
}

@media screen and (max-width: 1280px) {
  .type .type_item--02 .type_item__img_wrap {
    top: -14rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item--02 .type_item__img_wrap {
    top: auto;
    bottom: -15rem;
    right: 4vw;
  }
}

.type .type_item--02 .type_item__inner {
  margin-left: auto;
  margin-right: 23.6vw;
}

@media screen and (max-width: 1280px) {
  .type .type_item--02 .type_item__inner {
    margin-right: 20vw;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item--02 .type_item__inner {
    margin-left: auto;
    margin-right: auto;
  }
}

.type .type_item--02 .type_item__tab_txt {
  margin-bottom: 0;
}

.type .type_item--02::before {
  background-image: url("../img/type_num02.png");
  width: 35.6rem;
  height: 27rem;
  right: 31rem;
}

@media screen and (max-width: 1440px) {
  .type .type_item--02::before {
    width: 26.37rem;
    height: 20rem;
    right: 25rem;
  }
}

@media screen and (max-width: 1280px) {
  .type .type_item--02::before {
    width: 21rem;
    height: 16rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item--02::before {
    width: 13.125rem;
    height: 10rem;
    right: 0;
  }
}

.type .type_item--03 {
  width: calc((1500 / 1920) * 100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20rem;
  border-radius: 0 0 50rem 0;
  padding: 8.8rem 0 14.3rem;
}

@media screen and (max-width: 1280px) {
  .type .type_item--03 {
    width: 85%;
    padding: 6rem 0 12rem;
    margin-bottom: 5rem;
  }
}

@media screen and (max-width: 1024px) {
  .type .type_item--03 {
    padding: 6rem 0 7rem;
    border-radius: 0 0 30rem 0;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item--03 {
    width: 95%;
    border-radius: 0 0 20rem 0;
    padding: 5rem 1rem 20rem 1rem;
  }
}

.type .type_item--03 .type_item__top {
  margin: 5rem 0 8rem;
}

@media screen and (max-width: 1024px) {
  .type .type_item--03 .type_item__top {
    margin: 5rem 0 2rem;
  }
}

.type .type_item--03 .type_item__txt {
  position: relative;
  line-height: 1.2;
  margin-bottom: 6rem;
  padding-left: 2.5rem;
}

.type .type_item--03 .type_item__txt:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #9ab7a7;
  border-radius: 50px;
  position: absolute;
  top: 1.5rem;
  left: 0;
}

@media screen and (max-width: 768px) {
  .type .type_item--03 .type_item__txt {
    margin-bottom: 4rem;
  }
}

.type .type_item--03 .type_item__inner {
  margin-left: 40.4vw;
}

@media screen and (max-width: 1280px) {
  .type .type_item--03 .type_item__inner {
    margin-left: 38vw;
  }
}

@media screen and (max-width: 1024px) {
  .type .type_item--03 .type_item__inner {
    margin-left: 34vw;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item--03 .type_item__inner {
    margin-left: auto;
    margin-right: auto;
  }
}

.type .type_item--03 .type_item__img_wrap {
  top: -7.5rem;
  left: -2.6vw;
}

@media screen and (max-width: 768px) {
  .type .type_item--03 .type_item__img_wrap {
    top: auto;
    left: auto;
    right: 9vw;
    bottom: -6rem;
  }
}

.type .type_item--03::before {
  background-image: url("../img/type_num03.png");
  width: 34.7rem;
  height: 27rem;
  right: -8rem;
  top: -17rem;
}

@media screen and (max-width: 1440px) {
  .type .type_item--03::before {
    width: 25.7rem;
    height: 20rem;
    right: -5rem;
    top: -14rem;
  }
}

@media screen and (max-width: 1280px) {
  .type .type_item--03::before {
    width: 20.56rem;
    height: 16rem;
    top: -12rem;
  }
}

@media screen and (max-width: 768px) {
  .type .type_item--03::before {
    width: 12.85rem;
    height: 10rem;
    top: -5rem;
    right: auto;
    left: 1rem;
  }
}

/*----- point -----*/
.point {
  background-color: rgba(203, 219, 230, 0.3);
  padding-top: 14rem;
}

@media screen and (max-width: 1280px) {
  .point {
    padding-top: 8rem;
  }
}

@media screen and (max-width: 768px) {
  .point {
    padding-top: 5rem;
  }
}

.point .point__title {
  width: 96rem;
  margin: 0 auto 5.5rem;
}

@media screen and (max-width: 1280px) {
  .point .point__title {
    width: 76.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .point .point__title {
    width: 65rem;
  }
}

@media screen and (max-width: 768px) {
  .point .point__title {
    width: 30rem;
  }
}

.point .point_list {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .point .point_list {
    flex-direction: column;
    align-items: center;
  }
}

.point .point_item {
  position: relative;
  width: calc((500 / 1200) * 100%);
}

@media screen and (max-width: 1024px) {
  .point .point_item {
    width: 47%;
  }
}

@media screen and (max-width: 768px) {
  .point .point_item {
    width: 90%;
    max-width: 50rem;
  }
}

@media screen and (max-width: 768px) {
  .point .point_item + .point_item {
    margin-top: 5rem;
  }
}

.point .point_item__num {
  position: absolute;
  width: 16.5rem;
  height: 16.5rem;
  top: -0.8rem;
  left: -4.2rem;
}

@media screen and (max-width: 1024px) {
  .point .point_item__num {
    width: 14rem;
    height: 14rem;
  }
}

@media screen and (max-width: 768px) {
  .point .point_item__num {
    width: 25vw;
    height: auto;
    left: -1rem;
  }
}

.point .point_item__box {
  padding-top: 5rem;
}

@media screen and (max-width: 768px) {
  .point .point_item__box {
    padding-top: 2rem;
  }
}

.point .point_item__txt {
  font-size: 1.7rem;
  text-align: justify;
  letter-spacing: 0.03em;
  line-height: calc(30 / 17);
}

/*----- flow -----*/
.flow {
  position: relative;
  background-color: rgba(203, 219, 230, 0.3);
  padding-top: 11rem;
  padding-bottom: 13rem;
}

@media screen and (max-width: 1024px) {
  .flow {
    padding-top: 17rem;
    padding-bottom: 17rem;
  }
}

@media screen and (max-width: 768px) {
  .flow {
    padding-top: 11rem;
    padding-bottom: 10rem;
  }
}

.flow::before {
  content: "FLOW";
  font-family: "Poppins", sans-serif;
  font-size: 25rem;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  position: absolute;
  top: 0;
  left: 6.3rem;
}

@media screen and (max-width: 768px) {
  .flow::before {
    font-size: 10rem;
    font-weight: 600;
    top: 2rem;
    left: 2rem;
  }
}

.flow::after {
  content: "FLOW";
  font-family: "Poppins", sans-serif;
  font-size: 25rem;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  position: absolute;
  bottom: 3rem;
  right: 6rem;
}

@media screen and (max-width: 768px) {
  .flow::after {
    font-size: 10rem;
    font-weight: 600;
    right: 2rem;
  }
}

.flow .flow__box {
  position: relative;
  background-color: #fff;
  border-radius: 30rem 0 30rem 0;
  border: 4px solid #7caacc;
  padding: 14rem 0 12rem;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .flow .flow__box {
    border-radius: 20rem 0 20rem 0;
  }
}

@media screen and (max-width: 768px) {
  .flow .flow__box {
    border-radius: 10rem 0 10rem 0;
    border: 3px solid #7caacc;
    padding: 8rem 0 8rem;
  }
}

.flow .flow__title {
  width: 56rem;
  position: absolute;
  top: -5.2rem;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .flow .flow__title {
    width: 28rem;
    top: -3.2rem;
  }
}

.flow .flow__img {
  width: 80rem;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .flow .flow__img {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .flow .flow__img {
    width: 90%;
    max-width: 50rem;
    overflow-x: auto;
    height: 32.5rem;
  }
}

@media screen and (max-width: 768px) {
  .flow .flow__img img {
    height: 100%;
    width: auto;
  }
}

.flow .flow__note {
  display: none;
}

@media screen and (max-width: 768px) {
  .flow .flow__note {
    display: block;
    font-size: 1.4rem;
    text-align: center;
    padding-top: 2rem;
  }
}

/*----- sns -----*/
.sns {
  padding-top: 7rem;
  padding-bottom: 6rem;
}

@media screen and (max-width: 768px) {
  .sns {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

.sns .sns__title {
  width: 81rem;
  margin: 0 auto 3rem;
}

@media screen and (max-width: 1024px) {
  .sns .sns__title {
    width: 60rem;
  }
}

@media screen and (max-width: 768px) {
  .sns .sns__title {
    width: 33rem;
    margin: 0 auto 3rem;
  }
}

.sns .sns_list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns .sns_item {
  width: 7rem;
  margin-right: 7rem;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .sns .sns_item {
    width: 5rem;
    margin-right: 3rem;
  }
}

.sns .sns_item:last-child {
  margin-right: 0;
}

/*----- info -----*/
.info {
  background-image: url(../img/info_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 10rem;
  padding-bottom: 10.6rem;
}

@media screen and (max-width: 768px) {
  .info {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.info .info_list {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .info .info_list {
    flex-direction: column;
  }
}

.info .info_item {
  position: relative;
  width: calc((570 / 1200) * 100%);
  background-color: #fff;
  border: 1px solid #000;
  padding: 6rem 2rem 5.8rem;
}

@media screen and (max-width: 768px) {
  .info .info_item {
    width: 100%;
    padding: 4.5rem 2rem 3rem;
  }
}

@media screen and (max-width: 768px) {
  .info .info_item + .info_item {
    margin-top: 5rem;
  }
}

.info .info_item__title {
  width: calc((214 / 570) * 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2rem;
}

@media screen and (max-width: 768px) {
  .info .info_item__title {
    width: 20rem;
  }
}

.info .info_item__canpas {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  .info .info_item__canpas {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.info .info_item__txt {
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .info .info_item__txt {
    font-size: 1.5rem;
  }
}

/*----- footer -----*/
.footer {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
}

.footer figure {
  width: 12rem;
  margin: 0 auto 5rem;
}

@media screen and (max-width: 768px) {
  .footer figure {
    width: 10rem;
    margin: 0 auto 3rem;
  }
}

.footer .footer_copyright {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/*----- アニメーション -----*/
.fade-up {
  transform: translateY(2rem);
  opacity: 0;
  transition: .6s ease .6s;
}
