@charset "UTF-8";
/* =====================================================
* base
* =================================================== */
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "游ゴシック体", "Yu Gothic", "游ゴシック", "メイリオ", sans-serif;
  font-size: 100%;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.73vw;
  }
}

main {
  padding-top: 80px;
}
@media screen and (max-width: 958px) {
  main {
    padding-top: 50px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #1A1A1A;
  transition: all 0.3s ease-in;
}

li {
  list-style: none;
}

p {
  word-break: break-word;
}

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

/* =====================================================
* header
* =================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 280px);
  height: 80px;
  padding: 0 24px;
  background: #FFF;
  z-index: 999;
}
@media screen and (max-width: 958px) {
  .l-header {
    padding: 0;
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  .l-header {
    height: auto;
  }
}
/* header logo -------------------------------------- */
.l-header__logo {
  width: 64px;
  margin-right: 10px;
  /* margin-left: 37px; */
}
.l-header__logo a {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 958px) {
  .l-header__logo {
    margin: 2px 15px;
    width: 50px;
  }
}
/* header nav --------------------------------------- */
.l-header__main {
  display: flex;
  align-items: center;
}
.l-header__main-item {
  line-height: 1.14;
  margin-left: 20px;
}
.l-header__main-item a {
  display: block;
  font-size: 0.8375rem;
  font-weight: 700;
  line-height: 1;
  color: #003366;
}

@media screen and (max-width: 958px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    padding: 80px 20px;
    background: #065FAD;
    transform: translateX(130%);
    transition: 0.3s;
  }
  .l-header__nav.is-show {
    transform: translateX(0);
  }
  .l-header__main {
    flex-direction: column;
    width: 100%;
  }
  .l-header__main-item {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #FFF;
  }
  .l-header__main-item a {
    display: flex;
    align-items: center;
    padding: 5.33vw 0 5.33vw 2.67vw;
    font-size: min(16px, 4vw);
    font-weight: 400;
    color: #FFF;
  }
  .l-header__main-item--sm {
    margin-top: 5.33vw;
    border-bottom: none;
  }
  .l-header__main-item--sm:last-of-type {
    margin-top: 13px;
  }
  .l-header__main-item--sm a {
    position: relative;
    padding: 0 0 0 2.67vw;
    font-size: min(14px, 4vw);
  }
  .l-header__main-item--sm a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.53vw;
    width: 1.87vw;
    height: 1.6vw;
    background-image: url(../img/icon_arrow2_wh.png);
    background-size: contain;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    padding: 50px 20px;
  }
}
/* header ADD CTA ------------------------------------ */
.l-header__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 100%;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.l-header__cta {
  background: linear-gradient(180deg, #0554A5 0%, #003366 100%);
  width: auto;
  height: 100%;
  padding: 4px 8px;
}
.l-header__cta_inner {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.l-header__cta img {
  width: 20px;
  height: 20px;
}
.l-header__cta p {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .7px;
}
.l-header__cta p span {
  font-size: 12px;
}
@media screen and (max-width: 958px) {
  .l-header__inner {
    justify-content: initial;
  }
  .l-header__right {
    margin-left: auto;
    margin-right: 8px;
  }
  .l-header__cta p {
    font-size: 14px;
    line-height: .9;
  }
  .l-header__cta p span {
    font-size: 9px;
  }
}

/* header button ------------------------------------ */
.l-header__button {
  display: none;
  width: 80px;
  height: 80px;
  background: linear-gradient(180deg, #0554A5 0%, #003366 100%);
}
.l-header__buttonInner {
  padding-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.l-header__line {
  position: relative;
  display: block;
  width: 26px;
  height: 20px;
  margin: 0 auto;
}
.l-header__line span {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: #FFF;
}
.l-header__line span:nth-of-type(1) {
  top: 0;
}
.l-header__line span:nth-of-type(2) {
  top: 10px;
}
.l-header__line span:nth-of-type(3) {
  bottom: 0;
}
.l-header__buttonText {
  margin-top: 9px;
  font-size: 0.625rem;
  line-height: 1;
  text-align: center;
  color: #FFF;
}
.l-header__button.is-show .l-header__line span {
  background: #FFF;
}
.l-header__button.is-show .l-header__line span:nth-of-type(1), .l-header__button.is-show .l-header__line span:nth-of-type(3) {
  top: 50%;
}
.l-header__button.is-show .l-header__line span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header__button.is-show .l-header__line span:nth-of-type(2) {
  opacity: 0;
}
.l-header__button.is-show .l-header__line span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .l-header__line {
    margin-bottom: -1.33vw;
  }
  .l-header__buttonText {
    font-size: 2.13vw;
  }
}
@media screen and (max-width: 414px) {
  .l-header__button {
    width: 54px;
    height: 54px;
  }
  .l-header__line {
    width: 15px;
    height: 13px;
    margin-bottom: -2px;
  }
  .l-header__line span:nth-of-type(2) {
    top: 6px;
  }
}
/* =====================================================
* footer
* =================================================== */
.l-footer {
  margin-top: auto;
  padding: 30px 0 10px;
  text-align: center;
}
.l-footer__logo {
  width: 70px;
  margin: 0 auto;
}
.l-footer__name {
  margin-bottom: 10px;
  font-size: clamp(1.125rem, 1.081rem + 0.19vw, 1.25rem);
  font-weight: 700;
  line-height: 1.7;
}
.l-footer__sns {
  margin-bottom: 10px;
}
.l-footer__sns a {
  display: block;
  width: 45px;
}
.l-footer__site {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 24px;
  margin: 0 auto 13px;
  font-size: 15px;
  line-height: 1.7;
}
.l-footer__site::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/icon_link.png);
  background-size: contain;
}
.l-footer__copyright {
  display: block;
  font-size: 0.75rem;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 8vw 0 30.67vw;
  }
  .l-footer__logo {
    width: 18.67vw;
  }
  .l-footer__name {
    margin-bottom: 2.67vw;
    font-size: 4.33vw;
  }
  .l-footer__sns {
    margin-bottom: mb 2.67vw;
  }
  .l-footer__sns a {
    width: 45px;
  }
  .l-footer__site {
    padding-right: 21px;
    margin-bottom: 3.47vw;
    font-size: 4vw;
  }
  .l-footer__site::after {
    width: 5.33vw;
    height: 5.33vw;
  }
  .l-footer__copyright {
    font-size: 3.2vw;
  }
}
/* =====================================================
* main
* =================================================== */
.l-contact {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  display: none;
  z-index: 999;
  background: #E6E6E6;
}

