@charset "UTF-8";
/* フォントサイズ
-------------------------------------------*/
html {
  font-size: 62.5%;
}

@media (max-width: 600px) {
  html {
    font-size: calc(100vw / 37.5);
    /*ビューポートが375pxならフォントサイズは10px*/
  }
}

/* body
-------------------------------------------*/
body {
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #333;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 992px), print {
  body {
    font-size: 1.6rem;
  }
}

body.is_hidden {
  overflow: hidden;
}

@media screen and (min-width: 992px), print {
  .nav_overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #000;
    z-index: 1;
    cursor: pointer;
  }
  .nav_overlay.is_active {
    opacity: 0.4;
    visibility: visible;
  }
}

/* コンテンツ幅
-------------------------------------------*/
.inner_s {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner_s {
    padding: 0 6%;
  }
}

.inner {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner {
    padding: 0 6%;
  }
}

.inner_l {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner_l {
    padding: 0 6%;
  }
}

/*------------------------------------
clearfix 
------------------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clearfix {
  display: block;
}

/* End IE-mac */
.clear {
  clear: both;
}

/*------------------------------------
リンク 
------------------------------------*/
a {
  color: #333333;
  text-decoration: none;
}

@media screen and (min-width: 992px), print {
  /* ホバーアクション */
  .hover {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .hover:hover {
    opacity: 0.6 !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*------------------------------------
テキスト
------------------------------------*/
.bold {
  font-weight: bold;
}

/*------------------------------------
スマホ　非表示
------------------------------------*/
@media screen and (min-width: 992px), print {
  .disp_sp {
    display: none !important;
  }
}

/*------------------------------------
PC　非表示
------------------------------------*/
@media screen and (max-width: 991px) {
  .disp_pc {
    display: none !important;
  }
}

/*------------------------------------
margin
------------------------------------*/
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

/* メイン
-------------------------------------------*/
.main {
  padding-top: 90px;
}

@media screen and (max-width: 991px) {
  .main {
    padding-top: 60px;
  }
}

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

/* パララックス背景
-------------------------------------------*/
.parallax01 {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/img-common/bg_parallax_txt.png);
  background-position: right top 45%;
  background-repeat: no-repeat;
  background-size: 503px auto;
  animation: fadeIn 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .parallax01 {
    background-position: right top 40%;
    background-size: 73vw auto;
    right: -20vw;
  }
}

.parallax02 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/img-common/bg_parallax_txt.png);
  background-position: left bottom 10%;
  background-repeat: no-repeat;
  background-size: 503px auto;
  animation: fadeIn 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .parallax02 {
    background-position: left bottom 15%;
    background-size: 73vw auto;
    left: -30vw;
  }
}

/* header
-------------------------------------------*/
@media screen and (min-width: 992px), print {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    height: 90px;
    z-index: 100;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header.is_active {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.5);
  }
  .header_wrap {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header_inner {
    max-width: 1350px;
    min-width: 960px;
    padding: 0 50px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .header_logo {
    width: 200px;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .header_logo > div {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
  }
  .header_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .header .gnav {
    height: 100%;
  }
  .header .gnav > ul {
    display: flex;
    height: 100%;
  }
  .header .gnav > ul > li {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .header .gnav > ul > li:not(:last-child) {
    margin-right: 50px;
  }
  .header .gnav > ul > li > a {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 20px 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav > ul > li > a > span {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    padding: 8px 0;
  }
  .header .gnav > ul > li > a > span::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: -100%;
    bottom: 0;
    background-color: #333333;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav > ul > li > a:hover > span::after {
    left: 0;
  }
  .header .gnav > ul > li#nav_contact a {
    position: relative;
    padding-left: 35px;
  }
  .header .gnav > ul > li#nav_contact a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 23px;
    height: 15px;
    background: url(../img/img-common/icon_mail.png) left center no-repeat;
    background-size: contain;
  }
  .service #nav_service > a > span::after,
  .voice #nav_voice > a > span::after,
  .company #nav_company > a > span::after,
  .contact #nav_contact > a > span::after {
    left: 0;
  }
}

