@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
/*----------------------------------------------------------------------------------------
rest.scss
----------------------------------------------------------------------------------------*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

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

body {
  margin: 0;
}

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 {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  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] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          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,
embed,
object,
iframe {
  vertical-align: bottom;
}

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

[type=checkbox] {
  vertical-align: middle;
  margin-right: 5px;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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;
  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;
}

/* 使うときはasで変換
    プロパティに指定する際はasで変換したもの.任意の変数で指定 */
html {
  font-weight: 500;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.5;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  overflow-y: scroll;
}

body {
  position: relative;
  font-size: clamp(0.813rem, 0.767rem + 0.194vw, 1rem);
  padding-top: 70px;
  background-color: #fff;
  overflow-x: hidden;
  color: #333;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

iframe {
  max-width: 100%;
}

select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

input,
select,
textarea {
  background-color: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  padding: 10px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

/*----------------------------------------------------------------------------------------
header.scss
----------------------------------------------------------------------------------------*/
.l-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 150;
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
}
.l-header__logo {
  width: 20%;
  padding-left: 15px;
}

#is-mask {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.is-open #is-mask {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
  position: fixed;
  background-color: #000;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  top: 0;
  cursor: pointer;
  z-index: 10;
}

@media screen and (min-width: 769px) {
  #js-idCurrent01.is-current,
  #js-idCurrent02.is-current {
    /*border-bottom: 1px solid #333;*/
  }
  .l-header__nav {
    position: relative;
    width: 80%;
    max-width: 860px;
  }
  .l-header__nav p {
    position: absolute;
    top: 10px;
    right: 210px;
  }
  .l-header__list {
    width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 10px;
  }
  .l-header__item {
    cursor: pointer;
    display: block;
    font-weight: bold;
    font-size: 13px;
    padding-top: 20px;
  }
  .l-header__item--large {
    width: 18%;
  }
  .l-header__item--small {
    width: auto;
    min-width: 4em;
  }
  .l-header__itemhover {
    /*border-bottom: 1px solid #333;
    transition: 0.3s;*/
  }
  .l-header__item:nth-of-type(7) {
    text-align: center;
    place-items: center;
    display: -ms-grid;
    display: grid;
    background-color: #004EA3;
    color: #fff;
    font-weight: bold;
    width: 144px;
    padding: 15px 0;
    line-height: 22px;
    height: 70px;
  }
  .l-header__item.is-toggle a {
    border: none;
    padding-bottom: 0;
  }
  .l-header__link {
    display: block;
    padding-bottom: 8px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-weight: 400;
    padding: 0 10px 8px 10px;
    /*border-bottom: 1px solid #DDDDDD;*/
  }
  .l-header__link:hover {
    /*border-bottom: 1px solid #333;*/
  }
  .l-header__link.is-current {
    /*border-bottom: 1px solid #333;*/
  }
}
@media screen and (min-width: 1000px) {
  .l-header__item--large {
    width: 18%;
  }
  .l-header__item--small {
    width: auto;
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  /* hum */
  .l-header {
    height: 72px;
  }
  .l-header__logo {
    width: 33%;
  }
  .l-header__hum {
    display: block;
    position: fixed;
    top: 20px;
    right: 30px;
    width: 30px;
    height: 30px;
    z-index: 30;
    cursor: pointer;
  }
  .l-header__hum span {
    position: absolute;
    display: block;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #333;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 4px;
  }
  .l-header__hum span:nth-child(1) {
    top: 4px;
  }
  .l-header__hum span:nth-child(2) {
    top: 14px;
  }
  .l-header__hum span:nth-child(3) {
    bottom: 4px;
  }
  .l-header__nav {
    background-color: #fff;
    position: fixed;
    display: -ms-grid;
    display: grid;
    /*place-content: center;*/
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 15;
    width: 324px;
    text-align: center;
    right: -324px;
    top: 0;
    padding: 72px 34px 30px;
  }
  .l-header__nav-logo {
    width: 167px;
    text-align: left;
    margin-bottom: 20px;
  }
  .l-header__item {
    margin: 0;
    /*border-bottom: 1px solid #333;*/
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    padding: 1.7rem 1rem 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    display: block;
    margin: 0 auto;
    font-weight: 400;
    width: 59%;
    /*border-bottom: 1px solid #C8C9C8;*/
  }
  .l-header__item:nth-of-type(7) {
    text-align: center;
    place-items: center;
    display: -ms-grid;
    display: grid;
    background-color: #004EA3;
    color: #fff;
    font-weight: bold;
    width: 100%;
    padding: 15px;
    line-height: 22px;
    margin-top: 30px;
    font-size: 0.9em;
  }
  .l-header__nav-totop {
    margin: 20px auto;
  }
  .l-header__nav-logo02 {
    width: 212px;
    margin: 0 auto;
  }
  .is-open .l-header__hum span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(225deg);
            transform: translateY(10px) rotate(225deg);
  }
  .is-open .l-header__hum span:nth-child(2) {
    opacity: 0;
  }
  .is-open .l-header__hum span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-225deg);
            transform: translateY(-10px) rotate(-225deg);
  }
  .is-open .l-header__nav {
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  /* hum */
  .l-header {
    height: 72px;
  }
  .l-header__logo {
    width: 50%;
  }
}
/*----------------------------------------------------------------------------------------
footer.scss
----------------------------------------------------------------------------------------*/
/* footer */
.l-footer {
  text-align: center;
  /*&__tel {
      position: relative;
      padding-bottom: 40px;
      border-bottom: 1px solid #fff;
  }

  &__company {
      padding: 20px 0 30px;
      color: #fff;
      line-height: 30px;
  }

  &__adress {
      font-size: 0.8rem;
  }

  &__copy {
      padding: 15px 0;
      background-color: #fff;
  }*/
}
.l-footer__bg {
  background-image: url(../images/pc/common/footer_bg.png);
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}
.l-footer__links {
  width: 96%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-footer__link {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 14px 0;
  width: 280px;
  border: 1px solid #fff;
  border-radius: 30px;
  /*letter-spacing: 2px;*/
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: clamp(1rem, 0.642rem + 1.527vw, 1.375rem);
  font-size: 18px;
}
.l-footer__link:hover {
  background: #fff;
  color: #004ea3;
}
.l-footer__link:nth-child(1) {
  margin-right: 2%;
}
.l-footer__link:nth-child(2) {
  margin-right: 2%;
}
.l-footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px auto 20px;
}
.l-footer__company {
  text-align: left;
  color: #fff;
  padding: 0 40px 0 0;
  font-size: 16px;
  line-height: 1.3;
}
.l-footer__company span {
  font-size: 13px;
}
.l-footer__tel {
  border-left: 1px solid #fff;
  padding: 0 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer__copy {
  background: #fff;
  padding: 20px 0;
}
.l-footer__copy-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__privacy ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 13px;
  font-weight: 400;
}
.l-footer__privacy ul li:nth-child(1) {
  padding-right: 1em;
  border-right: 1px solid #333;
}
.l-footer__privacy ul li:nth-child(2) {
  padding-left: 1em;
  padding-right: 1em;
  border-right: 1px solid #333;
}
.l-footer__privacy ul li:nth-child(3) {
  padding-left: 1em;
}
.l-footer__privacy p {
  font-size: 11px;
}

.l-to-top {
  position: absolute;
  top: 90%;
  right: 0;
}

@media screen and (max-width: 768px) {
  .l-footer__bg {
    padding: 50px 17px;
  }
  .l-footer__copy {
    padding: 20px 17px;
  }
}
@media screen and (max-width: 480px) {
  .l-footer__bg {
    padding: 50px 0 30px;
  }
  .l-footer__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-footer__link {
    margin: 10px auto;
  }
  .l-footer__link:nth-child(1) {
    margin-right: auto;
  }
  .l-footer__link:nth-child(2) {
    margin-right: auto;
  }
  .l-footer__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-footer__company {
    width: 90%;
    padding: 10px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .l-footer__tel {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    padding: 0 0 150px;
    border-left: none;
    border-bottom: 1px solid #fff;
  }
  .l-footer__copy {
    padding: 30px 0 50px;
  }
  .l-footer__copy-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-footer__logo {
    text-align: center;
    margin: 0 auto;
  }
  .l-footer__privacy {
    width: 100%;
  }
  .l-footer__privacy ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 30px auto;
  }
  .l-to-top {
    position: absolute;
    top: 65%;
    right: 0;
    left: 0;
  }
  /*    &__telImg {
          width: 60%;
      }

      &__link:nth-child(1),
      &__link:nth-child(2) {
          margin-right: auto;
          margin-bottom: 20px;
      }

  }

  /*.l-to-top {
      position: unset;
      display: block;
      margin-top: 30px;
  }*/
}
/*----------------------------------------------------------------------------------------
container.scss
----------------------------------------------------------------------------------------*/
.l-out-container {
  max-width: 1280px;
  margin-inline: auto;
}

