@charset "UTF-8";
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  background: #25427D;
}

img {
  width: 100%;
}

.n_minus {
  max-width: 414px;
  margin: auto;
  background: #fff;
  position: relative;
  z-index: 5;
}

/*ヘッダー*/
.header_logo a {
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.header_logo a:hover {
  opacity: 0.9;
}

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


/*fv*/
.fv_bg {
  background-image: url(../images/fv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 445px;
  position: relative;
  margin-bottom: 57px;
}

.fv_ttl {
  font-weight: 600;
  font-size: 40px;
  color: #fff;
  letter-spacing: 0.02em;
  overflow: hidden;
  position: absolute;
  top: 333px;
  left: 15px;
}

.fv_ttl span {
  background: #25427D;
}

.fv_txt {
  font-size: 17px;
  line-height: 1.5;
  width: 93%;
  margin: 0 auto 17px;
}

.fv_subtxt {
  font-size: 14px;
  line-height: 1.7;
  width: 93%;
  margin: 0 auto 50px;
}

/*テキスト左から右アニメーション*/
.txt_in {
  overflow: hidden;
  display: inline-block;
  padding: 15px 10px 14px;
}

.txt_in_inner {
  display: inline-block;
}

.left_anime {
  opacity: 0;
}

.slide_left {
  -webkit-animation-name: slide_txt;
          animation-name: slide_txt;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slide_txt {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide_txt {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.slide_right {
  -webkit-animation-name: slide_txt_x;
          animation-name: slide_txt_x;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slide_txt_x {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide_txt_x {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.delay {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

/*申し込みボタン*/
.app_btn {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  display: block;
  width: 93%;
  max-width: 390px;
  margin: 0 auto 80px;
  line-height: 1.6;
}

.app_btn a {
  display: block;
  padding: 12px 0 9px;
  color: #fff;
  background: #D0112F;
  text-align: center;
  border-radius: 36px;
  margin: auto;
  font-weight: 600;
}

.app_btn a:hover {
  opacity: 0.9;
  -webkit-box-shadow: 2px 5px 4px rgba(0, 0, 0, 0.09);
          box-shadow: 2px 5px 4px rgba(0, 0, 0, 0.09);
}

.app_btn span {
  display: block;
  text-align: center;
}

.app_btn span:nth-child(1) {
  font-size: 12px;
  position: relative;
}

.app_btn span:nth-child(1)::before {
  content: "";
  width: 15px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 10px;
  left: -15px;
  -webkit-transform: rotate(65deg);
          transform: rotate(65deg);
}

.app_btn span:nth-child(1)::after {
  content: "";
  width: 15px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 10px;
  right: -15px;
  -webkit-transform: rotate(-65deg);
          transform: rotate(-65deg);
}

.app_btn span:nth-child(2) {
  font-size: 18px;
}

/*共通*/
.inner {
  width: 93%;
  margin: auto;
}

/*このような悩みは ありませんか？*/
.solution_ttl {
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 30px;
}

.solution_detail {
  width: 48%;
  margin-bottom: 35px;
}

.solution_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}

.solution_list::before {
  content: "";
  border-top: 40px solid #25427D;
  border-right: 95px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 95px solid transparent;
  position: absolute;
  bottom: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.solution_txt {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: #25427D;
  padding-top: 9.73%;
  padding-left: 11.89%;
  padding-right: 10%;
  margin-bottom: 10px;
  background-image: url(../images/txt_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 136px;
  position: relative;
}

.first {
  padding-top: 16%;
}

.solution_img {
  width: 40.54%;
  margin-left: 24.43%;
}

.solution_detail:nth-of-type(2) .solution_img {
  width: 35.68%;
  margin-left: 30.68%;
}

.solution_detail:nth-of-type(3) .solution_img {
  width: 35.14%;
  margin-left: 32.43%;
}

.solution_detail:nth-of-type(4) .solution_img {
  width: 54.05%;
  margin-left: 22.07%;
}

.solution_subttl {
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 100px;
}

/*共通*/
.category_ttl {
  text-align: center;
  margin-bottom: 58px;
  position: relative;
}

.category_ttl::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #25427D;
  position: absolute;
  left: 45%;
  bottom: -22px;
  -webkit-transform: rotate(125deg);
          transform: rotate(125deg);
}

.category_ttl span:nth-child(1) {
  display: block;
  width: 70px;
  margin: auto;
  margin-bottom: 10px;
}

.category_ttl span:nth-child(2) {
  font-size: 27px;
  font-weight: 600;
}

/*SERVICE*/
.service .category_ttl {
  margin-bottom: 70px;
}

.service_detail {
  position: relative;
  padding: 42px 26px 30px;
  margin-bottom: 50px;
  border: 1px solid #25427D;
}

.service_num {
  width: 87px;
  margin: auto;
  background: #ffff;
  color: #25427D;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -23px;
}

.service_name {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.service_img {
  margin-bottom: 23px;
}

.service_txt {
  line-height: 1.5;
  text-align: justify;
}

.service_subtxt {
  font-size: 14px;
  margin-top: 3px;
}

.notice {
  margin-bottom: 50px;
  text-align: center;
}

.notice_ttl {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #25427D;
  display: inline-block;
  position: relative;
}

.notice_ttl::before {
  content: "";
  background-image: url(../images/notice_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  position: absolute;
  left: -20px;
}

.notice_txt {
  line-height: 1.5;
  text-align: left;
}

.notice_txt:nth-of-type(1) {
  margin-bottom: 15px;
}

.notice_txt span {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

/*MESSAGE*/
.message {
  background: rgba(37, 66, 125, 0.06);
  padding: 50px 0 35px;
}

.ceo_pic {
  margin-bottom: 15px;
}

.ceo_name {
  font-weight: 600;
  margin-bottom: 20px;
}

.ceo_name span {
  margin-left: 16px;
  font-size: 10px;
}

.ceo_subttl {
  width: 66px;
  margin-bottom: 8px;
}

.ceo_txt {
  font-size: 14px;
  line-height: 1.5;
}

.ceo_detail {
  margin-bottom: 15px;
}

.sub_me {
  width: 80px;
}

/*ADVISOR*/
.advisor {
  padding: 50px 0;
}

.advisor_pic {
  margin-bottom: 18px;
}

.advisor_detail {
  position: relative;
  margin-bottom: 25px;
}

.advisor_name {
  font-weight: 600;
  margin-bottom: 15px;
}

.advisor_name span {
  margin-left: 16px;
  font-size: 10px;
}

.advisor_txt {
  font-size: 14px;
  line-height: 1.5;
}

/* .block{
  display: block;
  text-align: center;
} */

/*ADVISORアコーディオン*/
.advisor_more {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  display: block;
  background: #25427D;
  color: #fff;
  text-align: center;
  width: 275px;
  margin: auto;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 0;
  position: relative;
}

.advisor_more:hover {
  opacity: 0.9;
}

.advisor_more::after {
  content: " ";
  position: absolute;
  width: 9px;
  height: 9px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  right: 32px;
  top: 24px;
  -webkit-transition: .5s;
  transition: .5s;
}

.advisor_more.on-click::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 45%;
}

.ad_hide {
  display: none;
}

/*VOICE*/
.voice {
  background: rgba(37, 66, 125, 0.06);
  padding: 50px 0;
}

.voice .category_ttl span:nth-child(1) {
  width: 55px;
}

.voice_list {
  background: #fff;
}

.voice_txtbox {
  padding: 34px 25px 40px;
}

.voice_company {
  font-size: 14px;
  color: #25427D;
  font-weight: 600;
  margin-bottom: 10px;
}

.voice_detail span {
  font-weight: 600;
  display: inline-block;
}

.voice_name {
  font-size: 20px;
  margin-left: 15px;
}

.voice_detail {
  margin-bottom: 20px;
}

.voice_txt {
  line-height: 1.5;
}

/*VOICEスライダー*/
.slick-prev, .slick-next {
  background: #25427D;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  z-index: 10;
  top: 52%;
}

.slick-prev:before, .slick-next:before {
  content: "";
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  opacity: 1;
}

.slick-prev:before {
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
  top: 10px;
  left: 12px;
}

.slick-next:before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  top: 10px;
  right: 12px;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background: #25427D;
  opacity: 0.9;
}

.slick-next {
  right: -8px;
}

.slick-prev {
  left: -8px;
}

.voice_slide .slick-slide {
  margin: 0 3px;
}

/*PARTNER*/
.partner {
  padding: 50px 0;
}

.partner .category_ttl {
  margin-bottom: 40px;
}

.partner_logo {
  width: 46%;
}

.partner_logo:nth-child(odd) {
  margin-right: 6.23%;
}

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

/*FLOW*/
.flow {
  background: rgba(37, 66, 125, 0.06);
  padding: 50px 0 70px;
}

.flow .category_ttl {
  margin-bottom: 90px;
}

.flow .category_ttl span:nth-child(1) {
  width: 50px;
}

.flow_list {
  position: relative;
}

.flow_list:not(:last-child) {
  padding-bottom: 50px;
}

.flow_list:not(:last-child) .flow_l::before {
  content: "";
  width: 1px;
  height: 125px;
  background: #25427D;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 20px;
}

.flow_l {
  background: #25427D;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  border-radius: 2px;
  width: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 6px 0;
  position: absolute;
  left: 0;
  top: 0;
}

.flow_r {
  padding-left: 67px;
}

.step_ttl {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.step_ttl::before {
  content: "";
  background-image: url(../images/flow_icon01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 22px;
  position: absolute;
  right: -40px;
}

.flow_list:nth-of-type(2) .step_ttl::before {
  background-image: url(../images/flow_icon02.png);
  width: 20px;
  height: 24px;
  right: -30px;
  top: -2px;
}

.flow_list:nth-of-type(3) .step_ttl::before {
  background-image: url(../images/flow_icon03.png);
  width: 28px;
  height: 22px;
}

.flow_list:nth-of-type(4) .step_ttl::before {
  background-image: url(../images/flow_icon04.png);
  width: 25px;
  height: 28px;
  top: -6px;
  right: -33px;
}

.step_txt {
  line-height: 1.5;
}

/*PLAN*/
.plan {
  padding: 55px 0 50px;
}

.plan .category_ttl {
  margin-bottom: 62px;
}

.plan .category_ttl span:nth-child(1) {
  width: 46px;
}

.plan_month {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50px;
  color: #fff;
  background: #25427D;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  margin: auto;
  padding: 5px;
  border-radius: 2px;
  margin-bottom: 15px;
}

.plan_price {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 35px;
  letter-spacing: 0.05em;
  text-align: center;
}

.plan_price span {
  font-size: 26px;
}

.plan .app_btn {
  margin-bottom: 0;
}

/*FAQ*/
.faq {
  background: rgba(37, 66, 125, 0.06);
  padding: 55px 0 65px;
}

.faq .category_ttl {
  margin-bottom: 70px;
}

.faq .category_ttl span:nth-child(1) {
  width: 37px;
}

/*FAQアコーディオン*/
.faq_list {
  background: #fff;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
  line-height: 1.5;
  border-radius: 8px;
}

.faq_list:not(:last-of-type) {
  margin-bottom: 20px;
}

.faq_ttl {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 40px;
  padding-right: 30px;
  font-weight: 600;
  cursor: pointer;
}

.faq_ttl::before {
  content: "Q";
  position: absolute;
  color: #25427D;
  top: auto;
  left: 15px;
  font-weight: 600;
}

.faq_ttl::after {
  content: "＋";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.faq_ttl.active::after {
  content: "－";
}

.faq_txt {
  display: none;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 40px;
  padding-right: 30px;
  font-weight: 500;
  font-size: 14px;
  position: relative;
}

.faq_txt::before {
  content: "A";
  position: absolute;
  color: #D0112F;
  left: 15px;
  top: auto;
  font-weight: 600;
}

.faq_txt.active {
  display: block;
}

/*footer*/
footer {
  text-align: center;
  color: #fff;
}

footer a:hover {
  opacity: 0.8;
}

.f_inner {
  background: #25427D;
  padding: 35px 0 50px;
}

.f_logo {
  width: 120px;
  margin: 0 auto 30px;
}

.f_list a {
  color: #fff;
}

.f_list:not(:last-child) {
  margin-bottom: 20px;
}

small {
  display: block;
  color: #25427D;
  padding: 25px 0;
}

/*プライバシー・ポリシー・特商法*/
.privacy_inner {
  width: 80%;
  margin: auto;
  font-weight: normal;
  line-height: 170%;
  padding-bottom: 70px;
}

.privacy_inner .page_title {
  font-size: 2rem;
  padding-top: 30px;
  margin-bottom: 20px;
  line-height:150%;
  text-align: center;
}

.privacy_inner .p_item {
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  list-style-position: inside;
  font-size: 2rem;
  line-height: 150%;
  border-bottom: 1px solid #555;
  padding-bottom: 10px;
}

.privacy_inner .bold {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table tr {
  border-bottom: solid 2px white;
}

table tr:last-child {
  border-bottom: none;
}

table th {
  position: relative;
  text-align: left;
  width: 35%;
  color: #111;
  padding: 10px 0;
  line-height:150%;
}

table td {
  text-align: left;
  width: 70%;
  padding: 10px 0;
  padding-left: 20px;
}

.sp {
  display: none;
}

/*PC背景*/
header {
  position: fixed;
  top: 0;
  left: 0;
}

.header_inner {
  padding-top: 2.08vw;
  padding-left: 2.29vw;
}

.bg_ttl {
  display: inline-block;
  color: #fff;
  font-size: 4.51vw;
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 4.17vw;
}

.bg_ttl span:not(:first-child) {
  display: block;
}

.bg_txt {
  position: fixed;
  left: 2.4vw;
  z-index: -1;
  bottom: 0;
}

.bg_logo {
  width: 29.86vw;
  max-width: 532px;
}

.bg_logo img {
  vertical-align: bottom;
}

/*ナビゲーションメニュー*/
.nav_wrapper {
  height: 100vh;
  right: 0;
  position: fixed;
  top: 0;
  width: 30%;
  max-width: 430px;
  z-index: 5;
}

.app_btn {
  width: 90%;
}

.header_nav {
  background-color: #fff;
  height: 100%;
  width: 100%;
  z-index: 5;
}

.nav_inner {
  width: 100%;
  display: block;
  padding-top: 9.03vw;
}

.menu_list {
  margin-bottom: 30px;
  margin-right: 0;
  padding-left: 100px;
  position: relative;
}

.menu_list a {
  color: #25427D;
  font-weight: 600;
}

.menu_list a::before {
  content: "";
  width: 25px;
  height: 1px;
  background: #25427D;
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.menu_list a:hover {
  opacity: 0.8;
}

.menu_list a.link_current::before {
  width: 60px;
  left: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.menu_list:not(:last-child) {
  margin-right: 0;
}

/* 下からフェードイン */
.fadein_b {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

/* ロード時フェードイン  */
.kv_fade {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.kv_fade.show {
  opacity: 1;
}

@media (max-width: 1200px) {
  header {
    position: initial;
  }
  .header_inner {
    padding: 40px 15px 10px;
  }
  .header_logo a {
    font-size: 20px;
    color: #25427D;
  }
  .n_minus {
    overflow: hidden;
    margin-right: 0;
    margin-left: 36.96vw;
  }
  .bg_logo {
    display: none;
  }
  .bg_txt {
    top: 70px;
  }
  .bg_ttl {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    margin-top: 0;
    letter-spacing: 0.2em;
    line-height: 1.7;
    font-size: 5.45vw;
  }
  .bg_ttl span:nth-child(1) {
    text-combine-upright: all;
  }
  .bg_ttl span:nth-child(2) {
    margin-top: 6vw;
  }
  .bg_ttl span:nth-child(3) {
    margin-top: 38vw;
  }
  /*ハンバーガメニューボタン*/
  .menu_btn {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 3;
  }
  .menu_bar {
    background-color: #25427D;
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 40px;
    border-radius: 5px;
  }
  .menu_bar_top {
    top: 10px;
  }
  .menu_bar_mid {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .menu_bar_bottom {
    bottom: 10px;
  }
  .menu_btn.close .menu_bar_top {
    -webkit-transform: translate(-50%, 10px) rotate(45deg);
            transform: translate(-50%, 10px) rotate(45deg);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  .menu_btn.close .menu_bar_mid {
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }
  .menu_btn.close .menu_bar_bottom {
    -webkit-transform: translate(-50%, -8px) rotate(-45deg);
            transform: translate(-50%, -8px) rotate(-45deg);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  /* スクロール制御 */
  .noscroll {
    overflow: hidden;
  }
  /* ハンバーガーメニュー */
  .nav_wrapper {
    position: absolute;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
    z-index: 2;
  }
  .nav_wrapper .app_btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-bottom: 0;
  }
  .header_nav {
    z-index: 2;
  }
  .nav_inner {
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .menu_list {
    margin-bottom: 30px;
    margin-right: 0;
    padding-left: 0;
  }
  .nav_wrapper.slide_in {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  /* メニューオープン時 */
  .nav_wrapper.fade {
    opacity: 1;
    visibility: visible;
  }
  .menu_list a::before {
    display: none;
  }
}

@media (min-width: 660px) {
  /*追従ボタン*/
  .btn_fixed {
    display: none !important;
  }
}

@media (max-width: 660px) {
  body {
    background: #fff;
  }
  .n_minus {
    max-width: 100%;
    margin: 0;
  }
  .bg_txt {
    display: none;
  }
  .fv_ttl {
    font-size: 9.66vw;
    left: 3.62%;
  }
  .fv_txt {
    font-size: 4.11vw;
  }
  .fv_subtxt {
    font-size: 3.38vw;
  }
  .solution_txt {
    font-size: 3.62vw;
    height: 32vw;
  }
  .nav_wrapper {
    max-width: 100%;
  }
  /*追従ボタン*/
  .btn_fixed.fixed {
    position: fixed;
    margin-bottom: 0;
    bottom: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (min-width: 1441px) {
  .bg_ttl {
    font-size: 65px;
  }
  .bg_txt {
    left: 2vw;
  }
}
/*# sourceMappingURL=style.css.map */