@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html {
  color: #000;
  word-break: normal;
  line-break: strict;
  height: 100%;
  margin: 0 auto;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  height: 100%;
  margin: 0 auto;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

figure {
  margin: 0;
  padding: 0;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

textarea {
  resize: vertical;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button {
  border: none;
  cursor: pointer;
}

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

th, td {
  border: none;
  padding: 0;
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

address {
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 10px;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media (min-width: 768px) and (max-width: 1140px) {
  html {
    font-size: 0.8771929825vw;
  }
}
@media print, screen and (min-width: 461px) {
  html html {
    line-height: 1 !important;
  }
}

body {
  color: #000;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
  min-width: 100%;
}

@media print, screen and (min-width: 461px) {
  body {
    min-width: 100%;
  }
}
main img {
  border: none;
  display: block;
  width: 100%;
  height: auto;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
  overflow: hidden;
}

/* CSSの関係で表示くずれるので上書き */
.footer_navi_inner {
  max-width: 1170px;
}
.footer_navi_inner .logo {
  width: 244px;
}
.footer_navi_inner .logo img {
  width: 100%;
}

.footer_navi_inner a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media only screen and (min-width: 768px) {
  .footer_navi_inner a:hover {
    opacity: 0.7;
  }
}
.mod_footer {
  padding-bottom: 64px;
}
.mod_footer a {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.column_gnavi_column:first-child > ul > li > ul {
  left: 0;
}

.column_gnavi {
  padding-inline: 30px;
}

.column_gnavi_columns {
  position: relative;
}

.column_header_column {
  line-height: 1.5;
}
.column_header_column a {
  font-family: "Roboto", sans-serif;
}

/* --------------------------------
l-inner
----------------------------------- */
.l-inner {
  max-width: 1140px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}
@media only screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 16px;
  }
}

img {
  max-width: initial;
  width: 100%;
  height: auto;
  display: block;
}

body.no_scroll {
  overflow: hidden;
}

@media (any-hover: hover) {
  a.opacity:hover {
    opacity: 0.7;
  }
}
/* -----------------------------------------------
* component エントリーポイント
-------------------------------------------------- */
/* ------------------------------------------------
c-hamburger
--------------------------------------------------- */
.c-hamburger {
  width: 1.6rem;
  height: inherit;
  position: absolute;
  top: 0;
  right: 1.5rem;
  z-index: 800;
}

.c-hamburger span {
  position: absolute;
  display: block;
  height: 0.25rem;
  width: 1.6rem;
  background-color: #0A9FC2;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  opacity: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-hamburger:hover {
  cursor: pointer;
}

.c-hamburger span:nth-child(1) {
  top: 36%;
}

.c-hamburger span:nth-child(3) {
  top: 64%;
}

.c-hamburger.is-open span:nth-child(1) {
  width: 2.5rem;
  height: 0.2rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-open span:nth-child(3) {
  width: 2.5rem;
  height: 0.2rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}

/* ------------------------------------------------
c-btn
--------------------------------------------------- */
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 31rem;
  height: 6.5rem;
  border-radius: 5rem;
  background-color: #fff;
  padding-bottom: 0.2rem;
  position: relative;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  padding-left: 1rem;
  -webkit-box-shadow: 0.4rem 0.4rem 1rem rgba(0, 0, 0, 0.3);
          box-shadow: 0.4rem 0.4rem 1rem rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    height: 5.5rem;
    border-radius: 5rem;
    -webkit-box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.3);
            box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.3);
  }
}
.c-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 2.1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn::before {
    right: 2.3rem;
    width: 2rem;
    height: 2rem;
  }
}
.c-btn::after {
  position: absolute;
  content: "";
  top: 49%;
  right: 2.7rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.4rem;
  height: 0.7rem;
  -webkit-mask-image: url(../img/common/arrow-right.svg);
          mask-image: url(../img/common/arrow-right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn::after {
    top: 49.5%;
    right: 3rem;
    width: 0.45rem;
    height: 0.85rem;
  }
}

.c-btn span {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 767px) {
  .c-btn span {
    font-size: 1.4rem;
  }
}

.c-btn--red {
  background-color: #FC0001;
  border: 0.2rem solid #fff;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-btn--red {
    border: 0.2rem solid #fff;
  }
}
.c-btn--red::before {
  background-color: #fff;
}
.c-btn--red::after {
  background-color: #FC0001;
}

.c-btn--white {
  background-color: #fff;
  border: 0.2rem solid #FC0001;
  color: #FC0001;
}
@media only screen and (min-width: 768px) {
  .c-btn--white:hover {
    background-color: #FC0001;
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .c-btn--white {
    border: 0.2rem solid #FC0001;
  }
}
.c-btn--white::before {
  background-color: #FC0001;
}
.c-btn--white::after {
  background-color: #fff;
}

.c-btn--price span {
  padding-right: 0;
}

.c-btn--price span::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1.1rem;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn--price span::before {
    left: 1.1rem;
  }
}

.c-btn--mail span {
  padding-right: 0;
}

.c-btn--mail span::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 2.3rem;
  width: 2.5rem;
  height: 2rem;
  background-color: #FC0001;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn--mail span::before {
    left: 1.5rem;
  }
}