@media screen and (min-width: 959px) {
  .l-body__inner {
    display: flex;
    overflow: hidden;
  }
  .l-main {
    width: calc(100% - 280px);
  }
  .l-contact {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .l-contact {
    background: transparent;
    padding: 40px 20px;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    overflow: auto;
  }
}
.l-container {
  width: 100%;
  max-width: 940px;
  padding: 0 20px;
  margin: 0 auto;
}

.l-container--sm {
  width: 100%;
  max-width: 860px;
  padding: 0 20px;
  margin: 0 auto;
}

/* =====================================================
* flex
* =================================================== */
.c-flex {
  display: flex;
}
.c-flex.-wrap {
  flex-wrap: wrap;
}
.c-flex.-column {
  flex-direction: column;
}
.c-flex.-center {
  justify-content: center;
  align-items: center;
}
.c-flex.-x__center {
  justify-content: center;
}
.c-flex.-x__between {
  justify-content: space-between;
}
.c-flex.-x__bottom {
  justify-content: flex-end;
}
.c-flex.-y__top {
  align-items: flex-start;
}
.c-flex.-y-center {
  align-items: center;
}
.c-flex.-y__bottom {
  align-items: flex-end;
}
@media screen and (max-width: 958px) {
  .c-flex.-sp-column {
    flex-direction: column;
  }
}

/* =====================================================
* button
* =================================================== */
.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 78.67vw;
  max-width: 100%;
  padding: 3.47vw 2.67vw 2.67vw;
  margin: 6.93vw auto 0;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.25;
  color: #FFF;
  /* background: var(--Linear, linear-gradient(180deg, #003366 0%, #195590 45.67%, #003366 100%)); */
  background: var(--Linear, linear-gradient(180deg, #d90707 0%, #ca0000 45.67%, #a60000 100%));
  border-radius: 10px;
  cursor: pointer;
  /* box-shadow: 0 6px 0 0 #0A2B4B; */
  box-shadow: 0 4px 0 0 #9b001a;
}
@media screen and (max-width: 958px) {
  .c-button {
    font-size: 3.8vw;
  }
}
.c-button::after {
  content: "";
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  right: 10px;
  width: 20px;
  height: 20px;
  background-image: url(../img/icon_arrow_wh.png);
  background-size: contain;
}
.c-button span {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% - 2.13vw);
  width: 39.47vw;
}
.c-button--2row {
  padding: 2.13vw 0 1.87vw;
}
.c-button--2row span {
  bottom: calc(100% - 2.4vw);
}

/* =====================================================
* bar
* =================================================== */
.c-bar {
  position: relative;
  padding: 16px 8px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  color: #FFF;
  background: var(--Linear, linear-gradient(180deg, #003366 0%, #195590 45.67%, #003366 100%));
}
.c-bar span {
  color: #FEE935;
  font-weight: 900;
}
.c-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon_arrow_wh.png);
  background-size: contain;
}

/* =====================================================
* sentence
* =================================================== */
.c-text.-center {
  text-align: center;
}
.c-text.-right {
  text-align: right;
}

/* =====================================================
* column 2
* =================================================== */
.p-col2__container {
  display: flex;
  justify-content: space-between;
}
.p-col2__main {
  width: calc(100% - 83px);
  max-width: 750px;
  margin-right: 20px;
}
.p-col2__side {
  width: 25%;
  max-width: 277px;
}

@media screen and (max-width: 958px) {
  .p-col2-container {
    flex-direction: column;
  }
  .p-col2__main, .p-col2__side {
    width: 100%;
    max-width: 100%;
  }
  .p-col2__main {
    margin-right: 0;
  }
}
/* =====================================================
* column 3
* =================================================== */
.p-col3-container {
  display: flex;
  justify-content: space-around;
}

.p-col3 {
  width: calc(33.33% - 43px);
  margin-left: 10px;
}

@media screen and (max-width: 958px) {
  .p-col3-container {
    flex-direction: column;
  }
  .p-col3 {
    width: 100%;
    max-width: 100%;
  }
}
/* =====================================================
* js - fade in
* =================================================== */
.js-fvIn span,
.js-loadIn span,
.js-in span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-fvIn.-dl06,
.js-loadIn.-dl06,
.js-in.-dl06 {
  transition-delay: 0.6s;
}
.js-fvIn.is-active span,
.js-loadIn.is-active span,
.js-in.is-active span {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.js-in {
  overflow: hidden;
}

/* =====================================================
* js - load fade in
* =================================================== */
.js-fvIn.-dl0 span:nth-of-type(2),
.js-loadIn.-dl0 span:nth-of-type(2) {
  transition-delay: 0.03s;
}
.js-fvIn.-dl0 span:nth-of-type(3),
.js-loadIn.-dl0 span:nth-of-type(3) {
  transition-delay: 0.06s;
}
.js-fvIn.-dl0 span:nth-of-type(4),
.js-loadIn.-dl0 span:nth-of-type(4) {
  transition-delay: 0.09s;
}
.js-fvIn.-dl0 span:nth-of-type(5),
.js-loadIn.-dl0 span:nth-of-type(5) {
  transition-delay: 0.12s;
}
.js-fvIn.-dl0 span:nth-of-type(6),
.js-loadIn.-dl0 span:nth-of-type(6) {
  transition-delay: 0.15s;
}
.js-fvIn.-dl0 span:nth-of-type(7),
.js-loadIn.-dl0 span:nth-of-type(7) {
  transition-delay: 0.18s;
}
.js-fvIn.-dl0 span:nth-of-type(8),
.js-loadIn.-dl0 span:nth-of-type(8) {
  transition-delay: 0.21s;
}
.js-fvIn.-dl0 span:nth-of-type(9),
.js-loadIn.-dl0 span:nth-of-type(9) {
  transition-delay: 0.24s;
}
.js-fvIn.-dl0 span:nth-of-type(10),
.js-loadIn.-dl0 span:nth-of-type(10) {
  transition-delay: 0.27s;
}
.js-fvIn.-dl0 span:nth-of-type(11),
.js-loadIn.-dl0 span:nth-of-type(11) {
  transition-delay: 0.3s;
}
.js-fvIn.-dl0 span:nth-of-type(12),
.js-loadIn.-dl0 span:nth-of-type(12) {
  transition-delay: 0.33s;
}
.js-fvIn.-dl0 span:nth-of-type(13),
.js-loadIn.-dl0 span:nth-of-type(13) {
  transition-delay: 0.36s;
}
.js-fvIn.-dl0 span:nth-of-type(14),
.js-loadIn.-dl0 span:nth-of-type(14) {
  transition-delay: 0.39s;
}
.js-fvIn.-dl0 span:nth-of-type(15),
.js-loadIn.-dl0 span:nth-of-type(15) {
  transition-delay: 0.42s;
}
.js-fvIn.-dl0 span:nth-of-type(16),
.js-loadIn.-dl0 span:nth-of-type(16) {
  transition-delay: 0.45s;
}
.js-fvIn.-dl0 span:nth-of-type(17),
.js-loadIn.-dl0 span:nth-of-type(17) {
  transition-delay: 0.48s;
}
.js-fvIn.-dl0 span:nth-of-type(18),
.js-loadIn.-dl0 span:nth-of-type(18) {
  transition-delay: 0.51s;
}
.js-fvIn.-dl0 span:nth-of-type(19),
.js-loadIn.-dl0 span:nth-of-type(19) {
  transition-delay: 0.54s;
}
.js-fvIn.-dl0 span:nth-of-type(20),
.js-loadIn.-dl0 span:nth-of-type(20) {
  transition-delay: 0.57s;
}
.js-fvIn.-dl0 span:nth-of-type(21),
.js-loadIn.-dl0 span:nth-of-type(21) {
  transition-delay: 0.57s;
}

.js-fvIn .-dl06 span:nth-of-type(1),
.js-loadIn .-dl06 span:nth-of-type(1) {
  transition-delay: 0.6s;
}
.js-fvIn .-dl06 span:nth-of-type(2),
.js-loadIn .-dl06 span:nth-of-type(2) {
  transition-delay: 0.63s;
}
.js-fvIn .-dl06 span:nth-of-type(3),
.js-loadIn .-dl06 span:nth-of-type(3) {
  transition-delay: 0.66s;
}
.js-fvIn .-dl06 span:nth-of-type(4),
.js-loadIn .-dl06 span:nth-of-type(4) {
  transition-delay: 0.69s;
}
.js-fvIn .-dl06 span:nth-of-type(5),
.js-loadIn .-dl06 span:nth-of-type(5) {
  transition-delay: 0.72s;
}
.js-fvIn .-dl06 span:nth-of-type(6),
.js-loadIn .-dl06 span:nth-of-type(6) {
  transition-delay: 0.75s;
}
.js-fvIn .-dl06 span:nth-of-type(7),
.js-loadIn .-dl06 span:nth-of-type(7) {
  transition-delay: 0.78s;
}
.js-fvIn .-dl06 span:nth-of-type(8),
.js-loadIn .-dl06 span:nth-of-type(8) {
  transition-delay: 0.81s;
}
.js-fvIn .-dl06 span:nth-of-type(9),
.js-loadIn .-dl06 span:nth-of-type(9) {
  transition-delay: 0.84s;
}
.js-fvIn .-dl06 span:nth-of-type(10),
.js-loadIn .-dl06 span:nth-of-type(10) {
  transition-delay: 0.87s;
}
.js-fvIn .-dl06 span:nth-of-type(11),
.js-loadIn .-dl06 span:nth-of-type(11) {
  transition-delay: 0.9s;
}
.js-fvIn .-dl06 span:nth-of-type(12),
.js-loadIn .-dl06 span:nth-of-type(12) {
  transition-delay: 0.93s;
}
.js-fvIn .-dl06 span:nth-of-type(13),
.js-loadIn .-dl06 span:nth-of-type(13) {
  transition-delay: 0.96s;
}
.js-fvIn .-dl06 span:nth-of-type(14),
.js-loadIn .-dl06 span:nth-of-type(14) {
  transition-delay: 0.99s;
}

/* =====================================================
* js - scroll fade in
* =================================================== */
.js-in span:nth-of-type(2) {
  transition-delay: 0.08s;
}
.js-in span:nth-of-type(3) {
  transition-delay: 0.12s;
}
.js-in span:nth-of-type(4) {
  transition-delay: 0.16s;
}
.js-in span:nth-of-type(5) {
  transition-delay: 0.2s;
}
.js-in span:nth-of-type(6) {
  transition-delay: 0.24s;
}
.js-in span:nth-of-type(7) {
  transition-delay: 0.28s;
}
.js-in span:nth-of-type(8) {
  transition-delay: 0.32s;
}
.js-in span:nth-of-type(9) {
  transition-delay: 0.36s;
}
.js-in span:nth-of-type(10) {
  transition-delay: 0.4s;
}
.js-in span:nth-of-type(11) {
  transition-delay: 0.44s;
}
.js-in span:nth-of-type(12) {
  transition-delay: 0.48s;
}
.js-in span:nth-of-type(13) {
  transition-delay: 0.52s;
}
.js-in span:nth-of-type(14) {
  transition-delay: 0.56s;
}
.js-in span:nth-of-type(15) {
  transition-delay: 0.6s;
}
.js-in span:nth-of-type(16) {
  transition-delay: 0.64s;
}
.js-in span:nth-of-type(17) {
  transition-delay: 0.68s;
}
.js-in span:nth-of-type(18) {
  transition-delay: 0.72s;
}
.js-in span:nth-of-type(19) {
  transition-delay: 0.76s;
}
.js-in span:nth-of-type(20) {
  transition-delay: 0.8s;
}
.js-in span:nth-of-type(21) {
  transition-delay: 0.84s;
}

/* =====================================================
* js - accordion
* =================================================== */
@media screen and (max-width: 958px) {
  .js-ac {
    transition: 0.3s;
    cursor: pointer;
  }
  .js-ac::before, .js-ac::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 7%;
    transform: translateY(-50%);
    background: #FFF;
    width: 19px;
    height: 1px;
  }
  .js-ac::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .js-ac-inner {
    display: none;
  }
  .js-ac.is-open::after {
    opacity: 0;
  }
}
/* =====================================================
* animation - scroll
* =================================================== */
.an-scroll {
  position: relative;
}
.an-scroll::before {
  content: "";
  position: absolute;
  left: 46%;
  bottom: -115px;
  width: 1px;
  height: 100px;
  animation: scroll 2s infinite;
  background-color: #FFF;
}

@media screen and (max-width: 958px) {
  .an-scroll::before {
    bottom: -70px;
    height: 60px;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* =====================================================
* animation -
* =================================================== */
@media screen and (max-width: 958px) {
  .an-ac {
    transition: 0.3s;
    cursor: pointer;
  }
  .an-ac::before, .an-ac::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 7%;
    transform: translateY(-50%);
    background: #FFF;
    width: 19px;
    height: 1px;
  }
  .an-ac::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .an-ac-inner {
    display: none;
  }
  .an-ac.is-open::after {
    opacity: 0;
  }
}
/* =====================================================
* TOP - fv
* =================================================== */
.p-fv {
  padding: 40px 0;
  background-image: url(../img/fv_bg.jpg);
  background-size: cover;
  background-position: center;
}
.p-fv__top {
  margin-bottom: 25px;
}
.p-fv__list {
  width: 74.8%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.p-fv__list li {
  width: 33.3333333333%;
  padding: 14px 18px;
  margin: 0 -3px;
  background-size: 100% 100%;
}
.p-fv__list li:nth-of-type(1) {
  background-image: url(../img/fv_1.png);
}
.p-fv__list li:nth-of-type(2) {
  background-image: url(../img/fv_2.png);
}
.p-fv__list li:nth-of-type(3) {
  background-image: url(../img/fv_3.png);
}
.p-fv__list li h2 {
  font-size: clamp(1.125rem, 1.037rem + 0.38vw, 1.375rem);
  font-weight: 900;
  text-align: center;
  color: #003366;
}
.p-fv__list li p {
  font-size: clamp(0.625rem, 0.559rem + 0.28vw, 0.8125rem);
}

@media screen and (max-width: 768px) {
  .p-fv {
    padding: 2.67vw 0 2.13vw;
    background-image: url(../img/fv_bg_sp.jpg);
  }
  .p-fv__top {
    margin-bottom: 3.47vw;
  }
  .p-fv__list {
    flex-direction: column;
    width: 100%;
  }
  .p-fv__list li {
    width: 100%;
    padding: 2.93vw 8vw 3.47vw;
    margin: 0 0 1.07vw;
  }
  .p-fv__list li:nth-of-type(1) {
    background-image: url(../img/fv_1_sp.png);
  }
  .p-fv__list li:nth-of-type(2) {
    margin-bottom: 0;
    background-image: url(../img/fv_2_sp.png);
    order: 2;
  }
  .p-fv__list li:nth-of-type(3) {
    background-image: url(../img/fv_3_sp.png);
  }
  .p-fv__list li h2 {
    font-size: 4.8vw;
  }
  .p-fv__list li p {
    font-size: 2.67vw;
    text-align: center;
  }
}
.p-fvBottom {
  padding: 20px 0 34px;
}

/* =====================================================
* TOP - intro
* =================================================== */
.p-intro {
  padding: 40px 0 88px;
  background-image: url(../img/intro_bg.png);
  background-size: cover;
  background-position: bottom;
}
.p-intro__title {
  margin-bottom: 50px;
  font-size: clamp(2.625rem, 2.537rem + 0.38vw, 2.875rem);
  color: #FFF;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.p-intro__img, .p-intro__movie {
  margin: 0 auto;
}
.p-intro__img--sm {
  width: 60.2%;
  margin-bottom: 20px;
}
.p-intro__movie {
  position: relative;
  width: 55.4%;
/*   padding-top: 31%; */
}
.p-intro__movie video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .p-intro {
    padding: 13.33vw 0 17.07vw;
    background-image: url(../img/intro_bg_sp.png);
  }
  .p-intro__title {
    font-size: 10.2vw;
    margin-bottom: 8.8vw;
  }
  .p-intro__img--sm {
    width: 100%;
    margin-bottom: 4.27vw;
  }
  .p-intro__movie {
    width: 100%;
/*     padding-top: 54%; */
    padding-top: 4%;
  }
}
/* =====================================================
* TOP - nayami
* =================================================== */
.p-nayami {
  padding: 67px 0 105px;
  background-image: url(../img/nayami_bg.png);
  background-size: cover;
  background-position: bottom;
}
.p-nayami__titleBox {
  width: 66.3%;
  margin: 0 auto 40px;
  text-align: center;
}
.p-nayami__title {
  margin-bottom: 20px;
}
.p-nayami__text--wh {
  margin-bottom: 10px;
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #FFF;
  line-height: 1.7;
}
.p-nayami__text--yl {
  padding: 4px 0;
  font-size: clamp(1.5rem, 1.412rem + 0.38vw, 1.75rem);
  font-weight: 700;
  color: #FEE935;
  letter-spacing: 0.06em;
  line-height: 1.7;
  border-top: 1px solid #FEE935;
  border-bottom: 1px solid #FEE935;
}
.p-nayami__img {
  margin-bottom: -13px;
}
.p-nayami__list {
  display: flex;
  justify-content: space-between;
}
.p-nayami__list li {
  width: calc((100% - 30px) / 4);
  background: #3D6BC7;
  padding-bottom: 17px;
}
.p-nayami__list li h3 {
  position: relative;
  margin-bottom: 14px;
  font-size: clamp(0.875rem, 0.809rem + 0.28vw, 1.0625rem);
  color: #FFF;
  text-align: center;
  line-height: 1;
  z-index: 1;
}
.p-nayami__list li h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 583%;
  background-image: url(../img/nayami_bg_bl.png);
  background-size: 100%;
  background-position: bottom;
  z-index: -1;
}
.p-nayami__list li p {
  margin: 0 13px;
  padding: 8px;
  font-size: 0.875rem;
  background: #FFF;
}
.p-nayami__list li p > span > span {
  font-weight: 700;
  color: #0839A0;
  background: linear-gradient(transparent 65%, #FFF176 35%);
}

@media screen and (max-width: 768px) {
  .p-nayami {
    padding: 8vw 0 26.93vw;
    background-image: url(../img/nayami_bg_sp.png);
  }
  .p-nayami__titleBox {
    width: 96%;
    margin: 0 auto 5.33vw;
  }
  .p-nayami__title {
    margin-bottom: 2.67vw;
  }
  .p-nayami__text--wh {
    font-size: 3.27vw;
    margin-bottom: 2.67vw;
  }
  .p-nayami__text--yl {
    padding: 1.07vw 0;
    font-size: 6.4vw;
    line-height: 1.5;
  }
  .p-nayami__img {
    margin-bottom: -4vw;
  }
  .p-nayami__list {
    flex-wrap: wrap;
  }
  .p-nayami__list li {
    display: flex;
    flex-direction: column;
    width: calc((100% - 2.67vw) / 2);
    padding-bottom: 1.6vw;
    margin-bottom: 2.93vw;
  }
  .p-nayami__list li h3 {
    position: relative;
    margin-bottom: 2.13vw;
    font-size: 3.73vw;
  }
  .p-nayami__list li h3::before {
    bottom: -0.8vw;
    height: 583%;
  }
  .p-nayami__list li p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin: 0 1.33vw;
    padding: 1.6vw 2.67vw;
    font-size: 3.2vw;
    font-weight: 500;
  }
}
/* =====================================================
* TOP - kaiketsu
* =================================================== */
.p-kaiketsu {
  padding: 60px 0 80px;
}
.p-kaiketsu__top {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 18px;
  font-size: clamp(1rem, 0.868rem + 0.56vw, 1.375rem);
  font-weight: 700;
  line-height: 1.7;
  color: #003366;
  border-bottom: 1px solid #003366;
}
.p-kaiketsu__title, .p-kaiketsu__star {
  margin: 0 auto;
}
.p-kaiketsu__title {
  width: 68.6%;
}
.p-kaiketsu__star {
  width: 72.1%;
  margin-bottom: 40px;
}
.p-kaiketsu__list li {
  position: relative;
  width: calc(100% - 20px);
  margin-left: auto;
  margin-bottom: 10px;
  padding: 10px;
  background: #FFF;
  z-index: 1;
}
.p-kaiketsu__list li:last-of-type {
  margin-bottom: 0;
}
.p-kaiketsu__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -53px;
  width: 110px;
  height: 106px;
  background-image: url(../img/kaiketsu_circle.png);
  background-size: contain;
  z-index: -1;
}
.p-kaiketsu__item {
  display: flex;
  border: 2px solid #003366;
}
.p-kaiketsu__item h3 {
  padding: 10px 0;
  margin-bottom: 20px;
  font-size: clamp(1.375rem, 1.331rem + 0.19vw, 1.5rem);
  color: #004A99;
  letter-spacing: 0.03em;
  line-height: 1.5;
  border-bottom: 1px solid #0066CC;
}
.p-kaiketsu__item p {
  letter-spacing: 0.047em;
}
.p-kaiketsu__item p span {
  font-weight: 700;
  color: #D9082A;
}
.p-kaiketsu__num {
  position: absolute;
  top: 30px;
  left: -30px;
  width: 65px;
  height: 65px;
}
.p-kaiketsu__cont {
  width: 66.4%;
  padding: 28px 28px 28px 36px;
}
.p-kaiketsu__img {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .p-kaiketsu {
    padding: 10.67vw 0 17.33vw;
  }
  .p-kaiketsu__top {
    margin: 0 auto 2.67vw;
    font-size: 3.27vw;
  }
  .p-kaiketsu__title {
    width: 73%;
    margin-bottom: 3.2vw;
  }
  .p-kaiketsu__star {
    width: 96%;
    margin-bottom: 18.67vw;
  }
  .p-kaiketsu__list li {
    width: 100%;
    margin-bottom: 13.33vw;
    padding: 1.07vw;
  }
  .p-kaiketsu__list li::before {
    top: -10.93vw;
    left: 50%;
    width: 29.33vw;
    height: 28.27vw;
    transform: translateX(-50%);
  }
  .p-kaiketsu__item {
    padding: 5.6vw 4.27vw 3.73vw;
    flex-direction: column;
  }
  .p-kaiketsu__item h3 {
    padding: 2.67vw 0;
    margin-bottom: 5.33vw;
    font-size: 4.87vw;
    white-space: nowrap;
  }
  .p-kaiketsu__num {
    top: -5.6vw;
    left: 50%;
    width: 17.33vw;
    height: 17.33vw;
    transform: translateX(-50%);
  }
  .p-kaiketsu__cont {
    width: 100%;
    padding: 0;
    order: 2;
  }
}
/* =====================================================
* TOP - cta
* =================================================== */
.p-cta {
  padding: 34px 0;
  background-image: url(../img/cta_bg_1.jpg);
  background-size: cover;
  background-position: center;
}
.p-cta__wrap {
  padding: 10px;
  border: 2px solid;
  -o-border-image: linear-gradient(to right, #2B67DE, #0839A0) 1;
     border-image: linear-gradient(to right, #2B67DE, #0839A0) 1;
}
.p-cta__inner {
  padding-top: 28px;
  background: #FFF;
}
.p-cta__top {
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 8px;
  margin: 0 auto 20px;
  font-size: clamp(1rem, 0.868rem + 0.56vw, 1.375rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #0839A0;
  background: #DAECFF;
  border: 1px solid #0839A0;
}
.p-cta__title {
  width: 51.6%;
  margin: 0 auto 15px;
}
.p-cta__text {
  margin-bottom: 30px;
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
.p-cta__text span {
  color: #D9082A;
  font-weight: bold;
}
.p-cta .c-bar {
  padding: 10px;
  font-size: 1.375rem;
}
.p-cta .c-bar span {
  font-size: 1.625rem;
}

@media screen and (max-width: 958px) {
  .p-cta__inner {
    padding: 6.67vw 4vw;
  }
  .p-cta__text {
    margin-bottom: 10.67vw;
  }
}
@media screen and (max-width: 768px) {
  .p-cta {
    padding: 16vw 0;
    background-image: url(../img/cta_bg_1_sp.jpg);
  }
  .p-cta__wrap {
    padding: 1.33vw;
  }
  .p-cta__inner {
    padding: 6.67vw 4vw;
  }
  .p-cta__top {
    padding: 1.6vw 2.13vw;
    margin: 0 auto 2.93vw;
    font-size: 3.27vw;
  }
  .p-cta__title {
    width: 82.3%;
    margin: 0 auto;
  }
  .p-cta__text {
    font-size: 3.27vw;
  }
}
/* =====================================================
* TOP - range
* =================================================== */
.p-range {
  padding: 140px 0 168px;
  background-image: url(../img/range_bg.png);
  background-size: cover;
}
.p-range__section {
  margin-bottom: 107px;
}
.p-range__section:last-of-type {
  margin-bottom: 0;
}
.p-range__title {
  position: relative;
  margin-bottom: 30px;
  font-size: clamp(2rem, 1.912rem + 0.38vw, 2.25rem);
  color: #003366;
  line-height: 1;
  text-align: center;
}
.p-range__title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 60px;
  background-image: url(../img/range_title_en_1.png);
  background-size: contain;
  background-position: bottom center;
}
.p-range__box {
  padding: 20px 10px;
}
.p-range__table {
  width: 580px;
  max-width: 100%;
  margin: 0 auto;
}
.p-range__table dt,
.p-range__table dd {
  font-size: 1rem;
  line-height: 1.5;
}
.p-range__table dt {
  min-width: 200px;
  padding-left: 30px;
  font-weight: 700;
  color: #0839A0;
}
.p-range__table dd {
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 500;
}
.p-range__row {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #CCC;
}
.p-range__row:last-of-type {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .p-range {
    padding: 26.13vw 0 16vw;
    background-image: url(../img/range_bg_sp.png);
  }
  .p-range__section {
    margin-bottom: 16vw;
  }
  .p-range__title {
    margin-bottom: 8vw;
    font-size: 7.53vw;
  }
  .p-range__title::before {
    bottom: 3.2vw;
    height: 10.67vw;
  }
  .p-range__box {
    padding: 5.33vw;
  }
  .p-range__table dt,
  .p-range__table dd {
    font-size: 3.27vw;
  }
  .p-range__table dt {
    padding: 2.67vw 0;
    min-width: auto;
  }
  .p-range__table dd {
    padding: 0;
  }
  .p-range__row {
    align-items: flex-start;
    flex-direction: column;
    padding: 0 0 5.33vw;
    margin-bottom: 2.67vw;
  }
  .p-range__row:last-of-type {
    margin-bottom: 0;
  }
}
/* dimensions --------------------------------------- */
.p-dimensions__list {
  padding: 0 20px;
}
.p-dimensions__list li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #CCC;
}
.p-dimensions__list li:last-of-type {
  border-bottom: none;
}
.p-dimensions__img {
  width: 22.3%;
}
.p-dimensions__cont {
  padding: 10px 60px 10px 20px;
  flex: 1;
}
.p-dimensions__cont h3 {
  padding: 5px 0;
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.7;
  color: #0839A0;
  border-bottom: 1px solid #0839A0;
}
.p-dimensions__cont h3 span {
  font-size: clamp(0.9375rem, 0.915rem + 0.09vw, 1rem);
}
.p-dimensions__cont p {
  font-weight: 500;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .p-dimensions__list {
    padding: 0;
  }
  .p-dimensions__list li {
    flex-direction: column;
    border-bottom: none;
  }
  .p-dimensions__list li:last-of-type .p-dimensions__cont p {
    border-bottom: none;
  }
  .p-dimensions__img {
    width: 100%;
  }
  .p-dimensions__cont {
    width: 100%;
    padding: 0 5.33vw;
  }
  .p-dimensions__cont h3 {
    padding: 0 0 2.67vw;
    margin-bottom: 2.67vw;
    font-size: 4.33vw;
    text-align: center;
    line-height: 1.3;
  }
  .p-dimensions__cont h3 span {
    font-size: 4vw;
  }
  .p-dimensions__cont p {
    padding-bottom: 8vw;
    border-bottom: 1px solid #CCC;
  }
}
/* materials ---------------------------------------- */
.p-materials .p-range__title::before {
  background-image: url(../img/range_title_en_2.png);
}
.p-materials .p-range__row {
  min-height: 88px;
}

@media screen and (max-width: 768px) {
  .p-materials .p-range__row {
    min-height: 13.87vw;
  }
}
/* treatments ---------------------------------------- */
.p-treatments .p-range__title::before {
  background-image: url(../img/range_title_en_3.png);
}

/* order -------------------------------------------- */
.p-order .p-range__title::before {
  content: none;
}
.p-order__box {
  padding: 25px 10px 54px;
}
.p-order__text {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.7;
}
.p-order__img {
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-order__box {
    padding: 8vw 2.67vw;
  }
  .p-order__text {
    margin-bottom: 4vw;
  }
}
/* =====================================================
* TOP - procure
* =================================================== */
.p-procure__subTitle {
  margin-bottom: 20px;
  font-size: 1.9375rem;
  line-height: 1;
  text-align: center;
}
.p-procure__list {
  display: flex;
  justify-content: space-between;
}
.p-procure__list li {
  width: 31.6%;
  padding: 20px 5px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.5;
  text-align: center;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}
.p-procure__img {
/*   width: 86.7%; */
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-procure__subTitle {
    margin-bottom: 5.33vw;
    font-size: 7.27vw;
  }
  .p-procure__list {
    flex-direction: column;
    justify-content: center;
  }
  .p-procure__list li {
    width: 79.6%;
    padding: 5.33vw 5px;
    margin: 0 auto 5.33vw;
    font-size: 4.33vw;
  }
  .p-procure__list li:last-of-type {
    margin-bottom: 0;
  }
  .p-procure__img {
    width: 100%;
  }
}
/* fiddly ------------------------------------------- */
.p-fiddly {
  position: relative;
  padding: 80px 0 87px;
  z-index: 2;
}
.p-fiddly::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 106.2%;
  background-image: url(../img/fiddly_bg.png);
  background-size: cover;
  background-position: bottom center;
  z-index: -1;
}
.p-fiddly__inner {
  padding: 40px 73px 60px;
  border-radius: 10px;
}
.p-fiddly__title {
  margin-bottom: 35px;
  font-size: clamp(2rem, 1.758rem + 1.03vw, 2.6875rem);
  color: #FFF;
  text-align: center;
}
.p-fiddly .p-procure__list {
  margin-bottom: 45px;
}
.p-fiddly .p-procure__list li {
  color: #FFF;
  background-image: url(../img/fiddly_list_bg.png);
}
.p-fiddly .p-procure__list li span {
  color: #FEE935;
}

@media screen and (min-width: 1441px) {
  .p-fiddly::before {
    height: 108.2%;
  }
}
@media screen and (max-width: 768px) {
  .p-fiddly {
    padding: 16vw 0;
    margin-bottom: 17.33vw;
  }
  .p-fiddly::before {
    height: 103.12%;
    background-image: url(../img/fiddly_bg_sp.png);
  }
  .p-fiddly__inner {
    padding: 10.67vw 4.8vw;
  }
  .p-fiddly .p-procure__list {
    margin-bottom: 7.2vw;
  }
}
/* integrated --------------------------------------- */
.p-integrated {
  padding: 88px 0 120px;
  margin: -1px 0 120px;
  background-image: url(../img/integrated_bg.png);
  background-size: cover;
  background-position: center;
}
.p-integrated__title {
  width: 60.6%;
  margin: 0 auto 30px;
}
.p-integrated .p-procure__subTitle {
  color: #FFF;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.p-integrated .p-procure__list {
  margin-bottom: 45px;
}
.p-integrated .p-procure__list li {
  color: #003366;
  background-image: url(../img/integrated_list_bg.png);
}
.p-integrated .p-procure__list li:first-of-type, .p-integrated .p-procure__list li:last-of-type {
  width: 29.1%;
}
.p-integrated .p-procure__list li:nth-of-type(2) {
  width: 34.8%;
  background-image: url(../img/integrated_list_bg_lg.png);
}
.p-integrated .p-procure__list li span {
  color: #D9082A;
}

@media screen and (max-width: 768px) {
  .p-integrated {
    padding: 1.6vw 0 12vw;
    margin: -1px 0 16vw;
    background-image: url(../img/integrated_bg_sp.png);
  }
  .p-integrated__title {
    width: 81.2%;
    margin-bottom: 8.53vw;
  }
  .p-integrated .p-procure__list {
    margin-bottom: 8vw;
  }
  .p-integrated .p-procure__list li:first-of-type, .p-integrated .p-procure__list li:nth-of-type(2), .p-integrated .p-procure__list li:last-of-type {
    width: 85.1%;
  }
  .p-integrated .p-procure__list li:nth-of-type(2) {
    background-image: url(../img/integrated_list_bg.png);
  }
}
/* =====================================================
* TOP - equipment
* =================================================== */
.p-equipment__block {
  margin-bottom: 120px;
}
.p-equipment__title {
  margin-bottom: 40px;
  font-size: clamp(2rem, 1.758rem + 1.03vw, 2.6875rem);
  text-align: center;
  letter-spacing: 2px;
}
.p-equipment__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 25px;
}
.p-equipment__list li {
  width: 29.3%;
}
.p-equipment__list h3 {
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
  line-height: 1.4;
  color: #2D3748;
  border-bottom: 1px solid #003366;
}
.p-equipment__list dt,
.p-equipment__list dd {
  font-size: 0.9375rem;
  line-height: 1.2;
}
.p-equipment__list dt {
  margin-bottom: 6px;
  font-weight: 700;
  color: #003366;
}
.p-equipment__list dd {
  margin-bottom: 23px;
}
.p-equipment__list dd:last-of-type {
  margin-bottom: 0;
}
.p-equipment__img {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .p-equipment__block {
    margin-bottom: 13.33vw;
  }
  .p-equipment__title {
    margin-bottom: 8vw;
    font-size: 7.53vw;
    line-height: 1;
  }
  .p-equipment__list {
    justify-content: space-between;
    gap: 3.47vw 2.67vw;
  }
  .p-equipment__list li {
    width: 48%;
  }
  .p-equipment__list h3 {
    padding-bottom: 0.8vw;
    margin-bottom: 1.33vw;
    font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
    font-size: 3.2vw;
  }
  .p-equipment__list dt,
  .p-equipment__list dd {
    font-size: 3.2vw;
  }
  .p-equipment__list dt {
    margin-bottom: 1.07vw;
  }
  .p-equipment__list dd {
    margin-bottom: 2.67vw;
  }
  .p-equipment__list dd:last-of-type {
    margin-bottom: 0;
  }
  .p-equipment__img {
    margin-bottom: 3.2vw;
  }
}
/* =====================================================
* TOP - cta
* =================================================== */
.p-cta2 {
  color: #FFF;
}
.p-cta2__inner {
  padding: 40px 0 30px;
  background-image: url(../img/cta_bg_2.jpg);
  background-size: cover;
  background-position: center;
}
.p-cta2__title {
  margin-bottom: 14px;
  font-size: clamp(1.625rem, 1.449rem + 0.75vw, 2.125rem);
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.p-cta2__text {
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}
.p-cta2 .c-bar {
  padding: 10px;
  font-size: 1.375rem;
}
.p-cta2 .c-bar span {
  font-size: 1.625rem;
}

@media screen and (max-width: 768px) {
  .p-cta2__inner {
    padding: 8vw 0 12vw;
    background-image: url(../img/cta_bg_2_sp.jpg);
  }
  .p-cta2__title {
    margin-bottom: 5.33vw;
    font-size: 7.47vw;
    line-height: 1.5;
  }
  .p-cta2__text {
    font-size: 3.27vw;
    margin-bottom: 9.87vw;
  }
  .p-cta2 .c-bar {
    padding: 10px;
    font-size: 1.375rem;
  }
  .p-cta2 .c-bar span {
    font-size: 1.625rem;
  }
}
/* =====================================================
* TOP - voice
* =================================================== */
.p-voice {
  padding: 60px 0 80px;
  background-image: url(../img/voice_bg.png);
  background-size: cover;
  background-position: top;
}
.p-voice__block {
  margin-bottom: 30px;
}
.p-voice__title {
  width: 34.8%;
  margin: 0 auto 20px;
}
.p-voice__top {
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}
.p-voice__list {
  width: 100%;
  max-width: 796px;
  margin: 0 auto;
}
.p-voice__list li {
  margin-bottom: 20px;
  padding: 20px 40px 30px;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.p-voice__list li:last-of-type {
  margin-bottom: 0;
}
.p-voice__list li h3 {
  padding-bottom: 5px;
  margin-bottom: 30px;
  font-size: clamp(1.375rem, 1.331rem + 0.19vw, 1.5rem);
  color: #003366;
  letter-spacing: 0.03em;
  line-height: 1.5;
  border-bottom: 1px solid #0066CC;
}
.p-voice__list li h3 span {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
}
.p-voice__list li p {
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
}
.p-voice__inner {
  display: flex;
}
.p-voice__img {
  width: 39.2%;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .p-voice {
    padding: 13.33vw 0 16vw;
    background-image: url(../img/voice_bg_sp.png);
  }
  .p-voice__block {
    margin-bottom: 9.33vw;
  }
  .p-voice__title {
    width: 85.1%;
    margin-bottom: 2.67vw;
  }
  .p-voice__top {
    font-size: 3.27vw;
    margin-bottom: 5.33vw;
  }
  .p-voice__list {
    width: 100%;
    max-width: 796px;
    margin: 0 auto;
  }
  .p-voice__list li {
    margin-bottom: 5.33vw;
    padding: 5.33vw;
  }
  .p-voice__list li h3 {
    padding-bottom: 0;
    margin-bottom: 5.33vw;
    font-size: 4.87vw;
    line-height: 1.7;
  }
  .p-voice__list li h3 span {
    display: block;
    margin-left: 0;
    font-size: 3.27vw;
    text-align: right;
  }
  .p-voice__list li p {
    font-size: 3vw;
    letter-spacing: .1px;
  }
  .p-voice__inner {
    flex-direction: column;
  }
  .p-voice__img {
    width: 100%;
    margin-bottom: 5.33vw;
  }
}
/* =====================================================
* TOP - onlineshop
* =================================================== */
.p-onlineShop__block {
  margin-bottom: 30px;
}
.p-onlineShop a {
  display: block;
  width: 66.7%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-onlineShop__block {
    margin-bottom: 9.6vw;
  }
  .p-onlineShop a {
    width: 100%;
  }
}
/* =====================================================
* contact
* =================================================== */
.p-contact {
  position: relative;
  background: #E6E6E6;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.p-contact__titleBox {
  height: 80px;
  padding: 11px 5px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #FFF;
  background: linear-gradient(180deg, #0554A5 0%, #003366 100%);
  /* background: linear-gradient(180deg, #d90707 0%, #ca0000 45.67%, #a60000 100%); */
}
.p-contact__titleBox p {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 35px;
  margin: 3px auto;
  line-height: 1.42;
}
.p-contact__titleBox p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon_mail.png);
  background-size: contain;
  background-position: center;
}
.p-contact__titleBox h2 {
  font-size: 1.2rem;
}
.p-contact__text {
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.21;
  text-align: center;
  color: #D9082A;
}
.p-contact__text a {
  color: #D9082A;
}
.p-contact__text span {
  display: block;
  margin-top: 3px;
  font-size: 0.625rem;
  font-weight: 400;
  color: #1A1A1A;
}
.p-contact .wpcf7 {
  padding: 0 16px 16px;
}
.p-contact__form dt {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: .5px;
  font-weight: 500;
  /* margin-bottom: 1px; */
}
.p-contact__form dt span {
  color: #003366;
}
.p-contact__form dd {
  flex: 1;
}
.p-contact__form dd span {
  display: block;
}
.p-contact__form dd input,
.p-contact__form dd select,
.p-contact__form dd textarea {
  width: 100%;
  padding: 3px 10px;
  font-size: 0.875rem;
  background: #FFF;
  border: 1px solid #CCC;
}
.p-contact__form dd textarea {
  height: 80px;
}
.p-contact__form .c-flex {
  gap: 5px;
}
.p-contact__row {
  margin-bottom: 10px;
}
.p-contact__select dd {
  position: relative;
}
.p-contact__select dd::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
  background-image: url(../img/icon_arrow_bk.png);
  background-size: contain;
  background-position: center;
}
.p-contact__button {
  width: 100%;
  padding: 6px 10px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  /* background: #003366; */
  background: linear-gradient(180deg, #d90707 0%, #ca0000 45.67%, #a60000 100%);
}
.p-contact__close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 4px;
  right: 6px;
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #FFF;
  cursor: pointer;
}

