@charset "UTF-8";
/* reset
----------------------------------------------- */
@import url("//cdn.jsdelivr.net/npm/destyle.css@1.0.15/destyle.css");
/* Yaku Han JP
----------------------------------------------- */
@import url("//cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanjp.min.css");
/* Noto Sans JP
----------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap&subset=japanese");
/* Barlow Condensed
----------------------------------------------- */
/* Poppins
----------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap");
/* selection
----------------------------------------------- */
::selection {
  color: #fff;
  background: #3D4060;
}

/* lp
----------------------------------------------- */
.lp {
  /* min-width: 1280px; */
  width: 100%;
  color: #3D4060;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-weight: 400;
  word-break: break-word;
  overflow: hidden;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-print-color-adjust: exact;
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp {
    min-width: initial;
  }
}
/* a
----------------------------------------------- */
.lp a {
  color: #3D4060;
}
.lp a:hover {
  text-decoration: none;
  opacity: 1;
}

/* display
----------------------------------------------- */
/* pc */
@media only screen and (min-width: 769px) {
  .lp .pc {
    display: block;
  }
  .lp .sp {
    display: none;
  }
}
/* sp */
@media only screen and (max-width: 768px) {
  .lp .pc {
    display: none;
  }
  .lp .sp {
    display: block;
  }
}
/* h
----------------------------------------------- */
.lp h2 {
  margin-top: 50px;
  font-size: 32px;
  font-weight: 700;
  line-height: 2;
}
.lp h2::before {
  display: block;
  content: "";
  margin-top: calc((1 - 2) * .5em);
}
.lp h2::after {
  display: block;
  content: "";
  margin-bottom: calc((1 - 2) * .5em);
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp h2 {
    font-size: 24px;
  }
}
/* p
----------------------------------------------- */
.lp p {
  margin-top: 50px;
  font-size: 14px;
  text-align: justify;
  line-height: 2;
}
.lp p::before {
  display: block;
  content: "";
  margin-top: calc((1 - 2) * .5em);
}
.lp p::after {
  display: block;
  content: "";
  margin-bottom: calc((1 - 2) * .5em);
}
.lp p + p {
  margin-top: 25px;
}
.lp p sup {
  font-size: 9px;
}

/* small
----------------------------------------------- */
.lp small {
  display: flex;
  margin-top: 50px;
  color: #7B7C8D;
  font-size: 12px;
  text-align: justify;
  line-height: 2;
}
.lp small::before {
  display: block;
  content: "";
  margin-top: calc((1 - 2) * .5em);
}
.lp small::after {
  display: block;
  content: "";
  margin-bottom: calc((1 - 2) * .5em);
}
.lp small span:first-child {
  width: 25px;
}
.lp small span:last-child {
  width: calc(100% - 25px);
}
.lp small + small {
  margin-top: 0;
}

/* ul
----------------------------------------------- */
.lp ul {
  margin-top: 50px;
  font-size: 14px;
  text-align: justify;
  line-height: 2;
}
.lp ul::before {
  display: block;
  content: "";
  margin-top: calc((1 - 2) * .5em);
}
.lp ul::after {
  display: block;
  content: "";
  margin-bottom: calc((1 - 2) * .5em);
}
.lp ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.lp ul li:before {
  display: inline;
  content: "・";
}

/* c-load
----------------------------------------------- */
.lp .c-load {
  width: 21px;
  height: 21px;
}
.lp .c-load__icons {
  display: flex;
  flex-wrap: wrap;
  margin: -1px 0 0 -1px;
  animation-name: load;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.lp .c-load__icon {
  margin: 1px 0 0 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.lp .c-load__icon:nth-child(1), .lp .c-load__icon:nth-child(4) {
  background-color: #31BAB4;
}
.lp .c-load__icon:nth-child(2), .lp .c-load__icon:nth-child(3) {
  background-color: #459DCA;
}

/* keyframes */
@keyframes load {
  50% {
    transform: rotate(180deg) scale(0.8);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
/* c-breadcrumb
----------------------------------------------- */
.lp .c-breadcrumb__list {
  margin-top: -10px;
  font-size: 0;
}
.lp .c-breadcrumb__item {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  padding-right: 20px;
  font-size: 12px;
  line-height: 1;
  z-index: 1;
}
.lp .c-breadcrumb__item:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  margin-top: -4px;
  width: 9px;
  height: 9px;
  background-image: url("../img/breadcrumb_icon.svg");
  background-position: -9px 0;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
.lp .c-breadcrumb__item:last-child:after {
  display: none;
}
.lp .c-breadcrumb__item:last-child a {
  opacity: 1;
}
.lp .c-breadcrumb__item a {
  display: inline-block;
  opacity: 0.5;
}

/* pc */
@media only screen and (min-width: 769px) {
  .lp .c-breadcrumb__item a {
    position: relative;
    z-index: 1;
    transition-property: opacity;
    transition-duration: 0.2s;
  }
  .lp .c-breadcrumb__item a:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 1px;
    background-color: #3D4060;
    z-index: 1;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.2s;
  }
  .lp .c-breadcrumb__item a:hover {
    opacity: 1;
  }
  .lp .c-breadcrumb__item a:hover:after {
    opacity: 1;
  }
}
/* sp */
@media only screen and (max-width: 768px) {
  .lp .c-breadcrumb__item {
    padding-right: 18px;
    z-index: 1;
  }
  .lp .c-breadcrumb__item:after {
    right: 6px;
    margin-top: -5px;
  }
}
/* c-siteinfo
----------------------------------------------- */
.lp .c-siteinfo__list {
  color: #4E5062;
  font-size: 0;
}
.lp .c-siteinfo__item {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  padding-right: 28px;
  font-size: 12px;
  line-height: 1;
  z-index: 1;
}
.lp .c-siteinfo__item:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -6px;
  width: 1px;
  height: 12px;
  background-color: currentColor;
  z-index: 1;
}
.lp .c-siteinfo__item:last-child:after {
  display: none;
}
.lp .c-siteinfo__item a {
  color: currentColor;
}

/* pc */
@media only screen and (min-width: 769px) {
  .lp .c-siteinfo__item a {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition-property: opacity;
    transition-duration: 0.2s;
  }
  .lp .c-siteinfo__item a:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 1px;
    background-color: currentColor;
    z-index: 1;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.2s;
  }
  .lp .c-siteinfo__item a:hover {
    opacity: 0.7;
  }
  .lp .c-siteinfo__item a:hover:after {
    opacity: 1;
  }
}
/* sp */
@media only screen and (max-width: 768px) {
  .lp .c-siteinfo {
    max-width: 375px;
  }
  .lp .c-siteinfo__list {
    margin-top: -5px;
  }
  .lp .c-siteinfo__item {
    margin-top: 20px;
    padding-right: 40px;
  }
  .lp .c-siteinfo__item:after {
    right: 20px;
    margin-top: -8px;
    height: 16px;
    background-color: #DDDDDD;
  }
  .lp .c-siteinfo__item:nth-child(2n):after {
    display: none;
  }
}
/* c-status
----------------------------------------------- */
.lp .c-status {
  color: #fff;
  text-align: center;
}
.lp .c-status__list {
  display: flex;
  margin-left: -8px;
}
.lp .c-status__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  width: calc(50% - 8px);
  height: 72px;
  border-radius: 12px;
}
.lp .c-status__item--type1 {
  background-color: #31BAB4;
}
.lp .c-status__item--type1 .c-status__icon:before {
  background-position: 0 0;
}
.lp .c-status__item--type2 {
  background-color: #459DCA;
}
.lp .c-status__item--type2 .c-status__icon:before {
  background-position: -40px 0;
}
.lp .c-status__icon {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  padding-bottom: 10px;
  width: 66px;
  height: 66px;
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
}
.lp .c-status__icon:before {
  display: block;
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  background-image: url("../img/status_icon.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 80px 80px;
  z-index: 1;
}
.lp .c-status__icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -21px;
  width: 1px;
  height: 42px;
  background-color: currentcolor;
  z-index: 1;
}
.lp .c-status__case {
  width: 138px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}