.c-btn--square {
  width: 42.8rem;
  height: 8.5rem;
  border-radius: 0.6rem;
  -webkit-box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.3);
          box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 767px) {
  .c-btn--square {
    width: 100%;
    height: 7.5rem;
    padding-left: 0;
  }
}
.c-btn--square::before {
  top: 50.5%;
  right: 1.4rem;
  width: 2.2rem;
  height: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .c-btn--square::before {
    right: 1rem;
    width: 2rem;
    height: 2rem;
  }
}
.c-btn--square::after {
  top: 50%;
  right: 2.15rem;
  width: 0.5rem;
  height: 0.9rem;
}
@media only screen and (max-width: 767px) {
  .c-btn--square::after {
    top: 49.5%;
    right: 1.7rem;
    width: 0.42rem;
    height: 0.82rem;
  }
}
.c-btn--square span {
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .c-btn--square span {
    font-size: 2.2rem;
  }
}

.c-btn--square.c-btn--price span::before {
  left: 0.7rem;
  width: 2.2rem;
  height: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .c-btn--square.c-btn--price span::before {
    left: 1.2rem;
  }
}

.c-btn--square.c-btn--mail span::before {
  left: 0.7rem;
  width: 1.9rem;
  height: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .c-btn--square.c-btn--mail span::before {
    left: 1.2rem;
  }
}

.c-btn--lg {
  width: 48rem;
  height: 7rem;
}
@media only screen and (max-width: 767px) {
  .c-btn--lg {
    min-width: 17.7rem;
    width: 100%;
    height: 4.5rem;
    padding-right: 2rem;
    border-width: 0.1rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding-left: 1.2rem;
  }
  .c-btn--lg::before {
    right: 1.1rem;
    width: 1.3rem;
    height: 1.3rem;
  }
  .c-btn--lg::after {
    right: 1.5rem;
    width: 0.35rem;
    height: 0.55rem;
  }
}
.c-btn--lg span {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .c-btn--lg span {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
  }
  .c-btn--lg span::before {
    display: none;
  }
}

@media (any-hover: hover) {
  .c-btn--red:hover {
    border-color: #FC0001;
    background-color: #fff;
    color: #FC0001;
  }
  .c-btn--red:hover::before {
    background-color: #FC0001;
  }
  .c-btn--red:hover::after {
    background-color: #fff;
  }
  .c-btn--white:hover {
    border: 0.2rem solid #fff;
    background-color: #FC0001;
    color: #fff;
  }
  .c-btn--white:hover::before {
    background-color: #fff;
  }
  .c-btn--white:hover::after {
    background-color: #FC0001;
  }
  .c-btn--price:hover span::before {
    background-color: #FC0001;
  }
  .c-btn--mail:hover span::before {
    background-color: #fff;
  }
}
/* ------------------------------------------------
c-header-btn
--------------------------------------------------- */
.c-header-btn {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", verdana, "Yu Gothic", YuGothic, "游ゴシック", "游ゴシック体", "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  height: 3.5rem;
  border: 0.1rem solid #fff;
  border-radius: 9.9rem;
  background-color: #FC0001;
  color: #fff;
  font-weight: 700;
  min-width: 15.2rem;
  display: grid;
  place-content: center;
  -webkit-box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.c-header-btn--white {
  border: 0.1rem solid #FC0001;
  border-radius: 9.9rem;
  background-color: #fff;
  color: #FC0001;
}

@media (any-hover: hover) {
  .c-header-btn:hover {
    border-color: #FC0001;
    background-color: #fff;
    color: #FC0001;
  }
  .c-header-btn--white:hover {
    border-color: #fff;
    background-color: #FC0001;
    color: #fff;
  }
}
/* ------------------------------------------------
c-btn-wrap
--------------------------------------------------- */
.c-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .c-btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.c-btn-wrap--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* ------------------------------------------------
c-section-title
--------------------------------------------------- */
.c-section-title {
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #003B6B;
  padding-bottom: 3.3rem;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-section-title {
    font-size: 2.6rem;
    padding-bottom: 2.2rem;
  }
}
.c-section-title::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8.3rem;
  height: 0.7rem;
  background-color: #005EAB;
}
@media only screen and (max-width: 767px) {
  .c-section-title::before {
    width: 5.6rem;
    height: 0.5rem;
  }
}
.c-section-title sup {
  top: -2.5rem;
  right: 1.1rem;
  font-size: 1.4rem;
  margin-right: -1.4rem;
}
@media only screen and (max-width: 767px) {
  .c-section-title sup {
    top: -2rem;
    right: 0.9rem;
    font-size: 1.2rem;
  }
}
.c-section-title span {
  font-size: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .c-section-title span {
    font-size: 2.2rem;
  }
}

.c-section-title--white {
  color: #fff;
}
.c-section-title--white::before {
  background-color: #fff;
}

.c-section-title--no-line {
  padding-bottom: 0;
}
.c-section-title--no-line::before {
  display: none;
}

@media only screen and (max-width: 767px) {
  .c-section-title--point {
    padding-bottom: 3.8rem;
  }
}

/* --------------------------------
header
----------------------------------- */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.5rem;
  background-color: #fff;
  z-index: 500;
}
@media only screen and (max-width: 767px) {
  .p-header {
    height: 5.5rem;
  }
}

.p-header__inner {
  height: inherit;
  max-width: 1280px;
  padding-inline: 25px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-header__inner {
    gap: 0.9rem;
    width: 100%;
    padding-inline: 1.3rem 1.8rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 11px;
  }
}

