@charset "UTF-8";
:root {
  --designwidth:1400;
  --font-inter: "Inter", serif;
  --color_main: #181D27;
  --color_sub: #4F5257;
}
@media screen and (max-width:767px) {
  :root {
    --designwidth:393;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (max-width:767px) {
  html {
    scroll-padding-top: calc(60 / var(--designwidth) * 100vw);
  }
}

body {
  line-height: 1.625;
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  color: var(--color_main);
}
@media screen and (max-width:767px) {
  body {
    font-size: calc(14 / var(--designwidth) * 100vw);
  }
}

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

.l-container {
  padding-top: 80px;
}
@media screen and (max-width:767px) {
  .l-container {
    padding-top: 64px;
  }
}

.l-article {
  padding: 70px 0 100px;
}
@media screen and (max-width:767px) {
  .l-article {
    padding: calc(40 / var(--designwidth) * 100vw) 0 calc(60 / var(--designwidth) * 100vw);
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.04);
}

@media print, screen and (min-width: 768px) {
  .u-block {
    max-width: 1280px;
    width: calc(100% - 60px);
    margin-inline: auto;
  }
  .u-block--1066 {
    max-width: 1066px;
  }
  .u-block--800 {
    max-width: 800px;
  }
  .u-block--700 {
    max-width: 700px;
  }
}
@media screen and (max-width:767px) {
  .u-block {
    padding-inline: calc(24 / var(--designwidth) * 100vw);
  }
  .u-block--lv2--sp {
    padding-inline: calc(48 / var(--designwidth) * 100vw);
  }
}

@media print, screen and (min-width: 768px) {
  .u-show-sp {
    display: none !important;
  }
}

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

.u-text-center {
  text-align: center;
}

.c-headline-v1-wrap {
  margin: 0 0 64px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .c-headline-v1-wrap {
    margin: 0 0 calc(40 / var(--designwidth) * 100vw);
  }
}

.c-headline-v1 {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color_sub);
  letter-spacing: 1px;
  text-indent: -1px;
}
@media screen and (max-width:767px) {
  .c-headline-v1 {
    font-size: calc(20 / var(--designwidth) * 100vw);
  }
}

.c-headline-v1__strong {
  font-style: normal;
  color: var(--color_main);
  font-size: 42px;
  line-height: 1;
}
@media screen and (max-width:767px) {
  .c-headline-v1__strong {
    line-height: 1.5;
    font-size: calc(28 / var(--designwidth) * 100vw);
  }
}

.c-headline-v1__num {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  font-style: normal;
  font-family: var(--font-inter);
  color: var(--color_main);
}
@media screen and (max-width:767px) {
  .c-headline-v1__num {
    font-size: calc(32 / var(--designwidth) * 100vw);
  }
}

.c-headline-v1__lead {
  margin: 4px 0 0;
  font-size: 18px;
  letter-spacing: 1px;
}
@media screen and (max-width:767px) {
  .c-headline-v1__lead {
    margin-top: calc(8 / var(--designwidth) * 100vw);
    font-size: calc(16 / var(--designwidth) * 100vw);
  }
}

.c-ullist li {
  position: relative;
  padding-left: 1em;
  letter-spacing: 1px;
}
@media screen and (max-width:767px) {
  .c-ullist li:nth-child(n+2) {
    margin-top: 1.5em;
  }
}
.c-ullist li:before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  content: "・";
}

.c-notelist {
  margin-top: 25px;
  counter-reset: notice;
}
@media screen and (max-width:767px) {
  .c-notelist {
    margin-top: calc(20 / var(--designwidth) * 100vw);
  }
}
.c-notelist--right {
  display: grid;
  grid-template-columns: auto;
  justify-content: flex-end;
}
.c-notelist li {
  position: relative;
  padding-left: 1.5em;
  letter-spacing: 1px;
  font-size: 12px;
  counter-increment: notice;
}
@media screen and (max-width:767px) {
  .c-notelist li {
    padding-left: 0;
    font-size: calc(11 / var(--designwidth) * 100vw);
  }
}
.c-notelist li:before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  content: "※";
}
@media screen and (max-width:767px) {
  .c-notelist li:before {
    position: static;
  }
}

ol.c-notelist li {
  padding-left: 3em;
}
@media screen and (max-width:767px) {
  ol.c-notelist li {
    padding-left: 0;
  }
}
ol.c-notelist li:before {
  content: "※" counter(notice) "：";
}

.c-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width:767px) {
  .c-button-wrap {
    margin-top: calc(24 / var(--designwidth) * 100vw);
  }
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 16px 26px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2509803922);
  color: #fff;
  background-color: #181D27;
  font-weight: 700;
  min-width: 238px;
  letter-spacing: 1px;
}
@media screen and (max-width:767px) {
  .c-button {
    width: 100%;
    min-width: 0;
    padding: calc(16 / var(--designwidth) * 100vw) calc(24 / var(--designwidth) * 100vw);
    font-size: calc(16 / var(--designwidth) * 100vw);
  }
}
@media print, screen and (min-width: 768px) {
  .c-button {
    transition: opacity 0.3s;
  }
  .c-button:hover {
    opacity: 0.7;
  }
}
.c-button--yellow {
  background-color: #FFCD42;
  color: #181D27;
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  margin: 6.4rem auto 0;
  max-width: 456px;
}
@media screen and (max-width:767px) {
  .c-pagination {
    margin: calc(32 / var(--designwidth) * 100vw) auto 0;
  }
}

.c-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 4rem;
  aspect-ratio: 1/1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  transition: opacity 0.3s ease;
}
.c-pagination__item.is-current {
  pointer-events: none;
  background-color: var(--color_sub);
  color: #fff;
}
.c-pagination__item.is-prev, .c-pagination__item.is-next {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
}
.c-pagination__item.is-prev:before, .c-pagination__item.is-next:before {
  position: absolute;
  z-index: 2;
  top: calc(50% - 3px);
  left: 15px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}
.c-pagination__item.is-prev {
  left: 0;
  transform: rotate(180deg);
}
.c-pagination__item.is-next {
  right: 0;
}
@media (hover: hover) and (pointer: fine) {
  .c-pagination__item:link:hover {
    text-decoration: underline;
    opacity: 0.7;
  }
}