.lp .c-status__case::before {
  display: block;
  content: "";
  margin-top: calc((1 - 1.7) * .5em);
}
.lp .c-status__case::after {
  display: block;
  content: "";
  margin-bottom: calc((1 - 1.7) * .5em);
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp .c-status__list {
    margin-left: 0;
  }
  .lp .c-status__item {
    margin-left: 0;
    padding: 0;
    width: 50%;
    border-radius: 0;
  }
  .lp .c-status__item--type1 .c-status__icon:before {
    background-position: 0 0;
  }
  .lp .c-status__item--type2 .c-status__icon:before {
    background-position: -32px 0;
  }
  .lp .c-status__icon {
    padding-bottom: 9px;
    width: 53px;
    height: 53px;
    font-size: 10px;
  }
  .lp .c-status__icon:before {
    top: 2px;
    margin-left: -16px;
    width: 32px;
    height: 32px;
    background-size: 64px 64px;
  }
  .lp .c-status__icon:after {
    margin-top: -16px;
    height: 32px;
  }
  .lp .c-status__case {
    padding: 0 10px;
    width: auto;
    font-size: 12px;
    text-align: left;
    letter-spacing: -0.07em;
  }
}
/* c-sitename
----------------------------------------------- */
.lp .c-sitename {
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.lp .c-sitename__catchcopy {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  font-size: 18px;
  text-indent: 0.16em;
  letter-spacing: 0.16em;
  border: 1px solid currentcolor;
  border-left: none;
  border-right: none;
}
.lp .c-sitename__readcopy {
  margin-top: 25px;
  font-size: 16px;
  text-indent: 0.28em;
  letter-spacing: 0.28em;
}
.lp .c-sitename__title {
  margin-top: 25px;
  font-size: 48px;
  text-indent: 0em;
  letter-spacing: 0.08em;
}
.lp .c-sitename__status {
  margin-top: 30px;
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp .c-sitename__catchcopy {
    margin: auto;
    max-width: 300px;
    height: 40px;
    font-size: 11px;
  }
  .lp .c-sitename__readcopy {
    margin-top: 20px;
    font-size: 11px;
    text-indent: 0.33em;
    letter-spacing: 0.33em;
  }
  .lp .c-sitename__title {
    margin-top: 20px;
    font-size: 34px;
  }
  .lp .c-sitename__status {
    margin-top: 25px;
  }
}
/* c-sectiontitle
----------------------------------------------- */
.lp .c-sectiontitle {
  text-align: center;
}
.lp .c-sectiontitle__label {
  margin-bottom: 30px;
  color: #459DCA;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  text-indent: 0.04em;
  letter-spacing: 0.04em;
  line-height: 1;
}
.lp .c-sectiontitle__subject h2 {
  margin-top: 0;
}

/* c-function
----------------------------------------------- */
.lp .c-function {
  padding-top: 15px;
  text-align: center;
}
.lp .c-function__case {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  height: 48px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  border-radius: 8px;
}
.lp .c-function__case--type1 {
  background-color: #31BAB4;
}
.lp .c-function__case--type2 {
  background-color: #459DCA;
}
.lp .c-function__item {
  margin-top: 45px;
}
.lp .c-function__item:first-child {
  margin-top: 40px;
}
.lp .c-function__image {
  margin: auto;
  max-width: 263px;
}
.lp .c-function__image img {
  display: block;
  width: 100%;
  height: auto;
}
.lp .c-function__label {
  margin-top: 13px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

/* tb */
@media only screen and (min-width: 640px) and (max-width: 769px) {
  .lp .c-function__list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -24px;
  }
  .lp .c-function__item {
    margin-top: 40px;
    margin-left: 24px;
    width: calc(33.33% - 24px);
  }
  .lp .c-function__item:first-child {
    margin-top: 40px;
  }
}
/* c-feature
----------------------------------------------- */
.lp .c-feature__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  padding-top: 15px;
}
.lp .c-feature__item {
  position: relative;
  margin: 30px 0 0 25px;
  padding: 24px 0;
  width: calc(33.33% - 25px);
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 16px 64px rgba(20, 24, 67, 0.05);
  z-index: 1;
}
.lp .c-feature__item:nth-child(1) .c-feature__number {
  background-position: 0px 0px;
}
.lp .c-feature__item:nth-child(2) .c-feature__number {
  background-position: -72px 0px;
}
.lp .c-feature__item:nth-child(3) .c-feature__number {
  background-position: -144px 0px;
}
.lp .c-feature__item:nth-child(4) .c-feature__number {
  background-position: -216px 0px;
}
.lp .c-feature__item:nth-child(5) .c-feature__number {
  background-position: -288px 0px;
}
.lp .c-feature__item:nth-child(6) .c-feature__number {
  background-position: -360px 0px;
}
.lp .c-feature__number {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 72px;
  height: 72px;
  text-indent: 100%;
  white-space: nowrap;
  background-image: url("../img/feature_number.png");
  background-repeat: no-repeat;
  background-size: 432px 72px;
  overflow: hidden;
  z-index: 1;
}
.lp .c-feature__image {
  margin: 0 24px;
}
.lp .c-feature__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.lp .c-feature__subject {
  position: relative;
  margin-top: 20px;
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  z-index: 1;
}
.lp .c-feature__subject:after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -8px;
  width: 16px;
  height: 1px;
  background-color: #848595;
  z-index: 1;
}
.lp .c-feature__summary {
  margin: 20px 24px 0;
}
.lp .c-feature__summary p {
  margin-top: 0;
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp .c-feature__list {
    margin-left: 0;
    padding-top: 13px;
  }
  .lp .c-feature__item {
    margin: 32px 0 0 0;
    padding: 40px 0;
    width: 100%;
  }
  .lp .c-feature__image {
    margin: 0 32px;
  }
  .lp .c-feature__summary {
    margin: 20px 32px 0;
  }
}
/* tb */
@media only screen and (min-width: 640px) and (max-width: 769px) {
  .lp .c-feature__list {
    margin-left: -24px;
  }
  .lp .c-feature__item {
    margin: 32px 0 0 24px;
    padding: 40px 0;
    width: calc(50% - 24px);
  }
}
/* c-note
----------------------------------------------- */
.lp .c-note {
  margin-top: 64px;
  border-top: 1px solid #EAEAF2;
}
.lp .c-note__title {
  display: none;
}
.lp .c-note__body {
  padding-top: 25px;
}
.lp .c-note__body small {
  margin-top: 0;
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp .c-note {
    border-bottom: 1px solid #EAEAF2;
  }
  .lp .c-note__title {
    display: block;
    position: relative;
    padding: 25px 30px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
  }
  .lp .c-note__title:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    margin-top: -16px;
    width: 32px;
    height: 32px;
    background-image: url("../img/note_arrow.svg");
    background-position: -32px 0;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    z-index: 1;
  }
  .lp .c-note__body {
    margin: 0 30px;
    padding: 20px 0;
    border-top: 1px solid #EAEAF2;
  }

  /* js */
  .js-lpAccordion:after {
    transition-property: transform;
    transition-duration: 0.65s;
    transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
  }
  .js-lpAccordion-open:after {
    transform: rotate(180deg);
  }
}
/* c-spec
----------------------------------------------- */
.lp .c-spec__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  padding-top: 20px;
}
.lp .c-spec__item {
  position: relative;
  margin: 25px 0 0 25px;
  padding: 24px 0;
  width: calc(33.33% - 25px);
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 16px 64px rgba(20, 24, 67, 0.05);
  z-index: 1;
}
.lp .c-spec__image {
  margin: 0 24px;
}
.lp .c-spec__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.lp .c-spec__subject {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.lp .c-spec__subject::before {
  display: block;
  content: "";
  margin-top: calc((1 - 1.5) * .5em);
}
.lp .c-spec__subject::after {
  display: block;
  content: "";
  margin-bottom: calc((1 - 1.5) * .5em);
}
.lp .c-spec__detail {
  position: relative;
  margin: 20px 24px 0;
  padding-top: 20px;
  z-index: 1;
}
.lp .c-spec__detail:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 1px;
  background-color: #848595;
  z-index: 1;
}
.lp .c-spec__detail ul {
  margin-top: 0;
}
.lp .c-spec__special {
  position: absolute;
  top: 21%;
  right: 2.5%;
  max-width: 112px;
  width: 33.93%;
  z-index: 1;
}
.lp .c-spec__special img {
  display: block;
  width: 100%;
  height: auto;
}

