/**
* @file index.scss
**/
/**
* @file _config.scss
**/
/**
* @file _reset.scss
**/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  vertical-align: bottom;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  padding: 0;
  background-color: transparent;
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/**
* @file _media.scss
**/
/**
* @file _header.scss
**/
@media screen and (max-width: 959px) {
  .header__btmbox {
    display: none;
  }
}

.header__container {
  background: #2B2B2B;
  color: #fff;
}

@media screen and (max-width: 959px) {
  .header__container {
    margin: auto;
  }
}

.header__box {
  margin: auto auto;
  padding: 10px 0;
  max-width: 1040px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 959px) {
  .header__box {
    margin: auto 15px;
    position: relative;
  }
}

.header__goyokiki {
  width: 63px;
  height: auto;
  display: block;
}

@media screen and (max-width: 959px) {
  .header__goyokiki {
    width: 36px;
    margin-right: 15px;
  }
}

.header__menu {
  font-size: 16px;
  margin: auto 12px;
}

.header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 959px) {
  .header__menu ul {
    display: block;
  }
}

@media screen and (max-width: 959px) {
  .header__menu {
    display: none;
    position: absolute;
    margin: auto;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    width: 101vw;
    height: calc(100vh - 60px);
    min-height: 400px;
    background-color: #2b2b2b;
  }
  .header__menu li {
    border: 1px solid #5C5C5C;
    border-radius: 4px;
    display: block;
    margin: 15px 15px 0;
    text-align: center;
  }
  .header__menu li a {
    padding: 15px 0;
    font-size: 16px;
    display: block;
  }
  .header__menu--active {
    display: block;
  }
}

.header__menulist {
  padding-left: 30px;
}

.header__list {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  margin: 0 0 0 20px;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}
.header__list small{
  font-size: 12px;
}
.header__list:hover {
  opacity: 0.8;
}

.header__address {
  text-align: right;
  margin: 0 0 0 auto;
  min-width: 275px;
}

@media screen and (max-width: 959px) {
  .header__address {
    text-align: left;
    margin: 0;
  }
}

.header__icon {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 959px) {
  .header__icon {
    width: 16px;
    height: auto;
    position: relative;
    top: -0.1em;
  }
}

.header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 32px;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .header__tel {
    font-size: 20px;
  }
}

.header__tel a:hover {
  opacity: 0.8;
}

.header__call {
  padding-left: 12px;
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 32px;
}

@media screen and (max-width: 959px) {
  .header__call {
    padding-left: 5px;
    font-size: 20px;
  }
}

.header__salestime {
  font-size: 12px;
}

@media screen and (max-width: 959px) {
  .header__salestime {
    font-size: 10px;
    line-height: 1;
  }
}

.header__hamburger {
  display: none;
}

@media screen and (max-width: 959px) {
  .header__hamburger {
    width: 60px;
    height: 60px;
    background-color: #000;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: -15px;
    cursor: pointer;
  }
  .header__hamburger::before {
    content: '';
    width: 30px;
    height: 22px;
    display: block;
    background-image: url("../img/icons/ico-hamburger.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 8px;
  }
  .header__hamburger::after {
    content: 'MENU';
    font-size: 10px;
    line-height: 1;
    color: #fff;
  }
  .header__hamburger--active::before {
    background-image: url("../img/icons/ico-batsu.png");
  }
  .header__hamburger--active::after {
    content: 'CLOSE';
  }
}

/**
* @file _footer.scss
**/
.footer {
  width: 100%;
}

.footer__container {
  background: #F1F1F1;
  padding: 20px 15px;
}

@media screen and (max-width: 959px) {
  .footer__container {
    padding: 15px 0;
    border-top: 1px solid #d1d1d1;
  }
}

.footer__container-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1040px;
}

@media screen and (max-width: 959px) {
  .footer__container-2 {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: 15px;
}

@media screen and (max-width: 959px) {
  .footer__box {
    display: inline-block;
    margin: 0 auto;
  }
}

.footer__box2 {
  text-align: right;
}

@media screen and (max-width: 959px) {
  .footer__box2 {
    text-align: center;
  }
}

.footer__logo {
  width: 178px;
  height: auto;
  padding-right: 30px;
}

@media screen and (max-width: 959px) {
  .footer__logo {
    padding-right: 0;
    padding-bottom: 20px;
  }
}

.footer__address {
  font-size: 14px;
}

@media screen and (max-width: 959px) {
  .footer__address {
    padding-bottom: 20px;
  }
}

.footer__listbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 959px) {
  .footer__listbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer__linkbox:hover {
  opacity: 0.8;
}

.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 959px) {
  .footer__link {
    margin: 0 auto;
  }
}

.footer__list {
  color: #333;
}

.footer__link2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 24px;
}

@media screen and (max-width: 959px) {
  .footer__link2 {
    padding-left: 30px;
  }
}

.footer__img {
  padding-right: 10px;
}

.footer__copyright {
  margin-top: 20px;
  font-size: 14px;
  text-align: left;
}

@media screen and (max-width: 959px) {
  .footer__copyright {
    text-align: center;
  }
}

.footer__linkbox {
  text-decoration: none;
}

.tophere {
  max-width: 1040px;
  height: 100%;
  margin: 0 auto;
  min-height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 959px) {
  .tophere {
    max-width: 520px;
    margin: 0 auto;
    min-height: 260px;
  }
}

.tophere__img {
  position: absolute;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  height: auto;
  text-align: right;
}

@media screen and (max-width: 959px) {
  .tophere__img {
    max-width: 520px;
  }
}