.p-header__logo-wrap {
  height: inherit;
}
@media only screen and (max-width: 767px) {
  .p-header__logo-wrap {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.1rem;
  }
}
.p-header__logo-wrap .logo {
  width: 100%;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-header__logo-wrap .logo {
    width: auto;
    gap: 1.2rem;
  }
}
.p-header__logo-wrap span {
  margin-top: 1rem;
  display: block;
  position: relative;
  z-index: 3;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-header__logo-wrap span {
    margin-top: 0.3rem;
  }
}
.p-header__logo-wrap .p-header__logo {
  margin-top: 0.6rem;
  width: 26.1rem;
}
@media only screen and (max-width: 767px) {
  .p-header__logo-wrap .p-header__logo {
    margin-top: 0;
    width: 14.3rem;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.p-header__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.p-header__btn a {
  font-size: 1.8rem;
}

.p-header__tel span {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-left: 3rem;
}
.p-header__tel p {
  position: relative;
  padding-left: 2.5rem;
}
.p-header__tel p::before {
  position: absolute;
  content: "";
  top: 52%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.9rem;
  height: 1.9rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #FC0001;
}
.p-header__tel a {
  font-size: 2.7rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #FC0001;
}

/* --------------------------------
p-footer
----------------------------------- */
.p-footer {
  height: 19rem;
  padding-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .p-footer {
    height: 21.1rem;
    padding-top: 4.9rem;
    padding-bottom: 8.3rem;
  }
}

.p-footer__inner {
  height: 9rem;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7rem;
}
@media only screen and (max-width: 767px) {
  .p-footer__inner {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1.7rem;
  }
}

.p-footer__logo {
  height: inherit;
}
@media only screen and (max-width: 767px) {
  .p-footer__logo {
    height: auto;
  }
}
.p-footer__logo a,
.p-footer__logo div {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 31.1rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-footer__logo a,
  .p-footer__logo div {
    width: 23rem;
  }
}

.p-footer-nav__items {
  height: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .p-footer-nav__items {
    height: inherit;
    gap: 2rem;
  }
}

.p-footer-nav__item {
  height: inherit;
}
.p-footer-nav__item a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* --------------------------------
p-fixed-cta
----------------------------------- */
.p-fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #D9D9D9;
  z-index: 400;
  height: 10rem;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 767px) {
  .p-fixed-cta {
    height: 6.1rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .p-fixed-cta.is-visible {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-fixed-cta__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  padding-inline: 0.8rem;
}
@media only screen and (max-width: 767px) {
  .p-fixed-cta__inner {
    gap: 0.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-fixed-cta__btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/* ------------------------------------------------
p-drawer
--------------------------------------------------- */
.p-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 600;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  overflow-y: auto;
  padding-bottom: 5rem;
}

.p-drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-drawer__head {
  padding: 2rem 1.8rem 0;
}
.p-drawer__head span {
  display: block;
  margin-top: 1.1rem;
  font-size: 1.2rem;
}

.p-drawer__logo {
  width: 13.3rem;
}

.p-drawer__body {
  margin-top: 40px;
  padding-inline: 3.2rem;
}

.p-drawer-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 0.1rem solid #BEBEBE;
}

.p-drawer-nav__item {
  border-bottom: 0.1rem solid #BEBEBE;
}
.p-drawer-nav__item a {
  display: block;
  padding-block: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #003B6B;
}

.p-drawer-nav__btn-wrap {
  margin-top: 2.2rem;
}

/* ------------------------------------------------
p-cta
--------------------------------------------------- */
.p-cta__text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #003B6B;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-cta__text {
    font-size: 1.7rem;
  }
}
.p-cta__text span {
  padding-inline: 2.3rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-cta__text span {
    padding-inline: 1.8rem;
  }
}
.p-cta__text span::before, .p-cta__text span::after {
  position: absolute;
  content: "/";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
  font-size: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .p-cta__text span::before, .p-cta__text span::after {
    font-size: 1.7rem;
  }
}
.p-cta__text span::after {
  left: initial;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-cta:has(.p-cta__text) .p-cta__btn-wrap {
  margin-top: 13px;
}
@media only screen and (max-width: 767px) {
  .p-cta:has(.p-cta__text) .p-cta__btn-wrap {
    margin-top: 16px;
  }
}

/* ------------------------------------------------
dr_agent
--------------------------------------------------- */
.dr_agent-main {
  margin-top: 6.5rem;
}
@media only screen and (max-width: 767px) {
  .dr_agent-main {
    margin-top: 5.5rem;
  }
}

/* デフォルト矢印削除 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}

/* --------------------------------
p-fv
----------------------------------- */
#fv.p-fv {
  height: 43rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #fv.p-fv {
    height: 120vw;
    height: 450px;
  }
}
#fv .p-fv-overlay {
  position: absolute;
  width: 100%;
  height: 6rem;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#005EAB));
  background: linear-gradient(180deg, transparent 0%, #005EAB 100%);
}
#fv .p-fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#fv .p-fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#fv .p-fv__inner {
  position: relative;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv__inner {
    padding-inline: 1.4rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  #fv .p-fv__inner {
    max-width: 500px;
  }
}
#fv .p-fv__container {
  height: inherit;
  padding-top: 1.9rem;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv__container {
    padding-top: 1.3rem;
  }
}
#fv .p-fv-contents {
  position: relative;
  z-index: 5;
  height: 100%;
}
#fv .p-fv-contents__text-wrap {
  margin-top: 3rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-contents__text-wrap {
    margin-top: 2.1rem;
  }
}
#fv .p-fv-contents__text-wrap h1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 73.7rem;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-contents__text-wrap h1 {
    padding-top: 3.2rem;
    width: auto;
  }
}
#fv .p-fv-contents__lead {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #005EAB;
  background-color: #fff;
  padding: 0.45rem 0 0.35rem 0.4rem;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-contents__lead {
    font-size: 1.8rem;
    padding: 0.4rem 0 0.35rem 0.4rem;
  }
}
#fv .p-fv-contents__lead span {
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-contents__lead span {
    font-size: 1.4rem;
  }
}
#fv .p-fv-contents__title-wrap {
  margin-top: 1.6rem;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-contents__title-wrap {
    margin-top: 0.2rem;
  }
}
#fv .p-fv-contents__title {
  display: inline-block;
  font-size: 5.2rem;
  font-weight: 700;
  color: #005EAB;
  padding: 0.7rem 0.2rem;
  background-color: #fff;
  letter-spacing: 0;
  text-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-contents__title {
    font-size: 3.4rem;
    line-height: 1.74;
    padding: 0.2rem 0.3rem 0.2rem 0.1rem;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    background-color: transparent;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(8%, transparent), color-stop(8%, #fff));
    background: linear-gradient(180deg, transparent 8%, #fff 8%);
  }
}
#fv .p-fv-contents__title .u-small {
  font-size: 4.4rem;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-contents__title .u-small {
    font-size: 2.8rem;
  }
}
#fv .p-fv-contents__catch {
  position: absolute;
  top: 0.7rem;
  right: 0;
  color: #ffc000;
  font-size: 2rem;
  font-weight: 700;
  padding-inline: 3rem 2rem;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-contents__catch {
    top: 0;
    right: initial;
    left: -0.2rem;
    font-size: 1.2rem;
    padding-inline: 1.8rem 1.3rem;
  }
}
#fv .p-fv-contents__catch::before, #fv .p-fv-contents__catch::after {
  position: absolute;
  content: "";
  bottom: 1rem;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 3rem;
  height: 0.1rem;
  background-color: #ffc000;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-contents__catch::before, #fv .p-fv-contents__catch::after {
    bottom: 0.7rem;
    width: 2rem;
  }
}
#fv .p-fv-contents__catch::after {
  left: initial;
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#fv .p-fv-contents__catch span.u-small {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-contents__catch span.u-small {
    font-size: 0.9rem;
  }
}
#fv .p-fv-contents__catch span.u-lg {
  font-size: 2.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-contents__catch span.u-lg {
    font-size: 1.7rem;
  }
}
#fv .p-fv-badge {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-badge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#fv .p-fv-badge__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-badge__flex {
    gap: 0;
  }
}
#fv .p-fv-badge__icon {
  width: 10rem;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-badge__icon {
    width: 5rem;
  }
}
#fv .p-fv-badge__content {
  margin-top: 1rem;
  font-family: "EB Garamond", serif;
  position: relative;
  font-size: 9.6rem;
  line-height: 1;
  padding-top: 0.4rem;
  padding-left: 2.4rem;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-badge__content {
    margin-top: 0.6rem;
    font-size: 4.7rem;
    padding-left: 1.2rem;
  }
}
#fv .p-fv-badge__content span {
  position: absolute;
  font-family: "Shippori Mincho", serif;
}
#fv .p-fv-badge__content span:nth-child(1) {
  font-size: 1.5rem;
  line-height: 1;
  top: 0;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-badge__content span:nth-child(1) {
    font-size: 0.74rem;
    letter-spacing: 0;
  }
}
#fv .p-fv-badge__content span:nth-child(2) {
  top: 0.2rem;
  left: 0;
  font-size: 1.8rem;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.25em;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-badge__content span:nth-child(2) {
    font-size: 0.888rem;
  }
}
#fv .p-fv-badge__caption {
  padding-left: 2.2rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-badge__caption {
    margin-top: -0.3rem;
    font-size: 5.4px;
    padding-left: 1rem;
    text-align: left;
  }
}
#fv .p-fv-contents__cta {
  margin-top: 3.7rem;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv-contents__cta {
    margin-top: 1.3rem;
    padding-inline: 1.8rem;
  }
}
#fv .fv-contents__img {
  position: absolute;
  width: 52.6rem;
  bottom: 0;
  left: 58.5%;
}
@media only screen and (max-width: 767px) {
  #fv .fv-contents__img {
    width: 20.2rem;
    width: clamp(202px, 53.8666666667vw, 240px);
    bottom: initial;
    top: 5rem;
    left: 46%;
  }
}
#fv .fv-contents__link {
  position: absolute;
  bottom: 1.7rem;
  right: 10rem;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #fv .fv-contents__link {
    bottom: 1.7rem;
    right: inherit;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    white-space: nowrap;
  }
}
#fv p {
  font-family: "Shippori Mincho", serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #fv p {
    font-size: 0.8rem;
  }
}