.lp .c-spec__notes {
  font-size: 12px;
  line-height: 1.33;
  margin-top: 2em;
  letter-spacing: 0;
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp .c-spec__list {
    margin-left: 0;
    padding-top: 13px;
  }
  .lp .c-spec__item {
    margin: 32px 0 0;
    padding: 32px 0;
    width: 100%;
  }
  .lp .c-spec__image {
    margin: 0 32px;
  }
  .lp .c-spec__subject {
    margin-top: 30px;
  }
  .lp .c-spec__detail {
    margin: 20px 32px 0;
  }
  .lp .c-spec__special {
    top: 21%;
    right: 2.5%;
    max-width: 102px;
    width: 31.19%;
  }

  .lp .c-spec__notes {
    line-height: 2;
    font-size: 10px;
    padding: 0 1.5em;
  }
}
/* tb */
@media only screen and (min-width: 640px) and (max-width: 769px) {
  .lp .c-spec__list {
    margin-left: -24px;
  }
  .lp .c-spec__item {
    margin-left: 24px;
    padding: 24px 0;
    width: calc(33.33% - 24px);
  }
  .lp .c-spec__image {
    margin: 0 24px;
  }
  .lp .c-spec__detail {
    margin: 20px 24px 0;
  }
  .lp .c-spec__special {
    top: 15%;
  }
}
/* c-youtube
----------------------------------------------- */
.lp .c-youtube {
  margin: 45px auto 0;
  max-width: 800px;
}
.lp .c-youtube__inner {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  height: 0;
  cursor: pointer;
  overflow: hidden;
}
.lp .c-youtube__player {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 101%;
  height: 101%;
}
.lp .c-youtube__cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.lp .c-youtube__cover img {
  display: block;
  width: 100%;
  height: auto;
}
.lp .c-youtube__button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 1;
}
.lp .c-youtube__button:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -14px;
  width: 32px;
  height: 32px;
  background-image: url("../img/youtube_button.png");
  background-repeat: no-repeat;
  background-size: 32px;
  z-index: 1;
}
.lp .c-youtube__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
}