.l-short-container {
  max-width: 1126px;
  margin-inline: auto;
}

.l-default-container {
  position: relative;
  max-width: 1024px;
  margin-inline: auto;
}

.l-form-container {
  padding-top: 50px;
  max-width: 925px;
  margin-inline: auto;
}

.l-case-container {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}

.l-voice-slideContainer {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.l-funcTop-container {
  max-width: 970px;
  margin-inline: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.l-subVisual-container {
  max-width: 1280px;
  margin-inline: auto;
}

.l-contactContainer {
  max-width: 1050px;
  margin-inline: auto;
}

.l-contact-tabContainer {
  max-width: 820px;
  margin-inline: auto;
}

/*@media screen and (max-width:1350px) {
    .l-voice-slideContainer {
        max-width: 730px;
        padding-left: 15px;
        padding-right: 15px;
        margin-inline: auto;
    }
}

@media screen and (max-width:850px) {
    .l-voice-slideContainer {
        max-width: 520px;
        padding-left: 15px;
        padding-right: 15px;
        margin-inline: auto;
    }
}*/
/*----------------------------------------------------------------------------------------
top.scss
----------------------------------------------------------------------------------------*/
.p-top-common__heads {
  margin-bottom: 45px;
}
.p-top-common__head {
  margin-bottom: 20px;
}
.p-top-common__head--small {
  width: 372px;
  margin-inline: auto;
  color: #707070;
  position: relative;
  font-family: "Roboto Mono", monospace, "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 3px;
}
.p-top-common__head--small::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background-color: #999999;
  width: 120px;
  height: 1px;
}
.p-top-common__head--small::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  background-color: #999999;
  width: 120px;
  height: 1px;
}

.p-intro {
  background-color: #fff;
}

.p-mainVisual {
  position: relative;
  border-bottom: 20px solid #c7ccd1;
  /*padding-top: 40px;
  /*display: flex;*/
}
.p-mainVisual__txts {
  position: absolute;
  width: 380px;
  height: 190px;
  background: transparent;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  z-index: 10;
  bottom: -20px;
}
.p-mainVisual__head {
  position: relative;
  width: 380px;
  height: 190px;
}
.p-mainVisual__head img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-mainVisual__details {
  margin-left: 75px;
  margin-top: 35px;
  width: 65%;
}
.p-mainVisual__detail {
  display: block;
  margin-bottom: 20px;
}
.p-mainVisual__imgs {
  display: block;
  position: relative;
  z-index: 1;
  margin-left: -100px;
  max-width: 67%;
  width: 100%;
  height: 100%;
}
.p-mainVisual__bdr {
  height: 8px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, rgb(156, 162, 171)), color-stop(10%, rgb(0, 78, 163)), color-stop(90%, rgb(156, 162, 171)));
  background-image: linear-gradient(90deg, rgb(156, 162, 171) 10%, rgb(0, 78, 163) 10% 90%, rgb(156, 162, 171) 90%);
}
.p-mainVisual .swiper {
  position: relative;
  width: 100%;
  height: auto;
}
.p-mainVisual .swiper-slide p {
  position: absolute;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: right;
  bottom: 8%;
  right: 10%;
  width: 40%;
}
.p-mainVisual .swiper img {
  width: 100%;
}
.p-mainVisual .swiper .swiper-pagination {
  position: absolute;
  z-index: 10;
  text-align: right;
  padding-right: 10%;
}
.p-mainVisual .swiper .swiper-pagination-bullet {
  background: #fff;
  width: 44px;
  height: 2px;
  opacity: 1;
}
.p-mainVisual .swiper .swiper-pagination-bullet-active {
  background: #004EA3;
}