#fv .p-fv__container:not(:has(.p-fv-badge)) {
  padding-top: 7rem;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv__container:not(:has(.p-fv-badge)) {
    padding-top: 0.9rem;
  }
}
#fv .p-fv__container:not(:has(.p-fv-badge)) .p-fv-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#fv .p-fv__container:not(:has(.p-fv-badge)) .p-fv-contents__text-wrap {
  margin-top: 0;
}
#fv .p-fv__container:not(:has(.p-fv-badge)) .p-fv-contents__cta {
  margin-top: 8.4rem;
}
@media only screen and (max-width: 767px) {
  #fv .p-fv__container:not(:has(.p-fv-badge)) .p-fv-contents__cta {
    margin-top: 5rem;
  }
}
#fv .p-fv__container:not(:has(.p-fv-badge)) .fv-contents__link {
  display: none;
}

/* --------------------------------
p-feature 採用スピードと成功率UP！
----------------------------------- */
#feature.p-feature {
  padding-block: 5rem;
  background-color: #F2F5F6;
}
#feature .p-feature__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#feature .p-feature__catch {
  background-color: #005EAB;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.8rem 1.7rem 0.8rem 2.6rem;
}
@media only screen and (max-width: 767px) {
  #feature .p-feature__catch {
    font-size: 1.6rem;
    padding: 0.75rem 1.7rem 0.85rem 2.6rem;
  }
}
#feature .p-feature__title {
  margin-top: 2.3rem;
}
@media only screen and (max-width: 767px) {
  #feature .p-feature__title {
    margin-top: 1.5rem;
  }
}
#feature .p-feature__body {
  margin-top: 5.4rem;
}
@media only screen and (max-width: 767px) {
  #feature .p-feature__body {
    margin-top: 2.7rem;
  }
}
#feature .p-feature__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media only screen and (max-width: 767px) {
  #feature .p-feature__items {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