/* pc */
@media only screen and (min-width: 769px) {
  .lp .c-youtube__inner:hover .c-youtube__button:before {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }
  .lp .c-youtube__button:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #31BAB4;
    background: linear-gradient(to right, #31bab4 0%, #459dca 100%);
    border-radius: 50%;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition-property: visibility, opacity;
    transition-duration: 0s, 0.25s;
    transition-delay: 0.25s, 0s;
  }
}
/* sp */
@media only screen and (max-width: 768px) {
  .lp .c-youtube__button {
    margin: -20px 0 0 -20px;
    width: 40px;
    height: 40px;
  }
  .lp .c-youtube__button:after {
    margin: -8px 0 0 -6px;
    width: 16px;
    height: 16px;
    background-size: 16px;
  }
}
/* js */
.js-lpYoutube-ready .c-youtube__button, .js-lpYoutube-ready .c-youtube__loading, .js-lpYoutube-ready .c-youtube__cover {
  transition-property: visibility, opacity;
  transition-duration: 0s, 0.25s;
}
.js-lpYoutube-load .c-youtube__button {
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.25s, 0s;
}
.js-lpYoutube-load .c-youtube__loading {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.js-lpYoutube-start .c-youtube__loading {
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.25s, 0s;
}
.js-lpYoutube-start .c-youtube__cover {
  visibility: hidden;
  opacity: 0;
  transition-duration: 0s, 0.85s;
  transition-delay: 0.85s, 0s;
}

/* c-contact
----------------------------------------------- */
.lp .c-contact {
  margin-top: 60px;
  color: #fff;
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
}
.lp .c-contact__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.lp .c-contact__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 50%;
  height: 248px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.lp .c-contact__item:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.lp .c-contact__item:first-child {
  background-image: url("../img/contact_image_form.jpg");
}
.lp .c-contact__item:first-child:after {
  background-color: rgba(49, 186, 180, 0.9);
}
.lp .c-contact__item:last-child {
  background-image: url("../img/contact_image_tel.jpg");
}
.lp .c-contact__item:last-child:after {
  background-color: rgba(69, 157, 202, 0.9);
}
.lp .c-contact__subject {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.lp .c-contact__button {
  margin: 30px auto 0;
  width: 336px;
}
.lp .c-contact__tel {
  margin: 30px auto 0;
  width: 265px;
}
.lp .c-contact__tel a {
  pointer-events: none;
}
.lp .c-contact__tel img {
  display: block;
  width: 100%;
  height: auto;
}
.lp .c-contact__time {
  margin: 20px auto 0;
  width: 250px;
}
.lp .c-contact__time img {
  display: block;
  width: 100%;
  height: auto;
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp .c-contact {
    margin-top: 50px;
  }
  .lp .c-contact__item {
    padding: 35px 0;
    width: 100%;
    height: auto;
  }
  .lp .c-contact__subject {
    font-size: 18px;
  }
  .lp .c-contact__button {
    max-width: 262px;
    width: 100%;
  }
  .lp .c-contact__tel {
    max-width: 209px;
    width: 100%;
  }
  .lp .c-contact__tel a {
    pointer-events: auto;
  }
  .lp .c-contact__time {
    max-width: 250px;
    width: 100%;
  }
}
/* tb */
@media only screen and (min-width: 640px) and (max-width: 769px) {
  .lp .c-contact__item {
    padding: 0;
    width: 50%;
    height: 248px;
  }
}
/* c-button
----------------------------------------------- */
.lp .c-button {
  display: flex;
  align-items: center;
  position: relative;
  height: 72px;
  border: 1px solid #fff;
  border-radius: 72px;
  box-sizing: border-box;
  z-index: 1;
}
.lp .c-button:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  margin-top: -16px;
  width: 32px;
  height: 32px;
  background-image: url("../img/arrow_icon.svg");
  background-position: -32px -96px;
  background-repeat: no-repeat;
  background-size: 128px 128px;
  z-index: 1;
}
.lp .c-button__label {
  padding: 0 51px 0 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

/* pc */
@media only screen and (min-width: 769px) {
  .lp .c-button {
    transition-property: background-color;
    transition-duration: 0.25s;
  }
  .lp .c-button:hover {
    background-color: #fff;
  }
  .lp .c-button:hover:after {
    background-position: -32px 0;
    transform: translateX(3px);
  }
  .lp .c-button:hover .c-button__label {
    color: #31BAB4;
  }
  .lp .c-button:after {
    transition-property: transform;
    transition-duration: 0.25s;
  }
  .lp .c-button__label {
    transition-property: color;
    transition-duration: 0.25s;
  }
}
/* c-pageup
----------------------------------------------- */
.lp .c-pageup {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  width: 41px;
  height: 85px;
  cursor: pointer;
  z-index: 1;
}
.lp .c-pageup:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 32px;
  background-color: #4E5062;
  z-index: 1;
}
.lp .c-pageup__label img {
  display: block;
  width: 11px;
  height: auto;
}

/* pc */
@media only screen and (min-width: 769px) {
  .lp .c-pageup:hover:after {
    transform: scaleY(0);
    transform-origin: top;
  }
  .lp .c-pageup:hover .c-pageup__label {
    transform: translateY(-50%);
  }
  .lp .c-pageup:after {
    transition-property: transform;
    transition-duration: 0.25s;
    transform-origin: bottom;
  }
  .lp .c-pageup__label {
    transition-property: transform;
    transition-duration: 0.25s;
  }
}
/* sp */
@media only screen and (max-width: 768px) {
  .lp .c-pageup {
    height: 110px;
  }
  .lp .c-pageup:after {
    height: 48px;
  }
}
/* l-container
----------------------------------------------- */
.lp .l-container__outer {
  margin: 0 30px;
}
.lp .l-container__inner {
  margin: auto;
  padding: 130px 0 120px;
  max-width: 1040px;
}
.lp .l-container--compact .l-container__inner {
  padding: 100px 0;
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp .l-container__outer {
    margin: 0 24px;
  }
  .lp .l-container__inner {
    max-width: initial;
  }
  .lp .l-container--compact .l-container__inner {
    padding: 90px 0;
  }
}
/* l-header
----------------------------------------------- */
.lp .l-header {
  position: relative;
  z-index: 10;
}
.lp .l-header__outer {
  margin: 0 30px;
}
.lp .l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
.lp .l-header__logotype {
  width: 188px;
}
.lp .l-header__logomark {
  width: 60px;
}
.lp .l-header img {
  display: block;
  width: 100%;
  height: auto;
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp .l-header {
    box-shadow: 0 16px 64px rgba(20, 24, 67, 0.05);
  }
  .lp .l-header__outer {
    margin: 0 25px;
  }
  .lp .l-header__inner {
    height: 56px;
  }
  .lp .l-header__logomark {
    width: 64px;
  }
}
/* l-footer
----------------------------------------------- */
.lp .l-footer {
  border-top: 1px solid #DFE5E8;
  background-color: #F5F5F8;
}
.lp .l-footer__outer {
  position: relative;
  margin: 0 30px;
  z-index: 1;
}
.lp .l-footer__inner {
  margin: auto;
  padding: 60px 0;
  max-width: 1040px;
}
.lp .l-footer__columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.lp .l-footer__logotypo {
  margin-top: 25px;
  width: 230px;
}
.lp .l-footer__logotypo img {
  display: block;
  width: 100%;
  height: auto;
}
.lp .l-footer__logomark {
  width: 80px;
}
.lp .l-footer__logomark img {
  display: block;
  width: 100%;
  height: auto;
}
.lp .l-footer__copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background-color: #fff;
}
.lp .l-footer__copyright img {
  display: block;
  margin: auto;
  width: 85px;
  height: auto;
}
.lp .l-footer__pageup {
  position: absolute;
  right: 0;
  bottom: 70px;
  z-index: 1;
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp .l-footer {
    padding-bottom: 72px;
  }
  .lp .l-footer__outer {
    margin: 0 30px;
  }
  .lp .l-footer__inner {
    padding: 50px 0;
    max-width: initial;
  }
  .lp .l-footer__columns {
    display: block;
  }
  .lp .l-footer__logotypo {
    margin-top: 25px;
  }
  .lp .l-footer__logomark {
    margin-top: 40px;
    width: 73px;
  }
  .lp .l-footer__pageup {
    right: -28px;
    bottom: 85px;
  }
}
/* l-nav
----------------------------------------------- */
.lp {
  /* type1 */
  /* type2 */
  /* comingsoon */
}
.lp .l-nav {
  position: relative;
  margin-top: -60px;
  z-index: 1;
}
.lp .l-nav__outer {
  margin: 0 86px;
}
.lp .l-nav__inner {
  margin: auto;
  max-width: 1040px;
}
.lp .l-nav__list {
  display: flex;
  position: relative;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 8px 8px rgba(20, 24, 67, 0.1);
  overflow: hidden;
  z-index: 1;
}
.lp .l-nav__list:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 1px;
  background-color: #DFE5E8;
  z-index: 1;
}
.lp .l-nav__item {
  position: relative;
  margin: 8px;
  width: 50%;
  z-index: 1;
}
.lp .l-nav__item:last-child {
  margin-left: 9px;
}
.lp .l-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 104px;
  z-index: 1;
}
.lp .l-nav__link:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -16px;
  width: 32px;
  height: 32px;
  background-image: url("../img/arrow_icon.svg");
  background-position: -96px 0;
  background-repeat: no-repeat;
  background-size: 128px 128px;
  z-index: 1;
}
.lp .l-nav__image {
  width: 157px;
  border-radius: 8px;
  overflow: hidden;
}
.lp .l-nav__image img {
  display: block;
  width: 100%;
  height: auto;
}
.lp .l-nav__name {
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .lp .l-nav__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .lp .l-nav__name {
    font-size: 15px;
  }
}
.lp .l-nav__brand img {
  display: block;
  width: 100%;
  height: auto;
}
.lp .l-nav__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.lp .l-nav__spec {
  color: #7B7C8D;
  font-size: 12px;
  line-height: 1;
}
.lp .l-nav__item--type1 .l-nav__brand {
  width: 76px;
}
.lp .l-nav__item--type1 .l-nav__logo, .lp .l-nav__item--type1 .l-nav__spec {
  margin: 10px auto 0;
  width: 141px;
}
.lp .l-nav__item--type1 .l-nav__spec {
  margin-top: 12px;
  padding-bottom: 5px;
  text-align: right;
}
.lp .l-nav__item--type2 .l-nav__brand {
  width: 76px;
}
.lp .l-nav__item--type2 .l-nav__logo, .lp .l-nav__item--type2 .l-nav__spec {
  margin: 10px auto 0;
  width: 141px;
}
.lp .l-nav__item--type2 .l-nav__spec {
  margin-top: 12px;
  padding-bottom: 5px;
  text-align: right;
}
.lp .l-nav__item--comingsoon:before, .lp .l-nav__item--comingsoon:after {
  display: block;
  content: "";
  position: absolute;
  z-index: 2;
}
.lp .l-nav__item--comingsoon:before {
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background-color: #DFE5E8;
  border-radius: 0 16px 16px 0;
}
.lp .l-nav__item--comingsoon:after {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "COMING SOON";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #31BAB4;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  text-indent: 0.04em;
  letter-spacing: 0.04em;
}