.tophere__backPC {
  display: inline-block;
  max-width: 1040px;
  width: 100%;
  min-height: 480px;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.tophere__backSP {
  display: none;
}

@media screen and (max-width: 959px) {
  .tophere__backSP {
    display: inline-block;
    max-width: 375px;
    width: 100%;
    min-height: 260px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.tophere__headbox {
  position: relative;
  padding: 40px 0 0 0;
  max-width: 1010px;
  width: 100%;
  min-height: 480px;
  height: 100%;
}

@media screen and (max-width: 959px) {
  .tophere__headbox {
    padding: 15px 15px 0;
    min-height: auto;
  }
}

.tophere__Salesforce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
}

@media screen and (max-width: 959px) {
  .tophere__Salesforce {
    padding-bottom: 15px;
  }
}

.tophere__logo {
  width: 94px;
  height: auto;
  padding-right: 20px;
}

@media screen and (max-width: 959px) {
  .tophere__logo {
    width: 47px;
    height: auto;
    padding-right: 10px;
  }
}

.tophere__text {
  color: #0F7DC2;
  font-size: 20px;
}

@media screen and (max-width: 959px) {
  .tophere__text {
    font-size: 14px;
  }
}

.tophere__title {
  font-size: 40px;
  color: #2B2B2B;
  font-weight: bold;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 959px) {
  .tophere__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 959px) {
  .tophere__title span {
    display: inline-block;
  }
}

.tophere__badge {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

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

.tophere__btn {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  margin: 40px 0 0 0;
  width: 480px;
  height: 76px;
  border-radius: 38px;
  letter-spacing: 0.08em;
  background: linear-gradient(99deg, #FF2B2B 0%, #FF7334 75%, #FF9636 100%);
  -webkit-box-shadow: 0 4px 12px #00000029;
  box-shadow: 0 4px 12px #00000029;
}

@media screen and (max-width: 959px) {
  .tophere__btn {
    width: 220px;
    height: 43px;
    font-size: 14px;
    margin: 20px 0 0 0;
  }
}

.tophere__btn:hover {
  opacity: 0.8;
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: right;
}

.about__bodybox {
  max-width: 1040px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  min-height: auto;
}

@media screen and (max-width: 959px) {
  .about__bodybox {
    max-width: 520px;
    margin: 0 auto;
  }
}

.about__pc {
  position: relative;
}

.about__pcimg {
  width: 480px;
  height: auto;
  position: absolute;
  z-index: 1;
  left: -120px;
}

@media screen and (max-width: 959px) {
  .about__pcimg {
    width: 240px;
    height: auto;
    position: absolute;
    left: -60px;
  }
}

.about__badge {
  display: none;
}

@media screen and (max-width: 959px) {
  .about__badge {
    display: inline-block;
    width: 141px;
  }
}

.about__bodytext {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 959px) {
  .about__bodytext {
    margin-bottom: 20px;
  }
}

.about__text1 {
  display: inline-block;
  background: #0F7DC2;
  font-size: 20px;
  color: #fff;
  padding: 4px 12px;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 959px) {
  .about__text1 {
    font-size: 16px;
    padding: 6px 6px;
  }
}

.about__br-sp {
  display: none;
}

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

.about__box2 {
  margin: 20px 0;
}

@media screen and (max-width: 959px) {
  .about__box2 {
    margin: 10px 0;
  }
}

.about__text2 {
  display: inline-block;
  font-weight: bold;
  padding: 4px 12px;
  background: #0F7DC2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #F2FF00;
  font-size: 50px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 959px) {
  .about__text2 {
    padding: 6px 6px;
    font-size: 24px;
  }
}

.about__text3 {
  display: inline-block;
  padding: 4px 12px;
  background: #0F7DC2;
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 959px) {
  .about__text3 {
    display: inline-block;
    padding: 6px 6px;
    font-size: 16px;
  }
}

.about__textbox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.about__text4 {
  position: relative;
  z-index: 2;
  color: #333333;
  font-size: 18px;
  line-height: 2;
  margin-top: 20px;
  text-align: left;
  max-width: 620px;
  width: 100%;
  right: 0;
}

@media screen and (max-width: 959px) {
  .about__text4 {
    background: #E7F2F9;
    font-size: 16px;
    line-height: 1.75;
    padding: 20px;
    margin-top: 0;
  }
}

.introduction {
  margin: 200px auto 60px;
}

@media screen and (max-width: 959px) {
  .introduction {
    max-width: 520px;
    margin: 0 auto;
  }
}

.introduction__container {
  max-width: 1160px;
  width: 100%;
  min-height: auto;
  height: 100%;
  margin: 30px auto;
}

.introduction__title {
  z-index: 1;
  margin: 0 15px;
  letter-spacing: 0.08em;
}

.introduction__imgtitle {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 959px) {
  .introduction__imgtitle {
    display: inline-block;
  }
}

.introduction__bg {
  max-width: 974px;
  width: 100%;
  position: absolute;
  right: 0;
  top: -179px;
}

@media screen and (max-width: 959px) {
  .introduction__bg {
    width: 487px;
    right: auto;
    top: 0;
  }
}

.introduction__goyokiki {
  position: relative;
  bottom: 123px;
}

@media screen and (max-width: 959px) {
  .introduction__goyokiki {
    bottom: 0;
  }
}

.introduction__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
}

@media screen and (max-width: 959px) {
  .introduction__box {
    display: inline-block;
  }
}

.introduction__icon {
  width: 0;
  height: 0;
  z-index: 1;
  margin-right: 30px;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #0F7DC2 transparent transparent transparent;
}

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

.introduction__egtitle {
  color: #0F7DC2;
  font-size: 20px;
}

@media screen and (max-width: 959px) {
  .introduction__egtitle {
    font-size: 16px;
  }
}

.introduction__jptitle {
  color: #2B2B2B;
  font-size: 40px;
  margin-left: 60px;
  font-weight: bold;
  padding-top: 10px;
}

@media screen and (max-width: 959px) {
  .introduction__jptitle {
    padding-top: 5px;
    font-size: 28px;
    margin: 0;
  }
}

.introduction__mainbox {
  max-width: 1040px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.introduction__main {
  max-width: 800px;
  margin: 0 15px;
}

@media screen and (max-width: 959px) {
  .introduction__main {
    margin: 0 15px;
    text-align: left;
  }
}

.introduction__service {
  width: 100%;
}

@media screen and (max-width: 959px) {
  .introduction__service {
    max-width: 490px;
  }
}

.introduction__maintext {
  line-height: 2;
  font-size: 18px;
  width: 100%;
  margin: -90px 0 30px;
}

@media screen and (max-width: 959px) {
  .introduction__maintext {
    margin: 30px 0;
    line-height: 1.75;
    font-size: 16px;
  }
}

.introduction__maintext2 {
  line-height: 2;
  font-size: 18px;
  width: 100%;
  margin: 30px 0;
}

@media screen and (max-width: 959px) {
  .introduction__maintext2 {
    font-size: 16px;
    line-height: 1.75;
  }
}

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

@media screen and (max-width: 959px) {
  .introduction__btn {
    display: inline;
  }
}

.introduction__decchi {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  font-size: 16px;
  width: 100%;
  padding: 16px 0;
  border-radius: 30px;
  background: #ef5350;
  -webkit-box-shadow: 0 4px 12px #00000029;
  box-shadow: 0 4px 12px #00000029;
  margin-right: 20px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 959px) {
  .introduction__decchi {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    margin-right: 0;
  }
}

.introduction__decchi:hover {
  opacity: 0.8;
}

.introduction__DynamicOMO {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  font-size: 16px;
  width: 100%;
  padding: 16px 0;
  border-radius: 30px;
  background: #42a5f5;
  -webkit-box-shadow: 0 4px 12px #00000029;
  box-shadow: 0 4px 12px #00000029;
  margin-left: 20px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 959px) {
  .introduction__DynamicOMO {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    margin: 20px 0 0 0;
  }
}

.introduction__DynamicOMO:hover {
  opacity: 0.8;
}

.features {
  margin: 60px auto 0;
  height: 100%;
  background-color: #E7F2F9;
}

@media screen and (max-width: 959px) {
  .features {
    max-width: 520px;
    width: 100%;
  }
}

.features__container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 959px) {
  .features__container {
    max-width: 520px;
    width: 100%;
    padding: 0;
  }
}

.features__titlebox {
  position: relative;
}

.features__bgimgPC {
  width: 100%;
  position: absolute;
}

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

.features__bgimgSP {
  display: none;
}

@media screen and (max-width: 959px) {
  .features__bgimgSP {
    display: inline;
    position: absolute;
    width: 100%;
  }
}

.features__title {
  position: relative;
  padding-top: 60px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 959px) {
  .features__title {
    padding-top: 0;
    top: 0;
  }
}

.features__tbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
}

@media screen and (max-width: 959px) {
  .features__tbox {
    display: inline-block;
  }
}

.features__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  margin: 20px 15px 0 auto;
  max-width: 800px;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .features__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0;
  }
}

.features__icon {
  width: 0;
  height: 0;
  z-index: 1;
  margin-right: 30px;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #F2FF00 transparent transparent transparent;
}

@media screen and (max-width: 959px) {
  .features__icon {
    display: block;
    margin: 0;
  }
}

.features__egtitle {
  color: #fff;
  font-size: 20px;
}

@media screen and (max-width: 959px) {
  .features__egtitle {
    font-size: 16px;
    padding-left: 30px;
  }
}

.features__jptitle {
  color: #fff;
  font-size: 40px;
  margin-left: 60px;
  font-weight: bold;
  padding-top: 10px;
}

@media screen and (max-width: 959px) {
  .features__jptitle {
    font-size: 28px;
    margin: 0;
    padding-top: 5px;
    padding-left: 30px;
  }
}

.features__main {
  max-width: 1040px;
  margin: 30px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 60px;
}

@media screen and (max-width: 959px) {
  .features__main {
    max-width: 490px;
    width: auto;
    margin: 8px 15px 0;
    padding-bottom: 30px
  }
}

.features__nobox {
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 3;
  top: 20px;
  left: -17%;
  background: #fff;
  border: 1px solid #0F7DC2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 959px) {
  .features__nobox {
    width: 60px;
    height: 60px;
    left: 0;
    right: 0;
    top: 20px;
    margin: 0 auto;
  }
}

.features__boxtext {
  color: #0F7DC2;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.features__label {
  font-size: 18px;
  margin-top: 12px;
  margin-bottom: -15px;
}

@media screen and (max-width: 959px) {
  .features__label {
    font-size: 14px;
    margin-top: 9px;
    margin-bottom: -10px;
  }
}

.features__number {
  font-size: 40px;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .features__number {
    font-size: 30px;
  }
}

.features__mainbox {
  background: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  padding: 40px;
  max-width: 800px;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .features__mainbox {
    padding: 50px 20px 20px;
    margin-top: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 0;
  }
}

.features__boxtitle {
  font-weight: bold;
  font-size: 24px;
  color: #0F7DC2;
}

@media screen and (max-width: 959px) {
  .features__boxtitle {
    font-size: 20px;
  }
}

.features__list::before {
  content: "";
  width: 10px;
  height: 2px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  vertical-align: middle;
  background-color: #0F7DC2;
  margin-right: 10px;
}

.features__list {
  text-indent: -1em;
  padding-left: 1em;
  padding-top: 20px;
  font-size: 18px;
  line-height: 1.75;
}

@media screen and (max-width: 959px) {
  .features__list {
    font-size: 16px;
  }
}

@media screen and (max-width: 959px) {
  .features__menu {
    line-height: 1.75;
  }
}

.features__text {
  font-size: 18px;
  padding-top: 20px;
  line-height: 1.75;
}

@media screen and (max-width: 959px) {
  .features__text {
    line-height: 1.75;
    font-size: 16px;
  }
}

.features__bold {
  font-weight: bold;
}

.function {
  background: #fff;
}

.function__container {
  padding-bottom: 60px;
}

@media screen and (max-width: 959px) {
  .function__container {
    margin: 0;
    padding-bottom: 60px;
  }
}

.function__container2 {
  max-width: 1280px;
  width: 100%;
  min-height: auto;
  height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  .function__container2 {
    padding: 0;
  }
}

.function__title {
  max-width: 1160px;
  padding-top: 60px;
  padding-left: 15px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 959px) {
  .function__title {
    padding: 60px 15px 0;
  }
}

.function__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media screen and (max-width: 959px) {
  .function__box {
    display: inline;
  }
}

.function__icon {
  width: 0;
  height: 0;
  z-index: 1;
  margin-right: 30px;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #0F7DC2 transparent transparent transparent;
}

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

.function__egtitle {
  color: #0F7DC2;
  font-size: 20px;
}