.wpcf7-not-valid-tip {
  font-size: 0.5rem;
}

.wpcf7-spinner {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 10px 0 0;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
  border: none;
  padding: 0;
}

@media screen and (min-width: 959px) {
  .p-contact {
    width: 280px;
  }
  .p-contact__close {
    display: none;
  }
}
/* =====================================================
* 404
* =================================================== */
.error404.l-container {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  text-align: center;
}
.error404.l-container h2 {
  margin-bottom: 20px;
}
.error404.l-container p {
  line-height: 140%;
}

/* =====================================================
* Thanks
* =================================================== */
.thanks.l-container {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  text-align: center;
}
.thanks.l-container h2 {
  margin-bottom: 20px;
}
.thanks.l-container p {
  line-height: 140%;
}


/* =====================================================
* padding top
* =================================================== */
.u-pt-0 {
  padding-top: 0;
}
.u-pt-5 {
  padding-top: 5px;
}
.u-pt-10 {
  padding-top: 10px;
}
.u-pt-15 {
  padding-top: 15px;
}
.u-pt-20 {
  padding-top: 20px;
}
.u-pt-25 {
  padding-top: 25px;
}
.u-pt-30 {
  padding-top: 30px;
}
.u-pt-40 {
  padding-top: 40px;
}
.u-pt-50 {
  padding-top: 50px;
}
.u-pt-60 {
  padding-top: 60px;
}
.u-pt-70 {
  padding-top: 70px;
}
.u-pt-80 {
  padding-top: 80px;
}