/* pc */
@media only screen and (min-width: 769px) {
  .lp .l-nav__link:before {
    display: block;
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background-color: whitesmoke;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition-property: visibility, opacity;
    transition-duration: 0s, 0.25s;
    transition-delay: 0.25s, 0s;
  }
  .lp .l-nav__link:after {
    transition-property: transform;
    transition-duration: 0.25s;
  }
  .lp .l-nav__link:hover:before {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }
  .lp .l-nav__link:hover:after {
    transform: translateY(3px);
  }
}
/* sp */
@media only screen and (max-width: 768px) {
  .lp {
    /* type1 */
    /* type2 */
    /* comingsoon */
  }
  .lp .l-nav {
    margin-top: 20px;
  }
  .lp .l-nav__outer {
    margin: 0 24px;
  }
  .lp .l-nav__inner {
    max-width: initial;
  }
  .lp .l-nav__list {
    display: block;
  }
  .lp .l-nav__list:after {
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .lp .l-nav__item {
    margin: 0 8px;
    padding: 8px 0;
    width: auto;
  }
  .lp .l-nav__item:last-child {
    margin: 0 8px;
    padding: 9px 0 8px;
  }
  .lp .l-nav__link {
    height: 66px;
  }
  .lp .l-nav__image {
    width: 101px;
  }
  .lp .l-nav__name {
    margin: 0 50px 0 13px;
  }
  .lp .l-nav__spec {
    font-size: 10px;
  }
  .lp .l-nav__item--type1 .l-nav__brand {
    width: 43px;
  }
  .lp .l-nav__item--type1 .l-nav__logo, .lp .l-nav__item--type1 .l-nav__spec {
    margin-top: 7px;
    width: 98px;
  }
  .lp .l-nav__item--type1 .l-nav__spec {
    margin-top: 7px;
    padding-bottom: 0;
  }
  .lp .l-nav__item--type2 .l-nav__brand {
    width: 43px;
  }
  .lp .l-nav__item--type2 .l-nav__logo, .lp .l-nav__item--type2 .l-nav__spec {
    margin-top: 7px;
    width: 98px;
  }
  .lp .l-nav__item--type2 .l-nav__spec {
    margin-top: 7px;
    padding-bottom: 0;
  }
  .lp .l-nav__item--comingsoon:before {
    top: 0;
    left: -8px;
    right: -8px;
    bottom: 0;
    border-radius: 0 0 16px 16px;
  }
  .lp .l-nav__item--comingsoon:after {
    font-size: 16px;
  }
}
/* p-loading
----------------------------------------------- */
.lp .p-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.lp .p-loading__mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1;
}
.lp .p-loading__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* js */
.js-lpLoading-start .p-loading__mask {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.85s;
}
.js-lpLoading-start .p-loading__icon {
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.25s;
}
.js-lpLoading-end {
  pointer-events: none;
  visibility: hidden;
}