@media screen and (max-width: 959px) {
  .function__egtitle {
    font-size: 16px;
  }
}

.function__jptitle {
  color: #2B2B2B;
  font-size: 40px;
  margin-left: 60px;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .function__jptitle {
    font-size: 28px;
    margin: 0;
  }
}

.function__main {
  width: 100%;
  margin-top: 120px;
}

@media screen and (max-width: 959px) {
  .function__main {
    max-width: 520px;
    width: auto;
    margin: 0;
  }
}

.function__main-2 {
  width: 100%;
  margin-top: 120px;
}

@media screen and (max-width: 959px) {
  .function__main-2 {
    max-width: 520px;
    width: auto;
    margin: 0;
  }
}

.function__box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

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

.function__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .function__section {
    display: inline-block;
  }
}

.function__nobox {
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 3;
  right: 136px;
  top: -39px;
  background: #fff;
  border: 1px solid #0F7DC2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 959px) {
  .function__nobox {
    width: 60px;
    height: 60px;
    left: 32px;
    top: 20px;
    margin: 0;
  }
}

.function__boxtext {
  color: #0F7DC2;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.function__label {
  font-size: 18px;
  margin-bottom: -15px;
  margin-top: 12px;
}

@media screen and (max-width: 959px) {
  .function__label {
    font-size: 14px;
    margin-top: 9px;
    margin-bottom: -10px;
  }
}

.function__number {
  font-size: 40px;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .function__number {
    font-size: 30px;
  }
}

.function__textbox {
  background: #0F7DC2;
  margin: 0 0 0 auto;
  padding: 40px 120px 40px 160px;
  width: calc(800 / 1280 * 100%);
  min-width: calc(800 / 1280 * 100%);
}

@media screen and (max-width: 959px) {
  .function__textbox {
    padding: 20px 20px;
    margin-top: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    min-width: auto;
  }
}

.function__textbox-2 {
  background: #0F7DC2;
  margin: 0 auto 0 0;
  padding: 40px 160px 40px 120px;
  width: calc(800 / 1280 * 100%);
  min-width: calc(800 / 1280 * 100%);
}

@media screen and (max-width: 959px) {
  .function__textbox-2 {
    padding: 20px 20px;
    margin-top: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    min-width: auto;
  }
}

.function__textbox-3 {
  background: #0F7DC2;
  margin: 0 auto 0 0;
  padding: 40px 120px 40px 160px;
  width: calc(800 / 1280 * 100%);
  min-width: calc(800 / 1280 * 100%);
}

@media screen and (max-width: 959px) {
  .function__textbox-3 {
    padding: 20px 20px;
    margin-top: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    min-width: auto;
  }
}

.function__boxtitle {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  text-align: left;
}

@media screen and (max-width: 959px) {
  .function__boxtitle {
    font-size: 20px;
    text-align: right;
  }
}

.function__text {
  font-size: 18px;
  color: #fff;
  padding-top: 20px;
  line-height: 1.75;
}

@media screen and (max-width: 959px) {
  .function__text {
    font-size: 16px;
    line-height: 1.75;
  }
}

.function__detail {
  margin-top: 40px;
  position: relative;
}

@media screen and (max-width: 959px) {
  .function__detail {
    margin-top: 150px;
  }
}

.function__img {
  position: relative;
}

.function__pcimg {
  position: absolute;
  width: calc(480 / 1280 * 100%);
  top: -318px;
  left: 120px;
}

@media screen and (max-width: 959px) {
  .function__pcimg {
    width: 240px;
    top: -140px;
    right: -30px;
    left: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.function__checkimg {
  position: absolute;
  left: 180px;
  top: -45px;
  width: 150px;
}

@media screen and (max-width: 959px) {
  .function__checkimg {
    width: 150px;
    top: -70px;
    left: 0;
  }
}

.function__detailbox {
  background: #e7f2f9;
  padding: 40px 40px 20px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  .function__detailbox {
    padding: 30px 20px 10px;
  }
}

.function__listbox {
  list-style: none;
  letter-spacing: 40px;
}

.function__listbox li {
  padding-bottom: 20px;
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}

.function__list::before {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  bottom: 2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #0F7DC2;
  margin-right: 10px;
}

.function__list:hover {
  text-decoration: none;
  opacity: 0.8;
}

.function__list {
  color: #333;
  font-size: 18px;
  letter-spacing: normal;
}

@media screen and (max-width: 959px) {
  .function__list {
    font-size: 16px;
  }
}

.function__text2 {
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 20px;
}

@media screen and (max-width: 959px) {
  .function__text2 {
    font-size: 16px;
  }
}

.function__nobox-2 {
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 3;
  left: 42%;
  top: -39px;
  background: #fff;
  border: 1px solid #0F7DC2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 959px) {
  .function__nobox-2 {
    width: 60px;
    height: 60px;
    left: 32px;
    top: 20px;
    margin: 0;
  }
}

.function__pcimg-2 {
  position: absolute;
  width: calc(480 / 1280 * 100%);
  right: 120px;
  top: -318px;
}

@media screen and (max-width: 959px) {
  .function__pcimg-2 {
    width: 240px;
    top: -140px;
    right: -30px;
    left: auto;
  }
}

.function__detaitext {
  font-size: 18px;
  color: #333;
  padding-bottom: 20px;
  line-height: 1.75;
}

@media screen and (max-width: 959px) {
  .function__detaitext {
    font-size: 16px;
  }
}

.function__box2-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 959px) {
  .function__box2-2 {
    display: block;
  }
}

.remodal {
  background: transparent;
  padding: 0;
  max-width: 1100px;
}

@media screen and (max-width: 959px) {
  .remodal {
    vertical-align: top;
    padding-top: 80px;
  }
}

@media screen and (max-width: 959px) {
  .remodal-wrapper {
    padding: 0;
  }
}

.remodal-close {
  height: auto;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #fff !important;
  left: auto;
  right: 65px;
  z-index: 1;
}

@media screen and (max-width: 959px) {
  .remodal-close {
    top: 18px;
    right: 15px;
  }
}

.remodal-close::before {
  line-height: 0;
  position: relative;
  font-size: 30px;
  width: auto;
  margin-right: 10px;
  display: block;
}

.remodal-close:hover {
  opacity: 0.8;
}

.remodal > div:first-child {
  max-width: calc(960 / 1100 * 100%);
  overflow: hidden;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .remodal > div:first-child {
    max-width: 100%;
  }
}

.remodal .swiper-slide p {
  color: #fff;
  font-size: 16px;
  line-height: calc(24 / 16);
  font-weight: 400;
  text-align: left;
  margin-bottom: 15px;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 959px) {
  .remodal .swiper-slide p {
    margin-bottom: 10px;
    padding: 0 15px;
  }
}

.remodal .swiper-slide-active p {
  opacity: 1;
  -webkit-transition: all 0.2s 0.2s;
  transition: all 0.2s 0.2s;
}

.remodal .swiper-slide img {
  width: 100%;
}

.remodal .swiper-button-next:hover,
.remodal .swiper-button-prev:hover {
  opacity: 0.8;
}

@media screen and (max-width: 959px) {
  .remodal .swiper-button-next,
  .remodal .swiper-button-prev {
    top: 63%;
  }
}

.remodal .swiper-button-next {
  right: 0;
  background-image: url("../img/icons/ico-arrow-right-modal.png");
}

@media screen and (max-width: 959px) {
  .remodal .swiper-button-next {
    right: 10px;
    background-image: url("../img/icons/ico-arrow-right-modal-sp.png");
  }
}

.remodal .swiper-button-prev {
  left: 0;
  background-image: url("../img/icons/ico-arrow-left-modal.png");
}

@media screen and (max-width: 959px) {
  .remodal .swiper-button-prev {
    left: 10px;
    background-image: url("../img/icons/ico-arrow-left-modal-sp.png");
  }
}

.remodal .swiper-pagination {
  position: relative;
  line-height: 1;
  font-size: 0;
  margin-top: 17px;
  bottom: 0;
}

.remodal .swiper-pagination .swiper-pagination-bullet {
  background-color: #888;
  width: 10px;
  height: 10px;
  margin: 0 10px;
}

.remodal .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 0.8;
}

.remodal .swiper-pagination .swiper-pagination-bullet:first-child {
  margin-left: 0;
}

.remodal .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.remodal .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.customervoice {
  height: 100%;
  background: #0F7DC2;
  color: #fff;
}

.customervoice__container {
  max-width: 1190px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 15px;
}

@media screen and (max-width: 959px) {
  .customervoice__container {
    max-width: 520px;
    width: 100%;
    padding: 30px 0 30px 15px;
  }
}

.customervoice__title {
  position: relative;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 959px) {
  .customervoice__title {
    top: 0;
    padding: 0 15px 0 0;
  }
}

.customervoice__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media screen and (max-width: 959px) {
  .customervoice__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 8px 0;
  }
}

.customervoice__icon {
  width: 0;
  height: 0;
  z-index: 1;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #F2FF00 transparent transparent transparent;
  margin-right: 30px;
}

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

.customervoice__egtitle {
  color: #fff;
  font-size: 20px;
}

