@charset "UTF-8";
@font-face {
  font-family: 'notosansjp';
  font-weight: 400;
  src: url(../font/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 500;
  src: url(../font/NotoSansJP-Medium.ttf) format("truetype");
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 600;
  src: url(../font/NotoSansJP-Bold.ttf) format("truetype");
}
@font-face {
  font-family: 'adventpro';
  font-weight: 600;
  src: url(../font/AdventPro-Bold.ttf) format("truetype");
}
.main-visual {
  display: flex;
  align-items: center;
  background: url("../img/main_visual_bg.jpg") no-repeat center/cover;
  padding: 85px 0 75px;
}
.main-visual-inner {
  width: 1000px;
  background: rgba(0, 47, 126, 0.8);
  color: #FFF;
  text-align: center;
  padding: 60px 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .main-visual-inner {
    width: 90%;
    height: auto;
    padding: 3.5% 3%;
  }
}
.main-visual-lead {
  display: block;
  width: fit-content;
  background: #002F7E;
  font-size: 24px;
  color: #EEFF00;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  border-radius: 20px;
  padding: 0 30px;
  margin: 0 auto 35px;
}
@media screen and (max-width: 1080px) {
  .main-visual-lead {
    width: 85% !important;
    background-size: 1.8%;
    font-size: 26px;
  }
}
@media screen and (max-width: 840px) {
  .main-visual-lead {
    width: 94% !important;
  }
}
.main-visual-title {
  margin-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .main-visual-title {
    margin-bottom: 20px;
    font-size: 52px;
  }
}
.main-visual-title .small {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .main-visual-title .small {
    margin-top: 10px;
    font-size: 26px;
  }
}
.main-visual .link-contact a {
  box-shadow: none;
  background: none;
}
@media screen and (max-width: 768px) {
  .main-visual {
    padding: 35px 0 45px;
  }
  .main-visual-inner {
    padding: 35px 0 30px;
  }
  .main-visual-lead {
    font-size: 16px;
    line-height: 18px;
    border-radius: 50px;
    padding: 6px 0;
    margin-bottom: 15px;
  }
  .main-visual-title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .main-visual-title .small {
    font-size: 22px;
  }
  .main-visual .link-contact a {
    background: none;
    padding: 0;
    box-shadow: none;
  }
}

.reason__bg {
  background: #D7E9FF;
  padding: 85px 0 90px;
}
.reason__ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  margin-bottom: 70px;
}
.reason__ttl .small {
  font-size: 30px;
  line-height: 50px;
}
.reason__ttl .small .deco {
  color: #0A8DDE;
}
.reason__list {
  display: flex;
  justify-content: center;
  gap: 67px;
}
.reason__item {
  width: 325px;
}
.reason__item .upper img {
  display: block;
  width: 230px;
  margin: 0 auto;
  margin-bottom: 14px;
}
.reason__item .upper__txt {
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  margin-bottom: 35px;
}
.reason__item .lower__txt {
  position: relative;
  width: 322px;
  height: 325px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  padding: 30px 23px 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 3px rgba(0, 102, 255, 0.2);
}
.reason__item .lower__txt::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  border-width: 0px 21.5px 24px 21.5px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.reason__item .lower__txt .deco {
  color: #0A8DDE;
}
@media screen and (max-width: 768px) {
  .reason__bg {
    padding: 50px 0;
  }
  .reason__ttl {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 25px;
  }
  .reason__ttl .small {
    font-size: 20px;
    line-height: 34px;
  }
  .reason__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    row-gap: 35px;
  }
  .reason__item {
    width: fit-content;
  }
  .reason__item .upper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .reason__item .upper img {
    width: 90px;
    margin: 0;
  }
  .reason__item .upper__txt {
    font-size: 17px;
    line-height: 26px;
    text-align: left;
    margin-bottom: 0;
  }
  .reason__item .lower__txt {
    height: auto;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    padding: 19px;
  }
}

.effect {
  padding: 85px 0 80px;
}
.effect__ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  margin-bottom: 60px;
}
.effect__ttl .deco {
  color: #0A8DDE;
}
.effect__list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.effect__item {
  width: 250px;
  border: 3px solid #B9EAFF;
  border-radius: 20px;
  padding: 26px 14px;
  box-shadow: 0px 0px 15px 3px rgba(0, 102, 255, 0.2);
}
.effect__item .item__ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}
.effect__item .item__txt {
  color: #0A8DDE;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}
.effect__txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .effect {
    padding: 50px 0 45px;
  }
  .effect .inner {
    padding: 0 5%;
  }
  .effect__ttl {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 35px;
  }
  .effect__list {
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 30px;
  }
  .effect__item {
    width: 100%;
    padding: 5%;
  }
  .effect__item .item__ttl {
    font-size: 18px;
    line-height: 32px;
  }
  .effect__item .item__txt {
    font-size: 15px;
    line-height: 26px;
    text-align: left;
  }
  .effect__txt {
    font-size: 15px;
    line-height: 26px;
    text-align: left;
  }
}