/* p-intro
----------------------------------------------- */
.lp .p-intro {
  margin-top: 32px;
}
.lp .p-intro__outer {
  margin: 0 30px;
}
.lp .p-intro__img {
  position: relative;
  margin: auto;
  max-width: 1192px;
  /* max-height: 606px; */
  border-radius: 56px;
  overflow: hidden;
  z-index: 1;
}

.lp .p-intro__img img {
  width: 100%;
}
/* .lp .p-intro__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/intro_image_pc.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
} */
.lp .p-intro__sitename {
  position: absolute;
  top: 50%;
  left: 76px;
  margin-top: -135px;
  width: 418px;
  z-index: 1;
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp .p-intro {
    margin-top: 16px;
  }
  .lp .p-intro__outer {
    margin: 0 16px;
  }
  .lp .p-intro__inner {
    padding-bottom: 72px;
    max-width: initial;
    max-height: initial;
    border-radius: 32px;
  }
  .lp .p-intro__image {
    background-image: url("../img/intro_image_sp.jpg");
  }
  .lp .p-intro__sitename {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
    width: auto;
  }
}
/* p-concept
----------------------------------------------- */
.lp .p-concept {
  text-align: center;
}
.lp .p-concept__title {
  margin: 0 auto 50px;
  width: 240px;
}
.lp .p-concept__title img {
  display: block;
  width: 100%;
  height: auto;
}
.lp .p-concept__summary {
  margin: auto;
  max-width: 640px;
}
.lp .p-concept__schema {
  margin-top: 40px;
}
.lp .p-concept__schema img {
  display: block;
  max-width: 1040px;
  width: 100%;
  height: auto;
}
.lp .p-concept__function {
  display: none;
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp .p-concept__title {
    width: 198px;
  }
  .lp .p-concept__summary {
    text-align: left;
  }
  .lp .p-concept__schema {
    display: flex;
    justify-content: center;
    margin-top: 0;
  }
  .lp .p-concept__schema img {
    max-width: 800px;
    width: 211%;
  }
  .lp .p-concept__function {
    display: block;
  }
}
/* p-feature
----------------------------------------------- */
.lp .p-feature {
  background-image: url("../img/feature_bg_pc.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 2366px 1800px;
  background-color: #F5F8F7;
}

/* sp */
@media only screen and (max-width: 768px) {
  .lp .p-feature {
    background-image: url("../img/feature_bg_sp.png");
    background-size: 875px 4142px;
  }
}
/* p-spec
----------------------------------------------- */
.lp .p-spec {
  background-color: #D5E9F1;
}

/* p-contact
----------------------------------------------- */
.lp .p-contact {
  background-color: #EAF4F8;
}

/* p-promotion
----------------------------------------------- */
.lp .p-promotion__banner {
  margin-top: 60px;
}
.lp .p-promotion__link {
  display: block;
  border-radius: 16px;
  box-shadow: 0 16px 64px rgba(20, 24, 67, 0.05);
  overflow: hidden;
}
.lp .p-promotion__link img {
  display: block;
  width: 100%;
  height: auto;
}

/* pc */
@media only screen and (min-width: 769px) {
  .lp .p-promotion__link {
    transition-property: opacity;
    transition-duration: 0.25s;
  }
  .lp .p-promotion__link:hover {
    opacity: 0.7;
  }
}
/* p-floating
----------------------------------------------- */
.lp .p-floating {
  position: fixed;
  top: 50%;
  right: 0;
  margin-top: -123px;
  width: 102px;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.lp .p-floating__button {
  width: 100%;
  height: 247px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(to right, #31bab4 0%, #459dca 100%);
  pointer-events: auto;
  transform: translateX(30px);
}
.lp .p-floating__button:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #31BAB4;
  border-radius: 24px 0 0 24px;
  z-index: 1;
  opacity: 0;
}
.lp .p-floating__link {
  display: block;
  position: relative;
  width: 72px;
  height: 100%;
  z-index: 2;
}
.lp .p-floating__link:after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 25px;
  margin-left: -18px;
  width: 36px;
  height: 36px;
  background-image: url("../img/floating_icon.svg");
  background-repeat: no-repeat;
  background-size: 36px;
  z-index: 1;
}
.lp .p-floating__label {
  display: block;
  margin: auto;
  padding-top: 30px;
  width: 20px;
}
.lp .p-floating__label img {
  display: block;
  width: 100%;
  height: auto;
}

/* pc */
@media only screen and (min-width: 769px) {
  .lp .p-floating__button {
    transition-property: transform;
    transition-duration: 0.25s;
  }
  .lp .p-floating__button:hover {
    transform: translateX(20px);
  }
  .lp .p-floating__button:hover:after {
    opacity: 1;
  }
  .lp .p-floating__button:after {
    transition-property: opacity;
    transition-duration: 0.25s;
  }
}
/* sp */
@media only screen and (max-width: 768px) {
  .lp .p-floating {
    top: auto;
    left: 0;
    bottom: 0;
    margin-top: 0;
    padding: 12px 0;
    width: auto;
    background-color: #fff;
    box-shadow: 0 -6px 24px rgba(20, 24, 67, 0.06);
  }
  .lp .p-floating__button {
    margin: auto;
    width: 193px;
    height: 48px;
    border-radius: 48px;
    transform: translateX(0);
  }
  .lp .p-floating__link {
    display: flex;
    align-items: center;
    padding: 0 0 0 24px;
    width: 100%;
  }
  .lp .p-floating__link:after {
    top: 50%;
    left: auto;
    right: 12px;
    bottom: auto;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    margin-left: 0;
    background-size: 28px 28px;
  }
  .lp .p-floating__label {
    margin: 0;
    padding: 0;
    width: 83px;
  }

  .t-basic-page__body {
    z-index: 2 !important;
  }
  .o-footer {
    padding-bottom: 72px;
  }
}

.type-2 {
  display: none;
}

.type-1 img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .type-1 .a-heading--h2 {
    font-size: 20px;
    margin-top: 0;
  }
}