.p-voice {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(255, 255, 255)), color-stop(50%, rgb(199, 204, 209)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgb(199, 204, 209) 50%);
  z-index: 1;
  padding: 100px 0;
}
.p-voice__hgroup {
  width: 96%;
  position: relative;
  margin: 0 auto 35px;
  line-height: 40px;
  /*letter-spacing: 15px;*/
}
.p-voice__hgroup a {
  display: block;
  text-align: center;
  width: 224px;
  height: 46px;
  font-size: 0.9rem;
  line-height: 46px;
  border: 1px solid #707070;
  border-radius: 24px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.p-voice__hgroup a:hover {
  background: #333;
  color: #fff;
}
.p-voice__head {
  /*font-size: clamp(1.5rem, 1.136rem + 1.553vw, 3rem);*/
  margin-bottom: 10px;
}
.p-voice__subHead {
  font-size: clamp(1.25rem, 0.781vw + 0.875rem, 1.5rem);
  font-weight: 400;
}
.p-voice__slide_bg {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, transparent), color-stop(20%, #004ea3), color-stop(70%, #2467b0), color-stop(70%, transparent));
  background: linear-gradient(180deg, transparent, transparent 20%, #004ea3 20%, #2467b0 70%, transparent 70%);
}
.p-voice__item {
  width: 324px !important;
  height: 388px !important;
  position: relative;
}
.p-voice__img {
  position: relative;
  width: 100%;
}
.p-voice__txtbox {
  position: absolute;
  background: #fff;
  padding: 10px 30px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0, 45%);
          transform: translate(0, 45%);
}
.p-voice__txtbox a {
  display: none;
  text-align: center;
  color: #004ea3;
  margin: 20px auto;
}
.p-voice__val {
  font-size: 1.1rem;
  color: #004171;
  font-weight: 700;
  margin-bottom: 30px;
  min-height: 80px;
}
.p-voice__txt01 {
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 400;
}
.p-voice__txt02 {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0;
}
.p-voice__item-box {
  width: 316px;
  height: 380px;
  margin: 4px;
  background: #fff;
  border-radius: 12px 0px 12px 12px;
  position: relative;
  overflow: hidden;
}
.p-voice__item-box:hover {
  position: absolute;
  top: -1%;
  right: -1%;
  bottom: -1%;
  left: -1%;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.16);
}
.p-voice__item-box:hover .p-voice__txtbox {
  position: absolute;
  padding: 20px 30px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.p-voice__item-box:hover .p-voice__txtbox a {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 20px;
}
.p-voice__item-box:hover .p-voice__val {
  margin-bottom: 10px;
}
.p-voice__item-box:hover .p-voice__txt02 {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 1;
}
.p-voice .slick-initialized .slick-slide {
  display: block;
  margin-left: 0;
  margin-right: 15px;
}
.p-voice .slick-list {
  overflow: visible;
}
.p-voice .slick-arrow {
  top: 110%;
}
.p-voice .slick-prev:before,
.p-voice .slick-next:before {
  color: transparent;
  font-size: 40px;
}
.p-voice .slick-prev {
  left: auto;
  right: 5%;
  z-index: 1;
}
.p-voice .slick-next {
  right: 0%;
}

.slick-prev:before,
.slick-next:before {
  color: transparent;
  font-size: 40px;
}

.slick-prev:before {
  background: url(../images/pc/top/slick_arrow_01.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.slick-prev:hover::before {
  background: url(../images/pc/top/slick_arrow_01_on.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.slick-next:before {
  background: url(../images/pc/top/slick_arrow_02.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.slick-next:hover::before {
  background: url(../images/pc/top/slick_arrow_02_on.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.p-merit {
  position: relative;
  text-align: center;
  padding: 150px 0;
  background-color: #fff;
}
.p-merit__title.c-common-heading {
  color: #004EA3;
  font-size: clamp(2.25rem, 0.781vw + 1.875rem, 2.5rem);
  margin-bottom: 0;
}
.p-merit__subtitle {
  color: #004171;
  font-size: clamp(1.75rem, 0.781vw + 1.375rem, 2rem);
  font-weight: 700;
}
.p-merit__reference {
  font-size: 14px;
  color: #004171;
}
.p-merit__img {
  margin: 10px auto 30px;
}
.p-merit__img-logo {
  width: 70%;
  max-width: 413px;
}
.p-merit__img p {
  font-size: 18px;
  color: #004ea3;
  margin-bottom: 20px;
}
.p-merit__catch {
  font-size: clamp(0.875rem, 0.5vw + 0.725rem, 1.125rem);
  margin-top: 30px;
}

.parallax {
  height: 300px;
}

/* 背景画像 */
.parallax::before {
  background-image: url(../images/pc/top/top_parallax.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 89px;
  width: 100%;
  z-index: -1;
}

.p-reason {
  position: relative;
  text-align: center;
  padding: 240px 0 150px;
  background: #fff;
}
.p-reason__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.p-reason__bg img.bg {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 384px;
}
.p-reason__bg-inner {
  position: absolute;
  max-width: 1080px;
  margin: 0 auto;
  top: -70px;
  left: 0;
  right: 0;
}
.p-reason__bg img.obj {
  position: absolute;
  top: 0;
  right: 0;
}
.p-reason__heads {
  position: relative;
  text-align: left;
  width: 96%;
  margin: 0 auto;
}
.p-reason p {
  font-weight: 400;
  line-height: 1.7;
}
.p-reason__subtitle {
  font-size: 22px;
  font-weight: 500;
}
.p-reason__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 30px 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 80px auto 50px;
}
.p-reason__flex li {
  max-width: 332px;
}
.p-reason__flex li p {
  text-align: left;
  font-size: 18px;
  color: #004171;
  font-weight: 700;
}

.p-user {
  background-image: url(../images/pc/top/bg_02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 100px 0 35px;
}
.p-user__bg {
  position: relative;
  width: 440px;
  height: 516px;
  margin: 0 auto;
  background: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(106, 167, 255, 0.5)), to(rgba(176, 224, 255, 0.5)));
  background: linear-gradient(180deg, rgba(106, 167, 255, 0.5), rgba(176, 224, 255, 0.5));
  /* Note: currently only Safari supports backdrop-filter */
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  /* (plus shape's fill blended on top as a separate layer with 60.28% opacity) */
}
.p-user img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-logosTop {
  background: #F2F4F7;
  text-align: center;
  padding: 80px 15px 50px;
}
.p-logosTop__img {
  margin: 0 auto 30px;
}
.p-logosTop__inner {
  background-color: #fff;
  padding: 50px 50px 50px;
  margin: 50px auto 0;
}
.p-logosTop__head {
  position: relative;
  font-size: clamp(1rem, 0.879rem + 0.518vw, 1.5rem);
  width: 86%;
  margin: 0 auto 30px;
}
.p-logosTop__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background-color: #004171;
  width: 180px;
  height: 1px;
}
.p-logosTop__head::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  background-color: #004171;
  width: 180px;
  height: 1px;
}
.p-logosTop__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
.p-logosTop__txt {
  font-size: clamp(0.875rem, 0.756rem + 0.509vw, 1rem);
  margin-top: 10px;
}
.p-logosTop img.circle {
  margin: 0 auto 20px;
}

@media screen and (max-width: 768px) {
  .p-top-common__head {
    line-height: 35px;
  }
  .p-intro {
    background-position: inherit;
  }
  .p-voice__list {
    width: 100%;
  }
  .p-voice {
    padding: 80px 0;
  }
  .p-voice__hgroup {
    line-height: 30px;
  }
  .p-voice__head {
    width: 21%;
    max-width: 158px;
  }
  .p-voice .slick-prev {
    right: 17%;
  }
  .p-voice .slick-next {
    right: 11%;
  }
  .p-merit {
    padding: 80px 17px;
  }
  .p-reason {
    padding: 240px 17px 150px;
  }
  .p-logosTop__head::before {
    width: 100px;
    top: 25px;
  }
  .p-logosTop__head::after {
    width: 100px;
    top: 25px;
  }
  .p-logosTop__list {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  .p-top-common__heads {
    margin-bottom: 35px;
  }
  .p-top-common__heads--small {
    width: auto;
  }
  .p-top-common__heads--small::after {
    right: 25px;
    width: 80px;
  }
  .p-top-common__heads--small::before {
    left: 25px;
    width: 80px;
  }
  .p-intro {
    height: 80vh;
  }
  .p-mainVisual {
    height: 80vh;
  }
  .p-mainVisual__txts {
    width: 100%;
    height: 190px;
  }
  .p-mainVisual__head {
    width: 100%;
    height: 190px;
  }
  .p-mainVisual .swiper-slide p {
    width: 100%;
    bottom: 40%;
  }
  .p-voice {
    padding: 50px 0 80px;
  }
  .p-voice__hgroup {
    padding: 0 17px 50px;
  }
  .p-voice__head {
    width: 50%;
    max-width: 158px;
  }
  .p-voice .slick-prev {
    right: auto;
    left: 35%;
  }
  .p-voice .slick-next {
    right: 35%;
  }
  .p-merit {
    padding: 80px 17px;
  }
  .p-merit__title.c-common-heading {
    margin-bottom: 20px;
    line-height: 44px;
    font-size: 30px;
  }
  .p-merit__subtitle {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .p-merit__reference {
    font-size: 13px;
  }
  .p-merit__catch {
    font-size: 20px;
    margin-top: 0;
  }
  .parallax::before {
    background-image: url(../images/sp/top/top_parallax.png);
  }
  .p-reason {
    padding: 170px 17px 50px;
  }
  .p-reason .p-common-heading {
    font-size: 32px;
  }
  .p-reason__bg img.obj {
    right: 0;
  }
  .p-reason__flex {
    margin: 30px auto;
  }
  .p-user {
    background-image: url(../images/sp/top/bg_02.png);
  }
  .p-user__bg {
    width: 332px;
    height: 516px;
  }
  .p-logosTop__head::before {
    width: 100%;
    top: -3px;
  }
  .p-logosTop__head::after {
    width: 100%;
    top: auto;
    bottom: -3px;
  }
  .p-logosTop__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/*----------------------------------------------------------------------------------------
function.scss
----------------------------------------------------------------------------------------*/
.p-function-visual__foot {
  position: relative;
  background-color: #fff;
  max-width: 536px;
  padding: 30px 40px 30px 50px;
  margin-top: -50px;
  z-index: 1;
}
.p-function-visual__foot-img {
  position: absolute;
  right: 0;
  bottom: 9%;
}
.p-function-visual__update {
  color: #004171;
  margin-bottom: 30px;
  font-size: 20px;
}
.p-function-visual__define {
  color: #004171;
  max-width: 256px;
  text-align: center;
  background-color: #DDE9F8;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 5px;
}
.p-function-visual__define a {
  display: block;
  padding: 2px;
}
.p-function-visual__item {
  margin-bottom: 15px;
  color: #333;
  font-size: 12px;
  font-weight: 400;
  margin-left: 1em;
}
.p-function-visual .p-func-arrow {
  display: inline-block;
  margin: 0 1em;
}

.p-function-cont {
  padding: 80px 0 1px;
}
.p-function-cont__head {
  background-color: #004EA3;
  text-align: center;
  color: #fff;
  font-size: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  /*border-radius: 30px;*/
}
.p-function-cont__list {
  width: 96%;
  max-width: 840px;
  margin: 60px auto 0px;
}
.p-function-cont__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 70px auto 50px;
}
.p-function-cont__img {
  width: 53%;
  max-width: 438px;
  text-align: center;
}
.p-function-cont__txts {
  width: 44%;
  margin-left: 3%;
}
.p-function-cont__subHead {
  font-size: 20px;
  font-weight: 500;
  color: #004EA3;
  margin-bottom: 10px;
}
.p-function-cont__txt {
  line-height: 2.1875;
  font-weight: 400;
  font-size: 16px;
}
.p-function-cont__txt small {
  display: inline-block;
  line-height: 1.5;
}

.p-function-cont02-intro {
  width: 96%;
  max-width: 960px;
  background-color: #fff;
  padding: 50px 10%;
  margin: 25px auto 60px;
  border: 1px solid #004ea3;
}
.p-function-cont02-intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
.p-function-cont02-intro__txts {
  width: 65%;
}
.p-function-cont02-intro__txt {
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
}
.p-function-cont02-intro__heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-function-cont02-intro__heading span {
  color: #004ea3;
}
.p-function-cont02-intro__img {
  width: 30%;
  text-align: center;
}

.p-function-cont01 {
  background-color: #fff;
  padding-top: 450px;
  margin-top: -400px;
}

.p-function-cont02 {
  background-color: #F2F4F7;
}

.p-function-cont03 {
  background-color: #fff;
}

.p-function-cont04 {
  background-color: #fff;
}

.p-function-cont05 {
  background-color: #F2F4F7;
  padding-bottom: 30px;
}

.p-function-cont06 {
  background-color: #fff;
  padding-bottom: 30px;
}

.p-function-cont07 {
  background-color: #F2F4F7;
  padding-bottom: 80px;
}

.p-function-img {
  position: relative;
  margin: 0 auto;
  height: 233px;
  width: 100%;
  background-image: url(../images/pc/function/functionImg02.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-function-img img {
  display: none;
}
.p-function-img .p-function-img-title {
  position: absolute;
  display: block;
  width: 420px;
  right: 5%;
  bottom: 0;
}

@media (max-width: 1280px) {
  .p-function-img {
    background-image: none;
    height: auto;
  }
  .p-function-img img {
    display: block;
    width: 100%;
  }
  .p-function-img .p-function-img-title {
    display: none;
  }
}
@media (min-width: 769px) {
  .p-function-cont01__bg {
    background-image: url(../images/pc/function/functionCont_bg01.png);
    background-position: right 30px;
    background-size: auto;
    background-repeat: no-repeat;
  }
  .p-function-cont02__bg {
    background-image: url(../images/pc/function/functionCont_bg02.png);
    background-position: right 30px;
    background-size: auto;
    background-repeat: no-repeat;
  }
  .p-function-cont03__bg {
    background-image: url(../images/pc/function/functionCont_bg03.png);
    background-position: right 30px;
    background-size: auto;
    background-repeat: no-repeat;
  }
  .p-function-cont04__bg {
    background-image: url(../images/pc/function/functionCont_bg04.png);
    background-position: right 30px;
    background-size: auto;
    background-repeat: no-repeat;
  }
  .p-function-cont05__bg {
    background-image: url(../images/pc/function/functionCont_bg05.png);
    background-position: right 30px;
    background-size: auto;
    background-repeat: no-repeat;
  }
  .p-function-cont06__bg {
    background-image: url(../images/pc/function/functionCont_bg06.png);
    background-position: right 30px;
    background-size: auto;
    background-repeat: no-repeat;
  }
  .p-function-cont07__bg {
    background-image: url(../images/pc/function/functionCont_bg07.png);
    background-position: right 30px;
    background-size: auto;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .p-function-visual__foot {
    margin-top: 1px;
    margin-bottom: 0;
    margin-right: 15px;
    padding: 30px;
  }
  .p-function-visual__foot-img {
    position: relative;
    right: 0;
    bottom: 9%;
    text-align: right;
  }
  .p-function-cont {
    padding: 80px 0 1px;
  }
  .p-function-cont__list {
    margin: 60px 17px 0px;
  }
  .p-function-cont02-intro {
    margin: 25px 17px 60px;
    padding: 50px;
  }
  .p-function-cont02-intro__txts {
    width: 70%;
  }
  .p-function-cont02-intro__img {
    width: 28%;
  }
  .p-function-cont01 {
    background-color: #fff;
    padding-top: 450px;
    margin-top: -400px;
  }
}
/*@media (min-width: 481px) and (max-width: 768px) {
    .p-function-visual__foot {
        @include mix.p-vw(padding-right, 30, 768);
        @include mix.p-vw(padding-left, 40, 768);
    }
}*/
@media screen and (max-width: 480px) {
  .p-function-visual__foot {
    margin: 0 17px 0 0;
    padding: 30px 10px 20px 30px;
  }
  .p-function-visual__update {
    font-size: 18px;
  }
  .p-function-visual__item a {
    line-height: 2;
  }
  .p-function-cont {
    padding: 1px 0 1px;
  }
  .p-function-cont__head {
    font-size: 20px;
  }
  .p-function-cont__list {
    margin: 30px auto 0;
  }
  .p-function-cont__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-function-cont__img {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-function-cont__txts {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .p-function-cont__txt {
    line-height: 26px;
    margin-bottom: 10px;
  }
  .p-function-cont02-intro {
    margin: 10px auto 20px;
    padding: 30px 15px;
  }
  .p-function-cont02-intro__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .p-function-cont02-intro__txts {
    width: 100%;
  }
  .p-function-cont02-intro__img {
    width: 100%;
  }
  .p-function-cont01 {
    background-color: #fff;
    padding-top: 450px;
    margin-top: -400px;
  }
}
/*----------------------------------------------------------------------------------------
cost.scss
----------------------------------------------------------------------------------------*/
.p-cost__visualHead {
  padding-top: 70px;
  font-size: 20px;
  width: 96%;
  margin: 0 auto 10px;
}
.p-cost__visualHead img {
  margin-right: 1em;
}
.p-cost__visual img.main_img {
  height: 152px;
  width: 100%;
}
.p-cost__contents {
  padding-top: 85px;
  padding-bottom: 100px;
  padding: 85px 0 100px;
  text-align: center;
}
.p-cost__cont01 {
  margin-bottom: 70px;
}
.p-cost__cont01-img {
  width: 96%;
  margin: 30px auto 0;
}

.p-cost-common__heading {
  text-align: center;
  background-color: #DDE9F8;
  color: #004171;
  padding: 15px 40px;
  font-size: 20px;
}

.p-cost-table {
  text-align: left;
  width: 96%;
  margin: 20px auto;
}
.p-cost-table__column {
  border-bottom: 1px dotted #969696;
}
.p-cost-table__column td:not(:last-child) {
  font-weight: 700;
  font-size: 18px;
}
.p-cost-table__column td:last-child {
  font-weight: 400;
  font-size: 14px;
}
.p-cost-table__cont {
  padding: 30px 15px;
  vertical-align: middle;
}
.p-cost-table__cont--blue {
  color: #004171;
}
.p-cost-table th {
  font-size: 14px;
  font-weight: 500;
  background: #F4F4F4;
  padding: 5px 15px;
  border-right: 5px solid #fff;
}
.p-cost-table th:last-child {
  border-right: none;
}

@media screen and (max-width: 768px) {
  .p-cost-table-wrap {
    width: 96%;
    margin: 0 auto;
    overflow-x: scroll;
    padding-bottom: 30px;
  }
  .p-cost-common__caution {
    margin-top: 10px;
    text-align: left;
    max-width: 95%;
    margin-inline: auto;
  }
  .p-cost-table {
    white-space: nowrap;
  }
}
@media screen and (max-width: 480px) {
  .p-cost__visualHead {
    padding-top: 40px;
    margin-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .p-cost img.main_img {
    height: 120px;
  }
  .p-cost__contents {
    padding-top: 50px;
  }
  .p-cost__cont01 {
    margin-bottom: 50px;
  }
  .p-cost-common__heading {
    padding: 15px 20px;
  }
  .p-cost-common__caution {
    padding: 0 15px;
    max-width: 100%;
  }
  .p-cost-table {
    max-width: 100%;
  }
  .p-cost-table-wrap {
    padding: 0 5px;
  }
}
/*----------------------------------------------------------------------------------------
cost.scss
----------------------------------------------------------------------------------------*/
.p-question__visualHead {
  padding-top: 70px;
  font-size: 20px;
  width: 96%;
  margin: 0 auto 10px;
}
.p-question__visualHead img {
  margin-right: 1em;
}
.p-question__visual img.main_img {
  height: 152px;
  width: 100%;
}
.p-question__contentsInner {
  width: 96%;
  margin: 0 auto;
}
.p-question__column {
  margin-top: 80px;
}
.p-question__columnHeading {
  padding-left: 15px;
  position: relative;
  text-align: left;
  background-color: #DDE9F8;
  color: #004171;
  /*padding: 15px 10%;
  font-size: clamp(1.125rem, 1.064rem + 0.259vw, 1.375rem);*/
  font-size: 22px;
  font-weight: 700;
  padding: 15px 60px;
  line-height: 28px;
}
.p-question__columnHeading::before {
  content: "Q.";
  position: absolute;
  left: 20px;
}
.p-question__list {
  padding: 25px 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.p-question__definition span {
  background-color: #004171;
  color: #DDE9F8;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-size: 24px;
}
.p-question__detail {
  line-height: 1.875;
  font-size: 16px;
  font-weight: 400;
}

.p-question-tables {
  width: 94%;
  max-width: 964px;
  margin-inline: auto;
  margin: 40px auto 150px;
}
.p-question-tables__heading {
  margin-bottom: 30px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-question-tables__heading span:first-of-type {
  display: inline-block;
  text-align: center;
  width: 25%;
  background-color: #004171;
  color: #fff;
  padding: 5px;
}
.p-question-tables__heading span:first-of-type::before {
  content: "▼";
  display: inline-block;
  padding-right: 5px;
}
.p-question-tables__heading span:last-of-type {
  background-color: #DDDDDD;
  width: 75%;
}
.p-question-tables__subHeading {
  color: #004171;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
}
.p-question-tables__txt {
  margin-bottom: 30px;
}

.p-question-table-wrap {
  margin-bottom: 50px;
}
.p-question-table-wrap--end {
  margin-bottom: 0;
  padding-bottom: 0;
}

.p-question-table {
  width: 100%;
}
.p-question-table th,
.p-question-table td {
  border: 1px solid #231815;
  vertical-align: middle;
  font-size: 15px;
  font-weight: 400;
}
.p-question-table th {
  padding: 5px;
  background: #F0F0F0;
}
.p-question-table th:first-of-type {
  border: none;
  background: none;
  width: 15%;
}
.p-question-table__left {
  background-color: #DDE9F8;
  text-align: center;
  padding: 5px;
}
.p-question-table__other {
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .p-question__column {
    margin-top: 40px;
  }
  .p-question__columnHeading {
    padding: 15px 20px 15px 60px;
  }
  .p-question-tables__heading span:first-of-type {
    width: 40%;
  }
  .p-question-tables__caution {
    margin-bottom: 15px;
    text-align: left;
  }
  .p-question-table-wrap {
    overflow-x: scroll;
    padding-bottom: 10px;
  }
  .p-question-table {
    white-space: nowrap;
  }
}
@media screen and (max-width: 480px) {
  .p-question__visualHead {
    padding-top: 40px;
    margin-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .p-question img.main_img {
    height: 120px;
  }
  .p-question__contentsInner {
    padding-top: 10px;
  }
  .p-question__columnHeading {
    font-size: 20px;
    padding: 15px 15px 15px 40px;
  }
  .p-question__columnHeading::before {
    left: 10px;
  }
  .p-question__list {
    padding: 25px 15px 0 20px;
  }
  .p-question__definition span {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .p-question-tables {
    margin: 40px auto 100px;
  }
  .p-question-tables__heading {
    font-size: 16px;
  }
  .p-question-tables__heading span:first-of-type {
    width: 300px;
  }
}
/*----------------------------------------------------------------------------------------
merit.scss
----------------------------------------------------------------------------------------*/
/* common */
.p-merit-subHead01 {
  position: relative;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 70px;
}
.p-merit-subHead01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: #004EA3;
}
.p-merit-subHead01.type {
  color: #fff;
}

.p-merit-subHead02 {
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
  padding: 10px 0;
  color: #fff;
  font-size: 24px;
  background: #004ea3;
}

/* merit-visual */
.p-merit-visual {
  padding-bottom: 0;
}
.p-merit-visual__foot {
  position: relative;
  background-color: #fff;
  max-width: 536px;
  padding: 30px 50px;
  margin-top: -50px;
  z-index: 1;
}
.p-merit-visual__item {
  margin-bottom: 15px;
  color: #333;
  font-size: 12px;
  font-weight: 400;
}
.p-merit-visual__item:last-of-type {
  margin-bottom: 0;
}
.p-merit-visual .p-merit-arrow {
  color: #004EA3;
  display: inline-block;
  margin-left: 10px;
}

/*style*/
.p-style {
  background-color: #fff;
  padding: 120px 0 100px;
}
.p-style__inner {
  width: 96%;
  max-width: 840px;
  margin: 0 auto;
}
.p-style__cont {
  margin: 50px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-style__cont01 {
  width: 41%;
  max-width: 340px;
}
.p-style__cont02 {
  width: 56%;
  margin-left: 5%;
}
.p-style__cont03 {
  width: 56%;
  margin-right: 5%;
}
.p-style__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-style__flex img {
  width: 78px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 1em;
}
.p-style__flex div {
  padding-top: 10px;
  width: 80%;
}
.p-style__title {
  color: #004ea3;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 20px;
}
.p-style__txt {
  font-weight: 400;
  line-height: 1.5;
}

.p-type {
  background: rgba(0, 78, 163, 0.5);
  padding: 150px 0 100px;
}
.p-type__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin: 50px auto 20px;
}
.p-type__cnts {
  text-align: center;
  width: 240px;
}
.p-type__cnts img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-type__cnts h3 {
  color: #fff;
  font-size: 18px;
  border-bottom: 1px solid #004171;
  margin: 5px auto;
  padding: 3px 0;
}
.p-type__cnts p {
  color: #fff;
  text-align: left;
  font-size: 14px;
  padding: 3px 10px;
}
.p-type__cross {
  text-align: center;
  margin: 20px auto 30px;
}
.p-type__list {
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
}
.p-type .slick-list {
  /*overflow: visible;*/
}
.p-type .slick-arrow {
  top: 50%;
}
.p-type .slick-prev {
  left: -5%;
  z-index: 1;
}
.p-type .slick-next {
  right: -5%;
}
.p-type .slick-dots {
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
.p-type .slick-dots li {
  width: 104px;
  margin: 0;
}
.p-type .slick-dots li button {
  width: 100%;
  padding: 0;
}
.p-type .slick-dots li button:before {
  width: 100%;
  height: 2px;
  background-color: #004171;
}
.p-type .slick-dots li.slick-active button:before {
  background-color: #fff;
}

/*alignment*/
.p-alignment {
  background-color: #fff;
  padding: 160px 0 90px;
}
.p-alignment__inner {
  text-align: center;
}
.p-alignment p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  margin: 20px auto 50px;
}
.p-alignment__flex {
  width: 96%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}

/* api */
.p-api {
  background-color: #F2F4F7;
  padding: 160px 0;
}
.p-api__inner {
  text-align: center;
}
.p-api p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  margin: 20px auto 50px;
}
.p-api__chart {
  width: 96%;
  max-width: 840px;
  margin: 0 auto;
}

/* safety01 */
.p-safety01 {
  background-color: #fff;
  padding: 100px 0 50px;
}
.p-safety01__inner {
  max-width: 840px;
  margin: 0 auto;
}
.p-safety01__flex {
  width: 96%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  margin: 10px auto 30px;
}
.p-safety01__txt {
  font-size: clamp(0.875rem, 0.756rem + 0.509vw, 1rem);
  line-height: 2.1875;
  font-weight: 400;
  width: 50%;
}
.p-safety01__MidImg {
  text-align: center;
  width: 50%;
}
.p-safety01__img {
  width: 96%;
  text-align: center;
  margin: 50px auto;
}
.p-safety01__lists {
  width: 96%;
  max-width: 860px;
  margin-inline: auto;
}
.p-safety01__subHeading {
  position: relative;
  margin-bottom: 25px;
}
.p-safety01__listTxt {
  display: none;
  width: 86%;
  margin-inline: auto;
  padding-bottom: 45px;
  line-height: 35px;
  font-size: 0.9rem;
  font-weight: 400;
}
.p-safety01__btn {
  position: absolute;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  cursor: pointer;
}
.p-safety01__btn--close {
  display: none;
}
.p-safety01__btn.js-tglActive .p-safety01__btn--open {
  display: none;
}
.p-safety01__btn.js-tglActive .p-safety01__btn--close {
  display: block;
}

/* safety02 */
.p-safety02 {
  background-color: #fff;
  padding: 50px 0 100px;
}
.p-safety02__txt {
  padding: 35px 0;
  line-height: 35px;
}
.p-safety02__img {
  position: relative;
  text-align: center;
  max-width: 597px;
  margin: 50px auto 0;
}
.p-safety02 .p-touchCommon {
  position: absolute;
}
.p-safety02 .p-touchCommon__design {
  position: relative;
  width: 6vw;
  max-width: 60px;
  display: inline-block;
  color: #40D89D;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-safety02 .p-touchCommon__design::before {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.p-safety02 .p-touchCommon__design::before, .p-safety02 .p-touchCommon__design::after {
  content: "";
  position: absolute;
  left: -25%;
  top: -25%;
  border: 1px solid #29A1F8;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  opacity: 1;
  -webkit-animation: 1s circleanime linear infinite;
          animation: 1s circleanime linear infinite;
}
.p-safety02__img--touch01 {
  left: 20%;
  top: 39%;
}
.p-safety02__img--touch02 {
  left: 20%;
  bottom: 8%;
}
.p-safety02__caution {
  max-width: 597px;
  margin-inline: auto;
  margin-top: 25px;
  line-height: 30px;
  font-weight: 400;
}

/*波形のアニメーション*/
@-webkit-keyframes circleanime {
  0% {
    -webkit-transform: scale(0.68);
            transform: scale(0.68);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes circleanime {
  0% {
    -webkit-transform: scale(0.68);
            transform: scale(0.68);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}
/* modal */
.p-modal {
  display: none;
}
.p-modal__headding {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 1.2rem;
}
.p-modal__txt {
  line-height: 30px;
}

.p-merit-img {
  position: relative;
  margin: 0 auto;
  height: 233px;
  width: 100%;
  background-image: url(../images/pc/merit/meritImg02.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-merit-img img {
  display: none;
}
.p-merit-img .p-merit-img-title {
  position: absolute;
  display: block;
  width: 254px;
  right: 18%;
  bottom: 0;
}

@media (max-width: 1280px) {
  .p-merit-img {
    background-image: none;
    height: auto;
  }
  .p-merit-img img {
    display: block;
    width: 100%;
  }
  .p-merit-img .p-merit-img-title {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-merit-visual__foot {
    margin-top: 1px;
    margin-bottom: 25px;
    margin-right: 15px;
    padding: 30px;
  }
  .p-merit-subHead02 {
    padding: 20px 0;
  }
  /*style*/
  .p-style {
    background-color: #fff;
    padding: 120px 17px 100px;
  }
  .p-type {
    padding: 150px 17px 100px;
  }
  /*alignment*/
  .p-alignment {
    background-color: #fff;
    padding: 160px 0 90px;
  }
  /* api */
  .p-api {
    background-color: #F2F4F7;
    padding: 160px 0;
  }
  .p-api__chart {
    padding: 0 17px;
  }
  /* safety01 */
  .p-safety01 {
    background-color: #fff;
    padding: 100px 17px 50px;
  }
  /* safety02 */
  .p-safety02 {
    background-color: #fff;
    padding: 50px 17px 100px;
  }
}
@media screen and (max-width: 480px) {
  .p-merit-subHead01 {
    margin-bottom: 30px;
  }
  .p-merit-subHead02 {
    font-size: 16px;
    padding: 10px;
  }
  .p-merit-visual__foot {
    margin: 0 17px 0 0;
  }
  .p-style {
    padding: 60px 0 50px;
  }
  .p-style__cont {
    margin: 30px 17px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-style__cont01 {
    width: 100%;
    max-width: 340px;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-style__cont02 {
    width: 100%;
    padding: 10px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .p-style__cont03 {
    width: 100%;
    padding: 10px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .p-style__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-style__flex div {
    padding-top: 10px;
    width: 100%;
  }
  .p-type {
    padding: 50px 17px 50px;
  }
  .p-type__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-type__cnts {
    width: 90%;
    margin-bottom: 30px;
  }
  .p-type__cnts img {
    width: 130px;
  }
  .p-type__cross {
    width: 72px;
  }
  .p-type .slick-dots li {
    width: 30px;
  }
  .p-alignment {
    padding: 80px 0 50px;
  }
  .p-alignment p {
    font-size: 16px;
    margin: 20px auto;
  }
  .p-api {
    padding: 40px 0;
  }
  .p-api p {
    font-size: 16px;
    margin: 20px auto 20px;
  }
  .p-safety01 {
    padding: 50px 17px 0;
  }
  .p-safety01__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    margin: 10px auto;
  }
  .p-safety01__txt {
    width: 100%;
  }
  .p-safety01__MidImg {
    width: 100%;
  }
  .p-safety01__img {
    margin: 30px auto;
  }
  .p-safety01__lists {
    max-width: 860px;
    margin-inline: auto;
  }
  .p-safety01__subHeading {
    margin-bottom: 10px;
  }
  .p-safety01__listTxt {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .p-safety02 {
    background-color: #fff;
    padding: 0 17px 50px;
  }
  .p-safety02__img {
    margin: 20px auto 0;
  }
  .p-safety02 .p-touchCommon {
    position: absolute;
  }
  .p-safety02 .p-touchCommon__design {
    width: 30px;
  }
  .p-modal__heading {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .p-modal__txt {
    font-size: 0.8rem;
  }
}
/*----------------------------------------------------------------------------------------
flow.scss
----------------------------------------------------------------------------------------*/
.p-flow__visualHead {
  padding-top: 70px;
  font-size: 20px;
  width: 96%;
  margin: 0 auto 10px;
}
.p-flow__visualHead img {
  margin-right: 1em;
}
.p-flow__visual img.main_img {
  height: 152px;
  width: 100%;
}
.p-flow__contents {
  padding: 50px 0;
}
.p-flow__flex {
  width: 96%;
  max-width: 840px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 50px;
}
.p-flow__img {
  width: 200px;
  margin-bottom: 3%;
}
.p-flow__img img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-flow__txt {
  width: 76%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 3%;
}
.p-flow__box {
  width: 100%;
  height: 160px;
  margin: auto 0 auto 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-flow__box img {
  width: 61px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-flow__box-txt {
  margin: 20px 0 0 20px;
}
.p-flow__box-txt h3 {
  font-size: 24px;
  color: #004EA3;
  font-weight: 500;
  line-height: 35px;
}
.p-flow__box-txt p {
  font-weight: 400;
  line-height: 2;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .p-flow__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
  .p-flow__img {
    width: 150px;
    height: 100%;
  }
  .p-flow__txt {
    width: 78%;
    margin-top: 5%;
  }
  .p-flow__box {
    height: 145px;
    margin: auto 0 auto 25px;
  }
  .p-flow__box img {
    width: 51px;
  }
  .p-flow__box-txt {
    margin: 15px 0 0 20px;
  }
  .p-flow__box-txt h3 {
    font-size: 20px;
  }
  .p-flow__box-txt p {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .p-flow__visualHead {
    padding-top: 40px;
    margin-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .p-flow img.main_img {
    height: 120px;
  }
  .p-flow__flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
  .p-flow__img {
    width: 104px;
    height: 100%;
    margin-bottom: 0;
  }
  .p-flow__txt {
    width: 250px;
    margin: 5% 0 17%;
  }
  .p-flow__box {
    display: block;
    height: 140px;
    margin: auto 0 auto 20px;
  }
  .p-flow__box.num01 {
    height: 200px;
  }
  .p-flow__box img {
    width: 51px;
  }
  .p-flow__box-txt {
    width: 100%;
    margin: 0;
  }
  .p-flow__box-txt h3 {
    font-size: 20px;
    line-height: 29px;
  }
  .p-flow__box-txt p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
/*----------------------------------------------------------------------------------------
form.scss
----------------------------------------------------------------------------------------*/
/* contact */
.p-contact.is-toggle {
  display: none;
}

.p-contact.is-toggle::-webkit-scrollbar {
  display: none;
}

.p-contact__toggle.is-close {
  display: block;
  position: absolute;
  top: 115px;
  right: 90px;
  width: 30px;
  height: 30px;
  z-index: 30;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.p-contact__toggle.is-close span {
  position: absolute;
  display: block;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 4px;
}

.p-contact__toggle.is-close span:nth-child(1) {
  top: 4px;
  -webkit-transform: translateY(10px) rotate(225deg);
          transform: translateY(10px) rotate(225deg);
  background-color: #000;
}

.p-contact__toggle.is-close span:nth-child(2) {
  -webkit-transform: translateY(-10px) rotate(-225deg);
          transform: translateY(-10px) rotate(-225deg);
  background-color: #000;
  bottom: 4px;
}

.p-contact-fixed {
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 100;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.p-contact {
  padding-top: 100px;
  padding-bottom: 180px;
  background-color: #fff;
}

.p-contact__flex {
  border: 1px solid #004ea3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 96%;
  margin: 0 auto 30px;
}
.p-contact__flex p {
  font-size: clamp(0.875rem, 0.781vw + 0.5rem, 1.125rem);
  color: #004ea3;
  font-weight: 400;
  padding-left: 30px;
}

.p-contact__head {
  font-family: "Roboto Mono", monospace, "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1rem, 1.563vw + 0.25rem, 1.5rem);
  color: #004ea3;
  font-weight: 300;
  padding: 5px 30px;
  /*padding-bottom: 75px;
  /*letter-spacing: 5px;*/
  border-right: 1px solid;
  -o-border-image: linear-gradient(to bottom, #004EA3 80%, transparent 80%) 1;
     border-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, #004EA3), color-stop(80%, transparent)) 1;
     border-image: linear-gradient(to bottom, #004EA3 80%, transparent 80%) 1;
}

.p-contact__head02 {
  text-align: center;
  padding-bottom: 10px;
  font-size: clamp(1.2rem, 1.006rem + 0.828vw, 2rem);
  line-height: 50px;
  color: #333333;
}

.p-contact__head02--small {
  font-size: clamp(0.8rem, 0.751rem + 0.207vw, 1rem);
  text-align: center;
  padding-bottom: 40px;
}

/* tab切り替え */
.p-tab {
  border-bottom: 2px solid #DDDDDD;
}

.p-contact__tab {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-contact__tab li {
  width: 32%;
}

.p-contact__tab label {
  display: block;
  background: #C8C9C8;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
}

.p-contact__tab input[name=form01]:checked + label {
  background: #004EA3;
  color: #fff;
}

.p-contact__tab input[name=form02]:checked + label {
  background: #004EA3;
  color: #fff;
}

.p-contact__tab input,
.p-tab02,
.p-tab03,
.p-tab05,
.p-tab06 {
  display: none;
}

/* formの内容 */
.p-form__content {
  margin-bottom: 15px;
}

.p-form__content label {
  color: #333333;
  width: 160px;
  display: inline-block;
  text-align: left;
  margin-right: 10px;
  font-size: 1rem;
}

.p-form__content input,
.p-form__content select {
  border: 1px solid #DDDDDD;
  background-color: #E4F2F8;
  font-size: 0.9rem;
  height: 40px;
}

.p-form__content textarea {
  border: 1px solid #DDDDDD;
  background-color: #E4F2F8;
  height: 120px;
}

.p-form__content .p-txt-large {
  width: 590px;
}

.p-form__content .p-txt-little {
  width: 293px;
}

input[type=date] {
  position: relative;
  font-size: 0.8rem;
}

.p-form__last {
  padding-bottom: 50px;
  border-bottom: 2px solid #DDDDDD;
}

.p-agreement {
  text-align: center;
  font-size: 1rem;
  display: block;
  margin: 50px 0 30px;
}

/* カレンダー */
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}

input[type=date]::after {
  content: "";
  background-image: url(../images/top/ico_calendar.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 住所 */
.p-ajaxzip3,
.p-ajaxzip4 {
  background-color: #CFCFCF;
  border: 1px solid #707070;
  height: 35px;
  width: 88px;
  text-align: center;
  padding: 1%;
  font-size: 0.9rem;
}

.p-pref {
  border: 1px solid #DDDDDD;
  background-color: #ECFAF1;
  height: 35px;
  width: 211px;
}

.p-zip-area {
  margin-bottom: 7px;
}

@media screen and (max-width: 768px) {
  /* contact */
  .p-contact {
    padding: 100px 17px;
  }
  .p-contact__form {
    width: 90%;
    margin-inline: auto;
  }
  .p-form__content label {
    width: auto;
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
  .p-form__content .p-checkDemo {
    display: inline-block;
  }
  .p-form__content .p-txt-large {
    width: 100%;
  }
  .p-form__content .p-txt-little {
    width: 49%;
  }
  /* tab */
  .p-tabMiddle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: fixed;
    text-align: center;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 97%;
    margin-inline: auto;
  }
  .p-tabMiddle__btn {
    background: #004EA3;
    color: #fff;
    display: inline-block;
    padding: 25px 0 25px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    width: 32%;
    height: 65px;
  }
}
@media screen and (max-width: 480px) {
  /* contact */
  .p-contact__form {
    width: 95%;
  }
  .p-contact {
    padding-top: 40px;
    padding-bottom: 50px;
    background-size: contain;
  }
  .p-contact__flex p {
    padding-left: 10px;
  }
  .p-contact__head {
    padding: 15px;
  }
  .p-contact__headding {
    font-size: 1.2rem;
  }
  .p-contact__tab label {
    font-size: 0.9rem;
  }
  .p-contact__tab li {
    width: 32%;
    font-size: 0.9rem;
  }
  .p-form__submitBtn {
    width: 340px;
  }
  .p-contact__headding--small {
    font-size: 0.8rem;
    font-weight: 500;
  }
  .p-tabMiddle__btn {
    height: 55px;
    padding: 20px 0 0 0;
  }
  .p-tabMiddle__btn li {
    font-size: 0.9rem;
  }
  .p-agreement {
    margin: 30px 0 20px;
  }
}
/*----------------------------------------------------------------------------------------
archives.scss
----------------------------------------------------------------------------------------*/
.p-archives__headding {
  padding-top: 70px;
  font-size: 20px;
  width: 96%;
  margin: 0 auto 10px;
}
.p-archives__headding img {
  margin-right: 1em;
}
.p-archives__mainVisual img.main_img {
  height: 152px;
  width: 100%;
}
.p-archives__contents {
  padding: 25px 0;
}
.p-archives__list {
  max-width: 840px;
  padding: 25px 50px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #969696;
}
.p-archives__listImg {
  position: relative;
  width: 42%;
  max-width: 310px;
  max-height: 192px;
  margin-right: 8%;
}
.p-archives__listImg p.new {
  position: absolute;
  text-align: center;
  background: #004EA3;
  color: #fff;
  font-weight: 700;
  padding: 3px;
  width: 4em;
  top: 0;
  left: 0;
}
.p-archives__listTxts {
  width: 50%;
  padding-top: 10px;
}
.p-archives__listHeadding {
  margin-bottom: 20px;
  font-size: 20px;
  color: #004171;
}
.p-archives__mainTxt {
  font-weight: 400;
}
.p-archives .p-pagenav {
  text-align: right;
  margin: 50px 0 100px 0;
}
.p-archives .p-pagenav a:nth-child(1) {
  margin-right: 20px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .p-archives__list {
    width: 96%;
    padding: 25px 30px;
  }
}
@media screen and (max-width: 480px) {
  .p-archives__headding {
    padding-top: 40px;
    margin-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .p-archives img.main_img {
    height: 120px;
  }
  .p-archives__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-archives__listImg {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0 auto;
  }
  .p-archives__listTxts {
    width: 100%;
  }
  .p-archives .p-pagenav {
    margin: 35px 0;
  }
  .p-archives .p-pagenav img {
    width: 64px;
    height: 64px;
  }
}
/*----------------------------------------------------------------------------------------
single.scss
----------------------------------------------------------------------------------------*/
.p-single__headding {
  padding-top: 70px;
  font-size: 20px;
  width: 96%;
  margin: 0 auto 10px;
}
.p-single__headding img {
  margin-right: 1em;
}
.p-single__mainVisual img.main_img {
  height: 152px;
  width: 100%;
}

.p-article__headding {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 500;
}
.p-article__headding span {
  background: #004ea3;
  color: #fff;
  font-size: 0.9em;
  padding: 5px 10px;
  border-radius: 8px;
  margin-right: 1em;
}
.p-article__subheadding {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 500;
}
.p-article__date {
  margin-bottom: 45px;
  color: #004EA3;
}
.p-article__mainVisual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px auto;
}
.p-article__mainVisual-img {
  width: 420px;
  margin-right: 4%;
}
.p-article__mainVisual-profile {
  width: 50%;
  padding: 30px;
  border: 1px solid #707070;
}
.p-article__mainVisual-profile02 {
  width: 100%;
}
.p-article__commonTxt {
  text-align: center;
  font-weight: 400;
}
.p-article__readTxt {
  font-size: 20px;
}
.p-article__index {
  margin-top: 70px;
  border: 1px solid #004EA3;
  border-radius: 30px;
}
.p-article__lists {
  padding: 45px 0 55px 90px;
}
.p-article__list {
  padding-bottom: 25px;
  padding-left: 0.6em;
  position: relative;
}
.p-article__list::before {
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  left: -5px;
  top: 7px;
  background: #004EA3;
}
.p-article__list img {
  margin-right: 15px;
}
.p-article__indexHedding {
  margin-right: 30px;
  padding: 25px 0 20px 90px;
  color: #004EA3;
  font-size: 2rem;
  font-style: italic;
  font-family: "Roboto Mono", monospace;
  border-bottom: #004EA3 1px solid;
}
.p-article__commonHeadding {
  background-color: #004EA3;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 1.3rem;
  border-radius: 20px;
  font-weight: 500;
}
.p-article__commonSubHeadding {
  border-left: 5px solid #004EA3;
  padding-left: 10px;
  font-size: 20px;
  margin: 20px auto 0;
}
.p-article__borderContainer {
  max-width: 1024px;
  border-bottom: 1px solid #707070;
  padding: 90px 0;
  margin: 0 auto;
}
.p-article__contentsContainer {
  width: 96%;
  max-width: 840px;
  margin: 0 auto;
}
.p-article__commonContainer {
  margin: 50px auto 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-article__commonContainer-box {
  width: 48%;
  border: 10px solid rgba(0, 78, 163, 0.2);
  padding: 20px;
}
.p-article__commonContainer-box h4 {
  color: #004ea3;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}
.p-article__commonContainer-txt {
  width: 50%;
}
.p-article__commonContainer-txt.txt02 {
  width: 100%;
}
.p-article__commonContainer-img {
  width: 45%;
  max-width: 350px;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
}
.p-article__bdr-box {
  border: 1px solid #707070;
  background: #eee;
  padding: 30px 50px;
}
.p-article__bdr-box .p-article__commonContainer {
  margin: 50px auto 20px;
}

/*.p-section01-lists {
    display: flex;
    justify-content: space-between;
    padding-top: 55px;
}


.p-section01-list {
    width: 48%;
}

.p-section01-txt {
    margin-top: 5px;
}

.p-section03-Subheadding {
    color: #004EA3;
    font-weight: 500;
    padding: 55px 0 20px;
    font-size: 1.5rem;
}*/
.p-singelePages {
  text-align: center;
  margin: 40px 0 55px;
}
.p-singelePages a li:nth-child(1) {
  margin-bottom: 20px;
}
.p-singelePages a li:nth-child(2) {
  margin-bottom: 50px;
}

.p-toArchives {
  text-align: center;
  margin: 50px 0 100px 0;
}

.p-single-arrow {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

@media screen and (max-width: 480px) {
  .p-single__headding {
    padding-top: 40px;
    margin-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .p-single__Subheadding {
    font-size: 1rem;
    display: block;
    margin-left: 0;
  }
  .p-single img.main_img {
    height: 120px;
  }
  .p-article__headding {
    font-size: 24px;
  }
  .p-article__subheadding {
    font-size: 16px;
  }
  .p-article__mainVisual {
    margin: 50px auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-article__mainVisual-img {
    width: 100%;
    max-width: 420px;
    margin: 30px auto;
    text-align: center;
  }
  .p-article__mainVisual-profile {
    width: 100%;
    padding: 12px;
  }
  .p-article__readTxt {
    font-size: 14px;
  }
  .p-article__lists {
    padding: 35px 0 25px 30px;
  }
  .p-article__list {
    font-size: 0.9rem;
  }
  .p-article__list img {
    margin-right: 10px;
  }
  .p-article__commonHeadding {
    padding: 10px 0;
    font-size: 16px;
    border-radius: 10px;
  }
  .p-article__commonSubHeadding {
    font-size: 14px;
    margin: 20px auto 0;
  }
  .p-article__borderContainer {
    padding: 50px 0;
    margin: 0 auto;
  }
  .p-article__contentsContainer {
    margin: 30px auto;
  }
  .p-article__commonContainer {
    margin: 30px auto 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-article__commonContainer-box {
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
  }
  .p-article__commonContainer-box h4 {
    font-size: 16px;
  }
  .p-article__commonContainer-txt {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-article__commonContainer-txt.txt02 {
    width: 100%;
  }
  .p-article__commonContainer-img {
    width: 100%;
    margin: 0 auto;
  }
  .p-article__bdr-box {
    padding: 20px;
  }
  .p-article__bdr-box .p-article__commonContainer {
    margin: 30px auto 20px;
  }
  .p-toArchives {
    margin: 50px 0;
  }
  .p-singelePages a,
  .p-toArchives a {
    font-size: 0.9rem;
  }
}
/*----------------------------------------------------------------------------------------
subVisual.scss
----------------------------------------------------------------------------------------*/
.c-subVisual {
  padding-top: 130px;
}
.c-subVisual__top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  margin: 0 0 0 15%;
}
.c-subVisual__txts {
  margin-top: 10px;
}
.c-subVisual__img {
  position: relative;
  z-index: 2;
}
.c-subVisual__img img {
  width: 100%;
  height: 200px;
}

.c-subVisual-bg::before {
  background-image: url(../images/pc/common/commonBg.png);
  background-position: top;
  background-size: cover;
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}

.c-anchor-arrow {
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  .c-subVisual {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .c-subVisual__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-subVisual__headding {
    margin-left: 0;
  }
  .c-subVisual__txts {
    margin: 0 0 25px 0;
    width: 100%;
  }
  .c-subVisual__img {
    margin-left: auto;
    width: 100%;
  }
  .c-subVisual__img img {
    height: auto;
  }
  .c-subVisual__foot {
    margin: 25px 5% 0 5%;
  }
  .c-subVisual_bg {
    padding-top: 150px;
  }
  .c-subVisual_bg img {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .c-subVisual {
    padding-top: 200px;
    padding-bottom: 0;
  }
  .c-subVisual__top {
    gap: 20px;
    margin: 0 0 0 10%;
  }
  .c-subVisual__txts {
    margin-top: 10px;
  }
  .c-subVisual__img {
    position: relative;
    z-index: 2;
  }
  .c-subVisual__img img {
    width: 100%;
    height: 132px;
  }
  .c-subVisual-bg::before {
    background-image: url(../images/sp/common/commonBg.png);
  }
}
/*----------------------------------------------------------------------------------------
btn.scss
----------------------------------------------------------------------------------------*/
.c-detailBtn-logo {
  width: 70%;
  max-width: 413px;
  margin-bottom: 30px;
}
.c-detailBtn.bg_white {
  text-align: center;
  background: #fff;
  padding: 100px 0;
}
.c-detailBtn.bg_white img.logo {
  margin-bottom: 30px;
}
.c-detailBtn__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-detailBtn__flex div {
  text-align: center;
  width: 340px;
  margin: 0 1%;
}
.c-detailBtn__flex div img {
  margin: 0 auto 3%;
}

.c-detailBtn-single {
  display: inline-block;
  width: 340px;
  color: #fff;
  padding-top: 18px;
  padding-bottom: 18px;
  margin: 0 auto;
  border-radius: 40px;
  background-color: #004EA3;
  border: 2px solid #004EA3;
  text-align: center;
  position: relative;
  z-index: 2;
}

.c-detailBtn-single:hover {
  border: 2px solid #004EA3;
  background-color: #fff;
  color: #004ea3;
}

.c-flowBtn {
  display: inline-block;
  width: 240px;
  color: #fff;
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 18px;
  margin: 0 auto;
  border-radius: 40px;
  background-color: #004EA3;
  border: 2px solid #004EA3;
  text-align: center;
}
.c-flowBtn:hover {
  border: 2px solid #004EA3;
  background-color: #fff;
  color: #004ea3;
}

.c-multiBtn {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  background-color: #fff;
  font-size: clamp(1rem, 0.642rem + 1.527vw, 1.375rem);
}
.c-multiBtn__link {
  display: inline-block;
  max-width: 420px;
  width: 100%;
  text-align: center;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 40px;
  background-color: #004EA3;
}

.c-submit {
  text-align: center;
}

.c-submit-btn {
  max-width: 400px;
  width: 100%;
  color: #fff;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 40px;
  background-color: #004EA3;
}

@media screen and (max-width: 480px) {
  .c-detailBtn.bg_white {
    padding: 50px 17px;
  }
  .c-detailBtn.bg_white img.logo {
    width: 90%;
    margin: 0 auto 30px;
  }
  .c-submit {
    width: 340px;
    margin-inline: auto;
  }
  .c-detailBtn-single {
    /*max-width: 200px;
    font-size: 0.8rem;*/
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .c-flowBtn {
    display: inline-block;
    width: 216px;
    color: #fff;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 18px;
    margin: 0 auto;
    border-radius: 40px;
    background-color: #004EA3;
    border: 2px solid #004EA3;
    text-align: center;
  }
  .c-multiBtn {
    -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;
    padding-bottom: 40px;
  }
}
/*----------------------------------------------------------------------------------------
heading.scss
----------------------------------------------------------------------------------------*/
.c-common-heading {
  font-size: 2.125rem;
}

@media screen and (max-width: 480px) {
  .c-common-heading {
    font-size: 24px;
  }
}
/*----------------------------------------------------------------------------------------
none.scss
----------------------------------------------------------------------------------------*/
@media (min-width: 769px) {
  .tab-appea, .tab-onlyNone {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .tab-none {
    display: none !important;
  }
  select {
    width: 100%;
  }
}
@media (min-width: 481px) {
  .sp-appea {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .sp-none, .tab-onlyNone {
    display: none !important;
  }
}
/*----------------------------------------------------------------------------------------
padding.scss
----------------------------------------------------------------------------------------*/
.u-pb-40 {
  padding-bottom: 40px;
}

.u-headerHeight {
  padding-top: 70px;
  margin-top: -70px;
}
/*# sourceMappingURL=style.css.map */