@media screen and (max-width: 959px) {
  .customervoice__egtitle {
    font-size: 16px;
  }
}

.customervoice__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 1140px;
  width: 100%;
}

.customervoice__jptitle {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  padding-left: 60px;
}

@media screen and (max-width: 959px) {
  .customervoice__jptitle {
    font-size: 28px;
    padding-left: 0;
    padding-top: 5px;
  }
}

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

.customervoice__list {
  color: #fff;
  text-decoration: none;
}

.customervoice__list:hover {
  opacity: 0.8;
}

.customervoice__img {
  fill: #fff;
  padding-right: 10px;
}

.customervoice__main {
  max-width: 1040px;
  margin: 30px auto 0;
}

@media screen and (max-width: 959px) {
  .customervoice__main {
    margin: 30px 15px 0 0;
  }
}

.customervoice__mainarea {
  margin-top: 30px;
  max-width: 800px;
  margin: 0 0 0 auto;
  position: relative;
}

.customervoice__linkbox {
  position: absolute;
  right: 0;
  top: -60px;
}

.customervoice__text {
  font-size: 18px;
  padding-bottom: 40px;
  line-height: 2;
}

@media screen and (max-width: 959px) {
  .customervoice__text {
    font-size: 16px;
    padding-bottom: 30px;
    line-height: 1.75;
  }
}

.customervoice__link {
  text-decoration: none;
}

.customervoice__link:hover {
  opacity: 0.8;
}

.customervoice__whitebox {
  background: white;
  height: 60px;
  width: 100%;
}

.customervoice__carousel {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .customervoice__carousel {
    height: auto;
    padding: 0;
  }
}

.customervoice__carousel .swiper {
  max-width: 926px;
  -webkit-transform: translateX(300px);
  transform: translateX(300px);
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .customervoice__carousel .swiper {
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
  }
}

@media screen and (max-width: 959px) {
  .customervoice__carousel .swiper-wrapper {
    margin: 0 0 32px;
  }
}

.customervoice__carousel .swiper-slide {
  height: 100%;
}

.customervoice__carousel .customervoice__setting {
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 106px;
}

@media screen and (max-width: 959px) {
  .customervoice__carousel .customervoice__setting {
    position: relative;
    left: 50%;
    display: inline-block;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.customervoice__carousel .customervoice__setting-inner {
  position: relative;
}

.customervoice__carousel .swiper-pagination-fraction {
  bottom: 0;
  top: 0;
  position: relative;
}

@media screen and (max-width: 959px) {
  .customervoice__carousel .swiper-pagination-fraction {
    width: 100%;
    margin: 0;
    position: initial;
  }
}

.customervoice__carousel .swiper-button-prev,
.customervoice__carousel .swiper-button-next {
  top: 6px;
  bottom: auto;
  margin: 0;
  width: 6px;
  height: 12px;
  background-size: contain;
}

@media screen and (max-width: 959px) {
  .customervoice__carousel .swiper-button-prev,
  .customervoice__carousel .swiper-button-next {
    top: 7px;
  }
}

.customervoice__carousel .swiper-button-prev::after,
.customervoice__carousel .swiper-button-next::after {
  font-size: 12px;
}

.customervoice__carousel .swiper-button-next {
  right: -43px;
  background-image: url("../img/icons/ico-arrow-right-white.png");
}

@media screen and (max-width: 959px) {
  .customervoice__carousel .swiper-button-next {
    right: -40px;
  }
}

.customervoice__carousel .swiper-button-prev {
  left: -43px;
  background-image: url("../img/icons/ico-arrow-left-white.png");
}

@media screen and (max-width: 959px) {
  .customervoice__carousel .swiper-button-prev {
    left: -40px;
  }
}

.customervoice__carousel .swiper-pagination-lock,
.customervoice__carousel .swiper-button-lock {
  display: block;
}

.customervoice__carousel-pagination-background {
  width: 300px;
  height: 372px;
  background: #0F7DC2;
  position: absolute;
  bottom: 0;
  z-index: 2;
  display: none;
}

@media screen and (max-width: 959px) {
  .customervoice__carousel-pagination-background {
    display: none;
  }
}

.customervoice__carousel-img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.customervoice__carousel-item {
  width: 360px !important;
  background: #E7F2F9;
}

.customervoice__carousel-item:last-child {
  margin: 0 15px 0 0;
}

@media screen and (max-width: 959px) {
  .customervoice__carousel-item {
    width: 300px !important;
  }
}

.customervoice__carousel-text {
  padding: 20px;
  color: #333333;
}

.customervoice__carousel-title {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.customervoice__carousel-description {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
}

.price {
  margin: 0 auto;
  padding: 60px 0;
  background: #E7F2F9;
}

@media screen and (max-width: 959px) {
  .price {
    max-width: 520px;
    width: 100%;
    padding: 30px 0;
  }
}

.price__container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 959px) {
  .price__container {
    max-width: 520px;
    width: 100%;
  }
}

.price__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
}

.price__title {
  position: relative;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 959px) {
  .price__title {
    top: 0;
  }
}

.price__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.price__icon {
  width: 0;
  height: 0;
  z-index: 1;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #0f7dc2 transparent transparent transparent;
  margin-right: 30px;
}

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

.price__egtitle {
  color: #0f7dc2;
  font-size: 20px;
}

@media screen and (max-width: 959px) {
  .price__egtitle {
    font-size: 16px;
    margin-left: 0;
  }
}

.price__jptitle {
  color: #333;
  font-size: 40px;
  font-weight: bold;
  margin-left: 60px;
}

@media screen and (max-width: 959px) {
  .price__jptitle {
    font-size: 28px;
    margin: 0;
    padding-top: 5px;
    padding-left: 0;
  }
}

.price__btnbox {
  position: absolute;
  right: 0;
  top: -85px;
}

.price__btn {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  font-size: 24px;
  width: 480px;
  padding: 20px 0;
  border-radius: 38px;
  letter-spacing: 0.08em;
  background: linear-gradient(99deg, #FF2B2B 0%, #FF7334 75%, #FF9636 100%);
  -webkit-box-shadow: 0 4px 12px #00000029;
  box-shadow: 0 4px 12px #00000029;
}

@media screen and (max-width: 959px) {
  .price__btn {
    font-size: 14px;
    margin: 20px 0 0 0;
    width: auto;
    padding: 12px 18px;
  }
}

.price__btn:hover {
  opacity: 0.8;
}

.price__mainarea {
  position: relative;
  padding-top: 30px;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.price__main {
  max-width: 800px;
  width: 100%;
  margin: 0 0 0 auto;
}

.price__text {
  font-size: 18px;
  color: #333;
  padding-bottom: 30px;
  line-height: 2;
}

@media screen and (max-width: 959px) {
  .price__text {
    font-size: 16px;
    line-height: 1.75;
  }
}

.price__btn2 {
  width: 100%;
  text-align: right;
}

.price__decchi {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  font-size: 16px;
  width: 380px;
  padding: 16px 0;
  border-radius: 30px;
  letter-spacing: 0.08em;
  background: #ef5350;
  -webkit-box-shadow: 0 4px 12px #00000029;
  box-shadow: 0 4px 12px #00000029;
  margin: 30px 0 0 auto;
}

@media screen and (max-width: 959px) {
  .price__decchi {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    margin-right: 0;
  }
}

.price__decchi:hover {
  opacity: 0.8;
}

.price__img {
  max-width: 800px;
  width: 100%;
}

.price__br {
  display: none;
}

@media screen and (max-width: 959px) {
  .price__br {
    display: inline-block;
  }
}

.news {
  margin: 0 auto;
  padding: 0 15px 60px;
  height: 100%;
  background: #fff;
}

@media screen and (max-width: 959px) {
  .news {
    padding: 60px 15px 60px;
  }
}

.news__container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 0;
}

@media screen and (max-width: 959px) {
  .news__container {
    max-width: 520px;
    width: 100%;
    padding: 0;
  }
}

.news__title {
  position: relative;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 959px) {
  .news__title {
    top: 0;
  }
}

.news__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

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

.news__icon {
  width: 0;
  height: 0;
  z-index: 1;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #0F7DC2 transparent transparent transparent;
  margin-right: 30px;
}

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

.news__egtitle {
  color: #333;
  font-size: 20px;
  color: #0F7DC2;
}

@media screen and (max-width: 959px) {
  .news__egtitle {
    font-size: 16px;
  }
}

.news__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 1160px;
  width: calc(1160 / 1280 * 100%);
}

@media screen and (max-width: 959px) {
  .news__section {
    width: 100%;
  }
}

.news__jptitle {
  color: #333;
  font-size: 40px;
  font-weight: bold;
  padding-top: 10px;
  margin-left: 60px;
}

@media screen and (max-width: 959px) {
  .news__jptitle {
    font-size: 28px;
    margin: 0;
    padding-top: 5px;
  }
}

.news__listbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news__img {
  padding-right: 10px;
}

.news__list {
  color: #333;
  text-decoration: none;
}

.news__list:hover {
  opacity: 0.8;
}

.news__main {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 959px) {
  .news__main {
    width: 100%;
  }
}

.news__panbox {
  position: absolute;
  right: 0;
  top: -60px;
}

@media screen and (max-width: 959px) {
  .news__panbox {
    top: -60px;
  }
}

.news__mainarea {
  margin-top: 30px;
  max-width: 983px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  line-height: 1.75;
}

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

.news__day {
  color: #333;
  font-size: 18px;
  margin-right: 40px;
  white-space: nowrap;
}

@media screen and (max-width: 959px) {
  .news__day {
    font-size: 14px;
    color: #888888;
    margin: auto;
  }
}

.news__textbox {
  color: #333;
  max-width: 800px;
  width: 100%;
}

.news__text {
  color: #333;
  font-size: 18px;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .news__text {
    font-size: 16px;
  }
}

.news__text:hover {
  text-decoration: none;
  opacity: 0.8;
}

.news__link {
  text-decoration: none;
}

.breadcrumbs {
  max-width: 1070px;
  margin: auto;
  padding: 0 15p
  text-align: right;
  line-height: 1.2;
}

@media screen and (max-width: 959px) {
  .breadcrumbs {
    max-width: 550px;
  }
}

.breadcrumbs__inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumbs li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumbs li::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 12px;
  margin: 0 10px;
  background-image: url("../img/icons/ico-arrow-right.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.breadcrumbs li:last-child::after {
  content: none;
  margin: 0;
}

.breadcrumbs li:last-child a {
  text-decoration: none;
  font-weight: bold;
  cursor: default;
}

.breadcrumbs li:last-child a:hover {
  opacity: 1;
}

.breadcrumbs a {
  white-space: nowrap;
  font-size: 16px;
  line-height: calc(24 / 16);
  color: #333;
  font-weight: 400;
}

@media screen and (max-width: 959px) {
  .breadcrumbs a {
    font-size: 12px;
    line-height: calc(18 / 12);
  }
}

.breadcrumbs a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.breadcrumbs--special {
  max-width: 1280px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 959px) {
  .breadcrumbs--special {
    max-width: 550px;
  }
}

.breadcrumbs--special::before {
  content: '';
  display: block;
  min-width: 360px;
}

@media screen and (max-width: 959px) {
  .breadcrumbs--special::before {
    content: none;
  }
}

.breadcrumbs--special .breadcrumbs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: calc(815 / 1280 * 100%);
  padding-right: 15px;
}

