@charset "UTF-8";
/* reset */
/* ============================================ */
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

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

caption {
  text-align: left;
}

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

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* サイト全体の基本設定 */
/* ============================================ */
html {
  font-size: 62.5%;
}

body {
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.92;
  background: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  transition: 0.4s;
}

img {
  max-width: 100%;
}

/* mixin */
/* ============================================ */
/* l-wrap */
/* ============================================ */
.l-wrap {
  overflow: hidden;
  position: relative;
}

/* l-main */
/* ============================================ */
.l-main {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 970px) {
  .l-main {
    width: 100%;
    margin-left: 0;
  }
}

/* l-inner */
/* ============================================ */
.l-inner {
  padding: 0 50px;
  margin: 0 auto;
  max-width: 1080px;
  width: 100%;
}
@media screen and (max-width: 970px) {
  .l-inner {
    padding: 0 5vw;
  }
}
.l-inner.v-wide {
  max-width: 1220px;
}

body {
  width: 100%;
}
body.is-open {
  overflow: hidden;
}

/* l-header */
/* ============================================ */
.l-header {
  background: #fff;
  width: 100%;
}
@media screen and (max-width: 970px) {
  .l-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  padding: 8px 18px 8px 22px;
}
@media screen and (max-width: 970px) {
  .l-header__inner {
    padding: 5px 0 5px 10px;
    height: 50px;
  }
}
@media screen and (max-width: 1150px) {
  .l-header__logo {
    width: 170px;
  }
}
@media screen and (max-width: 970px) {
  .l-header__logo {
    width: 138px;
  }
}
.l-header__lead {
  margin-left: 22px;
}
@media screen and (max-width: 1150px) {
  .l-header__lead {
    width: 200px;
  }
}
@media screen and (max-width: 970px) {
  .l-header__lead {
    margin-left: 6px;
    width: 136px;
  }
}
.l-header__inquiry {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.l-header__tel {
  line-height: 1;
}
@media screen and (max-width: 970px) {
  .l-header__tel {
    display: none;
  }
}
.l-header__tel-num {
  color: #ea211d;
  font-size: 23px;
  font-weight: bold;
  background: url(../img/icon_tel_red.png) no-repeat left center;
  background-size: 28px auto;
  padding-left: 34px;
  letter-spacing: 0;
}
.l-header__tel-time {
  font-size: 12px;
  margin-top: 4px;
}
.l-header__link {
  display: flex;
  margin-left: 5px;
}
@media screen and (max-width: 970px) {
  .l-header__link {
    display: none;
  }
}
.l-header__link-btn {
  margin-left: 8px;
  width: 180px;
}
@media screen and (max-width: 1150px) {
  .l-header__link-btn {
    width: 150px;
  }
}
@media screen and (max-width: 970px) {
  .l-header__menuWrap {
    background: #fff;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 0;
    height: calc(100vh - 49px);
    height: calc(100dvh - 49px);
    transition: 0.4s;
    width: 100%;
    z-index: 10;
  }
}
.l-header__menuWrap.is-open {
  visibility: visible;
  opacity: 1;
}
.l-header__menuList {
  background: #e6e6e6;
  display: flex;
  padding: 0 40px;
  width: 100%;
}
@media screen and (max-width: 970px) {
  .l-header__menuList {
    background: #fff;
    flex-direction: column;
    margin-top: 10px;
    padding: 0;
  }
}
.l-header__menuList li {
  border-left: 1px solid #fff;
  line-height: 1;
  text-align: center;
  width: 20%;
}
.l-header__menuList li:last-of-type {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 970px) {
  .l-header__menuList li {
    width: 100%;
  }
  .l-header__menuList li:not(:last-of-type) {
    border-bottom: 1px solid #e7e6e5;
  }
}
.l-header__menuList li a {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}
@media screen and (max-width: 970px) {
  .l-header__menuList li a {
    font-size: 16px;
    font-weight: 500;
    justify-content: flex-start;
    padding: 5px 30px 5px 52px;
    min-height: 46px;
    position: relative;
  }
  .l-header__menuList li a::before {
    content: "";
    background: url(../img/icon_arrow_red.png) no-repeat center;
    background-size: 100% auto;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translate(0, -50%);
    height: 12px;
    width: 12px;
  }
}
.l-header__menuList li a:hover {
  background: #d3231d;
  color: #fff;
}
.l-header__menuSp {
  margin-top: auto;
  width: 100%;
  display: none;
}
@media screen and (max-width: 970px) {
  .l-header__menuSp {
    display: block;
  }
}
.l-header__menuTrugger {
  display: none;
  background: #d0211d;
  height: 50px;
  width: 50px;
  align-items: end;
  justify-content: center;
  line-height: 1;
  padding-bottom: 9px;
  letter-spacing: 1.3px;
  position: relative;
}
@media screen and (max-width: 970px) {
  .l-header__menuTrugger {
    display: flex;
  }
}
.l-header__menuTrugger span {
  background: #fff;
  height: 1px;
  width: 25px;
  left: 12px;
  top: 17px;
  position: absolute;
  transition: 0.4s;
}
.l-header__menuTrugger span:nth-child(2) {
  top: 25px;
}
.l-header__menuTrugger span:nth-child(3) {
  top: 33px;
}
.l-header__menuTrugger.is-open span:nth-child(1) {
  transform: rotate(45deg);
  top: 25px;
}
.l-header__menuTrugger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__menuTrugger.is-open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 25px;
}