/* =====================================================
* padding bottom
* =================================================== */
.u-pb-0 {
  padding-bottom: 0;
}
.u-pb-5 {
  padding-bottom: 5px;
}
.u-pb-10 {
  padding-bottom: 10px;
}
.u-pb-15 {
  padding-bottom: 15px;
}
.u-pb-20 {
  padding-bottom: 20px;
}
.u-pb-25 {
  padding-bottom: 25px;
}
.u-pb-30 {
  padding-bottom: 30px;
}
.u-pb-40 {
  padding-bottom: 40px;
}
.u-pb-50 {
  padding-bottom: 50px;
}
.u-pb-60 {
  padding-bottom: 60px;
}
.u-pb-70 {
  padding-bottom: 70px;
}
.u-pb-80 {
  padding-bottom: 80px;
}

/* =====================================================
* margin top
* =================================================== */
.u-mt-0 {
  margin-top: 0;
}
.u-mt-5 {
  margin-top: 5px;
}
.u-mt-10 {
  margin-top: 10px;
}
.u-mt-15 {
  margin-top: 15px;
}
.u-mt-20 {
  margin-top: 20px;
}
.u-mt-25 {
  margin-top: 25px;
}
.u-mt-30 {
  margin-top: 30px;
}
.u-mt-40 {
  margin-top: 40px;
}
.u-mt-50 {
  margin-top: 50px;
}
.u-mt-60 {
  margin-top: 60px;
}
.u-mt-70 {
  margin-top: 70px;
}
.u-mt-80 {
  margin-top: 80px;
}

