@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

img {
  border: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

pre {
  white-space: pre-wrap;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* WEB font
---------------------------------------------------------------------------- */
/*必要なフォントのみ読み込んでください。不要なフォントおよび太さは削除でお願いします。*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Medium.woff2") format("woff2"), url("../fonts/Noto_Sans_JP/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/Noto_Sans_JP/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Black.woff2") format("woff2"), url("../fonts/Noto_Sans_JP/NotoSansJP-Black.woff") format("woff");
  font-display: swap;
  font-weight: 900;
  font-style: normal;
}
/* base
---------------------------------------------------------------------------- */
/*------------- General Elements -------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
}

* {
  word-break: normal;
  box-sizing: border-box;
}

@media screen and (max-width: 1280px) and (min-width: 768px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}
/*------------- .l-pagebody -------------*/
.l-pagebody {
  width: 100%;
  overflow: hidden;
}

/*------------- .l-header -------------*/
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: fixed;
  top: -8rem;
  left: 0;
  width: 100%;
  height: 8rem;
  padding: 0 4rem;
  background-color: #fff;
  z-index: 9000;
  transition: 0.5s;
}
.l-header.is-show {
  top: 0;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.16);
}

.l-header-logo {
  width: 28.2rem;
}

.l-gnav ul {
  display: flex;
  align-items: center;
  gap: 1.5625vw;
}

.l-gnav-item {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
}
.l-gnav-item:hover {
  opacity: 0.7;
}

.l-gnav-item-tel {
  color: #AFAFAF;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  pointer-events: none;
}
.l-gnav-item-tel a {
  color: #0099DD;
  font-family: "Prompt";
  font-size: 2.4rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding-left: 2.6rem;
  background: url(../images/icn_tel.svg) no-repeat center left/1.8rem;
}

.l-header-cv-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 18.2rem;
  height: 4.8rem;
  border-radius: 0.5rem;
}

.l-menu-cover {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-header {
    height: 14.9333333333vw;
    top: -14.9333333333vw;
    padding: 0 5.3333333333vw;
  }
  .l-header.is-show {
    top: 0;
    box-shadow: 0 0 1.6vw rgba(0, 0, 0, 0.16);
  }
  .l-header-logo {
    width: 53.3333333333vw;
  }
  .l-gnav-wrap {
    display: none;
    position: fixed;
    top: 14.9333333333vw;
    width: 100%;
    left: 0;
    height: 100vh;
    overflow: auto;
    z-index: 9000;
    pointer-events: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .l-gnav-wrap::-webkit-scrollbar {
    display: none;
  }
  .l-gnav {
    display: none;
    width: 100%;
    padding: 2.6666666667vw 10.6666666667vw 9.3333333333vw;
    background-color: #F2F2F2;
    pointer-events: auto;
  }
  .l-gnav ul {
    display: flex;
    flex-direction: column;
    gap: 1.0666666667vw;
  }
  .l-gnav-item {
    font-size: 4.2666666667vw;
    width: 100%;
  }
  .l-gnav-item a {
    display: inline-block;
    width: 100%;
    padding: 3.7333333333vw 0;
    position: relative;
    border-bottom: 0.2666666667vw solid #C5C5C5;
  }
  .l-gnav-item a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.6666666667vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-top: solid 0.5333333333vw #C5C5C5;
    border-right: solid 0.5333333333vw #C5C5C5;
    transform: translateY(-50%) rotate(45deg);
  }
  .l-gnav-item-tel,
  .l-gnav-item .l-header-cv-btn {
    text-align: center;
    width: 78.6666666667vw;
    height: 18.6666666667vw;
    border-radius: 2.6666666667vw;
    border-bottom: none;
    box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.16);
  }
  .l-gnav-item-tel {
    margin: 5.3333333333vw 0 4vw;
    pointer-events: all;
    background-color: #fff;
  }
  .l-gnav-item-tel a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 6.4vw;
    width: 100%;
    height: 100%;
    padding-left: 0;
    background: url(../images/icn_tel.svg) no-repeat top 4.6666666667vw left 10vw/4.8vw;
  }
  .l-gnav-item-tel a::before {
    content: none;
  }
  .l-gnav-item-tel a span {
    color: #AFAFAF;
    font-size: 3.2vw;
    font-family: "Noto Sans JP";
    font-weight: 400;
  }
  .l-gnav-item .l-header-cv-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.3333333333vw;
    letter-spacing: 0;
    margin: 5.3333333333vw 0 13.3333333333vw;
  }
  .l-gnav-item .l-header-cv-btn::before {
    content: none;
  }
  .l-gnav-item .l-header-cv-btn span {
    padding-left: 9.8666666667vw;
    background: url(../images/icn_cvbtn.svg) no-repeat center left/contain;
  }
  .m-header-btn {
    text-align: left;
  }
  .m-menu-icon-wrap {
    width: 8vw;
    height: 5.8666666667vw;
    position: relative;
  }
  .m-menu-icon,
  .m-menu-icon::before,
  .m-menu-icon::after {
    content: "";
    position: absolute;
    width: 8vw;
    height: 0.5333333333vw;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #333;
    transition: all 0.3s;
  }
  .m-menu-icon::before {
    top: -2.6666666667vw;
  }
  .m-menu-icon::after {
    top: 3.2vw;
  }
  .m-menu-icon.is-open {
    transform: rotate(45deg);
  }
  .m-menu-icon.is-open::before {
    top: 0;
    transform: rotate(90deg);
  }
  .m-menu-icon.is-open::after {
    top: 0;
    transform: rotate(90deg);
  }
  .l-menu-cover.is-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh + 50px);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 200;
  }
}
/*------------- .l-content -------------*/
.l-content {
  max-width: 120rem;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .l-content {
    max-width: none;
    padding: 0 5.3333333333vw;
  }
}
/*------------- .l-pagetop -------------*/
.l-pagetop {
  display: none;
}

/*------------- .l-footer -------------*/
.l-footer {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
  padding: 1.5rem;
  background-color: #333;
}

@media screen and (max-width: 767px) {
  .l-footer {
    font-size: 3.2vw;
    padding: 4vw;
    margin-bottom: 9.3333333333vw;
  }
}
/*------------- common  -------------*/
.p-pink {
  color: #F00088;
}

.p-skyblue {
  color: #0099DD;
}