#feature .p-feature__item {
  background-color: #fff;
  border-radius: 1.2rem;
  border: 0.1rem solid #003B6B;
  padding-block: 3rem;
  padding-inline: 2rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #feature .p-feature__item {
    padding-block: 1.9rem 2.1rem;
  }
}
#feature .p-feature__item > span {
  position: absolute;
  z-index: 3;
  top: -1.5rem;
  left: 1.2rem;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  color: #003B6B;
  padding-inline: 0.4rem;
}
#feature .p-feature__item > span::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 1.4rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#feature .p-feature__item h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  color: #003B6B;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #feature .p-feature__item h3 {
    font-size: 2rem;
  }
}
#feature .p-feature__item h3 span {
  font-weight: 700;
}
#feature .p-feature__cta {
  margin-top: 5.8rem;
}
@media only screen and (max-width: 767px) {
  #feature .p-feature__cta {
    margin-top: 4.5rem;
  }
}
#feature .p-feature__item--note {
  position: relative;
}
#feature .p-feature__item--note .p-feature__note {
  position: absolute;
  bottom: -2.7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  font-size: 1.2rem;
  color: #003B6B;
  line-height: 1.5;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  #feature .p-feature__item--note .p-feature__note {
    bottom: -2.6rem;
  }
}

/* --------------------------------
p-application 一度のお申し込みで
----------------------------------- */
#application.p-application {
  padding-block: 5rem;
}
#application .p-application__body {
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  #application .p-application__body {
    margin-top: 2.9rem;
  }
}
#application .p-application__text {
  font-size: 2.2rem;
  line-height: 1.5;
  text-align: center;
  color: #003B6B;
}
@media only screen and (max-width: 767px) {
  #application .p-application__text {
    font-size: 1.7rem;
  }
}
#application .p-application__text span {
  font-weight: 700;
}
#application .p-application__items {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem;
}
@media only screen and (max-width: 767px) {
  #application .p-application__items {
    grid-template-columns: 1fr;
    gap: 8.5rem;
  }
}
#application .p-application-item {
  background-color: rgba(10, 159, 194, 0.08);
  border-radius: 1.2rem;
  padding: 2.4rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #application .p-application-item {
    padding: 1.6rem;
  }
}
#application .p-application-item:nth-child(1) {
  position: relative;
}
#application .p-application-item:nth-child(1)::before, #application .p-application-item:nth-child(1)::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -8.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7rem;
  height: 0.8rem;
  border-radius: 1rem;
  background-color: #FFC000;
}
@media only screen and (max-width: 767px) {
  #application .p-application-item:nth-child(1)::before, #application .p-application-item:nth-child(1)::after {
    top: initial;
    bottom: -4.3rem;
    right: initial;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    width: 5.6rem;
  }
}
#application .p-application-item:nth-child(1)::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
@media only screen and (max-width: 767px) {
  #application .p-application-item:nth-child(1)::after {
    -webkit-transform: translate(-50%, 50%) rotate(90deg);
            transform: translate(-50%, 50%) rotate(90deg);
  }
}
#application .p-application-item__img {
  width: 270px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  #application .p-application-item__img {
    width: 21.6rem;
  }
}
#application .p-application-item__title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  padding-block: 1rem;
  border-radius: 1.2rem 1.2rem 0 0;
}
@media only screen and (max-width: 767px) {
  #application .p-application-item__title {
    font-size: 2.2rem;
  }
}
#application .p-application-item__body {
  background-color: #fff;
  padding: 3.2rem;
}
@media only screen and (max-width: 767px) {
  #application .p-application-item__body {
    padding: 1.6rem 1.4rem 1.6rem 1.8rem;
  }
}
#application .p-application-item__body h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  #application .p-application-item__body h3 {
    font-size: 2rem;
  }
}
#application .p-application-item__body h4 {
  margin-top: 2.4rem;
  font-size: 2rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  #application .p-application-item__body h4 {
    margin-top: 1.9rem;
    font-size: 1.8rem;
    text-align: left;
    letter-spacing: 0;
  }
}
#application .p-application__cta {
  margin-top: 3rem;
}

/* --------------------------------
p-flow 採用までの流れ
----------------------------------- */
#flow.p-flow {
  padding-block: 5rem 7rem;
  background-color: #F2F5F6;
}
@media only screen and (max-width: 767px) {
  #flow.p-flow {
    padding-block: 5rem;
  }
}
#flow .p-flow__body {
  margin-top: 3.7rem;
}
#flow .p-flow__cta {
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  #flow .p-flow__cta {
    margin-top: 2.9rem;
  }
}
#flow .p-cta__btn-wrap {
  margin-top: 15px;
}