/* =====================================================
* margin bottom
* =================================================== */
.u-mb-0 {
  margin-bottom: 0;
}
.u-mb-5 {
  margin-bottom: 5px;
}
.u-mb-10 {
  margin-bottom: 10px;
}
.u-mb-15 {
  margin-bottom: 15px;
}
.u-mb-20 {
  margin-bottom: 20px;
}
.u-mb-25 {
  margin-bottom: 25px;
}
.u-mb-30 {
  margin-bottom: 30px;
}
.u-mb-40 {
  margin-bottom: 40px;
}
.u-mb-50 {
  margin-bottom: 50px;
}
.u-mb-60 {
  margin-bottom: 60px;
}
.u-mb-70 {
  margin-bottom: 70px;
}
.u-mb-80 {
  margin-bottom: 80px;
}

/* =====================================================
* display
* =================================================== */
.u-none-pc,
.u-none-tab {
  display: none !important;
}
@media screen and (max-width: 958px) {
  .u-none-pc {
    display: block !important;
  }
}

@media screen and (max-width: 958px) {
  .u-none-sp {
    display: none !important;
  }
}

@media screen and (max-width: 787px) {
  .u-none-tab {
    display: block !important;
  }
}

/* =====================================================
* color - background
* =================================================== */
.u-bg-bk {
  background: #1A1A1A;
}