@media screen and (max-width: 991px) {
  .sp_nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
    background: #fff;
  }
  .sp_nav.is_active {
    background: rgba(255, 255, 255, 0.82);
  }
  .sp_nav_main {
    height: 60px;
    padding: 0 0 0 5%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
  }
  .sp_nav_logo {
    margin-right: auto;
  }
  .sp_nav_logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 140px;
  }
  .sp_nav_logo a > img {
    width: 100%;
  }
  .sp_nav_logo a > div {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
  }
  .sp_nav_mail {
    width: 25px;
    margin-right: 10px;
    margin-bottom: 5px;
  }
  .sp_nav_mail a {
    width: 100%;
    display: block;
  }
  .sp_nav_mail a img {
    width: 100%;
    display: block;
  }
  .sp_nav_wrap {
    position: relative;
    z-index: 2;
  }
  .sp_nav_close {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
    font-size: 1.2rem;
    padding: 12px 20px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    z-index: 2;
  }
  .sp_nav_close > span {
    position: relative;
    padding: 0 1.5em;
    line-height: 1;
    color: #666666;
    letter-spacing: 0.1em;
  }
  .sp_nav_close > span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 100%;
    background: #666666;
  }
  .sp_nav_close > span::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 100%;
    background: #666666;
  }
  .sp_nav #sp_menu_btn {
    width: 60px;
    height: 60px;
    display: block;
    left: 0;
    bottom: 0;
    z-index: 101;
    cursor: pointer;
    position: relative;
  }
  .sp_nav #sp_menu_btn span {
    width: 25px;
    height: 2px;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .sp_nav #sp_menu_btn div {
    display: block;
    text-align: center;
    margin: auto;
    position: absolute;
    color: #000;
    left: 0;
    right: 0;
    top: 30px;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .sp_nav #sp_menu_btn span:nth-of-type(1) {
    top: 16px;
  }
  .sp_nav #sp_menu_btn span:nth-of-type(2) {
    top: 24px;
  }
  .sp_nav #sp_menu_btn.is_active span:nth-of-type(1) {
    transform: translateY(4px) rotate(-35deg);
  }
  .sp_nav #sp_menu_btn.is_active span:nth-of-type(2) {
    transform: translateY(-4px) rotate(35deg);
  }
  .sp_nav #sp_menu_block {
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #fff;
    padding: 60px 6% 35px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .sp_nav #sp_menu_block::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
    background: url(../img/img-common/bg_spnav01.png) right top 15% no-repeat;
    background-size: contain;
    width: 50%;
    height: 100%;
    pointer-events: none;
  }
  .sp_nav #sp_menu_block::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    background: url(../img/img-common/bg_spnav02.png) right top 45% no-repeat;
    background-size: contain;
    width: 30%;
    height: 100%;
    pointer-events: none;
  }
  .sp_nav #sp_menu_block ul.nav01 {
    padding: 20px 0 0;
    position: relative;
    z-index: 2;
  }
  .sp_nav #sp_menu_block ul.nav01 > li {
    border-bottom: 1px solid #ced1d8;
  }
  .sp_nav #sp_menu_block ul.nav01 > li > a {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    padding: 18px 0;
    letter-spacing: 0.1em;
  }
  .sp_nav #sp_menu_block ul.nav01 > li > a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 15px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #2465b9;
    border-right: 2px solid #2465b9;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .sp_nav #sp_menu_block ul.nav01 > li > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    right: 15px;
    margin: auto;
    width: 16px;
    height: 2px;
    background: #2465b9;
  }
  .sp_nav #sp_menu_block ul.nav02 {
    margin-top: 40px;
  }
  .sp_nav #sp_menu_block ul.nav02 li + li {
    margin-top: 15px;
  }
  .sp_nav #sp_menu_block .nav01 li,
  .sp_nav #sp_menu_block .nav02 li,
  .sp_nav #sp_menu_block .sp_nav_close {
    transform: translateY(10px);
    transition: all .25s ease;
    opacity: 0;
  }
  .sp_nav #sp_menu_block .nav01 li:nth-child(1) {
    transition-delay: .6s;
  }
  .sp_nav #sp_menu_block .nav01 li:nth-child(2) {
    transition-delay: .7s;
  }
  .sp_nav #sp_menu_block .nav01 li:nth-child(3) {
    transition-delay: .8s;
  }
  .sp_nav #sp_menu_block .nav02 li:nth-child(1) {
    transition-delay: .9s;
  }
  .sp_nav #sp_menu_block .nav02 li:nth-child(2) {
    transition-delay: 1s;
  }
  .sp_nav #sp_menu_block .nav02 li:nth-child(3) {
    transition-delay: 1.1s;
  }
  .sp_nav #sp_menu_block .nav02 li:nth-child(4) {
    transition-delay: 1.2s;
  }
  .sp_nav #sp_menu_block .sp_nav_close {
    transition-delay: 1.3s;
  }
  .sp_nav #sp_menu_block.is_active .nav01 li,
  .sp_nav #sp_menu_block.is_active .nav02 li,
  .sp_nav #sp_menu_block.is_active .sp_nav_close {
    transform: translateY(0);
    opacity: 1;
  }
  .sp_nav #sp_menu_block.is_active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/*===================================
  
  ボタン