/* recommend */

@media screen and (min-width: 769px) {
  .lp .type-1 .p-recommend .l-container__inner {
    padding-top: 85px;
    padding-bottom: 95px;
  }
}

@media screen and (min-width: 769px) {
  .c-recommend {
    margin-top: 90px;
  }
}

@media screen and (max-width: 768px) {
  .c-recommend {
    margin-top: 50px;
  }
}

@media screen and (min-width: 769px) {
  .c-recommend__body {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}


.c-recommend__body .m-recommend-card__description__title {
  text-align: center;
}

@media screen and (min-width: 769px) {
  .c-recommend__body .m-recommend-card:not(:last-of-type) {
    margin-right: 40px;
  }

  .c-recommend__body .m-recommend-card__description__title {
    margin-top: 40px;
  }
}

/* recommend */


/* feature */

.lp .type-1 .p-feature .l-container__inner {
  padding-top: 0;
}

@media screen and (min-width: 769px) {
  .lp .type-1 .p-feature .l-container__inner {
    padding-bottom: 150px;
  }
}

.lp .type-1 .p-feature {
  background: #fff;
}

.type-1 .p-feature .feature__title {
  font-weight: bold;
  color: #449dca;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .type-1 .p-feature .feature__title {
    font-size: 24px;
  }
} 

@media screen and (max-width: 768px) {
  .type-1 .p-feature .feature__title {
    font-size: 18px;
    margin-top: 0;
  }
}