.program_number__bg {
  background: #D7E9FF;
  padding: 80px 0 90px;
}
.program_number img {
  display: block;
}
.program_number__img {
  margin-bottom: 80px;
}
.program_number__img01 {
  position: relative;
  z-index: 10;
  width: 414px;
  margin-top: 85px;
}
.program_number__img02 {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50px;
  left: 0;
}
.program_number__img03 {
  margin-bottom: 0;
}
.program_number__img04 {
  width: 1000px !important;
  margin: 0 auto 70px;
}
.program_number__img05 {
  width: 454px;
  margin-top: 70px;
}
.program_number__img06 {
  position: absolute;
  width: 100%;
  top: 0;
  margin-top: 30px;
}
.program_number .number__container {
  position: relative;
  margin-bottom: 110px;
}
.program_number .number__container01 {
  display: flex;
  gap: 15px;
}
.program_number .number__container01 .container__inner {
  position: relative;
}
.program_number .number__container01 .container__inner01::after {
  position: absolute;
  content: "";
  width: 281px;
  height: 232px;
  background: url(../img/program_number_icon01.webp) no-repeat center/contain;
  top: 0;
  right: -100px;
}
.program_number .number__container01 .container__inner:first-of-type {
  width: 574px;
}
.program_number .number__container01 .container__inner:first-of-type .number__txt:nth-of-type(2) {
  margin-bottom: 30px;
}
.program_number .number__container02::before {
  position: absolute;
  content: "";
  width: 361px;
  height: 232px;
  background: url(../img/program_number_icon02.webp) no-repeat center/contain;
  top: 0;
  right: 0;
}
.program_number .number__container02 .txt__container {
  position: relative;
  z-index: 10;
}
.program_number .number__container02 .number__txt {
  margin-bottom: 920px;
}
.program_number .number__container03 {
  display: flex;
  margin-bottom: 0;
}
.program_number .number__container03::before {
  position: absolute;
  content: "";
  width: 361px;
  height: 232px;
  background: url(../img/program_number_icon03.webp) no-repeat center/contain;
  top: 0;
  right: 0;
}
.program_number .number__container03 .container__inner03 {
  width: 465px;
}
.program_number .number__container03 .container__inner03:nth-of-type(2) {
  position: relative;
  z-index: 10;
  width: 640px;
}
.program_number .number__container03 .container__inner03:nth-of-type(2) img {
  width: 100%;
  margin-top: 85px;
}
.program_number .number__container04 {
  display: flex;
  gap: 145px;
}
.program_number .number__container05::before {
  position: absolute;
  content: "";
  width: 361px;
  height: 232px;
  background: url(../img/program_number_icon04.webp) no-repeat center/contain;
  top: 0;
  right: 0;
}
.program_number .number__container05 .txt__container {
  width: 440px;
}
.program_number .number__container05 .txt__container .number__lead {
  position: relative;
  z-index: 10;
  margin-bottom: 1230px;
}
.program_number .number__ttl {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 35px;
}
.program_number .number__ttl::after {
  position: absolute;
  content: "";
  width: 75px;
  height: 4px;
  background: #fff;
  bottom: -10px;
  left: 0;
}
.program_number .number__lead {
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 20px;
}
.program_number .number__lead .deco {
  color: #0A8DDE;
}
.program_number .number__txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 5px;
}
.program_number .number__txt--first {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
}
.program_number .number__txt--first .deco {
  color: #0A8DDE;
}
.program_number .number__item {
  width: 420px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  list-style-type: disc;
  margin-left: 1.5em;
}
.program_number .categories__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 30px;
}
.program_number .categories__item {
  width: fit-content;
  background: #E7499E;
  color: white;
  font-size: 13px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  padding: 0 10px;
}
.program_number .categories__item:nth-of-type(2) {
  background: #375CBC;
}
.program_number .categories__item:nth-of-type(3) {
  background: #249C71;
}
.program_number .categories__item:nth-of-type(4) {
  background: #ED6B32;
}
.program_number .categories__item:nth-of-type(5) {
  background: #5CC34C;
}
.program_number .categories__item:nth-of-type(6) {
  background: #6B6B6B;
}
.program_number .categories__item:nth-of-type(7) {
  background: #A38A33;
}
.program_number .categories__item:nth-of-type(8) {
  background: #192347;
}
.program_number .categories__item:nth-of-type(9) {
  background: #AE4CC6;
}
.program_number .txtbox {
  position: absolute;
  z-index: 11;
  width: 388px;
  background: #99CDF5;
  border-radius: 20px;
  padding: 20px 0 10px 66px;
  top: 304px;
  left: 140px;
}
.program_number .txtbox__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 10px;
}
.program_number .txtbox__item {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  list-style-type: decimal;
  margin-left: 1em;
}
.program_number .txt__container {
  width: 440px;
}
@media screen and (max-width: 768px) {
  .program_number__bg {
    padding: 0 0 40px;
  }
  .program_number .inner {
    overflow-x: hidden;
  }
  .program_number .number__container {
    margin-bottom: 0;
  }
  .program_number .number__container01 {
    display: block;
    padding: 40px 5% 0;
    margin-bottom: 130px;
  }
  .program_number .number__container01::before {
    position: absolute;
    content: "";
    width: 141px;
    height: 114px;
    background: url(../img/program_number_icon01.webp) no-repeat center/contain;
    top: 0;
    right: 5%;
  }
  .program_number .number__container01 .container__inner:first-of-type {
    width: 100%;
  }
  .program_number .number__container01 .container__inner01::after {
    display: none;
  }
  .program_number .number__container01 .number__ttl {
    margin-bottom: 20px;
  }
  .program_number .number__container01 .number__lead {
    padding: 0;
  }
  .program_number .number__container02::before {
    width: 182px;
    height: 115px;
    right: 5%;
  }
  .program_number .number__container02 .container__inner {
    padding-top: 40px;
  }
  .program_number .number__container02 .number__ttl {
    margin-bottom: 20px;
  }
  .program_number .number__container02 .number__lead {
    position: relative;
    padding: 0;
  }
  .program_number .number__container02 .number__txt {
    margin-bottom: 0;
  }
  .program_number .number__container03 {
    display: block;
    padding: 45px 5% 0;
  }
  .program_number .number__container03::before {
    width: 182px;
    height: 115px;
    right: 5%;
  }
  .program_number .number__container03 .container__inner {
    width: 100%;
  }
  .program_number .number__container03 .container__inner03:nth-of-type(2) {
    width: 100%;
  }
  .program_number .number__container03 .container__inner03:nth-of-type(2) img {
    margin-top: 0;
  }
  .program_number .number__container03 .number__ttl {
    margin-bottom: 20px;
  }
  .program_number .number__container03 .number__lead {
    position: relative;
    padding: 0;
  }
  .program_number .number__container04 {
    display: block;
    margin-bottom: 30px;
  }
  .program_number .number__container04 .number__lead {
    font-size: 22px;
    font-weight: 700;
    line-height: 36px;
  }
  .program_number .number__container04 .number__lead:nth-of-type(2) {
    font-size: 16px;
    line-height: 28px;
  }
  .program_number .number__container04 .number__list {
    padding: 0 5%;
  }
  .program_number .number__container04 .number__item {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
  }
  .program_number .number__container05 {
    padding-top: 40px;
  }
  .program_number .number__container05::before {
    width: 182px;
    height: 115px;
    right: 5%;
  }
  .program_number .number__container05 .txt__container {
    width: 100%;
  }
  .program_number .number__container05 .txt__container .number__ttl {
    margin-bottom: 20px;
  }
  .program_number .number__container05 .txt__container .number__lead {
    padding: 0;
    margin-bottom: 0;
  }
  .program_number .number__ttl {
    font-size: 24px;
    line-height: 38px;
  }
  .program_number .number__lead {
    font-size: 16px;
    line-height: 28px;
    padding: 0 5%;
  }
  .program_number .number__txt {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 25px;
  }
  .program_number .number__txt--first {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .program_number .categories__list {
    margin-top: 20px;
    margin-bottom: 35px;
  }
  .program_number__img {
    margin-bottom: 20px;
  }
  .program_number__img01 {
    width: 220px;
    margin-top: 0;
  }
  .program_number__img02 {
    position: relative;
    top: 0;
  }
  .program_number__img03 {
    width: 100%;
  }
  .program_number__img05 {
    width: 100% !important;
    padding: 0 4%;
    margin-top: 35px;
  }
  .program_number__img06 {
    position: relative;
    margin-bottom: 0;
  }
  .program_number .txtbox {
    width: 252px;
    padding: 12px 12px 16px;
    top: 85px;
    left: auto;
    right: 0;
  }
  .program_number .txtbox__ttl {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
  .program_number .txtbox__item {
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    margin-left: 2em;
  }
  .program_number__container {
    width: 100%;
    overflow-x: scroll;
    padding-left: 4%;
    margin-bottom: 30px;
  }
  .program_number .txt__container {
    width: 100%;
    padding: 0 5%;
  }
}

.ejinzailist {
  overflow-x: hidden;
}
.ejinzailist__upper {
  position: relative;
  padding-top: 80px;
}
.ejinzailist__upper::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 192px 1110px 0px 1110px;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
}
.ejinzailist__ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  margin-bottom: 55px;
}
.ejinzailist .upper__list {
  display: flex;
  justify-content: center;
  gap: 70px;
  position: relative;
  z-index: 10;
}
.ejinzailist .upper__item {
  width: 270px;
}
.ejinzailist .upper__item .item__upper {
  color: #0A8DDE;
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  margin-bottom: 10px;
}
.ejinzailist .upper__item .item__txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}
.ejinzailist__bg {
  background: #D7E9FF;
  padding-top: 190px;
}
.ejinzailist__inner {
  width: 1180px;
  margin: 0 auto;
}
.ejinzailist__lead {
  font-size: 28px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  margin-bottom: 45px;
}
.ejinzailist__list {
  margin-bottom: 80px;
}
.ejinzailist__list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
  row-gap: 40px;
}
.ejinzailist__list ul li a {
  display: block;
  width: 270px;
  background: #fff;
  border-radius: 20px;
  padding: 50px 20px 30px;
  text-align: center;
  box-shadow: 0px 0px 15px 3px rgba(0, 102, 255, 0.2);
}
.ejinzailist__list ul li a:hover {
  opacity: 1;
}
.ejinzailist__list ul li.business a {
  background-image: linear-gradient(135deg, #007bc7 10%, #fff 0);
}
.ejinzailist__list ul li.business a:hover {
  box-shadow: inset 0 0 0 2px #007bc7;
}
.ejinzailist__list ul li.maker a {
  background-image: linear-gradient(135deg, #6a6558 10%, #fff 0);
}
.ejinzailist__list ul li.maker a:hover {
  box-shadow: inset 0 0 0 2px #6a6558;
}
.ejinzailist__list ul li.account a {
  background-image: linear-gradient(135deg, #caa600 10%, #fff 0);
}
.ejinzailist__list ul li.account a:hover {
  box-shadow: inset 0 0 0 2px #caa600;
}
.ejinzailist__list ul li.finance a {
  background-image: linear-gradient(135deg, #01348b 10%, #fff 0);
}
.ejinzailist__list ul li.finance a:hover {
  box-shadow: inset 0 0 0 2px #01348b;
}
.ejinzailist__list ul li.government a {
  background-image: linear-gradient(135deg, #41398d 10%, #fff 0);
}
.ejinzailist__list ul li.government a:hover {
  box-shadow: inset 0 0 0 2px #41398d;
}
.ejinzailist__list ul li.university a {
  background-image: linear-gradient(135deg, #027c36 10%, #fff 0);
}
.ejinzailist__list ul li.university a:hover {
  box-shadow: inset 0 0 0 2px #027c36;
}
.ejinzailist__list ul li.medical-welfare a {
  background-image: linear-gradient(135deg, #00adb2 10%, #fff 0);
}
.ejinzailist__list ul li.medical-welfare a:hover {
  box-shadow: inset 0 0 0 2px #00adb2;
}
.ejinzailist__list ul li.insurance a {
  background-image: linear-gradient(135deg, #6eb92b 10%, #fff 0);
}
.ejinzailist__list ul li.insurance a:hover {
  box-shadow: inset 0 0 0 2px #6eb92b;
}
.ejinzailist__logo {
  margin-bottom: 20px;
}
.ejinzailist__name {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
.ejinzailist__name span {
  color: #666;
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 0 0;
}
.ejinzailist__list--txt {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}
.ejinzailist .mod-btn {
  align-items: center;
  background: #fff;
  border: 2px solid #4c8cc0;
  border-radius: 8px;
  box-shadow: 0 3px 0 #4c8cc0;
  color: #000;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  height: 65px;
  justify-content: center;
  line-height: 1.2;
  margin: 0 auto;
  padding: 0 35px 0 15px;
  position: relative;
  text-align: left;
  width: 210px;
}
.ejinzailist .mod-btn::before {
  background: #4c8cc0;
  border-radius: 50%;
  content: "";
  height: 20px;
  position: absolute;
  right: 10px;
  width: 20px;
  z-index: 1;
}
.ejinzailist .mod-btn::after {
  align-items: center;
  bottom: 0;
  color: #fff;
  content: "\f105";
  display: flex;
  font-family: Font Awesome\ 5 Free;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  right: 15px;
  top: 0;
  z-index: 10;
}
.ejinzailist a:hover .mod-btn {
  top: 3px;
  box-shadow: none;
  background: #4c8cc0;
  color: #fff;
}
.ejinzailist a:hover .mod-btn::before {
  background: #fff;
}
.ejinzailist a:hover .mod-btn::after {
  color: #4c8cc0;
}
.ejinzailist .reason-movie-box-description {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 50px 120px 55px;
  box-shadow: 0px 0px 15px 3px rgba(0, 102, 255, 0.2);
}
.ejinzailist .reason-movie-box-description p {
  font-size: 22px;
  font-weight: 500;
  line-height: 34px;
  text-align: center;
}
.ejinzailist .reason-movie-box-description p.upper {
  margin-bottom: 35px;
}
.ejinzailist .reason-movie-box-description p.small {
  font-size: 18px;
  line-height: 30px;
}
.ejinzailist .reason-movie-box-description iframe {
  display: block;
  margin: 0 auto 30px;
}
.ejinzailist .case-lead {
  font-size: 28px;
  font-weight: 700;
  line-height: 44px;
}
.ejinzailist .case-inner ul li img {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .ejinzailist__upper {
    padding-top: 40px;
  }
  .ejinzailist__upper::after {
    border-width: 88px 258px 0px 258px;
    bottom: -80px;
  }
  .ejinzailist__ttl {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 25px;
  }
  .ejinzailist .upper__list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 5%;
  }
  .ejinzailist .upper__item {
    width: 100%;
  }
  .ejinzailist .upper__item .item__upper {
    font-size: 20px;
    line-height: 34px;
  }
  .ejinzailist .upper__item .item__txt {
    font-size: 15px;
    line-height: 26px;
    text-align: left;
  }
  .ejinzailist__bg {
    padding-top: 90px;
  }
  .ejinzailist__inner {
    width: 100%;
  }
  .ejinzailist__lead {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .ejinzailist__list ul {
    justify-content: space-between;
    gap: 0;
    row-gap: 20px;
    padding: 0 4%;
  }
  .ejinzailist__list ul li {
    width: 48%;
  }
  .ejinzailist__list ul li a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 15px 20px;
    width: 100%;
  }
  .ejinzailist__list--txt {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .ejinzailist__name {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .ejinzailist__logo {
    margin-bottom: 10px;
  }
  .ejinzailist__logo img {
    max-width: 160px;
  }
  .ejinzailist .mod-btn {
    width: auto;
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
  }
  .ejinzailist .reason-movie-box-description {
    border-radius: 0;
    padding: 30px 5% 25px;
  }
  .ejinzailist .reason-movie-box-description p.upper {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .ejinzailist .reason-movie-box-description p.small {
    font-size: 14px;
    line-height: 24px;
  }
  .ejinzailist .reason-movie-box-description iframe {
    width: 100%;
    height: 210px;
    margin-bottom: 20px;
  }
  .ejinzailist .case-lead {
    font-size: 24px;
    line-height: 38px;
  }
}

.lms {
  padding: 70px 0 0;
}
.lms .inner {
  position: relative;
}
.lms__ttl {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 50px;
  word-wrap: break-word;
  margin-bottom: 35px;
}
.lms .deco {
  color: #0A8DDE;
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  margin-bottom: 35px;
}
.lms__txt {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 36px;
  word-wrap: break-word;
  margin-bottom: 72px;
}
.lms__container {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.lms__container .container__item {
  width: 510px;
  background: #EEF4FF;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 18px 30px 51px;
}
.lms__container .container__item:nth-of-type(2) {
  max-height: 242px;
  background: #E8FCFF;
}
.lms__container .container__item:nth-of-type(2) .item__txt {
  background: #124F58;
}
.lms__container .container__item:nth-of-type(2) .container__list .list__item::after {
  background: #124F58;
}
.lms__container .container__item .item__txt {
  width: fit-content;
  background: #00236A;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 22px;
  word-wrap: break-word;
  padding: 3px 18px 6px;
  margin-bottom: 19px;
}
.lms__container .container__item .item__ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  word-wrap: break-word;
}
.lms__container .container__list {
  margin-bottom: 20px;
}
.lms__container .container__list:last-of-type {
  margin-bottom: 0;
}
.lms__container .container__list .list__item {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  padding-left: 1.5em;
}
.lms__container .container__list .list__item::after {
  position: absolute;
  content: "";
  background: #00236A;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 5px;
  left: 0;
}
.lms__img {
  position: relative;
  top: -90px;
  left: 55%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .lms {
    padding: 50px 0 15px;
  }
  .lms__ttl {
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 20px;
  }
  .lms .deco {
    font-size: 24px;
    line-height: 1.2;
  }
  .lms__txt {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
  }
  .lms__container {
    flex-direction: column;
    gap: 10px;
  }
  .lms__container .container__item {
    width: 100%;
    padding: 20px 15px;
  }
  .lms__container .container__item:nth-of-type(2) {
    max-height: 100%;
  }
  .lms__container .container__item .item__txt {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .lms__container .container__list {
    margin-bottom: 17px;
  }
  .lms__container .container__list .list__item {
    font-size: 14px;
    line-height: 22px;
  }
  .lms__img {
    width: 100%;
    top: 0;
    left: 50%;
    margin-top: 20px;
  }
}

.price__bg {
  background: #F1F1F1;
  padding: 75px 0;
}
.price__bubble {
  position: relative;
  width: 350px;
  background: #fff;
  border-radius: 40px;
  padding: 20px 47px 8px;
  margin: 0 auto 25px;
  filter: drop-shadow(0px 4px 4px rgba(0, 117, 238, 0.25));
}
.price__bubble::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 20px 15px 0px 15px;
  bottom: -18px;
  left: 50%;
  translate: -50% 0;
}
.price .bubble__txt {
  color: #015CEA;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.price .lms-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  width: fit-content;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin-left: auto;
  transition: .3s;
}
.price .lms-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  bottom: 2px;
  left: 0;
}
.price .lms-link:hover::after {
  display: none;
}
.price .lms-link img {
  width: 16px;
  height: 16px;
}
.price__ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  margin-bottom: 35px;
}
.price__txt {
  position: relative;
  width: fit-content;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 20px;
}
.price__txt .middle {
  color: var(--FF5E26, #FF5E26);
  font-size: 48px;
  font-weight: 700;
}
.price__txt .large {
  position: relative;
  color: var(--FF5E26, #FF5E26);
  font-size: 60px;
  font-weight: 700;
}
.price__txt .large::after {
  position: absolute;
  content: "";
  width: 33px;
  height: 35px;
  background: url(../img/price/price_icon02.svg) no-repeat center/contain;
  top: 5px;
  right: -20px;
}
.price__txt .small {
  font-size: 16px;
  font-weight: 700;
}
.price__txt .deco {
  color: #FF327A;
  font-size: 30px;
  font-weight: 700;
}
.price__txt .sub-icon {
  position: absolute;
  font-size: 10px;
  font-weight: 400;
  line-height: 26px;
  top: 15px;
  right: 0;
}
.price__txt .sub {
  display: flex;
  justify-content: end;
  font-size: 13px;
  font-weight: 400;
  margin-top: 20px;
}
.price__txt02 {
  color: #FF327A;
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  margin-bottom: 40px;
}
.price .price__chart {
  margin-bottom: 65px;
}
.price .chart__list {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
}
.price .category__list {
  width: 200px;
  background: #C1D9FF;
  margin-bottom: 4px;
}
.price .chart__item.deco {
  filter: drop-shadow(4px 5px 5px rgba(0, 0, 0, 0.25));
}
.price .category__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  border-bottom: 2px dashed #E7E6E6;
  color: #183F7F;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}
.price .category__item .small {
  font-size: 14px;
}
.price .category__item:last-of-type {
  border: none;
}
.price .service__deco {
  height: 70px;
  padding: 10px;
  background: var(--blue_grad, linear-gradient(180deg, #0089F1 0.01%, #005BEA 50%, #087FEF 100%));
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 50px;
  border-radius: 10px 10px 0px 0px;
}
.price .contents-list__deco {
  width: 350px;
  border: 4px solid #015CEA;
  border-top: none;
  border-top: none;
  overflow: hidden;
}
.price .contents-list__deco .contents__item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  height: 100px;
  padding: 35px 47px;
  background: #FEFFEF;
  border-bottom: 2px dashed #E7E6E6;
}
.price .contents-list__deco .contents__item:first-of-type {
  color: #015CEA;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}
.price .contents-list__deco .contents__item:first-of-type .large {
  font-size: 36px;
}
.price .contents-list__deco .contents__item:nth-of-type(2), .price .contents-list__deco .contents__item:nth-of-type(3) {
  color: var(--FF327A, #FF327A);
  font-size: 36px;
  font-weight: 700;
}
.price .contents-list__deco .contents__item:last-of-type {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #015CEA;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  border-bottom: none;
  text-align: center;
}
.price .contents-list__deco .contents__item:last-of-type .relative {
  position: relative;
  width: fit-content;
}
.price .contents-list__deco .contents__item:last-of-type .relative::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 33px;
  background: url(../img/price/price_icon03.png) no-repeat center/contain;
  top: -15px;
  right: -20px;
}
.price .contents-list__deco .contents__item:last-of-type .relative .deco {
  color: var(--FF5E26, #FF5E26);
  font-size: 36px;
  font-weight: 700;
  line-height: 30px;
}
.price .contents-list__deco .contents__item:last-of-type .small {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.price .service {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  padding: 10px;
  border-radius: 5px 5px 0px 0px;
  background: #6E7282;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 50px;
}
.price .contents__list {
  background: #fff;
  margin-bottom: 4px;
}
.price .contents__list .contents__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  border-bottom: 2px dashed #E7E6E6;
  color: #6E7282;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}
.price .contents__list .contents__item .large {
  font-size: 24px;
}
.price .contents__list .contents__item .middle {
  font-size: 20px;
}
.price .contents__list .contents__item:last-of-type {
  border-bottom: none;
}
.price .lower__txt {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 18px;
}
.price .price__cta {
  display: block;
  max-width: 347px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0px 4px 0px rgba(0, 0, 0, 0.25));
}
.price img {
  display: block;
  width: 100%;
}
.price__sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .price {
    overflow-x: hidden;
  }
  .price__bg {
    padding: 50px 0;
  }
  .price .price__bubble {
    margin-bottom: 40px;
  }
  .price .price__txt {
    font-size: 20px;
    line-height: 1.5;
  }
  .price .price__txt .middle {
    font-size: 26px;
  }
  .price .price__txt .large {
    font-size: 32px;
  }
  .price .price__txt .large::after {
    width: 23px;
    height: 24px;
    top: -3px;
    right: -13px;
  }
  .price .price__txt .deco {
    position: relative;
    font-size: 20px;
  }
  .price .price__txt .deco::after {
    position: absolute;
    content: "※";
    width: 10px;
    height: 10px;
    font-size: 10px;
    color: #000;
    top: -5px;
    right: 0;
  }
  .price .price__txt .sub-icon {
    display: none;
  }
  .price .price__txt .sub {
    display: inline;
    font-size: 12px;
    text-align: center;
    margin-top: 0;
  }
  .price__ttl {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 35px;
  }
  .price__txt {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 30px;
  }
  .price__txt02 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .price__sub {
    padding-right: 5%;
  }
  .price .price__chart {
    margin-left: 20px;
    margin-bottom: 28px;
  }
  .price .chart__list {
    justify-content: flex-start;
    gap: 2px;
  }
  .price .chart__item.deco {
    filter: none;
  }
  .price .category__list {
    width: 100px;
    margin-bottom: 2px;
  }
  .price .category__item {
    height: 80px;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
  }
  .price .category__item:last-of-type {
    line-height: 1.3;
  }
  .price .category__item .small {
    font-size: 10px;
  }
  .price .service__deco {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 18px;
    padding: 0;
  }
  .price .contents-list__deco {
    width: 200px;
    border-width: 2px;
  }
  .price .contents-list__deco .contents__item {
    height: 80px;
    padding: 25px 47px;
  }
  .price .contents-list__deco .contents__item:first-of-type {
    font-size: 14px;
  }
  .price .contents-list__deco .contents__item:first-of-type .large {
    font-size: 20px;
  }
  .price .contents-list__deco .contents__item:nth-of-type(2), .price .contents-list__deco .contents__item:nth-of-type(3) {
    font-size: 20px;
  }
  .price .contents-list__deco .contents__item:last-of-type {
    font-size: 14px;
  }
  .price .contents-list__deco .contents__item:last-of-type .relative::after {
    width: 20px;
    height: 20px;
    top: -12px;
    right: -13px;
  }
  .price .contents-list__deco .contents__item:last-of-type .relative .deco {
    font-size: 24px;
  }
  .price .service {
    width: 150px;
    height: 40px;
    font-size: 14px;
  }
  .price .contents__list {
    margin-bottom: 2px;
  }
  .price .contents__list .contents__item {
    height: 80px;
    font-size: 12px;
    line-height: 1.4;
  }
  .price .contents__list .contents__item .large,
  .price .contents__list .contents__item .middle {
    font-size: 16px;
  }
  .price .lower__txt {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .price .price__cta {
    max-width: 301px;
  }
}

.trial__bg {
  background: #D7E9FF;
  padding: 80px 0;
}
.trial__ttl {
  display: block;
  width: fit-content;
  background: #0A8DDE;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  padding: 7px 15px 11px;
  margin: 0 auto 35px;
}
.trial__txt {
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  margin-bottom: 20px;
}
.trial__note {
  color: #FF327A;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  margin-bottom: 35px;
}
.trial img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .trial__bg {
    padding: 50px 0;
  }
  .trial .inner {
    padding: 0 5%;
  }
  .trial__ttl {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .trial__txt {
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    margin-bottom: 40px;
  }
  .trial__note {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
  }
}

.qa.box {
  padding: 75px 0;
}
@media screen and (max-width: 768px) {
  .qa {
    padding: 8% 5% 5%;
  }
}
.qa-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .qa-title {
    font-size: 17px;
    line-height: 1;
    margin-bottom: 30px;
  }
}
.qa-list {
  width: 1040px;
  margin: auto;
  padding: 0 30px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .qa-list {
    width: auto;
    padding: 0 5%;
  }
}
.qa-item {
  padding: 7px;
}
.qa-item:not(:last-child) {
  border-bottom: 1px solid #000;
}
.qa-item-term, .qa-item-description {
  position: relative;
  padding: 10px 0 10px 52px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .qa-item-term, .qa-item-description {
    padding: 2% 0 2% 8%;
    line-height: 1.5;
  }
}
.qa-item-term:before, .qa-item-description:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 33px;
  height: 33px;
  background-position: left top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .qa-item-term:before, .qa-item-description:before {
    width: 17px;
    height: 17px;
  }
}
.qa-item-term {
  font-weight: 700;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .qa-item-term {
    font-size: 12px;
  }
}
.qa-item-term:before {
  background-image: url("../img/qa_item_term_bg.webp");
}
@media screen and (max-width: 768px) {
  .qa-item-term:before {
    background-size: contain;
  }
}
.qa-item-description {
  color: #44474A;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .qa-item-description {
    font-size: 12px;
  }
}
.qa-item-description:before {
  background-image: url("../img/qa_item_description_bg.webp");
}
@media screen and (max-width: 768px) {
  .qa-item-description:before {
    background-size: contain;
  }
}

.message__bg {
  background: #D7E9FF;
  padding: 80px 0 60px;
}
.message .inner {
  display: flex;
  gap: 40px;
}
.message__container {
  max-width: 760px;
}
.message__ttl {
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 30px;
}
.message__ttl img {
  max-width: 157px;
}
.message__txt {
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 45px;
}
.message__img02 {
  display: block;
  max-width: 240px;
  margin-left: auto;
}
.message__img03 {
  display: block;
  max-width: 347px;
}
@media screen and (max-width: 768px) {
  .message__bg {
    padding: 50px 0 0;
  }
  .message .inner {
    flex-direction: column;
    gap: 0;
    padding: 0 5%;
  }
  .message__ttl {
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 10px;
  }
  .message__ttl img {
    width: 111px;
  }
  .message__txt {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0;
  }
  .message__img03 {
    max-width: 100%;
  }
}

.footer__txt {
  background: #37BBF3;
  color: white;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  padding: 45px 0;
}
.footer__lower {
  padding: 30px 0 35px;
}
.footer__link {
  display: flex;
  justify-content: space-evenly;
  width: 466px;
  margin: 0 auto;
}
.footer__link a {
  color: black;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
}
.footer-copyright {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    font-size: 11px;
    font-size: 2.93333vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__txt {
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    padding: 15px 5%;
  }
  .footer__lower {
    padding: 10px 0 15px;
  }
  .footer__link {
    width: 100%;
  }
  .footer__link a {
    font-size: 14px;
    line-height: 30px;
  }
}

/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name: landing.scss

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

1.	共通使用変数定義
2.	ブラウザデフォルトスタイルリセット
3.	HTMLタグ
4.	container
5.	共通部分
6.	header
7.	content
8.	main
9.	sub
10.	footer
11.	ページ別個別設定

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
1.	共通使用変数定義
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
2.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1, h2, h3, h4, h5, h6,
div,
p,
ul, ol, dl,
form, fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-style: normal;
}

body {
  font-size: 10px;
  font-family: "notosansjp", sans-serif;
}

* html body {
  font-size: 62.5%;
}

* + html body {
  font-size: 62.5%;
}

/* start \*/
html:\66irst-child body {
  font-size: 62.5%;
}

/* end */
body:first-of-type {
  font-size: 62.5%;
}

body > iframe {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: none;
}

legend {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  font-size: inherit;
  font: 100%;
}

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

a,
abbr,
acronym,
em,
strong,
span,
img,
sub,
sup,
input,
button,
textarea,
select,
label,
caption {
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

caption, th {
  font-weight: normal;
  text-align: left;
}

th, td {
  padding: 0px;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  vertical-align: top;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

header, footer, article, section, aside,
nav,
figure, figcaption {
  display: block;
  margin: 0;
  padding: 0;
}

/*----------------------------------------------------------------------
3.	HTMLタグ
----------------------------------------------------------------------*/
html,
body {
  height: 100%;
}

html {
  font-size: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #000;
}
body * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body ::selection {
  color: #F7F7F7;
  background: #c3e8ff;
  /* Safari */
}
body ::-moz-selection {
  color: #F7F7F7;
  background: #c3e8ff;
  /* Firefox */
}

a, a:before, a:after {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a > * {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
a:hover > * {
  text-decoration: none;
}

span {
  font-weight: inherit;
}

/*----------------------------------------------------------------------
4.	container
----------------------------------------------------------------------*/
#container {
  position: relative;
  min-height: 100%;
}
* html #container {
  height: 100%;
}
body > #container {
  height: auto;
}

/*----------------------------------------------------------------------
5.	共通部分
----------------------------------------------------------------------*/
.fll {
  float: left;
}

.flr {
  float: right;
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

.link-contact {
  width: 590px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .link-contact {
    width: 90%;
  }
}
.link-contact a {
  -moz-box-shadow: 0 5px 0 rgba(20, 47, 102, 0.75);
  -webkit-box-shadow: 0 5px 0 rgba(20, 47, 102, 0.75);
  box-shadow: 0 5px 0 rgba(20, 47, 102, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  width: 100%;
  height: 70px;
  background: #F42867;
  padding-left: 30px;
  color: #FFF;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .link-contact a {
    height: auto;
    padding: 5% 0 5% 4%;
    font-size: 18px;
    font-size: 4.8vw;
  }
}
.link-contact a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 5px;
}
.link-contact.-follower {
  width: 310px;
  margin: 0;
}
.link-contact.-follower a {
  height: 58px;
  padding-left: 20px;
  font-size: 18px;
}
.link-contact.-follower a:before {
  left: 18px;
  font-size: 18px;
}

.right-nav {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.right-nav a {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  display: block;
}
.right-nav a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .right-nav img {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 768px) {
  .right-nav {
    display: none !important;
  }
}

/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  #header {
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
    background: #FFF;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1280px;
  height: 105px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .header-inner {
    width: 94%;
    padding: 2% 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .header-inner {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 105px;
  }
}
.header-right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .header-right {
    display: block;
    width: 55%;
  }
}
.header-hour {
  margin-right: 20px;
  text-align: center;
}
@media screen and (max-width: 840px) {
  .header-hour {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin: 0 0 3%;
  }
}
.header-hour-term {
  width: 154px;
  margin-bottom: 6px;
  padding: 2px 0;
  background: #104C82;
  color: #FFF;
  font-size: 16px;
  letter-spacing: 5px;
}
@media screen and (max-width: 840px) {
  .header-hour-term {
    width: 30%;
    margin: 0 3% 0 0;
    padding: 1.2% 0;
    font-size: 11px;
    font-size: 2.93333vw;
    letter-spacing: 0;
  }
}
.header-hour-description {
  font-size: 18px;
}
@media screen and (max-width: 840px) {
  .header-hour-description {
    font-size: 11px;
    font-size: 2.93333vw;
  }
}
@media screen and (max-width: 768px) {
  .header-tel {
    text-align: right;
  }
}
.header-tel a {
  padding-left: 42px;
  color: #000;
  background: url("../img/header_tel_bg.png") left center no-repeat;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 42px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .header-tel a {
    padding-left: 9%;
    -moz-background-size: 10%;
    -webkit-background-size: 10%;
    background-size: 10%;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.header-tel a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
.box {
  padding: 70px 0 90px;
}
@media screen and (max-width: 768px) {
  .box {
    padding: 7% 0 !important;
  }
}

/*----------------------------------------------------------------------
11.	ページ別個別設定
----------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .inner {
    width: 1100px;
    margin: 0 auto;
  }
}
.case-inner {
  width: 1160px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 1160px) {
  .case-inner {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .case-inner {
    padding: 50px 0 40px;
  }
}
.case-inner ul {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .case-inner ul {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .case-inner ul li {
    margin: 0 5px;
  }
}
.case-inner ul li img {
  border: 1px solid #B9B9B9;
}
.case-lead {
  margin: 0 auto 30px;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .case-lead {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}

.feature {
  background: #C3E8FF;
}
.feature-inner {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .feature-inner {
    width: 90%;
  }
}
.feature-title {
  margin-bottom: 55px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature-title {
    margin-bottom: 10%;
  }
}
.feature-list {
  display: flex;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .feature-list {
    display: block;
    margin-bottom: 7%;
  }
}
.feature-item {
  display: flex;
  flex-wrap: wrap;
  width: 360px;
}
@media screen and (max-width: 1280px) {
  .feature-item {
    width: 33.33333%;
  }
}
@media screen and (max-width: 768px) {
  .feature-item {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 7%;
    padding-top: 30%;
  }
}
@media screen and (max-width: 768px) {
  .feature-item:last-child {
    margin-bottom: 0;
  }
}
.feature-item.-reverse {
  flex-direction: column-reverse;
}
.feature-item-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 234px;
  padding: 50px 36px;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1280px) {
  .feature-item-box {
    height: 50%;
    padding: 8% 5%;
  }
}
@media screen and (max-width: 768px) {
  .feature-item-box {
    padding: 8% 7% 6%;
  }
}
.feature-item-term {
  color: #002f7e;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  .feature-item-term {
    font-size: 20px;
  }
}
@media screen and (max-width: 840px) {
  .feature-item-term {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .feature-item-term {
    margin-bottom: 1%;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.feature-item-description {
  padding: 0 9px;
}
@media screen and (max-width: 768px) {
  .feature-item-description {
    padding: 0;
  }
}
.feature-item-description-inline {
  padding-bottom: 4px;
  background: url("../img/feature_item_description_bg.png") left bottom repeat-x;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 1080px) {
  .feature-item-description-inline {
    font-size: 13px;
  }
}
@media screen and (max-width: 840px) {
  .feature-item-description-inline {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .feature-item-description-inline {
    -moz-background-size: 1%;
    -webkit-background-size: 1%;
    background-size: 1%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
@media screen and (max-width: 1280px) {
  .feature-item-pic {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50%;
  }
}
@media screen and (max-width: 768px) {
  .feature-item-pic {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 85%;
    margin: auto;
  }
}
@media screen and (max-width: 1280px) {
  .feature-item-pic img {
    width: 100%;
  }
}

.system {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .system {
    margin-bottom: 12%;
  }
}
.system-title {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .system-title {
    margin-bottom: 10%;
  }
}
@media screen and (max-width: 1160px) {
  .system-title img {
    max-width: 94%;
  }
}
.system-inner {
  width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 1160px) {
  .system-inner {
    width: 94%;
  }
}
.system-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .system-features {
    display: block;
    margin-bottom: 10%;
  }
}
.system-features-list {
  width: 560px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .system-features-list {
    width: 100%;
    margin: 0 0 5%;
  }
}
.system-features-item {
  margin-bottom: 60px;
  padding-left: 90px;
  background-position: left top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .system-features-item {
    margin-bottom: 6%;
    padding-left: 13%;
    background-size: 10%;
  }
}
.system-features-item:nth-child(1) {
  background-image: url("../img/system_features_item1_bg.png");
}
.system-features-item:nth-child(2) {
  background-image: url("../img/system_features_item2_bg.png");
}
.system-features-item:nth-child(3) {
  background-image: url("../img/system_features_item3_bg.png");
}
.system-features-item:last-child {
  margin-bottom: 0;
}
.system-features-item-title {
  margin-bottom: 15px;
  color: #002F7E;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .system-features-item-title {
    margin-bottom: 3%;
    font-size: 20px;
    font-size: 5.33333vw;
  }
}
.system-features-subitem {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .system-features-subitem {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.system-features-subitem:before {
  content: "●";
  color: #002F7E;
}
.system-features-subitem em {
  color: #F39;
  font-weight: bold;
}
.system-features-pic {
  width: 597px;
}
@media screen and (max-width: 768px) {
  .system-features-pic {
    width: 90%;
    margin: 0 auto;
  }
}
.system-features-pic img {
  width: 100%;
  height: auto;
}
.system-price {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .system-price {
    margin-bottom: 10%;
  }
}
.system-price-title {
  margin-bottom: 8px;
  color: #002F7E;
  font-size: 46px;
  font-weight: bold;
  line-height: 1.34783;
  text-align: center;
}
@media screen and (max-width: 1160px) {
  .system-price-title {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  .system-price-title {
    margin-bottom: 3%;
    font-size: 20px;
    font-size: 5.33333vw;
    text-align: left;
  }
}
.system-price-title em {
  color: #39F;
  font-weight: bold;
}
.system-price-title small {
  font-size: 40px;
}
@media screen and (max-width: 1160px) {
  .system-price-title small {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .system-price-title small {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.system-price-title .asterisk {
  position: relative;
  top: -20px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .system-price-title .asterisk {
    top: -5px;
    font-size: 11px;
    font-size: 2.93333vw;
  }
}
.system-price-lead {
  margin-bottom: 15px;
  color: #000;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1160px) {
  .system-price-lead {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .system-price-lead {
    margin-bottom: 10%;
    font-size: 13px;
    font-size: 3.46667vw;
    text-align: left;
  }
}
.system-price-lead em {
  color: #39F;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1160px) {
  .system-price-lead em {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .system-price-lead em {
    font-size: 15px;
    font-size: 4vw;
  }
}
.system-price-lead .asterisk {
  position: relative;
  top: -10px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .system-price-lead .asterisk {
    top: -5px;
    font-size: 11px;
    font-size: 2.93333vw;
  }
}
.system-price-notice {
  display: block;
  margin: 30px 45px 0 0;
  color: #898989;
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 1160px) {
  .system-price-notice {
    margin: 20px 4% 0 0;
  }
}
@media screen and (max-width: 768px) {
  .system-price-notice {
    margin: 3% 3% 0 0;
    font-size: 13px;
    font-size: 3.46667vw;
    text-align: left;
  }
}
.system-price-box {
  height: 460px;
  padding: 30px 0 0 42px;
  background: url(../img/price_subbox_plan1_bg.jpg) left center no-repeat;
}
@media screen and (max-width: 1160px) {
  .system-price-box {
    height: auto;
    padding: 4%;
  }
}
@media screen and (max-width: 768px) {
  .system-price-box {
    padding: 40% 3% 5%;
    background: url(../img/price_subbox_plan1_bg_sp.jpg) left top no-repeat #FDF2F7;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.system-price-box-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  color: #000;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 1160px) {
  .system-price-box-title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .system-price-box-title {
    display: block;
    margin-bottom: 5%;
    font-size: 20px;
    font-size: 5.33333vw;
    text-align: center;
  }
}
.system-price-box-title .pic {
  margin-right: 41px;
}
@media screen and (max-width: 1160px) {
  .system-price-box-title .pic {
    margin-right: 0;
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .system-price-box-title .pic {
    display: none;
  }
}
@media screen and (max-width: 1160px) {
  .system-price-box-title .pic img {
    width: 70%;
    height: auto;
  }
}
.system-price-box-pic img {
  max-width: 100%;
}
.system-price-box-notice {
  margin: 10px 40px 0 0;
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 1160px) {
  .system-price-box-notice {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .system-price-box-notice {
    margin: 3% 0 0;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.42857;
    text-align: left;
  }
}

.contact {
  padding: 80px 0;
  background: #F1EBE3;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 8% 5%;
  }
}
.contact-title {
  margin-bottom: 65px;
  font-size: 38px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-title {
    margin-bottom: 4%;
    font-size: 18px;
    font-size: 4.8vw;
    line-height: 1.64706;
  }
}
.contact-inner {
  width: 1000px;
  margin: auto;
  padding: 50px 50px 60px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .contact-inner {
    width: auto;
    padding: 5% 5% 8%;
  }
}
.contact-inner .applicationform-link {
  display: block;
  width: fit-content;
  font-size: 16px;
  text-decoration: underline;
  margin: 0 auto 2em;
  transition: .3s;
}
.contact-inner .applicationform-link:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .contact-inner .applicationform-link {
    font-size: 12px;
  }
}
.contact-inner-lead {
  margin-bottom: 28px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .contact-inner-lead {
    margin-bottom: 4%;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.contact-table {
  width: 724px;
  margin: 0 auto 35px;
  border-collapse: separate;
  border-spacing: 12px;
}
@media screen and (max-width: 768px) {
  .contact-table {
    width: 100%;
    margin-bottom: 10%;
    border-spacing: 0;
  }
}
.contact-table th,
.contact-table td {
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .contact-table th,
  .contact-table td {
    display: list-item;
    list-style: none;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.contact-table th {
  width: 160px;
  padding-right: 10px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .contact-table th {
    width: auto;
    margin-bottom: 2%;
    padding: 0;
    text-align: left;
  }
}
.contact-table td {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 6px 12px;
  border: 2px solid #e4dfd5;
}
@media screen and (max-width: 768px) {
  .contact-table td {
    margin-bottom: 4%;
    padding: 2% 3%;
    border-width: 1px;
  }
}
.contact-table .required {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 2px 5px;
  background: #FF2E90;
  color: #FFF;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .contact-table .required {
    font-size: 10px;
    font-size: 2.66667vw;
  }
}
.contact-table input,
.contact-table textarea {
  border: none;
}
@media screen and (max-width: 768px) {
  .contact-table input,
  .contact-table textarea {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.contact-table input:focus,
.contact-table textarea:focus {
  outline: none;
}
.contact-table input.short {
  width: 360px;
}
@media screen and (max-width: 768px) {
  .contact-table input.short {
    width: 100%;
  }
}
.contact-table input.long {
  width: 100%;
}
.contact-table textarea {
  width: 100%;
  padding: 3px 0;
  line-height: 1.5;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .contact-table textarea {
    height: 100px;
    padding: 0;
  }
}
.contact-table-text {
  margin-bottom: 45px;
  font-size: 15px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-table-text {
    margin-bottom: 8%;
    font-size: 10px !important;
    line-height: 1.66667 !important;
  }
}
.contact-table-text a {
  color: #000;
  text-decoration: underline;
}
.contact-table-text a:hover {
  text-decoration: none;
}
.contact-button {
  display: flex;
  justify-content: space-between;
  width: 284px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .contact-button {
    width: 90%;
  }
}
.contact-button.-thanks {
  justify-content: center;
}
.contact-button input {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 5px 5px 0 rgba(92, 92, 92, 0.2);
  -webkit-box-shadow: 5px 5px 0 rgba(92, 92, 92, 0.2);
  box-shadow: 5px 5px 0 rgba(92, 92, 92, 0.2);
  width: 125px;
  height: 37px;
  color: #FFF;
  font-size: 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
.contact-button input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
}
.contact-button input[type="reset"] {
  background: #ababab;
}
.contact-button input[type="button"], .contact-button input[type="submit"] {
  background: #39F;
  display: block;
}
.contact .errortxt {
  display: none;
  color: #f00;
  font-weight: bold;
}

.follower {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}
.follower-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1060px;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 1060px) {
  .follower-inner {
    width: 96%;
  }
}
.follower-text {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.28571;
}
@media screen and (max-width: 1060px) {
  .follower-text br {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  .follower-left {
    width: 67%;
  }
}
.follower-left-lower {
  display: flex;
  align-items: center;
}
.follower-hour {
  margin-right: 35px;
}
.follower-hour > * {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.28571;
}
.follower-tel a {
  padding-left: 39px;
  color: #000;
  background: url("../img/header_tel_bg.png") left center no-repeat;
  -moz-background-size: 31px;
  -webkit-background-size: 31px;
  background-size: 31px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 26px;
  font-weight: bold;
}
.follower-tel a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.follower img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .follower {
    background: none;
    padding: 0 5% 20px;
  }
}

.expertise {
  padding: 90px 0 120px;
}
.expertise__title {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
.expertise__lead {
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.expertise__lead em {
  color: #F4005C;
  font-weight: bold;
}
.expertise__pic {
  text-align: center;
}

.recommend {
  padding-top: 70px;
}
.recommend__title {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.recommend__title em {
  color: #F4005C;
  font-weight: bold;
}
.recommend__inner {
  width: 1280px;
  margin: auto;
  padding: 60px 0 0 60px;
  /*background: url("../img/recommend_inner_bg.gif") right 37px top 170px no-repeat;*/
}
.recommend__box:first-child {
  margin-bottom: 74px;
}
.recommend__box__title {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.73333;
}
.recommend__box__title em {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-weight: bold;
}
.recommend__box__title em:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 13px;
  background: #fffea0;
}
.recommend__text {
  width: 650px;
  font-size: 18px;
  line-height: 1.66667;
}
.recommend__text.-wauto {
  width: auto;
}
.recommend__text em {
  color: #F39;
  font-weight: bold;
}
.recommend__pic {
  margin-top: 55px;
  text-align: center;
}

.confirm .main-box,
.error .main-box,
.thanks .main-box {
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .confirm .main-box,
  .error .main-box,
  .thanks .main-box {
    padding-top: 20%;
  }
}
.confirm .main-box-title,
.error .main-box-title,
.thanks .main-box-title {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 18px;
  color: #630;
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
.confirm .main-box-title:before,
.error .main-box-title:before,
.thanks .main-box-title:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 1px;
  margin: 0 auto;
  background: #000;
}
.confirm .main-box-text,
.error .main-box-text,
.thanks .main-box-text {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.55556;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .confirm .main-box-text,
  .error .main-box-text,
  .thanks .main-box-text {
    margin: 5%;
    font-size: 17px;
    font-size: 4.53333vw;
    font-weight: normal;
    line-height: 1.47059;
    text-align: left;
  }
}
.confirm .contact-table,
.error .contact-table,
.thanks .contact-table {
  width: 100%;
  margin-bottom: 45px;
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (max-width: 1200px) {
  .confirm .contact-table,
  .error .contact-table,
  .thanks .contact-table {
    width: 100%;
    margin-bottom: 5%;
  }
}
.confirm .contact-table th,
.confirm .contact-table td,
.error .contact-table th,
.error .contact-table td,
.thanks .contact-table th,
.thanks .contact-table td {
  line-height: 1.3;
  font-size: 1.6em;
  border: 10px solid #FFF;
  vertical-align: middle;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .confirm .contact-table th,
  .confirm .contact-table td,
  .error .contact-table th,
  .error .contact-table td,
  .thanks .contact-table th,
  .thanks .contact-table td {
    display: list-item;
    font-size: 16px;
    font-size: 4.26667vw;
    list-style: none;
    border: none;
  }
}
.confirm .contact-table th,
.error .contact-table th,
.thanks .contact-table th {
  width: 220px;
  padding: 15px 10px 15px 30px;
  background: #E4DFD5;
}
@media screen and (max-width: 768px) {
  .confirm .contact-table th,
  .error .contact-table th,
  .thanks .contact-table th {
    position: relative;
    width: 100%;
    padding: 2% 5%;
  }
}
.confirm .contact-table td,
.error .contact-table td,
.thanks .contact-table td {
  padding: 15px 20px;
  background: #F8F5EE;
}
@media screen and (max-width: 768px) {
  .confirm .contact-table td,
  .error .contact-table td,
  .thanks .contact-table td {
    padding: 3% 5%;
    background: none;
  }
}

.confirm .contact-button input[type="button"] {
  background: #c7c7c7;
}

.error .contact-button {
  justify-content: center;
}

.thanks .main-box {
  padding-top: 230px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .thanks .main-box {
    padding-top: 40%;
  }
}

.data-r {
  color: #E35580;
  font-weight: bold;
}