===================================*/
.btn-magazine {
  width: 75%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  margin: 0 auto;
  color: #fff !important;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  background: #fc4f00;
  text-align: center;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}

.btn-magazine > span {
  text-align: left;
  padding: 0px 0px 0.2em 32px;
  background: url(../img/img-common/icon_magazine.png) no-repeat left center;
  background-size: 22px auto;
  width: 90%;
  margin-right: -0.5em;
}

.btn-consul {
  width: 100%;
  max-width: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  font-size: 1.9rem;
  font-weight: 700;
  background: #222222;
  border: 2px solid #222222;
  padding: 12px 0;
  text-align: center;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .btn-consul {
    width: 75%;
    margin: 0 auto;
    max-width: 300px;
    height: 55px;
    font-size: 1.6rem;
  }
}

.btn-consul > span {
  text-align: left;
  padding: 0px 0px 0px 60px;
  background: url(../img/img-common/icon_consul_w.png) no-repeat left center;
  background-size: 35px auto;
  width: 13em;
  margin-right: -1em;
  color: #fff !important;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .btn-consul > span {
    padding: 0px 0px 0px 50px;
    background-size: 24px auto;
  }
}

.btn-consul > span > b {
  font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
  .btn-consul > span > b {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 992px), print {
  .btn-consul {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn-consul > span {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn-consul:hover {
    background: #fff;
  }
  .btn-consul:hover > span {
    color: #222 !important;
    background-image: url(../img/img-common/icon_consul.png);
  }
}

.btn-newsletter {
  width: 100%;
  max-width: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  font-size: 1.9rem;
  font-weight: 700;
  background: #222222;
  border: 2px solid #222222;
  padding: 12px 0;
  text-align: center;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .btn-newsletter {
    width: 75%;
    margin: 0 auto;
    max-width: 300px;
    height: 55px;
    font-size: 1.6rem;
  }
}

.btn-newsletter > span {
  text-align: left;
  padding: 0px 0px 0px 60px;
  background: url(../img/img-common/icon_register_w.png) no-repeat left center;
  background-size: 35px auto;
  width: 13em;
  margin-right: -1em;
  color: #fff !important;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .btn-newsletter > span {
    padding: 0px 0px 0px 50px;
    background-size: 24px auto;
  }
}

.btn-newsletter > span > b {
  font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
  .btn-newsletter > span > b {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 992px), print {
  .btn-newsletter {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn-newsletter > span {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn-newsletter:hover {
    background: #fff;
  }
  .btn-newsletter:hover > span {
    color: #222 !important;
    background-image: url(../img/img-common/icon_register.png);
  }
}

.btn-contact {
  width: 100%;
  max-width: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  font-size: 1.9rem;
  font-weight: 700;
  background: #ffe113;
  padding: 12px 0;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
  border: 2px solid #ffe113;
}

@media screen and (max-width: 991px) {
  .btn-contact {
    width: 75%;
    margin: 0 auto;
    max-width: 300px;
    height: 55px;
    font-size: 1.6rem;
  }
}

.btn-contact > span {
  text-align: left;
  padding: 0px 0px 0px 60px;
  background: url(../img/img-common/icon_mail.png) no-repeat left center;
  background-size: 34px auto;
  width: 10em;
  margin-right: -1em;
  color: #6b6b6b !important;
}

@media screen and (max-width: 991px) {
  .btn-contact > span {
    padding: 0px 0px 0px 40px;
    background-size: 24px auto;
  }
}

@media screen and (min-width: 992px), print {
  .btn-contact {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn-contact:hover {
    background: #fff;
  }
}

/*===================================
  
  コンバージョン

===================================*/
.cvBlock {
  height: 330px;
  position: relative;
  z-index: 2;
  background: url(../img/img-common/bg_contact.png) center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .cvBlock {
    padding: 40px 0 50px;
    height: auto;
  }
}

.cvBlock-ttl {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .cvBlock-ttl {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 20px;
  }
}

.cvBlock-ttl > span {
  font-size: 4.8rem;
  color: #2465b9;
}

@media screen and (max-width: 991px) {
  .cvBlock-ttl > span {
    font-size: 3.4rem;
  }
}

.cvBlock dl dd p {
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .cvBlock dl dd p {
    text-align: left;
    font-size: 1.3rem;
  }
}

.cvBlock dl dd ul {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

@media screen and (max-width: 991px) {
  .cvBlock dl dd ul {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
}

.cvBlock dl dd ul li {
  width: 360px;
}

@media screen and (max-width: 991px) {
  .cvBlock dl dd ul li {
    width: 100%;
  }
}

.cvBlock dl dd ul li + li {
  margin-left: 50px;
}

@media screen and (max-width: 991px) {
  .cvBlock dl dd ul li + li {
    margin: 20px 0 0 0;
  }
}

/*===================================
  
  フッター

===================================*/
.footer {
  background: #000;
  padding: 54px 0 0;
  overflow: hidden;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 30px 0 70px;
  }
}

@media screen and (max-width: 991px) {
  .footer .inner {
    padding: 0 10%;
  }
}

.footer_logo {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .footer_logo {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer_logo a {
  width: 180px;
  display: block;
}

@media screen and (max-width: 991px) {
  .footer_logo a {
    width: 150px;
    margin: 0 auto 25px;
  }
}

.footer_logo a img {
  width: 100%;
}

.footer_logo .txt {
  margin-left: 30px;
}

@media screen and (max-width: 991px) {
  .footer_logo .txt {
    margin-left: 0;
  }
}

.footer_logo .txt > span, .footer_logo .txt > b {
  display: block;
  line-height: 1;
  color: #fff;
}

.footer_logo .txt > span {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .footer_logo .txt > span {
    font-size: 1.3rem;
  }
}

.footer_logo .txt > b {
  font-size: 1.8rem;
  font-weight: 700;
  padding-top: 8px;
}

@media screen and (max-width: 991px) {
  .footer_logo .txt > b {
    font-size: 1.7rem;
  }
}

.footer_address {
  margin: 50px 0 24px;
}

@media screen and (max-width: 991px) {
  .footer_address {
    margin: 30px 0 15px;
    font-size: 1.3rem;
  }
}

.footer_no ul {
  display: flex;
}

.footer_no ul li + li {
  margin-left: 40px;
}

@media screen and (max-width: 991px) {
  .footer_no ul li + li {
    margin-left: 20px;
  }
}

.footer_no ul li > a, .footer_no ul li > div {
  color: #fff;
  font-size: 1.8rem;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .footer_no ul li > a, .footer_no ul li > div {
    font-size: 1.4rem;
  }
}

.footer_no ul li.--tel a {
  position: relative;
  padding-left: 32px;
}

@media screen and (max-width: 991px) {
  .footer_no ul li.--tel a {
    padding-left: 25px;
  }
}

.footer_no ul li.--tel a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 18px;
  height: 31px;
  background: url(../img/img-common/icon_tel.png) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .footer_no ul li.--tel a::before {
    width: 14px;
    height: 24.111px;
  }
}

.footer_no ul li.--fax > div {
  position: relative;
  padding-left: 35px;
}

@media screen and (max-width: 991px) {
  .footer_no ul li.--fax > div {
    padding-left: 30px;
  }
}

.footer_no ul li.--fax > div::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(../img/img-common/icon_fax.png) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .footer_no ul li.--fax > div::before {
    width: 20px;
    height: 20px;
  }
}

.footer_wrap {
  position: relative;
}

.footer_wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../img/img-common/bg_footer.png) left center no-repeat;
  background-size: contain;
  width: 259px;
  height: 243px;
}

@media screen and (max-width: 991px) {
  .footer_wrap::before {
    width: 220px;
    height: 206.409px;
    right: -12%;
  }
}

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

.footer_copyright {
  text-align: right;
  margin-top: 50px;
  padding-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .footer_copyright {
    text-align: center;
    padding-bottom: 15px;
    margin-top: 30px;
  }
}

.footer_copyright small {
  font-size: 1.2rem;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .footer_copyright small {
    font-size: 1rem;
  }
}

/*===================================
  
  固定ナビ

===================================*/
.fixNav {
  position: fixed;
  right: 0;
  width: 90px;
  bottom: 25%;
  z-index: 9998;
  opacity: 0;
  transition: opacity .4s;
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
  .fixNav {
    width: 81px;
  }
}

@media screen and (max-width: 991px) {
  .fixNav {
    bottom: 0;
    height: 70px;
    width: 100%;
  }
}

.fixNav.is_active {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .fixNav ul {
    display: flex;
    height: 100%;
  }
}

@media screen and (max-width: 991px) {
  .fixNav ul li {
    width: 33.33333333333333%;
  }
}

.fixNav ul li a {
  font-weight: 700;
  width: 100%;
  height: 100px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
  border: 2px solid #222;
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
  .fixNav ul li a {
    font-size: 1.3rem;
    height: 90px;
  }
}

@media screen and (max-width: 991px) {
  .fixNav ul li a {
    height: 100%;
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 992px), print {
  .fixNav ul li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

.fixNav ul li a > span {
  position: relative;
  padding-top: 35px;
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
  .fixNav ul li a > span {
    padding-top: 33px;
  }
}

@media screen and (max-width: 991px) {
  .fixNav ul li a > span {
    padding-top: 30px;
  }
}

@media screen and (min-width: 992px), print {
  .fixNav ul li a > span::before {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

.fixNav ul li a > span b {
  letter-spacing: -0.01em;
}

@media screen and (min-width: 992px), print {
  .fixNav ul li a:hover {
    background: #fff !important;
    color: #222;
  }
}

@media screen and (min-width: 992px), print {
  .fixNav ul li + li {
    margin-top: 10px;
  }
}

@media screen and (max-width: 991px) {
  .fixNav ul li + li {
    border-left: 1px solid #fff;
  }
}

.fixNav ul li.--register a > span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: -5px;
  margin: auto;
  background: url(../img/img-common/icon_register_w.png) left top no-repeat;
  background-size: contain;
  width: 33px;
  height: 23px;
}

@media screen and (max-width: 991px) {
  .fixNav ul li.--register a > span::before {
    width: 30px;
    height: 20.909px;
  }
}

@media screen and (min-width: 992px), print {
  .fixNav ul li.--register a:hover > span::before {
    background-image: url(../img/img-common/icon_register.png);
  }
}

.fixNav ul li.--consul a {
  letter-spacing: 0.1em;
}

.fixNav ul li.--consul a > span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/img-common/icon_consul_w.png) left top no-repeat;
  background-size: contain;
  width: 28px;
  height: 23px;
}

@media screen and (max-width: 991px) {
  .fixNav ul li.--consul a > span::before {
    width: 26px;
    height: 21.357px;
  }
}

@media screen and (min-width: 992px), print {
  .fixNav ul li.--consul a:hover > span::before {
    background-image: url(../img/img-common/icon_consul.png);
  }
}

.fixNav ul li.--magazine a {
  letter-spacing: 0.1em;
  background: #fc4f00;
  border-color: #fc4f00;
}

.fixNav ul li.--magazine a > span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/img-common/icon_magazine.png) left top no-repeat;
  background-size: contain;
  width: 25px;
  height: 27px;
}

@media screen and (max-width: 991px) {
  .fixNav ul li.--magazine a > span::before {
    width: 25px;
    height: 27px;
    top: -3px;
  }
}

@media screen and (min-width: 992px), print {
  .fixNav ul li.--magazine a:hover {
    color: #fc4f00;
  }
}

/*===================================
  
  ページトップ

===================================*/
.pagetop {
  width: 56px;
  height: 56px;
  position: fixed;
  bottom: 50px;
  right: 20px;
  transition: opacity .4s;
  opacity: 0;
  cursor: pointer;
  z-index: 99;
}

.pagetop.is_active {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .pagetop {
    width: 40px;
    height: 40px;
    bottom: 90px;
    right: 15px;
  }
}

/* アコーディオン */
.js_ac_box {
  height: 0;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  visibility: hidden;
  overflow: hidden;
}

.is_open + .js_ac_box {
  height: auto;
  opacity: 1;
  visibility: visible;
}