.p-skyblue-gradation {
  background: #1CB0EB; /* fallback for old browsers */
  background: -webkit-linear-gradient(right, #1CB0EB, #007BE5);
  background: linear-gradient(to right, #1CB0EB, #007BE5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-pink-marker {
  display: inline;
  background: linear-gradient(transparent 60%, #FECDE8 0%);
}

.p-pink-marker-dot {
  background-image: linear-gradient(transparent 77%, #FECDE8 0%), radial-gradient(0.1em 0.1em at center center, #F00088, #F00088 100%, transparent, transparent);
  background-position: 0% 0%, top left;
  background-repeat: no-repeat, repeat-x;
  background-size: auto, 1em 0.5em;
  padding-top: 0.3em;
}

.p-txt-deco {
  display: block;
  width: fit-content;
  padding: 0 1em;
  position: relative;
}
.p-txt-deco::before, .p-txt-deco::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 0.2rem;
  height: 80%;
  background-color: #0099DD;
}
.p-txt-deco::before {
  left: 0;
  transform: translateY(-50%) rotate(-30deg);
}
.p-txt-deco::after {
  right: 0;
  transform: translateY(-50%) rotate(30deg);
}

.p-sec-ttl01 {
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.4rem;
}
.p-sec-ttl01::before, .p-sec-ttl01::after {
  content: "";
  width: 0.365rem;
  height: 2.895rem;
  background-color: #333;
}
.p-sec-ttl01::before {
  margin-right: 1.4rem;
  transform: rotate(-35deg);
}
.p-sec-ttl01::after {
  margin-left: 0.22rem;
  transform: rotate(35deg);
}

.p-sec-ttl02 {
  font-size: 3.8rem;
  line-height: 1.4736842105;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5.9rem;
}
.p-sec-ttl02 span {
  font-size: 4.6rem;
  line-height: 1.4782608696;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-sec-ttl03 {
  font-size: 4.6rem;
  line-height: 1.4782608696;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5.9rem;
}

.p-box-effect {
  /* 背景グラデーション変化 */
  background-size: 200% auto;
  /* 光エフェクト */
  position: relative;
  overflow: hidden;
  /* 背景グラデーション変化 */
}
.p-box-effect.p-box-effect-gradient {
  background-image: linear-gradient(to right, #EC6BA8 0%, #EC108B 51%, #EC6BA8 100%);
}
.p-box-effect:hover {
  /* 背景グラデーション変化 */
  background-position: right center;
  /* 光エフェクト */
}
.p-box-effect:hover::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 10%;
  height: 150%;
  background: #fff;
  transform: rotate(45deg);
  animation: reflect 1s ease-in-out;
}
@keyframes reflect {
  0% {
    transform: rotate(45deg) scale(0);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) scale(100);
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-pink-marker {
    display: inline;
    background: linear-gradient(transparent 80%, #FECDE8 0%);
  }
  .p-txt-deco {
    padding: 0;
  }
  .p-txt-deco::before, .p-txt-deco::after {
    display: none;
  }
  .p-sec-ttl01 {
    font-size: 5.3333333333vw;
    margin-bottom: 0;
  }
  .p-sec-ttl01::before, .p-sec-ttl01::after {
    width: 0.8vw;
    height: 13.3333333333vw;
  }
  .p-sec-ttl01::before {
    margin-right: 2.2933333333vw;
    transform: rotate(-15deg) translateY(1.3333333333vw);
  }
  .p-sec-ttl01::after {
    margin-left: 2.1333333333vw;
    transform: rotate(15deg) translateY(1.3333333333vw);
  }
  .p-sec-ttl02 {
    font-size: 6.4vw;
    margin-bottom: 8vw;
  }
  .p-sec-ttl02 span {
    font-size: 8vw;
  }
  .p-sec-ttl03 {
    font-size: 8vw;
    letter-spacing: 0;
    margin-bottom: 8vw;
  }
}
/*------------- mv -------------*/
.p-mv {
  margin-top: 8rem;
  background: url(../images/bg_mv_pc.png) no-repeat left top;
  background-size: 100% auto;
}

.p-mv-inner {
  padding: 2.0833333333vw 0 0 14.5833333333vw;
}

.p-mv-bottom {
  width: 41.6666666667vw;
  margin-left: 0.5208333333vw;
  padding-bottom: 1.0416666667vw;
}

.p-mv-ttl {
  font-size: 5.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 900;
  font-size: 2.7083333333vw;
  margin-bottom: 3.125vw;
}

.p-mv-ttl-txt01 {
  font-size: 7.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 900;
  font-size: 3.75vw;
  margin-right: 0.2604166667vw;
}

.p-mv-ttl-txt02 {
  position: relative;
}
.p-mv-ttl-txt02::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1.8229166667vw;
  background: url(../images/icn_exclamation.svg) no-repeat center/contain;
  width: 1.5625vw;
  height: 1.5104166667vw;
}

.p-mv-ttl-txt03 {
  font-size: 2.6rem;
  line-height: 1.7692307692;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 1.3541666667vw;
  margin-bottom: 2.6041666667vw;
}

.p-mv-ttl-txt03-box {
  color: #fff;
  display: inline-block;
  background: #1CB0EB;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(right, #1CB0EB, #007BE5);
  background: linear-gradient(to right, #1CB0EB, #007BE5);
}

.p-mv-ttl-txt03-num {
  padding: 0 0.5208333333vw;
}

.p-mv-ttl-txt03-sub {
  font-size: 2.2rem;
  line-height: 1.7727272727;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 1.1458333333vw;
}

.p-mv-ttl-txt04 {
  font-size: 1.6rem;
  line-height: 1.1875;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 0.8854166667vw;
  margin: 0 0 1.0416666667vw 2.6041666667vw;
}

.p-mv-badge-list {
  display: flex;
  align-items: start;
  gap: 1.0416666667vw;
  margin: 0.78125vw auto 1.3020833333vw;
}
.p-mv-badge-list li:first-child {
  width: 11.3020833333vw;
}
.p-mv-badge-list li:nth-child(2) {
  width: 12.8125vw;
}
.p-mv-badge-list li:last-child {
  width: 12.8125vw;
}
.p-mv-badge-list img {
  width: auto;
  height: 7.1875vw;
}

.p-mv-badge-txt {
  color: #959595;
  font-size: 1.1rem;
  line-height: 1.5454545455;
  font-weight: 400;
  font-size: 0.625vw;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 0.4166666667vw;
}

@media screen and (max-width: 767px) {
  .p-mv {
    margin-top: 14.6666666667vw;
    background: url(../images/bg_mv_sp.png) no-repeat left top;
    background-size: 100% auto;
  }
  .p-mv-inner {
    padding: 4.6666666667vw 0 0 8vw;
  }
  .p-mv-bottom {
    width: 100%;
    margin-left: 1.3333333333vw;
    padding-bottom: 0;
  }
  .p-mv-ttl {
    font-size: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
  .p-mv-ttl-txt01 {
    font-size: 8.5333333333vw;
    margin-right: 1.3333333333vw;
  }
  .p-mv-ttl-txt02 {
    position: relative;
  }
  .p-mv-ttl-txt02::before {
    content: "";
    position: absolute;
    top: -1.3333333333vw;
    right: -5.3333333333vw;
    background: url(../images/icn_exclamation.svg) no-repeat center/contain;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
  .p-mv-ttl-txt03 {
    font-size: 4.2666666667vw;
    margin-bottom: 10.6666666667vw;
  }
  .p-mv-ttl-txt03-num {
    padding: 0 1.3333333333vw;
    margin-bottom: 1.3333333333vw;
  }
  .p-mv-ttl-txt03-sub {
    font-size: 3.7333333333vw;
  }
  .p-mv-ttl-txt04 {
    font-size: 3.4666666667vw;
    margin: 0 0 2.6666666667vw 0;
    text-align: center;
  }
  .p-mv-badge-list {
    display: flex;
    align-items: start;
    gap: 2.6666666667vw;
    margin: 22.6666666667vw 0 3.3333333333vw 2vw;
  }
  .p-mv-badge-list li:first-child {
    width: 22.6666666667vw;
  }
  .p-mv-badge-list li:nth-child(2) {
    width: 23.2vw;
  }
  .p-mv-badge-list li:last-child {
    width: 22.6666666667vw;
  }
  .p-mv-badge-list img {
    width: auto;
    height: 16.5333333333vw;
  }
  .p-mv-badge-txt {
    font-size: 2.4vw;
    margin-left: 2vw;
    margin-top: 1.0666666667vw;
  }
}
/*------------- p-sec01 -------------*/
.p-sec01 {
  padding: 3rem 0 5rem;
}

.p-sec01-txt {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
}

.p-sec01-txt-l {
  font-size: 2.8rem;
  font-weight: 700;
}

.p-sec01-txt-s {
  font-size: 1.6rem;
}

.p-sec01-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.p-sec01-swiper .swiper-slide img {
  width: 15rem;
  height: 7rem;
  border: 0.1rem solid #C5C5C5;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .p-sec01 {
    padding: 10.6666666667vw 0 8vw;
  }
  .p-sec01-txt {
    font-size: 5.8666666667vw;
    margin-bottom: 8vw;
  }
  .p-sec01-txt-l {
    font-size: 6.9333333333vw;
  }
  .p-sec01-txt-s {
    font-size: 4.2666666667vw;
  }
  .p-sec01-swiper .swiper-slide img {
    width: 40vw;
    height: 18.6666666667vw;
    border: 0.2666666667vw solid #C5C5C5;
  }
}
/*------------- p-sec02 -------------*/
.p-sec02 {
  padding: 8rem 0 7.7rem;
  background-color: #F2F2F2;
}

.p-sec02-txt01 {
  display: block;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: fit-content;
  padding: 1rem 4rem;
  margin: 0 auto 3.5rem;
  background-color: #333;
  border-radius: 9999px;
}

.p-sec02-txt02 {
  font-size: 4.6rem;
  line-height: 1.4782608696;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: fit-content;
  padding: 1rem 3.5rem;
  margin: 0 auto 6.5rem;
  background-color: #DEDEDE;
  position: relative;
}
.p-sec02-txt02::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.9rem 2.25rem 0 2.25rem;
  border-color: #DEDEDE transparent transparent transparent;
}

.p-sec02-list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.p-sec02-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 3rem;
  background-color: #fff;
  border-radius: 1rem;
}
.p-sec02-list li img {
  height: 13.2rem;
}

.p-sec02-list-txt-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 11rem;
  margin-top: 1.5rem;
}

.p-sec02-list-txt {
  font-size: 2.2rem;
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
.p-sec02-list-txt span {
  display: inline-block;
  color: #fff;
  padding: 0 0.3rem 0.2rem;
  margin-bottom: 0.5rem;
  background-color: #333;
}

@media screen and (max-width: 767px) {
  .p-sec02 {
    padding: 10.6666666667vw 0 18vw;
  }
  .p-sec02-txt01 {
    font-size: 4.8vw;
    padding: 2.6666666667vw 8vw;
    margin: 0 auto 5.3333333333vw;
  }
  .p-sec02-txt02 {
    font-size: 6.4vw;
    text-align: center;
    width: 100%;
    padding: 2.6666666667vw 5.3333333333vw;
    margin: 0 auto 12vw;
  }
  .p-sec02-txt02::before {
    border-width: 4vw 5.3333333333vw 0 5.3333333333vw;
  }
  .p-sec02-list {
    flex-wrap: wrap;
    gap: 5.3333333333vw;
    justify-content: center;
  }
  .p-sec02-list li {
    width: 40vw;
    padding: 5.3333333333vw 2vw 5.3333333333vw;
    border-radius: 2.6666666667vw;
    flex: none;
  }
  .p-sec02-list li img {
    height: 19.4666666667vw;
  }
  .p-sec02-list-txt-wrap {
    height: auto;
    margin-top: 4vw;
  }
  .p-sec02-list-txt {
    font-size: 4vw;
  }
  .p-sec02-list-txt span {
    padding: 0 0.8vw 0.5333333333vw;
    margin: 0.6666666667vw 0;
  }
}
/*------------- p-sec03 -------------*/
.p-sec03 {
  padding: 20rem 0 10rem;
  background: url(../images/bg_sec03_pc.png) no-repeat center/cover;
  position: relative;
}
.p-sec03::before, .p-sec03::after {
  position: absolute;
  content: "";
  transform: translateX(-50%);
}
.p-sec03::before {
  top: -0.1rem;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10.4rem 96rem 0 96rem;
  border-color: #F2F2F2 transparent transparent transparent;
}
.p-sec03::after {
  top: -2.5rem;
  left: 50%;
  width: 20.2rem;
  height: 16.2rem;
  background: url(../images/img_arw01.svg) no-repeat center/contain;
}

.p-sec03-txt01 {
  color: #fff;
  font-size: 3.8rem;
  line-height: 1.4736842105;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto 6rem;
  padding-right: 3rem;
  background: url(../images/img_exclamation-wh.svg) no-repeat center right/2.2rem;
}
.p-sec03-txt01 img {
  width: 21.3rem;
  height: 6.9rem;
  padding: 1rem 1.8rem 1rem 1.5rem;
  margin-right: 1rem;
  margin-left: -1.5rem;
  background-color: #fff;
}
.p-sec03-txt01 span {
  font-size: 5rem;
}

.p-sec03-list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.p-sec03-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 4rem 2rem;
  background-color: #fff;
  border-radius: 1rem;
}
.p-sec03-list li:nth-child(1) img {
  width: 12.1rem;
  height: auto;
}
.p-sec03-list li:nth-child(2) img {
  width: 21.5rem;
  height: auto;
}
.p-sec03-list li:nth-child(3) img {
  width: 16.1rem;
  height: auto;
}

.p-sec03-list-img {
  height: 20rem;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-sec03-list-ttl {
  color: #0099DD;
  font-size: 2.6rem;
  line-height: 1.6153846154;
  font-weight: 700;
  text-align: center;
  margin: 2.5rem 0 1.5rem;
}
.p-sec03-list-ttl span {
  font-size: 2rem;
}

.p-sec03-list-txt {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-sec03 {
    padding: 28vw 0 10.6666666667vw;
    background: url(../images/bg_sec03_sp.png) no-repeat center/cover;
  }
  .p-sec03::before {
    top: -0.2666666667vw;
    border-width: 10.6666666667vw 50.6666666667vw 0 50.6666666667vw;
  }
  .p-sec03::after {
    top: -10.6666666667vw;
    width: 34.6666666667vw;
    height: 29.0666666667vw;
  }
  .p-sec03-txt01 {
    font-size: 6.4vw;
    text-align: center;
    margin: 0 auto 7.3333333333vw;
    padding-right: 0;
    background: url(../images/img_exclamation-wh.svg) no-repeat bottom 1.3333333333vw right 8vw/2.9333333333vw;
  }
  .p-sec03-txt01 img {
    width: 34.6666666667vw;
    height: 11.4666666667vw;
    padding: 2vw 2.6666666667vw 2vw 2.6666666667vw;
    margin-right: 1.3333333333vw;
    margin-left: -2vw;
  }
  .p-sec03-txt01 span {
    display: inline-block;
    font-size: 8vw;
    margin-top: 2.6666666667vw;
  }
  .p-sec03-list {
    flex-direction: column;
    gap: 5.3333333333vw;
  }
  .p-sec03-list li {
    padding: 8vw 5.3333333333vw;
    border-radius: 2.6666666667vw;
  }
  .p-sec03-list li:nth-child(1) img {
    width: 26.6666666667vw;
    height: auto;
  }
  .p-sec03-list li:nth-child(2) img {
    width: 40vw;
    height: auto;
  }
  .p-sec03-list li:nth-child(3) img {
    width: 36vw;
    height: auto;
  }
  .p-sec03-list-img {
    height: auto;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2.6666666667vw;
  }
  .p-sec03-list-ttl {
    font-size: 5.3333333333vw;
    margin: 1.3333333333vw 0 4vw;
  }
  .p-sec03-list-ttl span {
    font-size: 5.3333333333vw;
  }
  .p-sec03-list-txt {
    font-size: 4.1333333333vw;
  }
}
/*------------- p-sec04 -------------*/
.p-sec04 {
  padding: 7.1rem 0 10.9rem;
  background-color: #fff;
}

.p-sec04-box {
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.p-sec04-box-img {
  width: 48.6rem;
  margin-right: 8.52rem;
}
.p-sec04-box-img img {
  width: 100%;
}

.p-sec04-box-txt {
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  flex-direction: column;
  width: 55.1rem;
}

.p-sec04-ttl {
  color: #0099DD;
  font-size: 4.6rem;
  line-height: 1.4782608696;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 3rem;
}

.p-sec04-txt01 {
  font-size: 2.2rem;
  line-height: 1.5909090909;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 2rem;
}

.p-sec04-txt02 {
  font-size: 1.8rem;
  line-height: 1.9444444444;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.p-sec04-txt02 span {
  font-size: 2.2rem;
  line-height: 1.5909090909;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.p-sec04-txt02.-mb {
  margin-bottom: 2rem;
}

.p-sec04-txt03 {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 2rem;
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 767px) {
  .p-sec04 {
    padding: 10.6666666667vw 0;
  }
  .p-sec04-box {
    flex-direction: column;
  }
  .p-sec04-box-img {
    width: 78.6666666667vw;
    margin-right: 0;
    margin-bottom: 5.3866666667vw;
  }
  .p-sec04-box-txt {
    width: 89.3333333333vw;
  }
  .p-sec04-ttl {
    font-size: 8vw;
    margin-bottom: 5.3333333333vw;
  }
  .p-sec04-txt01 {
    font-size: 4.8vw;
    line-height: 1.6;
    letter-spacing: 0.03em;
    margin-bottom: 5.3333333333vw;
  }
  .p-sec04-txt01 span {
    font-size: 5.3333333333vw;
  }
  .p-sec04-txt02 {
    font-size: 4.8vw;
    letter-spacing: 0.03em;
  }
  .p-sec04-txt02 span {
    font-size: 5.3333333333vw;
  }
  .p-sec04-txt02.-mb {
    margin-bottom: 5.3333333333vw;
  }
  .p-sec04-txt03 {
    font-size: 3.7333333333vw;
    margin-top: 2.6666666667vw;
  }
}
/*------------- p-sec05 -------------*/
.p-sec05 {
  padding: 10rem 0;
  background-color: #EEF8FD;
}

.p-sec05-ttl01 {
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.4rem;
}

.p-sec05-ttl02 {
  font-size: 3.8rem;
  line-height: 1.4736842105;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5.9rem;
}
.p-sec05-ttl02 span {
  color: #0099DD;
  font-size: 4.6rem;
  line-height: 1.4782608696;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-sec05-lists {
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  flex-direction: column;
  width: 100%;
}

.p-sec05-item {
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border-radius: 1rem;
  margin-bottom: 4rem;
  padding: 5rem 5rem 5rem 45.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}
.p-sec05-item:last-of-type {
  margin-bottom: 0;
}
.p-sec05-item:nth-child(even) {
  padding: 5rem 45.9rem 5rem 4.6rem;
}
.p-sec05-item:nth-child(even) {
  background-position: right top;
}
.p-sec05-item:nth-child(1) {
  background-image: url(../images/img_sec05_box01_pc.png);
}
.p-sec05-item:nth-child(2) {
  background-image: url(../images/img_sec05_box02_pc.png);
}
.p-sec05-item:nth-child(3) {
  background-image: url(../images/img_sec05_box03_pc.png);
}
.p-sec05-item:nth-child(4) {
  background-image: url(../images/img_sec05_box04_pc.png);
}

.p-sec05-item-inner {
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  margin: 0 0 3rem 0;
}

.p-sec05-item-num {
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  flex-direction: column;
  height: 9.9rem;
  width: 9.9rem;
  border-radius: 50%;
  background-color: #1CB0EB;
  background: transparent linear-gradient(131deg, #4ED4FF 0%, #3999E1 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-family: "Prompt", "Noto Sans JP";
  margin-right: 2.6rem;
}

.p-sec05-item-num-txt01 {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.p-sec05-item-num-txt02 {
  font-size: 4.2rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: left;
}

.p-sec05-item-ttl {
  color: #0099DD;
  font-size: 3.4rem;
  line-height: 1.4705882353;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-sec05-item-txt {
  font-size: 2.2rem;
  line-height: 1.5909090909;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.p-sec05-item-annot {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 400;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 1.6rem;
}

@media screen and (max-width: 767px) {
  .p-sec05 {
    padding: 10.6666666667vw 0;
  }
  .p-sec05-ttl01 {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
  .p-sec05-ttl02 {
    font-size: 6.4vw;
    margin-bottom: 8vw;
  }
  .p-sec05-ttl02 span {
    font-size: 8vw;
  }
  .p-sec05-lists {
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    flex-direction: column;
    width: 100%;
  }
  .p-sec05-item {
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    flex-direction: column;
    width: 100%;
    border-radius: 2.6666666667vw;
    margin-bottom: 5.3333333333vw;
    padding: 60vw 5.3333333333vw 8vw;
    background-position: left top;
  }
  .p-sec05-item:last-of-type {
    margin-bottom: 0;
  }
  .p-sec05-item:nth-child(even) {
    padding: 60vw 5.3333333333vw 8vw;
  }
  .p-sec05-item:nth-child(even) {
    background-position: left top;
  }
  .p-sec05-item:nth-child(1) {
    background-image: url(../images/img_sec05_box01_sp.png);
  }
  .p-sec05-item:nth-child(2) {
    background-image: url(../images/img_sec05_box02_sp.png);
  }
  .p-sec05-item:nth-child(3) {
    background-image: url(../images/img_sec05_box03_sp.png);
  }
  .p-sec05-item:nth-child(4) {
    background-image: url(../images/img_sec05_box04_sp.png);
  }
  .p-sec05-item-inner {
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin: 0 0 5.3333333333vw 0;
  }
  .p-sec05-item-num {
    height: 16vw;
    width: 16vw;
    margin-right: 4vw;
  }
  .p-sec05-item-num-txt01 {
    font-size: 3.2vw;
  }
  .p-sec05-item-num-txt02 {
    font-size: 8vw;
  }
  .p-sec05-item-ttl {
    font-size: 4.9333333333vw;
    letter-spacing: 0;
  }
  .p-sec05-item-txt {
    font-size: 4.8vw;
  }
  .p-sec05-item-annot {
    font-size: 3.7333333333vw;
    margin-top: 4vw;
  }
}
/*------------- p-sec06 -------------*/
.p-sec06 {
  padding: 8rem 5rem 10rem;
}

.p-sec06-inner {
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  gap: 4rem;
  margin-bottom: 5.4rem;
}

.p-sec06-box {
  width: 53rem;
  border: 0.1rem solid #0099DD;
  border-top: 1.6rem solid #0099DD;
  border-radius: 0.5rem;
  padding: 3rem 4rem 4rem 4rem;
}

.p-sec06-box-inner {
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  margin-bottom: 3rem;
}

.p-sec06-box-img {
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  background-color: #EEF8FD;
  width: 16rem;
  height: 16rem;
  margin-right: 3.5rem;
}
.p-sec06-box-img img {
  width: 71%;
}

.p-sec06-box-ttl-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  flex-direction: column;
}

.p-sec06-box-ttl01 {
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 24.1rem;
  border-radius: 2.1rem;
  text-align: center;
  padding: 0.6rem 0 0.7rem;
  margin: 0 auto 2.5rem;
  background-color: #CCF2FF;
  position: relative;
}
.p-sec06-box-ttl01::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.8rem 0.7rem 0 0.7rem;
  border-color: #CCF2FF transparent transparent transparent;
}

.p-sec06-box-ttl02 {
  font-size: 4rem;
  line-height: 1.475;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-sec06-box-txt {
  font-size: 2.2rem;
  line-height: 1.5909090909;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.p-sec06-ttl03 {
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.p-sec06-graph {
  background-color: #EEF8FD;
  width: 98rem;
  border-radius: 1rem;
  padding: 5rem 0 2.5rem;
  margin: 0 auto;
}

.p-sec06-graph-inner {
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  gap: 5rem;
}

.p-sec06-graph-img {
  width: 17rem;
}

.p-sec06-graph-box {
  width: 86rem;
  height: 16.6rem;
  background-image: url(../images/img_sec06_graph_box_pc.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 400;
  padding-top: 6.3rem;
  padding-left: 5.3rem;
  margin: 0 auto;
}
.p-sec06-graph-box span {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-sec06 {
    padding: 5.3333333333vw 0;
  }
  .p-sec06-inner {
    flex-direction: column;
    gap: 5.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
  .p-sec06-box {
    width: 89.3333333333vw;
    border: 0.2666666667vw solid #0099DD;
    border-top: 4.2666666667vw solid #0099DD;
    border-radius: 1.3333333333vw;
    padding: 8vw 5.3333333333vw 8.5333333333vw 5.3333333333vw;
  }
  .p-sec06-box-inner {
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-bottom: 4.8vw;
  }
  .p-sec06-box-img {
    width: 29.8666666667vw;
    height: 29.8666666667vw;
    margin-right: 3.7333333333vw;
  }
  .p-sec06-box-img img {
    width: 80%;
  }
  .p-sec06-box-ttl01 {
    font-size: 3.7333333333vw;
    width: 45.0666666667vw;
    border-radius: 5.6vw;
    padding: 1.0666666667vw 0 1.3333333333vw;
    margin: 0 auto 4.8vw;
  }
  .p-sec06-box-ttl01::before {
    border-width: 2.1333333333vw 1rem 0 1rem;
  }
  .p-sec06-box-ttl02 {
    font-size: 7.4666666667vw;
  }
  .p-sec06-box-txt {
    font-size: 4.8vw;
  }
  .p-sec06-ttl03 {
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
  .p-sec06-graph {
    width: 89.3333333333vw;
    border-radius: 2.6666666667vw;
    padding: 8vw 0 4vw;
  }
  .p-sec06-graph-inner {
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    gap: 5.3333333333vw;
  }
  .p-sec06-graph-img {
    width: 36.5333333333vw;
    text-align: center;
  }
  .p-sec06-graph-box {
    width: 89.3333333333vw;
    height: 57.0666666667vw;
    background-image: url(../images/img_sec06_graph_box_sp.svg);
    font-size: 4.2666666667vw;
    padding: 16.8vw 10.6666666667vw 0 10.6666666667vw;
  }
}
/*------------- p-sec07 -------------*/
.p-sec07 {
  padding: 8rem 0;
}

.p-sec07-swiper-wrap {
  position: relative;
  margin-bottom: 5.8rem;
}

.p-sec07-swiper {
  position: relative;
}

.p-sec07-swiper-slide {
  height: auto;
  padding: 5rem 8rem;
  border-radius: 2rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
}

.p-sec07-swiper-slide-top {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}
.p-sec07-swiper-slide-top img {
  width: 21.6rem;
  height: 13.5rem;
  background-color: #fff;
  border: 0.1rem solid #0099DD;
  border-radius: 0.8rem;
  object-fit: contain;
}

.p-sec07-swiper-slide-ttl {
  color: #0099DD;
  font-size: 2.6rem;
  line-height: 1.4615384615;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.p-sec07-swiper-slide-txt01 {
  color: #AFAFAF;
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-sec07-swiper-slide-bottom {
  display: flex;
  gap: 3.5rem;
}
.p-sec07-swiper-slide-bottom p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.p-sec07-swiper-slide-bottom img {
  width: 25rem;
}

.p-sec07-swiper-btn-prev,
.p-sec07-swiper-btn-next {
  height: 7.5rem;
  width: 7.5rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  border-radius: 9999px;
  overflow: hidden;
  transition: all 0.3s;
}
.p-sec07-swiper-btn-prev:hover,
.p-sec07-swiper-btn-next:hover {
  opacity: 0.7;
}

.p-sec07-swiper-btn-prev {
  left: -5rem;
}

.p-sec07-swiper-btn-next {
  right: -5rem;
}

.p-sec07-swiper-btn-prev::after,
.p-sec07-swiper-btn-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 7.5rem;
  height: 7.5rem;
  margin: auto;
  background-image: url(../images/icn_arw01.svg);
}

.p-sec07-swiper-btn-prev::after {
  transform: rotate(180deg);
}

.p-sec07-swiper-wrap .swiper-pagination-bullets.swiper-pagination-horizontal {
  transform: translateY(100%);
  bottom: -4rem;
}

.p-sec07-swiper-wrap .swiper-pagination-bullet {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 1rem !important;
  border: 0.1rem solid #0099DD;
  background: #fff;
  opacity: 1;
}
.p-sec07-swiper-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0099DD;
}

@media screen and (max-width: 1340px) {
  .p-sec07-swiper-btn-prev {
    left: -2rem;
  }
  .p-sec07-swiper-btn-next {
    right: -2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sec07 {
    padding: 10.6666666667vw 0;
  }
  .p-sec07-swiper-wrap {
    margin-bottom: 15.4666666667vw;
  }
  .p-sec07-swiper-slide {
    padding: 8vw 5.3333333333vw;
    border-radius: 5.3333333333vw;
    box-shadow: 0 0 2.6666666667vw rgba(0, 0, 0, 0.16);
  }
  .p-sec07-swiper-slide-top {
    flex-direction: column;
    gap: 5.3333333333vw;
    margin-bottom: 4.6666666667vw;
  }
  .p-sec07-swiper-slide-top img {
    width: 42.1333333333vw;
    height: 26.4vw;
    border: 0.2666666667vw solid #0099DD;
    border-radius: 2.1333333333vw;
  }
  .p-sec07-swiper-slide-ttl {
    font-size: 4.8vw;
    line-height: 1.6666666667;
    margin-bottom: 3.3333333333vw;
  }
  .p-sec07-swiper-slide-txt01 {
    font-size: 4.2666666667vw;
  }
  .p-sec07-swiper-slide-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8vw;
  }
  .p-sec07-swiper-slide-bottom p {
    font-size: 3.7333333333vw;
    letter-spacing: 0;
    line-height: 1.8571428571;
  }
  .p-sec07-swiper-slide-bottom img {
    width: 66.6666666667vw;
  }
  .p-sec07-swiper-btn-prev,
  .p-sec07-swiper-btn-next {
    top: auto;
    bottom: -8vw;
    transform: translateY(100%);
    height: 10.6666666667vw;
    width: 10.6666666667vw;
    box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.16);
  }
  .p-sec07-swiper-btn-prev {
    left: 35%;
  }
  .p-sec07-swiper-btn-next {
    right: 35%;
  }
  .p-sec07-swiper-btn-prev::after,
  .p-sec07-swiper-btn-next::after {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
  .p-sec07-swiper-btn-prev::after {
    transform: rotate(180deg);
  }
  .p-sec07-swiper-wrap .swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
  }
}
/*------------- p-sec08 -------------*/
.p-sec08 {
  padding: 8rem 0 10rem;
  background-color: #EEF8FD;
}

.p-sec08-list01 {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin: 5rem auto 0;
}
.p-sec08-list01 li {
  font-size: 1.8rem;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  font-weight: 500;
  width: 25rem;
}
.p-sec08-list01 li img {
  display: block;
  width: 23.4rem;
  height: 20.5rem;
  object-fit: contain;
  object-position: bottom;
  margin: 0 auto 3rem;
}
.p-sec08-list01 li a {
  color: #0099DD;
  border-bottom: 0.1rem solid #0099DD;
  transition: all 0.3s;
}
.p-sec08-list01 li a:hover {
  border-color: transparent;
}

@media screen and (max-width: 767px) {
  .p-sec08 {
    padding: 10.6666666667vw 0;
  }
  .p-sec08-list01-wrap {
    display: flex;
    gap: 5.3333333333vw;
  }
  .p-sec08-img {
    width: 14.6666666667vw;
    min-width: 14.6666666667vw;
  }
  .p-sec08-list01 {
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    margin: 0 auto;
  }
  .p-sec08-list01 li {
    font-size: 4.2666666667vw;
    width: 100%;
  }
  .p-sec08-list01 li img {
    width: 45.3333333333vw;
    height: auto;
    margin: 0 auto 1.3333333333vw;
  }
  .p-sec08-list01 li a {
    border-bottom: 0.2666666667vw solid #0099DD;
  }
}
/*------------- p-sec09 -------------*/
.p-sec09 {
  padding: 5.5rem 0 8rem;
}

.p-sec09-ttl {
  color: #0099DD;
  font-size: 4rem;
  line-height: 1.475;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.p-sec09-list {
  display: flex;
  flex-wrap: wrap;
  width: 86rem;
  margin: 0 auto 3rem;
}
.p-sec09-list dt, .p-sec09-list dd {
  padding: 3rem 0 2.5rem;
  border-bottom: 0.1rem solid #C5C5C5;
}
.p-sec09-list dt {
  color: #0099DD;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 14.5rem;
}
.p-sec09-list dd {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
  width: calc(100% - 14.5rem);
  padding-top: 3.5rem;
}
.p-sec09-list dd a {
  transition: all 0.3s;
}
.p-sec09-list dd a:hover {
  opacity: 0.7;
}

.p-sec09-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.p-sec09-logo-wrap img {
  display: block;
  height: 9rem;
  max-height: 100%;
}

@media screen and (max-width: 767px) {
  .p-sec09 {
    padding: 10.6666666667vw 0 16.6666666667vw;
  }
  .p-sec09-ttl {
    font-size: 8vw;
    margin-bottom: 2.6666666667vw;
  }
  .p-sec09-list {
    display: block;
    width: 100%;
    margin: 0 auto 3rem;
  }
  .p-sec09-list dt, .p-sec09-list dd {
    border-bottom: 0.2666666667vw solid #C5C5C5;
  }
  .p-sec09-list dt {
    font-size: 5.3333333333vw;
    width: 100%;
    padding: 5.3333333333vw 0 0;
    border-bottom: none;
  }
  .p-sec09-list dd {
    font-size: 4.2666666667vw;
    width: 100%;
    padding-top: 3.5rem;
    padding: 3.8666666667vw 0;
  }
  .p-sec09-logo-wrap {
    gap: 6.6666666667vw;
  }
  .p-sec09-logo-wrap img {
    display: block;
    height: 22vw;
  }
}
.p-sec11 {
  background: url(../images/bg_sec11_pc.png) no-repeat left bottom;
  background-size: cover;
  padding: 8rem 0;
}

.p-sec11-area {
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
}

.p-sec11-item {
  background-color: #fff;
  width: 34rem;
  position: relative;
  border-radius: 1rem;
}

.p-sec11-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  background-color: #0099DD;
  border-radius: 50%;
}

.p-sec11-num {
  position: absolute;
  top: -2rem;
  left: -2rem;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  flex-direction: column;
  height: 7.6rem;
  width: 7.6rem;
  border-radius: 50%;
  background-color: #1CB0EB;
  background: transparent linear-gradient(131deg, #4ED4FF 0%, #3999E1 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-family: "Prompt", "Noto Sans JP";
}

.p-sec11-num-txt01 {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.p-sec11-num-txt02 {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: left;
}

.p-sec11-img {
  text-align: center;
  padding: 2rem 0;
}
.p-sec11-img img {
  height: 13.8rem;
  width: auto;
}

.p-sec11-ttl {
  background-color: #0099DD;
  color: #fff;
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0 0 1rem 1rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-sec11 {
    background: url(../images/bg_sec11_sp.png) no-repeat center center/cover;
    padding: 10.6666666667vw 0;
  }
  .p-sec11-area {
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5.3333333333vw;
  }
  .p-sec11-item {
    width: 37.3333333333vw;
    border-radius: 1.3333333333vw;
  }
  .p-sec11-num {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
  .p-sec11-num {
    top: -2.6666666667vw;
    left: -2.6666666667vw;
    height: 10.1333333333vw;
    width: 10.1333333333vw;
  }
  .p-sec11-num-txt01 {
    font-size: 1.8666666667vw;
  }
  .p-sec11-num-txt02 {
    font-size: 4vw;
  }
  .p-sec11-img {
    text-align: center;
    padding: 5.3333333333vw 0;
  }
  .p-sec11-img img {
    height: 15.3333333333vw;
    width: auto;
  }
  .p-sec11-ttl {
    font-size: 3.3333333333vw;
    padding: 2.6666666667vw 0.6666666667vw;
    border-radius: 0 0 1.3333333333vw 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-fix-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  .p-fix-btn a {
    display: block;
    width: 100%;
    background-image: linear-gradient(to right, #EC6BA8 0%, #EC108B 51%, #EC6BA8 100%);
    color: #fff;
    text-align: center;
    font-size: 4.2666666667vw;
    font-weight: 700;
    padding: 3.2vw 0;
    cursor: pointer;
  }
  .p-fix-btn a span {
    position: relative;
    padding-left: 6.6666666667vw;
  }
  .p-fix-btn a span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../images/icn_cvbtn.svg) no-repeat center center/contain;
    width: 3.4666666667vw;
    height: 4.5333333333vw;
  }
}
/* RWD表示切り替え
---------------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  .nopc {
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  .nosp {
    display: none !important;
  }
}
/* フォントサイズ
---------------------------------------------------------------------------- */
.fs50 {
  font-size: 5rem !important;
}

.fs49 {
  font-size: 4.9rem !important;
}

.fs48 {
  font-size: 4.8rem !important;
}

.fs47 {
  font-size: 4.7rem !important;
}

.fs46 {
  font-size: 4.6rem !important;
}

.fs45 {
  font-size: 4.5rem !important;
}

.fs44 {
  font-size: 4.4rem !important;
}

.fs43 {
  font-size: 4.3rem !important;
}

.fs42 {
  font-size: 4.2rem !important;
}

.fs41 {
  font-size: 4.1rem !important;
}

.fs40 {
  font-size: 4rem !important;
}

.fs39 {
  font-size: 3.9rem !important;
}

.fs38 {
  font-size: 3.8rem !important;
}

.fs37 {
  font-size: 3.7rem !important;
}

.fs36 {
  font-size: 3.6rem !important;
}

.fs35 {
  font-size: 3.5rem !important;
}

.fs34 {
  font-size: 3.4rem !important;
}

.fs33 {
  font-size: 3.3rem !important;
}

.fs32 {
  font-size: 3.2rem !important;
}

.fs31 {
  font-size: 3.1rem !important;
}

.fs30 {
  font-size: 3rem !important;
}

.fs29 {
  font-size: 2.9rem !important;
}

.fs28 {
  font-size: 2.8rem !important;
}

.fs27 {
  font-size: 2.7rem !important;
}

.fs26 {
  font-size: 2.6rem !important;
}

.fs25 {
  font-size: 2.5rem !important;
}

.fs24 {
  font-size: 2.4rem !important;
}

.fs23 {
  font-size: 2.3rem !important;
}

.fs22 {
  font-size: 2.2rem !important;
}

.fs21 {
  font-size: 2.1rem !important;
}

.fs20 {
  font-size: 2rem !important;
}

.fs19 {
  font-size: 1.9rem !important;
}

.fs18 {
  font-size: 1.8rem !important;
}

.fs17 {
  font-size: 1.7rem !important;
}

.fs16 {
  font-size: 1.6rem !important;
}

.fs15 {
  font-size: 1.5rem !important;
}

.fs14 {
  font-size: 1.4rem !important;
}

.fs13 {
  font-size: 1.3rem !important;
}

.fs12 {
  font-size: 1.2rem !important;
}

.fs11 {
  font-size: 1.1rem !important;
}

.fs10 {
  font-size: 1rem !important;
}

.fs9 {
  font-size: 0.9rem !important;
}

.fs8 {
  font-size: 0.8rem !important;
}

.fs7 {
  font-size: 0.7rem !important;
}

.fs6 {
  font-size: 0.6rem !important;
}

@media screen and (max-width: 767px) {
  .spfs50 {
    font-size: 6.6666666667vw !important;
  }
  .spfs49 {
    font-size: 6.5333333333vw !important;
  }
  .spfs48 {
    font-size: 6.4vw !important;
  }
  .spfs47 {
    font-size: 6.2666666667vw !important;
  }
  .spfs46 {
    font-size: 6.1333333333vw !important;
  }
  .spfs45 {
    font-size: 6vw !important;
  }
  .spfs44 {
    font-size: 5.8666666667vw !important;
  }
  .spfs43 {
    font-size: 5.7333333333vw !important;
  }
  .spfs42 {
    font-size: 5.6vw !important;
  }
  .spfs41 {
    font-size: 5.4666666667vw !important;
  }
  .spfs40 {
    font-size: 5.3333333333vw !important;
  }
  .spfs39 {
    font-size: 5.2vw !important;
  }
  .spfs38 {
    font-size: 5.0666666667vw !important;
  }
  .spfs37 {
    font-size: 4.9333333333vw !important;
  }
  .spfs36 {
    font-size: 4.8vw !important;
  }
  .spfs35 {
    font-size: 4.6666666667vw !important;
  }
  .spfs34 {
    font-size: 4.5333333333vw !important;
  }
  .spfs33 {
    font-size: 4.4vw !important;
  }
  .spfs32 {
    font-size: 4.2666666667vw !important;
  }
  .spfs31 {
    font-size: 4.1333333333vw !important;
  }
  .spfs30 {
    font-size: 4vw !important;
  }
  .spfs29 {
    font-size: 3.8666666667vw !important;
  }
  .spfs28 {
    font-size: 3.7333333333vw !important;
  }
  .spfs27 {
    font-size: 3.6vw !important;
  }
  .spfs26 {
    font-size: 3.4666666667vw !important;
  }
  .spfs25 {
    font-size: 3.3333333333vw !important;
  }
  .spfs24 {
    font-size: 3.2vw !important;
  }
  .spfs23 {
    font-size: 3.0666666667vw !important;
  }
  .spfs22 {
    font-size: 2.9333333333vw !important;
  }
  .spfs21 {
    font-size: 2.8vw !important;
  }
  .spfs20 {
    font-size: 2.6666666667vw !important;
  }
  .spfs19 {
    font-size: 2.5333333333vw !important;
  }
  .spfs18 {
    font-size: 2.4vw !important;
  }
  .spfs17 {
    font-size: 2.2666666667vw !important;
  }
  .spfs16 {
    font-size: 2.1333333333vw !important;
  }
  .spfs15 {
    font-size: 2vw !important;
  }
  .spfs14 {
    font-size: 1.8666666667vw !important;
  }
  .spfs13 {
    font-size: 1.7333333333vw !important;
  }
  .spfs12 {
    font-size: 1.6vw !important;
  }
  .spfs11 {
    font-size: 1.4666666667vw !important;
  }
  .spfs10 {
    font-size: 1.3333333333vw !important;
  }
  .spfs9 {
    font-size: 1.2vw !important;
  }
  .spfs8 {
    font-size: 1.0666666667vw !important;
  }
  .spfs7 {
    font-size: 0.9333333333vw !important;
  }
  .spfs6 {
    font-size: 0.8vw !important;
  }
}
/* clearfix
---------------------------------------------------------------------------- */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* テキスト
---------------------------------------------------------------------------- */
.tal {
  text-align: left !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.fwb {
  font-weight: bold !important;
}

@media screen and (max-width: 767px) {
  .sptal {
    text-align: left !important;
  }
  .sptac {
    text-align: center !important;
  }
  .sptar {
    text-align: right !important;
  }
  .spfwb {
    font-weight: bold !important;
  }
}
/* マージン
---------------------------------------------------------------------------- */
.mt100 {
  margin-top: 10rem !important;
}

.mb100 {
  margin-bottom: 10rem !important;
}

.ml100 {
  margin-left: 10rem !important;
}

.mr100 {
  margin-right: 10rem !important;
}

.mt95 {
  margin-top: 9.5rem !important;
}

.mb95 {
  margin-bottom: 9.5rem !important;
}

.ml95 {
  margin-left: 9.5rem !important;
}

.mr95 {
  margin-right: 9.5rem !important;
}

.mt90 {
  margin-top: 9rem !important;
}

.mb90 {
  margin-bottom: 9rem !important;
}

.ml90 {
  margin-left: 9rem !important;
}

.mr90 {
  margin-right: 9rem !important;
}

.mt85 {
  margin-top: 8.5rem !important;
}

.mb85 {
  margin-bottom: 8.5rem !important;
}

.ml85 {
  margin-left: 8.5rem !important;
}

.mr85 {
  margin-right: 8.5rem !important;
}

.mt80 {
  margin-top: 8rem !important;
}

.mb80 {
  margin-bottom: 8rem !important;
}

.ml80 {
  margin-left: 8rem !important;
}

.mr80 {
  margin-right: 8rem !important;
}

.mt75 {
  margin-top: 7.5rem !important;
}

.mb75 {
  margin-bottom: 7.5rem !important;
}

.ml75 {
  margin-left: 7.5rem !important;
}

.mr75 {
  margin-right: 7.5rem !important;
}

.mt70 {
  margin-top: 7rem !important;
}

.mb70 {
  margin-bottom: 7rem !important;
}

.ml70 {
  margin-left: 7rem !important;
}

.mr70 {
  margin-right: 7rem !important;
}

.mt65 {
  margin-top: 6.5rem !important;
}

.mb65 {
  margin-bottom: 6.5rem !important;
}

.ml65 {
  margin-left: 6.5rem !important;
}

.mr65 {
  margin-right: 6.5rem !important;
}

.mt60 {
  margin-top: 6rem !important;
}

.mb60 {
  margin-bottom: 6rem !important;
}

.ml60 {
  margin-left: 6rem !important;
}

.mr60 {
  margin-right: 6rem !important;
}

.mt55 {
  margin-top: 5.5rem !important;
}

.mb55 {
  margin-bottom: 5.5rem !important;
}

.ml55 {
  margin-left: 5.5rem !important;
}

.mr55 {
  margin-right: 5.5rem !important;
}

.mt50 {
  margin-top: 5rem !important;
}

.mb50 {
  margin-bottom: 5rem !important;
}

.ml50 {
  margin-left: 5rem !important;
}

.mr50 {
  margin-right: 5rem !important;
}

.mt45 {
  margin-top: 4.5rem !important;
}

.mb45 {
  margin-bottom: 4.5rem !important;
}

.ml45 {
  margin-left: 4.5rem !important;
}

.mr45 {
  margin-right: 4.5rem !important;
}

.mt40 {
  margin-top: 4rem !important;
}

.mb40 {
  margin-bottom: 4rem !important;
}

.ml40 {
  margin-left: 4rem !important;
}

.mr40 {
  margin-right: 4rem !important;
}

.mt35 {
  margin-top: 3.5rem !important;
}

.mb35 {
  margin-bottom: 3.5rem !important;
}

.ml35 {
  margin-left: 3.5rem !important;
}

.mr35 {
  margin-right: 3.5rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mb30 {
  margin-bottom: 3rem !important;
}

.ml30 {
  margin-left: 3rem !important;
}

.mr30 {
  margin-right: 3rem !important;
}

.mt25 {
  margin-top: 2.5rem !important;
}

.mb25 {
  margin-bottom: 2.5rem !important;
}

.ml25 {
  margin-left: 2.5rem !important;
}

.mr25 {
  margin-right: 2.5rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mb20 {
  margin-bottom: 2rem !important;
}

.ml20 {
  margin-left: 2rem !important;
}

.mr20 {
  margin-right: 2rem !important;
}

.mt15 {
  margin-top: 1.5rem !important;
}

.mb15 {
  margin-bottom: 1.5rem !important;
}

.ml15 {
  margin-left: 1.5rem !important;
}

.mr15 {
  margin-right: 1.5rem !important;
}

.mt10 {
  margin-top: 1rem !important;
}

.mb10 {
  margin-bottom: 1rem !important;
}

.ml10 {
  margin-left: 1rem !important;
}

.mr10 {
  margin-right: 1rem !important;
}

.mt5 {
  margin-top: 0.5rem !important;
}

.mb5 {
  margin-bottom: 0.5rem !important;
}

.ml5 {
  margin-left: 0.5rem !important;
}

.mr5 {
  margin-right: 0.5rem !important;
}

.mt0 {
  margin-top: 0rem !important;
}

.mb0 {
  margin-bottom: 0rem !important;
}

.ml0 {
  margin-left: 0rem !important;
}

.mr0 {
  margin-right: 0rem !important;
}

@media screen and (max-width: 767px) {
  .spmt100 {
    margin-top: 13.3333333333vw !important;
  }
  .spmb100 {
    margin-bottom: 13.3333333333vw !important;
  }
  .spml100 {
    margin-left: 13.3333333333vw !important;
  }
  .spmr100 {
    margin-right: 13.3333333333vw !important;
  }
  .spmt95 {
    margin-top: 12.6666666667vw !important;
  }
  .spmb95 {
    margin-bottom: 12.6666666667vw !important;
  }
  .spml95 {
    margin-left: 12.6666666667vw !important;
  }
  .spmr95 {
    margin-right: 12.6666666667vw !important;
  }
  .spmt90 {
    margin-top: 12vw !important;
  }
  .spmb90 {
    margin-bottom: 12vw !important;
  }
  .spml90 {
    margin-left: 12vw !important;
  }
  .spmr90 {
    margin-right: 12vw !important;
  }
  .spmt85 {
    margin-top: 11.3333333333vw !important;
  }
  .spmb85 {
    margin-bottom: 11.3333333333vw !important;
  }
  .spml85 {
    margin-left: 11.3333333333vw !important;
  }
  .spmr85 {
    margin-right: 11.3333333333vw !important;
  }
  .spmt80 {
    margin-top: 10.6666666667vw !important;
  }
  .spmb80 {
    margin-bottom: 10.6666666667vw !important;
  }
  .spml80 {
    margin-left: 10.6666666667vw !important;
  }
  .spmr80 {
    margin-right: 10.6666666667vw !important;
  }
  .spmt75 {
    margin-top: 10vw !important;
  }
  .spmb75 {
    margin-bottom: 10vw !important;
  }
  .spml75 {
    margin-left: 10vw !important;
  }
  .spmr75 {
    margin-right: 10vw !important;
  }
  .spmt70 {
    margin-top: 9.3333333333vw !important;
  }
  .spmb70 {
    margin-bottom: 9.3333333333vw !important;
  }
  .spml70 {
    margin-left: 9.3333333333vw !important;
  }
  .spmr70 {
    margin-right: 9.3333333333vw !important;
  }
  .spmt65 {
    margin-top: 8.6666666667vw !important;
  }
  .spmb65 {
    margin-bottom: 8.6666666667vw !important;
  }
  .spml65 {
    margin-left: 8.6666666667vw !important;
  }
  .spmr65 {
    margin-right: 8.6666666667vw !important;
  }
  .spmt60 {
    margin-top: 8vw !important;
  }
  .spmb60 {
    margin-bottom: 8vw !important;
  }
  .spml60 {
    margin-left: 8vw !important;
  }
  .spmr60 {
    margin-right: 8vw !important;
  }
  .spmt55 {
    margin-top: 7.3333333333vw !important;
  }
  .spmb55 {
    margin-bottom: 7.3333333333vw !important;
  }
  .spml55 {
    margin-left: 7.3333333333vw !important;
  }
  .spmr55 {
    margin-right: 7.3333333333vw !important;
  }
  .spmt50 {
    margin-top: 6.6666666667vw !important;
  }
  .spmb50 {
    margin-bottom: 6.6666666667vw !important;
  }
  .spml50 {
    margin-left: 6.6666666667vw !important;
  }
  .spmr50 {
    margin-right: 6.6666666667vw !important;
  }
  .spmt45 {
    margin-top: 6vw !important;
  }
  .spmb45 {
    margin-bottom: 6vw !important;
  }
  .spml45 {
    margin-left: 6vw !important;
  }
  .spmr45 {
    margin-right: 6vw !important;
  }
  .spmt40 {
    margin-top: 5.3333333333vw !important;
  }
  .spmb40 {
    margin-bottom: 5.3333333333vw !important;
  }
  .spml40 {
    margin-left: 5.3333333333vw !important;
  }
  .spmr40 {
    margin-right: 5.3333333333vw !important;
  }
  .spmt35 {
    margin-top: 4.6666666667vw !important;
  }
  .spmb35 {
    margin-bottom: 4.6666666667vw !important;
  }
  .spml35 {
    margin-left: 4.6666666667vw !important;
  }
  .spmr35 {
    margin-right: 4.6666666667vw !important;
  }
  .spmt30 {
    margin-top: 4vw !important;
  }
  .spmb30 {
    margin-bottom: 4vw !important;
  }
  .spml30 {
    margin-left: 4vw !important;
  }
  .spmr30 {
    margin-right: 4vw !important;
  }
  .spmt25 {
    margin-top: 3.3333333333vw !important;
  }
  .spmb25 {
    margin-bottom: 3.3333333333vw !important;
  }
  .spml25 {
    margin-left: 3.3333333333vw !important;
  }
  .spmr25 {
    margin-right: 3.3333333333vw !important;
  }
  .spmt20 {
    margin-top: 2.6666666667vw !important;
  }
  .spmb20 {
    margin-bottom: 2.6666666667vw !important;
  }
  .spml20 {
    margin-left: 2.6666666667vw !important;
  }
  .spmr20 {
    margin-right: 2.6666666667vw !important;
  }
  .spmt15 {
    margin-top: 2vw !important;
  }
  .spmb15 {
    margin-bottom: 2vw !important;
  }
  .spml15 {
    margin-left: 2vw !important;
  }
  .spmr15 {
    margin-right: 2vw !important;
  }
  .spmt10 {
    margin-top: 1.3333333333vw !important;
  }
  .spmb10 {
    margin-bottom: 1.3333333333vw !important;
  }
  .spml10 {
    margin-left: 1.3333333333vw !important;
  }
  .spmr10 {
    margin-right: 1.3333333333vw !important;
  }
  .spmt5 {
    margin-top: 0.6666666667vw !important;
  }
  .spmb5 {
    margin-bottom: 0.6666666667vw !important;
  }
  .spml5 {
    margin-left: 0.6666666667vw !important;
  }
  .spmr5 {
    margin-right: 0.6666666667vw !important;
  }
  .spmt0 {
    margin-top: 0vw !important;
  }
  .spmb0 {
    margin-bottom: 0vw !important;
  }
  .spml0 {
    margin-left: 0vw !important;
  }
  .spmr0 {
    margin-right: 0vw !important;
  }
}
/* パディング
---------------------------------------------------------------------------- */
.pt100 {
  padding-top: 10rem !important;
}

.pb100 {
  padding-bottom: 10rem !important;
}

.pl100 {
  padding-left: 10rem !important;
}

.pr100 {
  padding-right: 10rem !important;
}

.pt95 {
  padding-top: 9.5rem !important;
}

.pb95 {
  padding-bottom: 9.5rem !important;
}

.pl95 {
  padding-left: 9.5rem !important;
}

.pr95 {
  padding-right: 9.5rem !important;
}

.pt90 {
  padding-top: 9rem !important;
}

.pb90 {
  padding-bottom: 9rem !important;
}

.pl90 {
  padding-left: 9rem !important;
}

.pr90 {
  padding-right: 9rem !important;
}

.pt85 {
  padding-top: 8.5rem !important;
}

.pb85 {
  padding-bottom: 8.5rem !important;
}

.pl85 {
  padding-left: 8.5rem !important;
}

.pr85 {
  padding-right: 8.5rem !important;
}

.pt80 {
  padding-top: 8rem !important;
}

.pb80 {
  padding-bottom: 8rem !important;
}

.pl80 {
  padding-left: 8rem !important;
}

.pr80 {
  padding-right: 8rem !important;
}

.pt75 {
  padding-top: 7.5rem !important;
}

.pb75 {
  padding-bottom: 7.5rem !important;
}

.pl75 {
  padding-left: 7.5rem !important;
}

.pr75 {
  padding-right: 7.5rem !important;
}

.pt70 {
  padding-top: 7rem !important;
}

.pb70 {
  padding-bottom: 7rem !important;
}

.pl70 {
  padding-left: 7rem !important;
}

.pr70 {
  padding-right: 7rem !important;
}

.pt65 {
  padding-top: 6.5rem !important;
}

.pb65 {
  padding-bottom: 6.5rem !important;
}

.pl65 {
  padding-left: 6.5rem !important;
}

.pr65 {
  padding-right: 6.5rem !important;
}

.pt60 {
  padding-top: 6rem !important;
}

.pb60 {
  padding-bottom: 6rem !important;
}

.pl60 {
  padding-left: 6rem !important;
}

.pr60 {
  padding-right: 6rem !important;
}

.pt55 {
  padding-top: 5.5rem !important;
}

.pb55 {
  padding-bottom: 5.5rem !important;
}

.pl55 {
  padding-left: 5.5rem !important;
}

.pr55 {
  padding-right: 5.5rem !important;
}

.pt50 {
  padding-top: 5rem !important;
}

.pb50 {
  padding-bottom: 5rem !important;
}

.pl50 {
  padding-left: 5rem !important;
}

.pr50 {
  padding-right: 5rem !important;
}

.pt45 {
  padding-top: 4.5rem !important;
}

.pb45 {
  padding-bottom: 4.5rem !important;
}

.pl45 {
  padding-left: 4.5rem !important;
}

.pr45 {
  padding-right: 4.5rem !important;
}

.pt40 {
  padding-top: 4rem !important;
}

.pb40 {
  padding-bottom: 4rem !important;
}

.pl40 {
  padding-left: 4rem !important;
}

.pr40 {
  padding-right: 4rem !important;
}

.pt35 {
  padding-top: 3.5rem !important;
}

.pb35 {
  padding-bottom: 3.5rem !important;
}

.pl35 {
  padding-left: 3.5rem !important;
}

.pr35 {
  padding-right: 3.5rem !important;
}

.pt30 {
  padding-top: 3rem !important;
}

.pb30 {
  padding-bottom: 3rem !important;
}

.pl30 {
  padding-left: 3rem !important;
}

.pr30 {
  padding-right: 3rem !important;
}

.pt25 {
  padding-top: 2.5rem !important;
}

.pb25 {
  padding-bottom: 2.5rem !important;
}

.pl25 {
  padding-left: 2.5rem !important;
}

.pr25 {
  padding-right: 2.5rem !important;
}

.pt20 {
  padding-top: 2rem !important;
}

.pb20 {
  padding-bottom: 2rem !important;
}

.pl20 {
  padding-left: 2rem !important;
}

.pr20 {
  padding-right: 2rem !important;
}

.pt15 {
  padding-top: 1.5rem !important;
}

.pb15 {
  padding-bottom: 1.5rem !important;
}

.pl15 {
  padding-left: 1.5rem !important;
}

.pr15 {
  padding-right: 1.5rem !important;
}

.pt10 {
  padding-top: 1rem !important;
}

.pb10 {
  padding-bottom: 1rem !important;
}

.pl10 {
  padding-left: 1rem !important;
}

.pr10 {
  padding-right: 1rem !important;
}

.pt5 {
  padding-top: 0.5rem !important;
}

.pb5 {
  padding-bottom: 0.5rem !important;
}

.pl5 {
  padding-left: 0.5rem !important;
}

.pr5 {
  padding-right: 0.5rem !important;
}

.pt0 {
  padding-top: 0rem !important;
}

.pb0 {
  padding-bottom: 0rem !important;
}

.pl0 {
  padding-left: 0rem !important;
}

.pr0 {
  padding-right: 0rem !important;
}

@media screen and (max-width: 767px) {
  .sppt100 {
    padding-top: 13.3333333333vw !important;
  }
  .sppb100 {
    padding-bottom: 13.3333333333vw !important;
  }
  .sppl100 {
    padding-left: 13.3333333333vw !important;
  }
  .sppr100 {
    padding-right: 13.3333333333vw !important;
  }
  .sppt95 {
    padding-top: 12.6666666667vw !important;
  }
  .sppb95 {
    padding-bottom: 12.6666666667vw !important;
  }
  .sppl95 {
    padding-left: 12.6666666667vw !important;
  }
  .sppr95 {
    padding-right: 12.6666666667vw !important;
  }
  .sppt90 {
    padding-top: 12vw !important;
  }
  .sppb90 {
    padding-bottom: 12vw !important;
  }
  .sppl90 {
    padding-left: 12vw !important;
  }
  .sppr90 {
    padding-right: 12vw !important;
  }
  .sppt85 {
    padding-top: 11.3333333333vw !important;
  }
  .sppb85 {
    padding-bottom: 11.3333333333vw !important;
  }
  .sppl85 {
    padding-left: 11.3333333333vw !important;
  }
  .sppr85 {
    padding-right: 11.3333333333vw !important;
  }
  .sppt80 {
    padding-top: 10.6666666667vw !important;
  }
  .sppb80 {
    padding-bottom: 10.6666666667vw !important;
  }
  .sppl80 {
    padding-left: 10.6666666667vw !important;
  }
  .sppr80 {
    padding-right: 10.6666666667vw !important;
  }
  .sppt75 {
    padding-top: 10vw !important;
  }
  .sppb75 {
    padding-bottom: 10vw !important;
  }
  .sppl75 {
    padding-left: 10vw !important;
  }
  .sppr75 {
    padding-right: 10vw !important;
  }
  .sppt70 {
    padding-top: 9.3333333333vw !important;
  }
  .sppb70 {
    padding-bottom: 9.3333333333vw !important;
  }
  .sppl70 {
    padding-left: 9.3333333333vw !important;
  }
  .sppr70 {
    padding-right: 9.3333333333vw !important;
  }
  .sppt65 {
    padding-top: 8.6666666667vw !important;
  }
  .sppb65 {
    padding-bottom: 8.6666666667vw !important;
  }
  .sppl65 {
    padding-left: 8.6666666667vw !important;
  }
  .sppr65 {
    padding-right: 8.6666666667vw !important;
  }
  .sppt60 {
    padding-top: 8vw !important;
  }
  .sppb60 {
    padding-bottom: 8vw !important;
  }
  .sppl60 {
    padding-left: 8vw !important;
  }
  .sppr60 {
    padding-right: 8vw !important;
  }
  .sppt55 {
    padding-top: 7.3333333333vw !important;
  }
  .sppb55 {
    padding-bottom: 7.3333333333vw !important;
  }
  .sppl55 {
    padding-left: 7.3333333333vw !important;
  }
  .sppr55 {
    padding-right: 7.3333333333vw !important;
  }
  .sppt50 {
    padding-top: 6.6666666667vw !important;
  }
  .sppb50 {
    padding-bottom: 6.6666666667vw !important;
  }
  .sppl50 {
    padding-left: 6.6666666667vw !important;
  }
  .sppr50 {
    padding-right: 6.6666666667vw !important;
  }
  .sppt45 {
    padding-top: 6vw !important;
  }
  .sppb45 {
    padding-bottom: 6vw !important;
  }
  .sppl45 {
    padding-left: 6vw !important;
  }
  .sppr45 {
    padding-right: 6vw !important;
  }
  .sppt40 {
    padding-top: 5.3333333333vw !important;
  }
  .sppb40 {
    padding-bottom: 5.3333333333vw !important;
  }
  .sppl40 {
    padding-left: 5.3333333333vw !important;
  }
  .sppr40 {
    padding-right: 5.3333333333vw !important;
  }
  .sppt35 {
    padding-top: 4.6666666667vw !important;
  }
  .sppb35 {
    padding-bottom: 4.6666666667vw !important;
  }
  .sppl35 {
    padding-left: 4.6666666667vw !important;
  }
  .sppr35 {
    padding-right: 4.6666666667vw !important;
  }
  .sppt30 {
    padding-top: 4vw !important;
  }
  .sppb30 {
    padding-bottom: 4vw !important;
  }
  .sppl30 {
    padding-left: 4vw !important;
  }
  .sppr30 {
    padding-right: 4vw !important;
  }
  .sppt25 {
    padding-top: 3.3333333333vw !important;
  }
  .sppb25 {
    padding-bottom: 3.3333333333vw !important;
  }
  .sppl25 {
    padding-left: 3.3333333333vw !important;
  }
  .sppr25 {
    padding-right: 3.3333333333vw !important;
  }
  .sppt20 {
    padding-top: 2.6666666667vw !important;
  }
  .sppb20 {
    padding-bottom: 2.6666666667vw !important;
  }
  .sppl20 {
    padding-left: 2.6666666667vw !important;
  }
  .sppr20 {
    padding-right: 2.6666666667vw !important;
  }
  .sppt15 {
    padding-top: 2vw !important;
  }
  .sppb15 {
    padding-bottom: 2vw !important;
  }
  .sppl15 {
    padding-left: 2vw !important;
  }
  .sppr15 {
    padding-right: 2vw !important;
  }
  .sppt10 {
    padding-top: 1.3333333333vw !important;
  }
  .sppb10 {
    padding-bottom: 1.3333333333vw !important;
  }
  .sppl10 {
    padding-left: 1.3333333333vw !important;
  }
  .sppr10 {
    padding-right: 1.3333333333vw !important;
  }
  .sppt5 {
    padding-top: 0.6666666667vw !important;
  }
  .sppb5 {
    padding-bottom: 0.6666666667vw !important;
  }
  .sppl5 {
    padding-left: 0.6666666667vw !important;
  }
  .sppr5 {
    padding-right: 0.6666666667vw !important;
  }
  .sppt0 {
    padding-top: 0vw !important;
  }
  .sppb0 {
    padding-bottom: 0vw !important;
  }
  .sppl0 {
    padding-left: 0vw !important;
  }
  .sppr0 {
    padding-right: 0vw !important;
  }
}
/* 印刷設定
---------------------------------------------------------------------------- */
@media print {
  * html body {
    zoom: 70%;
  }
}
/* reset
---------------------------------------------------------------------------- */
/* main
---------------------------------------------------------------------------- */
/* module
---------------------------------------------------------------------------- */
/* print
---------------------------------------------------------------------------- */