/* l-footer */
/* ============================================ */
.l-footer {
  background: #fff;
}
@media screen and (max-width: 970px) {
  .l-footer {
    padding-bottom: 62px;
  }
}
.l-footer__message {
  background: #d3231d;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 45px 20px;
  letter-spacing: 0;
  line-height: 1.7222;
}
@media screen and (max-width: 768px) {
  .l-footer__message {
    padding: 54px 20px 56px;
  }
}
.l-footer__message span {
  color: #ffff00;
}
.l-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px 40px 40px 40px;
  margin: 0 auto;
  max-width: 1060px;
  width: 100%;
}
@media screen and (max-width: 970px) {
  .l-footer__inner {
    padding: 50px 30px 40px 30px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    flex-direction: column;
    padding: 55px 20px 35px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    padding: 0;
    text-align: center;
    width: 100%;
  }
}
.l-footer__logo-lead {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .l-footer__logo-lead {
    margin-top: 32px;
  }
}
.l-footer__company {
  width: 44%;
}
@media screen and (max-width: 970px) {
  .l-footer__company {
    width: 46%;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__company {
    margin: 30px auto 0;
    max-width: 320px;
    width: 100%;
  }
}
.l-footer__company dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 1.625;
}
@media screen and (max-width: 970px) {
  .l-footer__company dl {
    font-size: 14px;
    line-height: 1.5714;
  }
}
.l-footer__company dl dt {
  margin-top: 8px;
  width: 100px;
}
@media screen and (max-width: 768px) {
  .l-footer__company dl dt {
    margin-top: 10px;
    width: 75px;
  }
}
.l-footer__company dl dd {
  margin-top: 8px;
  width: calc(100% - 100px);
}
@media screen and (max-width: 768px) {
  .l-footer__company dl dd {
    margin-top: 10px;
    width: calc(100% - 75px);
  }
}
.l-footer__company dl dd a {
  text-decoration: underline;
}
.l-footer__company dl dd a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.l-footer__copy {
  background: #202020;
}
.l-footer__copy p {
  color: #fff;
  font-size: 12px;
  padding: 8px 40px;
  margin: 0 auto;
  text-align: right;
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 970px) {
  .l-footer__copy p {
    font-size: 10px;
    padding: 16px 20px;
    text-align: center;
  }
}

/* title */
/* ============================================ */
.c-ttl01 {
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-ttl01 {
    line-height: 1.6;
  }
}
.c-ttl01__main {
  font-size: 36px;
  font-weight: bold;
}
.c-ttl01__main span {
  color: #d3211d;
  display: block;
  font-size: 14px;
}
.c-ttl01__txt {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .c-ttl01__txt {
    font-size: 16px;
  }
}

/* btn */
/* ============================================ */
.c-btn01 {
  position: relative;
}
.c-btn01::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  border-radius: 10rem;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 970px) {
  .c-btn01::before {
    top: 3px;
  }
}
.c-btn01 a {
  border-radius: 10rem;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 10px rgba(34, 23, 20, 0.3);
  position: relative;
  height: 46px;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}
