@charset "UTF-8";
:root {
  --space-unit: 1em;
  --space-xxs: calc(0.25 * var(--space-unit));
  --space-xs: calc(0.5 * var(--space-unit));
  --space-sm: calc(0.75 * var(--space-unit));
  --space-md: calc(1.25 * var(--space-unit));
  --space-lg: calc(2 * var(--space-unit));
  --space-xl: calc(3.25 * var(--space-unit));
  --space-xxl: calc(5.25 * var(--space-unit));
  /* components padding */
  --component-padding: var(--space-xs);
}

@media screen and (max-width: 768px) {
  :root {
    --space-unit: 1.25em;
  }
}

.margin-top,
.margin-top--md {
  margin-top: var(--space-md);
}

.margin-top--sm {
  margin-top: var(--space-sm);
}

.margin-top--lg {
  margin-top: var(--space-lg);
}

.margin-top--xl {
  margin-top: var(--space-xl);
}

.margin-top--xxl {
  margin-top: var(--space-xxl);
}

.margin-bottom,
.margin-bottom--md {
  margin-bottom: var(--space-md);
}

.margin-bottom--sm {
  margin-bottom: var(--space-sm);
}

.margin-bottom--lg {
  margin-bottom: var(--space-lg);
}

.margin-bottom--xl {
  margin-bottom: var(--space-xl);
}

.margin-bottom--xxl {
  margin-bottom: var(--space-xxl);
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 0;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 27px 40px;
  }
}

@media screen and (max-width: 576px) {
  .header {
    padding: 16px 20px;
  }
}

.header .header__logo img {
  width: 300px;
  height: auto;
}

@media screen and (max-width: 576px) {
  .header .header__logo img {
    width: 160px;
  }
}

.header .header__logo p {
  font-size: 1.5rem;
  color: #000000;
}

@media screen and (max-width: 576px) {
  .header .header__logo p {
    font-size: 1rem;
  }
}