@media screen and (max-width: 959px) {
  .breadcrumbs--special .breadcrumbs__inner {
    width: 100%;
    padding: 0 15px;
  }
}

.section-title {
  position: relative;
  padding-left: 60px;
}

@media screen and (max-width: 959px) {
  .section-title {
    padding-left: 0;
  }
}

.section-title::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 0;
}

@media screen and (max-width: 959px) {
  .section-title::before {
    content: none;
  }
}

.section-title__en {
  line-height: calc(30 / 20);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 959px) {
  .section-title__en {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.section-title__jp {
  line-height: calc(50 / 40);
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 959px) {
  .section-title__jp {
    font-size: 28px;
    line-height: calc(42 / 28);
  }
}

.section-title--default::before {
  border-color: #0f7dc2 transparent transparent transparent;
}

.section-title--default > *:first-child {
  color: #0f7dc2;
}

.section-title--default > *:last-child {
  color: #2b2b2b;
}

.section-title--white::before {
  border-color: #f2ff00 transparent transparent transparent;
}

.section-title--white > *:first-child {
  color: #fff;
}

.section-title--white > *:last-child {
  color: #fff;
}

.table-contents {
  background-color: #e7f2f9;
  padding: 40px 20px 40px 120px;
  min-width: 320px;
  max-width: 321px;
}

@media screen and (max-width: 959px) {
  .table-contents {
    padding: 24px 20px;
    min-width: auto;
    max-width: none;
  }
}

.table-contents li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 20px;
}

.table-contents li::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10.4px;
  margin-right: 10px;
  border-color: transparent transparent transparent #0f7dc2;
}

.table-contents li:last-child {
  margin-bottom: 0;
}

.table-contents a {
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(24 / 16);
}

.table-contents a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.return-top {
  padding: 60px 15px;
  max-width: 1070px;
  margin: auto;
  text-align: center;
}

.return-top a {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.return-top a:hover {
  opacity: 0.8;
}

.return-top a img {
  width: 6px;
  height: 12px;
  margin-right: 10px;
}

.return-top--special .return-top__inner {
  max-width: 800px;
  margin: 0 0 0 auto;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .return-top--special .return-top__inner {
    margin: auto;
  }
}

/**
* @file _l-common.scss
**/
html {
  overflow: auto;
}

body {
  font-size: 62.5%;
  color: #333;
  font-family: "Roboto", "Helvetica Neue", "Century Gothic", "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.5;
  font-size: 16px;
  overflow: hidden;
}

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

.sp {
  display: none;
}

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

.ie {
  display: none;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .ie {
    display: block;
  }
  *::-ms-backdrop, .ie-none {
    display: none;
  }
}

/**
* @file _l-index.scss
**/
.page-introduction {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.page-introduction-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 1280px;
  margin: auto;
  width: 100%;
  text-align: right;
}

@media screen and (max-width: 959px) {
  .page-introduction-bg {
    max-width: 520px;
  }
}

.page-introduction-bg::before {
  content: '';
  display: inline-block;
  width: 804px;
  height: 178px;
  background-image: url("../img/bg_title_dechi.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 959px) {
  .page-introduction-bg::before {
    width: 402px;
    height: 89px;
  }
}

.page-introduction .breadcrumbs {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 959px) {
  .page-introduction .breadcrumbs {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}

.page-introduction__about {
  max-width: 1280px;
  margin: auto;
  position: relative;
}

@media screen and (max-width: 959px) {
  .page-introduction__about {
    max-width: 520px;
  }
}

.page-introduction__about-inner {
  margin: 0 15px;
}

.page-introduction__about > .page-introduction-bg {
  position: absolute;
  top: -57px;
  right: 0;
}

.page-introduction__about .section-title {
  max-width: 1160px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 959px) {
  .page-introduction__about .section-title {
    margin-bottom: 30px;
    max-width: 520px;
  }
}

.page-introduction__about-cont {
  max-width: 1040px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .page-introduction__about-cont {
    max-width: 520px;
  }
}

.page-introduction__about-cont > * {
  max-width: 800px;
  margin: 0 0 0 auto;
}

.page-introduction__about-cont img {
  width: 100%;
}

.page-introduction__about-cont h3 {
  font-size: 24px;
  line-height: calc(36 / 24);
  color: #0f7dc2;
  margin-bottom: 30px;
}

@media screen and (max-width: 959px) {
  .page-introduction__about-cont h3 {
    font-size: 20px;
    line-height: calc(30 / 20);
    margin-bottom: 20px;
  }
}

.page-introduction__about-cont ul {
  margin-bottom: 30px;
}

.page-introduction__about-cont ul li {
  font-size: 18px;
  line-height: calc(31.5 / 18);
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 959px) {
  .page-introduction__about-cont ul li {
    font-size: 16px;
    line-height: calc(28 / 16);
  }
}

.page-introduction__about-cont ul li:last-child {
  margin-bottom: 0;
}

.page-introduction__about-cont ul li::before {
  content: '';
  min-width: 10px;
  height: 2px;
  background-color: #0f7dc2;
  margin: 13px 10px 0 0;
}

.page-introduction__about-img {
  margin-bottom: 60px;
}

.page-introduction__features {
  position: relative;
  background-color: #e7f2f9;
  min-height: 453px;
}

@media screen and (max-width: 959px) {
  .page-introduction__features {
    min-height: auto;
    padding-bottom: 30px;
    max-width: 520px;
    margin: auto;
  }
}

.page-introduction__features-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 453px;
  background-image: url("../img/bg_features_pc.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 959px) {
  .page-introduction__features-bg {
    background-image: url("../img/bg_features_sp.png");
    height: 240px;
  }
}

.page-introduction__features-inner {
  margin: 0 15px;
  padding-top: 30px;
}

.page-introduction__features .section-title {
  max-width: 1160px;
  margin: 0 auto 50px;
}

.page-introduction__features-cont {
  max-width: 1040px;
  margin: auto;
}

.page-introduction__features-cont > * {
  max-width: 800px;
  margin: 0 0 0 auto;
}

.page-introduction__features-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
}

.page-introduction__features-card p {
  font-size: 24px;
  line-height: calc(36 / 24);
  color: #0f7dc2;
  margin-bottom: 30px;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .page-introduction__features-card p {
    font-size: 20px;
    line-height: calc(30 / 20);
    margin-bottom: 20px;
  }
}

.page-introduction__features-card ul li {
  font-size: 18px;
  line-height: calc(31.5 / 18);
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 959px) {
  .page-introduction__features-card ul li {
    font-size: 16px;
    line-height: calc(28 / 16);
  }
}

.page-introduction__features-card ul li:last-child {
  margin-bottom: 0;
}

.page-introduction__features-card ul li::before {
  content: '';
  min-width: 10px;
  height: 2px;
  background-color: #0f7dc2;
  margin: 13px 10px 0 0;
}

.page-introduction__return {
  padding: 60px 15px;
  max-width: 1070px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .page-introduction__return {
    padding-top: 30px;
  }
}

.page-introduction__return-inner {
  max-width: 800px;
  margin: 0 0 0 auto;
  text-align: center;
}

.page-introduction__return a {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
}

.page-introduction__return a:hover {
  opacity: 0.8;
}

.page-introduction__return a img {
  width: 6px;
  height: 12px;
  margin-right: 10px;
}

.page-function section:last-child {
  margin-bottom: 60px;
}

.page-function .breadcrumbs {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 959px) {
  .page-function .breadcrumbs {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}

.page-function__ttl {
  margin: 0 15px;
}

@media screen and (max-width: 959px) {
  .page-function__ttl {
    margin: 0;
  }
}

@media screen and (max-width: 959px) {
  .page-function__list {
    padding: 0 15px;
    max-width: 550px;
    margin: auto;
  }
}

.page-function__list .section-title {
  max-width: 1160px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 959px) {
  .page-function__list .section-title {
    margin-bottom: 30px;
    max-width: 520px;
  }
}

.page-function__list-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 1280px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .page-function__list-cont {
    display: block;
  }
}

.page-function__list-cont .table-contents {
  margin-right: 40px;
}

@media screen and (max-width: 959px) {
  .page-function__list-cont .table-contents {
    margin: 0 0 30px;
  }
}

.page-function__list-cont > div {
  width: calc(815 / 1280 * 100%);
  padding-right: 15px;
}

@media screen and (max-width: 959px) {
  .page-function__list-cont > div {
    width: 100%;
    padding-right: 0;
  }
}

.page-function__list-img {
  margin-bottom: 40px;
}

.page-function__list img {
  width: 100%;
}

.page-function__list-item + .page-function__list-item {
  margin-top: 40px;
}

.page-function__list-item h3 {
  font-size: 32px;
  line-height: calc(48 / 32);
  color: #333;
  padding-bottom: 5px;
  margin-bottom: 30px;
  border-bottom: 3px solid #0f7dc2;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .page-function__list-item h3 {
    font-size: 24px;
    line-height: calc(36 / 24);
  }
}

.page-function__list-item p {
  font-size: 18px;
  line-height: calc(36 / 18);
  margin-bottom: 30px;
  font-weight: 400;
}

@media screen and (max-width: 959px) {
  .page-function__list-item p {
    font-size: 16px;
    line-height: calc(28 / 16);
  }
}

.page-function__list-item span {
  font-size: 12px;
  line-height: calc(18 / 12);
  text-align: right;
  color: #333;
  display: block;
  margin-top: 30px;
  font-weight: 400;
}

@media screen and (max-width: 959px) {
  .page-function__list-item span {
    font-size: 10px;
    line-height: calc(15 / 10);
  }
}

.page-function__list-detail * + img,
.page-function__list-detail * + p {
  margin-top: 30px;
}

.page-function__list-detail p {
  margin-bottom: 0;
}

.page-flow section:last-child {
  margin-bottom: 60px;
}

.page-flow .breadcrumbs {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 959px) {
  .page-flow .breadcrumbs {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}

.page-flow__ttl {
  margin: 0 15px;
}

@media screen and (max-width: 959px) {
  .page-flow__ttl {
    margin: 0;
  }
}

@media screen and (max-width: 959px) {
  .page-flow__list {
    padding: 0 15px;
    max-width: 550px;
    margin: auto;
  }
}

.page-flow__list .section-title {
  max-width: 1160px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 959px) {
  .page-flow__list .section-title {
    margin-bottom: 30px;
    max-width: 520px;
  }
}

.page-flow__list-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 1280px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .page-flow__list-cont {
    display: block;
  }
}

.page-flow__list-cont .table-contents {
  margin-right: 40px;
}

@media screen and (max-width: 959px) {
  .page-flow__list-cont .table-contents {
    margin: 0 0 40px;
  }
}

.page-flow__list-cont > div {
  width: calc(815 / 1280 * 100%);
  padding-right: 15px;
}

@media screen and (max-width: 959px) {
  .page-flow__list-cont > div {
    width: 100%;
    padding-right: 0;
  }
}

.page-flow__list-item + .page-flow__list-item {
  margin-top: 40px;
}

.page-flow__list-item h3 {
  font-size: 32px;
  line-height: calc(48 / 32);
  color: #333;
  padding-bottom: 5px;
  margin-bottom: 30px;
  border-bottom: 3px solid #0f7dc2;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .page-flow__list-item h3 {
    font-size: 24px;
    line-height: calc(36 / 24);
  }
}