.u-bg-wh {
  background: #FFF;
}

.u-bg-gry {
  background: #E4E7EC;
}

.u-bg-lbl {
  background: #DAECFF;
}

.l-main {
	position: relative;
}

.p-floating {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translatex(-50%);
	z-index: 100;
  width: 100%;
  padding: 0 8px 16px;
  background: linear-gradient(180deg, transparent, #DAECFF, #DAECFF, #DAECFF);
}
.c-footer-button {
  width: 100%;
  position: relative;
}
.p-floating__inner {
  display: flex;
  gap: 8px;
}
.p-floating .c-button {
  width: 100%;
	max-width: 500px;
	font-size: 3.4vw;
  /* margin: 5.93vw auto 0; */
  margin: 16px auto 0;
}
.p-floating .c-button span {
  max-width: 100px;
}
/* .p-floating .c-button::after {
	top: 54%;
  right: 10px;
  width: 14px;
  height: 14px;
} */
.balloon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  margin: 0 auto;
  padding: 0px 8px;
  min-width: 140px;
  max-width: 100%;
  color: #d9072a;
  font-weight: 700;
  font-size: max(1.9vw, 11px);
  background: #fff;
  border: 1px solid #d9072a;
  border-radius: 16px;
  z-index: 101;
  text-align: center;
}
.balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 8px solid #fff;
}
.p-floating .c-button.-blue {
  background: var(--Linear, linear-gradient(180deg, #003366 0%, #195590 45.67%, #003366 100%));
  box-shadow: 0 4px 0 #003366;
}
.balloon.-blue {
  color: #003366;
  background: #fff;
  border: 1px solid #003366;
}
.balloon.-blue:before {
  border-top: 5px solid #fff;
}