/* --------------------------------
p-strengths 会員数891万人
----------------------------------- */
#strengths.p-strengths {
  padding-block: 5rem;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths__inner {
    padding-inline: 0;
  }
}
#strengths .p-strengths__note {
  margin-top: 2.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #003B6B;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths__note {
    margin-top: 1.4rem;
  }
}
#strengths .p-strengths__body {
  margin-top: 0.6rem;
  max-width: 100rem;
  margin-inline: auto;
  padding-block: 1.6rem;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths__body {
    margin-top: 1rem;
    width: 100%;
    position: relative;
    padding-block: 0;
  }
}
#strengths .p-strengths__swiper-container {
  padding: 2rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths__swiper-container {
    padding: 0;
  }
}
#strengths .p-strengths__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.2rem;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths__items {
    -ms-flex-wrap: initial;
        flex-wrap: initial;
    gap: 0;
  }
}
#strengths .p-strengths-item {
  width: 46.4rem;
  border-radius: 1.6rem;
  -webkit-box-shadow: 0 0 2rem rgba(0, 94, 171, 0.5);
          box-shadow: 0 0 2rem rgba(0, 94, 171, 0.5);
  height: auto;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths-item {
    width: initial;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 2rem 1rem;
    width: 35.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
#strengths .swiper-slide__inner {
  border-radius: 1.6rem;
  border-top: 0.1rem solid rgba(19, 59, 107, 0.5);
  border-left: 0.1rem solid rgba(19, 59, 107, 0.5);
  border-right: 0.2rem solid rgba(19, 59, 107, 0.5);
  border-bottom: 0.2rem solid rgba(19, 59, 107, 0.5);
  background-color: #fff;
  padding: 3.2rem 3.2rem 4rem;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #strengths .swiper-slide__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 2rem 1.6rem 4rem;
    padding: 2rem 1.5rem 4rem 2.1rem;
    -webkit-box-shadow: 0 0 2rem rgba(0, 94, 171, 0.5);
            box-shadow: 0 0 2rem rgba(0, 94, 171, 0.5);
  }
}
#strengths .p-strengths-item__num {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  background-color: #005EAB;
  color: #fff;
  padding: 0.2rem 1.2rem;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths-item__num {
    -ms-flex-item-align: start;
        align-self: flex-start;
    font-size: 1.7rem;
  }
}
#strengths .p-strengths-item__title {
  margin-top: 1rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #003B6B;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths-item__title {
    font-size: 2.2rem;
  }
}
#strengths .p-strengths-item__text {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths-item__text {
    font-size: 1.7rem;
  }
}
#strengths .p-strengths-item__text span {
  font-weight: 700;
  color: #005EAB;
}
#strengths .p-strengths-item__note {
  margin-top: 1.3rem;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths-item__note {
    margin-top: 1.1rem;
  }
}
#strengths .p-strengths-item__note + .p-strengths-item__note {
  margin-top: 0;
}
#strengths .p-strengths-item__img {
  margin-top: 4.7rem;
  width: 32.5rem;
  margin-inline: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths-item__img {
    margin-top: auto;
    width: 100%;
    padding-inline: 1.8rem;
  }
}
#strengths .p-strengths-item__circle {
  position: absolute;
  top: 1.4rem;
  left: 1.6rem;
  width: 10.7rem;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths-item__circle {
    width: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths-item--01 .p-strengths-item__img {
    padding-bottom: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths-item--02 .swiper-slide__inner {
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths-item--02 .p-strengths-item__img {
    padding-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths-item--04 .swiper-slide__inner {
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths-item--04 .p-strengths-item__img {
    padding-inline: 3.3rem;
    padding-bottom: 1.2rem;
  }
}
#strengths .p-strengths__cta {
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  #strengths .p-strengths__cta {
    margin-top: 0.8rem;
    padding-inline: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  #strengths .strengths-slider-prev,
  #strengths .strengths-slider-next {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #strengths .strengths-slider-prev,
  #strengths .strengths-slider-next {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    border-radius: 50%;
    background: -webkit-gradient(linear, right top, left top, from(#0a87e7), to(#27b7f9));
    background: linear-gradient(to left, #0a87e7 0%, #27b7f9 100%);
    border: 0.1rem solid #fff;
    width: 3rem;
    height: 3rem;
    padding-bottom: 0.1rem;
  }
}
#strengths .strengths-slider-prev span,
#strengths .strengths-slider-next span {
  display: block;
  width: 0.9rem;
  height: 1.1rem;
}
@media only screen and (max-width: 767px) {
  #strengths .strengths-slider-next {
    right: calc(50% - 18rem);
  }
}
@media only screen and (max-width: 767px) {
  #strengths .strengths-slider-prev {
    left: calc(50% - 18rem);
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}

/* --------------------------------
voice
----------------------------------- */
#voice.p-voice {
  padding-block: 8rem 5rem;
  background-color: #F2F5F6;
}
@media only screen and (max-width: 767px) {
  #voice.p-voice {
    padding-block: 5rem;
  }
}
#voice .p-voice__body {
  margin-top: 5.5rem;
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media only screen and (max-width: 767px) {
  #voice .p-voice__body {
    margin-top: 3rem;
    width: 100%;
    padding-inline: 0;
  }
}
#voice .p-voice__slide-wrap {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 3rem;
}
#voice .p-voice-slide {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#voice .p-voice-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
}
#voice .p-voice-item__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.3rem;
  background-color: #fff;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 0.1rem solid #003B6B;
}
@media only screen and (max-width: 767px) {
  #voice .p-voice-item__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 2.7rem;
    border-radius: 1.5rem;
    gap: 2rem;
    border: 0.2rem solid #007DD7;
  }
}
#voice .p-company-info {
  width: 36rem;
}
@media only screen and (max-width: 767px) {
  #voice .p-company-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    border-bottom: 0.1rem solid #003B6B;
  }
}
#voice .p-company-info__img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #voice .p-company-info__img {
    width: 100%;
  }
}
#voice .p-company-info__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 360/240;
}
@media only screen and (max-width: 767px) {
  #voice .p-company-info__img img {
    aspect-ratio: 335/200;
  }
}
#voice .p-company-info__contents {
  margin-top: 1.5rem;
  padding-left: 3.8rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  #voice .p-company-info__contents {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 2.4rem;
    padding-inline: 2rem;
    padding-bottom: 1.6rem;
  }
}
#voice .p-company-info__name {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #005EAB;
}
@media only screen and (max-width: 767px) {
  #voice .p-company-info__name {
    font-size: 1.7rem;
    line-height: 1.5;
  }
}
#voice .p-company-info__lists {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #voice .p-company-info__lists {
    margin-top: 0.8rem;
  }
}
#voice .p-company-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  #voice .p-company-info__list {
    line-height: 1.7;
  }
}
#voice .p-company-info__list dt {
  width: 8.8rem;
}
@media only screen and (max-width: 767px) {
  #voice .p-company-info__list dt {
    width: 7.7rem;
  }
}
#voice .p-company-info__list dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#voice .p-voice-item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: min(3.5087719298vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 3rem;
}
@media only screen and (max-width: 767px) {
  #voice .p-voice-item__body {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding-inline: 2rem;
    padding-block: 0;
  }
}
#voice .p-voice-item__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #005EAB;
  padding-bottom: 2.9rem;
  border-bottom: 0.1rem solid #BEBEBE;
}
@media only screen and (max-width: 767px) {
  #voice .p-voice-item__title {
    font-size: 2rem;
    letter-spacing: 0.02em;
    padding-bottom: 1.9rem;
  }
}
#voice .p-voice-item__sub-title {
  margin-top: 3.1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  color: #003B6B;
}
@media only screen and (max-width: 767px) {
  #voice .p-voice-item__sub-title {
    margin-top: 20px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
#voice .p-voice-item__text {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  #voice .p-voice-item__text {
    margin-top: 2rem;
    font-size: 1.7rem;
    line-height: 1.8;
  }
}
#voice .p-voice-item__btn {
  border: 1px solid #005EAB;
  height: 40px;
}
#voice .p-voice-item__btn span {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-right: 40px;
}
#voice .p-voice-item__btn span::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-75%) rotate(45deg);
          transform: translateY(-75%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
#voice .p-voice-item__btn.is-show span::after {
  -webkit-transform: translateY(-20%) rotate(-135deg);
          transform: translateY(-20%) rotate(-135deg);
}
#voice .voice-prev-btn,
#voice .voice-next-btn {
  position: absolute;
  z-index: 8;
  cursor: pointer;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, right top, left top, from(#0a87e7), to(#27b7f9));
  background: linear-gradient(to left, #0a87e7 0%, #27b7f9 100%);
  top: calc(50% - (4.0441vw - 30.0588px));
}
@media (min-width: 1040px) {
  #voice .voice-prev-btn,
  #voice .voice-next-btn {
    top: calc(50% - 1.2rem);
  }
}
@media only screen and (max-width: 767px) {
  #voice .voice-prev-btn,
  #voice .voice-next-btn {
    border: 0.1rem solid #fff;
    width: 3rem;
    height: 3rem;
    padding-bottom: 0.1rem;
    top: calc(50% - 1rem);
  }
}
#voice .voice-prev-btn span,
#voice .voice-next-btn span {
  display: block;
  width: 0.9rem;
  height: 1.1rem;
}
@media only screen and (max-width: 767px) {
  #voice .voice-prev-btn span,
  #voice .voice-next-btn span {
    position: absolute;
    top: 52%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0.8rem;
    height: 1.1rem;
  }
}
#voice .voice-next-btn {
  padding-left: 0.2rem;
  right: -1.9rem;
}
@media only screen and (max-width: 767px) {
  #voice .voice-next-btn {
    right: -10px;
  }
}
#voice .voice-prev-btn {
  -webkit-transform: translateY(1rem) scale(-1, 1);
          transform: translateY(1rem) scale(-1, 1);
  padding-left: 0.2rem;
  left: -1.9rem;
}
@media only screen and (max-width: 767px) {
  #voice .voice-prev-btn {
    left: -10px;
    -webkit-transform: translateY(-6px) scale(-1, 1);
            transform: translateY(-6px) scale(-1, 1);
  }
}
#voice .p-voice__note {
  margin-top: 2.4rem;
  font-size: 1.3rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #voice .p-voice__note {
    margin-top: 1.8rem;
    font-size: 1.1rem;
  }
}
#voice .swiper-pagination.voice-pagination {
  z-index: 1;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  #voice .swiper-pagination.voice-pagination {
    bottom: 0;
  }
}
#voice .swiper-pagination.voice-pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: #cacaca;
  opacity: 1;
}
#voice .swiper-pagination.voice-pagination .swiper-pagination-bullet-active {
  background: -webkit-gradient(linear, left top, right top, from(#0a87e7), to(#27b7f9));
  background: linear-gradient(to right, #0a87e7 0%, #27b7f9 100%);
}
#voice .p-voice__cta {
  margin-top: 4.5rem;
}

/* --------------------------------
faq
----------------------------------- */
#faq.p-faq {
  padding-block: 5rem;
}
@media only screen and (max-width: 767px) {
  #faq.p-faq {
    padding-block: 4.8rem 5rem;
  }
}
#faq .p-faq__body {
  margin-top: 4rem;
  max-width: 96rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  #faq .p-faq__body {
    margin-top: 3rem;
  }
}
#faq .p-faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media only screen and (max-width: 767px) {
  #faq .p-faq__items {
    gap: 2rem;
  }
}
#faq .p-faq__item {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 0.1rem solid #005EAB;
}
#faq .p-faq__item dt {
  background-color: #005EAB;
  padding-block: 1.2rem;
  padding-inline: 14px;
}
@media only screen and (max-width: 767px) {
  #faq .p-faq__item dt {
    padding-block: 1.1rem;
  }
}
#faq .p-faq__item dt h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  padding-left: 3.6rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #faq .p-faq__item dt h3 {
    font-size: 1.8rem;
  }
}
#faq .p-faq__item dt h3::before {
  position: absolute;
  content: "Q";
  top: 0.6rem;
  left: 0;
  font-size: 1.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  color: #005EAB;
  background-color: #fff;
  display: grid;
  place-content: center;
  border-radius: 0.4rem;
  width: 2.4rem;
  height: 2.4rem;
  padding-bottom: 0.1rem;
}
@media only screen and (max-width: 767px) {
  #faq .p-faq__item dt h3::before {
    padding-bottom: 0;
  }
}
#faq .p-faq__item dd {
  padding-block: 1.2rem;
  padding-inline: 14px;
}
#faq .p-faq__item .p-faq__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #003B6B;
  padding-left: 3.6rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #faq .p-faq__item .p-faq__text {
    font-size: 1.8rem;
  }
}
#faq .p-faq__item .p-faq__text::before {
  position: absolute;
  content: "A";
  top: 0.6rem;
  left: 0;
  font-size: 1.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  background-color: #005EAB;
  display: grid;
  place-content: center;
  border-radius: 0.4rem;
  width: 2.4rem;
  height: 2.4rem;
  padding-bottom: 0.1rem;
}
@media only screen and (max-width: 767px) {
  #faq .p-faq__item .p-faq__text::before {
    padding-bottom: 0;
    padding-top: 0.1rem;
  }
}
#faq .p-faq__item .p-faq__note {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0;
  color: #003B6B;
  padding-left: 3.6rem;
}
@media only screen and (max-width: 767px) {
  #faq .p-faq__item .p-faq__note {
    font-size: 1.4rem;
  }
}