.page-flow__list-item img {
  width: 100%;
}

.page-flow__list-item h4 {
  font-size: 28px;
  line-height: calc(42 / 28);
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

@media screen and (max-width: 959px) {
  .page-flow__list-item h4 {
    font-size: 20px;
    line-height: calc(30 / 20);
  }
}

.page-flow__list-item h4::before {
  content: '';
  display: block;
  min-width: 6px;
  height: 32px;
  background-color: #0f7dc2;
  margin: 5px 10px 0 0;
}

@media screen and (max-width: 959px) {
  .page-flow__list-item h4::before {
    height: 22px;
  }
}

.page-flow__bullets {
  padding: 40px;
  background-color: #e7f2f9;
}

.page-flow__bullets + .page-flow__bullets {
  margin-top: 20px;
}

.page-flow__bullets + h4,
.page-flow__bullets + p + h4 {
  margin-top: 40px;
}

@media screen and (max-width: 959px) {
  .page-flow__bullets {
    padding: 20px;
  }
}

.page-flow__bullets p {
  font-size: 24px;
  line-height: calc(36 / 24);
  color: #0f7dc2;
  margin-bottom: 20px;
}

@media screen and (max-width: 959px) {
  .page-flow__bullets p {
    font-size: 20px;
    line-height: calc(30 / 20);
  }
}

.page-flow__bullets ul li {
  font-size: 18px;
  font-weight: 400;
  line-height: calc(31.5 / 18);
  color: #333;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 959px) {
  .page-flow__bullets ul li {
    font-size: 16px;
    line-height: calc(28 / 16);
  }
}

.page-flow__bullets ul li:last-child {
  margin-bottom: 0;
}

.page-flow__bullets ul li::before {
  content: '';
  min-width: 10px;
  height: 2px;
  background-color: #0f7dc2;
  margin: 13px 10px 0 0;
}

.page-flow__note {
  font-size: 18px;
  line-height: calc(36 / 18);
  color: #333;
  margin-top: 20px;
}

@media screen and (max-width: 959px) {
  .page-flow__note {
    font-size: 16px;
    line-height: calc(28 / 16);
  }
}

.page-flow__note a {
  color: #333;
}

.page-flow__note a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.page-flow__links {
  padding: 40px;
  background-color: #e7f2f9;
}

@media screen and (max-width: 959px) {
  .page-flow__links {
    padding: 20px;
  }
}

.page-flow__links li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 20px;
}

.page-flow__links li::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10.4px;
  margin-right: 10px;
  border-color: transparent transparent transparent #0f7dc2;
}

.page-flow__links li:last-child {
  margin-bottom: 0;
}

.page-flow__links a {
  display: block;
  color: #333;
  font-size: 18px;
  line-height: calc(31.5 / 18);
  font-weight: 400;
}

@media screen and (max-width: 959px) {
  .page-flow__links a {
    font-size: 16px;
    line-height: calc(24 / 16);
  }
}

.page-flow__links a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.page-faq section:last-child {
  margin-bottom: 60px;
}

.page-faq .breadcrumbs {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 959px) {
  .page-faq .breadcrumbs {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}

.page-faq__ttl {
  margin: 0 15px;
}

@media screen and (max-width: 959px) {
  .page-faq__ttl {
    margin: 0;
  }
}

@media screen and (max-width: 959px) {
  .page-faq__list {
    padding: 0 15px;
    max-width: 550px;
    margin: auto;
  }
}

.page-faq__list .section-title {
  max-width: 1160px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 959px) {
  .page-faq__list .section-title {
    margin-bottom: 30px;
    max-width: 520px;
  }
}

.page-faq__items {
  max-width: 1070px;
  padding: 0 15px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .page-faq__items {
    padding: 0;
  }
}

.page-faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 959px) {
  .page-faq__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }
}

.page-faq__item + .page-faq__item {
  margin-top: 30px;
}

@media screen and (max-width: 959px) {
  .page-faq__item + .page-faq__item {
    margin-top: 18px;
  }
}

.page-faq__item-rhombus {
  min-width: 80px;
  width: 80px;
  min-height: 80px;
  height: 80px;
  border: 1px solid #0f7dc2;
  -webkit-transform: rotate(45deg) translate(0, 20px);
  transform: rotate(45deg) translate(0, 20px);
  background-color: #fff;
  position: relative;
  margin-right: 20px;
}

@media screen and (max-width: 959px) {
  .page-faq__item-rhombus {
    min-width: 60px;
    width: 60px;
    min-height: 60px;
    height: 60px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    z-index: 1;
    margin: 0;
  }
}

