html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media screen and (min-width:1440px) {
  html {
    font-size: calc(100vw / 1440 * 10);
  }
}

@media screen and (max-width:1040px) {
  html {
    font-size: calc(100vw / 1040 * 10);
  }
}

@media screen and (max-width:768px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }
}
body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  min-height: 200vh;
  opacity: 0;
  transition: .4s;
}
body.lazy {
  opacity: 1;
}
body::before {
  background-image: url(../img/cnp02_bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 144rem;
  content: '';
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body::before {
    background-size: 50rem;
  }
}
.oswald {
  font-family: 'Oswald', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
.gothic {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-style: normal;
  font-weight: 400;
}
.body_container {
  min-width: 100rem;
  overflow: hidden;
}
.max1000 {
  margin: 0 auto;
  max-width: 100rem;
}
img {
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .body_container {
    min-width: 100%;
    padding-top: 6.4rem;
  }
  .max1000 {
    padding: 0 2rem;
  }
}
a {
  transition: .2s;
}
/* @media (any-hover:hover) {
  a:hover {
    opacity: .8;
  }
} */
.anchor {
  margin-top: -8.2rem;
  padding-top: 8.2rem;
}
@media screen and (max-width: 768px) {
  .anchor {
    margin-top: -6.4rem;
    padding-top: 6.4rem;
  }
}

/* ---------------------------------------------------------------------------
//  header
--------------------------------------------------------------------------- */
#header {
  color: #fff;
  position: fixed;
  position: absolute;
  top: 0;
  transition: .2s;
  width: 100%;
  z-index: 999;
}
#header.fixed {
  position: fixed;
}
#header > .inner {
  align-items: center;
  display: flex;
  height: 8.2rem;
  justify-content: space-between;
  transition: .2s;
}
#header.move {
  transform: translateY(-100%);
}
#header.move.fixed {
  background: #000;
  transform: translateY(0);
}
#header .logo {
  align-items: center;
  border: solid .1rem;
  display: flex;
  font-size: 1.4rem;
  font-weight: 400;
  height: 5rem;
  justify-content: center;
  white-space: nowrap;
  width: 15.7rem;
}
#header .logo:hover {
  color: #bc0015;
}
#header .nav_area {
  width: calc(100% - 18.1rem);
}
#header .nav_area nav ul {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#header .nav_area nav ul li a {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  white-space: nowrap;
}
#header .nav_area nav ul li a:hover {
  color: #bc0015;
}
#header .nav_area nav ul li a.tel {
  align-items: center;
  background: #bc0015;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 8.2rem;
  justify-content: center;
  pointer-events: none;
  width: 23rem;
}
#header .nav_area nav ul li a.tel img {
  width: 18.6rem;
}
#header .nav_area nav ul li a.tel small {
  font-size: 1.2rem;
  margin-top: .5rem;
}
#nav_toggle {
  display: none;
}
@media screen and (max-width:768px) {
  #header {
    background: #000;
    position: fixed!important;
    transform: translateY(0)!important;
  }
  #header > .inner {
    height: 6.4rem;
  }
  #header .logo {
    font-size: 1.3rem;
    height: 5rem;
    width: 15rem;
  }
  #header .nav_area {
    background: rgba(0,0,0,.78);
    height: calc(100vh - 6.4rem);
    left: 0;
    opacity: 0;
    overflow: auto;
    padding: 2rem 0 8rem;
    padding-bottom: 0;
    position: absolute;
    top: 6.4rem;
    transition: .5s;
    visibility: hidden;
    width: 100%;
  }
  #header.open .nav_area {
    opacity: 1;
    visibility: visible;
  }
  #nav_toggle {
    background: #bc0015;
    border: solid 2px #000;
    cursor: pointer;
    display: block;
    height: 3.8rem;
    margin-left: auto;
    position: relative;
    right: 1rem;
    top: 0;
    width: 3.8rem;
    z-index: 1000;
  }
  #nav_toggle div {
    position: relative;
  }
  #nav_toggle span {
    background: #000;
    display: block;
    height: 2px;
    left: 0;
    margin: auto ;
    position: absolute;
    right: 0;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    width: 1.6rem;
  }
  #nav_toggle span:nth-child(1) {
    top: 1.1rem;
  }
  #nav_toggle span:nth-child(2) {
    top: 1.7rem;
  }
  #nav_toggle span:nth-child(3) {
    top: 2.3rem;
  }
  .open #nav_toggle span:nth-child(1) {
    top: 1.7rem;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .open #nav_toggle span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 1.7rem;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #header .nav_area nav ul {
    align-items: center;
    flex-direction: column;
  }
  #header .nav_area nav ul li a {
    border-bottom: solid .2rem;
    font-size: 1.6rem;
    padding: 2rem;
    text-align: center;
    width: 33.5rem;
  }
  #header .nav_area nav ul li a.tel {
    display: none;
  }
}