/* --------------------------------
contact
----------------------------------- */
#contact.p-contact {
  padding-block: 8rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #contact.p-contact {
    padding-block: 5.2rem;
  }
}
#contact .p-contact__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#contact .p-contact__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#contact .p-contact__bg span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 59, 107, 0.92)), to(rgba(10, 159, 194, 0.92)));
  background: linear-gradient(to right, rgba(0, 59, 107, 0.92) 0%, rgba(10, 159, 194, 0.92) 100%);
  backdrop-filter: blur(1rem);
}
#contact .p-contact__body {
  position: relative;
  margin-top: 40px;
  max-width: 96rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 0.8rem;
  padding-block: 4rem;
}
@media only screen and (max-width: 767px) {
  #contact .p-contact__body {
    padding: 1.6rem;
  }
}
#contact .p-contact__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.4rem;
}
@media only screen and (max-width: 767px) {
  #contact .p-contact__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}
#contact .p-contact__tel-wrap {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.9rem;
}
@media only screen and (max-width: 767px) {
  #contact .p-contact__tel-wrap {
    margin-top: 1.5rem;
  }
}
#contact .p-contact__tel-wrap p {
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
#contact .p-contact__tel {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #contact .p-contact__tel {
    width: 100%;
  }
}
#contact .p-contact__tel p {
  position: relative;
  padding-left: 2.6rem;
}
@media only screen and (max-width: 767px) {
  #contact .p-contact__tel p {
    width: 100%;
    height: 7.5rem;
    padding-left: 0;
  }
}
#contact .p-contact__tel p::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.9rem;
  height: 1.9rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  #contact .p-contact__tel p::before {
    left: 1.2rem;
    background-color: #FC0001;
  }
}
#contact .p-contact__tel p a {
  font-family: "Inter", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 767px) {
  #contact .p-contact__tel p a {
    width: 100%;
    height: 100%;
    border-radius: 0.6rem;
    background-color: #fff;
    color: #FC0001;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 1.6rem;
    -webkit-box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.3);
            box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.3);
  }
}
#contact .p-contact__tel span {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0;
  padding-right: 1rem;
}
@media only screen and (max-width: 767px) {
  #contact .p-contact__tel span {
    color: #000;
  }
}

.footer_navi_inner li a {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .footer_navi_inner li a {
    font-size: 13px;
  }
}

.column_fixed_footer {
  display: none;
}

/* --------------------------------
utility
----------------------------------- */
.u-ib {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

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

.u-bg-blue {
  background-color: #005EAB;
}

.u-bg-green {
  background-color: #0A9FC2;
}

.u-blue {
  color: #005EAB;
}

.u-green {
  color: #0A9FC2;
}/*# sourceMappingURL=dr_agent.css.map */