.page-faq__item-rhombus p {
  width: 80px;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
  transform: rotate(-45deg) translate(-50%, -50%);
  text-align: center;
  position: absolute;
  top: 0%;
  left: 68%;
  font-size: 50px;
  color: #0f7dc2;
  font-weight: 400;
}

@media screen and (max-width: 959px) {
  .page-faq__item-rhombus p {
    width: 60px;
    font-size: 40px;
    top: -4%;
    left: 71%;
  }
}

.page-faq__item-inner {
  max-width: 800px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100vw;
}

@media screen and (max-width: 959px) {
  .page-faq__item-inner {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    margin-top: 30px;
    width: 100%;
  }
}

.page-faq__item-inner h3 {
  padding: 30px;
  background-color: #0f7dc2;
  font-size: 24px;
  line-height: calc(36 / 24);
  color: #fff;
}

@media screen and (max-width: 959px) {
  .page-faq__item-inner h3 {
    padding: 50px 20px 20px;
    font-size: 20px;
    line-height: calc(30 / 20);
  }
}

.page-faq__item-inner div {
  padding: 30px;
  background-color: #e7f2f9;
}

@media screen and (max-width: 959px) {
  .page-faq__item-inner div {
    padding: 20px;
  }
}

.page-faq__item-inner div p, .page-faq__item-inner div a {
  font-size: 18px;
  line-height: calc(31.5 / 18);
  color: #333;
  font-weight: 400;
}

@media screen and (max-width: 959px) {
  .page-faq__item-inner div p, .page-faq__item-inner div a {
    font-size: 16px;
    line-height: calc(28 / 16);
  }
}

.page-faq__item-inner div a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.page-faq__item-inner div img {
  width: 100%;
}

.page-faq__item-inner div * + img, .page-faq__item-inner div * + p {
  margin-top: 30px;
}

.page-information .breadcrumbs {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 959px) {
  .page-information .breadcrumbs {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}

.page-information__ttl {
  margin: 0 15px;
}

@media screen and (max-width: 959px) {
  .page-information__ttl {
    margin: 0;
  }
}

@media screen and (max-width: 959px) {
  .page-information__list {
    padding: 0 15px;
    max-width: 550px;
    margin: auto;
  }
}

.page-information__list .section-title {
  max-width: 1160px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 959px) {
  .page-information__list .section-title {
    margin-bottom: 30px;
    max-width: 520px;
  }
}

.page-information__items {
  max-width: 1070px;
  padding: 0 15px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .page-information__items {
    padding: 0;
  }
}

.page-information__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 959px) {
  .page-information__item {
    display: block;
  }
}

.page-information__item + .page-information__item {
  margin-top: 30px;
}

.page-information__item time {
  font-size: 18px;
  line-height: calc(31, 5 / 18);
  color: #888;
  margin-right: 40px;
  white-space: nowrap;
  font-weight: 400;
}

@media screen and (max-width: 959px) {
  .page-information__item time {
    font-size: 14px;
    line-height: calc(21 / 14);
    margin: 0 0 5px;
  }
}

.page-information__item h4 {
  font-size: 18px;
  line-height: calc(31.5 / 18);
  color: #333;
  font-weight: 400;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 959px) {
  .page-information__item h4 {
    font-size: 16px;
    line-height: calc(28 / 16);
  }
}

.page-information__item h4 a {
  color: #333;
}

.page-information__item h4 a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.page-information__return {
  padding: 60px 0 0;
  max-width: 1040px;
  margin: auto;
  text-align: center;
}

.page-information__return a {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-information__return a:hover {
  opacity: 0.8;
}

.page-information__return a img {
  width: 6px;
  height: 12px;
  margin-right: 10px;
}

.page-single .breadcrumbs {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 959px) {
  .page-single .breadcrumbs {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}

.page-single__ttl {
  margin: 0 15px;
}

@media screen and (max-width: 959px) {
  .page-single__ttl {
    margin: 0;
  }
}

@media screen and (max-width: 959px) {
  .page-single__cont {
    padding: 0 15px;
    max-width: 550px;
    margin: auto;
  }
}

.page-single__cont .section-title {
  max-width: 1160px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 959px) {
  .page-single__cont .section-title {
    margin-bottom: 30px;
    max-width: 520px;
  }
}

.page-single__items {
  max-width: 1070px;
  padding: 0 15px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .page-single__items {
    padding: 0;
  }
}

.page-single__item {
  width: 800px;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 959px) {
  .page-single__item {
    width: 100%;
  }
}

.page-single__item h3 {
  padding: 30px;
  font-size: 24px;
  line-height: calc(36 / 24);
  color: #fff;
  background-color: #0f7dc2;
}

@media screen and (max-width: 959px) {
  .page-single__item h3 {
    padding: 20px;
    font-size: 20px;
    line-height: calc(30 / 20);
  }
}

.page-single__item > div {
  padding: 30px;
  background-color: #e7f2f9;
}

@media screen and (max-width: 959px) {
  .page-single__item > div {
    padding: 20px;
  }
}

.page-single__item > div > * {
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: calc(31.5 / 18);
}

@media screen and (max-width: 959px) {
  .page-single__item > div > * {
    font-size: 16px;
    line-height: calc(28 / 16);
  }
}

.page-single__item > div > * + * {
  margin-top: 10px;
}

.page-single__item > div > * > * {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.page-single__item > div > * a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.page-term .breadcrumbs {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 959px) {
  .page-term .breadcrumbs {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}

.page-term__ttl {
  margin: 0 15px;
}

@media screen and (max-width: 959px) {
  .page-term__ttl {
    margin: 0;
  }
}

@media screen and (max-width: 959px) {
  .page-term__cont {
    padding: 0 15px;
    max-width: 550px;
    margin: auto;
  }
}

.page-term__cont .section-title {
  max-width: 1160px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 959px) {
  .page-term__cont .section-title {
    margin-bottom: 30px;
    max-width: 520px;
  }
}

.page-term__wrap {
  max-width: 1040px;
  margin: 0 auto;
}

.page-term__block {
  margin-top: 40px;
}

.page-term__block:first-of-type {
  margin-top: 0;
}

.page-term__bullets {
  width: calc(1000 / 1040 * 100%);
  margin-left: auto;
  margin-right: 0;
  margin-top: 30px;
}

.page-term__bullets:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 959px) {
  .page-term__bullets {
    width: 100%;
  }
}

.page-term__bullets h5 {
  font-size: 24px;
  color: #0f7dc2;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .page-term__bullets h5 {
    font-size: 20px;
  }
}

.page-term__bullets p {
  width: calc(960 / 1000 * 100%);
  margin-left: auto;
  margin-right: 0;
  font-size: 18px;
  line-height: calc(31.5 / 18);
  margin-top: 20px;
}

@media screen and (max-width: 959px) {
  .page-term__bullets p {
    width: 100%;
    font-size: 16px;
  }
}

.page-term__bullets p a {
  color: #333;
  font-size: 18px;
}

.page-term__bullets ol {
  width: calc(960 / 1000 * 100%);
  margin-left: auto;
  margin-right: 0;
  padding-left: 2em;
}

@media screen and (max-width: 959px) {
  .page-term__bullets ol {
    width: 100%;
  }
}

.page-term__bullets ol > li {
  line-height: 1.75;
  font-size: 18px;
  margin-top: 20px;
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  text-indent: -2em;
}

@media screen and (max-width: 959px) {
  .page-term__bullets ol > li {
    font-size: 16px;
    line-height: calc(28 / 16);
  }
}

.page-term__bullets ol > li::before {
  display: marker;
  content: "(" counter(cnt) ") ";
  margin-right: 10px;
}

.page-term__bullets .sublist li {
  margin-top: 20px;
  padding-left: 2em;
  list-style-type: none;
  list-style-position: inside;
  counter-increment: number;
  line-height: 1.75;
}

.page-term__bullets .sublist li::before {
  display: marker;
  content: "(" counter(number, lower-alpha) ") ";
  margin-right: 10px;
}

.page-term__bottom {
  margin: 40px 0 60px 0;
  font-size: 18px;
}

@media screen and (max-width: 959px) {
  .page-term__bottom {
    font-size: 16px;
  }
}

.page-term__bottom .end {
  text-align: right;
}

.page-term__bottom .date {
  margin-top: 20px;
}

.page-contact section:last-child {
  margin-bottom: 60px;
}

.page-contact .breadcrumbs {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 959px) {
  .page-contact .breadcrumbs {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}

.page-contact__ttl {
  margin: 0 15px;
}

@media screen and (max-width: 959px) {
  .page-contact__ttl {
    margin: 0;
  }
}

@media screen and (max-width: 959px) {
  .page-contact__list {
    padding: 0 15px;
    max-width: 550px;
    margin: auto;
  }
}

.page-contact__list .section-title {
  max-width: 1160px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 959px) {
  .page-contact__list .section-title {
    margin-bottom: 30px;
    max-width: 520px;
  }
}

.page-contact__list-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 1280px;
  margin: auto;
}

@media screen and (max-width: 959px) {
  .page-contact__list-cont {
    display: block;
  }
}

.page-contact__list-cont .table-contents {
  margin-right: 40px;
}

@media screen and (max-width: 959px) {
  .page-contact__list-cont .table-contents {
    margin: 0 0 40px;
  }
}

.page-contact__list-cont > div {
  width: calc(815 / 1280 * 100%);
  padding-right: 15px;
}

@media screen and (max-width: 959px) {
  .page-contact__list-cont > div {
    width: 100%;
    padding-right: 0;
  }
}

.page-contact__list-item + .page-flow__list-item {
  margin-top: 40px;
}

.page-contact__list-item h3 {
  font-size: 32px;
  line-height: calc(48 / 32);
  color: #333;
  padding-bottom: 5px;
  margin-bottom: 30px;
  border-bottom: 3px solid #0f7dc2;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .page-contact__list-item h3 {
    font-size: 24px;
    line-height: calc(36 / 24);
  }
}

.page-contact__telephone-container {
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 4px rgba(209, 209, 209, 0.5);
  box-shadow: 0px 4px 4px rgba(209, 209, 209, 0.5);
  margin: 0 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 0;
}

@media screen and (max-width: 959px) {
  .page-contact__telephone-container {
    padding: 15px 0;
  }
}

.page-contact__telephone-container span {
  margin: 20px 0 0 0;
  font-size: 16px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .page-contact__telephone-container span {
    font-size: 14px;
    margin-top: 10px;
  }
}

.page-contact__telephone-image {
  -o-object-fit: contain;
  object-fit: contain;
  width: 88px;
  height: 80px;
}

@media screen and (max-width: 959px) {
  .page-contact__telephone-image {
    width: 44px;
    height: 40px;
  }
}

.page-contact__telephone-number {
  color: #0F7DC2;
  margin: 0 0 0 20px;
  font-size: 60px;
  line-height: 0.6667;
  font-weight: bold;
  text-decoration: none;
}

.page-contact__telephone-number:hover {
  opacity: 0.8;
}

@media screen and (max-width: 959px) {
  .page-contact__telephone-number {
    font-size: 32px;
  }
}

.page-contact .wpcf7-form-control-wrap {
  width: 100%;
  margin: 5px 0 30px 0;
  display: block;
}

.page-contact .wpcf7-form-control-wrap input,
.page-contact .wpcf7-form-control-wrap select,
.page-contact .wpcf7-form-control-wrap textarea {
  border: 1px solid #D1D1D1;
  background: #FAFAFA;
  padding: 10px;
  width: 100%;
  resize: none;
  font-size: 18px;
  color: #333;
}

@media screen and (max-width: 959px) {
  .page-contact .wpcf7-form-control-wrap input,
  .page-contact .wpcf7-form-control-wrap select,
  .page-contact .wpcf7-form-control-wrap textarea {
    font-size: 16px;
  }
}

.page-contact .wpcf7-form-control-wrap input::-webkit-input-placeholder, .page-contact .wpcf7-form-control-wrap select::-webkit-input-placeholder, .page-contact .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
  color: #999999;
}