/* ---------------------------------------------------------------------------
//  mv
--------------------------------------------------------------------------- */
.mv {
  background-image: url(../img/mv_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 144rem;
}
.mv .wrap01 {
  display: flex;
  height: 75rem;
  padding-top: 10.9rem;
  position: relative;
}
.mv .wrap01 .left {
  display: flex;
  flex-direction: column;
}
.mv .wrap01 .left .txt01 {
  width: 53.6rem;
}
.mv .wrap01 .left .txt02 {
  margin: 0 auto;
  width: 41.4rem;
}
.mv .wrap01 .left .txt03 {
  margin-left: auto;
  width: 56rem;
}
.mv .wrap01 .right {
  width: calc(100% - 56rem);
}
.mv .wrap01 .right img {
  bottom: 12rem;
  position: absolute;
  right: -8rem;
  width: 53.77rem;
}
@media screen and (max-width:768px) {
  .mv {
    background-image: url(../img/mv_bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .mv .wrap01 {
    flex-direction: column;
    height: auto;
    padding-top: 4rem;
  }
  .mv .wrap01 .txt {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .mv .wrap01 .left .txt01 {
    width: 100%;
  }
  .mv .wrap01 .left .txt02 {
    width: 80%;
  }
  .mv .wrap01 .left .txt03 {
    width: 100%;
  }
  .mv .wrap01 .right {
    margin-top: 6rem;
    width: 100%;
  }
  .mv .wrap01 .right img {
    bottom: 3rem;
    max-width: inherit;
    position: relative;
    right: .7rem;
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------
//  cnp01
--------------------------------------------------------------------------- */
.cnp01 {
  background: url(../img/cnp01_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cnp01 .wrap01 {
  padding: 14.4rem 0 17.1rem;
  padding: 8rem 0;
  position: relative;
}
.cnp01 .left img {
  bottom: 0;
  left: -2rem;
  position: absolute;
  width: 48.6rem;
  width: 34rem;
}
.cnp01 .left span {
  bottom: 1.2rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  left: 5rem;
  position: absolute;
  text-shadow: 0 0 .5rem rgba(0,0,0,.78);
}
.cnp01 .right {
  margin-left: 30.2rem;
  position: relative;
}
.cnp01 .right .ttl {
  color: #514f4f;
  font-size: 4.8rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.cnp01 .right .ttl .red {
  color: #e00000;
}
.cnp01 .right .ttl .green {
  background: linear-gradient(90deg, #24a388, #80d76f);
  -webkit-background-clip: text;
  display: inline-block;
  -webkit-text-fill-color: transparent;
}
.cnp01 .right .dummy {
  color: #514f4f;
  font-size: 4.8rem;
  font-weight: bold;
  left: 0;
  position: absolute;
  text-shadow: 0 0 1rem #fff,0 0 1rem #fff,0 0 1rem #fff,0 0 1rem #fff,0 0 1rem #fff;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: .7rem;
  top: 0;
}
.cnp01 .right .desc {
  color: #413e3e;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 4rem;
  position: relative;
  text-shadow: 0 0 1rem #fff,0 0 1rem #fff,0 0 1rem #fff,0 0 1rem #fff,0 0 1rem #fff;
  z-index: 3;
}
@media screen and (max-width:768px) {
  .cnp01 {
    background-position: bottom right;
  }
  .cnp01 .wrap01 {
    display: flex;
    flex-direction: column;
    padding: 6rem 0 0;
    position: relative;
  }
  .cnp01 .left {
    left: 3rem;
    order: 2;
    position: relative;
  }
  .cnp01 .left img {
    bottom: 0;
    left: 2rem;
    order: 2;
    position: relative;
    width: 70%;
  }
  .cnp01 .left span {
    font-size: 1.4rem;
    left: 0;
    margin: 0 auto;
    right: 4rem;
    text-align: center;
    width: 20rem;
  }
  .cnp01 .right {
    margin-left: 0;
    position: relative;
  }
  .cnp01 .right .ttl {
    font-size: 2.6rem;
    white-space: nowrap;
  }
  .cnp01 .right .dummy {
    font-size: 2.6rem;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: .7rem;
    top: 0;
    white-space: nowrap;
  }
  .cnp01 .right .desc {
    color: #413e3e;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.7;
    margin-top: 3rem;
  }
}

/* ---------------------------------------------------------------------------
//  cnp02
--------------------------------------------------------------------------- */
/* .cnp02 {
  background: url(../img/cnp02_bg.png);
  background-attachment: fixed;
  background-position: center bottom 34.4rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 144rem;
} */
.cnp02 .inner {
  padding-bottom: 6rem;
}
.cnp02 .ttl01 {
  background-image: url(../img/bg_tri.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 144rem;
  color: #fb5555;
  font-size: 13.2rem;
  font-weight: 900;
  height: 21rem;
  line-height: 1.3;
  position: relative;
  text-align: center;
  width: 100%;
}
.cnp02 .ttl01 span {
  position: relative;
}
.cnp02 .ttl01 span::before {
  background-image: url(../img/cpn02_deco01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 23.2rem;
  position: absolute;
  right: -24.5rem;
  top: -5.5rem;
  width: 23.7rem;
}
.cnp02 .wrap01 {
  margin: 2.5rem auto 0;
  max-width: 84.2rem;
}
.cnp02 .wrap01 .point_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cnp02 .wrap01 .point_list > .item {
  align-items: center;
  background: #fff;
  border: solid .2rem rgba(53,137,98,.5);
  display: flex;
  flex-direction: column;
  height: 48.5rem;
  margin-top: 3.5rem;
  padding: 9rem 2rem 3.6rem;
  position: relative;
  width: 40rem;
}
.cnp02 .wrap01 .point_list > .item .num {
  background: #e03535;
  border-radius: 0 0 .5rem .5rem;
  color: #fff;
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  height: 6.1rem;
  left: 0;
  margin: auto;
  padding-top: .7rem;
  position: absolute;
  right: 0;
  text-align: center;
  top: -.5rem;
  width: 16rem;
}
.cnp02 .wrap01 .point_list > .item .num span {
  font-size: 3rem;
}
.cnp02 .wrap01 .point_list > .item .icon {
  align-items: center;
  display: flex;
  height: 13rem;
  justify-content: center;
}
.cnp02 .wrap01 .point_list > .item:nth-of-type(1) .icon img {
  width: 10.5rem;
}
.cnp02 .wrap01 .point_list > .item:nth-of-type(2) .icon img {
  position: relative;
  top: -1rem;
  width: 8.8rem;
}
.cnp02 .wrap01 .point_list > .item:nth-of-type(3) .icon img {
  width: 10.5rem;
}
.cnp02 .wrap01 .point_list > .item:nth-of-type(4) .icon img {
  position: relative;
  top: -1rem;
  width: 11.15rem;
}
.cnp02 .wrap01 .point_list > .item:nth-of-type(5) .icon img {
  width: 8.8rem;
}
.cnp02 .wrap01 .point_list > .item:nth-of-type(6) .icon img {
  width: 8.95rem;
}
.cnp02 .wrap01 .point_list > .item .sub {
  align-items: center;
  color: #e03535;
  display: flex;
  font-size: 2.4rem;
  font-weight: bold;
  height: 7.7rem;
  justify-content: center;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  text-align: center;
}
.cnp02 .wrap01 .point_list > .item .desc {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  width: 27rem;
}
.cnp02 .wrap01 .point_list > .item .list {
  display: flex;
}
.cnp02 .wrap01 .point_list > .item .list::before {
  content: '・';
}
.cnp02 .wrap01 .others {
  background-color: #f6eded;
  background-image: url(../img/cnp03_deco01.png);
  background-position: left bottom .5rem;
  background-repeat: no-repeat;
  background-size: 29rem;
  margin-top: 6rem;
}
.cnp02 .wrap01 .others .ttl02 {
  align-items: center;
  background: #e03535;
  color: #fff;
  display: flex;
  font-size: 2.4rem;
  font-weight: bold;
  height: 8.4rem;
  justify-content: center;
}
.cnp02 .wrap01 .others .others_list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  padding: 3.4rem 8rem 6rem;
}
.cnp02 .wrap01 .others .others_list .item {
  width: 16rem;
  width: calc((100% - 6rem) / 3);
}
.cnp02 .wrap01 .others .others_list .item .sub {
  color: #af0000;
  font-size: 2.3rem;
  font-weight: 900;
  text-align: center;
}
.cnp02 .wrap01 .others .others_list .item .desc {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1rem;
}
@media screen and (max-width:768px) {
  .cnp02 .ttl01 {
    background-size: 80rem;
    font-size: 7rem;
    height: 11rem;
  }
  .cnp02 .ttl01 span::before {
    height: 12rem;
    right: -2.5rem;
    top: 9rem;
    width: 12rem;
    z-index: 2;
  }
  .cnp02 .wrap01 .point_list {
    justify-content: center;
  }
  .cnp02 .wrap01 .point_list > .item {
    background: rgba(255,255,255,.7);
    height: auto;
    padding: 8rem 2rem 4rem;
    width: 100% ;
  }
  .cnp02 .wrap01 .point_list > .item .num {
    font-size: 2rem;
    height: 5rem;
    padding-top: .4rem;
    width: 14rem;
  }
  .cnp02 .wrap01 .point_list > .item .num span {
    font-size: 2.6rem;
  }
  .cnp02 .wrap01 .point_list > .item .icon {
    height: auto;
  }
  .cnp02 .wrap01 .point_list > .item:nth-of-type(2) .icon {
    height: 9rem;
  }
  .cnp02 .wrap01 .point_list > .item:nth-of-type(2) .icon img {
    top: -1.5rem;
  }
  .cnp02 .wrap01 .point_list > .item:nth-of-type(4) .icon img {
    top: -.6rem;
    width: 10.5rem;
  }
  .cnp02 .wrap01 .point_list > .item .sub {
    font-size: 2.2rem;
    height: auto;
    margin-top: 2rem;
  }
  .cnp02 .wrap01 .point_list > .item .desc {
    font-size: 1.6rem;
    width: 100%;
  }
  .cnp02 .wrap01 .point_list > .item .list {
    display: flex;
  }
  .cnp02 .wrap01 .point_list > .item .list::before {
    content: '・';
  }
  .cnp02 .wrap01 .others {
    background-position: center;
  }
  .cnp02 .wrap01 .others .ttl02 {
    font-size: 2rem;
    height: auto;
    padding: 1rem 2rem;
    text-align: center;
  }
  .cnp02 .wrap01 .others .others_list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    padding: 3rem 2rem 3rem;
  }
  .cnp02 .wrap01 .others .others_list .item {
    width: 100%;
  }
  .cnp02 .wrap01 .others .others_list .item .sub {
    color: #af0000;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
  }
  .cnp02 .wrap01 .others .others_list .item .desc {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------------------------------
//  cnp03
--------------------------------------------------------------------------- */
.cnp03 {
  background: #f4f0f0;
}
.cnp03 .inner {
  padding-bottom: 10rem;
}
.cnp03 .ttl01 {
  position: relative;
  text-align: center;
}
.cnp03 .ttl01 .en {
  color: #fff;
  font-size: 13.2rem;
  font-weight: 900;
}
.cnp03 .ttl01 .jp {
  align-items: center;
  bottom: 0;
  color: #e03535;
  display: flex;
  font-size: 4rem;
  font-weight: 900;
  justify-content: center;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.cnp03 .table_area {
  margin-top: 2.5rem;
  position: relative;
}
.cnp03 .table_area .sups {
  bottom: -2rem;
  position: absolute;
  right: 11.1rem;
}
.cnp03 .table_area .sups dt {
  align-items: center;
  background: #979797;
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  height: 5.7rem;
  justify-content: center;
  width: 37.4rem;
}
.cnp03 .table_area .sups dd {
  color: #393333;
  display: flex;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 2rem;
}
.cnp03 .table_area .sups dd::before {
  content: '\203B';
}
.cnp03 .contact_area {
  margin-top: 9rem;
  max-width: 75rem;
  position: relative;
}
.cnp03 .contact_area .ttl02 {
  align-items: center;
  background: #6a5b5b;
  color: #fff;
  display: flex;
  font-size: 4rem;
  font-weight: 900;
  height: 8rem;
  justify-content: center;
}
.cnp03 .contact_area .white_wrap {
  align-items: center;
  background: #fff;
  border-radius: 0 0 3rem 3rem;
  display: flex;
  flex-direction: column;
  padding: 3rem;
}
.cnp03 .contact_area .white_wrap::before {
  background-image: url(../img/tri01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 4.1rem;
  margin: auto;
  position: absolute;
  right: -7rem;
  top: 12rem;
  width: 7.6rem;
}
.cnp03 .contact_area .white_wrap .sub {
  width: 36.3rem;
}
.cnp03 .contact_area .white_wrap a:hover {
  opacity: .7;
}
.cnp03 .contact_area .white_wrap .tels {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 2.4rem;
}
.cnp03 .contact_area .white_wrap .tels a {
  align-items: center;
  cursor: default;
  display: flex;
  pointer-events: none;
}
.cnp03 .contact_area .white_wrap .tels a span {
  font-size: 3.5rem;
  font-weight: bold;
}
.cnp03 .contact_area .white_wrap .tels a img {
  position: relative;
}
.cnp03 .contact_area .white_wrap .tels .tel01 img {
  margin-right: 1rem;
  top: .1rem;
  width: 1.2rem;;
}
.cnp03 .contact_area .white_wrap .tels .tel02 img {
  top: .2rem;
  width: 9.2rem;;
}
.cnp03 .contact_area .white_wrap .sns {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.cnp03 .contact_area .white_wrap .sns span {
  color: #e03535;
  font-size: 3.6rem;
  font-weight: bold;
}
.cnp03 .contact_area .white_wrap .sns a {
  margin-left: 1rem;
  width: 4.7rem;
}
.cnp03 .contact_area .white_wrap .woman {
  bottom: -9.96rem;
  position: absolute;
  right: -21rem;
  width: 23.7rem;
}
@media screen and (max-width:768px) {
  .cnp03 .inner {
    padding-bottom: 23rem;
  }
  .cnp03 .ttl01 {
    padding-top: 4rem;
  }
  .cnp03 .ttl01 .en {
    font-size: 7rem;
  }
  .cnp03 .ttl01 .jp {
    font-size: 3rem;
    top: 4rem;
  }

  .cnp03 .table_area .table {
    overflow-x: auto;
    width: calc(100vw - 2rem);
  }
  .cnp03 .table_area .table img {
    max-width: inherit;
    width: 60rem;
  }
  .cnp03 .table_area .sups {
    margin-top: 2rem;
    position: static;
  }
  .cnp03 .table_area .sups dt {
    width: 100%;
  }
  .cnp03 .table_area .sups dd {
    font-size: 1.6rem;
    white-space: nowrap;
  }
  .cnp03 .contact_area {
    margin-top: 6rem;
  }
  .cnp03 .contact_area .ttl02 {
    font-size: 2.4rem;
    height: 7rem;
  }
  .cnp03 .contact_area .white_wrap {
    padding: 3rem 2rem 6rem;
  }
  .cnp03 .contact_area .white_wrap::before {
    bottom: -2rem;
    left: 7rem;
    top: inherit;
    transform: rotate(90deg);
  }
  .cnp03 .contact_area .white_wrap .sub {
    width: 100%;
  }
  .cnp03 .contact_area .white_wrap .tels {
    display: block;
    margin-top: 1rem;
  }
  .cnp03 .contact_area .white_wrap .tels a {
    cursor: pointer;
    justify-content: space-between;
    pointer-events: all;
    white-space: nowrap;
  }
  .cnp03 .contact_area .white_wrap .tels a span {
    font-size: 3rem;
    width: 20rem;
  }
  .cnp03 .contact_area .white_wrap .tels a .icon {
    text-align: center;
    width: calc(100% - 20rem);
  }
  .cnp03 .contact_area .white_wrap .sns {
    margin-top: 3rem;
    position: relative;
  }
  .cnp03 .contact_area .white_wrap .sns span {
    font-size: 3rem;
  }
  .cnp03 .contact_area .white_wrap .sns a {
    margin-left: 1rem;
    width: 4.7rem;
  }
  .cnp03 .contact_area .white_wrap .woman {
    bottom: -23rem;
    pointer-events: none;
    right: -5rem;
    width: 23.7rem;
  }
}

/* ---------------------------------------------------------------------------
//  cnp04
--------------------------------------------------------------------------- */
.cnp04 {
  background-color: #fff;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(119,119,119,.4) calc(100% - 1px)),
  linear-gradient(90deg, transparent calc(100% - 1px), rgba(119,119,119,.4) calc(100% - 1px));
  background-position: center center;
  background-repeat: repeat;
  background-size: 3rem 3rem;
}
.cnp04 .inner {
  max-width: 123rem;
  padding-bottom: 10rem;
}
.cnp04 .ttl01 {
  background-image: url(../img/bg_tri.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 144rem;
  height: 21rem;
  line-height: 1.3;
  position: relative;
  text-align: center;
  width: 100%;
}
.cnp04 .ttl01 .en {
  color: #e65d5d;
  font-size: 13.2rem;
  font-weight: 900;
  position: relative;
}
.cnp04 .ttl01 .jp {
  align-items: center;
  bottom: 0;
  color: #fff;
  display: flex;
  font-size: 4rem;
  font-weight: 900;
  justify-content: center;
  left: 0;
  margin: auto;
  padding-bottom: 2.5rem;
  position: absolute;
  right: 0;
  top: 0;
}
.cnp04 .ttl01 .en::before {
  background-image: url(../img/cnp04_deco01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 9.5rem;
  margin: auto;
  position: absolute;
  right: -5rem;
  top: 2rem;
  width: 9.5rem;
}
.cnp04 .flow_list {
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin-top: 6rem;
}
.cnp04 .flow_list > .item {
  height: 30.66rem;
  position: relative;
  width: 30.66rem;
}
.cnp04 .flow_list > .item + .item::before {
  background-image: url(../img/tri02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 4.9rem;
  left: -3.4rem;
  margin: auto;
  position: absolute;
  top: 0;
  width: 4.3rem;
}
.cnp04 .flow_list > .item .circle_wrap {
  align-items: center;
  background: #fff;
  border: solid .2rem #e03535;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.cnp04 .flow_list > .item .circle_wrap .head {
  align-items: center;
  background: #e03535;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 3rem;
  font-weight: 900;
  height: 10rem;
  justify-content: center;
  line-height: 1;
  width: 100%;
}
.cnp04 .flow_list > .item .circle_wrap .head .num {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: .3rem;
}
.cnp04 .flow_list > .item .circle_wrap .desc {
  color: #393333;
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 2rem;
}
.cnp04 .flow_list > .item .img {
  bottom: -7.85rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 15.7rem;
}
.cnp04 .sup {
  color: #393333;
  display: flex;
  font-size: 1.7rem;
  font-weight: 500;
  margin: 9.4rem auto 0;
  margin-top: 9.4rem;
  max-width: 93rem;
}
.cnp04 .sup::before {
  content: '\203B';
}
.cnp04 .case_area {
  align-items: center;
  background-color: #383838;
  background-image: url(../img/cnp04_bg01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 123rem;
  display: flex;
  gap: 2rem;
  height: 63.4rem;
  justify-content: center;
  margin-top: 6rem;
}
.cnp04 .case_area .case_list {
  display: flex;
  justify-content: space-between;
  max-width: 100rem;
}
.cnp04 .case_area .case_list > .item {
  color: #fff;
  width: calc((100% - 2rem) / 2);
}
.cnp04 .case_area .case_list > .item .sub {
  align-items: center;
  background: #e35252;
  border-radius: 1rem;
  display: flex;
  font-size: 2.4rem;
  font-weight: bold;
  height: 7rem;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 36rem;
  z-index: 2;
}
.cnp04 .case_area .case_list > .item:nth-of-type(2) .sub {
  background: #767676;
}
.cnp04 .case_area .case_list > .item .sub span {
  margin-left: 1.5rem;
  width: 4.9rem;
}
.cnp04 .case_area .case_list > .item:nth-of-type(2) .sub span {
  width: 4.2rem;
}
.cnp04 .case_area .case_list > .item .img {
  aspect-ratio: 497.5/374.8;
  margin-top: -3.5rem;
}
.cnp04 .case_area .case_list > .item .img img {
  height: 102%;
  max-width: inherit;
  object-fit: cover;
  width: 102%;
}
.cnp04 .case_area .case_list > .item .desc {
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 1.8rem;
}
.cnp04 .follow_area {
  display: flex;
  justify-content: space-between;
  margin: 5rem auto 0;
  max-width: 100rem;
}
.cnp04 .follow_area .txt {
  width: 53rem;
}
.cnp04 .follow_area .txt .ttl02 {
  align-items: center;
  color: #e03535;
  display: flex;
  font-size: 4rem;
  font-weight: 900;
  justify-content: space-between;
}
.cnp04 .follow_area .txt .ttl02 span {
  width: 7rem;
}
.cnp04 .follow_area .txt .desc {
  color: #393333;
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 3rem;
  padding-right: 1rem;
}
.cnp04 .follow_area .img {
  width: 44.7rem;
}
@media screen and (max-width:768px) {
  .cnp04 .inner {
    padding-bottom: 6rem;
  }
  .cnp04 .ttl01 {
    background-size: 80rem;
    height: 11rem;
  }
  .cnp04 .ttl01 .en {
    font-size: 7rem;
  }
  .cnp04 .ttl01 .jp {
    font-size: 3rem;
    top: 1rem;
  }
  .cnp04 .ttl01 .en::before {
    height: 7rem;
    right: -4rem;
    top: 0;
    width: 7rem;
  }
  .cnp04 .flow_list {
    align-items: center;
    flex-direction: column;
    margin-top: 4rem;
  }
  .cnp04 .flow_list > .item {
    height: 27rem;
    width: 27rem;
  }
  .cnp04 .flow_list > .item + .item {
    margin-top: 7rem;
  }
  .cnp04 .flow_list > .item + .item::before {
    bottom: inherit;
    left: 0;
    right: 0;
    top: -3.8rem;
    transform: rotate(90deg);
  }
  .cnp04 .flow_list > .item .circle_wrap .head {
    font-size: 2.4rem;
  }
  .cnp04 .flow_list > .item .circle_wrap .head .num {
    font-size: 3.6rem;
  }
  .cnp04 .flow_list > .item .circle_wrap .desc {
    margin-top: 1rem;
  }
  .cnp04 .flow_list > .item .img {
    bottom: -6.5rem;
    width: 13rem;
  }
  .cnp04 .sup {
    font-size: 1.6rem;
  }
  .cnp04 .sup::before {
    content: '\203B';
  }
  .cnp04 .case_area {
    background-size: cover;
    display: block;
    height: auto;
    margin-top: 6rem;
    padding: 5rem 2rem;
  }
  .cnp04 .case_area .case_list {
    display: block;
  }
  .cnp04 .case_area .case_list > .item {
    width: 100%;
  }
  .cnp04 .case_area .case_list > .item + .item {
    margin-top: 4rem;
  }
  .cnp04 .case_area .case_list > .item .sub {
    font-size: 2rem;
    height: 5rem;
    width: calc(100% - 4rem);
  }
  .cnp04 .case_area .case_list > .item:nth-of-type(2) .sub {
    background: #767676;
  }
  .cnp04 .case_area .case_list > .item .sub span {
    margin-left: 1rem;
    width: calc(4.9rem*.7);
  }
  .cnp04 .case_area .case_list > .item:nth-of-type(2) .sub span {
    width: calc(4.2rem*.7);
  }
  .cnp04 .case_area .case_list > .item .img {
    margin-top: -2.5rem;
  }
  .cnp04 .case_area .case_list > .item .desc {
    font-size: 1.6rem;
    white-space: nowrap;
  }
  .cnp04 .follow_area {
    display: block;
  }
  .cnp04 .follow_area .txt {
    width: 100%;
  }
  .cnp04 .follow_area .txt .ttl02 {
    font-size: 2.6rem;
    white-space: nowrap;
  }
  .cnp04 .follow_area .txt .ttl02 span {
    width: 5rem;
  }
  .cnp04 .follow_area .txt .desc {
    font-size: 1.8rem;
    margin-top: 2rem;
    padding-right: 0;
  }
  .cnp04 .follow_area .img {
    margin-top: 2rem;
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------
//  cnp05
--------------------------------------------------------------------------- */
.cnp05 {
  background: rgba(255,255,255,.4);
}
.cnp05 .inner {
  padding-bottom: 10rem;
}
.cnp05 .ttl01 {
  background-image: url(../img/bg_tri.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 144rem;
  height: 21rem;
  line-height: 1.3;
  position: relative;
  text-align: center;
  width: 100%;
}
.cnp05 .ttl01 .en {
  color: #e65d5d;
  font-size: 13.2rem;
  font-weight: 900;
  position: relative;
}
.cnp05 .ttl01 .jp {
  align-items: center;
  bottom: 0;
  color: #fff;
  display: flex;
  font-size: 4rem;
  font-weight: 900;
  justify-content: center;
  left: 0;
  margin: auto;
  padding-bottom: 2.5rem;
  position: absolute;
  right: 0;
  top: 0;
}
.cnp05 .ttl01 .en::before {
  background-image: url(../img/cnp05_deco01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 9.1rem;
  margin: auto;
  position: absolute;
  right: -8rem;
  top: 2rem;
  width: 9.1rem;
}
.cnp05 .qa_area {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
  margin-top: 5.6rem;
}
.cnp05 .qa_area .qa_list dl {
  margin-top: 3rem;
}
.cnp05 .qa_area .qa_list dl dt {
  color: #e03535;
  display: flex;
  font-size: 2.2rem;
  justify-content: space-between;
}
.cnp05 .qa_area .qa_list dl .en {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  height: 3.1rem;
  justify-content: center;
  padding-bottom: .4rem;
  width: 3.1rem;
}
.cnp05 .qa_area .qa_list dl .jp {
  width: calc(100% - 3.9rem);
}
.cnp05 .qa_area .qa_list dl dt .jp {
  margin-top: -.2rem;
}
.cnp05 .qa_area .qa_list dl dt .en {
  background: #e03535;
}
.cnp05 .qa_area .qa_list dl dd .en {
  background: #333936;
}
.cnp05 .qa_area .qa_list dl dd .jp {
  margin-top: .1rem;
}
.cnp05 .qa_area .qa_list dl dd {
  color: #333936;
  display: flex;
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: space-between;
  line-height: 1.5;
  margin-top: .8rem;
}
@media screen and (max-width:768px) {
  .cnp05 .inner {
    padding-bottom: 6rem;
  }
  .cnp05 .ttl01 {
    background-size: 80rem;
    height: 11rem;
  }
  .cnp05 .ttl01 .en {
    font-size: 7rem;
  }
  .cnp05 .ttl01 .jp {
    font-size: 3rem;
    top: 1rem;
  }
  .cnp05 .ttl01 .en::before {
    height: 7rem;
    right: -9rem;
    width: 7rem;
  }
  .cnp05 .qa_area {
    display: block;
    margin-top: 5rem;
  }
  .cnp05 .qa_area .qa_list dl dt {
    font-size: 2rem;
  }
  .cnp05 .qa_area .qa_list dl dt .jp {
    margin-top: -.1rem;
  }
  .cnp05 .qa_area .qa_list dl dd .jp {
    margin-top: .3rem;
  }
  .cnp05 .qa_area .qa_list dl dd {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------------------------------
//  cnp06
--------------------------------------------------------------------------- */
.cnp06 {
  background-image: url(../img/cnp06_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cnp06 .inner {
  padding-bottom: 6rem;
  padding-top: 6rem;
}
.cnp06 .ttl01 {
  color: #fff;
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
}
.cnp06 .info_area {
  background: #fff;
  border-radius: 2rem;
  margin: 6rem auto 0;
  max-width: 71.2rem;
  padding: 6rem 3rem 9.6rem;
}
.cnp06 .info_area dl {
  align-items: center;
  border-bottom: solid .1rem #dcecee;
  color: #333;
  display: flex;
  font-size: 1.8rem;
  justify-content: space-between;
  line-height: 1.5;
  min-height: 5rem;
}
.cnp06 .info_area dl dt {
  color: #00af5f;
  font-weight: bold;
  width: 19rem;
}
.cnp06 .info_area dl dd {
  font-weight: 400;
  padding: .8rem 0;
  width: calc(100% - 19rem);
}
.cnp06 .info_area dl dd strong {
  font-size: 2.2rem;
  font-weight: bold;
  font-weight: 400;
}
@media screen and (max-width:768px) {
  .cnp06 {
    background-image: url(../img/cnp06_bg.jpg);
    background-position: center left 13%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .cnp06 .ttl01 {
    font-size: 3rem;
  }
  .cnp06 .info_area {
    background: rgba(255,255,255,.9);
    margin: 3rem auto 0;
    padding: 4rem 2rem;
  }
  .cnp06 .info_area dl {
    display: block;
    font-size: 1.6rem;
    min-height: auto;
    padding: 1rem 0;
  }
  .cnp06 .info_area dl dt {
    width: 100%;
  }
  .cnp06 .info_area dl dd {
    margin-top: .5rem;
    padding: 0;
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------
//  cnp07
--------------------------------------------------------------------------- */
.cnp07 {
  background-attachment: fixed;
  background-image: url(../img/cnp07_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cnp07 .inner {
  padding-bottom: 2rem;
  padding-top: 16rem;
}
.cnp07 .goal_area {
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: space-between;
}
.cnp07 .goal_area .txt {
  width: 65.1rem;
}
.cnp07 .goal_area .txt .ttl01 {
  font-size: 4rem;
  font-weight: 900;
}
.cnp07 .goal_area .txt .desc {
  font-size: 2.4rem;
  margin-top: 2rem;
}
.cnp07 .goal_area .img {
  width: 32.2rem;
}
.cnp07 .copyright {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 14.5rem;
  text-align: center;
}
@media screen and (max-width:768px) {
  .cnp07 {
    background-attachment: inherit;
  }
  .cnp07 .inner {
    padding-bottom: 10rem;
    padding-top: 10rem;
  }
  .cnp07 .goal_area {
    display: block;
  }
  .cnp07 .goal_area .txt {
    width: 100%;
  }
  .cnp07 .goal_area .txt .ttl01 {
    font-size: 3rem;
    white-space: nowrap;
  }
  .cnp07 .goal_area .txt .desc {
    font-size: 1.8rem;
  }
  .cnp07 .goal_area .img {
    margin: 2rem auto 0;
    width: 32.2rem;
  }
  .cnp07 .copyright {
    font-size: 1.4rem;
    margin-top: 10rem;
  }
}

/* ---------------------------------------------------------------------------
//  footer_fix
--------------------------------------------------------------------------- */
.footer_fix {
  display: none;
}
@media screen and (max-width:768px) {
  .footer_fix {
    bottom: 0;
    display: block;
    position: fixed;
    transition: .4s;
    width: 100%;
    z-index: 10000;
  }
  .footer_fix.hide {
    transform: translateY(100%);
  }
  .footer_fix a {
    align-items: center;
    background: #bc0015;
    color: #fff;
    display: block;
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    font-weight: bold;
    height: 6.5rem;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
  }
  .footer_fix a img {
    width: 20rem;
  }
}


/* ---------------------------------------------------------------------------
//  その他
--------------------------------------------------------------------------- */
.forSP {
  display: none;
}
@media screen and (max-width:768px) {
  .forSP {
    display: block;
  }
  .forPC {
    display: none;
  }
}