.c-btn01 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -55%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.c-btn01 a::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  background: url(../img/icon_arrow_white.png) no-repeat center;
  background-size: 100% auto;
  transform: translate(0, -50%);
  height: 12px;
  width: 12px;
}
.c-btn01 a:hover::before {
  animation: shine 0.8s;
}
@keyframes shine {
  100% {
    left: 105%;
  }
}
.c-btn01.v-experience::before {
  background: linear-gradient(to top, #940100 30%, #f75700 100%);
}
.c-btn01.v-experience a {
  background: linear-gradient(to top, #cd0100 30%, #f75700 100%);
}
.c-btn01.v-document::before {
  background: linear-gradient(to top, #ca3e00 30%, #f79100 100%);
}
.c-btn01.v-document a {
  background: linear-gradient(to top, #ff6000 30%, #f7ac00 100%);
}

/* 調整用パーツ */
/* ============================================ */
/* media */
@media screen and (max-width: 768px) {
  .u-only-pc {
    display: none;
  }
}

.u-only-middle {
  display: none;
}
@media screen and (max-width: 970px) {
  .u-only-middle {
    display: block;
  }
}

.u-only-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-only-sp {
    display: block;
  }
}

/* margin */
.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mt110 {
  margin-top: 110px !important;
}

.u-mt120 {
  margin-top: 120px !important;
}

.u-mt130 {
  margin-top: 130px !important;
}

.u-mt135 {
  margin-top: 135px !important;
}

.u-mt140 {
  margin-top: 140px !important;
}

.u-mt145 {
  margin-top: 145px !important;
}

.u-mt150 {
  margin-top: 150px !important;
}

.u-mt160 {
  margin-top: 160px !important;
}

.u-mt170 {
  margin-top: 170px !important;
}

.u-mt180 {
  margin-top: 180px !important;
}

.u-mt190 {
  margin-top: 190px !important;
}

.u-mt195 {
  margin-top: 195px !important;
}

.u-mt200 {
  margin-top: 200px !important;
}

@media screen and (max-width: 970px) {
  .u-mt0-middle {
    margin-top: 0 !important;
  }
  .u-mt5-middle {
    margin-top: 5px !important;
  }
  .u-mt10-middle {
    margin-top: 10px !important;
  }
  .u-mt15-middle {
    margin-top: 15px !important;
  }
  .u-mt20-middle {
    margin-top: 20px !important;
  }
  .u-mt25-middle {
    margin-top: 25px !important;
  }
  .u-mt30-middle {
    margin-top: 30px !important;
  }
  .u-mt35-middle {
    margin-top: 35px !important;
  }
  .u-mt40-middle {
    margin-top: 40px !important;
  }
  .u-mt45-middle {
    margin-top: 45px !important;
  }
  .u-mt50-middle {
    margin-top: 50px !important;
  }
  .u-mt55-middle {
    margin-top: 55px !important;
  }
  .u-mt60-middle {
    margin-top: 60px !important;
  }
  .u-mt65-middle {
    margin-top: 65px !important;
  }
  .u-mt70-middle {
    margin-top: 70px !important;
  }
  .u-mt75-middle {
    margin-top: 75px !important;
  }
  .u-mt80-middle {
    margin-top: 80px !important;
  }
  .u-mt85-middle {
    margin-top: 85px !important;
  }
  .u-mt90-middle {
    margin-top: 90px !important;
  }
  .u-mt95-middle {
    margin-top: 95px !important;
  }
  .u-mt100-middle {
    margin-top: 100px !important;
  }
  .u-mt110-middle {
    margin-top: 110px !important;
  }
  .u-mt120-middle {
    margin-top: 120px !important;
  }
  .u-mt130-middle {
    margin-top: 130px !important;
  }
  .u-mt140-middle {
    margin-top: 140px !important;
  }
  .u-mt150-middle {
    margin-top: 150px !important;
  }
  .u-mt160-middle {
    margin-top: 160px !important;
  }
  .u-mt170-middle {
    margin-top: 170px !important;
  }
  .u-mt180-middle {
    margin-top: 180px !important;
  }
  .u-mt190-middle {
    margin-top: 190px !important;
  }
  .u-mt200-middle {
    margin-top: 200px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt0-sp {
    margin-top: 0 !important;
  }
  .u-mt5-sp {
    margin-top: 5px !important;
  }
  .u-mt10-sp {
    margin-top: 10px !important;
  }
  .u-mt15-sp {
    margin-top: 15px !important;
  }
  .u-mt20-sp {
    margin-top: 20px !important;
  }
  .u-mt25-sp {
    margin-top: 25px !important;
  }
  .u-mt30-sp {
    margin-top: 30px !important;
  }
  .u-mt35-sp {
    margin-top: 35px !important;
  }
  .u-mt40-sp {
    margin-top: 40px !important;
  }
  .u-mt45-sp {
    margin-top: 45px !important;
  }
  .u-mt50-sp {
    margin-top: 50px !important;
  }
  .u-mt55-sp {
    margin-top: 55px !important;
  }
  .u-mt60-sp {
    margin-top: 60px !important;
  }
  .u-mt65-sp {
    margin-top: 65px !important;
  }
  .u-mt70-sp {
    margin-top: 70px !important;
  }
  .u-mt75-sp {
    margin-top: 75px !important;
  }
  .u-mt80-sp {
    margin-top: 80px !important;
  }
  .u-mt85-sp {
    margin-top: 85px !important;
  }
  .u-mt90-sp {
    margin-top: 90px !important;
  }
  .u-mt95-sp {
    margin-top: 95px !important;
  }
  .u-mt100-sp {
    margin-top: 100px !important;
  }
  .u-mt110-sp {
    margin-top: 110px !important;
  }
  .u-mt120-sp {
    margin-top: 120px !important;
  }
  .u-mt130-sp {
    margin-top: 130px !important;
  }
  .u-mt140-sp {
    margin-top: 140px !important;
  }
  .u-mt150-sp {
    margin-top: 150px !important;
  }
  .u-mt160-sp {
    margin-top: 160px !important;
  }
  .u-mt170-sp {
    margin-top: 170px !important;
  }
  .u-mt180-sp {
    margin-top: 180px !important;
  }
  .u-mt190-sp {
    margin-top: 190px !important;
  }
  .u-mt200-sp {
    margin-top: 200px !important;
  }
}
/* text */
.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-text-center {
  text-align: center;
}

.u-text-color-red {
  color: #D51A19;
}

/* maxwidth */
.u-max-width1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.u-max-width800 {
  max-width: 800px;
  margin: 0 auto;
}

/* bg */
.u-bg-color01 {
  background: #e5f3f7 !important;
}

/* 共通パーツ */
/* ============================================ */
.p-inquiry {
  background: linear-gradient(to bottom, #20254f 40%, #002e88 100%);
}
@media screen and (max-width: 768px) {
  .p-inquiry {
    background: #fff;
  }
}
.p-inquiry__inner {
  padding: 30px 20px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-inquiry__inner {
    background: linear-gradient(to bottom, #20254f 40%, #002e88 100%);
    flex-direction: column;
    padding: 30px 20px 32px;
  }
}
.p-inquiry__achievement {
  order: 2;
  margin-top: 12px;
  margin-left: 40px;
  width: 274px;
}
@media screen and (max-width: 768px) {
  .p-inquiry__achievement {
    order: 1;
    margin: 0 auto 20px;
    width: 270px;
  }
}
.p-inquiry__left {
  width: 410px;
}
@media screen and (max-width: 768px) {
  .p-inquiry__left {
    order: 2;
    width: 100%;
  }
}
.p-inquiry__ttl {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-inquiry__ttl {
    font-size: 18px;
  }
}
.p-inquiry__list {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-inquiry__list {
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
  }
}
.p-inquiry__list-btn {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .p-inquiry__list-btn {
    margin: 18px auto 0;
    width: 242px;
  }
  .p-inquiry__list-btn:first-of-type {
    margin-top: 8px;
  }
}
.p-inquiry__list-btn a {
  font-size: 21px;
  height: 51px;
}
.p-inquiry__list-btn a::after {
  height: 13px;
  width: 13px;
}
.p-inquiry__tel {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 22px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-inquiry__tel {
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
  }
}
.p-inquiry__tel-num {
  background: url(../img/icon_tel_yellow.png) no-repeat left 3px;
  background-size: 28px auto;
  color: #ffffad;
  font-size: 22px;
  font-weight: bold;
  padding-left: 34px;
}
@media screen and (max-width: 768px) {
  .p-inquiry__tel-num {
    background-size: 38px auto;
    font-size: 30px;
    padding-left: 45px;
  }
}
.p-inquiry__tel-time {
  color: #fff;
  font-size: 12px;
  margin-left: 12px;
}
@media screen and (max-width: 768px) {
  .p-inquiry__tel-time {
    font-size: 14px;
    margin-top: 10px;
  }
}
.p-inquiry__message {
  background: linear-gradient(to bottom, #20254f 40%, #002e88 100%);
  padding: 18px 20px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-inquiry__message {
    flex-direction: column;
    align-items: center;
    padding: 16px 20px 20px 20px;
  }
}
.p-inquiry__message-txt {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-inquiry__message-txt {
    font-size: 16px;
  }
}
.p-inquiry__message-list {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .p-inquiry__message-list {
    margin: 2px 0 0;
  }
}
.p-inquiry__message-list li {
  border-radius: 2rem;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin-left: 2px;
  line-height: 1.6;
  width: 72px;
}
.p-inquiry__message-list li:nth-of-type(1) {
  background: #e56f00;
}
@media screen and (max-width: 768px) {
  .p-inquiry__message-list li:nth-of-type(1) {
    margin-left: 0;
  }
}
.p-inquiry__message-list li:nth-of-type(2) {
  background: #004b98;
}
.p-inquiry__message-list li:nth-of-type(3) {
  background: #58ac31;
}
@media screen and (max-width: 768px) {
  .p-inquiry.v-header .p-inquiry__inner {
    padding: 15px 20px 25px;
  }
}

/* index */
/* ============================================ */
.p-kv {
  position: relative;
}
.p-kv::before {
  content: "";
  background: url(../img/kv_img_pc.png) no-repeat center bottom;
  background-size: 100% auto;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 47.8333vw;
  width: 47.8333vw;
}
@media screen and (max-width: 768px) {
  .p-kv::before {
    background: url(../img/kv_img_sp.png) no-repeat center bottom;
    background-size: 100% auto;
    right: auto;
    left: 0;
    bottom: 19.7vw;
    height: 62.9333vw;
    width: 81.3333vw;
  }
}
.p-kv__ttl {
  padding: 3.6vw 0 2vw 9.5vw;
}
@media screen and (max-width: 768px) {
  .p-kv__ttl {
    padding: 7.6vw 0 4vw;
    text-align: center;
  }
}
.p-kv__ttl img {
  width: 47vw;
}
@media screen and (max-width: 768px) {
  .p-kv__ttl img {
    width: 90vw;
  }
}
.p-kv__message {
  background: #dcd2bf url(../img/kv_bg.png);
  background-size: 10px auto;
  padding: 2.1vw 0 2.5vw 9.8vw;
}
@media screen and (max-width: 768px) {
  .p-kv__message {
    background: none;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-kv__message-txt {
    padding: 4.1vw 0;
    order: 2;
    text-align: center;
  }
}
.p-kv__message-txt img {
  width: 43.6666vw;
}
@media screen and (max-width: 768px) {
  .p-kv__message-txt img {
    width: 82.3999vw;
  }
}
.p-kv__message-one {
  display: flex;
  align-items: center;
  margin-top: 1.3vw;
}
@media screen and (max-width: 768px) {
  .p-kv__message-one {
    background: #dcd2bf url(../img/kv_bg.png);
    background-size: 10px auto;
    flex-direction: column;
    justify-content: center;
    padding: 7vw 0 9vw 50vw;
  }
}
.p-kv__message-one span:first-of-type {
  margin-right: 0.6vw;
}
.p-kv__message-one span:first-of-type img {
  width: 13.25vw;
}
@media screen and (max-width: 768px) {
  .p-kv__message-one span:first-of-type img {
    width: 39.7333vw;
  }
}
@media screen and (max-width: 768px) {
  .p-kv__message-one span:nth-of-type(2) {
    margin-top: 3vw;
  }
}
.p-kv__message-one span:nth-of-type(2) img {
  width: 28.8333vw;
}
@media screen and (max-width: 768px) {
  .p-kv__message-one span:nth-of-type(2) img {
    width: 37.6vw;
  }
}

.p-worry {
  padding: 52px 0 48px;
}
@media screen and (max-width: 970px) {
  .p-worry {
    padding: 35px 0 32px;
  }
}
.p-worry__ttl {
  text-align: center;
}
.p-worry__ttl-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5563;
}
.p-worry__ttl-sub span {
  color: #d0211d;
}
.p-worry__ttl-main {
  font-size: 33px;
  font-weight: bold;
}
@media screen and (max-width: 970px) {
  .p-worry__ttl-main {
    font-size: 28px;
    margin-top: 3px;
  }
}
.p-worry__listWrap {
  background: #f0ece6;
  font-size: 16px;
  font-weight: 500;
  margin: 12px auto 0;
  max-width: 780px;
  padding: 32px 30px 32px 0;
  position: relative;
}
@media screen and (max-width: 970px) {
  .p-worry__listWrap {
    padding: 30px 30px 190px;
  }
}
.p-worry__listWrap::before {
  content: "";
  background: url(../img/worry_list_img.png) no-repeat center;
  background-size: 100% auto;
  position: absolute;
  left: 72px;
  bottom: -25px;
  height: 203px;
  width: 228px;
}
@media screen and (max-width: 970px) {
  .p-worry__listWrap::before {
    bottom: -38px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.p-worry__list {
  letter-spacing: 0;
  margin-left: auto;
  width: 54.5%;
}
@media screen and (max-width: 970px) {
  .p-worry__list {
    max-inline-size: max-content;
    margin-inline: auto;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-worry__list {
    margin: 0 auto;
    width: 278px;
  }
}
.p-worry__list-item {
  position: relative;
  padding-left: 25px;
}
@media screen and (max-width: 970px) {
  .p-worry__list-item {
    font-size: 18px;
    line-height: 1.333;
  }
}
.p-worry__list-item:not(:first-of-type) {
  margin-top: 5px;
}
@media screen and (max-width: 970px) {
  .p-worry__list-item:not(:first-of-type) {
    margin-top: 15px;
  }
}
.p-worry__list-item::before {
  content: "";
  background: url(../img/icon_check.png) no-repeat center;
  background-size: 100% auto;
  position: absolute;
  top: 8px;
  left: 0;
  height: 16px;
  width: 16px;
}
@media screen and (max-width: 970px) {
  .p-worry__list-item::before {
    top: 4px;
  }
}
.p-worry__list-item em {
  color: #d0231d;
  font-style: normal;
}
.p-worry__proposal {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 970px) {
  .p-worry__proposal {
    margin-top: 60px;
  }
}
.p-worry__proposal-txt1 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 970px) {
  .p-worry__proposal-txt1 {
    line-height: 1.3333;
  }
}
.p-worry__proposal-txt1 span {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 970px) {
  .p-worry__proposal-txt1 span {
    display: inline-block;
    margin-bottom: 5px;
  }
}
.p-worry__proposal-txt1 em {
  color: #d0211d;
  font-style: normal;
}
.p-worry__proposal-txt2 {
  color: #d0211d;
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
}
@media screen and (max-width: 970px) {
  .p-worry__proposal-txt2 {
    margin-top: 14px;
  }
}

.p-experience {
  background: #d0231d;
  display: flex;
  align-items: center;
  height: 416px;
  padding-right: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-experience {
    flex-direction: column;
    padding: 0;
    height: auto;
  }
}
.p-experience__img {
  height: 416px;
  width: 55vw;
}
@media screen and (max-width: 970px) {
  .p-experience__img {
    width: 50vw;
  }
}
@media screen and (max-width: 768px) {
  .p-experience__img {
    height: auto;
    width: 100%;
  }
}
.p-experience__img img {
  object-fit: cover;
  object-position: top right;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-experience__img img {
    object-fit: fill;
    height: auto;
  }
}
.p-experience__txtbox {
  max-width: 430px;
  padding-left: 45px;
  width: 45vw;
}
@media screen and (max-width: 970px) {
  .p-experience__txtbox {
    padding-left: 30px;
    width: 50vw;
  }
}
@media screen and (max-width: 768px) {
  .p-experience__txtbox {
    padding: 35px 30px 45px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-experience__ttl {
    text-align: center;
  }
}
.p-experience__ttl span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 5px;
}
.p-experience__subject {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-experience__subject {
    justify-content: center;
  }
}
.p-experience__subject li {
  border-radius: 2rem;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-right: 2px;
  line-height: 1.6;
  width: 86px;
}
.p-experience__subject li:nth-of-type(1) {
  background: #e56f00;
}
.p-experience__subject li:nth-of-type(2) {
  background: #004b98;
}
.p-experience__subject li:nth-of-type(3) {
  background: #58ac31;
}
.p-experience__what {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-experience__what {
    margin-top: 35px;
  }
}
.p-experience__what-ttl {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-experience__what-ttl {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-experience__list {
    max-inline-size: max-content;
    margin-inline: auto;
  }
}
.p-experience__list li {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 14px;
}
@media screen and (max-width: 768px) {
  .p-experience__list li {
    padding-left: 11px;
    letter-spacing: 0;
  }
}
.p-experience__list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #ffff00;
}
.p-experience__list li em {
  color: #ffff00;
  font-style: normal;
}

.p-benefits {
  background: #f8d9dc;
  position: relative;
  padding: 80px 0 100px;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-benefits {
    padding: 40px 0 0;
  }
}
.p-benefits::before {
  content: "";
  background: url(../img/benefits_bg.png) no-repeat top center;
  background-size: 100% auto;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -710px;
  height: 1000px;
  width: 1420px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-benefits::before {
    margin-left: -56vw;
    width: 112vw;
  }
}
.p-benefits::after {
  content: "";
  background: url(../img/benefits_bottom.png) no-repeat center bottom;
  background-size: 100% auto;
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translate(-50%, 0);
  height: 163px;
  width: 678px;
}
@media screen and (max-width: 768px) {
  .p-benefits::after {
    bottom: -2.6666vw;
    height: 32vw;
    width: 132vw;
  }
}
.p-benefits__inner {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-benefits__inner {
    padding: 0;
  }
}
.p-benefits__ttl {
  position: relative;
  text-align: center;
  z-index: 10;
}
.p-benefits__ttl-sub {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5417;
}
@media screen and (max-width: 768px) {
  .p-benefits__ttl-sub {
    font-size: 18px;
  }
}
.p-benefits__ttl-sub em {
  color: #d0231d;
  font-style: normal;
}
.p-benefits__ttl-main {
  margin-top: -12px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-benefits__ttl-main {
    margin-top: -8px;
  }
}
@media screen and (max-width: 768px) {
  .p-benefits__ttl-main img {
    width: 360px;
  }
}
.p-benefits__list {
  position: relative;
  text-align: center;
  padding: 15px 20px 32px;
  margin: 0 auto;
  max-width: 920px;
}
@media screen and (max-width: 768px) {
  .p-benefits__list {
    padding: 20px 10px 34.1333vw;
    margin-top: 8 px;
  }
}
.p-benefits__list::before {
  content: "";
  background: linear-gradient(134deg, #dc334d 0%, #e4763e 75%, #ed882e 100%);
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-benefits__list::before {
    border-radius: 0;
  }
}

.p-course {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .p-course {
    padding: 55px 0;
  }
}
.p-course__pickup {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .p-course__pickup {
    flex-direction: column;
    margin-top: 25px;
  }
}
.p-course__pickup-item {
  background: #ededed;
  border-radius: 10px;
  padding: 40px 32px 42px 32px;
  width: 32%;
}
@media screen and (max-width: 970px) {
  .p-course__pickup-item {
    padding: 30px 15px 35px 15px;
    width: 32.5%;
  }
}
@media screen and (max-width: 768px) {
  .p-course__pickup-item {
    padding: 30px 20px 35px 20px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-course__pickup-item:not(:first-of-type) {
    margin-top: 12px;
  }
}
.p-course__pickup-item .ttl {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
.p-course__pickup-item .ttl span {
  color: #d0211d;
  display: block;
  font-size: 18px;
}
.p-course__pickup-item .img {
  margin-top: 20px;
}
.p-course__pickup-item .img img {
  width: 100%;
}
.p-course__pickup-item .txt {
  font-size: 16px;
  margin-top: 15px;
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .p-course__pickup-item .txt {
    margin-top: 8px;
  }
}
.p-course__school {
  padding-top: 75px;
}
@media screen and (max-width: 768px) {
  .p-course__school {
    margin-top: 40px;
    padding-top: 55px;
  }
}
.p-course__school:not(:first-of-type) {
  padding-top: 110px;
}
@media screen and (max-width: 768px) {
  .p-course__school:not(:first-of-type) {
    margin-top: 90px;
    padding-top: 55px;
  }
}
.p-course__school-ttl {
  text-align: center;
  padding: 48px 0 18px;
}
@media screen and (max-width: 768px) {
  .p-course__school-ttl {
    text-align-last: left;
    padding: 30px 0 28px 30px;
    position: relative;
  }
  .p-course__school-ttl::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.p-course__school-ttl h3 {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
}
.p-course__school-ttl h3 span {
  display: block;
  font-size: 16px;
}
.p-course__school-ttl.v-elementary {
  background: #e4440a;
}
@media screen and (max-width: 768px) {
  .p-course__school-ttl.v-elementary::before {
    background: url(../img/course_e_top.png) no-repeat center;
    background-size: 100% auto;
    right: 5px;
    height: 179px;
    width: 193px;
  }
}
.p-course__school-ttl.v-elementary h3 span {
  color: #f2ba86;
}
.p-course__school-ttl.v-middle {
  background: #004b9b;
}
@media screen and (max-width: 768px) {
  .p-course__school-ttl.v-middle::before {
    background: url(../img/course_m_top.png) no-repeat center;
    background-size: 100% auto;
    right: 25px;
    height: 176px;
    width: 149px;
  }
}
.p-course__school-ttl.v-middle h3 span {
  color: #89abd0;
}
.p-course__school-ttl.v-height {
  background: #58af31;
}
.p-course__school-ttl.v-height::before {
  background: url(../img/course_h_top.png) no-repeat center;
  background-size: 100% auto;
  right: 15px;
  height: 182px;
  width: 190px;
}
.p-course__school-ttl.v-height h3 span {
  color: #aed89b;
}
.p-course__school-intro {
  background: #f3eee2 url(../img/kv_bg.png);
  background-size: 40px auto;
}
.p-course__school-intro .inner {
  text-align: center;
  max-inline-size: max-content;
  margin-inline: auto;
  position: relative;
  padding: 45px 0 55px;
}
@media screen and (max-width: 768px) {
  .p-course__school-intro .inner {
    padding: 30px 0 40px;
  }
}
.p-course__school-intro .inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-course__school-intro .inner::before {
    display: none;
  }
}
.p-course__school-intro .inner .txt1 {
  color: #2e2322;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-course__school-intro .inner .txt1 {
    font-size: 21px;
    line-height: 1.5714;
  }
}
.p-course__school-intro .inner .txt2 {
  color: #d3231d;
  font-size: 18px;
  font-weight: bold;
  margin-top: 6px;
  line-height: 1.7222;
}
@media screen and (max-width: 768px) {
  .p-course__school-intro .inner .txt2 {
    font-size: 16px;
    margin-top: 12px;
    line-height: 1.5625;
  }
}
.p-course__school-intro.v-elementary .inner::before {
  background: url(../img/course_e_top.png) no-repeat center;
  background-size: 100% auto;
  right: -162px;
  height: 179px;
  width: 193px;
}
.p-course__school-intro.v-middle .inner::before {
  background: url(../img/course_m_top.png) no-repeat center;
  background-size: 100% auto;
  right: -132px;
  height: 176px;
  width: 149px;
}
.p-course__school-intro.v-height .inner::before {
  background: url(../img/course_h_top.png) no-repeat center;
  background-size: 100% auto;
  right: -220px;
  height: 182px;
  width: 190px;
}
@media screen and (max-width: 970px) {
  .p-course__school-intro.v-height .inner::before {
    right: -180px;
  }
}
.p-course__school-detail {
  text-align: center;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-course__school-detail {
    padding: 0;
  }
}

.p-school {
  background: #eee;
  padding: 52px 0 65px;
}
@media screen and (max-width: 970px) {
  .p-school {
    padding: 45px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-school .l-inner {
    padding: 0 2.8vw;
  }
}
.p-school__itemWrap {
  margin-top: 40px;
}
@media screen and (max-width: 970px) {
  .p-school__itemWrap {
    margin-top: 20px;
  }
}
.p-school__item {
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 20px 22px 20px 42px;
  margin-top: 13px;
  position: relative;
}
@media screen and (max-width: 1150px) {
  .p-school__item {
    padding: 20px 20px 20px 30px;
  }
}
@media screen and (max-width: 970px) {
  .p-school__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px 25px;
  }
}
.p-school__item-ttl {
  background: url(../img/icon_arrow_shcool.png) no-repeat left center;
  background-size: 17px auto;
  flex-shrink: 0;
  font-size: 25px;
  font-weight: bold;
  padding-left: 40px;
  width: 180px;
}
@media screen and (max-width: 970px) {
  .p-school__item-ttl {
    padding-left: 30px;
  }
}
.p-school__item-ttl a {
  display: inline-block;
}
.p-school__item-ttl a:hover {
  color: #d3231d;
}
.p-school__item-txt {
  margin: 0 20px;
  margin-left: auto;
  letter-spacing: 0.02em;
  width: 480px;
}
@media screen and (max-width: 970px) {
  .p-school__item-txt {
    margin: 15px 0 0;
    width: 100%;
  }
}
.p-school__item-txt .tel {
  color: #d3231d;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1;
}
.p-school__item-txt .tel::before {
  content: "TEL";
  background: #ffdbcb;
  border-radius: 1.335px;
  color: #d3231d;
  font-size: 12px;
  font-weight: bold;
  padding: 2px;
  margin: 2px 5px 0 0;
}
.p-school__item-txt .address {
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 970px) {
  .p-school__item-txt .address {
    margin-top: 5px;
    line-height: 1.5714;
  }
}
.p-school__item-target {
  display: flex;
}
@media screen and (max-width: 970px) {
  .p-school__item-target {
    margin-top: 10px;
    width: 100%;
  }
}
.p-school__item-target li {
  background: #ffdbcb;
  border-radius: 7px;
  color: #d3231d;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: 7px;
  height: 60px;
  width: 60px;
  letter-spacing: 0;
  line-height: 1.3077;
}
@media screen and (max-width: 970px) {
  .p-school__item-target li {
    border-radius: 4px;
    font-size: 12px;
    padding: 7px 0;
    height: auto;
    margin-left: 2px;
    width: calc((100% - 6px) / 4);
  }
  .p-school__item-target li:first-of-type {
    margin-left: 0;
  }
}
@media screen and (max-width: 970px) {
  .p-school__item-target li br {
    display: none;
  }
}

.p-fixedBtn {
  background: rgba(240, 240, 240, 0.8);
  padding: 6px 11px 8px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  transition: 0.4s;
  transform: translate(0, 100%);
  display: none;
}
@media screen and (max-width: 970px) {
  .p-fixedBtn {
    display: block;
  }
}
.p-fixedBtn.is-active {
  transform: translate(0, 0);
}
.p-fixedBtn__list {
  display: flex;
}
.p-fixedBtn__item {
  margin-right: 2px;
  width: 100%;
}
.p-fixedBtn__item.v-tel {
  flex-shrink: 0;
  margin-right: 0;
  height: 48px;
  width: 48px;
  position: relative;
  z-index: 0;
}
.p-fixedBtn__item.v-tel::before {
  content: "";
  background: linear-gradient(to top, #02346d 30%, #027f93 100%);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 970px) {
  .p-fixedBtn__item.v-tel::before {
    top: 3px;
  }
}
.p-fixedBtn__item.v-tel a {
  background: linear-gradient(to top, #02459a 30%, #029cb1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
}/*# sourceMappingURL=style.css.map */