.page-contact .wpcf7-form-control-wrap input::-moz-placeholder, .page-contact .wpcf7-form-control-wrap select::-moz-placeholder, .page-contact .wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: #999999;
}

.page-contact .wpcf7-form-control-wrap input:-ms-input-placeholder, .page-contact .wpcf7-form-control-wrap select:-ms-input-placeholder, .page-contact .wpcf7-form-control-wrap textarea:-ms-input-placeholder {
  color: #999999;
}

.page-contact .wpcf7-form-control-wrap input::-ms-input-placeholder, .page-contact .wpcf7-form-control-wrap select::-ms-input-placeholder, .page-contact .wpcf7-form-control-wrap textarea::-ms-input-placeholder {
  color: #999999;
}

.page-contact .wpcf7-form-control-wrap input::placeholder,
.page-contact .wpcf7-form-control-wrap select::placeholder,
.page-contact .wpcf7-form-control-wrap textarea::placeholder {
  color: #999999;
}

.page-contact .wpcf7-form-control-wrap input,
.page-contact .wpcf7-form-control-wrap select {
  height: 47px;
}

@media screen and (max-width: 959px) {
  .page-contact .wpcf7-form-control-wrap input,
  .page-contact .wpcf7-form-control-wrap select {
    height: 40px;
  }
}

.page-contact .wpcf7-form-control-wrap select {
  width: 400px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (max-width: 959px) {
  .page-contact .wpcf7-form-control-wrap select {
    width: 100%;
    padding: 5px 10px;
  }
}

.page-contact .wpcf7-form-control-wrap select::-ms-expand {
  display: none;
}

.page-contact .wpcf7-form-control-wrap textarea {
  height: 300px;
}

.page-contact .wpcf7-submit {
  white-space: break-spaces;
  width: 100%;
  background: transparent linear-gradient(100deg, #FF2B2B 0%, #FF7334 75%, #FF9636 100%) 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 0px 8px 16px #00000029;
  box-shadow: 0px 8px 16px #00000029;
  border-radius: 30px;
  padding: 13px 24px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 1.6px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

@media only screen and (min-width: 960px) {
  .page-contact .wpcf7-submit {
    width: fit-content;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.page-contact .wpcf7-submit:hover {
  opacity: 0.8;
}

.page-contact .wpcf7 .acceptance-473 {
  background: #E7F2F9;
}

.page-contact .wpcf7 .acceptance-473 .wpcf7-list-item-label {
  padding: 20px 20px 20px 64px;
  display: block;
  color: #333333;
  font-family: "Hiragino Kaku Gothic ProN";
}

@media only screen and (min-width: 960px) {
  .page-contact .wpcf7 .acceptance-473 .wpcf7-list-item-label {
    padding: 30px 30px 30px 69px;
  }
}

.page-contact .wpcf7 .acceptance-473 .checkmark {
  position: absolute;
  height: 24px;
  width: 24px;
  top: 0;
  bottom: 0;
  background-color: #E7F2F9;
  border: 1px solid #333333;
  left: 20px;
  margin: auto;
}

.page-contact .wpcf7 .acceptance-473 .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (min-width: 960px) {
  .page-contact .wpcf7 .acceptance-473 .checkmark {
    left: 30px;
  }
}

.page-contact .wpcf7 .acceptance-473 label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.page-contact .wpcf7 .acceptance-473 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.page-contact .wpcf7 .acceptance-473 input:checked ~ .wpcf7-list-item-label .checkmark {
  background-color: #333;
}

.page-contact .wpcf7 .acceptance-473 input:checked ~ .wpcf7-list-item-label .checkmark::after {
  display: block;
}

.page-contact .wpcf7 .required {
  color: #E31732;
  font-size: 12px;
  margin: 0 0 0 10px;
  font-family: "Hiragino Kaku Gothic ProN";
}

@media only screen and (min-width: 960px) {
  .page-contact .wpcf7 .required {
    font-size: 14px;
  }
}

.page-contact .wpcf7 .your-contents {
  position: relative;
}

.page-contact .wpcf7 .your-contents select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.page-contact .wpcf7 .your-contents::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #333333 transparent;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media only screen and (min-width: 960px) {
  .page-contact .wpcf7 .your-contents {
    width: 400px;
  }
}

.page-contact .wpcf7 label {
  color: #333333;
  font-size: 16px;
  font-weight: bold;
}

@media only screen and (min-width: 960px) {
  .page-contact .wpcf7 label {
    font-size: 18px;
  }
}
/* vCoV[|V[ */
.policy-area {
    margin: 40px 0;
    font-size: 14px;
}

.privacy-policy-agree p {
    padding: 0;
}

.policy-block-area {
    position: relative;
}

.privacy-policy-agree {
    margin: 0 auto 15px;
    padding: 10px 15px 25px;
    background-color: #f8f8f8;
    border: 2px solid #aaa;
    border-radius: 5px;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
    color: #555;
}

.privacy-policy-agree .heading {
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.privacy-policy-agree .lead {
    padding: 0 10px 5px;
    text-align: left;
    line-height: 1.1;
}

.privacy-policy-agree .policy {
    overflow: auto;
    height: 200px;
    padding: 4px 9px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
}

.privacy-policy-agree .policy .policy-main-heading {
    font-weight: bold;
}

.privacy-policy-agree .policy .policy-heading {
    margin: 10px 0 0;
    font-weight: bold;
    border:none;
    color:#555;
    font-size:16px;
}

.privacy-policy-agree .policy table {
    margin: 5px;
}
.privacy-policy-agree .policy th,
.privacy-policy-agree .policy td {
    padding: 5px;
    border: 1px solid #333;
}

.privacy-policy-agree .policy td.column1 {
    width: 20px;
    text-align: center;
    vertical-align: middle;
}

.privacy-policy-agree .policy td.column2 {
    width: 150px;
    vertical-align: middle;
}

.privacy-policy-agree .policy td.column3 {
    vertical-align: middle;
}

.privacy-policy-agree .policy ul {
    margin: 0 10px;
}

.privacy-policy-agree .policy .responsibility {
    margin-top: 10px;
    text-align: right;
}

.privacy-policy-agree h3 {
    padding-bottom: 5px;
    margin-bottom: 30px !important;
    border-bottom: 3px solid #0f7dc2;
}