@charset "UTF-8";
/* Scss Document */
html {
  min-width: 1200px;
}

#menu {
  display: block;
}

.slicknav_menu {
  display: none;
}

i.fa.fa-caret-right {
  font-size: 14px;
  display: inline-block;
}

/* Nav
-----------------------------------------*/
.Nav {
  margin-top: 20px;
  float: right;
  margin-right: 20px;
  /*  border-top: solid 1px #F5F4F0;
  border-bottom: solid 1px #F5F4F0;*/
}

@media screen and (max-width: 1000px) {
  .Nav {
    position: relative;
    border-top: none;
  }
}

.Nav .navbtn {
  display: none;
}

@media screen and (max-width: 1000px) {
  .Nav .navbtn {
    display: block;
    position: absolute;
    top: -50px;
    right: 10px;
  }
}

@media screen and (max-width: 1000px) {
  .Nav .navbtn a,
  .Nav .navbtn a.close {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #fff;
  }
  .Nav .navbtn a::before,
  .Nav .navbtn a.close::before {
    position: absolute;
    top: 10px;
    left: 10px;
    content: "";
    width: 20px;
    height: 3px;
    background-color: #FFF;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .Nav .navbtn a.open::before {
    top: 19px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  .Nav .navbtn a::after,
  .Nav .navbtn a.close::after {
    position: absolute;
    bottom: 10px;
    left: 10px;
    content: "";
    width: 20px;
    height: 3px;
    background-color: #FFF;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .Nav .navbtn a.open::after {
    bottom: 18px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
}

@media screen and (max-width: 1000px) {
  .Nav .navbtn a span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  .Nav .navbtn a span::after,
  .Nav .navbtn a.close span::after {
    position: absolute;
    top: 18px;
    left: 10px;
    content: "";
    width: 20px;
    height: 3px;
    background-color: #FFF;
  }
  .Nav .navbtn a.open span::after {
    display: none;
  }
}

.Nav ul.close {
  display: none;
  border-top: solid 1px #F5F4F0;
}

.Nav > ul {
  margin: 0 auto;
  max-width: 1000px;
}

@media screen and (max-width: 1000px) {
  .Nav > ul {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background-color: #FFF;
  }
}

.Nav > ul > li {
  position: relative;
  font-size: 15px;
  display: inline-block;
}

@media screen and (max-width: 1000px) {
  .Nav > ul > li {
    display: block;
    border-bottom: solid 1px #dddddd;
  }
}

.Nav > ul > li a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 13px 15px;
  font-size: 15px;
  color: #000;
  /*  background-color: #fff;*/
  z-index: 2;
}

.Nav > ul > li.parent > a {
  padding-right: 25px;
}

.Nav > ul > li.parent > a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 6px;
  height: 6px;
  margin: -6px 0 0 0;
  border-top: solid 2px #00a0e9;
  border-right: solid 2px #00a0e9;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media screen and (max-width: 1000px) {
  .Nav > ul > li.parent.open > a::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

@media screen and (max-width: 1000px) {
  .Nav > ul > li.parent.open {
    border-bottom: none;
  }
}

.Nav > ul > li.parent.open > a {
  color: #FFF;
}

.Nav > ul > li.parent.open > a::after {
  background: #333;
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media screen and (max-width: 1000px) {
  .Nav > ul > li.parent.open > a {
    color: #FFF;
  }
}

.Nav > ul > li a:hover {
  color: #26acea;
}

.Nav > ul > li a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.Nav > ul > li a,
.Nav > ul > li a::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.Nav > ul > li a::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.Nav > ul > li a:hover::after {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* 2階層 */
.Nav > ul > li > ul {
  display: none;
  position: absolute;
  top: 53px;
  left: 0;
  width: auto;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9;
}

@media screen and (max-width: 1000px) {
  .Nav > ul > li > ul {
    background-color: #fbfbfb;
    position: static;
  }
}

.Nav > ul > li > ul li {
  white-space: nowrap;
}

.Nav > ul > li > ul li a {
  position: relative;
  padding: 12px 27px 12px 27px;
}

@media screen and (max-width: 1000px) {
  .Nav > ul > li > ul li a {
    border-bottom: solid 1px #dddddd;
    background-color: #EEE;
  }
}

.Nav > ul > li > ul li a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  margin: -6px 0 0 0;
  border-top: solid 2px #00a0e9;
  border-right: solid 2px #00a0e9;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.Nav > ul > li > ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1000px) {
  .Nav > ul > li > ul li a:hover {
    background-color: #FFF;
  }
}

.Nav > ul > li > ul li ul li a {
  padding-left: 42px;
}

.Nav > ul > li > ul li ul li a::before {
  left: 20px;
}

/*header nav {
  text-align: center;
  float: right;
  width: 70%;
    padding: 30px;

  ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin: auto;

    li a {
      color: #003327;
      font-size: 14px;
      text-decoration: none;
      padding: 2px 15px;

      &:hover {
        color: #43bfa6;
      }
    }

  }
}*/
/*.effect-fade {
  opacity: 0;
  transform: translate(0, 35px);
  transition: all 1000ms;
}

.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
*/
#nav_toggle {
  display: none;
}

header {
  width: 100%;
  z-index: 100;
  position: absolute;
  top: 0;
}

h1 {
  width: 30%;
  float: left;
  height: 41px;
  padding: 20px 0px 20px 40px;
}

@media screen and (max-width: 798px) {
  h1 {
    float: none;
    width: 100%;
  }
}

h1 img {
  width: auto;
  height: 41px;
}

@media screen and (max-width: 798px) {
  h1 img {
    width: 80px;
    height: auto;
  }
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.6;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -15px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.pchidden {
  display: none;
}

.nav1 a {
  background-color: #43bfa6;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  font-weight: 500;
  margin-left: 15px;
}

.nav1 a:before {
  color: #fff;
  content: "\f0e0";
  display: block;
  font-family: FontAwesome;
  margin-bottom: 3px;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.nav1 a:hover {
  background-color: #2a7cc4;
  color: #fff;
}

.nav1 a:hover:before {
  color: #fff;
}

.mr20 {
  margin-right: 20px !important;
}

.container {
  width: 1000px;
  margin: auto;
}

@media screen and (max-width: 798px) {
  .container {
    width: 94%;
    margin: auto;
  }
}

/*トップページ*/
#promo {
  background-image: url("../../imgs/newzero/teaser_bg.jpg");
  background-repeat: no-repeat;
  min-height: 500px;
  padding: 260px 5% 90px 5%;
  text-align: center;
  background-position: center center;
  background-size: cover;
}

#promo h3 {
  font-size: 35px;
  text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}

#promo h2 {
  font-size: 63px;
  line-height: 1.2;
  text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}