.p-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 16px 80px;
  max-width: 1440px;
  width: 100%;
  height: 80px;
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-header__inner {
    padding: 16px 20px;
  }
}
@media screen and (max-width:767px) {
  .p-header__inner {
    height: 64px;
    padding: 16px 24px;
  }
}

.p-header__logo {
  max-width: 39.6875%;
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-header__logo {
    max-width: 280px;
  }
}
@media screen and (max-width:767px) {
  .p-header__logo {
    max-width: 276px;
    width: calc(276 / var(--designwidth) * 100vw);
  }
}

.p-header__switch {
  display: block;
  position: relative;
  z-index: 5;
  top: 0;
  right: 0;
  border: none;
  width: 20px;
  height: 17px;
  padding: 0;
  cursor: pointer;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media print, screen and (min-width: 768px) {
  .p-header__switch {
    display: none;
  }
}
.p-header__switch > span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #000;
  border-radius: 0;
  transition: ease all 0.3s;
}
.p-header__switch > span:nth-child(1) {
  top: 0;
}
.p-header__switch > span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.p-header__switch > span:nth-child(3) {
  bottom: 0;
}
body.is-gnav-open .p-header__switch > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.is-gnav-open .p-header__switch > span:nth-child(2) {
  opacity: 0;
}
body.is-gnav-open .p-header__switch > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media screen and (max-width:767px) {
  .p-header__nav {
    position: absolute;
    top: 64px;
    left: 0;
    z-index: 9999;
    height: 100dvh;
    width: 100%;
    background: #E8E8E9;
    transform: translateX(100%);
    transition: ease transform 0.3s;
  }
  .is-gnav-open .p-header__nav {
    transform: translateX(0);
  }
}

.p-header__nav__inner {
  display: flex;
  align-items: center;
  gap: 0 50px;
}
@media screen and (max-width:767px) {
  .p-header__nav__inner {
    display: block;
    padding: calc(40 / var(--designwidth) * 100vw) calc(50 / var(--designwidth) * 100vw) calc(20 / var(--designwidth) * 100vw);
  }
}

.p-header__nav__list {
  display: flex;
  align-items: center;
  gap: 0 26px;
  font-size: 16px;
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-header__nav__list {
    gap: 0 15px;
    font-size: 15px;
  }
}
@media screen and (max-width:767px) {
  .p-header__nav__list {
    display: block;
    font-size: calc(20 / var(--designwidth) * 100vw);
  }
}

.p-header__nav__list__item a {
  position: relative;
  display: block;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
  color: var(--color_main);
}
@media print, screen and (min-width: 768px) {
  .p-header__nav__list__item a {
    transition: opacity 0.3s;
  }
  .p-header__nav__list__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width:767px) {
  .p-header__nav__list__item a {
    padding: calc(13 / var(--designwidth) * 100vw) 0;
    text-align: center;
    font-weight: 500;
  }
}

@media screen and (max-width:767px) {
  .p-header__nav__bg {
    margin-top: calc(50 / var(--designwidth) * 100vw);
  }
}

.p-top-mv__inner {
  display: grid;
  justify-content: center;
  grid-template-columns: 46.875% 47.96875%;
  padding-top: 90px;
  margin: 0 auto;
  max-width: 1280px;
  gap: 0 26px;
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top-mv__inner {
    display: flex;
    flex-direction: column-reverse;
    max-width: 100%;
    padding: 40px 30px;
  }
}
@media screen and (max-width:767px) {
  .p-top-mv__inner {
    display: flex;
    flex-direction: column-reverse;
    max-width: 100%;
    padding: calc(50 / var(--designwidth) * 100vw) calc(24 / var(--designwidth) * 100vw) calc(30 / var(--designwidth) * 100vw);
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top-mv__image {
    margin: 50px auto 0;
    max-width: 400px;
  }
}
@media screen and (max-width:767px) {
  .p-top-mv__image {
    width: calc(300 / var(--designwidth) * 100vw);
    margin: calc(26 / var(--designwidth) * 100vw) auto 0;
  }
}
.p-top-mv__image img {
  width: 100%;
}

.p-top-mv__title {
  text-align: center;
  line-height: 1.1;
}

.p-top-mv__title__popup {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  font-size: 28px;
  font-weight: 700;
  color: var(--color_sub);
}
@media screen and (max-width:767px) {
  .p-top-mv__title__popup {
    font-size: calc(20 / var(--designwidth) * 100vw);
  }
}
.p-top-mv__title__popup span {
  flex-shrink: 0;
}
.p-top-mv__title__popup:before, .p-top-mv__title__popup:after {
  position: relative;
  bottom: -2px;
  content: "";
  flex-shrink: 0;
  display: block;
  height: 22px;
  width: 2px;
  background-color: var(--color_sub);
}
@media screen and (max-width:767px) {
  .p-top-mv__title__popup:before, .p-top-mv__title__popup:after {
    bottom: -1px;
    height: calc(18 / var(--designwidth) * 100vw);
  }
}
.p-top-mv__title__popup:before {
  transform: skewX(26deg);
}
.p-top-mv__title__popup:after {
  transform: skewX(-26deg);
}

.p-top-mv__title__main {
  display: block;
  margin: 18px 0 0;
  font-size: 42px;
  text-indent: -1px;
  letter-spacing: 1px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .p-top-mv__title__main {
    margin-top: calc(8 / var(--designwidth) * 100vw);
    font-size: calc(28 / var(--designwidth) * 100vw);
  }
}

.p-top-mv__title__sub {
  display: block;
  margin: 20px 0 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color_sub);
}
@media screen and (max-width:767px) {
  .p-top-mv__title__sub {
    margin: calc(8 / var(--designwidth) * 100vw) 0 0;
    font-size: calc(20 / var(--designwidth) * 100vw);
  }
}
.p-top-mv__title__sub em {
  vertical-align: text-bottom;
  line-height: 1;
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  font-family: var(--font-inter);
}
@media screen and (max-width:767px) {
  .p-top-mv__title__sub em {
    font-size: calc(28 / var(--designwidth) * 100vw);
  }
}

.p-top-mv__title__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 15px 0 0;
  gap: 15px 0;
}
@media screen and (max-width:767px) {
  .p-top-mv__title__list {
    gap: calc(8 / var(--designwidth) * 100vw);
    margin: calc(8 / var(--designwidth) * 100vw) 0 0;
  }
}

.p-top-mv__title__list__item {
  flex-shrink: 0;
  margin-right: 8px;
  padding: 12px 14px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width:767px) {
  .p-top-mv__title__list__item {
    padding: calc(6 / var(--designwidth) * 100vw) calc(16 / var(--designwidth) * 100vw);
    margin-right: 0;
    font-size: calc(20 / var(--designwidth) * 100vw);
  }
}
.p-top-mv__title__list__item.is-color01 {
  background-color: #E2FFFA;
}
.p-top-mv__title__list__item.is-color02 {
  background-color: #FAFFE2;
}
.p-top-mv__title__list__item.is-color03 {
  background-color: #E7FFE2;
}

.p-top-mv__title__list__last {
  font-weight: 700;
  font-size: 42px;
}
@media screen and (max-width:767px) {
  .p-top-mv__title__list__last {
    width: 100%;
    font-size: calc(28 / var(--designwidth) * 100vw);
  }
}

.p-top-nayami {
  position: relative;
  padding-top: 8.33vw;
  background: url(../img/nayami_bg01.png) no-repeat 50% 0%;
  background-size: 100% auto;
}
@media screen and (max-width:767px) {
  .p-top-nayami {
    padding-top: calc(50 / var(--designwidth) * 100vw);
    background-image: url(../img/nayami_bg01_sp.png) no-repeat 50% 0%;
  }
}

.p-top-nayami-popup {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -11px;
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top-nayami-popup {
    margin-top: 80px;
  }
}
@media screen and (max-width:767px) {
  .p-top-nayami-popup {
    grid-template-columns: 100%;
    gap: calc(24 / var(--designwidth) * 100vw);
  }
}

.p-top-nayami-popup__item {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #E8E8E9;
  padding: 24px 24px 24px 130px;
  background-color: #fff;
  box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.05), 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top-nayami-popup__item {
    padding: 60px 24px 24px;
  }
}
@media screen and (max-width:767px) {
  .p-top-nayami-popup__item {
    align-items: flex-start;
    gap: calc(12 / var(--designwidth) * 100vw);
    padding: calc(14 / var(--designwidth) * 100vw) calc(14 / var(--designwidth) * 100vw) calc(24 / var(--designwidth) * 100vw) calc(14 / var(--designwidth) * 100vw);
  }
}
.p-top-nayami-popup__item:after {
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 50%;
  content: "";
  display: block;
  width: 5px;
  border-left: 1px dashed #181D27;
  height: 150px;
  aspect-ratio: 1440/120;
}
@media screen and (max-width:767px) {
  .p-top-nayami-popup__item:after {
    display: none;
  }
}

.p-top-nayami-popup__item__image {
  position: absolute;
  z-index: 5;
  top: -10px;
  left: 16px;
  width: 100px;
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top-nayami-popup__item__image {
    top: -10px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width:767px) {
  .p-top-nayami-popup__item__image {
    flex-shrink: 0;
    position: static;
    width: calc(78 / var(--designwidth) * 100vw);
  }
}

.p-top-nayami-popup__item__detail {
  text-align: justify;
  font-weight: 700;
  letter-spacing: 1px;
  font-feature-settings: "palt";
}
@media screen and (max-width:767px) {
  .p-top-nayami-popup__item__detail {
    padding-top: calc(10 / var(--designwidth) * 100vw);
    text-align: left;
  }
}

.p-top-nayami__lead-wrap {
  padding: 30px 0;
}
@media screen and (max-width:767px) {
  .p-top-nayami__lead-wrap {
    padding: 0;
  }
  .p-top-nayami__lead-wrap:before, .p-top-nayami__lead-wrap:after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 1px;
    border-left: 1px dashed #181D27;
    height: calc(40 / var(--designwidth) * 100vw);
  }
}

.p-top-nayami__lead {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--color_sub);
  font-weight: 700;
  font-size: 24px;
  line-height: 0.95;
  letter-spacing: 1px;
}
@media screen and (max-width:767px) {
  .p-top-nayami__lead {
    padding: calc(8 / var(--designwidth) * 100vw) 0;
    font-size: calc(18 / var(--designwidth) * 100vw);
    line-height: 1.4;
  }
}

.p-top-nayami__lead__strong {
  color: var(--color_main);
  font-style: normal;
}
.p-top-nayami__lead__strong em {
  font-weight: 700;
  font-size: 32px;
  font-style: normal;
  font-family: var(--font-inter);
}
@media screen and (max-width:767px) {
  .p-top-nayami__lead__strong em {
    font-size: calc(24 / var(--designwidth) * 100vw);
  }
}

.p-top-nayami-point {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width:767px) {
  .p-top-nayami-point {
    grid-template-columns: 100%;
    gap: calc(24 / var(--designwidth) * 100vw);
  }
}

.p-top-nayami-point__item {
  border: 1px solid #E8E8E9;
  padding: 0 24px 24px;
  box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.05), 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width:767px) {
  .p-top-nayami-point__item {
    padding: 0 calc(24 / var(--designwidth) * 100vw) calc(24 / var(--designwidth) * 100vw) calc(24 / var(--designwidth) * 100vw);
  }
}

.p-top-nayami-point__item__image {
  margin: 0 -24px;
}
@media screen and (max-width:767px) {
  .p-top-nayami-point__item__image {
    margin: 0 calc(-24 / var(--designwidth) * 100vw);
  }
}

.p-top-nayami-point__item__icon {
  margin: 24px auto 4px;
  padding: 4px 4px;
  width: 74px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 500;
  font-family: var(--font-inter);
  background-color: #E2FFFA;
}
@media screen and (max-width:767px) {
  .p-top-nayami-point__item__icon {
    margin: calc(24 / var(--designwidth) * 100vw) auto calc(4 / var(--designwidth) * 100vw);
    padding: calc(3 / var(--designwidth) * 100vw) 0;
    width: calc(70 / var(--designwidth) * 100vw);
    font-size: calc(14 / var(--designwidth) * 100vw);
  }
}
.p-top-nayami-point__item__icon.is-color01 {
  background-color: #E2FFFA;
}
.p-top-nayami-point__item__icon.is-color02 {
  background-color: #FAFFE2;
}
.p-top-nayami-point__item__icon.is-color03 {
  background-color: #E7FFE2;
}

.p-top-nayami-point__item__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 15px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width:767px) {
  .p-top-nayami-point__item__title {
    gap: 0 calc(12 / var(--designwidth) * 100vw);
    font-size: calc(20 / var(--designwidth) * 100vw);
  }
}
.p-top-nayami-point__item__title span {
  flex-shrink: 0;
}
.p-top-nayami-point__item__title:before, .p-top-nayami-point__item__title:after {
  position: relative;
  bottom: -2px;
  content: "";
  flex-shrink: 0;
  display: block;
  height: 26px;
  width: 2px;
  background-color: #000;
}
@media screen and (max-width:767px) {
  .p-top-nayami-point__item__title:before, .p-top-nayami-point__item__title:after {
    height: calc(18 / var(--designwidth) * 100vw);
    width: 1px;
  }
}
.p-top-nayami-point__item__title:before {
  transform: skewX(26deg);
}
.p-top-nayami-point__item__title:after {
  transform: skewX(-26deg);
}

.p-top-nayami-point__item__lead {
  margin-top: 5px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width:767px) {
  .p-top-nayami-point__item__lead {
    margin: calc(5 / var(--designwidth) * 100vw) calc(-10 / var(--designwidth) * 100vw) 0;
  }
}

.p-top-nayami-point__item__text {
  margin-top: 24px;
  letter-spacing: 1px;
}
@media screen and (max-width:767px) {
  .p-top-nayami-point__item__text {
    margin-top: calc(16 / var(--designwidth) * 100vw);
  }
}

.p-top-compare {
  padding: 100px 0 100px;
}
@media screen and (max-width:767px) {
  .p-top-compare {
    padding: calc(60 / var(--designwidth) * 100vw) 0;
  }
}

.p-top-compare-table {
  margin: 0 auto;
  max-width: 1066px;
}
.p-top-compare-table table {
  box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.05), 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width:767px) {
  .p-top-compare-table table {
    display: none;
  }
}
.p-top-compare-table th,
.p-top-compare-table td {
  vertical-align: middle;
  border-bottom: 2px solid #F3F3F3;
  border-right: 2px solid #F3F3F3;
}
.p-top-compare-table thead th {
  border-left: 2px solid #E5E5E5;
  font-size: 18px;
}
.p-top-compare-table thead td:last-child {
  border-right-color: #E5E5E5;
}
.p-top-compare-table thead th, .p-top-compare-table thead td {
  padding: 16px;
  font-weight: 500;
  background-color: #E5E5E5;
  text-align: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top-compare-table thead th, .p-top-compare-table thead td {
    padding: 12px;
  }
}
.p-top-compare-table tbody {
  text-align: center;
}
.p-top-compare-table tbody th {
  padding: 16px;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  border-left: 2px solid #F3F3F3;
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top-compare-table tbody th {
    padding: 12px;
  }
}
.p-top-compare-table tbody th.sub {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-indent: -0.5px;
}
.p-top-compare-table tbody td {
  vertical-align: top;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top-compare-table tbody td {
    padding: 12px;
  }
}
.p-top-compare-table tbody td:last-child {
  border-right-color: #F3F3F3;
}
.p-top-compare-table th.top {
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 500;
}
.p-top-compare-table .feature {
  text-align: left;
}
.p-top-compare-table .function th {
  background-color: #F6FFFE;
}
.p-top-compare-table .function th.top {
  background-color: #E2FFFA;
}
.p-top-compare-table .price th {
  background-color: #FDFFF4;
}
.p-top-compare-table .price th.top {
  background-color: #FAFFE2;
}
.p-top-compare-table .price__value {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width:767px) {
  .p-top-compare-table .price__value {
    font-size: calc(16 / var(--designwidth) * 100vw);
  }
}
.p-top-compare-table .price__value em {
  font-style: normal;
  font-size: 18px;
  font-family: var(--font-inter);
}
@media screen and (max-width:767px) {
  .p-top-compare-table .price__value em {
    font-size: calc(18 / var(--designwidth) * 100vw);
  }
}
.p-top-compare-table .price__note {
  margin-top: 0.2em;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width:767px) {
  .p-top-compare-table .price__note {
    font-size: calc(12 / var(--designwidth) * 100vw);
  }
}
.p-top-compare-table .user th,
.p-top-compare-table .feature th {
  background-color: #FAFAFA;
  font-size: 18px;
}
.p-top-compare-table .user td,
.p-top-compare-table .feature td {
  font-size: 14px;
  line-height: 1.5714;
}
.p-top-compare-table .support th {
  font-size: 18px;
  background-color: #E7FFE2;
}
.p-top-compare-table .feature td {
  text-align: left;
  letter-spacing: 0.5px;
}
.p-top-compare-table .icon {
  margin-bottom: 10px;
}
@media screen and (max-width:767px) {
  .p-top-compare-table .icon {
    width: calc(20 / var(--designwidth) * 100vw);
    margin-bottom: calc(8 / var(--designwidth) * 100vw);
  }
}
.p-top-compare-table .c-notelist {
  margin-top: 16px;
}

@media screen and (max-width:767px) {
  .p-top-compare-table__figure {
    margin: 0 calc(-8 / var(--designwidth) * 100vw);
  }
}

.p-top-compare-table__title {
  margin: 4px auto 10px;
  font-size: 18px;
  line-height: 1.2222;
  letter-spacing: 1px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .p-top-compare-table__title {
    margin: calc(16 / var(--designwidth) * 100vw) auto;
    font-size: calc(16 / var(--designwidth) * 100vw);
    text-align: center;
  }
}
.p-top-compare-table__title span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8em;
}
@media screen and (max-width:767px) {
  .p-top-compare-table__title span {
    min-height: 0;
  }
}

.p-top-compare-table__button {
  display: block;
  width: 124px;
  margin: 0 auto;
  padding: 4px;
  border-radius: 8px;
  background-color: #181D27;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-indent: -0.5px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}
@media print, screen and (min-width: 768px) {
  .p-top-compare-table__button {
    transition: opacity 0.3s;
  }
  .p-top-compare-table__button:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width:767px) {
  .p-top-compare-table__button {
    width: calc(124 / var(--designwidth) * 100vw);
    padding: calc(4 / var(--designwidth) * 100vw);
    font-size: calc(14 / var(--designwidth) * 100vw);
    font-weight: 700;
    text-align: center;
  }
}

.p-top-compare-table__note {
  margin-top: 1em;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media screen and (max-width:767px) {
  .p-top-compare-table__note {
    font-size: calc(11 / var(--designwidth) * 100vw);
  }
}

.p-top-compare-sptable {
  border-top: 2px solid #E8E8E9;
  border-left: 2px solid #E8E8E9;
  background: #F3F3F3;
  font-size: 12px;
  margin-top: calc(28 / var(--designwidth) * 100vw);
}
.p-top-compare-sptable .is-feature p {
  text-align: left;
}
.p-top-compare-sptable .is-function .p-top-compare-sptable__row__cell--th {
  background-color: #F6FFFE;
}
.p-top-compare-sptable .is-function .p-top-compare-sptable__row--group__title {
  background-color: #E2FFFA;
}
.p-top-compare-sptable .is-price .p-top-compare-sptable__row__cell--th {
  background-color: #FDFFF4;
}
.p-top-compare-sptable .is-price .p-top-compare-sptable__row--group__title {
  background-color: #FAFFE2;
}
.p-top-compare-sptable .price__value {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}
.p-top-compare-sptable .price__value em {
  font-style: normal;
  font-size: 18px;
  font-family: var(--font-inter);
}
.p-top-compare-sptable .price__note {
  margin-top: 0.2em;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}
.p-top-compare-sptable .is-user .p-top-compare-sptable__row__cell--th,
.p-top-compare-sptable .is-other .p-top-compare-sptable__row__cell--th {
  background-color: #FAFAFA;
}
.p-top-compare-sptable .is-support .p-top-compare-sptable__row__cell--th {
  background-color: #E7FFE2;
}
.p-top-compare-sptable .is-other .p-top-compare-sptable__row__cell--th {
  text-align: left;
  letter-spacing: 0.5px;
}

.p-top-compare-sptable__row {
  display: grid;
  grid-template-columns: 43% 57%;
  gap: 0;
}

.p-top-compare-sptable__row__cell {
  padding: 10px;
}

.p-top-compare-sptable__row--group {
  display: grid;
  grid-template-columns: 13% 1fr;
}
.p-top-compare-sptable__row--group .p-top-compare-sptable__row {
  grid-template-columns: 34.5% 65.5%;
}

.p-top-compare-sptable__row--group__title {
  border-bottom: 2px solid #E8E8E9;
  border-right: 2px solid #E8E8E9;
  grid-row: span 999;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 17px;
  line-height: 1;
  font-weight: 500;
  font-size: calc(12 / var(--designwidth) * 100vw);
}

.p-top-compare-sptable__row__cell--th {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #E8E8E9;
  border-right: 2px solid #E8E8E9;
  padding: 10px 4px;
  font-weight: 500;
  font-size: calc(12 / var(--designwidth) * 100vw);
}

.p-top-compare-sptable__row__cell--td {
  border-right: 2px solid #E8E8E9;
  border-bottom: 2px solid #E8E8E9;
  padding: calc(16 / var(--designwidth) * 100vw);
  text-align: center;
  font-size: calc(12 / var(--designwidth) * 100vw);
}

.p-top-pickup {
  padding: 100px 0;
  background-color: #E5E5E5;
}
@media screen and (max-width:767px) {
  .p-top-pickup {
    padding: calc(60 / var(--designwidth) * 100vw) 0 0;
    background-color: #fff;
  }
}

.p-top-pickup-box {
  max-width: 1110px;
  margin: 64px auto 0;
  border: 1px solid #E8E8E9;
  background-color: #fff;
  box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.05), 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width:767px) {
  .p-top-pickup-box {
    margin: calc(24 / var(--designwidth) * 100vw) calc(48 / var(--designwidth) * 100vw) 0;
  }
}

.p-top-pickup-box__header {
  padding: 20px 24px 38px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .p-top-pickup-box__header {
    padding: calc(24 / var(--designwidth) * 100vw) calc(24 / var(--designwidth) * 100vw) calc(24 / var(--designwidth) * 100vw);
  }
}

.p-top-pickup-box__title {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .p-top-pickup-box__title {
    font-size: calc(20 / var(--designwidth) * 100vw);
  }
}

.p-top-pickup-box__subtitle {
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: 0.5px;
}
@media screen and (max-width:767px) {
  .p-top-pickup-box__subtitle {
    margin-top: calc(4 / var(--designwidth) * 100vw);
    font-size: calc(12 / var(--designwidth) * 100vw);
  }
}

.p-top-pickup-box__body {
  padding: 0 24px 24px;
}
@media screen and (max-width:767px) {
  .p-top-pickup-box__body {
    padding: 0 calc(24 / var(--designwidth) * 100vw) calc(24 / var(--designwidth) * 100vw);
  }
}

.p-top-pickup-feature {
  display: grid;
  align-items: flex-end;
  grid-template-columns: 58.9622641509% 1fr;
  gap: 24px;
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top-pickup-feature {
    grid-template-columns: 100%;
  }
}
@media screen and (max-width:767px) {
  .p-top-pickup-feature {
    grid-template-columns: 100%;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top-pickup-feature__image {
    margin: 0 auto;
    max-width: 700px;
  }
}
.p-top-pickup-feature__image img {
  width: 100%;
}

.p-top-pickup-feature__list {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px;
  counter-reset: list-counter;
}
@media screen and (max-width:767px) {
  .p-top-pickup-feature__list {
    gap: calc(24 / var(--designwidth) * 100vw);
  }
}
.p-top-pickup-feature__list li {
  display: grid;
  align-items: center;
  grid-template-columns: 65px 1fr;
  gap: 16px;
  counter-increment: list-counter;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.p-top-pickup-feature__list li:before {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  content: "0" counter(list-counter);
  background: #787878;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-inter);
}

.p-top-pickup-result {
  margin: 24px 0 0;
  padding: 24px;
  background: #F9F9F9;
}
@media screen and (max-width:767px) {
  .p-top-pickup-result {
    margin: calc(26 / var(--designwidth) * 100vw) 0 0;
    padding: calc(24 / var(--designwidth) * 100vw) calc(16 / var(--designwidth) * 100vw);
  }
}

.p-top-pickup-result__label {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 20px;
  color: #787878;
}
@media screen and (max-width:767px) {
  .p-top-pickup-result__label {
    margin: 0 0 calc(16 / var(--designwidth) * 100vw);
    font-size: calc(16 / var(--designwidth) * 100vw);
  }
}

.p-top-pickup-result__text {
  margin-top: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width:767px) {
  .p-top-pickup-result__text {
    margin-top: calc(16 / var(--designwidth) * 100vw);
  }
}

.p-top-pickup-feature__section + .p-top-pickup-feature__section {
  margin-top: 16px;
}
@media screen and (max-width:767px) {
  .p-top-pickup-feature__section + .p-top-pickup-feature__section {
    margin-top: calc(24 / var(--designwidth) * 100vw);
  }
}

.p-top-pickup-feature__section__title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width:767px) {
  .p-top-pickup-feature__section__title {
    margin: 0 0 calc(10 / var(--designwidth) * 100vw);
    font-size: calc(16 / var(--designwidth) * 100vw);
  }
}

.p-top-pickup-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid #F3F3F3;
  border-right: 2px solid #F3F3F3;
  border-collapse: collapse;
}
@media screen and (max-width:767px) {
  .p-top-pickup-table {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-top-pickup-table__cell {
  border-bottom: 2px solid #F3F3F3;
  border-left: 2px solid #F3F3F3;
  padding: 16px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .p-top-pickup-table__cell {
    padding: calc(16 / var(--designwidth) * 100vw);
  }
}
.p-top-pickup-table__cell.is-color01 {
  background-color: #E2FFFA;
}
.p-top-pickup-table__cell.is-color02 {
  background-color: #FAFAFA;
}
.p-top-pickup-table__cell.is-color03 {
  background-color: #E7FFE2;
}
.p-top-pickup-table__cell dt {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.5px;
}
@media screen and (max-width:767px) {
  .p-top-pickup-table__cell dt {
    margin: 0 0 calc(8 / var(--designwidth) * 100vw);
    font-size: calc(12 / var(--designwidth) * 100vw);
  }
}
.p-top-pickup-table__cell dd img {
  width: 24px;
}

.p-top-pickup-feature__price {
  border: 2px solid #F3F3F3;
  padding: 16px;
  background: #FAFFE2;
  letter-spacing: 0.5px;
}
@media screen and (max-width:767px) {
  .p-top-pickup-feature__price {
    padding: calc(16 / var(--designwidth) * 100vw);
  }
}
.p-top-pickup-feature__price dl {
  display: grid;
  align-items: center;
  grid-template-columns: auto auto;
  gap: 6px 10px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
}
@media screen and (max-width:767px) {
  .p-top-pickup-feature__price dl {
    gap: calc(6 / var(--designwidth) * 100vw) calc(10 / var(--designwidth) * 100vw);
    font-size: calc(14 / var(--designwidth) * 100vw);
  }
}
.p-top-pickup-feature__price dl dt {
  font-weight: 500;
}
@media screen and (max-width:767px) {
  .p-top-pickup-feature__price dl dt {
    font-size: calc(12 / var(--designwidth) * 100vw);
  }
}
.p-top-pickup-feature__price dl dd {
  font-weight: 400;
}
.p-top-pickup-feature__price dl dd em {
  font-style: normal;
  font-size: 16px;
  font-family: var(--font-inter);
}
@media screen and (max-width:767px) {
  .p-top-pickup-feature__price dl dd em {
    font-size: calc(16 / var(--designwidth) * 100vw);
  }
}

.p-top-matome {
  padding: 100px 0 0;
}
@media screen and (max-width:767px) {
  .p-top-matome {
    padding: calc(60 / var(--designwidth) * 100vw) 0 0;
  }
}

.p-top-matome__headline {
  position: relative;
  margin: 0 auto 64px;
  padding: 24px 180px;
  text-align: center;
  background-color: #F9F9F9;
  border-radius: 999px;
  max-width: 1062px;
}
@media screen and (max-width:767px) {
  .p-top-matome__headline {
    margin: 0 auto calc(40 / var(--designwidth) * 100vw);
    padding: calc(24 / var(--designwidth) * 100vw);
    max-width: 100%;
  }
}

.p-top-matome__headline__label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 12px;
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .p-top-matome__headline__label {
    gap: 0 calc(12 / var(--designwidth) * 100vw);
    margin: 0 0;
    font-size: calc(24 / var(--designwidth) * 100vw);
  }
}
.p-top-matome__headline__label span {
  flex-shrink: 0;
}
.p-top-matome__headline__label:before, .p-top-matome__headline__label:after {
  position: relative;
  bottom: -2px;
  content: "";
  flex-shrink: 0;
  display: block;
  height: 28px;
  width: 2px;
  background-color: var(--color_sub);
}
@media screen and (max-width:767px) {
  .p-top-matome__headline__label:before, .p-top-matome__headline__label:after {
    height: calc(20 / var(--designwidth) * 100vw);
  }
}
.p-top-matome__headline__label:before {
  transform: skewX(26deg);
}
.p-top-matome__headline__label:after {
  transform: skewX(-26deg);
}

.p-top-matome__headline__main {
  font-size: 24px;
  font-weight: 700;
  color: var(--color_sub);
  letter-spacing: 0.5px;
}
@media screen and (max-width:767px) {
  .p-top-matome__headline__main {
    font-size: calc(18 / var(--designwidth) * 100vw);
  }
}
.p-top-matome__headline__main em {
  font-style: normal;
  font-size: 28px;
  color: var(--color_main);
}
@media screen and (max-width:767px) {
  .p-top-matome__headline__main em {
    font-size: calc(20 / var(--designwidth) * 100vw);
  }
}

.p-top-matome__headline__ic {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.p-top-matome__headline__ic.is-pos01 {
  top: -35px;
  left: 10px;
  width: 140px;
}
@media screen and (max-width:767px) {
  .p-top-matome__headline__ic.is-pos01 {
    top: 0;
    left: 0;
    width: calc(67 / var(--designwidth) * 100vw);
  }
}
.p-top-matome__headline__ic.is-pos02 {
  bottom: -20px;
  right: 0;
  width: 158px;
}
@media screen and (max-width:767px) {
  .p-top-matome__headline__ic.is-pos02 {
    bottom: 0;
    right: 0;
    width: calc(92 / var(--designwidth) * 100vw);
  }
}

.p-top-matome-box {
  max-width: 850px;
  margin: 0 auto;
  border: 1px solid #E8E8E9;
  box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.05), 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width:767px) {
  .p-top-matome-box {
    margin: 0 calc(24 / var(--designwidth) * 100vw);
  }
}
.p-top-matome-box .c-button-wrap {
  margin-top: 30px;
}
@media screen and (max-width:767px) {
  .p-top-matome-box .c-button-wrap {
    margin-top: calc(24 / var(--designwidth) * 100vw);
  }
}

.p-top-matome-box__header {
  padding: 8px;
  background-color: #E5E5E5;
  text-align: center;
}
@media screen and (max-width:767px) {
  .p-top-matome-box__header {
    padding: calc(8 / var(--designwidth) * 100vw);
  }
}

.p-top-matome-box__title {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .p-top-matome-box__title {
    font-size: calc(16 / var(--designwidth) * 100vw);
  }
}

.p-top-matome-box__subtitle {
  margin-top: 2px;
  font-size: 14px;
  letter-spacing: 0.5px;
}
@media screen and (max-width:767px) {
  .p-top-matome-box__subtitle {
    margin: 0;
    font-size: calc(12 / var(--designwidth) * 100vw);
  }
}

.p-top-matome-box__body {
  padding: 32px 24px 24px;
}
@media screen and (max-width:767px) {
  .p-top-matome-box__body {
    padding: calc(24 / var(--designwidth) * 100vw);
  }
}

.p-top-matome-feature {
  display: grid;
  align-items: center;
  grid-template-columns: 390px 1fr;
  gap: 34px;
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top-matome-feature {
    grid-template-columns: 100%;
    gap: 34px;
  }
}
@media screen and (max-width:767px) {
  .p-top-matome-feature {
    grid-template-columns: 100%;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top-matome-feature__image {
    margin: 0 auto;
    max-width: 500px;
  }
}

.p-top-matome-feature__list {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
  counter-reset: list-counter;
}
@media screen and (max-width:767px) {
  .p-top-matome-feature__list {
    gap: calc(24 / var(--designwidth) * 100vw);
  }
}
.p-top-matome-feature__list li {
  display: grid;
  align-items: center;
  grid-template-columns: 65px 1fr;
  gap: 16px;
  counter-increment: list-counter;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media screen and (max-width:767px) {
  .p-top-matome-feature__list li {
    grid-template-columns: calc(50 / var(--designwidth) * 100vw) 1fr;
    gap: calc(8 / var(--designwidth) * 100vw);
  }
}
.p-top-matome-feature__list li:before {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  aspect-ratio: 65/62;
  content: "0" counter(list-counter);
  background: #787878;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-inter);
}
@media screen and (max-width:767px) {
  .p-top-matome-feature__list li:before {
    font-size: calc(18 / var(--designwidth) * 100vw);
  }
}

.p-top-matome-result {
  margin: 32px 0 0;
  padding: 24px;
  background: #F9F9F9;
}
@media screen and (max-width:767px) {
  .p-top-matome-result {
    margin: calc(24 / var(--designwidth) * 100vw) 0 0;
    padding: calc(24 / var(--designwidth) * 100vw) calc(16 / var(--designwidth) * 100vw);
  }
}

.p-top-matome-result__label {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4em;
  color: #787878;
}
@media screen and (max-width:767px) {
  .p-top-matome-result__label {
    line-height: 1.5;
    font-size: calc(16 / var(--designwidth) * 100vw);
  }
}

.p-top-matome-result__title {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width:767px) {
  .p-top-matome-result__title {
    margin-top: calc(16 / var(--designwidth) * 100vw);
    font-size: calc(14 / var(--designwidth) * 100vw);
  }
}

.p-top-matome-result__text {
  margin-top: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width:767px) {
  .p-top-matome-result__text {
    margin-top: calc(16 / var(--designwidth) * 100vw);
    font-size: calc(14 / var(--designwidth) * 100vw);
  }
}

.p-top-blog {
  padding: 100px 0;
}
@media screen and (max-width:767px) {
  .p-top-blog {
    padding: calc(60 / var(--designwidth) * 100vw) 0;
  }
}

.p-top-blog-card-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1062px;
  margin: 0 auto 64px;
}
@media screen and (max-width:767px) {
  .p-top-blog-card-wrap {
    grid-template-columns: 100%;
    gap: calc(24 / var(--designwidth) * 100vw);
    margin-bottom: calc(40 / var(--designwidth) * 100vw);
  }
}

.p-top-blog-card {
  display: grid;
  gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 4;
  padding: 0 16px 16px;
  border: 1px solid #E8E8E9;
  box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.05), 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width:767px) {
  .p-top-blog-card {
    padding: 0 calc(16 / var(--designwidth) * 100vw) calc(16 / var(--designwidth) * 100vw);
  }
}
@media print, screen and (min-width: 768px) {
  .p-top-blog-card {
    transition: opacity 0.3s;
  }
  .p-top-blog-card:hover {
    opacity: 0.7;
  }
}

.p-top-blog-card__image {
  margin: 0 -16px 16px;
}
.p-top-blog-card__image img {
  aspect-ratio: 338/170;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width:767px) {
  .p-top-blog-card__image {
    margin: 0 calc(-16 / var(--designwidth) * 100vw) calc(16 / var(--designwidth) * 100vw);
  }
}

.p-top-blog-card__detail__title {
  font-weight: bold;
  letter-spacing: 1px;
}
@media screen and (max-width:767px) {
  .p-top-blog-card__detail__title {
    font-size: calc(14 / var(--designwidth) * 100vw);
  }
}

.p-top-blog-card__detail__text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5714;
  font-weight: 500;
  color: rgba(24, 29, 39, 0.6);
  letter-spacing: 0.5px;
}
@media screen and (max-width:767px) {
  .p-top-blog-card__detail__text {
    margin-top: calc(16 / var(--designwidth) * 100vw);
    font-size: calc(12 / var(--designwidth) * 100vw);
  }
}

.p-top-blog-card__detail__more {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #787878;
  letter-spacing: 0.5px;
}
@media screen and (max-width:767px) {
  .p-top-blog-card__detail__more {
    margin-top: calc(16 / var(--designwidth) * 100vw);
    font-size: calc(14 / var(--designwidth) * 100vw);
  }
}

.l-footer {
  padding: 100px 0;
  background-color: #E5E5E5;
}
@media screen and (max-width:767px) {
  .l-footer {
    padding: calc(60 / var(--designwidth) * 100vw) 0;
  }
}

.p-footer__disclaimer dt {
  margin: 0 0 13px;
  font-weight: 700;
  letter-spacing: 0.5em;
  line-height: 1.625;
}
@media screen and (max-width:767px) {
  .p-footer__disclaimer dt {
    margin: 0 0 calc(13 / var(--designwidth) * 100vw);
    font-size: calc(16 / var(--designwidth) * 100vw);
  }
}
.p-footer__disclaimer ul {
  font-size: 14px;
  line-height: 1.7143;
}
@media screen and (max-width:767px) {
  .p-footer__disclaimer ul {
    font-size: calc(14 / var(--designwidth) * 100vw);
  }
}
.p-footer__disclaimer ul li {
  position: relative;
  padding-left: 1em;
  letter-spacing: 0.5px;
}
.p-footer__disclaimer ul li:before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  content: "・";
}

.p-footer__logo {
  margin: 100px auto 0;
  max-width: 410px;
}
@media screen and (max-width:767px) {
  .p-footer__logo {
    margin: calc(100 / var(--designwidth) * 100vw) auto 0;
    width: 100%;
    max-width: 100%;
  }
}

.p-footer__nav {
  margin: 28px 0 0;
}
@media screen and (max-width:767px) {
  .p-footer__nav {
    margin: calc(40 / var(--designwidth) * 100vw) 0 0;
  }
}

.p-footer__nav__list {
  display: flex;
  justify-content: center;
  font-size: 14px;
}
@media screen and (max-width:767px) {
  .p-footer__nav__list {
    display: grid;
    text-align: center;
    grid-template-columns: 100%;
    gap: calc(24 / var(--designwidth) * 100vw);
    font-size: calc(14 / var(--designwidth) * 100vw);
  }
}
.p-footer__nav__list li a {
  position: relative;
  display: block;
  padding: 0 28px;
  letter-spacing: 0.5px;
}
@media print, screen and (min-width: 768px) {
  .p-footer__nav__list li a {
    transition: opacity 0.3s;
  }
  .p-footer__nav__list li a:hover {
    opacity: 0.7;
  }
}
@media print, screen and (min-width: 768px) {
  .p-footer__nav__list li a li:not(:first-child) a:before {
    position: absolute;
    z-index: 2;
    top: 20%;
    left: 0;
    content: "";
    height: 60%;
    width: 1px;
    background-color: #181D27;
  }
}

.p-single__pagetitle {
  margin: 0 0 40px;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .p-single__pagetitle {
    margin: 0 0 calc(30 / var(--designwidth) * 100vw);
    font-size: calc(24 / var(--designwidth) * 100vw);
  }
}

.p-editor {
  letter-spacing: 1px;
}
.p-editor p {
  margin-top: 1em;
  line-height: 1.8;
}
.p-editor p a {
  text-decoration: underline;
  font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {
  .p-editor p a:hover {
    text-decoration: none;
  }
}
.p-editor h2 {
  margin: 60px 0 16px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.8;
}
@media screen and (max-width:767px) {
  .p-editor h2 {
    margin: calc(40 / var(--designwidth) * 100vw) 0 calc(12 / var(--designwidth) * 100vw);
    font-size: calc(20 / var(--designwidth) * 100vw);
  }
}
.p-editor h3 {
  margin: 60px 0 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width:767px) {
  .p-editor h3 {
    margin: calc(40 / var(--designwidth) * 100vw) 0 calc(12 / var(--designwidth) * 100vw);
    font-size: calc(18 / var(--designwidth) * 100vw);
  }
}
.p-editor h4, .p-editor h5 {
  margin: 60px 0 16px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width:767px) {
  .p-editor h4, .p-editor h5 {
    margin: calc(40 / var(--designwidth) * 100vw) 0 calc(12 / var(--designwidth) * 100vw);
    font-size: calc(16 / var(--designwidth) * 100vw);
  }
}
.p-editor ul.wp-block-list,
.p-editor ol.wp-block-list {
  margin-top: 1em;
  list-style: none;
}
.p-editor ul.wp-block-list > li,
.p-editor ol.wp-block-list > li {
  position: relative;
  padding-left: 1em;
}
.p-editor ul.wp-block-list > li:nth-child(n+2),
.p-editor ol.wp-block-list > li:nth-child(n+2) {
  margin-top: 0.5em;
}
.p-editor ul.wp-block-list > li:before,
.p-editor ol.wp-block-list > li:before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  content: "";
  display: block;
  color: var(--color_main);
}
.p-editor .wp-block-image,
.p-editor .wp-block-gallery {
  margin: 40px 0;
}
@media screen and (max-width:767px) {
  .p-editor .wp-block-image,
  .p-editor .wp-block-gallery {
    margin: calc(20 / var(--designwidth) * 100vw) 0;
  }
}
.p-editor ul.wp-block-list > li:before {
  top: 14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--color_main);
}
.p-editor ol.wp-block-list {
  counter-reset: number;
}
.p-editor ol.wp-block-list > li {
  padding-left: 1em;
  counter-increment: number;
}
.p-editor ol.wp-block-list > li:before {
  content: counter(number) ".";
  font-weight: 500;
}
.p-editor table {
  border-collapse: collapse;
  width: 100%;
}
.p-editor table th,
.p-editor table td {
  border: 1px solid #d1d5db;
  padding: 0.75em 1em;
}