@media screen and (min-width: 769px) {
  .type-1 .c-feature {
    margin-top: 55px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-feature {
    margin-top: 35px;
  }
}

@media screen and (min-width: 769px) {
  .type-1 .c-feature__body {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media screen and (min-width: 769px) {
  .type-1 .c-feature .m-feature__card {
    max-width: 300px;
  }

  .type-1 .c-feature .m-feature__card:not(:last-of-type) {
    margin-right: 100px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-feature .m-feature__card {
    max-width: 250px;
    margin: auto;
  }

  .type-1 .c-feature .m-feature__card + .m-feature__card {
    margin-top: 45px;
  }
}

/* .m-feature-card__image img {
  max-width: 100%;
} */

.type-1 .c-feature .m-feature-card__logo {
  text-align: center;
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .type-1 .c-feature .m-feature-card__logo {
    height: 28px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-feature .m-feature-card__logo {
    height: 25px;
  }
}

.type-1 .c-feature .m-feature-card__logo img {
  height: 100%;
}

.type-1 .c-feature .m-feature-card__text {
  text-align: center;
  margin-top: 2.25em;
}

@media screen and (min-width: 769px) {
  .type-1 .c-feature .m-feature-card__text {
    font-size: 16px;
  }
}

/* feature */


/* spec */

@media screen and (min-width: 769px) {
  .type-1 .c-spec {
    margin-top: 65px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec {
    margin-top: 45px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .l-container__outer {
    margin: 0 7px;
  }
}

.type-1 .c-spec-table {
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-table {
    border-radius: 12px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-table {
    border-radius: 6px;
  }
}

.type-1 .c-spec-tr {
  position: relative;
}

.c-spec-tr::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  background: #c5e4e8;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .c-spec-tr::before {
    right: calc((100% - 240px)/2);
  }
}

@media screen and (max-width: 768px) {
  .c-spec-tr::before {
    right: calc((100% - 80px)/2);
  }
}

/* @media screen and (min-width: 769px) {
  .type-1 .c-spec-tr::before {
    width: 0px;
    content: '';
    float: left;
    overflow: hidden;
    min-height: 68px;
    font-size: 0;
  }
} */

.type-1 .c-spec-thead .c-spec-td {
  background: #fff;
  border-top: none;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-thead .c-spec-td {
    padding: 25px;
    padding-bottom: 35px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-thead .c-spec-td {
    padding: 12px;
  }
}

/* @media screen and (min-width: 769px) {
  .type-1 .c-spec-th {

  }
} */

.type-1 .c-spec-product__img-wrap {
  position: relative;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-product__img-wrap img {
    border-radius: 12px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-product__img-wrap img {
    border-radius: 6px;
  }
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-product__special {
    position: absolute;
    width: 110px;
    bottom: -20px;
    right: -10px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-product__special {
    width: 80px;
    margin: auto;
    margin-top: -8px;
  }
}

.type-1 .c-spec-product__name {
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-product__name {
    margin-top: 5em;
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-product__name {
    margin-top: 1em;
    font-size: 12px;
  }
}

.type-1 .c-spec-th {
  background: #afd3e4;
  color: #3d4060;
  font-weight: bold;
  line-height: 1.6;
  vertical-align: top;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-th {
    font-size: 16px;
    width: 240px;
    padding: 1.35em 2em;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-th {
    width: 80px;
    font-size: 11px;
    padding: 1.2em 1em;
    letter-spacing: 0;
  }

  .type-1 .c-spec-th.vertical {
    padding: 20px;
  }

  .type-1 .c-spec-th.vertical span {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    vertical-align: middle;
    display: inline-block;
    min-height: 10em;
  }
}

.type-1 .c-spec-th .notes {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-th .notes {
    transform-origin: left top;
    transform: translateY(3px) scale(.6);
  }
}
@media screen and (max-width: 768px) {
  .type-1 .c-spec-th.vertical span .notes {
    transform-origin: right top;
    transform: translateX(-2px) scale(0.6);
    writing-mode: horizontal-tb;
    width: 1em;
    line-height: 1;
    text-align: center;
    min-height: 2em;
  }
}

.type-1 .c-spec--tbody .c-spec-tr .c-spec-th {
  border-top: 1px solid #fff;
}

.type-1 .c-spec-td {
  background: #fff;
  text-align: center;
  vertical-align: middle;
  border-top: 1px solid #c5e4e8;
  letter-spacing: 0;
}

.type-1 .c-spec-td:nth-of-type(2n) {
  /* border-left: 1px solid #c5e4e8; */
}

.type-1 .c-spec-td.border-none {
  border-top: none;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-td {
    min-height: 68px;
    font-size: 14px;
    line-height: 1.66;
  }

  .type-1 .c-spec-td.th-none {
    padding-bottom: 40px;
  }

}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-td {
    font-size: 11px;
    line-height: 1.33;
  }

  .type-1 .c-spec-td.th-none {
    padding-bottom: 15px;
  }
}

.type-1 .c-spec-td.col-2 {
  position: relative;
}

.type-1 .c-spec-td .notes {
  display: inline-block;
  transform: scale(.6);
  transform-origin: left top;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-td.col-2 {
    padding: 32px 35px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-td.col-2 {
    padding: 25px;
    padding-bottom: 20px;
  }
}

/* .type-1 .c-spec-td.col-2::before {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #c5e4e8;
} */

.type-1 .c-spec-standard {
  position: relative;
  z-index: 2;
  background: #ecf6f7;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-standard {
    padding: 35px 20px 40px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-standard {
    border-radius: 6px;
    padding: 2em;
  }
}

.type-1 .c-spec-standard__title {
  font-weight: bold;
  color: #459cc9;
  text-align: center;
  margin-top: 0;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-standard__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-standard__title {
    font-size: 11px;
  }
}

.type-1 .c-spec-standard-list {
  margin-top: 0;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-standard-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-standard-list {
    margin-top: 30px;
    text-align: center;
  }
}

.type-1 .c-spec-standard-list::before,
.type-1 .c-spec-standard-list::after {
  content: none;
}

.type-1 .c-spec-standard-item {
  position: relative;
  padding-left: 0;
  text-indent: initial;
  flex-shrink: 0;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-standard-item {
    padding: 0 25px;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-standard-item {
    display: flex;
    align-items: center;
  }

  .type-1 .c-spec-standard-item {
    padding: 10px 0;
  }

  .type-1 .c-spec-standard-item:first-of-type {
    padding-top: 0;
  }

  .type-1 .c-spec-standard-item:last-of-type {
    padding-bottom: 0;
  }
}

.type-1 .c-spec-standard-item::before,
.type-1 .c-spec-standard-item::after {
  content: none;
}

.type-1 .c-spec-standard-item:not(:last-of-type)::before,
.type-1 .c-spec-standard-item:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  background: #9798a9;
  position: absolute;
}

@media screen and (min-width: 769px) {

  .type-1 .c-spec-standard-item:not(:last-of-type)::before,
  .type-1 .c-spec-standard-item:not(:last-of-type)::after {
    right: 0;
    top: 25px;
  }

  .type-1 .c-spec-standard-item:not(:last-of-type)::before {
    width: 20px;
    height: 2px;
    transform: translate(50%, -50%);
  }

  .type-1 .c-spec-standard-item:not(:last-of-type)::after {
    width: 2px;
    height: 20px;
    transform: translate(50%, -50%);
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-standard-item:not(:last-of-type)::before,
  .type-1 .c-spec-standard-item:not(:last-of-type)::after {
    bottom: 0;
    left: 12px;
  }

  .type-1 .c-spec-standard-item:not(:last-of-type)::before {
    width: 10px;
    height: 1px;
    transform: translate(-50%, 50%);
  }

  .type-1 .c-spec-standard-item:not(:last-of-type)::after {
    width: 1px;
    height: 10px;
    transform: translate(-50%, 50%);
  }
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-standard__icon {
    width: 50px;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-standard__icon {
    width: 25px;
  }
}

.type-1 .c-spec-standard__icon img {
  display: block;
}

.type-1 .c-spec-standard__text {
  color: #459cc9;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  display: block;
}

@media screen and (min-width: 769px) {
  .type-1 .c-spec-standard__text {
    font-size: 14px;
    margin-top: 0.25em;
  }
}

@media screen and (max-width: 768px) {
  .type-1 .c-spec-standard__text {
    font-size: 11px;
    margin-left: 1.25em;
    text-align: left;
  }
}

/* spec */