@charset "UTF-8";
.l-page {
  --sans-serif: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
  	sans-serif;
  --serif: "Noto Serif JP", serif;
  --en-sans: "Quicksand", sans-serif;
  --en-serif: "", serif;
  --base: #fff;
  --main: #333;
  --accent: #d81b60;
  --sp-base-fs: 4vw;
  --sp-pad: 5vw;
}

/*========================================
  メインコンテンツ
========================================*/
/*========================================
  ヘッダーのナビゲーション（グローバルナビ）
========================================*/
@media screen and (max-width: 767px) {
  .l-nav__body {
    padding: 4.2666666667vw 1.3333333333vw;
  }
}
.l-nav__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  font-size: 93.75%;
  gap: 0 2em;
}
@media screen and (max-width: 767px) {
  .l-nav__item.is-wbtn {
    position: absolute;
    right: 4.2666666667vw;
    top: 4.2666666667vw;
  }
  .l-nav__item.is-wbtn .c-btn {
    width: 34.1333333333vw;
    padding-left: 0;
    padding-right: 0;
  }
}
.l-nav__link {
  color: currentColor;
  text-decoration: none;
}

/*========================================
  ページ全体のレイアウト
========================================*/
.l-page {
  text-size-adjust: 100%;
  font-family: var(--sans-serif);
  font-size: 1.6rem;
  line-height: 1.8;
  min-width: 320px;
  color: var(--main);
  background: var(--base);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1300px) and (min-width: 767px) {
  .l-page {
    font-size: 1.3265306122vw;
  }
  .l-page img {
    font-size: 0.9795918367vw;
  }
}
@media screen and (max-width: 767px) {
  .l-page {
    font-size: var(--sp-base-fs);
  }
}
.l-page *,
.l-page *::before,
.l-page *::after {
  box-sizing: border-box;
}
.l-page h1,
.l-page h2,
.l-page h3,
.l-page h4,
.l-page h5,
.l-page h6 {
  line-height: 1.5;
}
.l-page img,
.l-page svg,
.l-page iframe,
.l-page video,
.l-page picture {
  max-width: 100%;
}
.l-page img,
.l-page svg {
  vertical-align: top;
}
.l-page img {
  letter-spacing: 0;
  font-size: 12px;
  height: auto;
}
@media screen and (max-width: 1300px) and (min-width: 767px) {
  .l-page img {
    font-size: 1.2244897959vw;
  }
}
.l-page a {
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .l-page a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
.l-page small {
  font-size: 80%;
}
.l-page ol,
.l-page ul {
  list-style: none;
}
.l-page table {
  border-collapse: collapse;
  border-spacing: 0;
}
.l-page dt {
  font-weight: normal;
}

/*========================================
  ボタン
========================================*/
.c-btn {
  cursor: pointer;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  text-decoration: none;
  user-select: none;
  border: 0;
}
.c-btn:hover {
  text-decoration: none;
}

/*========================================
  container
========================================*/
.c-container {
  width: 76.5em;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/*========================================
  アイコン
========================================*/
.c-icon {
  position: relative;
  display: inline-block;
  background: 50% 50% no-repeat;
  background-size: contain;
  vertical-align: top;
  line-height: 1;
  font-style: normal;
}

/*========================================
  tab
========================================*/
.p-modal {
  display: none;
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition-property: opacity;
  transition-duration: 0.4s;
}
.p-modal__wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 20px;
  transition-property: margin;
  transition-duration: 0.4s;
}
@media screen and (min-width: 768px) {
  .p-modal__wrap {
    max-width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .p-modal__wrap {
    width: calc(100vw - 46px);
  }
}
.p-modal__content {
  aspect-ratio: 1920/1080;
}
.p-modal__content > * {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-modal.is-show {
  opacity: 1;
}
.p-modal.is-show .p-modal__content {
  margin-top: 0;
}
.p-modal__close-btn {
  cursor: pointer;
  background: #000;
  position: fixed;
  right: 0;
  top: 0;
  border: 0;
  width: 60px;
  height: 60px;
  padding: 0;
  transform: translate(50%, -50%);
  border-radius: 100em;
}
@media screen and (max-width: 767px) {
  .p-modal__close-btn {
    width: 40px;
    height: 40px;
  }
}
.p-modal__close-btn::before, .p-modal__close-btn::after {
  content: "";
  display: block;
  width: 40%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 30%;
}
.p-modal__close-btn::before {
  transform: rotate(-45deg);
}
.p-modal__close-btn::after {
  transform: rotate(45deg);
}

/*========================================
  ボタン
========================================*/
.p-btn-a {
  border-radius: 62.5em;
  background: #0057AA;
  padding: 1.11em 2.9em;
  color: #fff;
  letter-spacing: 0.1em;
  transition: 0.25s filter;
  text-align: center;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  .p-btn-a {
    font-size: 3.4666666667vw;
    padding-bottom: 1.2em;
  }
}
.p-btn-a:focus {
  color: #fff;
}
@media (hover: hover) {
  .p-btn-a:hover {
    filter: brightness(120%);
    color: #fff;
  }
}

/*========================================
  hdr
========================================*/
.p-hdr-a {
  text-align: center;
  margin-bottom: 4.25em;
}
@media screen and (max-width: 767px) {
  .p-hdr-a {
    margin-bottom: 10.6666666667vw;
  }
}
.p-hdr-a__en {
  color: #0057AA;
  font-family: var(--en-sans);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-hdr-a__en {
    font-size: 4.2666666667vw;
  }
}
.p-hdr-a__ttl {
  margin: 0;
  font-size: 375%;
  font-weight: normal;
}
@media screen and (max-width: 1300px) and (min-width: 767px) {
  .p-hdr-a__ttl {
    font-size: 350%;
  }
}
@media screen and (max-width: 767px) {
  .p-hdr-a__ttl {
    font-size: 8.5333333333vw;
  }
}

/*========================================
  アイコン
========================================*/
/*========================================
  ai
========================================*/
.p-ai {
  margin-top: 4em;
}
@media screen and (max-width: 767px) {
  .p-ai {
    margin-top: 10.6666666667vw;
  }
}
.p-ai__box {
  background: #f7f8f9;
  padding: 3.75em 2.5em 3.75em 2.5em;
  border-radius: 0.75em;
}
@media screen and (max-width: 767px) {
  .p-ai__box {
    border-radius: 2.1333333333vw;
    padding: 10.6666666667vw 4.2666666667vw 8vw 4.2666666667vw;
  }
}
.p-ai__ttl {
  font-size: 250%;
  margin: 0 0 0.6em 0;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-ai__ttl {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-ai__ttl {
    margin-bottom: 6.4vw;
    font-size: 6.9333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-ai__lead {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-ai__lead {
    font-size: 4.2666666667vw;
  }
}
.p-ai__ph-a img {
  border-radius: 0.75em;
}
.p-ai__phs {
  margin-top: 2.5em;
}
@media screen and (min-width: 768px) {
  .p-ai__phs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-ai__phs {
    margin-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-ai__phs > * {
    width: 67.1328671329%;
  }
  .p-ai__phs > *:nth-child(2) {
    width: 30.9440559441%;
  }
}
.p-ai__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-ai__list {
    gap: 1.75em 0;
  }
}
@media screen and (max-width: 767px) {
  .p-ai__list {
    margin-top: 4.2666666667vw;
    gap: 2.1333333333vw 0;
  }
}
.p-ai__list > li {
  background: #FFFFFF;
  border-radius: 0 0 0.5em 0.5em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-ai__list > li {
    width: 46.8926553672%;
  }
}
@media screen and (max-width: 767px) {
  .p-ai__list > li {
    width: 48.3870967742%;
  }
}
.p-ai__list > li img {
  border-radius: 0.25em;
}
@media screen and (max-width: 767px) {
  .p-ai__list > li img {
    border-radius: 1.0666666667vw;
  }
}
.p-ai__list figcaption {
  padding: 0.8em;
  font-size: 87.5%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-ai__list figcaption {
    font-size: 3.2vw;
  }
}
.p-ai__feature {
  margin: 4em 0 0 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-ai__feature {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4em 0;
  }
}
.p-ai__feature > li {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-ai__feature > li {
    width: 49.0196078431%;
  }
}
@media screen and (max-width: 767px) {
  .p-ai__feature > li {
    margin-top: 10.6666666667vw;
  }
}
.p-ai__feature img {
  border-radius: 0.75em;
}
@media screen and (max-width: 767px) {
  .p-ai__feature img {
    border-radius: 2.1333333333vw;
  }
}
.p-ai__feature figcaption {
  position: absolute;
  left: 0.8em;
  top: 0.4em;
  font-size: 187.5%;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3), 2px 2px 4px rgba(0, 0, 0, 0.3), -2px -2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .p-ai__feature figcaption {
    left: 0.6em;
    font-size: 4.8vw;
  }
}
.p-ai__feature figcaption sup {
  line-height: 1;
  font-size: 60%;
}
.p-ai__note2 {
  margin-top: 1.3333333333em;
  font-size: 75%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-ai__note2 {
    font-size: 62.5%;
    margin-top: 5.3333333333vw;
  }
}
.p-ai__note2 p {
  margin: 0;
  text-indent: -2em;
  margin-left: 2em;
}
.p-ai__note {
  margin-top: 3.25em;
  font-size: 75%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-ai__note {
    font-size: 62.5%;
    margin-top: 5.3333333333vw;
  }
}
.p-ai__note p {
  margin: 0;
  text-indent: -2em;
  margin-left: 2em;
}

/*========================================
  spec
========================================*/
.p-bnr {
  overflow: hidden;
  position: relative;
  display: block;
  margin-top: 10em;
  color: currentColor;
  background: #AFDDE7;
  
}
@media screen and (min-width: 768px) {
  .p-bnr {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 0.75em;
    height: 25em;
    background:url(../img/bnr_bg.png) center center no-repeat;
    background-size:cover;
  }
  .p-bnr > * {
    padding-left: 41.25em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (min-width: 767px) {
  .p-bnr > * {
    padding-left: 38.75em;
  }
}
@media screen and (max-width: 767px) {
  .p-bnr {
    background:url(../img/bnr_bg_sp.png) center center no-repeat;
    background-size:cover;
    margin-top: 17.0666666667vw;
    padding-top: 7.4666666667vw;
    height: 117.3333333333vw;
    text-align: center;
    border-radius: 2.1333333333vw;
  }
}
.p-bnr.is-fire .p-bnr__img > * {
  opacity: 1;
  transform: translateY(0);
}
.p-bnr.is-fire .p-bnr__item > * {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1s;
}
.p-bnr.is-fire .p-bnr__item > *:nth-child(2) {
  transition-delay: 1.2s;
}
.p-bnr.is-fire .p-bnr__item > *:nth-child(3), .p-bnr.is-fire .p-bnr__item > *:nth-child(4) {
  transition-delay: 1.4s;
}
.p-bnr__item > * {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transform: translateX(-8%);
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.p-bnr__img {
  position: absolute;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-bnr__img {
    left: 8.125em;
    top: 3.125em;
    width: 21.25em;
    width: calc(313 * 0.0625em);
    top: calc(36 * 0.0625em);
    left: calc(220 * 0.0625em);

  }
}
@media screen and (max-width: 767px) {
  .p-bnr__img {
    width:calc(182 * 0.26666vw);
    left: calc(72.8 * 0.26666vw);
    top: calc(228 * 0.26666vw);
  }
}
.p-bnr__img > * {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  transform: translateY(10%);
}
.p-bnr__img-1 {
  transition-delay: 0.4s;
}
@media screen and (min-width: 768px) {
  .p-bnr__img-1 {
    width: calc(184 * 0.0625em);
  }
}
@media screen and (max-width: 767px) {
  .p-bnr__img-1 {
    width: calc(108 * 0.26666vw);
  }
}
.p-bnr__img-2 {
  opacity: 0;
  position: absolute;
  transition-delay: 0.5s;
}
@media screen and (min-width: 768px) {
  .p-bnr__img-2 {
    width: calc(184 * 0.0625em);
    top: calc(70 * 0.0625em);
    left: calc(130 * 0.0625em);
  }
}
@media screen and (max-width: 767px) {
  .p-bnr__img-2 {
    left: calc(75.1 * 0.26666vw);
    top: calc(41.7 * 0.26666vw);
    width: calc(107 * 0.26666vw);
  }
}
.p-bnr__date {
  font-size: 112.5%;
}
@media screen and (max-width: 767px) {
  .p-bnr__date {
    font-size: 4.2666666667vw;
  }
}
.p-bnr__logo {
  margin: 2.75em 0;
  width: 22.3125em;
}
@media screen and (max-width: 767px) {
  .p-bnr__logo {
    margin: 5.3333333333vw auto 7.4666666667vw auto;
    width: 70.9333333333vw;
  }
}
.p-bnr__logo img {
  width: 100%;
}
.p-bnr__wbtn .c-btn {
  padding-top: 1.4em;
  padding-bottom: 1.4em;
  font-size: 112.5%;
  width: 17.3333333333em;
}
@media screen and (max-width: 767px) {
  .p-bnr__wbtn .c-btn {
    padding-top: 1.3em;
    padding-bottom: 1.3em;
    font-size: 3.7333333333vw;
    width: 64vw;
  }
}
@media (hover: hover) {
  .p-bnr:hover {
    color: currentColor;
  }
  .p-bnr:hover .c-btn {
    filter: brightness(120%);
  }
}

/*========================================
  colors
========================================*/
.p-colors {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-colors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.p-colors > li {
  position: relative;
  padding: 4.375em 0 4em;
}
.p-colors > li.is-navy {
  background: linear-gradient(#f8fafd 0%, #d4e0f2 100%);

}
.p-colors > li.is-silver {
  background: linear-gradient(#fcfdfd 0%, #ebeef1 100%);
}
.p-colors > li.is-pink {
  background: linear-gradient(#fdf9f9 0%, #f6e0e1 100%);
}
@media screen and (min-width: 768px) {
  .p-colors > li {
    flex: 1;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-colors > li {
    overflow: hidden;
    height: 42.6666666667vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 9.3333333333vw;
  }
}
.p-colors img {
  width: 20em;
}
@media screen and (max-width: 767px) {
  .p-colors img {
    width: 34.6666666667vw;
    position: absolute;
    right: 12.8vw;
    top: 5.3333333333vw;
  }
}
.p-colors figcaption {
  font-size: 187.5%;
  margin-bottom: 0.9333333333em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-colors figcaption {
    font-size: 5.8666666667vw;
  }
}


/*========================================
  p_2
========================================*/
@media screen and (max-width: 767px) {
	.p_2_header-wrap{
		display:flex;
		flex-wrap:wrap;
	}
	.p_2_header-wrap .p-hdr-a{
		order:2;
		text-align:left;
		margin-bottom:0;
	}

	.p_2_header-wrap .p-unit__fig{
		order:1;
	}
}

.p_2_ttl{
	font-size:calc(40 * 0.0625em);
	line-height:1.5;
	padding:0;
	margin:0;
	margin-bottom:1em;
}

@media screen and (max-width: 767px) {
	.p_2_ttl{
		padding-top:calc(20 * 0.26666vw);
		font-size:calc(20 * 0.26666vw);
	}
}

.p_2_txt{
	font-size:calc(16 * 0.0625em);
	line-height:1.75;
}

@media screen and (max-width: 767px) {
	.p_2_txt{
		font-size:calc(14 * 0.26666vw);
	}
}


/*========================================
  card
========================================*/
.p-card__thumb {
  overflow: hidden;
  border-radius: 0.75em;
}
@media screen and (max-width: 767px) {
  .p-card__thumb {
    border-radius: 2.1333333333vw;
  }
}
.p-card__thumb img {
  transition: 0.25s transform;
}
@media (hover: hover) {
  .p-card__thumb:hover img {
    transform: scale(1.07);
  }
}
.p-card__ttl {
  margin: 0.8333333333em 0 0.6666666667em 0;
  font-size: 150%;
  line-height: 1.5;
  letter-spacing:0;
}
@media screen and (max-width: 767px) {
  .p-card__ttl {
    margin: 5.3333333333vw 0 3.7333333333vw 0;
    font-size: 5.3333333333vw;
  }
}
.p-card__ttl sup {
  font-size: 60%;
}
.p-card__txt {
  font-size: 87.5%;
  line-height: 1.7857142857;
}
@media screen and (max-width: 767px) {
  .p-card__txt {
    font-size: 3.7333333333vw;
  }
}
.p-card__note {
  text-indent: -1em;
  margin-left: 1em;
}

/*========================================
  feature-list
========================================*/
.p-feature-list {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-feature-list {
    margin-top: 4em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3.75em 1.9607843137%;
  }
  .p-feature-list > * {
    width: 32.0261437908%;
  }
}
@media screen and (max-width: 767px) {
  .p-feature-list {
    margin-top: 10.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-feature-list > li + li {
    margin-top: 10.6666666667vw;
  }
}

/*========================================
  fv
========================================*/
.p-fv {
  overflow: hidden;
  background:url(../img/fv_bg.jpg) center center no-repeat;
  background-size:cover;
  color:#fff;
}

@media screen and (max-width: 767px) {
  .p-fv {
	  background:url(../img/fv_bg_sp.jpg) center center no-repeat;
	  background-size:cover;
  }
}
.p-fv.is-start .p-fv__img > * {
  opacity: 1;
  transform: translateY(0);
}
.p-fv.is-start .p-fv__item > * {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1s;
}
.p-fv.is-start .p-fv__item > *:nth-child(2) {
  transition-delay: 1.2s;
}
.p-fv.is-start .p-fv__item > *:nth-child(3), .p-fv.is-start .p-fv__item > *:nth-child(4) {
  transition-delay: 1.4s;
}
.p-fv__inner {
  height: 40em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-fv__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__inner {
    padding-top: 10.6666666667vw;
    height: 149.3333333333vw;
    text-align: center;
  }
}
.p-fv__img {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-fv__img {
    right: 0;
    top: calc(63 * 0.0625em);
    width: calc(497 * 0.0625em);
  }
}
@media screen and (max-width: 767px) {
  .p-fv__img {
    left: calc(71.2 * 0.26666vw);
    top: calc(291 * 0.26666vw);
    width: calc(232 * 0.26666vw);
  }
}
.p-fv__img > * {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  transform: translateY(10%);
}
.p-fv__img-1 {
  transition-delay: 0.4s;
}
@media screen and (min-width: 768px) {
  .p-fv__img-1 {
    width:calc(293 * 0.0625em);
  }
}
@media screen and (max-width: 767px) {
  .p-fv__img-1 {
    width: calc(137 * 0.26666vw);
  }
}
.p-fv__img-2 {
  opacity: 0;
  position: absolute;
  transition-delay: 0.5s;
}
@media screen and (min-width: 768px) {
  .p-fv__img-2 {
    width: calc(293 * 0.0625em);
    top: calc(113 * 0.0625em);
    left:calc(208 * 0.0625em);
  }
}
@media screen and (max-width: 767px) {
  .p-fv__img-2 {
    left: calc(96 * 0.26666vw);
    top: calc(53 * 0.26666vw);
    width: calc(137 * 0.26666vw);
  }
}
.p-fv__item > * {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transform: translateX(-8%);
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.p-fv__logo {
  width: 25.125em;
  margin-left: 1%;
}
@media screen and (max-width: 767px) {
  .p-fv__logo {
    margin-left: auto;
    margin-right: auto;
    width: 60.8vw;
  }
}
.p-fv__logo img {
  width: 100%;
}
.p-fv__lead {
  margin: 0.7916666667em 0;
  font-size: 300%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-fv__lead {
    font-size: 6.4vw;
  }
}
.p-fv__date {
  margin: 1.7777777778em 0 3.1111111111em 0;
  font-size: 112.5%;
  line-height: 3.3333333333;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-fv__date {
    margin: 4.2666666667vw 0 6.4vw 0;
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__wbtn .c-btn {
    padding-top: 1.4em;
    padding-bottom: 1.4em;
    font-size: 112.5%;
    width: 17.3333333333em;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__wbtn .c-btn {
    font-size: 3.7333333333vw;
    width: 64vw;
  }
}

/*========================================
  lead
========================================*/
.p-lead {
  text-align: center;
  margin-top: 4em;
  font-size: 125%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-lead {
    font-size: 4.2666666667vw;
    margin-top: 17.0666666667vw;
    line-height: 2;
    padding: 0 calc(16 * 0.26666vw);
  }
}
.p-lead p {
  margin: 0;
}

/*========================================
  unit
========================================*/
.p-unit {
  margin-top: 7.75em;
}
@media screen and (max-width: 767px) {
  .p-unit {
    margin-top: 23.4666666667vw;
  }
}
.p-unit.is-point-1, .p-unit.is-point-2 {
  margin-top: 10.25em;
}
@media screen and (max-width: 767px) {
  .p-unit.is-point-1, .p-unit.is-point-2 {
    margin-top: 17.0666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-unit.is-point-3 {
    margin-top: 17.0666666667vw;
  }
}
.p-unit.is-spec, .p-unit.is-color {
  margin-top: 11.25em;
}
@media screen and (max-width: 767px) {
  .p-unit.is-spec, .p-unit.is-color {
    margin-top: 18.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-unit__row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .p-unit__row > * {
    width: 39.8692810458%;
    text-align: left;
  }
  .p-unit__row > *:nth-child(2) {
    width: 55.5555555556%;
  }
}
@media screen and (min-width: 768px) {
  .p-unit__row.is-rev {
    flex-direction: row-reverse;
  }
}

/*========================================
  monitor
========================================*/
@keyframes zoom1 {
  0% {
    scale: 1;
  }
  40% {
    scale: 1.2;
  }
  80% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
@keyframes zoom1Sp {
  0% {
    scale: 0.8;
  }
  100% {
    scale: 1;
  }
}
.p-monitor {
  --my-w: 0;
  --my-scale: 0;
}
.p-monitor__img {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-monitor__img {
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  .p-monitor__bg {
    height: 30em;
  }
  .p-monitor__bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.p-monitor__on {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-monitor__on {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.4s width;
    width: calc((800 + var(--my-w)) / 16 * 1em);
  }
}
.p-monitor__on.is-fire {
  width: calc((800 + var(--my-w)) / 16 * 1em);
}
@media screen and (max-width: 767px) {
  .p-monitor__on {
    left: 0;
    top: 0;
    scale: calc(1 + var(--my-scale));
    transition: 0.5s scale;
  }
}
.p-monitor__row {
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-monitor__row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .p-monitor__row > * {
    width: 32.0261437908%;
  }
}
@media screen and (max-width: 767px) {
  .p-monitor__row {
    margin-top: 10.6666666667vw;
  }
}
.p-monitor__row02{
}

@media screen and (min-width: 768px) {
	.p-monitor__row02 {
		margin-bottom:calc(-24 * 0.0625em);
	}
	.p-monitor__row02 .p-monitor__item{
		width:calc(50% - calc(24 * 0.0625em));
		display:flex;
		flex-wrap:wrap;
		margin-bottom:calc(24 * 0.0625em);
	}
	.p-monitor__row02 .p-monitor__item .p-monitor__fig{
		width:48%;
	}
	.p-monitor__row02 .p-monitor__item .p-monitor__txt{
		width:52%;
		-webkit-align-items:flex-start;
		align-items: flex-start;
		padding:calc(40 * 0.0625em);
	}

}

.p-monitor__item {
  background: #F7F8F9;
  border-radius: 0.75em;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-monitor__item {
	background: linear-gradient(to right,#f7fafd 0%, #e7effa 100%);
  }
  .p-monitor__item + .p-monitor__item {
    margin-top: 8vw;
  }
}

.p-monitor__fig {
	background: linear-gradient(to right,#f7fafd 0%, #e7effa 100%);
	
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-monitor__fig {
    height: calc(288 * 0.0625em);
  }
}
@media screen and (max-width: 1300px) and (min-width: 767px) {
  .p-monitor__fig {
    height: 13.75em;
  }
}
@media screen and (max-width: 767px) {
  .p-monitor__fig {
    height: calc(193 * 0.26666vw);
  }
}
.p-monitor__fig img {
  transition-property: scale, transform;
  transition-duration: 0.5s;
  image-rendering: -webkit-optimize-contrast;
  width:100%;
}
@media screen and (max-width: 767px) {
  .p-monitor__fig img {
    scale: 0.8;
  }
}
.p-monitor__fig.is-1 img {
  transition: 0.4s scale;
}
@media screen and (max-width: 1300px) and (min-width: 767px) {
  .p-monitor__fig.is-1 img {
  }
}
@media screen and (max-width: 767px) {
  .p-monitor__fig.is-1 img {
  }
}
.p-monitor__fig.is-1.is-fire img {
  animation-name: zoom1;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 768px) {
  .p-monitor__fig.is-1.is-fire img {
    animation-duration: 1.8s;
  }
}
@media screen and (max-width: 767px) {
  .p-monitor__fig.is-1.is-fire img {
    animation-name: zoom1Sp;
  }
}
@media screen and (min-width: 768px) {
  .p-monitor__fig.is-1.is-animation-end img {
    animation: none;
  }
  .p-monitor__fig.is-1.is-animation-end:hover img {
    scale: 1.1;
  }
}
.p-monitor__fig.is-2 img {
  transition: 0.4s scale;
}

.p-monitor__fig.is-2.is-fire img {
  animation-name: zoom1;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 768px) {
  .p-monitor__fig.is-2.is-fire img {
    animation-delay: 0.4s;
    animation-duration: 1.8s;
  }
}
@media screen and (max-width: 767px) {
  .p-monitor__fig.is-2.is-fire img {
    animation-name: zoom1Sp;
  }
}
@media screen and (min-width: 768px) {
  .p-monitor__fig.is-2.is-animation-end img {
    animation: none;
  }
  .p-monitor__fig.is-2.is-animation-end:hover img {
    scale: 1.1;
  }
}
.p-monitor__fig.is-3 img {
  transition: 0.4s scale;
  width: 100%;
}

.p-monitor__fig.is-3.is-fire img {
  animation-name: zoom1;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 768px) {
  .p-monitor__fig.is-3.is-fire img {
    animation-delay: 0.8s;
    animation-duration: 1.8s;
  }
}
@media screen and (max-width: 767px) {
  .p-monitor__fig.is-3.is-fire img {
    animation-name: zoom1Sp;
  }
}
@media screen and (min-width: 768px) {
  .p-monitor__fig.is-3.is-animation-end img {
    animation: none;
  }
  .p-monitor__fig.is-3.is-animation-end:hover img {
    scale: 1.1;
  }
}
.p-monitor__fig.is-4 img {
  transition: 0.4s scale;
  width: 100%;
}

.p-monitor__fig.is-4.is-fire img {
  animation-name: zoom1;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 768px) {
  .p-monitor__fig.is-4.is-fire img {
    animation-delay: 1.2s;
    animation-duration: 1.8s;
  }
}
@media screen and (max-width: 767px) {
  .p-monitor__fig.is-4.is-fire img {
    animation-name: zoom1Sp;
  }
}
@media screen and (min-width: 768px) {
  .p-monitor__fig.is-4.is-animation-end img {
    animation: none;
  }
  .p-monitor__fig.is-4.is-animation-end:hover img {
    scale: 1.1;
  }
}

.p-monitor__txt {
  padding: 1.5625em 1.5625em 2.5em 1.5625em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-monitor__txt {
    padding: 6.4vw 4.2666666667vw;
    background: #F7F8F9;
  }
}
.p-monitor__txt dl {
  margin: 0;
}
.p-monitor__txt dt {
  font-size: 150%;
  line-height: 1.5;
  margin-bottom: 0.4166666667em;
}
@media screen and (max-width: 767px) {
  .p-monitor__txt dt {
    font-size: 5.3333333333vw;
  }
}
.p-monitor__txt dd {
  font-size: 87.5%;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-monitor__txt dd {
    font-size: 3.7333333333vw;
  }
}

/*========================================
  spec
========================================*/
.p-spec {
  margin: 0;
  padding: 0;
}
.p-spec__item {
  display: block;
  border-bottom: 1px solid #E1E4E7;
}
@media screen and (min-width: 768px) {
  .p-spec__item {
    margin-top: 1.25em;
  }
}
.p-spec__item summary::-webkit-details-marker {
  display: none;
}
.p-spec__item summary {
  list-style: none;
  display: block;
  position: relative;
  font-size: 150%;
  padding-bottom: 0.8333333333em;
  cursor: pointer;
  user-select: none;
}
@media screen and (max-width: 767px) {
  .p-spec__item summary {
    padding: 4vw 0;
    font-size: 5.3333333333vw;
  }
}
.p-spec__item[open] .p-spec__icon-toggle::before {
  transform: rotate(0);
}
@media screen and (max-width: 767px) {
  .p-spec__table {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-spec__table th, .p-spec__table td {
    vertical-align: top;
    padding: 1.125em 0;
  }
}
@media screen and (max-width: 767px) {
  .p-spec__table th, .p-spec__table td {
    display: block;
    font-size: 3.7333333333vw;
  }
}
.p-spec__table th {
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-spec__table th {
    padding-right: 1.25em;
  }
}
.p-spec__table td {
  color: #999999;
}
@media screen and (max-width: 767px) {
  .p-spec__table td {
    padding-bottom: 5.3333333333vw;
  }
}
.p-spec__icon-toggle {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0.4166666667em;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
}
@media screen and (max-width: 767px) {
  .p-spec__icon-toggle {
    width: 4.8vw;
    height: 4.8vw;
    right: 1.6vw;
  }
}
.p-spec__icon-toggle::before, .p-spec__icon-toggle::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transform: translateY(50%);
  border-radius: 10px;
}
.p-spec__icon-toggle::before {
  transition: 0.25s transform;
  transform: rotate(90deg);
}
.p-spec__icon-toggle::after {
  transform: rotate(0);
}

.p-spec-note {
  padding: 1.6666666667em 0 2.5em 0;
  font-size: 75%;
  line-height: 1.5;
  color: #999999;
}
@media screen and (max-width: 767px) {
  .p-spec-note {
    padding: 0vw 0 6.4vw 0;
  }
}
.p-spec-note p {
  margin: 0;
  text-indent: -2em;
  margin-left: 2em;
}

/*========================================
  help
========================================*/
.p-help {
	background: linear-gradient(to right,#f7fafd 0%, #e7effa 100%);
  margin-top: 4.0625em;
  padding:calc(40 * 0.0625em) calc(40 * 0.0625em) calc(18 * 0.0625em);
  border-radius: 0.75em;
}
@media screen and (min-width: 768px) {
  .p-help {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-help {
    margin: 12vw var(--sp-pad) 0 var(--sp-pad);
    padding:calc(32 * 0.26666vw) calc(16 * 0.26666vw);
  }
}
.p-help__ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  gap: 0 0.375em;
  font-size: 250%;
}
@media screen and (max-width: 767px) {
  .p-help__ttl {
    margin:0;
    display:block;
    font-size:calc(26 * 0.26666vw);
    gap: 0;
    text-align:center;
  }
}
@media screen and (max-width: 767px) {
	.p-help__ttl span{
		display:block;
	}
}
.p-help__ttl img {
  width: 7.2em;
}
@media screen and (max-width: 767px) {
  .p-help__ttl img {
    width: calc(40 * 0.26666vw);
  }
}
.p-help__subttl{
	font-size:calc(32 * 0.0625em);
	font-weight:800;
	color:#0057AA;
	padding:0;
}
@media screen and (max-width: 767px) {
	.p-help__subttl{
		line-height:1.36;
		font-size:calc(22 * 0.26666vw);
		text-align:center;
	}
}
.p-help__lead {
  margin-top: calc(8 * 0.0625em);
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
	.p-help__lead {
	  margin-top: calc(12 * 0.26666vw);
	  text-align:center;
	}
}
.p-help__lead p {
  margin: 0;
}
.p-help__fig {
  margin-top: 2.5em;
}
@media screen and (max-width: 767px) {
  .p-help__fig img {
    width: 100%;
  }
}

.p-help__note{
	text-align:left;
	color:#333333;
	font-size:calc(12 * 0.0625em);
	line-height:1.5;
	padding:0;
	margin:0;
}
@media screen and (max-width: 767px) {
	.p-help__note{
		margin-top:calc(30 * 0.26666vw);
		font-size:calc(12 * 0.26666vw);
	}
}
.p-help__note li{
	padding-left:2em;
	text-indent:-2em;
}

.p-3-note{
	padding-left:1em;
	text-indent:-1em;
	line-height:1.5;
}

@media screen and (min-width: 768px) {
	.p-3-note{
		font-size:calc(12 * 0.0625em);
		margin-top:calc(40 * 0.0625em);
	}
}

@media screen and (max-width: 767px) {
	.p-3-note{
		font-size:calc(12 * 0.26666vw);
		margin-top:calc(40 * 0.26666vw);
	}
}

/*========================================
 * hidden
 *
 * クラス : u-hidden-{MQ}
========================================*/
@media screen and (max-width: 767px) {
  .u-hidden-ltSP {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .u-hidden-ltTAB {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-hidden-gtTAB {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .u-hidden-gtPC {
    display: none;
  }
}

/*========================================
 * padding
========================================*/
@media screen and (max-width: 1300px) and (min-width: 767px) {
  .u-PC-pad {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media screen and (max-width: 767px) {
  .u-SP-pad {
    padding-right: calc(16 * 0.26666vw);
    padding-left: calc(16 * 0.26666vw);
  }
}
/*========================================
========================================*/
.u-tran {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: 0.4s;
}
.u-tran.is-fire {
  opacity: 1;
  transform: translateY(0px);
}

/*========================================
 * スクリーンリーダーテキスト
========================================*/
.screen-reader-text,
.u-screen-reader {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}