#promo h2 span {
  font-size: 22px;
  display: block;
}

@media screen and (max-width: 798px) {
  #promo {
    padding: 290px 8% 20px;
  }
}

.tooltip {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.tooltip p {
  margin: 0;
  padding: 0;
}

.description {
  opacity: 0;
  position: absolute;
  padding: 10px;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.6em;
  color: #000;
  top: 220px;
  left: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  width: 190px;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.description:before {
  content: "";
  position: absolute;
  top: -30px;
  right: 80px;
  border: 15px solid transparent;
  border-top: 15px solid rgba(255, 255, 255, 0.9);
  margin-left: -15px;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

.tooltip:hover .description {
  display: inline-block;
  opacity: 1;
  top: 230px;
  left: 10px;
  background-color: rgba(255, 255, 255, 0.9);
}

.promo_ic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 60px auto 230px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.promo_ic img {
  margin: 8px;
}

ul.promo_ic {
  list-style: none;
  padding: 0px;
}

.pr_btn1 {
  width: 74px;
  background-color: #fff;
    /*20220404 MOD S
  border-bottom: solid 1px #ccc;
    MOD E*/
   border: solid 1.5px #ccc; 
  font-size: 9px;
  text-align: center;
  padding: 13px 5px 0px;
  letter-spacing: 0px;
  position: relative;
  height: 77px;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.pr_btn1 p {
  margin-bottom: 0px;
}

.pr_btn1 a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  z-index: 2;
  /* 必要であればリンク要素の重なりのベース順序指定 */
}

.pr_btn1:hover {
  background-color: #f7f7f7;
}

.pr_btn1:first-child {
  border-top: solid 1px #ccc;
  line-height: 1.2;
}

@keyframes promo_left1 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes promo_left1 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.promo_left {
  position: fixed;
  left: 0;
  top: 25%;
  z-index: 100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  /* animation-delay: 1.2s;*/
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  animation-name: promo_left1;
  -webkit-animation-name: promo_left1;
}

@keyframes promo_right1 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes promo_right1 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.promo_right {
  position: fixed;
  right: 0;
  top: 25%;
  z-index: 100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  /* animation-delay: 1.3s;*/
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  animation-name: promo_right1;
  -webkit-animation-name: promo_right1;
}

.midashi1 {
  color: #26acea;
  font-size: 52px;
  line-height: 1.4;
  margin: 73px 0px 40px;
  text-align: center;
  font-weight: 700;
}

.midashi1bk {
  color: #fff;
  background-color: #26acea;
  font-size: 65px;
  line-height: 1.4;
  margin: 73px 0px 40px;
  text-align: center;
  font-weight: 700;
  padding-bottom: 10px;
}

.midashi1bk span {
  font-size: 40px;
}

.midashi1bk .tx54 {
  font-size: 85px;
  font-weight: 700;
  margin-right: -9px;
}

.n_ti1 {
  font-size: 38px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 35px;
}

.n_ti1 span {
  color: #f00;
}

.n_area2 {
  padding-bottom: 80px;
}

.mb20 {
  margin-bottom: 20px;
}

.n_box11 {
  background-color: #00b0f0;
  color: #fff;
  padding: 30px 40px;
  margin-bottom: 60px;
}

.n_box11 h4 {
  font-size: 46px;
  font-weight: 700;
  margin: 0 0 20px;
}

.n_box11 p {
  color: #fff;
}

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

.n_box1 {
  width: 350px;
  text-align: center;
}

.n_box2 {
  width: 305px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.n_img1 {
  height: 285px;
}

.ta_c {
  text-align: center;
}

.ta_r {
  text-align: right;
  margin-bottom: 10px;
}

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

.sec1_box p {
  margin-bottom: 3px;
  font-weight: 700;
}

.sec1_box_in {
  width: 177px;
  text-align: center;
  margin-left: 22px;
  margin-right: 22px;
  position: relative;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.sec1_box_in a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  z-index: 2;
  /* 必要であればリンク要素の重なりのベース順序指定 */
}

.sec1_box_in:hover {
  filter: alpha(opacity=70);
  /* IE 6,7*/
  -ms-filter: "alpha(opacity=70)";
  /* IE 8,9 */
  -moz-opacity: 0.7;
  /* FF , Netscape */
  -khtml-opacity: 0.7;
  /* Safari 1.x */
  opacity: 0.7;
  zoom: 1;
  /*IE*/
}

.contact {
  background-color: #0073d4;
  padding: 30px 10px;
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.con1 {
  font-size: 64px;
  color: #fff;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.arrow1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto 25px;
}

.btn-square {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #fab840;
  /*ボタン色*/
  color: #FFF;
  font-size: 30px;
  border-bottom: solid 4px #e59503;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.btn-square span {
  font-size: 22px;
  padding: 2px 10px;
  background-color: #fff;
  display: block;
  color: #333;
  text-align: center;
  width: 160px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
}

.btn-square:hover {
  color: #fff;
}

.btn-square:hover {
  background-color: #fcc663;
}

.btn-square2 {
  display: inline-block;
  width: 310px;
  text-align: center;
  line-height: 80px;
  text-decoration: none;
  background: #fab840;
  /*ボタン色*/
  color: #FFF;
  font-size: 30px;
  margin-top: 30px;
  border-bottom: solid 4px #e59503;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.btn-square2:hover {
  color: #fff;
}

.btn-square2:hover {
  background-color: #fcc663;
}

.sec2 {
  background-color: #e1f6ff;
  padding-bottom: 80px;
  padding-top: 5px;
}

.sec2_inner {
  position: relative;
}

.sec2_img {
  position: relative;
  z-index: 1;
}

.sec2_tx {
  position: absolute;
  z-index: 2;
  width: 570px;
  padding: 40px 0px 40px 40px;
  bottom: -10px;
  right: 0px;
  background-color: rgba(225, 246, 255, 0.8);
}

.sec3 {
  background-color: #414141;
  padding: 40px;
  color: #fff;
}

.sec3_inner {
  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;
}

.sec3_img {
  padding-right: 60px;
  padding-left: 50px;
  width: 275px;
}

.sec3_tx {
  width: 725px;
}

.sec3_tx h4 {
  font-size: 31px;
  margin-bottom: 25px;
  line-height: 1.4;
}

.sec3_tx h5 {
  font-weight: 600;
  margin: 20px 0px 7px;
  font-size: 16px;
}

.sub_tx {
  font-size: 12px;
}

.td1 {
  width: 25%;
}

.td2 {
  width: 25%;
}

.box_red {
  background-color: #feebeb;
  padding: 25px;
  margin-bottom: 50px;
  text-align: center;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 15px;
}

.midashi_gr {
  background-color: #7bbc2c;
  width: 315px;
  margin: 0px auto 15px;
  color: #fff;
  padding: 4px 10px;
  text-align: center;
  border-radius: 50px;
  font-size: 21px;
}

.list_gr ul {
  list-style: none;
  margin: 0px;
  display: inline-block;
  padding: 0px;
}

.list_gr li {
  float: left;
  margin: 0px 32px;
  font-weight: 600;
}

.list_gr li:before {
  color: #7bbc2c;
  content: "●";
  font-family: FontAwesome;
  margin-right: 3px;
}

.td31 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 45px auto 65px;
}

.td31_in {
  border: solid 3px #26acea;
  border-radius: 13px;
  width: 300px;
  height: 260px;
  text-align: center;
}

.td31_in p {
  font-weight: 600;
  line-height: 1.4;
  color: #26acea;
  font-size: 22px;
}

.td31_in img {
  margin: 20px auto;
}

.mr50 {
  margin-right: 50px;
}

.midashi4 {
  background-color: #26acea;
  padding: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 49px;
  line-height: 1.4;
  margin-bottom: 0px;
  color: #fff;
}

/*20220404 ADD S */

.midashi41 {
  margin-top: 60px;
  padding: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 49px;
  line-height: 1.4;
  margin-bottom: 0px;
  color: #26acea; }

.btn-square22 {
  display: inline-block;
  width: 380px;
  text-align: center;
  line-height: 80px;
  text-decoration: none;
  background: #fab840;
  /*ボタン色*/
  color: #FFF;
  font-size: 24px;
  margin-top: 0px;
  border-bottom: solid 4px #e59503;
  border-radius: 10px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s; }
  .btn-square22:hover {
    color: #fff; }

.btn-square22:hover {
  background-color: #fcc663; }

.midashi_q {
  color: #333;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 26px;
  border: solid 4px #26acea; }

.midashi_q:before {
  color: #26acea;
  content: "Q.";
  margin-right: 8px; }

.midashi4_9:before {
  content: url("../../imgs/newzero/sales/sec5_ic.png");
  display: inline-block;
  position: relative;
  top: 5px;
  width: 76px;
  height: 56px;
  padding-left: 10px; }

.box_a {
  padding: 15px 15px 15px 55px;
  position: relative;
  margin-bottom: 40px; }

.box_a:before {
  color: #7bbc2c;
  content: "A.";
  font-size: 26px;
  position: absolute;
  left: 20px;
  top: 5px;
  font-weight: bold;
  margin-right: 8px; }

/*20220404 ADD E */

.midashi4_1:before {
  content: url(../../imgs/newzero/ic1.png);
  display: inline-block;
  position: relative;
  top: 7px;
  width: 76px;
  height: 56px;
  padding-left: 10px;
}

.midashi4_2 {
  line-height: 1.2;
}

.midashi4_2:before {
  content: url(../../imgs/newzero/ic2.png);
  display: inline-block;
  position: relative;
  top: 7px;
  width: 76px;
  height: 56px;
  padding-left: 10px;
}

.midashi4_3:before {
  content: url(../../imgs/newzero/ic3.png);
  display: inline-block;
  position: relative;
  top: 7px;
  width: 76px;
  height: 56px;
  padding-left: 10px;
}

.midashi4_4:before {
  content: url(../../imgs/newzero/ic4.png);
  display: inline-block;
  position: relative;
  top: 7px;
  width: 76px;
  height: 56px;
  padding-left: 10px;
}

.midahsi5 {
  font-size: 34px;
  text-align: center;
  line-height: 1.4;
  margin: 38px auto;
}







.point1 {
  background-image: url("../../imgs/newzero/point1.png");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 90px;
  padding: 25px 0px;
  font-size: 26px;
  color: #0b36b1;
  margin-bottom: 20px;
  padding: 30px 0 30px 100px;
  line-height: 1.4;
}
/* 20220712棚橋追加 */
.point1 span {
  color: #000;
  font-size: 14px;
margin-top: 5px;
  display: block;
}

.point2 {
  background-image: url("../../imgs/newzero/point2.png");
  background-repeat: no-repeat;
  background-position: left center;
  padding: 25px 0px;
  padding-left: 90px;
  line-height: 1.4;
  font-size: 26px;
  color: #0b36b1;
  margin-bottom: 20px;
}

/* .point2 span {
  color: #000;
  font-size: 14px;
  display: block;
} */

.point2b {
  background-image: url("../../imgs/newzero/point2.png");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 90px;
  line-height: 1.4;
  font-size: 26px;
  color: #0b36b1;
  margin-bottom: 20px;
  padding: 30px 0 30px 100px;
}

.point3 {
  background-image: url("../../imgs/newzero/point3.png");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 90px;
  line-height: 83px;
  font-size: 26px;
  color: #0b36b1;
  margin-bottom: 20px;
}

.midashi_pr {
  background-color: #c5e7f8;
  border: solid 1px #94c2d8;
  text-align: center;
  padding: 10px;
  margin: 50px 0px 5px;
}

.table1 table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 10px;
}

.table1 td {
  border: 1px solid #000;
  padding: 15px 20px !important;
  background-color: #fff;
  text-align: center !important;
}

.table1 th {
  border: 1px solid #000;
  font-weight: bold;
  background-color: #f7f7f7;
  color: #000;
  padding: 15px 20px !important;
  text-align: center !important;
}

.td3 td {
  background-color: #feebeb;
}

.br_box {
  background-color: #d7ecf7;
  padding-bottom: 70px;
  padding-top: 90px;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url("../../imgs/newzero/arrow2.png");
}

.br_box p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

.midashi6 {
  text-align: center;
  font-size: 40px;
  color: #26acea;
  font-weight: 600;
}

.osusume_ti {
  width: 350px;
  line-height: 68px;
  font-size: 30px;
  border: solid 3px #7bbc2c;
  color: #7bbc2c;
  text-align: center;
  margin-bottom: 0px;
  margin-left: auto;
  border-radius: 50px;
  margin-top: 50px;
  margin-right: auto;
}

.ar_img {
  margin-top: -8px;
}

.os_box {
  width: 820px;
  margin: 40px auto;
  background-color: #f8f8eb;
  padding: 45px 100px;
  border-radius: 15px;
}

.os_box ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.os_box li {
  font-size: 32px;
  line-height: 1.8;
  font-weight: 600;
}

.os_box li:before {
  color: #7bbc2c;
  content: "\f00c";
  font-family: FontAwesome;
  margin-right: 3px;
}

.tx_2000 {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.4;
}

.tx_2000 span {
  font-size: 90px;
  font-weight: 600;
  line-height: 1.4;
  color: #FF0004;
}

.tx34 {
  font-size: 34px;
  line-height: 1.4;
  font-weight: 600;
}

.tx24 {
  font-size: 24px;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 30px;
}

.midashi7 {
  font-size: 40px;
  color: #26acea;
  text-align: center;
  padding: 10px;
  border: solid 3px #26acea;
  margin: 50px 0px 20px;
}

ul.td31b {
  list-style: none;
  margin: 0px 0px 20px;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.td31b_in {
  width: 320px;
  background-color: #eaf6fb;
  color: #26acea;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 15px 10px;
  border-radius: 10px;
}

.mt45 {
  margin-top: 40px;
}

.mt90 {
  margin-top: 90px;
}

.ank4 {
  margin: 30px auto;
}

.flogo {
  margin-bottom: 10px;
}

.btn1 a {
  background-color: #26acea;
  text-decoration: none;
  color: #fff;
  margin-top: 20px;
  border-radius: 4px;
  font-size: 13px;
  padding: 4px 10px;
}

.flink ul {
  list-style: none;
  margin: 40px 0px;
  padding: 0px;
  display: inline-block;
}

.flink li {
  float: left;
  margin: 0px 10px;
  font-size: 13px;
}

.flink li a {
  color: #595959;
  text-decoration: none;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.flink li a:hover {
  color: #26acea;
  text-decoration: none;
}

.menu > li.menu__single {
  position: relative;
}

li.menu__single ul.menu__second-level {
  position: absolute;
  top: 40px;
  width: 100%;
  background: #072A24;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

li.menu__single:hover ul.menu__second-level {
  top: 50px;
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 798px) {
  html {
    min-width: 100%;
  }
  body,
  td,
  p {
    font-size: 14px;
  }
  /*開閉ボタン*/
  #nav_toggle {
    display: block;
    width: 40px;
    height: 40px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 200;
  }
  #nav_toggle div {
    position: relative;
  }
  #nav_toggle span {
    display: block;
    height: 3px;
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #nav_toggle span:nth-child(1) {
    top: 0px;
  }
  #nav_toggle span:nth-child(2) {
    top: 12px;
  }
  #nav_toggle span:nth-child(3) {
    top: 24px;
  }
  /*開閉ボタンopen時*/
  .open #nav_toggle span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  header nav {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    background: white;
    left: 0;
  }
  header nav ul {
    display: block;
    width: 90%;
    height: 350px;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    border-right: none;
  }
  header nav ul li {
    margin: 0 auto;
    text-align: center;
  }
  header nav ul li:last-child {
    border: none;
  }
  header nav ul li a {
    display: block;
    color: #000;
    border-bottom: solid 1px #ccc;
    padding: 15px;
  }
  header nav ul li a,
  header nav ul li {
    color: #000;
    border-left: none;
    border-right: none;
  }
  .nav1 a {
    background-color: #43bfa6;
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    width: 100%;
    font-weight: 500;
    margin-left: 0px;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .flink {
    display: none !important;
  }
  .pchidden {
    display: block;
  }
  .sphidden {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */