@charset "UTF-8";
.header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  z-index: 100;
}
.header .hd_line {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  top: 0;
  position: absolute;
  pointer-events: none;
  z-index: 6;
  -webkit-transition-property: background-color, -webkit-box-shadow;
  transition-property: background-color, -webkit-box-shadow;
  transition-property: background-color, box-shadow;
  transition-property: background-color, box-shadow, -webkit-box-shadow;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-box-shadow: 0 2px 6px rgba(15, 31, 41, 0.16), 0 0 3px rgba(15, 31, 41, 0.08);
  box-shadow: 0 2px 6px rgba(15, 31, 41, 0.16), 0 0 3px rgba(15, 31, 41, 0.08);
}
.header .header_wrap {
  position: relative;
  height: 100px;
  z-index: 5;
}
.header .header_wrap .site_logo_wrap {
  display: inline-block;
  position: relative;
  z-index: 150;
  margin-left: 34px;
  padding-top: 20px;
}
.header .header_wrap .site_logo_wrap .site_logo {
  width: 240px;
}
.header .header_wrap .header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  height: 100px;
  right: 40px;
}
.header .header_wrap .header_nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 0;
  height: 100%;
}
.header .header_wrap .header_nav .menu .menu_li {
  position: relative;
  margin-right: 28px;
  height: 100%;
}
.header .header_wrap .header_nav .menu .menu_li .menu_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.header .header_wrap .header_nav .menu .menu_li .menu_link .under_bt {
  width: 10px;
  margin-right: 10px;
}
.header .header_wrap .header_nav .menu .menu_li .menu_link .under_bt_on {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-animation: under_img 0.5s;
  animation: under_img 0.5s;
}
.header .header_wrap .header_nav .menu .menu_li .menu_link .under_bt_off {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-animation: under_img_off 0.5s;
  animation: under_img_off 0.5s;
}
.header .header_wrap .header_nav .menu .menu_li .menu_link .menu_txt {
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .header_wrap .header_nav .menu .menu_li .menu_link .menu_txt:hover {
  color: #00629d;
}
.header .header_wrap .header_nav .menu .menu_li .menu_under {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
}
.header .header_wrap .header_nav .menu .menu_li .menu_under .menu_under_li {
  line-height: 1;
  padding: 0 15px;
  border-right: 1px solid #333333;
}
.header .header_wrap .header_nav .menu .menu_li .menu_under .menu_under_li:first-child {
  border-left: 1px solid #333333;
}
.header .header_wrap .header_nav .menu .menu_li .menu_under .menu_under_li .menu_under_a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .header_wrap .header_nav .menu .menu_li .menu_under .menu_under_li .menu_under_a:hover {
  color: #00629d;
}
.header .header_wrap .header_nav .menu .menu_li .menu_under_wrap {
  -webkit-box-shadow: 0 2px 6px rgba(15, 31, 41, 0.16), 0 0 3px rgba(15, 31, 41, 0.08);
  box-shadow: 0 2px 6px rgba(15, 31, 41, 0.16), 0 0 3px rgba(15, 31, 41, 0.08);
  display: block;
  width: 100vw;
  position: fixed;
  top: 100px;
  left: 0;
  background-color: #cbe5ee;
  padding: 20px 0;
  opacity: 0;
}
.header .header_wrap .header_nav .menu .menu_li .menu_under_wrap_on {
  opacity: 1;
  -webkit-animation: menu_up 0.3s;
  animation: menu_up 0.3s;
}
.header .header_wrap .header_nav .menu_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .header_wrap .header_nav .menu_btn .menu_btn_link {
  position: relative;
  height: 40px;
  border-radius: 3px;
}
.header .header_wrap .header_nav .menu_btn .menu_btn_link .menu_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.header .header_wrap .header_nav .menu_btn .menu_btn_link .menu_btn_wrap .menu_btn_img {
  width: 22px;
  margin-right: 10px;
}
.header .header_wrap .header_nav .menu_btn .menu_btn_link .menu_btn_wrap .menu_btn_txt {
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}
.header .header_wrap .header_nav .menu_btn .menu_btn_link_1 {
  width: 160px;
  background-color: #00629d;
  margin-right: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .header_wrap .header_nav .menu_btn .menu_btn_link_1:hover {
  background-color: #0180cc;
}
.header .header_wrap .header_nav .menu_btn .menu_btn_link_2 {
  width: 160px;
  background-color: #ce524f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .header_wrap .header_nav .menu_btn .menu_btn_link_2:hover {
  background-color: #ea5c58;
}

@-webkit-keyframes under_img {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
@keyframes under_img {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes under_img_off {
  0% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes under_img_off {
  0% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes menu_up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu_up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 1440px) {
  .header {
    display: block;
    position: fixed;
    width: 100%;
    height: 100px;
    background-color: #fff;
    z-index: 100;
  }
  .header .header_wrap {
    position: relative;
    height: 100px;
  }
  .header .header_wrap .site_logo_wrap {
    display: inline-block;
    position: relative;
    z-index: 150;
    margin-left: 34px;
    padding-top: 20px;
  }
  .header .header_wrap .site_logo_wrap .site_logo {
    width: 16.6vw;
  }
  .header .header_wrap .header_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    height: 100px;
    right: 40px;
  }
  .header .header_wrap .header_nav .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0;
    height: auto;
  }
  .header .header_wrap .header_nav .menu .menu_li {
    position: relative;
    margin-right: 1.25vw;
    height: auto;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_link .under_bt {
    width: 10px;
    margin-right: 10px;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_link .under_bt_on {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-animation: under_img 0.5s;
    animation: under_img 0.5s;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_link .menu_txt {
    font-size: 16px;
    font-size: 1.1111111111vw;
    line-height: 1;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_under {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-size: 1.1111111111vw;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_under .menu_under_li {
    line-height: 1;
    padding: 0 1vw;
    border-right: 1px solid #333333;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_under .menu_under_li:first-child {
    border-left: 1px solid #333333;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_under_wrap {
    display: block;
    width: 100vw;
    position: fixed;
    top: 100px;
    left: 0;
    background-color: #cbe5ee;
    padding: 20px 0;
  }
  .header .header_wrap .header_nav .menu_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .header_wrap .header_nav .menu_btn .menu_btn_link {
    position: relative;
    height: 40px;
    border-radius: 3px;
  }
  .header .header_wrap .header_nav .menu_btn .menu_btn_link .menu_btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .header .header_wrap .header_nav .menu_btn .menu_btn_link .menu_btn_wrap .menu_btn_img {
    width: 1.5vw;
    margin-right: 0.7vw;
  }
  .header .header_wrap .header_nav .menu_btn .menu_btn_link .menu_btn_wrap .menu_btn_txt {
    font-size: 16px;
    font-size: 1.1111111111vw;
    color: #fff;
    white-space: nowrap;
    line-height: 1;
  }
  .header .header_wrap .header_nav .menu_btn .menu_btn_link_1 {
    width: 12vw;
    background-color: #00629d;
    margin-right: 10px;
  }
  .header .header_wrap .header_nav .menu_btn .menu_btn_link_2 {
    width: 12vw;
    background-color: #ce524f;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    display: block;
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: #fff;
    z-index: 100;
  }
  .header .hd_line {
    height: 80px;
    display: block !important;
  }
  .header .header_wrap {
    position: relative;
    height: 80px;
  }
  .header .header_wrap::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #fff;
    z-index: 1;
  }
  .header .header_wrap .site_logo_wrap {
    display: inline-block;
    position: relative;
    z-index: 150;
    padding-top: 17px;
    margin-left: 5vw;
  }
  .header .header_wrap .site_logo_wrap .site_logo {
    width: 180px;
  }
  .header .header_wrap .hamb {
    position: absolute;
    right: 22px;
    top: 28px;
    left: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 35px;
    height: 25px;
    cursor: pointer;
    z-index: 110;
  }
  .header .header_wrap .hamb .hamb_in {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  .header .header_wrap .hamb .hamb_in .line {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #00629d;
    display: block;
    border-radius: 3px;
  }
  .header .header_wrap .hamb .hamb_in .line_1 {
    top: 0;
  }
  .header .header_wrap .hamb .hamb_in .line_2 {
    top: 11px;
  }
  .header .header_wrap .hamb .hamb_in .line_3 {
    bottom: 0;
  }
  .header .header_wrap .header_nav {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    padding-top: 100px;
    overflow: scroll;
    -webkit-transform: translateY(-100vh);
    transform: translateY(-100vh);
    padding-bottom: 100px;
  }
  .header .header_wrap .header_nav .menu {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0;
  }
  .header .header_wrap .header_nav .menu .menu_li {
    position: relative;
    margin-right: 0;
    border-bottom: 1px solid #cccccc;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_link .menu_txt {
    padding: 4.8vw 0 4.8vw 5vw;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_link .under_bt {
    width: 4vw;
    margin-right: 10px;
    position: absolute;
    right: 5vw;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_link .under_bt_on {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-animation: under_img 0.5s;
    animation: under_img 0.5s;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_link .under_bt_off {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-animation: under_img_off 0.5s;
    animation: under_img_off 0.5s;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_link .menu_txt {
    line-height: 1;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_under {
    width: 100%;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_under .menu_under_li {
    line-height: 1;
    padding: 5vw;
    border-top: 1px solid #cccccc;
    border-right: 0px solid #cccccc;
    width: 50%;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_under .menu_under_li:first-child {
    border-left: 0px solid #cccccc;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_under .menu_under_li:nth-child(n) {
    border-left: 1px solid #cccccc;
  }
  .header .header_wrap .header_nav .menu .menu_li .menu_under_wrap {
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100vw;
    position: relative;
    top: auto;
    left: 0;
    background-color: #cbe5ee;
    padding: 0;
  }
  .header .header_wrap .header_nav .menu_btn {
    position: relative;
    display: block;
    margin: 0 auto;
  }
  .header .header_wrap .header_nav .menu_btn .menu_btn_link {
    display: block;
    position: relative;
    height: 12vw;
    border-radius: 3px;
    margin: 5vw auto 0;
  }
  .header .header_wrap .header_nav .menu_btn .menu_btn_link .menu_btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header .header_wrap .header_nav .menu_btn .menu_btn_link .menu_btn_wrap .menu_btn_img {
    position: absolute;
    left: 5vw;
    width: 6vw;
    margin-right: 10px;
  }
  .header .header_wrap .header_nav .menu_btn .menu_btn_link .menu_btn_wrap .menu_btn_txt {
    color: #fff;
    white-space: nowrap;
    line-height: 1;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .header .header_wrap .header_nav .menu_btn .menu_btn_link_1 {
    width: 85vw;
    background-color: #00629d;
    margin: 5vw auto 0;
  }
  .header .header_wrap .header_nav .menu_btn .menu_btn_link_2 {
    width: 85vw;
    background-color: #ce524f;
  }
  .header .header_wrap .header_nav.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  @-webkit-keyframes under_img {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(-180deg);
      transform: rotate(-180deg);
    }
  }
  @keyframes under_img {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(-180deg);
      transform: rotate(-180deg);
    }
  }
  @-webkit-keyframes under_img_off {
    0% {
      -webkit-transform: rotate(-180deg);
      transform: rotate(-180deg);
    }
    100% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
  @keyframes under_img_off {
    0% {
      -webkit-transform: rotate(-180deg);
      transform: rotate(-180deg);
    }
    100% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
}
/*=============================
 * *#btn
 * *============================= */
#hamb_bottun span:nth-of-type(1) {
  -webkit-animation: btn07-bar01 0.75s forwards;
  animation: btn07-bar01 0.75s forwards;
}
#hamb_bottun span:nth-of-type(2) {
  -webkit-transition: all 0.25s 0.25s;
  transition: all 0.25s 0.25s;
  opacity: 1;
}
#hamb_bottun span:nth-of-type(3) {
  -webkit-animation: btn07-bar03 0.75s forwards;
  animation: btn07-bar03 0.75s forwards;
}
#hamb_bottun.active span:nth-of-type(1) {
  -webkit-animation: active-btn07-bar01 0.75s forwards;
  animation: active-btn07-bar01 0.75s forwards;
}
#hamb_bottun.active span:nth-of-type(2) {
  opacity: 0;
}
#hamb_bottun.active span:nth-of-type(3) {
  -webkit-animation: active-btn07-bar03 0.75s forwards;
  animation: active-btn07-bar03 0.75s forwards;
}

@-webkit-keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(11px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(11px) rotate(45deg);
    transform: translateY(11px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(11px) rotate(0);
    transform: translateY(11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
    transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(11px) rotate(45deg);
  }
}
@keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(11px) rotate(0);
    transform: translateY(11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(11px) rotate(45deg);
    transform: translateY(11px) rotate(45deg);
  }
}
@-webkit-keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
  }
}
@keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
    transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
  }
}
.footer {
  border-top: 1px solid #c8c8c8;
}
.footer .footer_wrap .footer_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 75px 0;
  margin: 0 auto;
  max-width: 1440px;
  width: 83%;
}
.footer .footer_wrap .footer_link .footer_logo_wrap .footer_logo_txt {
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 10px;
}
.footer .footer_wrap .footer_link .footer_logo_wrap .footer_logo {
  width: 320px;
}
.footer .footer_wrap .footer_link .sns_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.footer .footer_wrap .footer_link .sns_wrap .sns_li {
  margin: 0 5px;
}
.footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a {
  display: block;
  position: relative;
  width: 45px;
  height: 45px;
  background-color: #e7e7e7;
  border-radius: 50%;
}
.footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a .sns_bak_on {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 0;
  height: 0;
  background-color: #00629d;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a .sns_bak_on_red {
  background-color: #c4302b;
}
.footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a .sns_img_1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 11px;
}
.footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a .sns_img_2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 21px;
}
.footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a .sns_img_on {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a:hover .sns_bak_on {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  background-color: #00629d;
  border-radius: 50%;
}
.footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a:hover .sns_bak_on_red {
  background-color: #c4302b;
}
.footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a:hover .sns_img_on {
  opacity: 1;
}
.footer .footer_wrap .footer_link .sns_wrap_sp {
  display: none;
}
.footer .footer_wrap .footer_link .ft_ul {
  margin-left: 80px;
  font-size: 1.6rem;
}
.footer .footer_wrap .footer_link .ft_ul .ft_li_a {
  display: block;
  width: 130px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  margin-right: 10px;
  margin-top: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .footer_wrap .footer_link .ft_ul .ft_li_a:hover {
  color: #00629d;
}
.footer .footer_wrap .footer_link .ft_ul .ft_li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.footer .footer_wrap .footer_link .ft_ul .ft_li .ft_under_ul {
  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-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.footer .footer_wrap .footer_link .ft_ul .ft_li .ft_under_ul .ft_under_li {
  margin-top: 10px;
  padding: 0 10px;
  line-height: 1;
  white-space: nowrap;
  border-left: 1px solid #333333;
}
.footer .footer_wrap .footer_link .ft_ul .ft_li .ft_under_ul .ft_under_li:last-child {
  border-right: 1px solid #333333;
}
.footer .footer_wrap .footer_link .ft_ul .ft_li .ft_under_ul .ft_under_li .ft_under_a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .footer_wrap .footer_link .ft_ul .ft_li .ft_under_ul .ft_under_li .ft_under_a:hover {
  color: #00629d;
}
.footer .footer_wrap .footer_inf {
  position: relative;
  width: 100%;
  background-color: #333333;
  padding: 30px 0;
}
.footer .footer_wrap .footer_inf .operation {
  margin-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  color: #fff;
}
.footer .footer_wrap .footer_inf .operation .operation_dt {
  line-height: 1.7;
}
.footer .footer_wrap .footer_inf .operation .operation_dd {
  position: relative;
  padding-left: 1em;
  line-height: 1.7;
}
.footer .footer_wrap .footer_inf .operation .operation_dd::before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  content: "：";
}
.footer .footer_wrap .footer_inf .cp {
  position: absolute;
  bottom: 30px;
  right: 40px;
  color: #fff;
  font-size: 1.4rem;
}
.footer .footer_wrap .footer_inf .ft_link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .footer_wrap .footer_inf .ft_link:hover {
  color: #999999;
}

@media screen and (max-width: 1024px) {
  .footer {
    border-top: 1px solid #c8c8c8;
  }
  .footer .footer_wrap .footer_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 75px 0;
    margin: 0 auto;
    max-width: 100%;
    width: 90vw;
  }
  .footer .footer_wrap .footer_link .footer_logo_wrap .footer_logo_txt {
    font-size: 1.9rem;
    line-height: 1;
    margin-bottom: 10px;
  }
  .footer .footer_wrap .footer_link .footer_logo_wrap .footer_logo {
    width: 320px;
  }
  .footer .footer_wrap .footer_link .ft_ul {
    margin-left: 40px;
    font-size: 1.6rem;
  }
  .footer .footer_wrap .footer_link .ft_ul .ft_li_a {
    display: block;
    width: 130px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    margin-right: 10px;
    margin-top: 10px;
  }
  .footer .footer_wrap .footer_link .ft_ul .ft_li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer .footer_wrap .footer_link .ft_ul .ft_li .ft_under_ul {
    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;
  }
  .footer .footer_wrap .footer_link .ft_ul .ft_li .ft_under_ul .ft_under_li {
    margin-top: 10px;
    padding: 0 10px;
    line-height: 1;
    white-space: nowrap;
    border-left: 1px solid #333333;
  }
  .footer .footer_wrap .footer_link .ft_ul .ft_li .ft_under_ul .ft_under_li:last-child {
    border-right: 1px solid #333333;
  }
  .footer .footer_wrap .footer_inf {
    position: relative;
    width: 100%;
    background-color: #333333;
    padding: 30px 0 60px;
  }
  .footer .footer_wrap .footer_inf .operation {
    margin-left: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    color: #fff;
  }
  .footer .footer_wrap .footer_inf .operation .operation_dt {
    line-height: 1.7;
  }
  .footer .footer_wrap .footer_inf .operation .operation_dd {
    position: relative;
    padding-left: 1em;
    line-height: 1.7;
  }
  .footer .footer_wrap .footer_inf .operation .operation_dd::before {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    content: "：";
  }
  .footer .footer_wrap .footer_inf .cp {
    position: absolute;
    bottom: 30px;
    right: 40px;
    color: #fff;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    border-top: 1px solid #c8c8c8;
  }
  .footer .footer_wrap .footer_link {
    display: block;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 7.5vw 0;
    margin: 0 auto;
    max-width: 100%;
    width: 90vw;
  }
  .footer .footer_wrap .footer_link .footer_logo_wrap .footer_logo_txt {
    font-size: 20px;
    font-size: 2.6041666667vw;
    line-height: 1;
    margin-bottom: 1vw;
  }
  .footer .footer_wrap .footer_link .footer_logo_wrap .footer_logo {
    width: 40vw;
  }
  .footer .footer_wrap .footer_link .sns_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10vw;
  }
  .footer .footer_wrap .footer_link .sns_wrap .sns_li {
    margin: 0 2.5vw;
  }
  .footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a {
    display: block;
    position: relative;
    width: 15vw;
    height: 15vw;
    background-color: #e7e7e7;
    border-radius: 50%;
  }
  .footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a .sns_bak_on {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 0;
    height: 0;
    background-color: #00629d;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a .sns_bak_on_red {
    background-color: #c4302b;
  }
  .footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a .sns_img_1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 3vw;
  }
  .footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a .sns_img_2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 6vw;
  }
  .footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a .sns_img_on {
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a:hover .sns_bak_on {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00629d;
    border-radius: 50%;
  }
  .footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a:hover .sns_bak_on_red {
    background-color: #c4302b;
  }
  .footer .footer_wrap .footer_link .sns_wrap .sns_li .sns_a:hover .sns_img_on {
    opacity: 1;
  }
  .footer .footer_wrap .footer_link .sns_wrap_pc {
    display: none;
  }
  .footer .footer_wrap .footer_link .ft_ul {
    margin-top: 10vw;
    margin-left: 0;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .footer .footer_wrap .footer_link .ft_ul .ft_li_a {
    display: block;
    width: auto;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    margin-right: 10px;
    margin-top: 5vw;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .footer .footer_wrap .footer_link .ft_ul .ft_li {
    display: block;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer .footer_wrap .footer_link .ft_ul .ft_li .ft_under_ul {
    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;
  }
  .footer .footer_wrap .footer_link .ft_ul .ft_li .ft_under_ul .ft_under_li {
    margin-top: 2.5vw;
    padding: 0 2.5vw;
    line-height: 1;
    white-space: nowrap;
    border-left: none;
    border-right: 1px solid #333333;
  }
  .footer .footer_wrap .footer_link .ft_ul .ft_li .ft_under_ul .ft_under_li:last-child {
    border-right: 1px solid #333333;
  }
  .footer .footer_wrap .footer_inf {
    position: relative;
    width: 100%;
    background-color: #333333;
    padding: 5vw 0 15vw;
  }
  .footer .footer_wrap .footer_inf .operation {
    margin-left: 5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 24px;
    font-size: 3.125vw;
    color: #fff;
  }
  .footer .footer_wrap .footer_inf .operation .operation_dt {
    line-height: 1.7;
  }
  .footer .footer_wrap .footer_inf .operation .operation_dd {
    position: relative;
    padding-left: 1em;
    line-height: 1.7;
  }
  .footer .footer_wrap .footer_inf .operation .operation_dd::before {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    content: "：";
  }
  .footer .footer_wrap .footer_inf .cp {
    position: absolute;
    bottom: 30px;
    right: 40px;
    color: #fff;
    font-size: 24px;
    font-size: 3.125vw;
  }
}
.panc {
  position: absolute;
  font-size: 1.4rem;
  top: 120px;
  left: 44px;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.panc a {
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.panc a:hover {
  color: #00629d;
}
.panc .sig_panc_r {
  display: block;
  padding: 0 0.5em;
}
.panc .sig_panc_page {
  display: block;
  width: 40em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .panc .sig_panc_page {
    width: 15em;
  }
}
.kv_top {
  width: 100%;
  padding-top: 100px;
}
.kv_top .top_video {
  width: 100%;
}
.kv_top .top_video video {
  width: 100%;
}
.kv_top .kv_top_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.kv_top .kv_top_wrap .kv_top_txt_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.kv_top .kv_top_wrap .kv_top_txt_wrap .kv_top_tit {
  font-size: 36px;
  font-size: 2.5vw;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.8);
}
.kv_top .kv_top_wrap .kv_top_txt_wrap .ind_top_tit {
  font-size: 24px;
  font-size: 1.6666666667vw;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.8);
}
.kv_top .kv_top_wrap .kv_top_txt_wrap .kv_top_txt {
  font-size: 20px;
  font-size: 1.3888888889vw;
  white-space: nowrap;
  margin-top: 4.6vw;
}
.kv_top .sp_kv_top_txt_wrap {
  display: none;
}

.intd {
  display: block;
  width: 100%;
  background-image: url("wp-content/themes/onedouga/assets/images/common/about_bak.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.intd .intd_wrap {
  max-width: 1040px;
  width: 65%;
  text-align: center;
  padding: 50px 0;
  margin: 0 auto;
}
.intd .intd_wrap .intd_tit {
  font-size: 2.4rem;
  font-weight: 700;
}
.intd .intd_wrap .intd_txt {
  margin-top: 30px;
  font-size: 1.8rem;
}
.intd .intd_wrap .intd_txt_cp {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.intd .intd_wrap .f_36 {
  font-size: 3.6rem;
}
.intd .intd_wrap .f_24 {
  font-size: 2.4rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 150;
  pointer-events: none;
  opacity: 0;
}
.modal .modal_wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.modal .modal_wrap .modal_cont {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50vw;
  opacity: 1;
}
.modal .modal_wrap .modal_cont .modal_cont_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.modal .modal_wrap .modal_cont .modal_cont_wrap .modal_btn {
  position: absolute;
  top: -3vw;
  right: 0;
  display: block;
  width: 2.5vw;
  height: 2.5vw;
}
.modal .modal_wrap .modal_cont .modal_cont_wrap .modal_btn .modal_btn_wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.modal .modal_wrap .modal_cont .modal_cont_wrap .modal_btn .modal_btn_wrap .modal_btn_line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 0.2vw;
  background-color: #fff;
}
.modal .modal_wrap .modal_cont .modal_cont_wrap .modal_btn .modal_btn_wrap .modal_btn_line_r {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal_wrap .modal_cont .modal_cont_wrap .modal_btn .modal_btn_wrap .modal_btn_line_l {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .modal_wrap .modal_cont .modal_cont_wrap .modal_cont_img {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75vw;
}
.modal .modal_wrap .modal_cont .modal_cont_wrap .op_off {
  opacity: 0;
}

.modal_on {
  pointer-events: auto;
  opacity: 1;
  -webkit-animation: modal_bak 1s;
  animation: modal_bak 1s;
}
.modal_on .modal_wrap .modal_cont {
  opacity: 1;
  -webkit-animation: modal_img 1s;
  animation: modal_img 1s;
}

@-webkit-keyframes modal_bak {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal_bak {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modal_img {
  0% {
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes modal_img {
  0% {
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
.modal_off {
  pointer-events: none;
  opacity: 0;
  -webkit-animation: modal_bak_off 1s;
  animation: modal_bak_off 1s;
}
.modal_off .modal_wrap .modal_cont {
  opacity: 0;
  -webkit-animation: modal_img_off 1s;
  animation: modal_img_off 1s;
}

@-webkit-keyframes modal_bak_off {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modal_bak_off {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes modal_img_off {
  0% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    opacity: 0;
  }
}
@keyframes modal_img_off {
  0% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    opacity: 0;
  }
}
.page_sec {
  display: block;
  width: 100%;
}
.page_sec .page_sec_wrap {
  max-width: 1040px;
  width: 72%;
  padding: 100px 0;
  margin: 0 auto;
}
.page_sec .page_sec_wrap .page_sec_tit_wrap {
  margin-bottom: 60px;
}
.page_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_tit {
  font-size: 3rem;
  text-align: center;
}
.page_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_line {
  margin: 0 auto;
  margin-top: 30px;
  width: 63px;
}
.page_sec .page_sec_wrap .page_sec_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 100px;
}
.page_sec .page_sec_wrap .page_sec_tab .tab_sec {
  position: relative;
  display: block;
  width: 25%;
  padding-bottom: 42px;
}
.page_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_ic_wrap {
  width: 100%;
  height: 80px;
}
.page_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_ic_wrap .tab_ic {
  display: block;
  width: 52px;
  margin: 0 auto;
}
.page_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_sec_txt {
  font-weight: 700;
  text-align: center;
}
.page_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_sec_ar {
  position: absolute;
  width: 20px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.page_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_sec_ar .tab_sec_ar_wrap {
  position: relative;
}
.page_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_sec_ar .tab_sec_ar_wrap .ar_ac {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page_sec .page_sec_wrap .page_sec_tab .tab_sec:hover .ar_ac {
  opacity: 1 !important;
}
.page_sec .page_sec_wrap .centtxt {
  margin-top: 40px;
  text-align: center;
}
.page_sec .page_sec_wrap .ct_p {
  text-align: center;
  line-height: 1.5;
}
.page_sec .page_sec_wrap .cycle_img {
  position: relative;
  max-width: 620px;
  width: 43vw;
  margin: 75px auto 0;
}
.page_sec .page_sec_wrap .video_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 70px;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap {
  width: 48%;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .ex {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 15px;
  padding: 9px 13px;
  background-color: #e0f0f7;
  border-radius: 20vw;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_s {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 10px;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_ind {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #00629d;
  margin-bottom: 16px;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 16px;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_under {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 5px;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt_box {
  margin-top: 23px;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt {
  margin-top: 0;
  line-height: 1.5;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt:first-child {
  margin-top: 23px;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_ind {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt_s {
  margin-top: 28px;
  font-size: 1.2rem;
  line-height: 1.3;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .bl_tit {
  display: block;
  margin-top: 28px;
  background-color: #afdaef;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  padding: 8px 17px;
  border-radius: 16px;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list {
  margin-top: 23px;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list .cm_list_li {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.6rem;
  margin-top: 10px;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list .cm_list_li::before {
  position: absolute;
  top: 0.2em;
  left: 0.5em;
  display: block;
  content: "";
  background-color: #00629d;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .more {
  margin-top: 30px;
}
.page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_genre {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.page_sec .page_sec_wrap .video_flex .video_flex_fg {
  display: block;
  width: 48%;
  max-height: 280px;
  height: 19vw;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.page_sec .page_sec_wrap .video_flex .video_flex_fg iframe {
  width: 100%;
  height: 1800px;
  border: none;
}
.page_sec .page_sec_wrap .video_flex .fg_modal {
  position: relative;
  cursor: pointer;
}
.page_sec .page_sec_wrap .video_flex .fg_modal .modal_ic {
  position: absolute;
  max-width: 30px;
  width: 2vw;
  bottom: 0.7vw;
  right: 0.7vw;
  z-index: 1;
}
.page_sec .page_sec_wrap .video_flex .fg_modal .modal_c_img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.page_sec .page_sec_wrap .video_flex .fg_modal:hover .modal_c_img {
  opacity: 0.5;
}
.page_sec .page_sec_wrap .video_flex:first-child {
  margin-top: 0;
}
.page_sec .page_sec_wrap .video_flex:nth-child(even) .video_flex_txt_wrap {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.page_sec .page_sec_wrap .video_flex:nth-child(even) .video_flex_fg {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.page_sec .page_sec_wrap .video_flex_odd:nth-child(odd) .video_flex_txt_wrap {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.page_sec .page_sec_wrap .video_flex_odd:nth-child(odd) .video_flex_fg {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.page_sec .page_sec_wrap .video_flex_odd:nth-child(even) .video_flex_txt_wrap {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.page_sec .page_sec_wrap .video_flex_odd:nth-child(even) .video_flex_fg {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.page_sec .page_sec_wrap .video_flex_ind {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.page_sec .page_sec_wrap .m_70 {
  margin-top: 70px;
}
.page_sec .page_sec_wrap .video_flex_lf .video_flex_txt_wrap {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.page_sec .page_sec_wrap .video_flex_lf .video_flex_fg {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.page_sec .page_sec_wrap .price {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page_sec .page_sec_wrap .price .price_sec_img {
  position: absolute;
  max-width: 38px;
  width: 2.63vw;
  top: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.page_sec .page_sec_wrap .price .price_sec {
  width: 47%;
}
.page_sec .page_sec_wrap .price .price_sec .price_tit {
  width: 100%;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  padding: 30px;
  border-radius: 6px;
}
.page_sec .page_sec_wrap .price .price_sec .b_bl {
  background-color: #00629d;
}
.page_sec .page_sec_wrap .price .price_sec .b_gr {
  background-color: #009d89;
}
.page_sec .page_sec_wrap .price .price_sec .price_cont {
  margin-top: 40px;
  padding: 0 20px 50px 20px;
  border-radius: 6px;
  border: 1px solid #cccccc;
}
.page_sec .page_sec_wrap .price .price_sec .price_cont_tit {
  position: relative;
  margin-top: 30px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
.page_sec .page_sec_wrap .price .price_sec .price_cont_tit_s {
  position: absolute;
  font-size: 1rem;
  top: 0;
  right: auto;
}
.page_sec .page_sec_wrap .price .price_sec .price_ul {
  margin-top: 20px;
}
.page_sec .page_sec_wrap .price .price_sec .price_ul .price_li {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.6rem;
  margin-top: 10px;
}
.page_sec .page_sec_wrap .price .price_sec .price_ul .price_li::before {
  position: absolute;
  top: 0.2em;
  left: 0.5em;
  display: block;
  content: "";
  background-color: #ce974f;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.page_sec .page_sec_wrap .price .price_sec .bl_flex {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page_sec .page_sec_wrap .price .price_sec .bl_flex .bl_sec {
  background-color: #f1f1f1;
  width: 46%;
  border-radius: 6px;
}
.page_sec .page_sec_wrap .price .price_sec .bl_flex .bl_sec .bl_txt {
  padding: 65px 0;
  text-align: center;
  font-weight: 700;
}
.page_sec .page_sec_wrap .price .price_sec .bl_flex_2 {
  position: relative;
  margin-top: 20px;
}
.page_sec .page_sec_wrap .price .price_sec .bl_flex_2 .bl_sec {
  margin-top: 10px;
  background-color: #f1f1f1;
  width: 100%;
  border-radius: 6px;
}
.page_sec .page_sec_wrap .price .price_sec .bl_flex_2 .bl_sec .bl_txt {
  padding: 30px 0;
  text-align: center;
  font-weight: 700;
}
.page_sec .page_sec_wrap .price .price_sec .bl_flex_2 .box_leftcont {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
  display: inline-block;
  text-align: center;
}
.page_sec .page_sec_wrap .price .price_sec .bl_flex_2 .box_leftcont .box_leftcont_txt {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}
.page_sec .page_sec_wrap .price .price_sec .bl_flex_2 .box_leftcont .box_leftcont_img {
  width: 30px;
  margin: 10px auto;
}
.page_sec .page_sec_wrap .price .price_sec .price_cont_txt {
  text-align: center;
}
.page_sec .page_sec_wrap .price .price_sec .price_ul_fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page_sec .page_sec_wrap .price .price_sec .price_ul_fl .price_li {
  width: 45%;
}
.page_sec .page_sec_wrap .price .price_sec .price_ul_fl .price_li:nth-child(even) {
  width: 55%;
}
.page_sec .page_sec_wrap .reprice {
  margin-top: 40px;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #cccccc;
}
.page_sec .page_sec_wrap .reprice .reprice_tit {
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #f1f1f1;
  text-align: center;
  padding: 16px 0;
  border-radius: 6px;
}
.page_sec .page_sec_wrap .reprice .reprice_txt_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page_sec .page_sec_wrap .reprice .reprice_txt_box .reprice_txt {
  position: relative;
}
.page_sec .page_sec_wrap .reprice .reprice_txt_box .reprice_txt .reprice_txt_num {
  position: relative;
  font-size: 6rem;
  font-family: oswald, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.page_sec .page_sec_wrap .reprice .reprice_txt_box .reprice_txt .reprice_txt_num .reprice_txt_num_s {
  position: absolute;
  font-size: 1rem;
  top: 7px;
  right: auto;
}
.page_sec .page_sec_wrap .reprice .reprice_txt_box .reprice_txt:last-child {
  margin-left: 30px;
}
.page_sec .page_sec_wrap .reprice .reprice_txt_box .reprice_txt .reprice_txt_num_note {
  position: absolute;
  white-space: nowrap;
  font-size: 1.4rem;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.page_sec .page_sec_wrap .faq .faq_wrap {
  position: relative;
  padding: 30px;
  background-color: #fff;
  margin-top: 20px;
  cursor: pointer;
}
.page_sec .page_sec_wrap .faq .faq_wrap .a_op {
  width: 20px;
  display: block;
  position: absolute;
  top: 55px;
  right: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.page_sec .page_sec_wrap .faq .faq_wrap .faq_q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page_sec .page_sec_wrap .faq .faq_wrap .faq_q .qnum {
  font-family: oswald, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  margin-right: 30px;
  white-space: nowrap;
  color: #00629d;
}
.page_sec .page_sec_wrap .faq .faq_wrap .faq_q .qnum .qnum_w {
  color: #97cbde;
}
.page_sec .page_sec_wrap .faq .faq_wrap .faq_q .qtxt {
  font-weight: 700;
  padding-top: 1em;
  padding-right: 30px;
}
.page_sec .page_sec_wrap .faq .faq_wrap .faq_q .qtxt .qtxt_s {
  font-weight: 400;
  font-size: 1.4rem;
}
.page_sec .page_sec_wrap .faq .faq_wrap .faq_q .qtxt .note_w {
  position: relative;
  padding-right: 0.5em;
}
.page_sec .page_sec_wrap .faq .faq_wrap .faq_q .qtxt .note_w .note_w_s {
  position: absolute;
  font-size: 1rem;
  top: 0;
  right: 0;
  line-height: 1;
}
.page_sec .page_sec_wrap .faq .faq_wrap .faq_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  opacity: 0;
  -webkit-animation: faq_cl_1 1s;
  animation: faq_cl_1 1s;
}
.page_sec .page_sec_wrap .faq .faq_wrap .faq_a .anum {
  font-family: oswald, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  margin-right: 30px;
  white-space: nowrap;
  color: #ce524f;
  line-height: 0;
  -webkit-animation: faq_cl_2 1s;
  animation: faq_cl_2 1s;
}
.page_sec .page_sec_wrap .faq .faq_wrap .faq_a .anum .anum_w {
  color: #da9c9b;
}
.page_sec .page_sec_wrap .faq .faq_wrap .faq_a .atxt {
  line-height: 0;
  padding-top: 0em;
  -webkit-animation: faq_cl_3 1s;
  animation: faq_cl_3 1s;
}
.page_sec .page_sec_wrap .faq .faq_wrap.active .a_op {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.page_sec .page_sec_wrap .faq .faq_wrap.active .faq_a {
  -webkit-animation: faq_op_1 1s;
  animation: faq_op_1 1s;
  margin-top: 40px;
  opacity: 1;
}
.page_sec .page_sec_wrap .faq .faq_wrap.active .faq_a .anum {
  -webkit-animation: faq_op_2 1s;
  animation: faq_op_2 1s;
  line-height: 2;
}
.page_sec .page_sec_wrap .faq .faq_wrap.active .faq_a .atxt {
  -webkit-animation: faq_op_3 1s;
  animation: faq_op_3 1s;
  line-height: 2;
  padding-top: 1em;
}
.page_sec .page_sec_wrap .ic_box {
  padding: 60px 80px;
  background-color: #fff;
  border-radius: 6px;
  margin-top: 40px;
}
.page_sec .page_sec_wrap .ic_box .ic_tit {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 40px;
  text-align: center;
}
.page_sec .page_sec_wrap .ic_box .ic_txt_s {
  font-size: 1.4rem;
}
.page_sec .page_sec_wrap .ic_box .ic_cont {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}
.page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec {
  width: 25%;
}
.page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec .ic_img_wrap {
  width: 100%;
  height: 110px;
}
.page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec .ic_img_wrap .ic_img {
  margin: 0 auto;
}
.page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec .ic_img_wrap .ic_img_1, .page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec .ic_img_wrap .ic_img_2 {
  width: 93px;
}
.page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec .ic_sec_txt {
  margin-top: 30px;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
}
.page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec_3 {
  margin: 0 5%;
}
.page_sec .page_sec_wrap .ic_box:first-child {
  margin-top: 0;
}
.page_sec .page_sec_wrap .point_ul .point_li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  padding: 30px 40px;
  margin-top: 40px;
  border-radius: 6px;
  border: 1px solid #cee3ef;
}
.page_sec .page_sec_wrap .point_ul .point_li .point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: oswald, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-right: 66px;
}
.page_sec .page_sec_wrap .point_ul .point_li .point .point_txt {
  line-height: 1;
  font-size: 2.4rem;
  color: #00629d;
}
.page_sec .page_sec_wrap .point_ul .point_li .point .point_num {
  line-height: 1;
  font-size: 4.8rem;
  color: #97cbde;
  margin-left: 12px;
}
.page_sec .page_sec_wrap .point_ul .point_li .point_cont .point_cont_tit {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}
.page_sec .page_sec_wrap .point_ul .point_li .point_cont .point_cont_txt {
  font-size: 1.6rem;
  line-height: 1.5;
}
.page_sec .page_sec_wrap .point_ul .point_li .point_cont .point_cont_txt .point_cont_txt_s {
  display: block;
  margin-top: 1em;
  font-size: 1.4rem;
}
.page_sec .page_sec_wrap .point_ul:first-child {
  margin-top: 0;
}
.page_sec .page_sec_wrap iframe {
  width: 100%;
  border: none;
  height: 1800px;
}
.page_sec .dl_page_sec_wrap .at-below-post {
  display: none !important;
}
.page_sec .page_top_padd {
  padding-top: 200px;
}

@-webkit-keyframes faq_cl_1 {
  0% {
    margin-top: 40px;
    opacity: 1;
  }
  50% {
    margin-top: 40px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 0;
  }
}
@keyframes faq_cl_1 {
  0% {
    margin-top: 40px;
    opacity: 1;
  }
  50% {
    margin-top: 40px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 0;
  }
}
@-webkit-keyframes faq_cl_2 {
  0% {
    line-height: 2;
  }
  50% {
    line-height: 2;
  }
  100% {
    line-height: 0;
  }
}
@keyframes faq_cl_2 {
  0% {
    line-height: 2;
  }
  50% {
    line-height: 2;
  }
  100% {
    line-height: 0;
  }
}
@-webkit-keyframes faq_cl_3 {
  0% {
    line-height: 2;
    padding-top: 1em;
  }
  50% {
    line-height: 2;
    padding-top: 1em;
  }
  100% {
    line-height: 0;
    padding-top: 0;
  }
}
@keyframes faq_cl_3 {
  0% {
    line-height: 2;
    padding-top: 1em;
  }
  50% {
    line-height: 2;
    padding-top: 1em;
  }
  100% {
    line-height: 0;
    padding-top: 0;
  }
}
@-webkit-keyframes faq_op_1 {
  0% {
    margin-top: 0;
    opacity: 0;
  }
  50% {
    margin-top: 40px;
    opacity: 0;
  }
  100% {
    margin-top: 40px;
    opacity: 1;
  }
}
@keyframes faq_op_1 {
  0% {
    margin-top: 0;
    opacity: 0;
  }
  50% {
    margin-top: 40px;
    opacity: 0;
  }
  100% {
    margin-top: 40px;
    opacity: 1;
  }
}
@-webkit-keyframes faq_op_2 {
  0% {
    line-height: 0;
  }
  50% {
    line-height: 2;
  }
  100% {
    line-height: 2;
  }
}
@keyframes faq_op_2 {
  0% {
    line-height: 0;
  }
  50% {
    line-height: 2;
  }
  100% {
    line-height: 2;
  }
}
@-webkit-keyframes faq_op_3 {
  0% {
    line-height: 0;
    padding-top: 0;
  }
  50% {
    line-height: 2;
    padding-top: 1em;
  }
  100% {
    line-height: 2;
    padding-top: 1em;
  }
}
@keyframes faq_op_3 {
  0% {
    line-height: 0;
    padding-top: 0;
  }
  50% {
    line-height: 2;
    padding-top: 1em;
  }
  100% {
    line-height: 2;
    padding-top: 1em;
  }
}
.bak_bl {
  background-color: #e0f0f7;
}

@media screen and (max-width: 1024px) {
  .panc {
    position: relative;
    top: auto;
    left: auto;
    padding-top: 90px;
    padding-left: 5vw;
    padding-bottom: 10px;
    background-color: #fff;
  }

  .kv_top {
    width: 100%;
    padding-top: 0;
  }

  .intd {
    display: block;
    width: 100%;
    background-image: url("wp-content/themes/onedouga/assets/images/common/about_bak.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .intd .intd_wrap {
    max-width: 100%;
    width: 90vw;
    text-align: center;
    padding: 50px 0;
    margin: 0 auto;
  }
  .intd .intd_wrap .intd_tit {
    font-size: 2.4rem;
    font-weight: 700;
  }
  .intd .intd_wrap .intd_txt {
    margin-top: 30px;
    font-size: 1.8rem;
  }
  .intd .intd_wrap .intd_txt_cp {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .intd .intd_wrap .f_36 {
    font-size: 3.6rem;
  }
  .intd .intd_wrap .f_24 {
    font-size: 2.4rem;
  }

  .modal {
    display: none !important;
  }

  .page_sec {
    display: block;
    width: 100%;
  }
  .page_sec .page_sec_wrap {
    max-width: 100%;
    width: 90vw;
    padding: 100px 0;
    margin: 0 auto;
  }
  .page_sec .page_sec_wrap iframe {
    width: 100%;
    height: 1800px;
  }
  .page_sec .page_sec_wrap .page_sec_tit_wrap {
    margin-bottom: 60px;
  }
  .page_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_tit {
    font-size: 3rem;
    text-align: center;
  }
  .page_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_line {
    margin: 0 auto;
    margin-top: 30px;
    width: 63px;
  }
  .page_sec .page_sec_wrap .ct_p {
    text-align: center;
    line-height: 1.5;
  }
  .page_sec .page_sec_wrap .cycle_img {
    max-width: 100%;
    width: 60vw;
    margin: 75px auto 0;
  }
  .page_sec .page_sec_wrap .video_flex {
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 60vw;
    margin: 0 auto;
    margin-top: 70px;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    margin-top: 28px;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_s {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_genre {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 0;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_ind {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: #00629d;
    margin: 0px;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .sp_txtct {
    text-align: center;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt {
    margin-top: 10px;
    line-height: 1.5;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt_s {
    margin-top: 28px;
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .bl_tit {
    display: block;
    margin-top: 28px;
    background-color: #afdaef;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    padding: 8px 17px;
    border-radius: 16px;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list {
    margin-top: 23px;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list .cm_list_li {
    position: relative;
    padding-left: 1.5em;
    font-size: 1.6rem;
    margin-top: 10px;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list .cm_list_li::before {
    position: absolute;
    top: 0.2em;
    left: 0.5em;
    display: block;
    content: "";
    background-color: #00629d;
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .more {
    margin-top: 30px;
  }
  .page_sec .page_sec_wrap .video_flex .fg_modal {
    position: relative;
    cursor: auto;
    pointer-events: none;
  }
  .page_sec .page_sec_wrap .video_flex .fg_modal .modal_ic {
    display: none !important;
  }
  .page_sec .page_sec_wrap .video_flex .fg_modal:hover .modal_c_img {
    opacity: 0.5;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_fg {
    display: block;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-height: 100%;
    height: 33.7vw;
    background-color: #fff;
    border-radius: 6px;
  }
  .page_sec .page_sec_wrap .video_flex:first-child {
    margin-top: 0;
  }
  .page_sec .page_sec_wrap .video_flex:nth-child(even) .video_flex_txt_wrap {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .page_sec .page_sec_wrap .video_flex:nth-child(even) .video_flex_fg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .page_sec .page_sec_wrap .m_70 {
    margin-top: 70px;
  }
  .page_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_sec_txt_1 {
    margin-top: 18px;
  }
}
@media screen and (max-width: 767px) {
  .panc {
    font-size: 24px;
    font-size: 3.125vw;
    z-index: 5;
    position: relative;
    top: auto;
    left: auto;
    padding-top: 90px;
    padding-left: 5vw;
    padding-bottom: 10px;
    background-color: #fff;
  }

  .kv_top {
    width: 100%;
    padding-top: 0;
  }
  .kv_top .dm {
    width: 100vw;
    height: 100vw;
    background-color: #999999;
  }
  .kv_top .kv_top_wrap {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .kv_top .kv_top_wrap .kv_top_txt_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .kv_top .kv_top_wrap .kv_top_txt_wrap .kv_top_tit {
    font-size: 34px;
    font-size: 4.4270833333vw;
    line-height: 1.5;
    text-shadow: 0 0 1vw rgba(0, 0, 0, 0.8);
  }
  .kv_top .kv_top_wrap .kv_top_txt_wrap .ind_top_tit {
    font-size: 34px;
    font-size: 4.4270833333vw;
    font-weight: 700;
    font-style: normal;
    white-space: nowrap;
    line-height: 1.5;
    text-shadow: 0 0 1vw rgba(0, 0, 0, 0.8);
  }
  .kv_top .kv_top_wrap .kv_top_txt_wrap .kv_top_txt {
    display: none;
  }
  .kv_top .sp_kv_top_txt_wrap {
    display: block;
    position: relative;
    width: 100%;
    padding: 5vw;
    background-color: #e0f0f7;
  }
  .kv_top .sp_kv_top_txt_wrap .sp_kv_top_txt {
    text-align: center;
    font-size: 28px;
    font-size: 3.6458333333vw;
    line-height: 1.5;
  }

  .intd {
    display: block;
    width: 100%;
    background-image: url("wp-content/themes/onedouga/assets/images/common/about_bak.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .intd .intd_wrap {
    max-width: 100%;
    width: 90vw;
    text-align: center;
    padding: 13vw 0;
    margin: 0 auto;
  }
  .intd .intd_wrap .intd_tit {
    font-size: 36px;
    font-size: 4.6875vw;
    font-weight: 700;
  }
  .intd .intd_wrap .intd_txt {
    margin-top: 5vw;
    font-size: 32px;
    font-size: 4.1666666667vw;
  }
  .intd .intd_wrap .intd_txt_cp {
    margin-top: 5vw;
    font-size: 32px;
    font-size: 4.1666666667vw;
    font-weight: 700;
  }
  .intd .intd_wrap .f_36 {
    font-size: 40px;
    font-size: 5.2083333333vw;
  }
  .intd .intd_wrap .f_24 {
    font-size: 36px;
    font-size: 4.6875vw;
  }

  .page_sec {
    display: block;
    width: 100%;
  }
  .page_sec .page_sec_wrap {
    max-width: 100%;
    width: 90vw;
    padding: 13vw 0;
    margin: 0 auto;
  }
  .page_sec .page_sec_wrap .price {
    display: block;
  }
  .page_sec .page_sec_wrap .price .price_sec_img {
    position: relative;
    max-width: 100%;
    width: 7vw;
    top: auto;
    left: auto;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin: 10vw auto 0;
  }
  .page_sec .page_sec_wrap .price .price_sec {
    width: 100%;
  }
  .page_sec .page_sec_wrap .price .price_sec:last-child {
    margin-top: 10vw;
  }
  .page_sec .page_sec_wrap .price .price_sec .price_tit {
    width: 100%;
    font-size: 32px;
    font-size: 4.1666666667vw;
    color: #fff;
    text-align: center;
    padding: 5vw;
    border-radius: 6px;
  }
  .page_sec .page_sec_wrap .price .price_sec .b_bl {
    background-color: #00629d;
  }
  .page_sec .page_sec_wrap .price .price_sec .b_gr {
    background-color: #009d89;
  }
  .page_sec .page_sec_wrap .price .price_sec .price_cont {
    margin-top: 5vw;
    padding: 5vw;
    border-radius: 6px;
    border: 1px solid #cccccc;
  }
  .page_sec .page_sec_wrap .price .price_sec .price_cont_tit {
    margin-top: 5vw;
    text-align: center;
    font-size: 32px;
    font-size: 4.1666666667vw;
    font-weight: 700;
  }
  .page_sec .page_sec_wrap .price .price_sec .price_ul {
    margin-top: 5vw;
  }
  .page_sec .page_sec_wrap .price .price_sec .price_ul .price_li {
    position: relative;
    padding-left: 1.5em;
    font-size: 28px;
    font-size: 3.6458333333vw;
    margin-top: 3vw;
  }
  .page_sec .page_sec_wrap .price .price_sec .price_ul .price_li::before {
    position: absolute;
    top: 0.3em;
    left: 0.5em;
    display: block;
    content: "";
    background-color: #ce974f;
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 50%;
  }
  .page_sec .page_sec_wrap .price .price_sec .bl_flex {
    margin-top: 5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .page_sec .page_sec_wrap .price .price_sec .bl_flex .bl_sec {
    background-color: #f1f1f1;
    width: 46%;
    border-radius: 6px;
  }
  .page_sec .page_sec_wrap .price .price_sec .bl_flex .bl_sec .bl_txt {
    padding: 10vw 0;
    text-align: center;
    font-weight: 700;
  }
  .page_sec .page_sec_wrap .price .price_sec .bl_flex_2 {
    position: relative;
    margin-top: 20px;
  }
  .page_sec .page_sec_wrap .price .price_sec .bl_flex_2 .bl_sec {
    margin-top: 10px;
    background-color: #f1f1f1;
    width: 100%;
    border-radius: 6px;
  }
  .page_sec .page_sec_wrap .price .price_sec .bl_flex_2 .bl_sec .bl_txt {
    padding: 30px 0;
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .page_sec .page_sec_wrap .price .price_sec .bl_flex_2 .box_leftcont {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 10px;
    display: inline-block;
    text-align: center;
  }
  .page_sec .page_sec_wrap .price .price_sec .bl_flex_2 .box_leftcont .box_leftcont_txt {
    font-size: 24px;
    font-size: 3.125vw;
    line-height: 1;
    font-weight: 700;
  }
  .page_sec .page_sec_wrap .price .price_sec .bl_flex_2 .box_leftcont .box_leftcont_img {
    width: 5vw;
    margin: 3vw auto;
  }
  .page_sec .page_sec_wrap .price .price_sec .price_cont_txt {
    text-align: center;
  }
  .page_sec .page_sec_wrap .price .price_sec .price_ul_fl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page_sec .page_sec_wrap .price .price_sec .price_ul_fl .price_li {
    width: 45%;
  }
  .page_sec .page_sec_wrap .price .price_sec .price_ul_fl .price_li:nth-child(even) {
    width: 55%;
  }
  .page_sec .page_sec_wrap .reprice {
    margin-top: 10vw;
    padding: 5vw;
    border-radius: 6px;
    border: 1px solid #cccccc;
  }
  .page_sec .page_sec_wrap .reprice .reprice_tit {
    font-weight: 700;
    background-color: #f1f1f1;
    text-align: center;
    padding: 16px 0;
    border-radius: 6px;
    font-size: 30px;
    font-size: 3.90625vw;
  }
  .page_sec .page_sec_wrap .reprice .reprice_txt_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .page_sec .page_sec_wrap .reprice .reprice_txt_box .reprice_txt {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .page_sec .page_sec_wrap .reprice .reprice_txt_box .reprice_txt .reprice_txt_num {
    font-size: 86px;
    font-size: 11.1979166667vw;
    font-family: oswald, sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  .page_sec .page_sec_wrap .reprice .reprice_txt_box .reprice_txt:last-child {
    margin-left: 5vw;
  }
  .page_sec .page_sec_wrap .reprice .reprice_txt_box .reprice_txt .reprice_txt_num_note {
    font-size: 20px;
    font-size: 2.6041666667vw;
  }
  .page_sec .page_sec_wrap .page_sec_tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10vw;
  }
  .page_sec .page_sec_wrap .page_sec_tab .tab_sec {
    width: 25%;
    padding-bottom: 10vw;
  }
  .page_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_ic_wrap {
    width: 100%;
    height: 12vw;
  }
  .page_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_ic_wrap .tab_ic {
    display: block;
    width: 10vw;
    margin: 0 auto;
  }
  .page_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_sec_txt {
    font-weight: 700;
    text-align: center;
    font-size: 20px;
    font-size: 2.6041666667vw;
  }
  .page_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_sec_ar {
    width: 4vw;
    margin: 3vw auto 0;
  }
  .page_sec .page_sec_wrap .page_sec_tit_wrap {
    margin-bottom: 6vw;
  }
  .page_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_tit {
    font-size: 52px;
    font-size: 6.7708333333vw;
    text-align: center;
  }
  .page_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_line {
    margin: 0 auto;
    margin-top: 3vw;
    width: 15vw;
  }
  .page_sec .page_sec_wrap .centtxt {
    margin-top: 5vw;
    text-align: center;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .page_sec .page_sec_wrap .ct_p {
    text-align: center;
    line-height: 1.5;
    font-size: 36px;
    font-size: 4.6875vw;
  }
  .page_sec .page_sec_wrap .cycle_img {
    max-width: 100%;
    width: 80vw;
    margin: 10vw auto 0;
  }
  .page_sec .page_sec_wrap .video_flex {
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    margin-top: 10vw;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    margin-top: 6vw;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_under {
    font-size: 28px;
    font-size: 3.6458333333vw;
    line-height: 1.5;
    font-weight: 700;
    margin-top: 1.5vw;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .ex {
    display: inline-block;
    font-size: 24px;
    font-size: 3.125vw;
    line-height: 1.5;
    margin-bottom: 3vw;
    padding: 1.5vw 3vw;
    background-color: #e0f0f7;
    border-radius: 20vw;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_s {
    text-align: center;
    font-size: 36px;
    font-size: 4.6875vw;
    margin-bottom: 3vw;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_genre {
    font-size: 32px;
    font-size: 4.1666666667vw;
    margin-bottom: 3vw;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_ind {
    font-size: 36px;
    font-size: 4.6875vw;
    line-height: 1.2;
    font-weight: 700;
    color: #00629d;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit {
    font-size: 36px;
    font-size: 4.6875vw;
    line-height: 1.5;
    font-weight: 700;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .sp_txtct {
    text-align: center;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt_box {
    margin-top: 3vw;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt {
    font-size: 28px;
    font-size: 3.6458333333vw;
    margin-top: 3vw;
    line-height: 1.5;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt_s {
    margin-top: 3vw;
    font-size: 24px;
    font-size: 3.125vw;
    line-height: 1.3;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .bl_tit {
    display: block;
    margin-top: 5vw;
    background-color: #afdaef;
    font-size: 28px;
    font-size: 3.6458333333vw;
    font-weight: 700;
    line-height: 1;
    padding: 3vw 3vw;
    border-radius: 5vw;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list {
    margin-top: 6vw;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list .cm_list_li {
    position: relative;
    padding-left: 1.5em;
    font-size: 28px;
    font-size: 3.6458333333vw;
    margin-top: 3vw;
    line-height: 1.25;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list .cm_list_li::before {
    position: absolute;
    top: 0.3em;
    left: 0.5em;
    display: block;
    content: "";
    background-color: #00629d;
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 50%;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .more {
    margin-top: 7vw;
  }
  .page_sec .page_sec_wrap .video_flex:first-child {
    margin-top: 0;
  }
  .page_sec .page_sec_wrap .video_flex .video_flex_fg {
    display: block;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-height: 100%;
    height: 50.6vw;
    background-color: #fff;
    border-radius: 6px;
  }
  .page_sec .page_sec_wrap .m_70 {
    margin-top: 10vw;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap {
    position: relative;
    padding: 5vw;
    background-color: #fff;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap .a_op {
    width: 3.2vw;
    display: block;
    position: absolute;
    top: 10vw;
    right: 5vw;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap .faq_q {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap .faq_q .qnum {
    font-family: oswald, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 46px;
    font-size: 5.9895833333vw;
    margin-right: 5vw;
    white-space: nowrap;
    color: #00629d;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap .faq_q .qnum .qnum_w {
    color: #97cbde;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap .faq_q .qtxt {
    font-weight: 700;
    padding-top: 0.75em;
    padding-right: 7.5vw;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap .faq_q .qtxt .qtxt_s {
    font-weight: 400;
    font-size: 20px;
    font-size: 2.6041666667vw;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap .faq_q .qtxt .note_w {
    position: relative;
    padding-right: 0.5em;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap .faq_q .qtxt .note_w .note_w_s {
    position: absolute;
    font-size: 10px;
    font-size: 1.3020833333vw;
    top: 0;
    right: 0;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap .faq_a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    -webkit-animation: faq_cl_1 1s;
    animation: faq_cl_1 1s;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap .faq_a .anum {
    font-family: oswald, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 46px;
    font-size: 5.9895833333vw;
    margin-right: 5vw;
    white-space: nowrap;
    color: #ce524f;
    -webkit-animation: faq_cl_2 1s;
    animation: faq_cl_2 1s;
    line-height: 0;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap .faq_a .anum .anum_w {
    color: #da9c9b;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap .faq_a .atxt {
    padding-top: 0.75em;
    font-size: 28px;
    font-size: 3.6458333333vw;
    -webkit-animation: faq_cl_3 1s;
    animation: faq_cl_3 1s;
    line-height: 0;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap.active .faq_a {
    -webkit-animation: faq_op_1 1s;
    animation: faq_op_1 1s;
    margin-top: 5vw;
    opacity: 1;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap.active .faq_a .anum {
    -webkit-animation: faq_op_2 1s;
    animation: faq_op_2 1s;
    line-height: 2;
  }
  .page_sec .page_sec_wrap .faq .faq_wrap.active .faq_a .atxt {
    -webkit-animation: faq_op_3 1s;
    animation: faq_op_3 1s;
    line-height: 2;
    padding-top: 0.75em;
  }
  .page_sec .page_sec_wrap .ic_box {
    padding: 7.5vw 5vw;
    background-color: #fff;
    border-radius: 6px;
    margin-top: 5vw;
  }
  .page_sec .page_sec_wrap .ic_box .ic_tit {
    font-size: 42px;
    font-size: 5.46875vw;
    line-height: 1;
    margin-bottom: 7.5vw;
    text-align: center;
  }
  .page_sec .page_sec_wrap .ic_box .ic_txt {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .page_sec .page_sec_wrap .ic_box .ic_txt_s {
    font-size: 24px;
    font-size: 3.125vw;
  }
  .page_sec .page_sec_wrap .ic_box .ic_cont {
    width: 100%;
    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;
    margin-top: 5vw;
  }
  .page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec {
    margin-top: 5vw;
    width: 50%;
  }
  .page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec .ic_img_wrap {
    width: 100%;
    height: 17vw;
  }
  .page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec .ic_img_wrap .ic_img {
    margin: 0 auto;
  }
  .page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec .ic_img_wrap .ic_img_1 {
    width: 15vw;
  }
  .page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec .ic_img_wrap .ic_img_2 {
    width: 18vw;
  }
  .page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec .ic_sec_txt {
    margin-top: 5vw;
    font-size: 28px;
    font-size: 3.6458333333vw;
    text-align: center;
    line-height: 1.5;
    white-space: nowrap;
  }
  .page_sec .page_sec_wrap .ic_box .ic_cont .ic_sec_3 {
    margin: 0;
    margin-top: 2.5vw;
  }
  .page_sec .page_sec_wrap .ic_box .ic_cont_sp .ic_sec {
    width: 100%;
    margin-top: 10vw;
  }
  .page_sec .page_sec_wrap .ic_box .ic_cont_sp .ic_sec:first-child {
    margin-top: 2.5vw;
  }
  .page_sec .page_sec_wrap .ic_box:first-child {
    margin-top: 0;
  }
  .page_sec .page_sec_wrap .point_ul .point_li {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    padding: 5vw;
    margin-top: 7vw;
    border-radius: 6px;
    border: 1px solid #cee3ef;
  }
  .page_sec .page_sec_wrap .point_ul .point_li .point {
    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;
    font-family: oswald, sans-serif;
    font-weight: 700;
    font-style: normal;
    padding-right: 0;
  }
  .page_sec .page_sec_wrap .point_ul .point_li .point .point_txt {
    line-height: 1;
    font-size: 34px;
    font-size: 4.4270833333vw;
    color: #00629d;
  }
  .page_sec .page_sec_wrap .point_ul .point_li .point .point_num {
    line-height: 1;
    font-size: 54px;
    font-size: 7.03125vw;
    color: #97cbde;
    margin-left: 12px;
  }
  .page_sec .page_sec_wrap .point_ul .point_li .point_cont {
    margin-top: 5vw;
  }
  .page_sec .page_sec_wrap .point_ul .point_li .point_cont .point_cont_tit {
    font-size: 28px;
    font-size: 3.6458333333vw;
    line-height: 1.5;
    font-weight: 700;
  }
  .page_sec .page_sec_wrap .point_ul .point_li .point_cont .point_cont_txt {
    font-size: 28px;
    font-size: 3.6458333333vw;
    line-height: 1.5;
    margin-top: 5vw;
  }
  .page_sec .page_sec_wrap .point_ul .point_li .point_cont .point_cont_txt .point_cont_txt_s {
    font-size: 24px;
    font-size: 3.125vw;
  }
  .page_sec .page_sec_wrap .point_ul:first-child {
    margin-top: 0;
  }

  @-webkit-keyframes faq_cl_1 {
    0% {
      margin-top: 5vw;
      opacity: 1;
    }
    50% {
      margin-top: 5vw;
      opacity: 0;
    }
    100% {
      margin-top: 0;
      opacity: 0;
    }
  }
  @keyframes faq_cl_1 {
    0% {
      margin-top: 5vw;
      opacity: 1;
    }
    50% {
      margin-top: 5vw;
      opacity: 0;
    }
    100% {
      margin-top: 0;
      opacity: 0;
    }
  }
  @-webkit-keyframes faq_cl_2 {
    0% {
      line-height: 2;
    }
    50% {
      line-height: 2;
    }
    100% {
      line-height: 0;
    }
  }
  @keyframes faq_cl_2 {
    0% {
      line-height: 2;
    }
    50% {
      line-height: 2;
    }
    100% {
      line-height: 0;
    }
  }
  @-webkit-keyframes faq_cl_3 {
    0% {
      line-height: 2;
      padding-top: 0.75em;
    }
    50% {
      line-height: 2;
      padding-top: 0.75em;
    }
    100% {
      line-height: 0;
      padding-top: 0;
    }
  }
  @keyframes faq_cl_3 {
    0% {
      line-height: 2;
      padding-top: 0.75em;
    }
    50% {
      line-height: 2;
      padding-top: 0.75em;
    }
    100% {
      line-height: 0;
      padding-top: 0;
    }
  }
  @-webkit-keyframes faq_op_1 {
    0% {
      margin-top: 0;
      opacity: 0;
    }
    50% {
      margin-top: 5vw;
      opacity: 0;
    }
    100% {
      margin-top: 5vw;
      opacity: 1;
    }
  }
  @keyframes faq_op_1 {
    0% {
      margin-top: 0;
      opacity: 0;
    }
    50% {
      margin-top: 5vw;
      opacity: 0;
    }
    100% {
      margin-top: 5vw;
      opacity: 1;
    }
  }
  @-webkit-keyframes faq_op_2 {
    0% {
      line-height: 0;
    }
    50% {
      line-height: 2;
    }
    100% {
      line-height: 2;
    }
  }
  @keyframes faq_op_2 {
    0% {
      line-height: 0;
    }
    50% {
      line-height: 2;
    }
    100% {
      line-height: 2;
    }
  }
  @-webkit-keyframes faq_op_3 {
    0% {
      line-height: 0;
      padding-top: 0;
    }
    50% {
      line-height: 2;
      padding-top: 0.75em;
    }
    100% {
      line-height: 2;
      padding-top: 0.75em;
    }
  }
  @keyframes faq_op_3 {
    0% {
      line-height: 0;
      padding-top: 0;
    }
    50% {
      line-height: 2;
      padding-top: 0.75em;
    }
    100% {
      line-height: 2;
      padding-top: 0.75em;
    }
  }
  .pad_plus {
    padding-bottom: 60px;
  }
}
.fadeop {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.fadeop.active {
  opacity: 1;
}

.fadear {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
.fadear.active {
  opacity: 1;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.cls-1 {
  font-size: 16px;
  fill: #333;
  text-anchor: middle;
  font-family: Meiryo;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .page_sec .page_sec_wrap iframe {
    border: none;
    width: 100%;
    height: 2100px;
    padding: 0;
    margin: 0;
  }
}
.main_wrap {
  position: relative;
}

.green {
  color: #0a8524;
}

.purple {
  color: #8816ca;
}

.home_top {
  width: 100%;
}
.home_top .home_top_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 90vw;
  margin: 0 auto;
  padding-top: 180px;
  padding-bottom: 5vw;
}
.home_top .home_top_wrap .home_top_cont {
  position: relative;
  display: inline-block;
  width: 53vw;
}
.home_top .home_top_wrap .home_top_cont .home_top_tit {
  font-size: 39px;
  font-size: 2.7083333333vw;
  line-height: 1.6;
}
.home_top .home_top_wrap .home_top_cont .home_top_tit .tit_s {
  font-size: 30px;
  font-size: 2.0833333333vw;
}
.home_top .home_top_wrap .home_top_cont .home_top_tit .oneft {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
}
.home_top .home_top_wrap .home_top_cont .home_top_txt {
  margin-top: 1.3vw;
  font-size: 18px;
  font-size: 1.25vw;
  line-height: 1.6;
}
.home_top .home_top_wrap .home_top_cont .pfah-wrapper {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
}
.home_top .home_top_wrap .home_top_cont .pfah-wrapper aside {
  font-size: 16px;
  font-size: 1.1111111111vw;
  line-height: 1.6;
}
.home_top .home_top_wrap .home_top_cont .pfah-wrapper .pfah_noto {
  font-size: 14px;
  font-size: 0.9722222222vw;
  margin-top: 1em;
}
.home_top .home_top_wrap .home_top_cont .pfah_a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home_top .home_top_wrap .home_top_cont .pfah_a:hover {
  opacity: 0.6;
}
.home_top .home_top_wrap .home_top_cont .home_top_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.7vw;
  height: 2.7vw;
}
.home_top .home_top_wrap .home_top_cont .home_top_form .pfah-row {
  position: relative;
  height: 100%;
}
.home_top .home_top_wrap .home_top_cont .home_top_form .pfah-row .error-lastname, .home_top .home_top_wrap .home_top_cont .home_top_form .pfah-row .error-email {
  position: absolute;
  top: -1.5em;
  left: 0;
  font-size: 16px;
  font-size: 1.1111111111vw;
  white-space: nowrap;
}
.home_top .home_top_wrap .home_top_cont .home_top_form .top_form_name {
  border: 1px solid #cccccc;
  width: 10vw;
  height: 100%;
  font-size: 16px;
  font-size: 1.1111111111vw;
  padding-left: 0.5em;
  margin-right: 0.7vw;
}
.home_top .home_top_wrap .home_top_cont .home_top_form .top_form_mail {
  border: 1px solid #cccccc;
  width: 17.7vw;
  height: 100%;
  font-size: 16px;
  font-size: 1.1111111111vw;
  padding-left: 0.5em;
  margin-right: 0.7vw;
}
.home_top .home_top_wrap .home_top_cont .home_top_form .top_form_btn {
  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;
  width: 8vw;
  height: 100%;
  background-color: #00629d;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.home_top .home_top_wrap .home_top_cont .home_top_form .top_form_btn:hover {
  background-color: #0180cc;
}
.home_top .home_top_wrap .home_top_cont .home_top_form .top_form_btn .btn_img {
  width: 1.5vw;
  margin-right: 0.625vw;
}
.home_top .home_top_wrap .home_top_cont .home_top_form .top_form_btn .btn_txt {
  color: #fff;
  font-size: 16px;
  font-size: 1.1111111111vw;
  line-height: 1;
}
.home_top .home_top_wrap .home_top_cont .pfah-done-text {
  font-size: 16px;
  font-size: 1.1111111111vw;
  line-height: 2;
}
.home_top .home_top_wrap .home_top_cont .arrow_video {
  width: 10vw;
  position: absolute;
  top: 21vw;
  right: 2.5vw;
}
.home_top .home_top_wrap .home_top_video_wrap {
  position: relative;
  width: 37vw;
  height: 37vw;
  background-color: #fff;
}
.home_top .home_top_wrap .home_top_video_wrap .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.home_top .home_top_wrap .home_top_video_wrap .home_top_video {
  position: relative;
  width: 100%;
  height: 37vw;
  z-index: 1;
}
.home_top .home_top_wrap .home_top_video_wrap .pink {
  position: absolute;
  font-size: 14px;
  font-size: 0.9722222222vw;
  padding: 1.3vw;
  bottom: 7.3vw;
  left: -7.3vw;
  border-radius: 12px;
  background-color: rgba(255, 232, 232, 0.8);
}
.home_top .home_top_wrap .home_top_video_wrap .pink_off {
  opacity: 0;
  -webkit-animation: pikoff 0.5s;
  animation: pikoff 0.5s;
}
.home_top .home_top_wrap .sl_box {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 31px;
  height: 48px;
  border: 2px solid #b6b6b6;
  border-radius: 15px;
}
.home_top .home_top_wrap .sl_box .sl {
  display: block;
  width: 3px;
  height: 10px;
  border-radius: 2px;
  background-color: #b6b6b6;
  margin: 0 auto;
  margin-top: 6px;
  -webkit-animation: 1.3s sl_anime ease-in infinite;
  animation: 1.3s sl_anime ease-in infinite;
}

@-webkit-keyframes pikoff {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pikoff {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes sl_anime {
  0% {
    opacity: 0;
    margin-top: 6px;
    height: 10px;
  }
  20% {
    opacity: 1;
  }
  30% {
    margin-top: 6px;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    margin-top: 26px;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    margin-top: 26px;
    height: 10px;
  }
}
@keyframes sl_anime {
  0% {
    opacity: 0;
    margin-top: 6px;
    height: 10px;
  }
  20% {
    opacity: 1;
  }
  30% {
    margin-top: 6px;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    margin-top: 26px;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    margin-top: 26px;
    height: 10px;
  }
}
.recommended .recommended_wrap {
  display: block;
  margin: 60px auto;
  border-radius: 6px;
  border: 1px solid #d3b3b3;
  width: 1120px;
  padding: 75px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.recommended .recommended_wrap:hover {
  opacity: 0.6;
}
.recommended .recommended_wrap .recommended_tit {
  text-align: center;
  font-size: 2.4rem;
}
.recommended .recommended_wrap .rem_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}
.recommended .recommended_wrap .rem_cont .rem_sec {
  border-right: 1px solid #cccccc;
  width: 345px;
  text-align: center;
  padding: 10px 20px 30px;
}
.recommended .recommended_wrap .rem_cont .rem_sec .target {
  line-height: 1;
}
.recommended .recommended_wrap .rem_cont .rem_sec .valnum {
  margin-top: 25px;
  font-size: 7.2rem;
  font-family: oswald, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ce524f;
  line-height: 1;
}
.recommended .recommended_wrap .rem_cont .rem_sec .valnum .unit {
  font-size: 4.8rem;
}
.recommended .recommended_wrap .rem_cont .rem_sec .valnum .unit_jp {
  font-size: "M PLUS 1p", sans-serif;
  font-weight: 700;
}
.recommended .recommended_wrap .rem_cont .rem_sec .valtxt {
  margin-top: 20px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}
.recommended .recommended_wrap .rem_cont .rem_sec:last-child {
  border-right: 0px;
}

.homesec .homesec_wrap {
  padding: 120px 0;
}
.homesec .homesec_wrap .homesec_tit_wrap {
  text-align: center;
}
.homesec .homesec_wrap .homesec_tit_wrap .homesec_tit {
  font-size: 4.8rem;
  font-family: lato, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #00629d;
  line-height: 1;
}
.homesec .homesec_wrap .homesec_tit_wrap .homesec_tit_jp {
  font-size: 2.4rem;
  line-height: 1;
  margin-top: 30px;
}
.homesec .homesec_wrap .industry_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 960px;
  width: 66%;
  margin: 20px auto 0;
}
.homesec .homesec_wrap .industry_ul .industry_li {
  position: relative;
  width: 210px;
  height: 210px;
  background-color: #fff;
  border-radius: 6px;
  margin-top: 40px;
}
.homesec .homesec_wrap .industry_ul .industry_li .industry_txt {
  position: absolute;
  line-height: 1;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.homesec .homesec_wrap .industry_ul .industry_li .industry_img {
  margin: 0 auto;
}
.homesec .homesec_wrap .industry_ul .industry_li .industry_1 {
  margin-top: 36px;
  width: 119px;
}
.homesec .homesec_wrap .industry_ul .industry_li .industry_2 {
  margin-top: 43px;
  width: 87px;
}
.homesec .homesec_wrap .industry_ul .industry_li .industry_3 {
  margin-top: 45px;
  width: 90px;
}
.homesec .homesec_wrap .industry_ul .industry_li .industry_4 {
  margin-top: 47px;
  width: 93px;
}
.homesec .homesec_wrap .industry_ul .industry_li .industry_5 {
  margin-top: 44px;
  width: 97px;
}
.homesec .homesec_wrap .industry_ul .industry_li .industry_6 {
  margin-top: 37px;
  width: 116px;
}
.homesec .homesec_wrap .industry_ul .industry_li .industry_7 {
  margin-top: 42px;
  width: 79px;
}
.homesec .homesec_wrap .industry_ul .industry_li .industry_8 {
  margin-top: 40px;
  width: 102px;
}
.homesec .homesec_wrap .industry_ul .industry_li_no {
  background: none !important;
}
.homesec .homesec_wrap .channel_cont {
  padding-top: 20px;
}
.homesec .homesec_wrap .channel_cont .channel_sec {
  display: block;
  max-width: 960px;
  width: 66%;
  margin: 40px auto 0;
  background-color: #fff;
  border-radius: 6px;
  padding: 60px 0;
}
.homesec .homesec_wrap .channel_cont .channel_sec .seccont_tit_wrap {
  text-align: center;
}
.homesec .homesec_wrap .channel_cont .channel_sec .seccont_tit_wrap .seccont_tit {
  font-size: 3rem;
}
.homesec .homesec_wrap .channel_cont .channel_sec .seccont_tit_wrap .seccont_img {
  width: 63px;
  display: inline-block;
  margin-top: 30px;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap {
  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;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex {
  position: relative;
  width: 220px;
  height: 150px;
  margin-top: 50px;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_txt {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img {
  margin: 0 auto;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_1 {
  width: 93px;
  margin-top: 4px;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_2 {
  width: 96px;
  margin-top: 12px;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_3 {
  width: 88px;
  margin-top: 6px;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_4 {
  width: 91px;
  margin-top: 5px;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_5 {
  width: 89px;
  margin-top: 17px;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_6 {
  width: 125px;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_7 {
  width: 78px;
  margin-top: 7px;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_8 {
  width: 80px;
  margin-top: 9px;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_9 {
  width: 82px;
  margin-top: 4px;
}
.homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_10 {
  width: 80px;
  margin-top: 14px;
}
.homesec .homesec_wrap .casestudy_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1120px;
  width: 77%;
  margin: 60px auto 0;
}
.homesec .homesec_wrap .casestudy_cont::after {
  content: "";
  display: block;
  width: 360px;
  height: 0;
}
.homesec .homesec_wrap .casestudy_cont .casestudy_sec {
  position: relative;
  width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_img_wrap {
  display: block;
  width: 100%;
  height: 240px;
  border-radius: 6px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #efefef;
}
.homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_img_wrap .casestudy_img {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 100%;
}
.homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_img_wrap:hover {
  opacity: 0.5;
}
.homesec .homesec_wrap .casestudy_cont .casestudy_sec .tag_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}
.homesec .homesec_wrap .casestudy_cont .casestudy_sec .tag_ul .tag_li {
  display: block;
  font-size: 1.4rem;
  padding: 10px;
  background-color: #e0f0f7;
  margin-right: 10px;
  margin-top: 10px;
  border-radius: 3px;
  line-height: 1;
}
.homesec .homesec_wrap .casestudy_cont .casestudy_sec .tag_ul .tag_li a {
  display: block;
  width: 100%;
  height: 100%;
}
.homesec .homesec_wrap .casestudy_cont .casestudy_sec .as_tit_wrap {
  padding: 0 0.5em;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.homesec .homesec_wrap .casestudy_cont .casestudy_sec .as_tit_wrap .date_tit {
  line-height: 1;
  font-weight: 700;
}
.homesec .homesec_wrap .casestudy_cont .casestudy_sec .as_tit_wrap .category {
  font-size: 1.6rem;
  padding: 10px;
  background-color: #e0f0f7;
  border-radius: 3px;
  margin-left: 16px;
  line-height: 1;
}
.homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_tit {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
  margin-top: 30px;
}
.homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_txt {
  margin-top: 20px;
  padding: 0 0.5em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.5;
  height: 4.5em;
}
.homesec .homesec_wrap .service_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 60px auto 0;
  max-width: 1040px;
  width: 70%;
}
.homesec .homesec_wrap .service_cont .service_sec {
  position: relative;
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.homesec .homesec_wrap .service_cont .service_sec .service_tit {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
}
.homesec .homesec_wrap .service_cont .service_sec .service_img_wrap {
  width: 100%;
  height: 280px;
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
}
.homesec .homesec_wrap .service_cont .service_sec .service_img_wrap iframe {
  width: 100%;
  height: 500px;
}
.homesec .homesec_wrap .service_cont .service_sec .service_txt {
  margin-top: 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  min-height: 0%;
}
.homesec .homesec_wrap .feature_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 960px;
  width: 66%;
  margin: 60px auto 0;
}
.homesec .homesec_wrap .feature_cont .feature_sec {
  width: 48%;
  padding: 40px;
  margin-top: 16px;
  background-color: #fff;
  border-radius: 6px;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap {
  position: relative;
  width: 100%;
  height: 160px;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_1 {
  width: 108px;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_2 {
  width: 107px;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_3 {
  width: 102px;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_4 {
  width: 86px;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_tit {
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_ul {
  font-size: 1.6rem;
  margin-top: 20px;
  padding: 0 86px;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_ul .feature_li {
  position: relative;
  margin-top: 10px;
  padding-left: 1em;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_ul .feature_li::before {
  display: block;
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_ul_1 {
  padding: 0 50px;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_ul_2 {
  padding: 0 52px;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_ul_3 {
  padding: 0 77px;
}
.homesec .homesec_wrap .feature_cont .feature_sec .feature_ul_4 {
  padding: 0 70px;
}
.homesec .homesec_wrap .partner_cont {
  width: 640px;
  margin: 80px auto 0;
}
.homesec .homesec_wrap .partner_cont .partner_sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  padding: 26px 40px;
  border-radius: 6px;
}
.homesec .homesec_wrap .partner_cont .partner_sec .partner_img {
  width: 225px;
}
.homesec .homesec_wrap .partner_cont .partner_sec .partner_tit {
  font-size: 2.4rem;
  font-weight: 700;
  white-space: nowrap;
  margin-right: 25px;
}

.industry {
  background-image: url("wp-content/themes/onedouga/assets/images/home/industry_bak.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.channel {
  background-image: url("wp-content/themes/onedouga/assets/images/home/channel_bak.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.service {
  background-image: url("wp-content/themes/onedouga/assets/images/home/industry_bak.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.feature {
  background-image: url("wp-content/themes/onedouga/assets/images/home/channel_bak.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.partner {
  background-image: url("wp-content/themes/onedouga/assets/images/home/partner_bak.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.more_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.more_flex .more {
  margin: 60px 10px 0;
}

.more {
  position: relative;
  display: block;
  width: 320px;
  background-color: #00629d;
  margin: 60px auto 0;
  padding: 20px 0;
  border-radius: 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.more .more_txt {
  text-align: center;
  color: #fff;
  line-height: 1;
}
.more .more_img {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
}
.more:hover {
  background-color: #0180cc;
}

.more_l {
  width: 380px;
}

.continue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 16px;
}
.continue .continue_txt {
  line-height: 1;
  color: #00629d;
  margin-right: 10px;
}
.continue .continue_img {
  width: 10px;
}
.continue:hover .continue_txt {
  color: #0180cc;
}

.continue_p {
  padding: 0 0.5em;
}

@media screen and (max-width: 1440px) {
  .recommended .recommended_wrap {
    margin: 60px auto;
    border-radius: 6px;
    border: 1px solid #d3b3b3;
    width: 77%;
    padding: 75px 0;
  }
  .recommended .recommended_wrap .recommended_tit {
    text-align: center;
    font-size: 2.4rem;
  }
  .recommended .recommended_wrap .rem_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec {
    width: 345px;
    text-align: center;
    padding: 10px 20px 30px;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .target {
    line-height: 1;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .valnum {
    margin-top: 25px;
    font-size: 7.2rem;
    font-family: oswald, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #ce524f;
    line-height: 1;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .valnum .unit {
    font-size: 4.8rem;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .valnum .unit_jp {
    font-size: "M PLUS 1p", sans-serif;
    font-weight: 700;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .valtxt {
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
  }

  .homesec .homesec_wrap {
    padding: 120px 0;
  }
  .homesec .homesec_wrap .homesec_tit_wrap {
    text-align: center;
  }
  .homesec .homesec_wrap .homesec_tit_wrap .homesec_tit {
    font-size: 4.8rem;
    font-family: lato, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #00629d;
    line-height: 1;
  }
  .homesec .homesec_wrap .homesec_tit_wrap .homesec_tit_jp {
    font-size: 2.4rem;
    line-height: 1;
    margin-top: 30px;
  }
  .homesec .homesec_wrap .industry_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px auto 0;
  }
  .homesec .homesec_wrap .industry_ul .industry_li {
    position: relative;
    width: 14.5vw;
    height: 14.5vw;
    background-color: #fff;
    border-radius: 6px;
    margin-top: 40px;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_txt {
    position: absolute;
    line-height: 1;
    left: 50%;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 16px;
    font-size: 1.1111111111vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_img {
    margin: 0 auto;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_1 {
    margin-top: 2.5vw;
    width: 8.26vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_2 {
    margin-top: 3vw;
    width: 6vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_3 {
    margin-top: 3.125vw;
    width: 6.25vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_4 {
    margin-top: 3.2vw;
    width: 6.4vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_5 {
    margin-top: 3vw;
    width: 6.4vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_6 {
    margin-top: 2.5vw;
    width: 8vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_7 {
    margin-top: 3vw;
    width: 5.5vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_8 {
    margin-top: 2.7vw;
    width: 7vw;
  }
  .homesec .homesec_wrap .channel_cont {
    padding-top: 20px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec {
    display: block;
    margin: 40px auto 0;
    background-color: #fff;
    border-radius: 6px;
    padding: 60px 0;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .seccont_tit_wrap {
    text-align: center;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .seccont_tit_wrap .seccont_tit {
    font-size: 30px;
    font-size: 2.0833333333vw;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .seccont_tit_wrap .seccont_img {
    margin-top: 2vw;
    width: 4.375vw;
    display: inline-block;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap {
    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;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex {
    position: relative;
    width: 15.2vw;
    height: 10.4vw;
    margin-top: 3.4vw;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_txt {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 16px;
    font-size: 1.1111111111vw;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img {
    margin: 0 auto;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_1 {
    width: 6.5vw;
    margin-top: 4px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_2 {
    width: 6.5vw;
    margin-top: 12px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_3 {
    width: 6.1vw;
    margin-top: 6px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_4 {
    width: 6.5vw;
    margin-top: 5px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_5 {
    width: 6.5vw;
    margin-top: 17px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_6 {
    width: 8.6vw;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_7 {
    width: 5.4vw;
    margin-top: 7px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_8 {
    width: 5.5vw;
    margin-top: 9px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_9 {
    width: 5.5vw;
    margin-top: 4px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_10 {
    width: 5.5vw;
    margin-top: 14px;
  }
  .homesec .homesec_wrap .casestudy_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 60px auto 0;
  }
  .homesec .homesec_wrap .casestudy_cont::after {
    content: "";
    display: block;
    width: 25vw;
    height: 0;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec {
    position: relative;
    width: 25vw;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_img_wrap {
    display: block;
    width: 100%;
    height: 16vw;
    border-radius: 6px;
    overflow: hidden;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_img_wrap .casestudy_img {
    width: 100%;
    height: 100%;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_tit {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
    margin-top: 30px;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_txt {
    margin-top: 20px;
  }
  .homesec .homesec_wrap .service_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 60px auto 0;
    max-width: 1040px;
    width: 70%;
  }
  .homesec .homesec_wrap .service_cont .service_sec {
    position: relative;
    width: 48%;
  }
  .homesec .homesec_wrap .service_cont .service_sec .service_tit {
    font-size: 2.4rem;
    text-align: center;
    font-weight: 700;
  }
  .homesec .homesec_wrap .service_cont .service_sec .service_img_wrap {
    width: 100%;
    height: 18.9vw;
    margin-top: 20px;
    border-radius: 6px;
  }
  .homesec .homesec_wrap .service_cont .service_sec .service_txt {
    margin-top: 30px;
  }
  .homesec .homesec_wrap .feature_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 960px;
    width: 66%;
    margin: 60px auto 0;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec {
    width: 48%;
    padding: 40px;
    margin-top: 16px;
    background-color: #fff;
    border-radius: 6px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap {
    position: relative;
    width: 100%;
    height: 160px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_1 {
    width: 108px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_2 {
    width: 107px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_3 {
    width: 102px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_4 {
    width: 86px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_tit {
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_ul {
    font-size: 1.6rem;
    margin-top: 20px;
    padding: 0 20px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_ul .feature_li {
    position: relative;
    margin-top: 10px;
    padding-left: 1em;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_ul .feature_li::before {
    display: block;
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_ul_1 {
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .home_top {
    width: 100vw;
    height: auto;
  }
  .home_top .home_top_wrap {
    display: block;
    position: relative;
    width: 85vw;
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 0;
  }
  .home_top .home_top_wrap .home_top_cont {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_tit {
    font-size: 36px;
    font-size: 4.6875vw;
    line-height: 1.6;
    text-align: center;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_tit .tit_s {
    font-size: 24px;
    font-size: 3.125vw;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_txt {
    font-size: 28px;
    font-size: 3.6458333333vw;
    line-height: 1.6;
    text-align: center;
    margin-top: 5vw;
  }
  .home_top .home_top_wrap .home_top_cont .pink {
    position: relative;
    font-size: 28px;
    font-size: 3.6458333333vw;
    text-align: center;
    margin-top: 5vw;
    padding: 5vw;
    border-radius: 12px;
    background-color: rgba(255, 232, 232, 0.8);
  }
  .home_top .home_top_wrap .home_top_cont .pfah-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
  }
  .home_top .home_top_wrap .home_top_cont .pfah-wrapper aside {
    font-size: 16px;
    font-size: 2.0833333333vw;
    line-height: 1.6;
  }
  .home_top .home_top_wrap .home_top_cont .pfah-wrapper .pfah_noto {
    font-size: 14px;
    font-size: 1.8229166667vw;
    margin-top: 1em;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form {
    display: block;
    margin-top: 4vw;
    height: auto;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .pfah-row {
    position: relative;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .pfah-row .error-lastname, .home_top .home_top_wrap .home_top_cont .home_top_form .pfah-row .error-email {
    display: block;
    position: relative;
    top: auto;
    left: 0;
    font-size: 16px;
    font-size: 2.0833333333vw;
    margin-top: 2.5vw;
    white-space: nowrap;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .top_form_name {
    border: 1px solid #cccccc;
    width: 100%;
    height: 7.5vw;
    font-size: 16px;
    font-size: 2.0833333333vw;
    padding-left: 0.5em;
    margin-right: 0.7vw;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .top_form_mail {
    border: 1px solid #cccccc;
    width: 100%;
    height: 7.5vw;
    font-size: 16px;
    font-size: 2.0833333333vw;
    padding-left: 0.5em;
    margin-right: 0.7vw;
    margin-top: 2.5vw;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .top_form_btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #00629d;
    width: 100%;
    height: 7.5vw;
    background-color: #00629d;
    border-radius: 3px;
    margin-top: 2.5vw;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .top_form_btn .btn_img {
    width: 5vw;
    margin-right: 1.625vw;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .top_form_btn .btn_txt {
    color: #fff;
    font-size: 16px;
    font-size: 2.0833333333vw;
    line-height: 1;
  }
  .home_top .home_top_wrap .home_top_cont .pfah-done-text {
    font-size: 16px;
    font-size: 2.0833333333vw;
  }
  .home_top .home_top_wrap .home_top_cont .arrow_video {
    display: none;
  }
  .home_top .home_top_wrap .home_top_video_wrap {
    margin-top: 5vw;
    width: 85vw;
    height: 85vw;
  }
  .home_top .home_top_wrap .home_top_video_wrap .home_top_video {
    width: 100%;
    height: 85vw;
  }
  .home_top .home_top_wrap .home_top_video_wrap .pink {
    display: none;
  }
  .home_top .home_top_wrap .sl_box {
    display: none;
    position: absolute;
    bottom: 5vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 31px;
    height: 48px;
    border: 2px solid #b6b6b6;
    border-radius: 15px;
  }
  .home_top .home_top_wrap .sl_box .sl {
    display: block;
    width: 3px;
    height: 10px;
    border-radius: 2px;
    background-color: #b6b6b6;
    margin: 0 auto;
    margin-top: 6px;
    -webkit-animation: 1.3s sl_anime ease-in infinite;
    animation: 1.3s sl_anime ease-in infinite;
  }

  @-webkit-keyframes sl_anime {
    0% {
      opacity: 0;
      margin-top: 6px;
      height: 10px;
    }
    20% {
      opacity: 1;
    }
    30% {
      margin-top: 6px;
    }
    50% {
      opacity: 1;
    }
    70% {
      opacity: 0;
      margin-top: 26px;
    }
    80% {
      opacity: 0;
    }
    100% {
      opacity: 0;
      margin-top: 26px;
      height: 10px;
    }
  }
  @keyframes sl_anime {
    0% {
      opacity: 0;
      margin-top: 6px;
      height: 10px;
    }
    20% {
      opacity: 1;
    }
    30% {
      margin-top: 6px;
    }
    50% {
      opacity: 1;
    }
    70% {
      opacity: 0;
      margin-top: 26px;
    }
    80% {
      opacity: 0;
    }
    100% {
      opacity: 0;
      margin-top: 26px;
      height: 10px;
    }
  }
  .recommended .recommended_wrap {
    margin: 60px auto;
    border-radius: 6px;
    border: 1px solid #d3b3b3;
    width: 90vw;
    padding: 75px 0;
  }
  .recommended .recommended_wrap .recommended_tit {
    text-align: center;
    font-size: 2.4rem;
  }
  .recommended .recommended_wrap .rem_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec {
    width: 345px;
    text-align: center;
    padding: 10px 20px 30px;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .target {
    line-height: 1;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .valnum {
    margin-top: 25px;
    font-size: 7.2rem;
    font-family: oswald, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #ce524f;
    line-height: 1;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .valnum .unit {
    font-size: 4.8rem;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .valnum .unit_jp {
    font-size: "M PLUS 1p", sans-serif;
    font-weight: 700;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .valtxt {
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .homesec .homesec_wrap {
    padding: 120px 0;
  }
  .homesec .homesec_wrap .homesec_tit_wrap {
    text-align: center;
  }
  .homesec .homesec_wrap .homesec_tit_wrap .homesec_tit {
    font-size: 4.8rem;
    font-family: lato, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #00629d;
    line-height: 1;
  }
  .homesec .homesec_wrap .homesec_tit_wrap .homesec_tit_jp {
    font-size: 2.4rem;
    line-height: 1;
    margin-top: 30px;
  }
  .homesec .homesec_wrap .industry_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 700px;
    margin: 20px auto 0;
  }
  .homesec .homesec_wrap .industry_ul .industry_li {
    position: relative;
    width: 210px;
    height: 210px;
    background-color: #fff;
    border-radius: 6px;
    margin-top: 40px;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_txt {
    position: absolute;
    line-height: 1;
    left: 50%;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 1.6rem;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_img {
    margin: 0 auto;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_1 {
    margin-top: 36px;
    width: 119px;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_2 {
    margin-top: 43px;
    width: 87px;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_3 {
    margin-top: 45px;
    width: 90px;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_4 {
    margin-top: 47px;
    width: 93px;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_5 {
    margin-top: 44px;
    width: 97px;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_6 {
    margin-top: 37px;
    width: 116px;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_7 {
    margin-top: 42px;
    width: 79px;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_8 {
    margin-top: 40px;
    width: 102px;
  }
  .homesec .homesec_wrap .channel_cont {
    padding-top: 20px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec {
    display: block;
    width: 700px;
    margin: 40px auto 0;
    background-color: #fff;
    border-radius: 6px;
    padding: 60px 0;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .seccont_tit_wrap {
    text-align: center;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .seccont_tit_wrap .seccont_tit {
    font-size: 3rem;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .seccont_tit_wrap .seccont_img {
    width: 63px;
    display: inline-block;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex {
    position: relative;
    width: 220px;
    height: 150px;
    margin-top: 50px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_txt {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 1.6rem;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img {
    margin: 0 auto;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_1 {
    width: 93px;
    margin-top: 4px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_2 {
    width: 96px;
    margin-top: 12px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_3 {
    width: 88px;
    margin-top: 6px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_4 {
    width: 91px;
    margin-top: 5px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_5 {
    width: 89px;
    margin-top: 17px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_6 {
    width: 125px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_7 {
    width: 78px;
    margin-top: 7px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_8 {
    width: 80px;
    margin-top: 9px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_9 {
    width: 82px;
    margin-top: 4px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_10 {
    width: 80px;
    margin-top: 14px;
  }
  .homesec .homesec_wrap .casestudy_cont {
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 60vw;
    margin: 60px auto 0;
  }
  .homesec .homesec_wrap .casestudy_cont::after {
    display: none;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec {
    position: relative;
    width: 100%;
    margin: 60px auto 0;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_img_wrap {
    display: block;
    width: 100%;
    height: 38vw;
    border-radius: 6px;
    overflow: hidden;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_img_wrap .casestudy_img {
    width: 100%;
    height: 100%;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .as_tit_wrap {
    padding: 0;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_tit {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
    margin-top: 30px;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_txt {
    margin-top: 20px;
    padding: 0;
  }
  .homesec .homesec_wrap .service_cont {
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 60px auto 0;
    max-width: 100%;
    width: 60vw;
  }
  .homesec .homesec_wrap .service_cont .service_sec {
    position: relative;
    width: 100%;
    margin: 60px auto 0;
  }
  .homesec .homesec_wrap .service_cont .service_sec .service_tit {
    font-size: 2.4rem;
    text-align: center;
    font-weight: 700;
  }
  .homesec .homesec_wrap .service_cont .service_sec .service_img_wrap {
    width: 100%;
    height: 33.333vw;
    margin-top: 20px;
    border-radius: 6px;
  }
  .homesec .homesec_wrap .service_cont .service_sec .service_txt {
    margin-top: 30px;
  }
  .homesec .homesec_wrap .feature_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 100%;
    width: 700px;
    margin: 60px auto 0;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec {
    width: 48%;
    padding: 35px;
    margin-top: 16px;
    background-color: #fff;
    border-radius: 6px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap {
    position: relative;
    width: 100%;
    height: 160px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_1 {
    width: 108px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_2 {
    width: 107px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_3 {
    width: 102px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_4 {
    width: 86px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_tit {
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_ul {
    font-size: 1.6rem;
    margin-top: 20px;
    padding: 0;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_ul .feature_li {
    position: relative;
    margin-top: 10px;
    padding-left: 1em;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_ul .feature_li::before {
    display: block;
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_ul_1 {
    padding: 0;
  }

  .continue_p {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .main_wrap {
    position: relative;
    padding-bottom: 60px;
  }

  .no_pad {
    padding: 0;
  }

  .home_top {
    width: 100vw;
    height: auto;
  }
  .home_top .home_top_wrap {
    display: block;
    position: relative;
    width: 85vw;
    margin: 0 auto;
    padding-top: 120px;
  }
  .home_top .home_top_wrap .home_top_cont {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_tit {
    font-size: 58px;
    font-size: 7.5520833333vw;
    line-height: 1.6;
    text-align: center;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_tit .tit_s {
    font-size: 34px;
    font-size: 4.4270833333vw;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_txt {
    margin-top: 1.3vw;
    font-size: 28px;
    font-size: 3.6458333333vw;
    line-height: 1.6;
    text-align: center;
    margin-top: 4vw;
  }
  .home_top .home_top_wrap .home_top_cont .pfah-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
  }
  .home_top .home_top_wrap .home_top_cont .pfah-wrapper aside {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .home_top .home_top_wrap .home_top_cont .pfah-wrapper .pfah_noto {
    font-size: 24px;
    font-size: 3.125vw;
    margin-top: 1em;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form {
    display: block;
    margin-top: 4vw;
    height: auto;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .pfah-row {
    position: relative;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .pfah-row .error-lastname, .home_top .home_top_wrap .home_top_cont .home_top_form .pfah-row .error-email {
    display: block;
    position: relative;
    top: auto;
    left: 0;
    font-size: 28px;
    font-size: 3.6458333333vw;
    margin-top: 2.5vw;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .top_form_name {
    border: 1px solid #cccccc;
    width: 85vw;
    height: 10vw;
    font-size: 28px;
    font-size: 3.6458333333vw;
    padding-left: 0.5em;
    margin-right: 0.7vw;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .top_form_mail {
    border: 1px solid #cccccc;
    width: 85vw;
    height: 10vw;
    font-size: 28px;
    font-size: 3.6458333333vw;
    padding-left: 0.5em;
    margin-right: 0.7vw;
    margin-top: 2.5vw;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .top_form_btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #00629d;
    width: 85vw;
    height: 10vw;
    background-color: #00629d;
    border-radius: 3px;
    margin-top: 2.5vw;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .top_form_btn .btn_img {
    width: 7vw;
    margin-right: 1.625vw;
  }
  .home_top .home_top_wrap .home_top_cont .home_top_form .top_form_btn .btn_txt {
    color: #fff;
    font-size: 28px;
    font-size: 3.6458333333vw;
    line-height: 1;
  }
  .home_top .home_top_wrap .home_top_cont .pfah-done-text {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .home_top .home_top_wrap .home_top_cont .arrow_video {
    display: none;
  }
  .home_top .home_top_wrap .home_top_video_wrap {
    margin-top: 5vw;
    width: 85vw;
    height: 85vw;
  }
  .home_top .home_top_wrap .sl_box {
    display: none;
    position: absolute;
    bottom: 5vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 31px;
    height: 48px;
    border: 2px solid #b6b6b6;
    border-radius: 15px;
  }
  .home_top .home_top_wrap .sl_box .sl {
    display: block;
    width: 3px;
    height: 10px;
    border-radius: 2px;
    background-color: #b6b6b6;
    margin: 0 auto;
    margin-top: 6px;
    -webkit-animation: 1.3s sl_anime ease-in infinite;
    animation: 1.3s sl_anime ease-in infinite;
  }

  @-webkit-keyframes sl_anime {
    0% {
      opacity: 0;
      margin-top: 6px;
      height: 10px;
    }
    20% {
      opacity: 1;
    }
    30% {
      margin-top: 6px;
    }
    50% {
      opacity: 1;
    }
    70% {
      opacity: 0;
      margin-top: 26px;
    }
    80% {
      opacity: 0;
    }
    100% {
      opacity: 0;
      margin-top: 26px;
      height: 10px;
    }
  }
  @keyframes sl_anime {
    0% {
      opacity: 0;
      margin-top: 6px;
      height: 10px;
    }
    20% {
      opacity: 1;
    }
    30% {
      margin-top: 6px;
    }
    50% {
      opacity: 1;
    }
    70% {
      opacity: 0;
      margin-top: 26px;
    }
    80% {
      opacity: 0;
    }
    100% {
      opacity: 0;
      margin-top: 26px;
      height: 10px;
    }
  }
  .recommended .recommended_wrap {
    margin: 60px auto;
    border-radius: 6px;
    border: 1px solid #d3b3b3;
    width: 85vw;
    padding: 5vw 0;
  }
  .recommended .recommended_wrap .recommended_tit {
    text-align: center;
    font-size: 36px;
    font-size: 4.6875vw;
  }
  .recommended .recommended_wrap .rem_cont {
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2.5vw;
    text-align: center;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec {
    width: 50vw;
    text-align: center;
    padding: 5vw 0;
    border-bottom: 1px solid #cccccc;
    border-right: 0;
    display: inline-block;
    margin: 0 auto;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .target {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .valnum {
    margin-top: 25px;
    font-size: 130px;
    font-size: 16.9270833333vw;
    font-family: oswald, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #ce524f;
    line-height: 1;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .valnum .unit {
    font-size: 86px;
    font-size: 11.1979166667vw;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .valnum .unit_jp {
    font-size: "M PLUS 1p", sans-serif;
    font-weight: 700;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec .valtxt {
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
    font-size: 32px;
    font-size: 4.1666666667vw;
    line-height: 1.5;
  }
  .recommended .recommended_wrap .rem_cont .rem_sec:last-child {
    border: none;
  }

  .homesec .homesec_wrap {
    padding: 15vw 0;
  }
  .homesec .homesec_wrap .homesec_tit_wrap {
    text-align: center;
  }
  .homesec .homesec_wrap .homesec_tit_wrap .homesec_tit {
    font-size: 57px;
    font-size: 7.421875vw;
    font-family: lato, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #00629d;
    line-height: 1;
  }
  .homesec .homesec_wrap .homesec_tit_wrap .homesec_tit_jp {
    font-size: 28px;
    font-size: 3.6458333333vw;
    line-height: 1;
    margin-top: 5vw;
  }
  .homesec .homesec_wrap .industry_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90vw;
    margin: 2.5vw auto 0;
  }
  .homesec .homesec_wrap .industry_ul .industry_li {
    position: relative;
    width: 27vw;
    height: 27vw;
    background-color: #fff;
    border-radius: 6px;
    margin-top: 5vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_txt {
    position: absolute;
    line-height: 1;
    left: 50%;
    bottom: 2.5vw;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_img {
    margin: 0 auto;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_1 {
    margin-top: 4.8vw;
    width: 16vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_2 {
    margin-top: 5.7vw;
    width: 11.6vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_3 {
    margin-top: 5.7vw;
    width: 12vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_4 {
    margin-top: 6.2vw;
    width: 12.4vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_5 {
    margin-top: 4.5vw;
    width: 13vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_6 {
    margin-top: 4.5vw;
    width: 15.5vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_7 {
    margin-top: 5.7vw;
    width: 10.5vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li .industry_8 {
    margin-top: 5.7vw;
    width: 13vw;
  }
  .homesec .homesec_wrap .industry_ul .industry_li_no {
    background: none;
  }
  .homesec .homesec_wrap .channel_cont {
    padding-top: 2.5vw;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec {
    display: block;
    width: 90vw;
    margin: 5vw auto 0;
    background-color: #fff;
    border-radius: 6px;
    padding: 7.5vw 0;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .seccont_tit_wrap {
    text-align: center;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .seccont_tit_wrap .seccont_tit {
    font-size: 32px;
    font-size: 4.1666666667vw;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .seccont_tit_wrap .seccont_img {
    width: 15vw;
    display: inline-block;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex {
    position: relative;
    width: 27vw;
    height: 22vw;
    margin-top: 50px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_txt {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img {
    margin: 0 auto;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_1 {
    width: 12.5vw;
    margin-top: 4px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_2 {
    width: 12.5vw;
    margin-top: 12px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_3 {
    width: 12.5vw;
    margin-top: 6px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_4 {
    width: 12.5vw;
    margin-top: 5px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_5 {
    width: 12.5vw;
    margin-top: 17px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_6 {
    width: 12.5vw;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_7 {
    width: 12.5vw;
    margin-top: 7px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_8 {
    width: 12.5vw;
    margin-top: 9px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_9 {
    width: 12.5vw;
    margin-top: 4px;
  }
  .homesec .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_10 {
    width: 12.5vw;
    margin-top: 14px;
  }
  .homesec .homesec_wrap .casestudy_cont {
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 90vw;
    margin: 7.5vw auto 0;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec {
    position: relative;
    width: 100%;
    margin-top: 10vw;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .tag_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 3vw;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .tag_ul .tag_li {
    font-size: 24px;
    font-size: 3.125vw;
    padding: 2vw;
    background-color: #e0f0f7;
    margin-right: 10px;
    margin-top: 10px;
    border-radius: 3px;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_img_wrap {
    display: block;
    width: 100%;
    height: 60vw;
    border-radius: 6px;
    overflow: hidden;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_img_wrap .casestudy_img {
    width: 100%;
    height: 100%;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .as_tit_wrap {
    font-size: 24px;
    font-size: 3.125vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 5vw;
    padding: 0;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .as_tit_wrap .date_tit {
    font-size: 24px;
    font-size: 3.125vw;
    line-height: 1;
    font-weight: 700;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .as_tit_wrap .category {
    margin-left: 1.5vw;
    font-size: 24px;
    font-size: 3.125vw;
    padding: 2vw;
    background-color: #e0f0f7;
    border-radius: 3px;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_tit {
    font-size: 32px;
    font-size: 4.1666666667vw;
    font-weight: 700;
    text-align: left;
    margin-top: 5vw;
  }
  .homesec .homesec_wrap .casestudy_cont .casestudy_sec .casestudy_txt {
    margin-top: 2vw;
    font-size: 28px;
    font-size: 3.6458333333vw;
    padding: 0;
  }
  .homesec .homesec_wrap .service_cont {
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 7.5vw auto 0;
    max-width: 100%;
    width: 90vw;
  }
  .homesec .homesec_wrap .service_cont .service_sec {
    position: relative;
    width: 100%;
    margin-top: 10vw;
  }
  .homesec .homesec_wrap .service_cont .service_sec .service_tit {
    font-size: 36px;
    font-size: 4.6875vw;
    text-align: center;
    font-weight: 700;
  }
  .homesec .homesec_wrap .service_cont .service_sec .service_img_wrap {
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
    border-radius: 6px;
  }
  .homesec .homesec_wrap .service_cont .service_sec .service_txt {
    margin-top: 3vw;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .homesec .homesec_wrap .feature_cont {
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 100%;
    width: 90vw;
    margin: 7.5vw auto 0;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec {
    width: 100%;
    padding: 5vw;
    margin-top: 16px;
    background-color: #fff;
    border-radius: 6px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap {
    position: relative;
    width: 100%;
    height: 20vw;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_1, .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_2, .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_3 {
    width: 14.5vw;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_img_wrap .feature_img_4 {
    width: 11.4vw;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_tit {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_ul {
    font-size: 28px;
    font-size: 3.6458333333vw;
    margin-top: 20px;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_ul .feature_li {
    position: relative;
    margin-top: 10px;
    padding-left: 1em;
  }
  .homesec .homesec_wrap .feature_cont .feature_sec .feature_ul .feature_li::before {
    display: block;
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }
  .homesec .homesec_wrap .partner_cont {
    width: 90vw;
    margin: 7.5vw auto 0;
  }
  .homesec .homesec_wrap .partner_cont .partner_sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    padding: 5vw;
    border-radius: 6px;
  }
  .homesec .homesec_wrap .partner_cont .partner_sec .partner_img {
    width: 30vw;
  }
  .homesec .homesec_wrap .partner_cont .partner_sec .partner_tit {
    font-size: 3.6vw;
    font-weight: 700;
    white-space: nowrap;
    margin-right: 5vw;
  }

  .more_flex {
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .more_flex .more {
    margin: 7vw auto 0;
  }

  .more {
    position: relative;
    width: 70vw;
    background-color: #00629d;
    margin: 7vw auto 0;
    padding: 4.5vw 0;
    border-radius: 40px;
  }
  .more .more_txt {
    text-align: center;
    color: #fff;
    line-height: 1;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .more .more_img {
    position: absolute;
    top: 50%;
    right: 5vw;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2.5vw;
  }

  .more_l {
    width: 100%;
  }

  .continue {
    margin-top: 2.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .continue .continue_txt {
    line-height: 1;
    color: #00629d;
    margin-right: 2.5vw;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .continue .continue_img {
    width: 2vw;
  }
}
.up {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #616161;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 80;
}
.up .up_wrap {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.up .up_wrap .up_img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 24px;
}
.up:hover {
  opacity: 0.7;
}

.up_no {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.up_no_end {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.op, .op_2, .op_3, .op_4, .op_5 {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.op.active, .op_2.active, .op_3.active, .op_4.active, .op_5.active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.anidl_2 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.anidl_3 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.anidl_4 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.anidl_5 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.anidl_6 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.anidl_7 {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.anidl_8 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.anidl_9 {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.anidl_10 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.anidl_11 {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.anidl_12 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.anidl_13 {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

@media screen and (max-width: 767px) {
  .page_sec .page_sec_wrap iframe {
    border: none;
    width: 100%;
    height: 2100px;
    padding: 0;
    margin: 0;
  }
}
.case_tag {
  display: block;
  width: 100%;
}
.case_tag .case_tag_wrap {
  width: 880px;
  margin: 0 auto 40px;
  padding: 40px 0;
  border-bottom: 1px solid #cccccc;
}
.case_tag .case_tag_wrap .tag_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.case_tag .case_tag_wrap .tag_ul .tag_li {
  font-size: 1.4rem;
  padding: 10px;
  background-color: #fff;
  color: #00629d;
  margin-right: 10px;
  margin-top: 10px;
  border-radius: 3px;
  line-height: 1;
  border: 1px solid #cccccc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.case_tag .case_tag_wrap .tag_ul .tag_li:hover {
  opacity: 0.5;
}
.case_tag .case_tag_wrap .tag_ul .tag_li_act {
  background-color: #00629d;
  color: #fff;
}

.page_num {
  display: block;
  width: 100%;
}
.page_num .page_num_wrap {
  width: 880px;
  margin: 0 auto;
}
.page_num .page_num_wrap .page_num_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page_num .page_num_wrap .page_num_ul .page_num_li {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  background-color: #fff;
  margin: 0 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page_num .page_num_wrap .page_num_ul .page_num_li .page_num_a {
  width: 100%;
  height: 100%;
}
.page_num .page_num_wrap .page_num_ul .page_num_li .page_num_a .arr {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 6px;
}
.page_num .page_num_wrap .page_num_ul .page_num_li .page_num_a .page_num_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  line-height: 1;
  color: #00629d;
}
.page_num .page_num_wrap .page_num_ul .page_num_li:hover {
  opacity: 0.5;
}
.page_num .page_num_wrap .page_num_ul .page_num_li_act {
  background-color: #00629d;
}
.page_num .page_num_wrap .page_num_ul .page_num_li_act .page_num_a .page_num_txt {
  color: #fff;
}
.page_num .page_num_wrap .page_num_ul .other {
  border: 1px solid #fff;
}
.page_num .page_num_wrap .page_num_ul .other .page_num_a .page_num_txt {
  color: #333333;
}
.page_num .page_num_wrap .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page_num .page_num_wrap .wp-pagenavi .pages {
  display: none;
}
.page_num .page_num_wrap .wp-pagenavi .current {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  background-color: #00629d;
  margin: 0 3px;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}
.page_num .page_num_wrap .wp-pagenavi .page {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  background-color: #fff;
  margin: 0 3px;
  font-size: 1.4rem;
  line-height: 1;
  color: #00629d;
  padding: 10px 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page_num .page_num_wrap .wp-pagenavi .page:hover {
  opacity: 0.5;
}
.page_num .page_num_wrap .wp-pagenavi .extend, .page_num .page_num_wrap .wp-pagenavi .first, .page_num .page_num_wrap .wp-pagenavi .last {
  display: none !important;
}
.page_num .page_num_wrap .wp-pagenavi .previouspostslink {
  content: "";
  font-size: 0;
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  background-color: #fff;
  margin: 0 3px;
  line-height: 1;
  color: #00629d;
  padding: 11px 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page_num .page_num_wrap .wp-pagenavi .previouspostslink:hover {
  opacity: 0.5;
}
.page_num .page_num_wrap .wp-pagenavi .previouspostslink::before {
  display: block;
  content: "";
  width: 7px;
  height: 11px;
  background-image: url("wp-content/themes/onedouga/assets/images/common/p_arr_l.png");
  background-size: cover;
}
.page_num .page_num_wrap .wp-pagenavi .nextpostslink {
  content: "";
  font-size: 0;
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  background-color: #fff;
  margin: 0 3px;
  line-height: 1;
  color: #00629d;
  padding: 11px 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page_num .page_num_wrap .wp-pagenavi .nextpostslink:hover {
  opacity: 0.5;
}
.page_num .page_num_wrap .wp-pagenavi .nextpostslink::before {
  display: block;
  content: "";
  width: 6px;
  height: 11px;
  background-image: url("wp-content/themes/onedouga/assets/images/common/p_arr_r.png");
  background-size: cover;
}

.page_num_btm {
  padding-bottom: 100px;
}

.case_sec {
  display: block;
  width: 100%;
}
.case_sec .page_sec_wrap {
  width: 880px;
  padding: 70px 0;
  margin: 0 auto;
}
.case_sec .page_sec_wrap .page_sec_tit_wrap {
  margin-bottom: 60px;
}
.case_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_tit {
  font-size: 3rem;
  text-align: center;
}
.case_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_line {
  margin: 0 auto;
  margin-top: 30px;
  width: 63px;
}
.case_sec .page_sec_wrap .centtxt {
  margin-top: 40px;
  text-align: center;
}
.case_sec .page_sec_wrap .video_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 70px;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap {
  position: relative;
  width: 48%;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .tag_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .tag_ul .tag_li {
  font-size: 1.4rem;
  padding: 10px;
  background-color: #e0f0f7;
  margin-right: 10px;
  margin-top: 10px;
  border-radius: 3px;
  line-height: 1;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .continue {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  margin-top: 20px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .continue .continue_txt {
  line-height: 1;
  color: #00629d;
  margin-right: 10px;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .continue .continue_img {
  width: 10px;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .continue:hover .continue_txt {
  color: #0180cc;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .continue_p {
  padding: 0 0.5em;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_genre {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt {
  margin-top: 10px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt_s {
  margin-top: 28px;
  font-size: 1.2rem;
  line-height: 1.3;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .bl_tit {
  display: block;
  margin-top: 28px;
  background-color: #afdaef;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  padding: 8px 17px;
  border-radius: 16px;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list {
  margin-top: 23px;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list .cm_list_li {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.6rem;
  margin-top: 10px;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list .cm_list_li::before {
  position: absolute;
  top: 0.2em;
  left: 0.5em;
  display: block;
  content: "";
  background-color: #ce974f;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .more {
  margin-top: 30px;
}
.case_sec .page_sec_wrap .video_flex .video_flex_fg {
  display: block;
  width: 48%;
  max-height: 280px;
  height: 19vw;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.case_sec .page_sec_wrap .video_flex .video_flex_fg iframe {
  width: 100%;
  height: 500px;
  border: none;
}
.case_sec .page_sec_wrap .video_flex .video_flex_fg_img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #efefef;
}
.case_sec .page_sec_wrap .video_flex .video_flex_hv {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.case_sec .page_sec_wrap .video_flex .video_flex_hv:hover {
  opacity: 0.5;
}
.case_sec .page_sec_wrap .video_flex:first-child {
  margin-top: 0;
}
.case_sec .page_sec_wrap .video_flex:nth-child(odd) .video_flex_txt_wrap {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.case_sec .page_sec_wrap .video_flex:nth-child(odd) .video_flex_fg {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.case_sec .page_sec_wrap .m_70 {
  margin-top: 70px;
}
.case_sec .page_sec_wrap .video_flex_lf .video_flex_txt_wrap {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.case_sec .page_sec_wrap .video_flex_lf .video_flex_fg {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.case_sec .page_top_padd {
  padding-top: 200px;
}

.homesec_topic .homesec_wrap {
  padding: 0;
  padding-bottom: 100px;
}
.homesec_topic .homesec_wrap .casestudy_cont {
  margin: 0 auto;
}
.homesec_topic .homesec_wrap .casestudy_cont::after {
  content: "";
  display: block;
  width: 360px;
  height: 0;
}
.homesec_topic .homesec_wrap .casestudy_cont .casestudy_sec {
  margin-top: 70px;
}

@media screen and (max-width: 1440px) {
  .homesec_topic .homesec_wrap .casestudy_cont {
    margin: 0 auto;
  }
  .homesec_topic .homesec_wrap .casestudy_cont::after {
    content: "";
    display: block;
    width: 25vw;
    height: 0;
  }
  .homesec_topic .homesec_wrap .casestudy_cont .casestudy_sec {
    margin-top: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .case_tag {
    display: block;
    width: 100%;
  }
  .case_tag .case_tag_wrap {
    width: 90vw;
    margin: 0 auto 40px;
    padding: 40px 0;
    border-bottom: 1px solid #cccccc;
  }
  .case_tag .case_tag_wrap .tag_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .case_tag .case_tag_wrap .tag_ul .tag_li {
    font-size: 1.4rem;
    padding: 10px;
    background-color: #fff;
    color: #00629d;
    margin-right: 10px;
    margin-top: 10px;
    border-radius: 3px;
    line-height: 1;
    border: 1px solid #cccccc;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .case_tag .case_tag_wrap .tag_ul .tag_li:hover {
    opacity: 0.5;
  }
  .case_tag .case_tag_wrap .tag_ul .tag_li_act {
    background-color: #00629d;
    color: #fff;
  }

  .page_num {
    display: block;
    width: 100%;
  }
  .page_num .page_num_wrap {
    width: 90vw;
    margin: 0 auto;
  }
  .page_num .page_num_wrap .page_num_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .page_num .page_num_wrap .page_num_ul .page_num_li {
    position: relative;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #dfdfdf;
    background-color: #fff;
    margin: 0 3px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page_num .page_num_wrap .page_num_ul .page_num_li .page_num_a {
    width: 100%;
    height: 100%;
  }
  .page_num .page_num_wrap .page_num_ul .page_num_li .page_num_a .arr {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 6px;
  }
  .page_num .page_num_wrap .page_num_ul .page_num_li .page_num_a .page_num_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    line-height: 1;
    color: #00629d;
  }
  .page_num .page_num_wrap .page_num_ul .page_num_li:hover {
    opacity: 0.5;
  }
  .page_num .page_num_wrap .page_num_ul .page_num_li_act {
    background-color: #00629d;
  }
  .page_num .page_num_wrap .page_num_ul .page_num_li_act .page_num_a .page_num_txt {
    color: #fff;
  }
  .page_num .page_num_wrap .page_num_ul .other {
    border: 1px solid #fff;
  }
  .page_num .page_num_wrap .page_num_ul .other .page_num_a .page_num_txt {
    color: #333333;
  }

  .case_sec {
    display: block;
    width: 100%;
  }
  .case_sec .page_sec_wrap {
    max-width: 100%;
    width: 90vw;
    padding: 100px 0;
    margin: 0 auto;
  }
  .case_sec .page_sec_wrap .page_sec_tit_wrap {
    margin-bottom: 60px;
  }
  .case_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_tit {
    font-size: 3rem;
    text-align: center;
  }
  .case_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_line {
    margin: 0 auto;
    margin-top: 30px;
    width: 63px;
  }
  .case_sec .page_sec_wrap .video_flex {
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 60vw;
    margin: 0 auto;
    margin-top: 70px;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    margin-top: 28px;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_s {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_genre {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .sp_txtct {
    text-align: center;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt {
    margin-top: 10px;
    line-height: 1.5;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt_s {
    margin-top: 28px;
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .bl_tit {
    display: block;
    margin-top: 28px;
    background-color: #afdaef;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    padding: 8px 17px;
    border-radius: 16px;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list {
    margin-top: 23px;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list .cm_list_li {
    position: relative;
    padding-left: 1.5em;
    font-size: 1.6rem;
    margin-top: 10px;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list .cm_list_li::before {
    position: absolute;
    top: 0.2em;
    left: 0.5em;
    display: block;
    content: "";
    background-color: #ce974f;
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .more {
    margin-top: 30px;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_fg {
    display: block;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-height: 100%;
    height: 40vw;
    background-color: #fff;
    border-radius: 6px;
  }
  .case_sec .page_sec_wrap .video_flex:first-child {
    margin-top: 0;
  }
  .case_sec .page_sec_wrap .video_flex:nth-child(odd) .video_flex_txt_wrap {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .case_sec .page_sec_wrap .video_flex:nth-child(odd) .video_flex_fg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .case_sec .page_sec_wrap .m_70 {
    margin-top: 70px;
  }
  .case_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_sec_txt_1 {
    margin-top: 18px;
  }
}
@media screen and (max-width: 767px) {
  .case_tag {
    display: block;
    width: 100%;
  }
  .case_tag .case_tag_wrap {
    width: 90vw;
    margin: 0 auto 10vw;
    padding: 10vw 0;
    border-bottom: 1px solid #cccccc;
  }
  .case_tag .case_tag_wrap .tag_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .case_tag .case_tag_wrap .tag_ul .tag_li {
    font-size: 24px;
    font-size: 3.125vw;
    padding: 2vw;
    background-color: #fff;
    color: #00629d;
    margin-right: 2vw;
    margin-top: 2vw;
    border-radius: 3px;
    line-height: 1;
    border: 1px solid #cccccc;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .case_tag .case_tag_wrap .tag_ul .tag_li:hover {
    opacity: 0.5;
  }
  .case_tag .case_tag_wrap .tag_ul .tag_li_act {
    background-color: #00629d;
    color: #fff;
  }

  .page_num_btm {
    padding-bottom: 13vw;
  }

  .page_num .page_num_wrap .page_num_ul .page_num_li {
    position: relative;
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
    border: 1px solid #dfdfdf;
    background-color: #fff;
    margin: 0 1vw;
  }
  .page_num .page_num_wrap .page_num_ul .page_num_li .page_num_a {
    width: 100%;
    height: 100%;
  }
  .page_num .page_num_wrap .page_num_ul .page_num_li .page_num_a .arr {
    width: 1.5vw;
  }
  .page_num .page_num_wrap .page_num_ul .page_num_li .page_num_a .page_num_txt {
    font-size: 24px;
    font-size: 3.125vw;
  }
  .page_num .page_num_wrap .page_num_ul .page_num_li_act {
    background-color: #00629d;
  }
  .page_num .page_num_wrap .page_num_ul .page_num_li_act .page_num_a .page_num_txt {
    color: #fff;
  }
  .page_num .page_num_wrap .page_num_ul .other {
    border: 1px solid #fff;
  }
  .page_num .page_num_wrap .page_num_ul .other .page_num_a .page_num_txt {
    color: #333333;
  }
  .page_num .page_num_wrap .wp-pagenavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .page_num .page_num_wrap .wp-pagenavi .pages {
    display: none;
  }
  .page_num .page_num_wrap .wp-pagenavi .current {
    position: relative;
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
    border: 1px solid #dfdfdf;
    background-color: #00629d;
    margin: 0 1vw;
    font-size: 24px;
    font-size: 3.125vw;
    line-height: 1;
    color: #fff;
    padding: 3vw 0;
    text-align: center;
  }
  .page_num .page_num_wrap .wp-pagenavi .page {
    position: relative;
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
    border: 1px solid #dfdfdf;
    background-color: #fff;
    margin: 0 1vw;
    font-size: 24px;
    font-size: 3.125vw;
    line-height: 1;
    color: #00629d;
    padding: 3vw 0;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page_num .page_num_wrap .wp-pagenavi .page:hover {
    opacity: 0.5;
  }
  .page_num .page_num_wrap .wp-pagenavi .previouspostslink {
    content: "";
    font-size: 0;
    position: relative;
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
    border: 1px solid #dfdfdf;
    background-color: #fff;
    margin: 0 1vw;
    line-height: 1;
    color: #00629d;
    padding: 3.5vw 4vw;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page_num .page_num_wrap .wp-pagenavi .previouspostslink:hover {
    opacity: 0.5;
  }
  .page_num .page_num_wrap .wp-pagenavi .previouspostslink::before {
    display: block;
    content: "";
    width: 1.4vw;
    height: 2.2vw;
    background-image: url("wp-content/themes/onedouga/assets/images/common/p_arr_l.png");
    background-size: cover;
  }
  .page_num .page_num_wrap .wp-pagenavi .nextpostslink {
    content: "";
    font-size: 0;
    position: relative;
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
    border: 1px solid #dfdfdf;
    background-color: #fff;
    margin: 0 1vw;
    line-height: 1;
    color: #00629d;
    padding: 3.5vw 4vw;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .page_num .page_num_wrap .wp-pagenavi .nextpostslink:hover {
    opacity: 0.5;
  }
  .page_num .page_num_wrap .wp-pagenavi .nextpostslink::before {
    display: block;
    content: "";
    width: 1.3vw;
    height: 2.2vw;
    background-image: url("wp-content/themes/onedouga/assets/images/common/p_arr_r.png");
    background-size: cover;
  }

  .case_sec {
    display: block;
    width: 100%;
  }
  .case_sec .page_sec_wrap {
    max-width: 100%;
    width: 90vw;
    padding: 13vw 0;
    margin: 0 auto;
  }
  .case_sec .page_sec_wrap .page_sec_tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10vw;
  }
  .case_sec .page_sec_wrap .page_sec_tab .tab_sec {
    width: 25%;
    padding-bottom: 10vw;
  }
  .case_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_ic_wrap {
    width: 100%;
    height: 12vw;
  }
  .case_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_ic_wrap .tab_ic {
    display: block;
    width: 10vw;
    margin: 0 auto;
  }
  .case_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_sec_txt {
    font-weight: 700;
    text-align: center;
    font-size: 20px;
    font-size: 2.6041666667vw;
  }
  .case_sec .page_sec_wrap .page_sec_tab .tab_sec .tab_sec_ar {
    width: 4vw;
    margin: 3vw auto 0;
  }
  .case_sec .page_sec_wrap .page_sec_tit_wrap {
    margin-bottom: 6vw;
  }
  .case_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_tit {
    font-size: 52px;
    font-size: 6.7708333333vw;
    text-align: center;
  }
  .case_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_line {
    margin: 0 auto;
    margin-top: 3vw;
    width: 15vw;
  }
  .case_sec .page_sec_wrap .centtxt {
    margin-top: 5vw;
    text-align: center;
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
  .case_sec .page_sec_wrap .video_flex {
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    margin-top: 10vw;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    margin-top: 6vw;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .tag_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 3vw;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .tag_ul .tag_li {
    font-size: 24px;
    font-size: 3.125vw;
    padding: 2vw;
    background-color: #e0f0f7;
    margin-right: 2vw;
    margin-top: 2vw;
    border-radius: 3px;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .tag_ul .tag_li_act {
    background-color: #00629d;
    color: #fff;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .continue {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    margin-top: 3vw;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .continue .continue_txt {
    line-height: 1;
    color: #00629d;
    margin-right: 2.5vw;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .continue .continue_img {
    width: 2vw;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .continue:hover .continue_txt {
    color: #0180cc;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_s {
    text-align: center;
    font-size: 36px;
    font-size: 4.6875vw;
    margin-bottom: 3vw;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit_genre {
    font-size: 32px;
    font-size: 4.1666666667vw;
    margin-bottom: 3vw;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_tit {
    font-size: 36px;
    font-size: 4.6875vw;
    line-height: 1.5;
    font-weight: 700;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .sp_txtct {
    text-align: center;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt {
    font-size: 28px;
    font-size: 3.6458333333vw;
    margin-top: 3vw;
    line-height: 1.5;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .video_flex_txt_s {
    margin-top: 3vw;
    font-size: 24px;
    font-size: 3.125vw;
    line-height: 1.3;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .bl_tit {
    display: block;
    margin-top: 5vw;
    background-color: #afdaef;
    font-size: 28px;
    font-size: 3.6458333333vw;
    font-weight: 700;
    line-height: 1;
    padding: 3vw 3vw;
    border-radius: 5vw;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list {
    margin-top: 6vw;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list .cm_list_li {
    position: relative;
    padding-left: 1.5em;
    font-size: 28px;
    font-size: 3.6458333333vw;
    margin-top: 3vw;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .cm_list .cm_list_li::before {
    position: absolute;
    top: 0.3em;
    left: 0.5em;
    display: block;
    content: "";
    background-color: #ce974f;
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 50%;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_txt_wrap .more {
    margin-top: 7vw;
  }
  .case_sec .page_sec_wrap .video_flex .video_flex_fg {
    display: block;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-height: 100%;
    height: 60vw;
    background-color: #fff;
    border-radius: 6px;
  }
  .case_sec .page_sec_wrap .video_flex:first-child {
    margin-top: 0;
  }
  .case_sec .page_sec_wrap .m_70 {
    margin-top: 10vw;
  }

  .homesec_topic .homesec_wrap {
    padding: 0;
    padding-bottom: 13vw;
  }
  .homesec_topic .homesec_wrap .casestudy_cont {
    margin: 0 auto;
  }
  .homesec_topic .homesec_wrap .casestudy_cont::after {
    display: none;
  }
  .homesec_topic .homesec_wrap .casestudy_cont .casestudy_sec {
    margin-top: 10vw;
  }
}
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*, ::before, ::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * * 1. Correct the line height in all browsers.
 * * 2. Prevent adjustments of font size after orientation changes in iOS.
 * * 3. Remove gray overlay on links for iOS. */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  overflow-x: hidden;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: normal;
  font-weight: 400;
  color: #333333;
}

/* Sections */
/* ============================================ */
/**
 * * Remove the margin in all browsers. */
body {
  margin: 0;
}

/**
 * * Render the `main` element consistently in IE. */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
  -webkit-transform: rotate(0.05deg);
  transform: rotate(0.05deg);
}

/* Lists (enumeration) */
/* ============================================ */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: s;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * * 1. Add the correct box sizing in Firefox.
 * * 2. Show the overflow in Edge and IE. */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * * 1. Correct the inheritance and scaling of font size in all browsers.
 * * 2. Correct the odd `em` font sizing in all browsers. */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * * Remove the gray background on active links in IE 10. */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * * 1. Remove the bottom border in Chrome 57-
 * * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * * Add the correct font weight in Chrome, Edge, and Safari. */
b, strong {
  font-weight: bolder;
}

/**
 * * 1. Correct the inheritance and scaling of font size in all browsers.
 * * 2. Correct the odd `em` font sizing in all browsers. */
code, kbd, samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * * Add the correct font size in all browsers. */
small {
  font-size: 80%;
}

/**
 * * Prevent `sub` and `sup` elements from affecting the line height in
 * * all browsers. */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * * Prevent vertical alignment issues. */
img, embed, object, iframe {
  vertical-align: bottom;
  width: 100%;
}

/* Forms */
/* ============================================ */
/**
 * * Reset form fields to make them styleable */
button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * * Reset radio and checkbox appearance to preserve their look in iOS. */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * * Show the overflow in IE.
 * * 1. Show the overflow in Edge. */
button, input {
  /* 1 */
  overflow: visible;
}

/**
 * * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * * 1. Remove the inheritance of text transform in Firefox. */
button, select {
  /* 1 */
  text-transform: none;
}

/**
 * * Correct the inability to style clickable types in iOS and Safari. */
button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled], [type=button][disabled], [type=reset][disabled], [type=submit][disabled] {
  cursor: default;
}

/**
 * * Remove the inner border and padding in Firefox. */
button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * * Restore the focus styles unset by the previous rule. */
button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * * Remove arrow in IE10 & IE11 */
select::-ms-expand {
  display: none;
}

/**
 * * Remove padding */
option {
  padding: 0;
}

/**
 * * Reset to invisible */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * * 1. Correct the text wrapping in Edge and IE.
 * * 2. Correct the color inheritance from `fieldset` elements in IE.
 * * 3. Remove the padding so developers are not caught out when they zero out
 * *    `fieldset` elements in all browsers. */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * * Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress {
  vertical-align: baseline;
}

/**
 * * Remove the default vertical scrollbar in IE 10+. */
textarea {
  overflow: auto;
}

/**
 * * Correct the cursor style of increment and decrement buttons in Chrome. */
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * * 1. Correct the outline style in Safari. */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * * Remove the inner padding in Chrome and Safari on macOS. */
/**
 * * 1. Correct the inability to style clickable types in iOS and Safari.
 * * 2. Change font properties to `inherit` in Safari. */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * * Clickable labels */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/* * Add the correct display in Edge, IE 10+, and Firefox. */
details {
  display: block;
}

/* * Add the correct display in all browsers. */
summary {
  display: list-item;
}

/* * Remove outline for editable content. */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td {
  vertical-align: top;
  padding: 0;
}

th {
  vertical-align: top;
  padding: 0;
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * * Add the correct display in IE 10+. */
template, [hidden] {
  display: none;
}

/**
 * * Add the correct display in IE 10. */
img[src$=".svg"] {
  width: 100%;
  height: auto;
}

figure {
  line-height: 0;
  margin: 0 0 0 0;
}

p {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  line-height: 2;
  font-size: 1.6rem;
  -webkit-transform: rotate(0.05deg);
  transform: rotate(0.05deg);
}

.sp {
  display: none;
}

.sp_no {
  display: block;
}

.tb {
  display: none;
}

.tb_no {
  display: block;
}

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

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

  .sp_no {
    display: none;
  }
}
.dis_no {
  display: none !important;
}

.red {
  color: #ce524f !important;
}

.red_2 {
  color: #efa19f !important;
}

.blue {
  color: #00629d;
}

.green {
  color: #009d89;
}

.red_bak {
  background-color: #ce524f !important;
}
.red_bak:hover {
  background-color: #ea5c58 !important;
}

.fadein {
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.fadein.active {
  opacity: 1;
}

/*------------------------------ ↓ .article-content 新規修正 2024/4/22 ↓ ------------------------------ */
.article-content h2 {
  font-weight: 700;
  color: #fff;
  background: #00629d;
  padding: 24px;
  border-radius: 16px;
}
.article-content h3 {
  font-size: 2rem !important;
  font-weight: 700;
  color: #00629d;
  border: 4px solid #00629d;
  padding: 1.6rem;
  border-radius: 16px;
}
.article-content h4 {
  font-size: 2rem !important;
  font-weight: 700;
  color: #00629d;
}
.article-content h5 {
  font-size: 2rem !important;
  font-weight: 700;
  color: #686768;
}
.article-content blockquote {
  max-width: 500px;
  padding: 1em 1.5em;
  border-left: 4px solid #00629d;
}
.article-content blockquote:has(cite) {
  padding-bottom: 0.5em;
}
.article-content blockquote p {
  margin-top: 0;
}
.article-content blockquote cite {
  display: block;
  color: #737373;
  font-size: 0.8em;
  text-align: right;
}
.article-content .wp-block-columns {
  padding: 1.6rem;
  border: 2px solid #ccc;
  border-radius: 8px;
}
.article-content .wp-block-image {
  margin: 0;
}
.article-content .wp-block-columns p:last-child {
  margin-bottom: 0;
}

/*------------------------------ ↑ .article-content 新規修正 2024/4/22 ↑ ------------------------------ */
/*------------------------------ ↓ 新規追加 2024/4/22 ↓ ------------------------------ */
.pg_installOperate .page_sec .page_sec_wrap {
  max-width: 800px;
  width: 72%;
  padding: 100px 0;
  margin: 0 auto;
}
.pg_installOperate .page_sec .page_sec_wrap .page_sec_tab {
  margin-bottom: 0;
}
.pg_installOperate .page_sec .page_sec_wrap .page_sec_tit_wrap {
  margin-bottom: 32px;
}
.pg_installOperate .page_sec .page_sec_wrap .page_sec_tit_wrap .page_sec_tit.page_sec_tit__blue {
  font-weight: bold;
  color: #00629d;
}

/* コンテナ */
@media (max-width: 768px) {
  .pg_installOperate .page_sec .page_sec_wrap {
    max-width: 100%;
    width: 90vw;
    padding: 13vw 0;
  }
}
/* タイトル下 */
@media (max-width: 768px) {
  .pg_installOperate .page_sec .page_sec_wrap .page_sec_tit_wrap {
    margin-bottom: 10vw;
  }
}
.bl_point > * + * {
  margin-top: 1.6rem;
}

@media (max-width: 768px) {
  .bl_point > * + * {
    margin-top: 4vw;
  }
}
/* 01 */
.bl_point_li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
.bl_point_li figure img {
  width: 5.4rem;
  height: auto;
}

@media (max-width: 768px) {
  .bl_point_li {
    gap: 3vw;
  }
}
@media (max-width: 768px) {
  .bl_point_li figure img {
    width: 14vw;
    height: auto;
  }
}
@media (max-width: 768px) {
  .bl_point_li {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bl_point_li figure {
    width: 14vw;
    height: auto;
  }
}
.bl_point_txt {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 1.6rem;
}

@media (max-width: 768px) {
  .bl_point_txt {
    font-size: 4.1666666667vw;
    margin-top: 0;
  }
}
/* 画像 */
.bl_installOperate_figure {
  margin-top: 4rem;
  position: relative;
}

@media (max-width: 768px) {
  .bl_installOperate_figure {
    margin-top: 8vw;
  }
}
.bl_point_btn {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  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;
  width: 720px;
  height: 70px;
  background: #CE524F;
  border-radius: 9in;
}

@media (max-width: 1120px) {
  .bl_point_btn {
    width: 64vw;
    height: 6.4vw;
    bottom: 5vw;
  }
}
@media (max-width: 768px) {
  .bl_point_btn {
    width: 80vw;
    height: 11vw;
    bottom: 4vw;
  }
}
/* キャラ1 */
.bl_point_btn_img__01 {
  width: 96.93px;
  height: auto;
  position: absolute;
  top: -26px;
  left: 152px;
}

@media (max-width: 1120px) {
  .bl_point_btn_img__01 {
    top: -26px;
    left: 11vw;
  }
}
@media (max-width: 768px) {
  .bl_point_btn_img__01 {
    width: 15vw;
    height: auto;
    top: -4vw;
    left: 10vw;
  }
}
/* キャラ2 */
.bl_point_btn_img__02 {
  width: 123.9px;
  height: auto;
  position: absolute;
  top: -62px;
  right: 24px;
}

@media (max-width: 768px) {
  .bl_point_btn_img__02 {
    width: 17vw;
    height: auto;
    top: -8vw;
    right: 3vw;
  }
}
.bl_point_btn > p {
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 768px) {
  .bl_point_btn > p {
    font-size: 3.4vw;
  }
}
.bl_installOperate_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: right;
  margin-top: 0.8rem;
}

@media (max-width: 768px) {
  .bl_installOperate_txt {
    font-size: 2.4vw;
    margin-top: 2vw;
  }
}
.hp_cLink:hover {
  color: #00629d;
}

.ft_li_a__none {
  pointer-events: none;
}

/*------------------------------ ↑ 新規追加 2024/4/22 ↑ ------------------------------ */
@media screen and (max-width: 768px) {
  .p-top .industry .homesec_wrap .industry_ul {
    gap: 16px;
    margin-top: 5vw;
  }
}
.p-top .industry .homesec_wrap .industry_ul .industry_li {
  height: auto;
  padding: 16px;
}
@media screen and (max-width: 768px) {
  .p-top .industry .homesec_wrap .industry_ul .industry_li {
    width: calc((100% - 16px) / 2);
    margin-top: 0;
  }
}
.p-top .industry .homesec_wrap .industry_ul .industry_li .industry_img {
  margin-top: 16px;
  height: 64px;
}
.p-top .industry .homesec_wrap .industry_ul .industry_li .industry_1 {
  width: 72px;
}
@media screen and (max-width: 768px) {
  .p-top .industry .homesec_wrap .industry_ul .industry_li .industry_1 {
    width: 57.6px;
  }
}
.p-top .industry .homesec_wrap .industry_ul .industry_li .industry_2 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .industry .homesec_wrap .industry_ul .industry_li .industry_2 {
    width: 51.2px;
  }
}
.p-top .industry .homesec_wrap .industry_ul .industry_li .industry_3 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .industry .homesec_wrap .industry_ul .industry_li .industry_3 {
    width: 51.2px;
  }
}
.p-top .industry .homesec_wrap .industry_ul .industry_li .industry_4 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .industry .homesec_wrap .industry_ul .industry_li .industry_4 {
    width: 51.2px;
  }
}
.p-top .industry .homesec_wrap .industry_ul .industry_li .industry_5 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .industry .homesec_wrap .industry_ul .industry_li .industry_5 {
    width: 51.2px;
  }
}
.p-top .industry .homesec_wrap .industry_ul .industry_li .industry_6 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .industry .homesec_wrap .industry_ul .industry_li .industry_6 {
    width: 51.2px;
  }
}
.p-top .industry .homesec_wrap .industry_ul .industry_li .industry_7 {
  width: 56px;
}
@media screen and (max-width: 768px) {
  .p-top .industry .homesec_wrap .industry_ul .industry_li .industry_7 {
    width: 44.8px;
  }
}
.p-top .industry .homesec_wrap .industry_ul .industry_li .industry_8 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .industry .homesec_wrap .industry_ul .industry_li .industry_8 {
    width: 51.2px;
  }
}
.p-top .industry .homesec_wrap .industry_ul .industry_li .industry_txt {
  position: relative;
  bottom: unset;
  -webkit-transform: unset;
          transform: unset;
  left: unset;
  font-size: 1.6rem;
  margin: 20px 0 16px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .industry .homesec_wrap .industry_ul .industry_li .industry_txt {
    font-size: 3.6458333333vw;
    margin: 4px 0 12px;
  }
}
.p-top .industry .homesec_wrap .industry_ul .industry_li .industry_deta {
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-top .industry .homesec_wrap .industry_ul .industry_li .industry_deta {
    font-size: 3.6458333333vw;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec {
  padding: 60px 24px;
}
@media screen and (max-width: 1024px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec {
    padding: 60px 24px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap {
  gap: 40px 24px;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap {
    margin: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    gap: 16px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex {
  width: 200px;
  height: unset;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex {
    width: calc((100% - 16px) / 2);
    margin-top: 24px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img {
  height: 64px;
  margin-top: 0;
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_1 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_1 {
    width: 51.2px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_2 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_2 {
    width: 51.2px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_3 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_3 {
    width: 51.2px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_4 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_4 {
    width: 51.2px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_5 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_5 {
    width: 51.2px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_6 {
  width: 72px;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_6 {
    width: 57.6px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_7 {
  width: 56px;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_7 {
    width: 44.8px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_8 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_8 {
    width: 51.2px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_9 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_9 {
    width: 51.2px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_10 {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_img_10 {
    width: 51.2px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_txt {
  position: relative;
  bottom: unset;
  -webkit-transform: unset;
          transform: unset;
  left: unset;
  margin: 20px 0 16px;
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_txt {
    font-size: 3.6458333333vw;
    margin: 4px 0 12px;
  }
}
.p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_deta {
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-top .channel .homesec_wrap .channel_cont .channel_sec .icflex_wrap .icflex .icflex_deta {
    font-size: 3.6458333333vw;
  }
}

html {
  font-size: 62.5%;
}

p {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 3.6458333333vw;
  }
}

.p-404__wrap {
  padding: 16rem 0;
}
@media screen and (max-width: 768px) {
  .p-404__wrap {
    padding: 8rem 0;
  }
}
.p-404__outer {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8rem;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-404__outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    gap: 12vw;
  }
}
.p-404__outer * {
  text-align: center;
}
.p-404__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-404__en__num {
  font-size: 8rem;
  line-height: 1;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-404__en__num {
    font-size: 14vw;
  }
}
.p-404__en__non {
  text-transform: uppercase;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-404__en__non {
    font-size: 3vw;
  }
}
.p-404__ja__ttl {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-404__ja__ttl {
    font-size: 4vw;
  }
}
.p-404__ja a {
  display: inline-block;
  padding: 0 1rem;
  color: #00629d;
}@charset "UTF-8";
/* media query */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  color: #373a3c;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

/* @media screen and (max-width: 520px) {
  body {
    font-size: 1.4rem;
  }
} */
@media screen and (max-width: 687px) {
  body {
    font-size: 1.4rem;
  }
}
.ui-widget-header {
  background-color: #fff;
  border: none;
}

.ui-datepicker {
  border: 1px solid #5a5a5a;
  background-color: #fff;
}

.ui-datepicker table thead {
  border-bottom: 1px solid #e6e6ee;
}

.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-content .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default,
.ui-datepicker .ui-button,
.ui-datepicker html .ui-button.ui-state-disabled:hover,
.ui-datepicker html .ui-button.ui-state-disabled:active {
  border: none;
  background-color: #fff;
}

.ui-datepicker-calendar thead {
  border-bottom: 1px solid #e7e7ef;
}

form.form .form-before-contents {
  padding: 0 20px;
  width: calc(100% - 20px * 2);
  margin-bottom: 80px;
}

form.form .form-before-contents p {
  line-height: 1.5em;
  margin: 0;
}

form.form .form-before-contents .errors {
  margin-top: 20px;
}

form.form .form-field {
  margin: 30px 0 0 0;
  clear: both;
}

form.form .form-field.before_hr {
  padding-top: 60px;
  margin-top: 0;
}

form.form .form-field.before_hr:before {
  content: "";
  display: block;
  border-bottom: 1px solid #a3a3a3;
  margin: 0 0 60px 0;
}

form.form .form-field.after_hr:after {
  content: "";
  display: block;
  border-bottom: 1px solid #a3a3a3;
  margin: 60px 0;
}

form.form .form-field.after_hr + div + .input-inline_3-1,
form.form .form-field.after_hr + div + .input-inline_3-1 + div + .input-inline_3-2,
form.form .form-field.after_hr + div + .input-inline_3-1 + div + .input-inline_3-2 + div + .input-inline_3-3,
form.form .form-field.after_hr + div + .input-inline_2-1,
form.form .form-field.after_hr + div + .input-inline_2-1 + div + .input-inline_2-2 {
  margin-top: 0;
}

form.form .form-field.error {
  margin-bottom: 0;
}

form.form .form-field.no-margin-bottom {
  margin-bottom: 0;
}

form.form .field-label {
  display: block;
  width: calc(100% - 20px * 2);
  padding: 0 20px;
  margin-bottom: 8px;
  height: 22px;
  font-weight: 500;
}

form.form .no-label {
  width: calc(100% - 20px * 2);
  padding: 0 20px;
}

form.form .no-label .field-label {
  display: none;
}

form.form .input-wrapper {
  display: block;
  width: calc(100% - 20px * 2);
  padding: 0 20px;
}

form.form .description {
  display: block;
  width: calc(100% - 20px * 2);
  padding: 10px 20px;
}

form.form p.required label.field-label,
form.form span.required label.field-label {
  background: inherit;
}

form.form p.required label.field-label::after,
form.form span.required label.field-label::after {
  content: "必須";
  line-height: 1;
  font-size: 1.2rem;
  display: inline-block;
  background-color: #00629D;
  color: #fff;
  padding: 5px;
  border-radius: 3px;
  margin-left: 5px;
}

form.form .errors {
  color: #cb2e25;
  border: 1px solid #cb2e25;
  padding: 10px;
  border-radius: 5px;
}

form.form p.error.no-label:not(.form-field) {
  box-sizing: border-box;
  color: #cb2e25;
  clear: both;
  margin: 0;
  padding: 10px 20px;
}

form.form textarea + p.error.no-label:not(.form-field),
form.form input + p.error.no-label:not(.form-field) {
  padding: 10px 0;
}

body.form-width-fix form.form {
  width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 687px) {
  form.form .form-field {
    margin-top: 30px;
    padding: 0 10px;
  }
  form.form .form-field.before_hr {
    padding-top: 40px;
  }
  form.form .form-field.before_hr:before {
    margin: 0 0 40px 0;
  }
  form.form .form-field.after_hr + div + .input-inline_3-1 + div + .input-inline_3-2,
  form.form .form-field.after_hr + div + .input-inline_3-1 + div + .input-inline_3-2 + div + .input-inline_3-3,
  form.form .form-field.after_hr + div + .input-inline_2-1 + div + .input-inline_2-2 {
    margin-top: 10px;
  }
  form.form .form-field.after_hr:after {
    margin: 40px 0;
  }
  form.form .form-before-contents {
    width: calc(100% - 10px * 2);
    padding: 0 10px;
    margin-bottom: 40px;
  }
  form.form .field-label {
    width: 100%;
    padding: 0;
    height: 22px;
    font-weight: 500;
  }
  form.form .no-label {
    width: 100%;
    padding: 10px 0;
  }
  form.form .input-wrapper {
    width: 100%;
    padding: 0;
  }
  form.form .description {
    width: calc(100% - 10px * 2);
    padding: 10px 0;
  }
  form.form p.error.no-label:not(.form-field) {
    color: #cb2e25;
    clear: both;
    padding: 10px 10px 0 10px;
    margin: 0;
  }
  form.form .form-field p.error.no-label {
    padding: 10px 0;
  }
  body.form-width-fix form.form {
    width: 100%;
    margin: 0 auto;
  }
}

form.form .pd-text input.text {
  border: 1px solid #5a5a5a;
  background-color: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 15px;
  height: 40px;
  width: 100%;
}

form.form .pd-text input.text.error {
  border: 1px solid #cb2e25;
}

form.form .pd-text.input-300 input.text {
  width: 300px;
}

form.form .pd-text.error input.text {
  border: 1px solid #cb2e25;
}
form.form .pd-select span.input-wrapper {
  border: none;
}
form.form .pd-select select.select {
  border: 1px solid #5a5a5a;
}
form.form .pd-select select.select.error {
  border: 1px solid #cb2e25;
}
form.form .pd-select.error select.select {
  border: 1px solid #cb2e25;
}
form.form .pd-textarea.error .standard {
  border: 1px solid #cb2e25;
}

form.form .form-field.input-inline_2-1, form.form .form-field.input-inline_2-2 {
  float: left;
}

form.form .form-field.input-inline_2-1 {
  width: 40%;
}

form.form .form-field.input-inline_2-1::after {
  display: block;
  content: "";
  clear: both;
}

form.form .form-field.input-inline_2-1 .field-label {
  width: calc(100% - 20px * 2);
  padding-right: 0;
}

form.form .form-field.input-inline_2-1 .input-wrapper {
  width: calc(100% - 20px * 2);
  padding-right: 0;
}

form.form .form-field.input-inline_2-2 {
  width: 40%;
  padding: 0 0 0 0;
  clear: inherit;
}

form.form .form-field.input-inline_2-2.no-label {
  padding-top: 30px;
}

form.form .form-field.input-inline_2-2::after {
  clear: both;
}

form.form .form-field.input-inline_2-2 .input-wrapper {
  padding-right: 0;
}

form.form .form-field.input-inline_2-2 + div + .form-field:not(.input-inline_2-1):not(.input-inline_3-1):not(.before_hr) {
  padding-top: 30px;
}

form.form .form-field.input-inline_3-1, form.form .form-field.input-inline_3-2, form.form .form-field.input-inline_3-3 {
  width: 30%;
  float: left;
  clear: inherit;
}

form.form .form-field.input-inline_3-2.no-label, form.form .form-field.input-inline_3-3.no-label {
  padding-top: 30px;
}

form.form .form-field.input-inline_3-2 .input-wrapper, form.form .form-field.input-inline_3-3 .input-wrapper {
  padding-left: 0;
}

form.form .form-field.input-inline_3-1 .field-label {
  padding-right: 0;
}

form.form .form-field.input-inline_3-3::after {
  clear: both;
}

form.form .form-field.input-inline_3-3 + div + .form-field:not(.input-inline_2-1):not(.input-inline_3-1):not(.before_hr) {
  padding-top: 30px;
}

form.form .form-field.text_after .input-wrapper {
  padding-right: 5px;
  width: 80%;
  display: inline-block;
}

form.form .form-field.text_after .description {
  width: auto;
  display: inline-block;
  padding: 0;
}

form.form .form-field.inline_y {
  width: 200px;
  margin-right: 10px;
}

form.form .form-field.inline_y .input-wrapper {
  width: 150px;
}

form.form .form-field.inline_m, form.form .form-field.inline_d {
  width: 100px;
  margin-right: 5px;
}

form.form .form-field.inline_m .input-wrapper, form.form .form-field.inline_d .input-wrapper {
  width: 70px;
}

form.form .pd-date input.date {
  border: 1px solid #5a5a5a;
  background-color: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 15px;
  height: 40px;
  width: 100%;
}

form.form .pd-date.input-300 input.date {
  width: 300px;
}

@media screen and (max-width: 687px) {
  form.form .pd-text.input-300 input.text {
    width: calc(80% - 10px);
  }
  form.form .form-field.input-inline_2-1, form.form .form-field.input-inline_2-2 {
    clear: both;
  }
  form.form .form-field.input-inline_2-1 {
    width: calc(100% - 10px * 2);
  }
  form.form .form-field.input-inline_2-1 .input-wrapper {
    padding-right: 10px;
  }
  form.form .form-field.input-inline_2-2 {
    width: calc(100% - 10px * 2);
    padding: 0 10px;
  }
  form.form .form-field.input-inline_2-2.no-label {
    margin-top: 10px;
    padding: 0 10px;
  }
  form.form .form-field.input-inline_2-2.after_hr {
    margin-bottom: 0;
  }
  form.form .form-field.input-inline_3-1, form.form .form-field.input-inline_3-2, form.form .form-field.input-inline_3-3 {
    width: 100%;
    clear: both;
  }
  form.form .form-field.input-inline_3-1 .field-label, form.form .form-field.input-inline_3-2 .field-label, form.form .form-field.input-inline_3-3 .field-label {
    padding: 0 10px;
  }
  form.form .form-field.input-inline_3-1 .input-wrapper {
    padding-right: 10px;
  }
  form.form .form-field.input-inline_3-2 .input-wrapper {
    padding-left: 10px;
  }
  form.form .form-field.input-inline_3-2.no-label {
    margin-top: 10px;
    padding: 0;
  }
  form.form .form-field.input-inline_3-3.no-label {
    margin-top: 10px;
    padding: 0;
  }
  form.form .form-field.input-inline_3-3.after_hr {
    margin-bottom: 0;
  }
  form.form .form-field.input-inline_3-3 .input-wrapper {
    padding-left: 10px;
  }
}

form.form .pd-textarea textarea {
  width: calc(100% - 20px * 2);
  padding: 2px 15px;
  border: 1px solid #5a5a5a;
  background-color: #fff;
  border-radius: 5px;
}

form.form .pd-radio .field-label {
  margin-bottom: 30px;
}

form.form .pd-radio .value span {
  display: block;
  margin: 0 0 20px 0;
}

form.form .pd-radio .value span:last-child {
  margin-bottom: 0;
}

form.form .pd-radio .value span input[type="radio"] {
  width: 15px;
  vertical-align: top;
  margin-top: 8px;
}

form.form .pd-radio .value span label {
  width: calc(100% - (15px + (20px * 2)));
  margin-left: 10px;
  line-height: 1.75em;
  display: inline-block;
}

form.form .pd-radio.inline .value span {
  margin: 0 30px 0 0;
  display: inline-block;
}

form.form .pd-radio.inline .value span:last-child {
  margin-right: 0;
}

form.form .pd-radio.inline .value span label {
  width: calc(100% - 25px);
}

form.form .pd-checkbox .field-label {
  margin-bottom: 20px;
}

form.form .pd-checkbox .value span {
  margin-bottom: 10px;
  display: block;
}

form.form .pd-checkbox .value span:last-child {
  margin-bottom: 0;
}

form.form .pd-checkbox .value span label {
  margin-left: 5px;
}

form.form .pd-checkbox.inline .value span {
  display: inline-block;
  margin-right: 30px;
}

form.form .pd-checkbox.inline .value span:last-child {
  margin-right: 0;
}

form.form .policy-check {
  background-color: #e8e8e8;
  padding: 40px 20px;
  border-radius: 5px;
}

form.form .policy-check .field-label {
  padding-left: 0;
}

form.form .policy-check .privacy-policy-text {
  border: 1px solid #5a5a5a;
  background-color: #fff;
  padding: 10px;
  overflow: scroll;
  width: calc(100% - 20px);
  height: 200px;
  border-radius: 5px;
}

form.form .policy-check .privacy-policy-text + .input-wrapper {
  margin: 20px 0;
  padding: 0;
  text-align: center;
}

form.form .policy-check.error .privacy-policy-text + .input-wrapper {
  margin-bottom: 0;
}

form.form .pd-select .input-wrapper {
  overflow: hidden;
  margin-left: 20px;
  padding: 0;
  width: calc(100% - 20px * 2);
  position: relative;
  border: 1px solid #5a5a5a;
  border-radius: 5px;
  background: #ffffff;
  height: 40px;
  display: block;
}

form.form .pd-select .input-wrapper::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  content: '';
  border-left: 1px solid #5a5a5a;
  background-color: #e6e6e6;
}

form.form .pd-select .input-wrapper:after {
  position: absolute;
  top: 16px;
  right: 12px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #373a3c;
  pointer-events: none;
}

form.form .pd-select .input-wrapper select {
  z-index: 10;
  position: relative;
  width: 100%;
  height: 40px;
  padding: 2px 15px;
  cursor: pointer;
  text-overflow: ellipsis;
  outline: none;
  border-radius: 5px;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

form.form .pd-select.input-300 .input-wrapper {
  width: calc(300px - 20px);
}

@media screen and (max-width: 687px) {
  form.form .pd-select .input-wrapper {
    margin-left: 0;
    /* width: calc(100% - 10px * 2); */
    width: 100%;
  }
  form.form .pd-select.input-300 .input-wrapper {
    width: calc(80% - 10px);
  }
}

form.form .submit {
  margin: 30px 0;
}

form.form .submit input {
  background-color: #00629D;
  height: 40px;
  width: 240px;
  color: #fff;
  outline: none;
  border: none;
  border-radius: 5px;
  margin: 15px auto;
  display: block;
  font-size: 20px;
}

@media screen and (max-width: 687px) {
  form.form .submit input {
    height: 50px;
    width: 240px;
    font-size: 20px;
  }
  form.form .form-field.input-inline_2-1 .field-label {
    width: 100%;
  }
  
  form.form .form-field.input-inline_2-1 .input-wrapper {
    width: 100%;
  }
}

form.form .no-label {
  width: calc(100% - 20px * 2);
  padding: 0 20px;
  display: none;
}
form.form .pd-select{
  padding-top: 30px;
}
form.form .form-field.error {
  position: relative;
  padding-bottom: 30px;
}
form.form .form-field.error::after {
  display: block;
  position: absolute;
  left: 20px;
  bottom: 0;
  color: #cb2e25;
  font-size: 16px;
  content: "";
}
@media screen and (max-width: 687px) {
  form.form .form-field.error::after {
    font-size: 14px;
  }
}
form.form .company.error::after {
  content: "会社名は必須です。";
}
form.form .state.error::after {
  content: "所在地（都道府県）は必須です。";
}
form.form .job_title.error::after {
  content: "役職は必須です。";
}
form.form .last_name.error::after {
  content: "姓は必須です。";
}
form.form .first_name.error::after {
  content: "名は必須です。";
}
form.form .email.error::after {
  content: "法人メールアドレスは必須です。";
}
form.form .phone.error::after {
  content: "電話番号は必須です。";
}
form.form .UserReseller.error::after {
  content: "サービス導入の立場は必須です。";
  white-space: nowrap;
}
form.form .PrivacyAgreement.error {
  border: 1px solid #cb2e25;
}
form.form .InquiryOneDouga.error::after {
  content: "お問い合わせ内容は必須です。";
}
.PrivacyAgreement .no-label{
  text-align: center;
  width: 100%;
}
#error_for_Recaptchapi_Recaptcha + .no-label{
  display: block !important;
  font-size:0;
  padding: 0;
}
#error_for_Recaptchapi_Recaptcha + .no-label:before{
  font-size:16px;
  content:'私はロボットではありませんにチェックを入れてください。';
}
@media screen and (max-width: 687px) {
  #error_for_Recaptchapi_Recaptcha + .no-label:before{
    font-size:14px;
  }
}
/* .PrivacyAgreement input[type="checkbox"]{
  display: none;
}
.PrivacyAgreement input[type="checkbox"]+label{
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  padding-right: 10px;
}
.PrivacyAgreement input[type="checkbox"]+label::before{
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  left: 0;
  top: 50%;
  border: 1px solid;
  border-color:  #585753;
  background-color: #FFF;
  border-radius: 2px;
}
.PrivacyAgreement input[type="checkbox"]:checked+label::before{
  background-color: #00629D;
}
.PrivacyAgreement input[type="checkbox"]:checked+label::after{
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 9px;
  height: 5px;
  top: 50%;
  left: 3px;
  transform: translateY(-70%) rotate(-45deg);
  border-bottom: 2px solid;
  border-left: 2px solid;
  border-color:  #fff;
}
.PrivacyAgreement.error input[type="checkbox"]+label::before{
  border-color:  #cb2e25;
}
.PrivacyAgreement.error input[type="checkbox"]:checked+label::before{
  border-color:  #585753;
} */


/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0eWxlLmNzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxnQkFBZ0I7QUFDaEIsZ0JBQWdCO0FBQ2hCO0VBQ0UsZ0JBQWdCO0FBQ2xCOztBQUVBO0VBQ0UsaUJBQWlCO0VBQ2pCLGNBQWM7RUFDZCx3R0FBd0c7QUFDMUc7O0FBRUE7RUFDRTtJQUNFLGlCQUFpQjtFQUNuQjtBQUNGOztBQUVBO0VBQ0Usc0JBQXNCO0VBQ3RCLFlBQVk7QUFDZDs7QUFFQTtFQUNFLHlCQUF5QjtFQUN6QixzQkFBc0I7QUFDeEI7O0FBRUE7RUFDRSxnQ0FBZ0M7QUFDbEM7O0FBRUE7Ozs7OztFQU1FLFlBQVk7RUFDWixzQkFBc0I7QUFDeEI7O0FBRUE7RUFDRSxnQ0FBZ0M7QUFDbEM7O0FBRUE7RUFDRSxlQUFlO0VBQ2YsNEJBQTRCO0VBQzVCLG1CQUFtQjtBQUNyQjs7QUFFQTtFQUNFLGtCQUFrQjtFQUNsQixTQUFTO0FBQ1g7O0FBRUE7RUFDRSxnQkFBZ0I7QUFDbEI7O0FBRUE7RUFDRSxrQkFBa0I7RUFDbEIsV0FBVztBQUNiOztBQUVBO0VBQ0UsaUJBQWlCO0VBQ2pCLGFBQWE7QUFDZjs7QUFFQTtFQUNFLFdBQVc7RUFDWCxjQUFjO0VBQ2QsZ0NBQWdDO0VBQ2hDLGtCQUFrQjtBQUNwQjs7QUFFQTtFQUNFLFdBQVc7RUFDWCxjQUFjO0VBQ2QsZ0NBQWdDO0VBQ2hDLGNBQWM7QUFDaEI7O0FBRUE7Ozs7O0VBS0UsYUFBYTtBQUNmOztBQUVBO0VBQ0UsZ0JBQWdCO0FBQ2xCOztBQUVBO0VBQ0UsZ0JBQWdCO0FBQ2xCOztBQUVBO0VBQ0UsY0FBYztFQUNkLDRCQUE0QjtFQUM1QixlQUFlO0VBQ2Ysa0JBQWtCO0VBQ2xCLFlBQVk7RUFDWixnQkFBZ0I7QUFDbEI7O0FBRUE7RUFDRSw0QkFBNEI7RUFDNUIsZUFBZTtBQUNqQjs7QUFFQTtFQUNFLGFBQWE7QUFDZjs7QUFFQTtFQUNFLGNBQWM7RUFDZCw0QkFBNEI7RUFDNUIsZUFBZTtBQUNqQjs7QUFFQTtFQUNFLGNBQWM7RUFDZCw0QkFBNEI7RUFDNUIsa0JBQWtCO0FBQ3BCOztBQUVBOztFQUVFLG1CQUFtQjtBQUNyQjs7QUFFQTs7RUFFRSxhQUFhO0VBQ2IsY0FBYztFQUNkLGlCQUFpQjtFQUNqQixxQkFBcUI7RUFDckIseUJBQXlCO0VBQ3pCLFdBQVc7RUFDWCxZQUFZO0VBQ1osa0JBQWtCO0VBQ2xCLGdCQUFnQjtBQUNsQjs7QUFFQTtFQUNFLGNBQWM7RUFDZCx5QkFBeUI7RUFDekIsYUFBYTtFQUNiLGtCQUFrQjtBQUNwQjs7QUFFQTtFQUNFLHNCQUFzQjtFQUN0QixjQUFjO0VBQ2QsV0FBVztFQUNYLFNBQVM7RUFDVCxrQkFBa0I7QUFDcEI7O0FBRUE7O0VBRUUsZUFBZTtBQUNqQjs7QUFFQTtFQUNFLFlBQVk7RUFDWixjQUFjO0FBQ2hCOztBQUVBO0VBQ0U7SUFDRSxnQkFBZ0I7SUFDaEIsZUFBZTtFQUNqQjtFQUNBO0lBQ0UsaUJBQWlCO0VBQ25CO0VBQ0E7SUFDRSxrQkFBa0I7RUFDcEI7RUFDQTs7O0lBR0UsZ0JBQWdCO0VBQ2xCO0VBQ0E7SUFDRSxjQUFjO0VBQ2hCO0VBQ0E7SUFDRSw0QkFBNEI7SUFDNUIsZUFBZTtJQUNmLG1CQUFtQjtFQUNyQjtFQUNBO0lBQ0UsV0FBVztJQUNYLFVBQVU7SUFDVixZQUFZO0lBQ1osZ0JBQWdCO0VBQ2xCO0VBQ0E7SUFDRSxXQUFXO0lBQ1gsZUFBZTtFQUNqQjtFQUNBO0lBQ0UsV0FBVztJQUNYLFVBQVU7RUFDWjtFQUNBO0lBQ0UsNEJBQTRCO0lBQzVCLGVBQWU7RUFDakI7RUFDQTtJQUNFLGNBQWM7SUFDZCxXQUFXO0lBQ1gseUJBQXlCO0lBQ3pCLFNBQVM7RUFDWDtFQUNBO0lBQ0UsZUFBZTtFQUNqQjtFQUNBO0lBQ0UsV0FBVztJQUNYLGNBQWM7RUFDaEI7QUFDRjs7QUFFQTtFQUNFLHlCQUF5QjtFQUN6QixzQkFBc0I7RUFDdEIsa0JBQWtCO0VBQ2xCLHNCQUFzQjtFQUN0QixhQUFhO0VBQ2IsWUFBWTtFQUNaLFdBQVc7QUFDYjs7QUFFQTtFQUNFLHlCQUF5QjtBQUMzQjs7QUFFQTtFQUNFLFlBQVk7QUFDZDs7QUFFQTtFQUNFLHlCQUF5QjtBQUMzQjs7QUFFQTtFQUNFLFdBQVc7QUFDYjs7QUFFQTtFQUNFLFVBQVU7QUFDWjs7QUFFQTtFQUNFLGNBQWM7RUFDZCxXQUFXO0VBQ1gsV0FBVztBQUNiOztBQUVBO0VBQ0Usd0JBQXdCO0VBQ3hCLGdCQUFnQjtBQUNsQjs7QUFFQTtFQUNFLHdCQUF3QjtFQUN4QixnQkFBZ0I7QUFDbEI7O0FBRUE7RUFDRSxVQUFVO0VBQ1YsZ0JBQWdCO0VBQ2hCLGNBQWM7QUFDaEI7O0FBRUE7RUFDRSxpQkFBaUI7QUFDbkI7O0FBRUE7RUFDRSxXQUFXO0FBQ2I7O0FBRUE7RUFDRSxnQkFBZ0I7QUFDbEI7O0FBRUE7RUFDRSxpQkFBaUI7QUFDbkI7O0FBRUE7RUFDRSxVQUFVO0VBQ1YsV0FBVztFQUNYLGNBQWM7QUFDaEI7O0FBRUE7RUFDRSxpQkFBaUI7QUFDbkI7O0FBRUE7RUFDRSxlQUFlO0FBQ2pCOztBQUVBO0VBQ0UsZ0JBQWdCO0FBQ2xCOztBQUVBO0VBQ0UsV0FBVztBQUNiOztBQUVBO0VBQ0UsaUJBQWlCO0FBQ25COztBQUVBO0VBQ0Usa0JBQWtCO0VBQ2xCLFVBQVU7RUFDVixxQkFBcUI7QUFDdkI7O0FBRUE7RUFDRSxXQUFXO0VBQ1gscUJBQXFCO0VBQ3JCLFVBQVU7QUFDWjs7QUFFQTtFQUNFLFlBQVk7RUFDWixrQkFBa0I7QUFDcEI7O0FBRUE7RUFDRSxZQUFZO0FBQ2Q7O0FBRUE7RUFDRSxZQUFZO0VBQ1osaUJBQWlCO0FBQ25COztBQUVBO0VBQ0UsV0FBVztBQUNiOztBQUVBO0VBQ0UseUJBQXlCO0VBQ3pCLHNCQUFzQjtFQUN0QixrQkFBa0I7RUFDbEIsc0JBQXNCO0VBQ3RCLGFBQWE7RUFDYixZQUFZO0VBQ1osV0FBVztBQUNiOztBQUVBO0VBQ0UsWUFBWTtBQUNkOztBQUVBO0VBQ0U7SUFDRSx1QkFBdUI7RUFDekI7RUFDQTtJQUNFLFdBQVc7RUFDYjtFQUNBO0lBQ0UsV0FBVztFQUNiO0VBQ0E7SUFDRSxtQkFBbUI7RUFDckI7RUFDQTtJQUNFLDRCQUE0QjtJQUM1QixlQUFlO0VBQ2pCO0VBQ0E7SUFDRSxnQkFBZ0I7SUFDaEIsZUFBZTtFQUNqQjtFQUNBO0lBQ0UsZ0JBQWdCO0VBQ2xCO0VBQ0E7SUFDRSxXQUFXO0lBQ1gsV0FBVztFQUNiO0VBQ0E7SUFDRSxlQUFlO0VBQ2pCO0VBQ0E7SUFDRSxtQkFBbUI7RUFDckI7RUFDQTtJQUNFLGtCQUFrQjtFQUNwQjtFQUNBO0lBQ0UsZ0JBQWdCO0lBQ2hCLFVBQVU7RUFDWjtFQUNBO0lBQ0UsZ0JBQWdCO0lBQ2hCLFVBQVU7RUFDWjtFQUNBO0lBQ0UsZ0JBQWdCO0VBQ2xCO0VBQ0E7SUFDRSxrQkFBa0I7RUFDcEI7QUFDRjs7QUFFQTtFQUNFLFdBQVc7RUFDWCx5QkFBeUI7RUFDekIsc0JBQXNCO0VBQ3RCLGtCQUFrQjtBQUNwQjs7QUFFQTtFQUNFLG1CQUFtQjtBQUNyQjs7QUFFQTtFQUNFLGNBQWM7RUFDZCxrQkFBa0I7QUFDcEI7O0FBRUE7RUFDRSxnQkFBZ0I7QUFDbEI7O0FBRUE7RUFDRSxXQUFXO0VBQ1gsbUJBQW1CO0VBQ25CLGVBQWU7QUFDakI7O0FBRUE7RUFDRSx1Q0FBdUM7RUFDdkMsaUJBQWlCO0VBQ2pCLG1CQUFtQjtFQUNuQixxQkFBcUI7QUFDdkI7O0FBRUE7RUFDRSxrQkFBa0I7RUFDbEIscUJBQXFCO0FBQ3ZCOztBQUVBO0VBQ0UsZUFBZTtBQUNqQjs7QUFFQTtFQUNFLHdCQUF3QjtBQUMxQjs7QUFFQTtFQUNFLG1CQUFtQjtBQUNyQjs7QUFFQTtFQUNFLG1CQUFtQjtFQUNuQixjQUFjO0FBQ2hCOztBQUVBO0VBQ0UsZ0JBQWdCO0FBQ2xCOztBQUVBO0VBQ0UsZ0JBQWdCO0FBQ2xCOztBQUVBO0VBQ0UscUJBQXFCO0VBQ3JCLGtCQUFrQjtBQUNwQjs7QUFFQTtFQUNFLGVBQWU7QUFDakI7O0FBRUE7RUFDRSx5QkFBeUI7RUFDekIsa0JBQWtCO0VBQ2xCLGtCQUFrQjtBQUNwQjs7QUFFQTtFQUNFLGVBQWU7QUFDakI7O0FBRUE7RUFDRSx5QkFBeUI7RUFDekIsc0JBQXNCO0VBQ3RCLGFBQWE7RUFDYixnQkFBZ0I7RUFDaEIsd0JBQXdCO0VBQ3hCLGFBQWE7RUFDYixrQkFBa0I7QUFDcEI7O0FBRUE7RUFDRSxjQUFjO0VBQ2QsVUFBVTtFQUNWLGtCQUFrQjtBQUNwQjs7QUFFQTtFQUNFLGdCQUFnQjtBQUNsQjs7QUFFQTtFQUNFLGdCQUFnQjtFQUNoQixpQkFBaUI7RUFDakIsVUFBVTtFQUNWLHdCQUF3QjtFQUN4QixrQkFBa0I7RUFDbEIseUJBQXlCO0VBQ3pCLGtCQUFrQjtFQUNsQixtQkFBbUI7RUFDbkIsWUFBWTtFQUNaLGNBQWM7QUFDaEI7O0FBRUE7RUFDRSxrQkFBa0I7RUFDbEIsTUFBTTtFQUNOLFFBQVE7RUFDUixTQUFTO0VBQ1QsV0FBVztFQUNYLFdBQVc7RUFDWCw4QkFBOEI7RUFDOUIseUJBQXlCO0FBQzNCOztBQUVBO0VBQ0Usa0JBQWtCO0VBQ2xCLFNBQVM7RUFDVCxXQUFXO0VBQ1gsUUFBUTtFQUNSLFNBQVM7RUFDVCxVQUFVO0VBQ1YsV0FBVztFQUNYLGtDQUFrQztFQUNsQyxtQ0FBbUM7RUFDbkMsNkJBQTZCO0VBQzdCLG9CQUFvQjtBQUN0Qjs7QUFFQTtFQUNFLFdBQVc7RUFDWCxrQkFBa0I7RUFDbEIsV0FBVztFQUNYLFlBQVk7RUFDWixlQUFlO0VBQ2YsdUJBQXVCO0VBQ3ZCLFlBQVk7RUFDWixhQUFhO0VBQ2IsdUJBQXVCO0VBQ3ZCLHNCQUFzQjtFQUN0QixnQkFBZ0I7RUFDaEIsd0JBQWdCO0tBQWhCLHFCQUFnQjtVQUFoQixnQkFBZ0I7QUFDbEI7O0FBRUE7RUFDRSx5QkFBeUI7QUFDM0I7O0FBRUE7RUFDRTtJQUNFLGNBQWM7SUFDZCx3QkFBd0I7RUFDMUI7RUFDQTtJQUNFLHVCQUF1QjtFQUN6QjtBQUNGOztBQUVBO0VBQ0UsY0FBYztBQUNoQjs7QUFFQTtFQUNFLHlCQUF5QjtFQUN6QixZQUFZO0VBQ1osWUFBWTtFQUNaLFdBQVc7RUFDWCxhQUFhO0VBQ2IsWUFBWTtFQUNaLGtCQUFrQjtFQUNsQixpQkFBaUI7RUFDakIsY0FBYztFQUNkLGVBQWU7QUFDakI7O0FBRUE7RUFDRTtJQUNFLFlBQVk7SUFDWixZQUFZO0lBQ1osZUFBZTtFQUNqQjtBQUNGIiwiZmlsZSI6InN0eWxlLmNzcyIsInNvdXJjZXNDb250ZW50IjpbIkBjaGFyc2V0IFwiVVRGLThcIjtcbi8qIG1lZGlhIHF1ZXJ5ICovXG5odG1sIHtcbiAgZm9udC1zaXplOiA2Mi41JTtcbn1cblxuYm9keSB7XG4gIGZvbnQtc2l6ZTogMS42cmVtO1xuICBjb2xvcjogIzM3M2EzYztcbiAgZm9udC1mYW1pbHk6IFlha3VIYW5KUCwgXCJIaXJhZ2lubyBTYW5zXCIsIFwiSGlyYWdpbm8gS2FrdSBHb3RoaWMgUHJvTlwiLCBcIk5vdG8gU2FucyBKUFwiLCBNZWlyeW8sIHNhbnMtc2VyaWY7XG59XG5cbkBtZWRpYSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDUyMHB4KSB7XG4gIGJvZHkge1xuICAgIGZvbnQtc2l6ZTogMS40cmVtO1xuICB9XG59XG5cbi51aS13aWRnZXQtaGVhZGVyIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2ZmZjtcbiAgYm9yZGVyOiBub25lO1xufVxuXG4udWktZGF0ZXBpY2tlciB7XG4gIGJvcmRlcjogMXB4IHNvbGlkICM1YTVhNWE7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmZmY7XG59XG5cbi51aS1kYXRlcGlja2VyIHRhYmxlIHRoZWFkIHtcbiAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICNlNmU2ZWU7XG59XG5cbi51aS1kYXRlcGlja2VyIC51aS1zdGF0ZS1kZWZhdWx0LFxuLnVpLWRhdGVwaWNrZXIgLnVpLXdpZGdldC1jb250ZW50IC51aS1zdGF0ZS1kZWZhdWx0LFxuLnVpLWRhdGVwaWNrZXIgLnVpLXdpZGdldC1oZWFkZXIgLnVpLXN0YXRlLWRlZmF1bHQsXG4udWktZGF0ZXBpY2tlciAudWktYnV0dG9uLFxuLnVpLWRhdGVwaWNrZXIgaHRtbCAudWktYnV0dG9uLnVpLXN0YXRlLWRpc2FibGVkOmhvdmVyLFxuLnVpLWRhdGVwaWNrZXIgaHRtbCAudWktYnV0dG9uLnVpLXN0YXRlLWRpc2FibGVkOmFjdGl2ZSB7XG4gIGJvcmRlcjogbm9uZTtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2ZmZjtcbn1cblxuLnVpLWRhdGVwaWNrZXItY2FsZW5kYXIgdGhlYWQge1xuICBib3JkZXItYm90dG9tOiAxcHggc29saWQgI2U3ZTdlZjtcbn1cblxuZm9ybS5mb3JtIC5mb3JtLWJlZm9yZS1jb250ZW50cyB7XG4gIHBhZGRpbmc6IDAgMjBweDtcbiAgd2lkdGg6IGNhbGMoMTAwJSAtIDIwcHggKiAyKTtcbiAgbWFyZ2luLWJvdHRvbTogODBweDtcbn1cblxuZm9ybS5mb3JtIC5mb3JtLWJlZm9yZS1jb250ZW50cyBwIHtcbiAgbGluZS1oZWlnaHQ6IDEuNWVtO1xuICBtYXJnaW46IDA7XG59XG5cbmZvcm0uZm9ybSAuZm9ybS1iZWZvcmUtY29udGVudHMgLmVycm9ycyB7XG4gIG1hcmdpbi10b3A6IDIwcHg7XG59XG5cbmZvcm0uZm9ybSAuZm9ybS1maWVsZCB7XG4gIG1hcmdpbjogMzBweCAwIDAgMDtcbiAgY2xlYXI6IGJvdGg7XG59XG5cbmZvcm0uZm9ybSAuZm9ybS1maWVsZC5iZWZvcmVfaHIge1xuICBwYWRkaW5nLXRvcDogNjBweDtcbiAgbWFyZ2luLXRvcDogMDtcbn1cblxuZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmJlZm9yZV9ocjpiZWZvcmUge1xuICBjb250ZW50OiBcIlwiO1xuICBkaXNwbGF5OiBibG9jaztcbiAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkICNhM2EzYTM7XG4gIG1hcmdpbjogMCAwIDYwcHggMDtcbn1cblxuZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmFmdGVyX2hyOmFmdGVyIHtcbiAgY29udGVudDogXCJcIjtcbiAgZGlzcGxheTogYmxvY2s7XG4gIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCAjYTNhM2EzO1xuICBtYXJnaW46IDYwcHggMDtcbn1cblxuZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmFmdGVyX2hyICsgZGl2ICsgLmlucHV0LWlubGluZV8zLTEsXG5mb3JtLmZvcm0gLmZvcm0tZmllbGQuYWZ0ZXJfaHIgKyBkaXYgKyAuaW5wdXQtaW5saW5lXzMtMSArIGRpdiArIC5pbnB1dC1pbmxpbmVfMy0yLFxuZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmFmdGVyX2hyICsgZGl2ICsgLmlucHV0LWlubGluZV8zLTEgKyBkaXYgKyAuaW5wdXQtaW5saW5lXzMtMiArIGRpdiArIC5pbnB1dC1pbmxpbmVfMy0zLFxuZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmFmdGVyX2hyICsgZGl2ICsgLmlucHV0LWlubGluZV8yLTEsXG5mb3JtLmZvcm0gLmZvcm0tZmllbGQuYWZ0ZXJfaHIgKyBkaXYgKyAuaW5wdXQtaW5saW5lXzItMSArIGRpdiArIC5pbnB1dC1pbmxpbmVfMi0yIHtcbiAgbWFyZ2luLXRvcDogMDtcbn1cblxuZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmVycm9yIHtcbiAgbWFyZ2luLWJvdHRvbTogMDtcbn1cblxuZm9ybS5mb3JtIC5mb3JtLWZpZWxkLm5vLW1hcmdpbi1ib3R0b20ge1xuICBtYXJnaW4tYm90dG9tOiAwO1xufVxuXG5mb3JtLmZvcm0gLmZpZWxkLWxhYmVsIHtcbiAgZGlzcGxheTogYmxvY2s7XG4gIHdpZHRoOiBjYWxjKDEwMCUgLSAyMHB4ICogMik7XG4gIHBhZGRpbmc6IDAgMjBweDtcbiAgbWFyZ2luLWJvdHRvbTogOHB4O1xuICBoZWlnaHQ6IDIycHg7XG4gIGZvbnQtd2VpZ2h0OiA1MDA7XG59XG5cbmZvcm0uZm9ybSAubm8tbGFiZWwge1xuICB3aWR0aDogY2FsYygxMDAlIC0gMjBweCAqIDIpO1xuICBwYWRkaW5nOiAwIDIwcHg7XG59XG5cbmZvcm0uZm9ybSAubm8tbGFiZWwgLmZpZWxkLWxhYmVsIHtcbiAgZGlzcGxheTogbm9uZTtcbn1cblxuZm9ybS5mb3JtIC5pbnB1dC13cmFwcGVyIHtcbiAgZGlzcGxheTogYmxvY2s7XG4gIHdpZHRoOiBjYWxjKDEwMCUgLSAyMHB4ICogMik7XG4gIHBhZGRpbmc6IDAgMjBweDtcbn1cblxuZm9ybS5mb3JtIC5kZXNjcmlwdGlvbiB7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICB3aWR0aDogY2FsYygxMDAlIC0gMjBweCAqIDIpO1xuICBwYWRkaW5nOiAxMHB4IDIwcHg7XG59XG5cbmZvcm0uZm9ybSBwLnJlcXVpcmVkIGxhYmVsLmZpZWxkLWxhYmVsLFxuZm9ybS5mb3JtIHNwYW4ucmVxdWlyZWQgbGFiZWwuZmllbGQtbGFiZWwge1xuICBiYWNrZ3JvdW5kOiBpbmhlcml0O1xufVxuXG5mb3JtLmZvcm0gcC5yZXF1aXJlZCBsYWJlbC5maWVsZC1sYWJlbDo6YWZ0ZXIsXG5mb3JtLmZvcm0gc3Bhbi5yZXF1aXJlZCBsYWJlbC5maWVsZC1sYWJlbDo6YWZ0ZXIge1xuICBjb250ZW50OiBcIuW/hemgiFwiO1xuICBsaW5lLWhlaWdodDogMTtcbiAgZm9udC1zaXplOiAxLjJyZW07XG4gIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgYmFja2dyb3VuZC1jb2xvcjogIzFDN0NENTtcbiAgY29sb3I6ICNmZmY7XG4gIHBhZGRpbmc6IDVweDtcbiAgYm9yZGVyLXJhZGl1czogM3B4O1xuICBtYXJnaW4tbGVmdDogNXB4O1xufVxuXG5mb3JtLmZvcm0gLmVycm9ycyB7XG4gIGNvbG9yOiAjY2IyZTI1O1xuICBib3JkZXI6IDFweCBzb2xpZCAjY2IyZTI1O1xuICBwYWRkaW5nOiAxMHB4O1xuICBib3JkZXItcmFkaXVzOiA1cHg7XG59XG5cbmZvcm0uZm9ybSBwLmVycm9yLm5vLWxhYmVsOm5vdCguZm9ybS1maWVsZCkge1xuICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICBjb2xvcjogI2NiMmUyNTtcbiAgY2xlYXI6IGJvdGg7XG4gIG1hcmdpbjogMDtcbiAgcGFkZGluZzogMTBweCAyMHB4O1xufVxuXG5mb3JtLmZvcm0gdGV4dGFyZWEgKyBwLmVycm9yLm5vLWxhYmVsOm5vdCguZm9ybS1maWVsZCksXG5mb3JtLmZvcm0gaW5wdXQgKyBwLmVycm9yLm5vLWxhYmVsOm5vdCguZm9ybS1maWVsZCkge1xuICBwYWRkaW5nOiAxMHB4IDA7XG59XG5cbmJvZHkuZm9ybS13aWR0aC1maXggZm9ybS5mb3JtIHtcbiAgd2lkdGg6IDgwMHB4O1xuICBtYXJnaW46IDAgYXV0bztcbn1cblxuQG1lZGlhIHNjcmVlbiBhbmQgKG1heC13aWR0aDogNTIwcHgpIHtcbiAgZm9ybS5mb3JtIC5mb3JtLWZpZWxkIHtcbiAgICBtYXJnaW4tdG9wOiAzMHB4O1xuICAgIHBhZGRpbmc6IDAgMTBweDtcbiAgfVxuICBmb3JtLmZvcm0gLmZvcm0tZmllbGQuYmVmb3JlX2hyIHtcbiAgICBwYWRkaW5nLXRvcDogNDBweDtcbiAgfVxuICBmb3JtLmZvcm0gLmZvcm0tZmllbGQuYmVmb3JlX2hyOmJlZm9yZSB7XG4gICAgbWFyZ2luOiAwIDAgNDBweCAwO1xuICB9XG4gIGZvcm0uZm9ybSAuZm9ybS1maWVsZC5hZnRlcl9ociArIGRpdiArIC5pbnB1dC1pbmxpbmVfMy0xICsgZGl2ICsgLmlucHV0LWlubGluZV8zLTIsXG4gIGZvcm0uZm9ybSAuZm9ybS1maWVsZC5hZnRlcl9ociArIGRpdiArIC5pbnB1dC1pbmxpbmVfMy0xICsgZGl2ICsgLmlucHV0LWlubGluZV8zLTIgKyBkaXYgKyAuaW5wdXQtaW5saW5lXzMtMyxcbiAgZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmFmdGVyX2hyICsgZGl2ICsgLmlucHV0LWlubGluZV8yLTEgKyBkaXYgKyAuaW5wdXQtaW5saW5lXzItMiB7XG4gICAgbWFyZ2luLXRvcDogMTBweDtcbiAgfVxuICBmb3JtLmZvcm0gLmZvcm0tZmllbGQuYWZ0ZXJfaHI6YWZ0ZXIge1xuICAgIG1hcmdpbjogNDBweCAwO1xuICB9XG4gIGZvcm0uZm9ybSAuZm9ybS1iZWZvcmUtY29udGVudHMge1xuICAgIHdpZHRoOiBjYWxjKDEwMCUgLSAxMHB4ICogMik7XG4gICAgcGFkZGluZzogMCAxMHB4O1xuICAgIG1hcmdpbi1ib3R0b206IDQwcHg7XG4gIH1cbiAgZm9ybS5mb3JtIC5maWVsZC1sYWJlbCB7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgcGFkZGluZzogMDtcbiAgICBoZWlnaHQ6IDIycHg7XG4gICAgZm9udC13ZWlnaHQ6IDUwMDtcbiAgfVxuICBmb3JtLmZvcm0gLm5vLWxhYmVsIHtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBwYWRkaW5nOiAxMHB4IDA7XG4gIH1cbiAgZm9ybS5mb3JtIC5pbnB1dC13cmFwcGVyIHtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBwYWRkaW5nOiAwO1xuICB9XG4gIGZvcm0uZm9ybSAuZGVzY3JpcHRpb24ge1xuICAgIHdpZHRoOiBjYWxjKDEwMCUgLSAxMHB4ICogMik7XG4gICAgcGFkZGluZzogMTBweCAwO1xuICB9XG4gIGZvcm0uZm9ybSBwLmVycm9yLm5vLWxhYmVsOm5vdCguZm9ybS1maWVsZCkge1xuICAgIGNvbG9yOiAjY2IyZTI1O1xuICAgIGNsZWFyOiBib3RoO1xuICAgIHBhZGRpbmc6IDEwcHggMTBweCAwIDEwcHg7XG4gICAgbWFyZ2luOiAwO1xuICB9XG4gIGZvcm0uZm9ybSAuZm9ybS1maWVsZCBwLmVycm9yLm5vLWxhYmVsIHtcbiAgICBwYWRkaW5nOiAxMHB4IDA7XG4gIH1cbiAgYm9keS5mb3JtLXdpZHRoLWZpeCBmb3JtLmZvcm0ge1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIG1hcmdpbjogMCBhdXRvO1xuICB9XG59XG5cbmZvcm0uZm9ybSAucGQtdGV4dCBpbnB1dC50ZXh0IHtcbiAgYm9yZGVyOiAxcHggc29saWQgIzVhNWE1YTtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2ZmZjtcbiAgYm9yZGVyLXJhZGl1czogNXB4O1xuICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICBwYWRkaW5nOiAxNXB4O1xuICBoZWlnaHQ6IDQwcHg7XG4gIHdpZHRoOiAxMDAlO1xufVxuXG5mb3JtLmZvcm0gLnBkLXRleHQgaW5wdXQudGV4dC5lcnJvciB7XG4gIGJvcmRlcjogMXB4IHNvbGlkICNjYjJlMjU7XG59XG5cbmZvcm0uZm9ybSAucGQtdGV4dC5pbnB1dC0zMDAgaW5wdXQudGV4dCB7XG4gIHdpZHRoOiAzMDBweDtcbn1cblxuZm9ybS5mb3JtIC5wZC10ZXh0LmVycm9yIGlucHV0LnRleHQge1xuICBib3JkZXI6IDFweCBzb2xpZCAjY2IyZTI1O1xufVxuXG5mb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzItMSwgZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlucHV0LWlubGluZV8yLTIge1xuICBmbG9hdDogbGVmdDtcbn1cblxuZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlucHV0LWlubGluZV8yLTEge1xuICB3aWR0aDogNDAlO1xufVxuXG5mb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzItMTo6YWZ0ZXIge1xuICBkaXNwbGF5OiBibG9jaztcbiAgY29udGVudDogXCJcIjtcbiAgY2xlYXI6IGJvdGg7XG59XG5cbmZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbnB1dC1pbmxpbmVfMi0xIC5maWVsZC1sYWJlbCB7XG4gIHdpZHRoOiBjYWxjKDEwMCUgLSAyMHB4KTtcbiAgcGFkZGluZy1yaWdodDogMDtcbn1cblxuZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlucHV0LWlubGluZV8yLTEgLmlucHV0LXdyYXBwZXIge1xuICB3aWR0aDogY2FsYygxMDAlIC0gMjBweCk7XG4gIHBhZGRpbmctcmlnaHQ6IDA7XG59XG5cbmZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbnB1dC1pbmxpbmVfMi0yIHtcbiAgd2lkdGg6IDQwJTtcbiAgcGFkZGluZzogMCAwIDAgMDtcbiAgY2xlYXI6IGluaGVyaXQ7XG59XG5cbmZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbnB1dC1pbmxpbmVfMi0yLm5vLWxhYmVsIHtcbiAgcGFkZGluZy10b3A6IDMwcHg7XG59XG5cbmZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbnB1dC1pbmxpbmVfMi0yOjphZnRlciB7XG4gIGNsZWFyOiBib3RoO1xufVxuXG5mb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzItMiAuaW5wdXQtd3JhcHBlciB7XG4gIHBhZGRpbmctcmlnaHQ6IDA7XG59XG5cbmZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbnB1dC1pbmxpbmVfMi0yICsgZGl2ICsgLmZvcm0tZmllbGQ6bm90KC5pbnB1dC1pbmxpbmVfMi0xKTpub3QoLmlucHV0LWlubGluZV8zLTEpOm5vdCguYmVmb3JlX2hyKSB7XG4gIHBhZGRpbmctdG9wOiAzMHB4O1xufVxuXG5mb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzMtMSwgZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlucHV0LWlubGluZV8zLTIsIGZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbnB1dC1pbmxpbmVfMy0zIHtcbiAgd2lkdGg6IDMwJTtcbiAgZmxvYXQ6IGxlZnQ7XG4gIGNsZWFyOiBpbmhlcml0O1xufVxuXG5mb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzMtMi5uby1sYWJlbCwgZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlucHV0LWlubGluZV8zLTMubm8tbGFiZWwge1xuICBwYWRkaW5nLXRvcDogMzBweDtcbn1cblxuZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlucHV0LWlubGluZV8zLTIgLmlucHV0LXdyYXBwZXIsIGZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbnB1dC1pbmxpbmVfMy0zIC5pbnB1dC13cmFwcGVyIHtcbiAgcGFkZGluZy1sZWZ0OiAwO1xufVxuXG5mb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzMtMSAuZmllbGQtbGFiZWwge1xuICBwYWRkaW5nLXJpZ2h0OiAwO1xufVxuXG5mb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzMtMzo6YWZ0ZXIge1xuICBjbGVhcjogYm90aDtcbn1cblxuZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlucHV0LWlubGluZV8zLTMgKyBkaXYgKyAuZm9ybS1maWVsZDpub3QoLmlucHV0LWlubGluZV8yLTEpOm5vdCguaW5wdXQtaW5saW5lXzMtMSk6bm90KC5iZWZvcmVfaHIpIHtcbiAgcGFkZGluZy10b3A6IDMwcHg7XG59XG5cbmZvcm0uZm9ybSAuZm9ybS1maWVsZC50ZXh0X2FmdGVyIC5pbnB1dC13cmFwcGVyIHtcbiAgcGFkZGluZy1yaWdodDogNXB4O1xuICB3aWR0aDogODAlO1xuICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG59XG5cbmZvcm0uZm9ybSAuZm9ybS1maWVsZC50ZXh0X2FmdGVyIC5kZXNjcmlwdGlvbiB7XG4gIHdpZHRoOiBhdXRvO1xuICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gIHBhZGRpbmc6IDA7XG59XG5cbmZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbmxpbmVfeSB7XG4gIHdpZHRoOiAyMDBweDtcbiAgbWFyZ2luLXJpZ2h0OiAxMHB4O1xufVxuXG5mb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5saW5lX3kgLmlucHV0LXdyYXBwZXIge1xuICB3aWR0aDogMTUwcHg7XG59XG5cbmZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbmxpbmVfbSwgZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlubGluZV9kIHtcbiAgd2lkdGg6IDEwMHB4O1xuICBtYXJnaW4tcmlnaHQ6IDVweDtcbn1cblxuZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlubGluZV9tIC5pbnB1dC13cmFwcGVyLCBmb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5saW5lX2QgLmlucHV0LXdyYXBwZXIge1xuICB3aWR0aDogNzBweDtcbn1cblxuZm9ybS5mb3JtIC5wZC1kYXRlIGlucHV0LmRhdGUge1xuICBib3JkZXI6IDFweCBzb2xpZCAjNWE1YTVhO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuICBib3JkZXItcmFkaXVzOiA1cHg7XG4gIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gIHBhZGRpbmc6IDE1cHg7XG4gIGhlaWdodDogNDBweDtcbiAgd2lkdGg6IDEwMCU7XG59XG5cbmZvcm0uZm9ybSAucGQtZGF0ZS5pbnB1dC0zMDAgaW5wdXQuZGF0ZSB7XG4gIHdpZHRoOiAzMDBweDtcbn1cblxuQG1lZGlhIHNjcmVlbiBhbmQgKG1heC13aWR0aDogNTIwcHgpIHtcbiAgZm9ybS5mb3JtIC5wZC10ZXh0LmlucHV0LTMwMCBpbnB1dC50ZXh0IHtcbiAgICB3aWR0aDogY2FsYyg4MCUgLSAxMHB4KTtcbiAgfVxuICBmb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzItMSwgZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlucHV0LWlubGluZV8yLTIge1xuICAgIGNsZWFyOiBib3RoO1xuICB9XG4gIGZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbnB1dC1pbmxpbmVfMi0xIHtcbiAgICB3aWR0aDogMTAwJTtcbiAgfVxuICBmb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzItMSAuaW5wdXQtd3JhcHBlciB7XG4gICAgcGFkZGluZy1yaWdodDogMTBweDtcbiAgfVxuICBmb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzItMiB7XG4gICAgd2lkdGg6IGNhbGMoMTAwJSAtIDEwcHggKiAyKTtcbiAgICBwYWRkaW5nOiAwIDEwcHg7XG4gIH1cbiAgZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlucHV0LWlubGluZV8yLTIubm8tbGFiZWwge1xuICAgIG1hcmdpbi10b3A6IDEwcHg7XG4gICAgcGFkZGluZzogMCAxMHB4O1xuICB9XG4gIGZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbnB1dC1pbmxpbmVfMi0yLmFmdGVyX2hyIHtcbiAgICBtYXJnaW4tYm90dG9tOiAwO1xuICB9XG4gIGZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbnB1dC1pbmxpbmVfMy0xLCBmb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzMtMiwgZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlucHV0LWlubGluZV8zLTMge1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGNsZWFyOiBib3RoO1xuICB9XG4gIGZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbnB1dC1pbmxpbmVfMy0xIC5maWVsZC1sYWJlbCwgZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlucHV0LWlubGluZV8zLTIgLmZpZWxkLWxhYmVsLCBmb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzMtMyAuZmllbGQtbGFiZWwge1xuICAgIHBhZGRpbmc6IDAgMTBweDtcbiAgfVxuICBmb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzMtMSAuaW5wdXQtd3JhcHBlciB7XG4gICAgcGFkZGluZy1yaWdodDogMTBweDtcbiAgfVxuICBmb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzMtMiAuaW5wdXQtd3JhcHBlciB7XG4gICAgcGFkZGluZy1sZWZ0OiAxMHB4O1xuICB9XG4gIGZvcm0uZm9ybSAuZm9ybS1maWVsZC5pbnB1dC1pbmxpbmVfMy0yLm5vLWxhYmVsIHtcbiAgICBtYXJnaW4tdG9wOiAxMHB4O1xuICAgIHBhZGRpbmc6IDA7XG4gIH1cbiAgZm9ybS5mb3JtIC5mb3JtLWZpZWxkLmlucHV0LWlubGluZV8zLTMubm8tbGFiZWwge1xuICAgIG1hcmdpbi10b3A6IDEwcHg7XG4gICAgcGFkZGluZzogMDtcbiAgfVxuICBmb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzMtMy5hZnRlcl9ociB7XG4gICAgbWFyZ2luLWJvdHRvbTogMDtcbiAgfVxuICBmb3JtLmZvcm0gLmZvcm0tZmllbGQuaW5wdXQtaW5saW5lXzMtMyAuaW5wdXQtd3JhcHBlciB7XG4gICAgcGFkZGluZy1sZWZ0OiAxMHB4O1xuICB9XG59XG5cbmZvcm0uZm9ybSAucGQtdGV4dGFyZWEgdGV4dGFyZWEge1xuICB3aWR0aDogMTAwJTtcbiAgYm9yZGVyOiAxcHggc29saWQgIzVhNWE1YTtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2ZmZjtcbiAgYm9yZGVyLXJhZGl1czogNXB4O1xufVxuXG5mb3JtLmZvcm0gLnBkLXJhZGlvIC5maWVsZC1sYWJlbCB7XG4gIG1hcmdpbi1ib3R0b206IDMwcHg7XG59XG5cbmZvcm0uZm9ybSAucGQtcmFkaW8gLnZhbHVlIHNwYW4ge1xuICBkaXNwbGF5OiBibG9jaztcbiAgbWFyZ2luOiAwIDAgMjBweCAwO1xufVxuXG5mb3JtLmZvcm0gLnBkLXJhZGlvIC52YWx1ZSBzcGFuOmxhc3QtY2hpbGQge1xuICBtYXJnaW4tYm90dG9tOiAwO1xufVxuXG5mb3JtLmZvcm0gLnBkLXJhZGlvIC52YWx1ZSBzcGFuIGlucHV0W3R5cGU9XCJyYWRpb1wiXSB7XG4gIHdpZHRoOiAxNXB4O1xuICB2ZXJ0aWNhbC1hbGlnbjogdG9wO1xuICBtYXJnaW4tdG9wOiA4cHg7XG59XG5cbmZvcm0uZm9ybSAucGQtcmFkaW8gLnZhbHVlIHNwYW4gbGFiZWwge1xuICB3aWR0aDogY2FsYygxMDAlIC0gKDE1cHggKyAoMjBweCAqIDIpKSk7XG4gIG1hcmdpbi1sZWZ0OiAxMHB4O1xuICBsaW5lLWhlaWdodDogMS43NWVtO1xuICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG59XG5cbmZvcm0uZm9ybSAucGQtcmFkaW8uaW5saW5lIC52YWx1ZSBzcGFuIHtcbiAgbWFyZ2luOiAwIDMwcHggMCAwO1xuICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG59XG5cbmZvcm0uZm9ybSAucGQtcmFkaW8uaW5saW5lIC52YWx1ZSBzcGFuOmxhc3QtY2hpbGQge1xuICBtYXJnaW4tcmlnaHQ6IDA7XG59XG5cbmZvcm0uZm9ybSAucGQtcmFkaW8uaW5saW5lIC52YWx1ZSBzcGFuIGxhYmVsIHtcbiAgd2lkdGg6IGNhbGMoMTAwJSAtIDI1cHgpO1xufVxuXG5mb3JtLmZvcm0gLnBkLWNoZWNrYm94IC5maWVsZC1sYWJlbCB7XG4gIG1hcmdpbi1ib3R0b206IDIwcHg7XG59XG5cbmZvcm0uZm9ybSAucGQtY2hlY2tib3ggLnZhbHVlIHNwYW4ge1xuICBtYXJnaW4tYm90dG9tOiAxMHB4O1xuICBkaXNwbGF5OiBibG9jaztcbn1cblxuZm9ybS5mb3JtIC5wZC1jaGVja2JveCAudmFsdWUgc3BhbjpsYXN0LWNoaWxkIHtcbiAgbWFyZ2luLWJvdHRvbTogMDtcbn1cblxuZm9ybS5mb3JtIC5wZC1jaGVja2JveCAudmFsdWUgc3BhbiBsYWJlbCB7XG4gIG1hcmdpbi1sZWZ0OiA1cHg7XG59XG5cbmZvcm0uZm9ybSAucGQtY2hlY2tib3guaW5saW5lIC52YWx1ZSBzcGFuIHtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICBtYXJnaW4tcmlnaHQ6IDMwcHg7XG59XG5cbmZvcm0uZm9ybSAucGQtY2hlY2tib3guaW5saW5lIC52YWx1ZSBzcGFuOmxhc3QtY2hpbGQge1xuICBtYXJnaW4tcmlnaHQ6IDA7XG59XG5cbmZvcm0uZm9ybSAucG9saWN5LWNoZWNrIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2U4ZThlODtcbiAgcGFkZGluZzogNDBweCAyMHB4O1xuICBib3JkZXItcmFkaXVzOiA1cHg7XG59XG5cbmZvcm0uZm9ybSAucG9saWN5LWNoZWNrIC5maWVsZC1sYWJlbCB7XG4gIHBhZGRpbmctbGVmdDogMDtcbn1cblxuZm9ybS5mb3JtIC5wb2xpY3ktY2hlY2sgLnByaXZhY3ktcG9saWN5LXRleHQge1xuICBib3JkZXI6IDFweCBzb2xpZCAjNWE1YTVhO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuICBwYWRkaW5nOiAxMHB4O1xuICBvdmVyZmxvdzogc2Nyb2xsO1xuICB3aWR0aDogY2FsYygxMDAlIC0gMjBweCk7XG4gIGhlaWdodDogMjAwcHg7XG4gIGJvcmRlci1yYWRpdXM6IDVweDtcbn1cblxuZm9ybS5mb3JtIC5wb2xpY3ktY2hlY2sgLnByaXZhY3ktcG9saWN5LXRleHQgKyAuaW5wdXQtd3JhcHBlciB7XG4gIG1hcmdpbjogMjBweCAwO1xuICBwYWRkaW5nOiAwO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG59XG5cbmZvcm0uZm9ybSAucG9saWN5LWNoZWNrLmVycm9yIC5wcml2YWN5LXBvbGljeS10ZXh0ICsgLmlucHV0LXdyYXBwZXIge1xuICBtYXJnaW4tYm90dG9tOiAwO1xufVxuXG5mb3JtLmZvcm0gLnBkLXNlbGVjdCAuaW5wdXQtd3JhcHBlciB7XG4gIG92ZXJmbG93OiBoaWRkZW47XG4gIG1hcmdpbi1sZWZ0OiAyMHB4O1xuICBwYWRkaW5nOiAwO1xuICB3aWR0aDogY2FsYygxMDAlIC0gMjBweCk7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgYm9yZGVyOiAxcHggc29saWQgIzVhNWE1YTtcbiAgYm9yZGVyLXJhZGl1czogNXB4O1xuICBiYWNrZ3JvdW5kOiAjZmZmZmZmO1xuICBoZWlnaHQ6IDQwcHg7XG4gIGRpc3BsYXk6IGJsb2NrO1xufVxuXG5mb3JtLmZvcm0gLnBkLXNlbGVjdCAuaW5wdXQtd3JhcHBlcjo6YmVmb3JlIHtcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICB0b3A6IDA7XG4gIHJpZ2h0OiAwO1xuICBib3R0b206IDA7XG4gIHdpZHRoOiA0MHB4O1xuICBjb250ZW50OiAnJztcbiAgYm9yZGVyLWxlZnQ6IDFweCBzb2xpZCAjNWE1YTVhO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZTZlNmU2O1xufVxuXG5mb3JtLmZvcm0gLnBkLXNlbGVjdCAuaW5wdXQtd3JhcHBlcjphZnRlciB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgdG9wOiAxNnB4O1xuICByaWdodDogMTJweDtcbiAgd2lkdGg6IDA7XG4gIGhlaWdodDogMDtcbiAgcGFkZGluZzogMDtcbiAgY29udGVudDogJyc7XG4gIGJvcmRlci1sZWZ0OiA4cHggc29saWQgdHJhbnNwYXJlbnQ7XG4gIGJvcmRlci1yaWdodDogOHB4IHNvbGlkIHRyYW5zcGFyZW50O1xuICBib3JkZXItdG9wOiA4cHggc29saWQgIzM3M2EzYztcbiAgcG9pbnRlci1ldmVudHM6IG5vbmU7XG59XG5cbmZvcm0uZm9ybSAucGQtc2VsZWN0IC5pbnB1dC13cmFwcGVyIHNlbGVjdCB7XG4gIHotaW5kZXg6IDEwO1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIHdpZHRoOiAxMDAlO1xuICBoZWlnaHQ6IDQwcHg7XG4gIGN1cnNvcjogcG9pbnRlcjtcbiAgdGV4dC1vdmVyZmxvdzogZWxsaXBzaXM7XG4gIGJvcmRlcjogbm9uZTtcbiAgb3V0bGluZTogbm9uZTtcbiAgYmFja2dyb3VuZDogdHJhbnNwYXJlbnQ7XG4gIGJhY2tncm91bmQtaW1hZ2U6IG5vbmU7XG4gIGJveC1zaGFkb3c6IG5vbmU7XG4gIGFwcGVhcmFuY2U6IG5vbmU7XG59XG5cbmZvcm0uZm9ybSAucGQtc2VsZWN0LmlucHV0LTMwMCAuaW5wdXQtd3JhcHBlciB7XG4gIHdpZHRoOiBjYWxjKDMwMHB4IC0gMjBweCk7XG59XG5cbkBtZWRpYSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDUyMHB4KSB7XG4gIGZvcm0uZm9ybSAucGQtc2VsZWN0IC5pbnB1dC13cmFwcGVyIHtcbiAgICBtYXJnaW4tbGVmdDogMDtcbiAgICB3aWR0aDogY2FsYygxMDAlIC0gMTBweCk7XG4gIH1cbiAgZm9ybS5mb3JtIC5wZC1zZWxlY3QuaW5wdXQtMzAwIC5pbnB1dC13cmFwcGVyIHtcbiAgICB3aWR0aDogY2FsYyg4MCUgLSAxMHB4KTtcbiAgfVxufVxuXG5mb3JtLmZvcm0gLnN1Ym1pdCB7XG4gIG1hcmdpbjogMzBweCAwO1xufVxuXG5mb3JtLmZvcm0gLnN1Ym1pdCBpbnB1dCB7XG4gIGJhY2tncm91bmQtY29sb3I6ICM2MmExZGI7XG4gIGhlaWdodDogNDBweDtcbiAgd2lkdGg6IDI0MHB4O1xuICBjb2xvcjogI2ZmZjtcbiAgb3V0bGluZTogbm9uZTtcbiAgYm9yZGVyOiBub25lO1xuICBib3JkZXItcmFkaXVzOiA1cHg7XG4gIG1hcmdpbjogMTVweCBhdXRvO1xuICBkaXNwbGF5OiBibG9jaztcbiAgZm9udC1zaXplOiAyMHB4O1xufVxuXG5AbWVkaWEgc2NyZWVuIGFuZCAobWF4LXdpZHRoOiA1MjBweCkge1xuICBmb3JtLmZvcm0gLnN1Ym1pdCBpbnB1dCB7XG4gICAgaGVpZ2h0OiA1MHB4O1xuICAgIHdpZHRoOiAyNDBweDtcbiAgICBmb250LXNpemU6IDIwcHg7XG4gIH1cbn1cbiJdfQ== */