.header .header__btn {
  background: linear-gradient(45deg, #ff4800 0%, #ffb400 100%);
  -webkit-box-shadow: 2px 2px 4px #333;
  box-shadow: 2px 2px 4px #333;
  color: #fff;
  padding: 8px 25px;
  text-align: center;
  border-radius: 50px;
  font-size: 1.7rem;
  line-height: 1.3;
}

.header .header__btn p {
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 576px) {
  .header .header__btn p {
    font-size: 1rem;
  }
}

.header .header__btn span {
  font-size: 1.2rem;
}

.hero {
  background-image: url(../img/hero_bg@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
}

.hero .hero__inr {
  position: relative;
  background-image: url(../img/hero_03@2x.png);
  background-repeat: no-repeat;
  background-size: 775px;
  background-position: bottom;
}

@media screen and (max-width: 768px) {
  .hero .hero__inr {
    background-image: none;
  }
}

.hero .hero__sub {
  position: absolute;
  top: 10%;
  right: 10%;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  font-size: 2.6rem;
}

@media screen and (max-width: 768px) {
  .hero .hero__sub {
    font-size: 1.2rem;
    top: 10px;
  }
}

.hero .hero__sub .hero__sub__line {
  position: absolute;
  top: 15px;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 768px) {
  .hero .hero__sub .hero__sub__line {
    top: 0px;
    width: 20px;
    height: 20px;
  }
}

.hero .hero__sub .left {
  left: -60px;
  background: linear-gradient(
    60deg,
    transparent,
    transparent 48.5%,
    #000000 49.5%,
    #000000 50.5%,
    transparent 51.5%,
    transparent
  );
}

@media screen and (max-width: 768px) {
  .hero .hero__sub .left {
    left: -20px;
  }
}

.hero .hero__sub .right {
  left: 210px;
  background: linear-gradient(
    -60deg,
    transparent,
    transparent 48.5%,
    #000000 49.5%,
    #000000 50.5%,
    transparent 51.5%,
    transparent
  );
}

@media screen and (max-width: 768px) {
  .hero .hero__sub .right {
    left: 165px;
  }
}

.hero .hero__img {
  position: absolute;
  top: 30%;
  right: 0;
}

@media screen and (max-width: 768px) {
  .hero .hero__img {
    top: 8%;
  }
}

@media screen and (max-width: 576px) {
  .hero .hero__img {
    top: 36px;
    right: 20px;
  }
}

.hero .hero__img img {
  width: 355px;
  height: 180px;
}

@media screen and (max-width: 768px) {
  .hero .hero__img img {
    width: 303px;
    height: 148px;
  }
}

@media screen and (max-width: 576px) {
  .hero .hero__img img {
    width: 196px;
    height: 96px;
  }
}

.hero .hero__txt {
  padding: 45px 0 120px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .hero .hero__txt {
    padding: 45px 0 32px;
  }
}

.hero .hero__txt .hero__ttl {
  font-size: 2.6rem;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .hero .hero__txt .hero__ttl {
    font-size: 1.9rem;
    width: 125px;
  }
}

@media screen and (max-width: 576px) {
  .hero .hero__txt .hero__ttl {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 576px) {
  .hero .hero__txt h1 {
    line-height: 1;
  }
}

.hero .hero__txt .hero__img01 {
  width: 576px;
}

@media screen and (max-width: 768px) {
  .hero .hero__txt .hero__img01 {
    width: calc(576 / 768 * 100vw);
  }
}

.hero .hero__txt .hero__img02 {
  width: 630px;
}

@media screen and (max-width: 768px) {
  .hero .hero__txt .hero__img02 {
    width: calc(630 / 768 * 100vw);
  }
}

.hero .hero__txt .hero__detail {
  font-size: 1.6rem;
}

.cv {
  background: linear-gradient(45deg, #ff4800 0%, #ffb400 100%);
  padding: 20px 0;
  margin-bottom: 90px;
}

.cv .cv__inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .cv .cv__inr {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.cv .cv__txt {
  position: relative;
  width: 30%;
}

@media screen and (max-width: 768px) {
  .cv .cv__txt {
    width: 44%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 576px) {
  .cv .cv__txt {
    width: 100%;
    text-align: center;
  }
}

.cv .cv__txt:after {
  content: url(../../img/icon_arrow.svg);
  position: absolute;
  top: 30%;
  right: -13%;
}

@media screen and (max-width: 768px) {
  .cv .cv__txt:after {
    top: 30px;
    right: -49px;
  }
}

@media screen and (max-width: 576px) {
  .cv .cv__txt:after {
    display: none;
  }
}

.cv .cv__tell {
  text-align: center;
  line-height: 1.2;
  width: 33%;
  border-right: 3px solid #fff;
}

@media screen and (max-width: 768px) {
  .cv .cv__tell {
    width: 46%;
    margin-bottom: 20px;
    border-right: none;
  }
}

@media screen and (max-width: 576px) {
  .cv .cv__tell {
    width: 100%;
  }
}

.cv .cv__tell .cv__tell-lead {
  display: inline-block;
  position: relative;
  font-size: 18px;
}

.cv .cv__tell .cv__tell-lead::before {
  content: url(../../img/icon_tell.svg);
  position: absolute;
  top: 0;
  left: -25px;
}

@media screen and (max-width: 768px) {
  .cv .cv__tell .cv__tell-lead::before {
    left: -25px;
  }
}

@media screen and (max-width: 576px) {
  .cv .cv__tell .cv__tell-lead::before {
    left: -23px;
  }
}

.cv .cv__tell .cv__tell-nunber {
  font-weight: bold;
  font-size: 3.2rem;
  padding: 8px;
}

.cv .cv__tell .cv__tell-nunber a {
  color: #fff;
}

.cv .cv__tell .cv__tell-detail {
  font-size: 1.1rem;
}

@media screen and (max-width: 576px) {
  .cv .cv__tell .cv__tell-detail {
    font-size: 1.4rem;
  }
}

.cv .cv__btn-box {
  width: 30%;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .cv .cv__btn-box {
    width: 100%;
    text-align: center;
  }
}

.cv .cv__btn-lead {
  display: inline-block;
  position: relative;
  text-align: right;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .cv .cv__btn-lead {
    text-align: center;
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 576px) {
  .cv .cv__btn-lead {
    font-size: 1.8rem;
  }
}

.cv .cv__btn-lead:before {
  content: url(../../img/icon_mail.svg);
  position: absolute;
  top: 3px;
  left: -32px;
}

@media screen and (max-width: 768px) {
  .cv .cv__btn-lead:before {
    left: -35px;
  }
}

@media screen and (max-width: 576px) {
  .cv .cv__btn-lead:before {
    left: -34px;
  }
}

.cv .cv__btn {
  display: block;
  border-radius: 50px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 4px #333;
  box-shadow: 2px 2px 4px #333;
  color: #ff4a00;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cv .cv__btn {
    font-size: 2.9rem;
  }
}

@media screen and (max-width: 576px) {
  .cv .cv__btn {
    font-size: 1.8rem;
  }
}

.cv .cv__btn span {
  font-size: 1rem;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .cv .cv__btn span {
    font-size: 1.7rem;
    vertical-align: text-top;
  }
}

@media screen and (max-width: 576px) {
  .cv .cv__btn span {
    font-size: 1.2rem;
  }
}

.cv:last-child {
  margin-bottom: 40px;
}

.cv-icon {
  background: linear-gradient(45deg, #ff4800 0%, #ffb400 100%);
  padding: 20px 0;
  margin-bottom: 90px;
}

.cv-icon .cv-icon__inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

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

.cv-icon .cv-icon__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .cv-icon .cv-icon__left {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 576px) {
  .cv-icon .cv-icon__left {
    display: block;
  }
}

.cv-icon__lead {
  color: #fff;
  margin-right: 8px;
  line-height: 1.4;
}

.cv-icon__lead span {
  font-size: 41px;
}

@media screen and (max-width: 576px) {
  .cv-icon__lead {
    text-align: center;
    margin-right: 0;
  }
}

.cv-icon__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cv-icon__item {
  max-width: 140px;
  margin: 0 8px;
}

.cv-icon__btn {
  display: block;
  border-radius: 50px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 4px #333;
  box-shadow: 2px 2px 4px #333;
  color: #ff4a00;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 8px 24px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cv-icon__btn {
    font-size: 2.9rem;
  }
}

@media screen and (max-width: 576px) {
  .cv-icon__btn {
    font-size: 1.8rem;
  }
}

.cv-icon__btn span {
  font-size: 1.6rem;
  font-weight: normal;
}

@media screen and (max-width: 576px) {
  .cv-icon__btn span {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .cv-icon__btn span {
    vertical-align: middle;
  }
}

.about {
  margin-bottom: 130px;
}

.about .about__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 540px 1fr;
  grid-template-columns: 540px 1fr;
  margin-bottom: 32px;
}

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

.about .about__img {
  margin-left: auto;
  width: 90%;
}

@media screen and (max-width: 768px) {
  .about .about__img {
    margin: 0 auto;
    max-width: 500px;
  }
}

@media screen and (max-width: 768px) {
  .about .about__img img {
    display: block;
    margin: 0 auto;
  }
}

.about .about__txt {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  line-height: 2;
}

.about .about__detail {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .about .about__detail {
    font-size: 1.4rem;
  }
}

.about .about__btn {
  display: block;
  width: 95%;
  max-width: 357px;
  color: #fff;
  background: #1fd0e1;
  border-radius: 30px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  -webkit-box-shadow: 2px 2px 4px #333;
  box-shadow: 2px 2px 4px #333;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  /*&::before {
      content: url(../../img/pdf.png);
      position: absolute;
      top: 8px;
      left: 15px;
      width: 22px;
      height: 33px;
    }*/
}

@media screen and (max-width: 768px) {
  .about .about__btn {
    text-align: center;
    max-width: 280px;
    padding: 12px;
  }
}

.about .about__btn p {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .about .about__btn p {
    font-size: 14px;
  }
}

.about .about__video {
  position: relative;
  width: 90%;
  height: 0;
  overflow: hidden;
  padding: 10px 0px 54%;
  margin: 0 auto;
}

.about .about__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.point {
  margin-bottom: 130px;
}

@media screen and (max-width: 768px) {
  .point {
    margin-bottom: 72px;
  }
}

.point .point__img-box {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 20px;
  column-gap: 20px;
  margin-bottom: 120px;
}

.point .point__item {
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .point .point__item .point__iflink-img {
    margin-left: -90px;
  }
}

@media screen and (max-width: 576px) {
  .point .point__item .point__iflink-img {
    margin-left: -50px;
  }
}

.point .point__item:last-child {
  margin-bottom: 0px;
}

.point .point__head {
  text-align: center;
}

.point .point__ttl-sub {
  display: block;
  font-weight: bold;
  font-size: 17px;
  color: #0e56f1;
  margin-bottom: 8px;
}

.point .sub01:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 30px;
  background-image: url(../img/point_no01@2x.png);
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
}

.point .sub02:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 30px;
  background-image: url(../img/point_no02@2x.png);
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
}

.point .sub03:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 30px;
  background-image: url(../img/point_no03@2x.png);
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
}

.point .point__ttl {
  font-weight: bold;
  margin-bottom: 60px;
}

.point .point__body {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
  -webkit-column-gap: 60px;
  column-gap: 60px;
}

@media screen and (max-width: 768px) {
  .point .point__body {
    display: block;
    margin-bottom: 80px;
  }
}

.point .point__body .point__img {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .point .point__body img {
    padding: 0 60px 20px;
  }
}

@media screen and (max-width: 576px) {
  .point .point__body img {
    padding: 0 20px 20px;
  }
}

.point .point__body .point__lead {
  font-size: 2.3rem;
  font-weight: bold;
}

.point .point__iflink {
  border: 3px solid #1fd0e1;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 72px;
}

@media screen and (max-width: 768px) {
  .point .point__iflink {
    padding: 48px 32px;
  }
}

.point .point__lead-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .point .point__lead-sp {
    display: block;
    font-size: 3.3rem;
    font-weight: bold;
    margin-bottom: 24px;
    text-align: center;
  }
}

.point .point__iflink__inr {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 520px;
  -ms-grid-columns: 1fr 520px;
  -webkit-column-gap: 40px;
  column-gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.point .point__iflink__inr .point__img {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .point .point__iflink__inr .point__img {
    padding: 0 100px 50px;
  }
}

@media screen and (max-width: 576px) {
  .point .point__iflink__inr .point__img {
    padding: 0;
  }
}

.point .point__iflink__inr .point__lead-pc {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 16px;
}

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

.point .point__iflink__inr .point__detail {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.point .point__btn {
  display: block;
  max-width: 277px;
  color: #fff;
  background: #1fd0e1;
  border-radius: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .point .point__btn {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

.point .point__btn a {
  display: block;
  color: #fff;
  padding: 8px;
  font-size: 20px;
}

.scene .scene__img-box {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 16px;
  column-gap: 16px;
  margin-bottom: 80px;
}

@media screen and (max-width: 576px) {
  .scene .scene__img-box {
    -webkit-column-gap: 10px;
    column-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .scene .scene__img-box img {
    margin-bottom: 20px;
  }
}

.plan {
  margin-bottom: 120px;
}

.plan .plan__items {
  display: grid;
  display: -ms-grid;
  column-gap: 48px;
  -webkit-column-gap: 48px;
  grid-template-columns: minmax(200px, 378px) minmax(200px, 378px);
  -ms-grid-columns: minmax(200px, 378px) minmax(200px, 378px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 576px) {
  .plan .plan__items {
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
  }
}

.plan .plan__item {
  text-align: center;
  max-width: 378px;
  border: 5px solid #ff7c32;
}

@media screen and (max-width: 576px) {
  .plan .plan__item:first-child {
    margin-bottom: 32px;
  }
}

.plan .plan__item-blue {
  border: 5px solid #00c2a5;
}

.plan .plan__head {
  background: #ff7c32;
  color: #fff;
  padding: 20px;
}

.plan .plan__head-blue {
  background: #00c2a5;
}

.plan .plan__body {
  padding: 20px 16px;
}

.plan .plan__img {
  padding: 35px 0;
}

.plan .plan__img img {
  width: 109px;
}

.plan .plan__img2 {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-columns: 1fr 1fr 1fr;
  justify-items: center;
  padding: 20px;
}

.plan .plan__img2 img {
  width: 109px;
}

.plan .plan__03 {
  width: 45px;
}

.plan .plan__txt {
  padding: 20px 0;
}

.plan .plan__pc {
  width: 300px;
}

.plan .plan__detail {
  font-size: 1.2rem;
  text-align: left;
  margin-top: -32px;
}

.comparison {
  margin-bottom: 88px;
}

.comparison .comparison__table {
  width: 100%;
  max-width: 900px;
  border: 1px solid #111;
  margin-bottom: 16px;
  margin: 0 auto;
}

@media screen and (max-width: 576px) {
  .comparison .comparison__table {
    font-size: 10px;
  }
}

.comparison .comparison__table .comparison__table-logo {
  width: 200px;
  height: auto;
}

@media screen and (max-width: 576px) {
  .comparison .comparison__table .comparison__table-logo {
    width: 100px;
  }
}

.comparison .comparison__table .bg-gray {
  background: #eaeaea;
}

.comparison .comparison__table .comparison__table-txt {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .comparison .comparison__table .comparison__table-txt {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 576px) {
  .comparison .comparison__table .comparison__table-txt {
    font-size: 1rem;
  }
}

.comparison .comparison__table tr {
  border-bottom: 1px solid #111;
  height: 60px;
}

@media screen and (max-width: 576px) {
  .comparison .comparison__table tr {
    height: 30px;
  }
}

.comparison .comparison__table tr td {
  vertical-align: middle;
  text-align: center;
  border-right: 1px solid #111;
  padding: 0 16px;
  line-height: 3.5rem;
}

@media screen and (max-width: 576px) {
  .comparison .comparison__table tr td {
    padding: 0;
    line-height: 1.8rem;
  }
}

.comparison .comparison__table tr td img {
  width: 25px;
  height: 30px;
  vertical-align: middle;
}

.comparison .comparison__table tr td .icon-batsu {
  width: 20px;
  height: 20px;
}

.comparison .comparison__table tr td:last-child {
  border-right: none;
}

.comparison .comparison__table tr:nth-of-type(3) {
  height: 120px;
}

@media screen and (max-width: 576px) {
  .comparison .comparison__table tr:nth-of-type(3) {
    height: 60px;
  }
}

.comparison .comparison__detail {
  max-width: 900px;
  padding-top: 20px;
  margin: 0 auto;
  text-align: right;
}

.product {
  padding-bottom: 80px;
}

.product .product__inr {
  position: relative;
}

.product .product__modaal {
  text-align: center;
  position: relative;
  max-width: 900px;
  margin: 0 auto 56px;
  z-index: 0;
}

.product .product__modaal img {
  width: 100%;
}

.product .product__modaal .product__orange-line-1 {
  position: absolute;
  width: 197px;
  height: 95px;
  top: 19%;
  left: 26%;
  border: 3px solid #ff7c32;
}

@media screen and (max-width: 768px) {
  .product .product__modaal .product__orange-line-1 {
    width: 22%;
    height: 16%;
    top: 16%;
  }
}

@media screen and (max-width: 576px) {
  .product .product__modaal .product__orange-line-1 {
    top: 15%;
  }
}

@media screen and (max-width: 375px) {
  .product .product__modaal .product__orange-line-1 {
    height: 15%;
    top: 14%;
    left: 26%;
  }
}

.product .product__modaal .product__orange-icon-1 {
  position: absolute;
  top: 16%;
  left: 24%;
  width: 30px;
  height: 30px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .product .product__modaal .product__orange-icon-1 {
    top: 15%;
  }
}

@media screen and (max-width: 576px) {
  .product .product__modaal .product__orange-icon-1 {
    top: 13%;
    left: 23%;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 375px) {
  .product .product__modaal .product__orange-icon-1 {
    top: 9%;
    left: 22%;
  }
}

.product .product__modaal .product__orange-line-2 {
  position: absolute;
  width: 155px;
  height: 95px;
  top: 19%;
  left: 53%;
  border: 3px solid #ff7c32;
}

@media screen and (max-width: 768px) {
  .product .product__modaal .product__orange-line-2 {
    width: 17%;
    height: 16%;
    top: 16%;
  }
}

@media screen and (max-width: 576px) {
  .product .product__modaal .product__orange-line-2 {
    top: 14%;
  }
}

@media screen and (max-width: 375px) {
  .product .product__modaal .product__orange-line-2 {
    height: 14%;
    top: 14%;
    left: 53%;
  }
}

.product .product__modaal .product__orange-icon-2 {
  position: absolute;
  top: 16%;
  left: 51%;
  width: 30px;
  height: 30px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .product .product__modaal .product__orange-icon-2 {
    top: 15%;
  }
}

@media screen and (max-width: 576px) {
  .product .product__modaal .product__orange-icon-2 {
    top: 12%;
    left: 51%;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 375px) {
  .product .product__modaal .product__orange-icon-2 {
    top: 9%;
    left: 49%;
  }
}

.product .product__modaal .product__orange-line-3 {
  position: absolute;
  width: 168px;
  height: 19px;
  top: 40%;
  left: 22%;
  border: 3px solid #ff7c32;
}

@media screen and (max-width: 768px) {
  .product .product__modaal .product__orange-line-3 {
    width: 19%;
    height: 4%;
    top: 33%;
  }
}

@media screen and (max-width: 576px) {
  .product .product__modaal .product__orange-line-3 {
    top: 31%;
    height: 5%;
  }
}

@media screen and (max-width: 375px) {
  .product .product__modaal .product__orange-line-3 {
    top: 32%;
    height: 5%;
  }
}

.product .product__modaal .product__orange-icon-3 {
  position: absolute;
  top: 37%;
  left: 20%;
  width: 30px;
  height: 30px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .product .product__modaal .product__orange-icon-3 {
    top: 31%;
    left: 19%;
  }
}

@media screen and (max-width: 576px) {
  .product .product__modaal .product__orange-icon-3 {
    top: 28%;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 375px) {
  .product .product__modaal .product__orange-icon-3 {
    top: 27%;
    left: 18%;
  }
}

.product .product__modaal .product__orange-line-4 {
  position: absolute;
  width: 173px;
  height: 50px;
  top: 43%;
  left: 59%;
  border: 3px solid #ff7c32;
}

@media screen and (max-width: 768px) {
  .product .product__modaal .product__orange-line-4 {
    width: 19%;
    height: 8%;
    top: 36%;
  }
}

@media screen and (max-width: 576px) {
  .product .product__modaal .product__orange-line-4 {
    top: 34%;
    height: 9%;
  }
}

@media screen and (max-width: 375px) {
  .product .product__modaal .product__orange-line-4 {
    top: 34%;
  }
}

.product .product__modaal .product__orange-icon-4 {
  position: absolute;
  top: 40%;
  left: 57%;
  width: 30px;
  height: 30px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .product .product__modaal .product__orange-icon-4 {
    top: 33%;
    left: 56%;
  }
}

@media screen and (max-width: 576px) {
  .product .product__modaal .product__orange-icon-4 {
    top: 30%;
    left: 55%;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 375px) {
  .product .product__modaal .product__orange-icon-4 {
    top: 30%;
    left: 55%;
  }
}

.product .product__modaal .product__orange-line-5 {
  position: absolute;
  width: 24px;
  height: 31px;
  top: 50%;
  left: 77%;
  border: 3px solid #ff7c32;
}

@media screen and (max-width: 768px) {
  .product .product__modaal .product__orange-line-5 {
    width: 3%;
    height: 6%;
    top: 42%;
  }
}

@media screen and (max-width: 576px) {
  .product .product__modaal .product__orange-line-5 {
    top: 40%;
  }
}

@media screen and (max-width: 375px) {
  .product .product__modaal .product__orange-line-5 {
    top: 41%;
    left: 76.5%;
  }
}

.product .product__modaal .product__orange-icon-5 {
  position: absolute;
  top: 48%;
  left: 75%;
  width: 30px;
  height: 30px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .product .product__modaal .product__orange-icon-5 {
    top: 37%;
    left: 73%;
  }
}

@media screen and (max-width: 576px) {
  .product .product__modaal .product__orange-icon-5 {
    top: 37%;
    left: 73%;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 375px) {
  .product .product__modaal .product__orange-icon-5 {
    top: 35%;
    left: 72%;
  }
}

.product .product__modaal p {
  margin-top: -100px;
  font-size: 23px;
}

@media screen and (max-width: 768px) {
  .product .product__modaal p {
    margin-top: 0%;
    font-size: 16px;
  }
}

.product .product__modaal-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product #info {
  display: none;
}

.product #info1 {
  display: none;
  position: absolute;
  width: 90%;
  max-width: 400px;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

@media screen and (max-width: 576px) {
  .product #info1 {
    top: 230px;
    width: 200px;
  }
}

.product #info2 {
  display: none;
  position: absolute;
  width: 90%;
  max-width: 580px;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

@media screen and (max-width: 576px) {
  .product #info2 {
    top: 240px;
    width: 260px;
  }
}

.product #info3 {
  display: none;
  position: absolute;
  width: 90%;
  max-width: 720px;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

@media screen and (max-width: 576px) {
  .product #info3 {
    top: 280px;
    width: 95%;
    max-width: 340px;
  }
}

.product #info4 {
  display: none;
  position: absolute;
  width: 90%;
  max-width: 580px;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

@media screen and (max-width: 576px) {
  .product #info4 {
    top: 250px;
    width: 280px;
  }
}

.product #info5 {
  display: none;
  position: absolute;
  width: 90%;
  max-width: 480px;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

@media screen and (max-width: 576px) {
  .product #info5 {
    top: 250px;
    width: 270px;
  }
}

.product .product__lead {
  font-size: 2.1rem;
  font-weight: bold;
  padding-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .product .product__lead {
    font-size: 3rem;
  }
}

.product .product__detail {
  font-size: 1.2rem;
  padding-bottom: 56px;
}

.product .product__detail:last-child {
  padding-bottom: 0px;
}

.modaal-container {
  max-width: 700px;
}

.product__modaal-item {
  text-align: center;
  border: 8px solid #ff7c32;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .product__modaal-item {
    border: 5px solid #ff7c32;
  }
}

.product__modaal-head {
  background: #ff7c32;
}

.product__modaal-head p {
  color: #fff;
  padding: 8px;
  font-size: 2.6rem;
}

@media screen and (max-width: 768px) {
  .product__modaal-head p {
    font-size: 1.6rem;
    padding: 0;
  }
}

.product__modaal-inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 20px 0;
}

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

.product__modaal-inr p,
.product__modaal-inr img {
  padding: 16px;
}

.product__modaal-inr .product__modaal-detail {
  width: 250px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .product__modaal-inr .product__modaal-detail {
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  .product__modaal-inr .product__modaal-detail {
    width: 220px;
  }
}

.product__modaal-inr .product__modaal-detail p {
  color: #fff;
  font-weight: bold;
  padding: 8px 0 8px 80px;
}

@media screen and (max-width: 576px) {
  .product__modaal-inr .product__modaal-detail p {
    padding: 8px 8px 8px 72px;
  }
}

.product__modaal-inr .bg-red {
  background: #ff0062;
  display: inline-block;
  position: relative;
}

.product__modaal-inr .bg-red {
  display: inline-block;
  position: relative;
}

.product__modaal-inr .bg-red:before {
  content: "";
  position: absolute;
  top: 35px;
  left: 100%;
  margin-top: -25px;
  border: 15px solid transparent;
  border-left: 15px solid #ff0062;
}

.product__modaal-inr .bg-orange {
  background: #ff7c32;
  display: inline-block;
  position: relative;
}

.product__modaal-inr .bg-orange:before {
  content: "";
  position: absolute;
  top: 35px;
  left: 100%;
  margin-top: -25px;
  border: 15px solid transparent;
  border-left: 15px solid #ff7c32;
}

.product__modaal-inr .bg-green {
  background: #00c2a5;
  display: inline-block;
  position: relative;
}

.product__modaal-inr .bg-green:before {
  content: "";
  position: absolute;
  top: 35px;
  left: 100%;
  margin-top: -25px;
  border: 15px solid transparent;
  border-left: 15px solid #00c2a5;
}

.product__modaal-txt {
  text-align: left;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0 0 16px 16px;
}

@media screen and (max-width: 768px) {
  .product__modaal-txt {
    font-size: 1.1rem;
  }
}

.product__modaal-close {
  position: absolute;
  top: -60px;
  right: 0;
  width: 50px;
}

@media screen and (max-width: 768px) {
  .product__modaal-close {
    top: -40px;
    width: 30px;
  }
}

/*moddal1*/
.product__modaal1-inr {
  padding: 10px 0;
}

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

.product__modaal1-inr p {
  padding: 16px;
}

.product__modaal1-inr img {
  width: 75%;
  max-width: 500px;
}

/*moddal2*/
.product__modaal2-inr {
  /*display: flex;
  align-items: center;
  justify-content: space-around;*/
  padding: 10px 0;
}

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

.product__modaal2-inr p {
  padding: 16px;
}

.product__modaal2-inr img {
  width: 100%;
}

.product__modaal2-inr .product__modaal2-detail {
  width: 100%;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .product__modaal2-inr .product__modaal2-detail {
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  .product__modaal2-inr .product__modaal2-detail {
    width: 220px;
  }
}

.product__modaal2-inr .product__modaal2-detail p {
  color: #000;
  font-weight: normal;
  /*padding: 8px 8px 8px 8px;*/
  padding: 2px 2px 2px 8px;
  font-size: 2.4rem;
}

@media screen and (max-width: 576px) {
  .product__modaal2-inr .product__modaal2-detail p {
    padding: 8px 8px 8px 8px;
    font-size: 1rem;
  }
}

.product__modaal2-inr .product__modaal2-detail img {
  width: 50px;
  margin-left: 5px;
  margin-bottom: -5px;
}

@media screen and (max-width: 576px) {
  .product__modaal2-inr .product__modaal2-detail img {
    width: 25px;
    margin-left: 3px;
  }
}

/*moddal3*/
.product__modaal3-inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 10px 0;
}

@media screen and (max-width: 768px) {
  .product__modaal3-inr {
    /*display: block;*/
  }
}

.product__modaal3-inr p {
  padding: 16px;
}

.product__modaal3-inr img {
  width: 300px;
}

@media screen and (max-width: 768px) {
  .product__modaal3-inr img {
    width: 150px;
  }
}

.product__modaal3-inr .product__modaal3-detail {
  width: 340px;
  text-align: left;
  border-radius: 20px;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .product__modaal3-inr .product__modaal3-detail {
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  .product__modaal3-inr .product__modaal3-detail {
    width: 160px;
    padding: 0;
  }
}

.product__modaal3-inr .product__modaal3-detail p {
  color: #000;
  font-weight: normal;
  /*padding: 8px 8px 8px 8px;*/
  padding: 2px 2px 2px 8px;
}

@media screen and (max-width: 576px) {
  .product__modaal3-inr .product__modaal3-detail p {
    padding: 8px 8px 8px 8px;
    font-size: 1rem;
  }
}

.product__modaal3-inr .bor-blue {
  border: 5px solid #3f47cb;
}

@media screen and (max-width: 768px) {
  .product__modaal3-inr .bor-blue {
    border: 3px solid #3f47cb;
  }
}

.product__modaal3-inr .bor-green {
  border: 5px solid #22b14d;
}

@media screen and (max-width: 768px) {
  .product__modaal3-inr .bor-green {
    border: 3px solid #22b14d;
  }
}

.product__modaal3-inr .bor-purple {
  border: 5px solid #a248a3;
}

@media screen and (max-width: 768px) {
  .product__modaal3-inr .bor-purple {
    border: 3px solid #a248a3;
  }
}

/*moddal4*/
.product__modaal4-inr {
  padding: 10px 0;
}

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

.product__modaal4-inr p {
  padding: 16px;
}

.product__modaal4-inr img {
  width: 100%;
}

/*moddal5*/
.product__modaal5-inr {
  padding: 10px 0;
}

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

.product__modaal5-inr p {
  padding: 16px;
}

.product__modaal5-inr img {
  width: 75%;
  max-width: 500px;
}

.product__modaal5-txt {
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  padding: 25px;
}

@media screen and (max-width: 768px) {
  .product__modaal5-txt {
    font-size: 1.1rem;
    padding: 20px;
  }
}

.product__modaal5-txt span {
  font-size: 1.8rem;
  margin-top: 20px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .product__modaal5-txt span {
    font-size: 1rem;
  }
}

.active {
  display: block !important;
}

.faq {
  background: #eaeaea;
  padding: 54px 0 88px;
  /*アイコンの＋と×*/
  /*closeというクラスがついたら形状変化*/
}

.faq .faq__item {
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0px 5px #b6b6b6;
  box-shadow: 0px 5px #b6b6b6;
  padding: 28px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.faq .faq__item:after {
  content: "";
  background: #0e56f1;
  width: 28px;
  height: 28px;
  border-radius: 50px;
  position: absolute;
  top: 37px;
  right: 36px;
  cursor: pointer;
}

.faq .faq__icon {
  font-size: 2.7rem;
  color: #0e56f1;
}

@media screen and (max-width: 576px) {
  .faq .faq__icon {
    font-size: 2rem;
  }
}

.faq .faq__question {
  position: relative;
  font-size: 2.3rem;
  z-index: 10;
  padding-right: 50px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (max-width: 576px) {
  .faq .faq__question {
    font-size: 2rem;
  }
}

.faq .faq__question ::before,
.faq .faq__question ::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #fff;
  z-index: 1;
  cursor: pointer;
}

.faq .faq__question ::before {
  top: 21px;
  right: 14px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq .faq__question ::after {
  top: 21px;
  right: 14px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faq .faq__question.close ::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq .faq__question.close ::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq .faq__answer {
  display: none;
  font-size: 1.8rem;
  padding-top: 28px;
}

.footer {
  margin-top: -40px;
  margin-bottom: 40px;
}

.footer .footer__inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

.footer .footer__inr .footer__logo {
  width: 283px;
}

@media screen and (max-width: 768px) {
  .footer .footer__inr .footer__logo {
    margin: 0 auto;
    max-width: 415px;
    margin-bottom: 48px;
  }
}

.footer .footer__txt .footer__address {
  display: inline-block;
  font-size: 1.6rem;
  padding-left: 24px;
}

@media screen and (max-width: 768px) {
  .footer .footer__txt .footer__address {
    text-align: center;
  }
}

.copy {
  background: #222222;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .copy {
    font-size: 1.6rem;
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  font-size: 62.5%;
}

body {
  font-family: "ヒラギノ角ゴ ProN", sans-serif;
  font-size: 1.6em;
  color: #1a1a1a;
  color: #1a1a1a;
  line-height: 1.7;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
  -ms-filter: "alpha(opacity=75)";
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  zoom: 1;
  color: #444;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

p {
  font-size: 1.8rem;
}

.hero__inr,
.cv__inr,
.about__inr,
.point__inr,
.scene__inr,
.cv-icon__inr,
.plan__inr,
.comparison__inr,
.product__inr,
.faq__inr,
.footer__inr {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .hero__inr,
  .cv__inr,
  .about__inr,
  .point__inr,
  .scene__inr,
  .cv-icon__inr,
  .plan__inr,
  .comparison__inr,
  .product__inr,
  .faq__inr,
  .footer__inr {
    padding: 0 20px;
  }
}

.section__ttl {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}

.section__ttl img {
  width: 330px;
  height: 40px;
}

.section__ttl-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #0ec0d5;
  border-radius: 50px;
  color: #0ec0d5;
  background: #fff;
  font-size: 14px;
  width: 122px;
  height: 33px;
  margin: 0 auto 16px;
}

.br__sp {
  display: none;
}

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

.br__sp-sm {
  display: none;
}

@media screen and (max-width: 576px) {
  .br__sp-sm {
    display: block;
  }
}

.br__pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .br__pc {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
