@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/*----------------------------------------------------------
 リセット
---------------------------------------------------------- */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}
#login_mypage,
#head-wrapper,
#global-navi,
#foot-wrapper,
#main:after {
  display: none;
}
#body,
#body-wrapper,
#main,
#wrap,
#Carea,
#page-inner,
#body-inner,
.one-col #centercol {
  width: 100%;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}
body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0!important;
  background: #fff;
}
body.paused *
{
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
}
img {
  width: 100%;
  height: auto;
  display: block;
}


/*----------------------------------------------------------
MAIN VISUAL
---------------------------------------------------------- */
.mainvisual {
  width: 100%;
  background: #000;
  text-align: center;
}

.mainvisual img {
  display: block;
  width: 100%;
  max-width: 1024px;
  height: auto;
  margin: 0 auto;
}
/*----------------------------------------------------------
 LAYOUT
---------------------------------------------------------- */
.pp-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 2rem;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
}

.pp-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

.pp-logo,
.pp-inline-logo {
  display: inline-flex;
  align-items: center;
}

.pp-logo img {
  width: auto;
  height: 2rem;
}

.pp-inline-logo img {
  width: auto;
  height: 0.8rem;
}

.pp-wrap p.pp-box {
  padding: 1rem;
  border: 1px solid #000;
}

.pp-wrap p {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
}

h1.pp-title {
  position: relative;
  top: inherit;
  left: inherit;
  margin: 0;
  padding-bottom: 6px;
  border-bottom: 2px solid #000;
  font-size: 1.3rem;
  font-weight: 700;
}

h2.pp-heading {
  margin: 0 0 1rem 0;
  padding: 0 0 0 0.6rem;
  border-left: 7px solid #000;
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  height: inherit;
}

h3.pp-subheading {
  margin: 2rem 0 0.8rem;
  padding: 1rem;
  color: #000;
  border: none;
  background: #f5f5f5;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.pp-date {
  margin-bottom: 32px;
  font-size: 14px;
  text-align: right;
}

.pp-list {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
  list-style-type: decimal;
}

.pp-list li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
  list-style-type: decimal;
}

.pp-section + .pp-section {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid #ddd;
}

.pp-section {
  scroll-margin-top: 20px;
}

.pp-image {
  margin-top: 0.8rem;
}

.pp-image-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  max-width: 150px;
  height: 150px;
  padding: 10px;
  background: #000;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pp-popup-open {
  display: inline-block;
  width: auto;
  max-width: 100%;
  vertical-align: top;
}

.pp-popup-open:hover .pp-image-frame {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.pp-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pp-image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0.8rem;
}

.pp-image-grid--2 {
  justify-content: flex-start;
  align-items: flex-start;
}

.pp-image-grid .pp-image {
  margin: 0;
  flex: 0 0 150px;
  width: 150px;
}

.pp-image-grid .pp-image-frame {
  width: 150px;
  max-width: none;
  margin: 0;
}

.pp-info-list {
  margin: 0;
  padding: 0;
}

.pp-info-item {
  margin: 0 0 1.6rem;
}

.pp-info-item dt {
  position: relative;
  margin: 0 0 0.5rem;
  padding-left: 1em;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
}

.pp-info-item dt::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.pp-info-item dd {
  margin: 0;
  padding-left: 1em;
  font-size: 0.95rem;
  line-height: 1.7;
}

.pp-info-item dd + dd {
  margin-top: 0.15rem;
}


/*----------------------------------------------------------
 ポップアップ
---------------------------------------------------------- */
.pp-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.pp-popup.is-show {
  visibility: visible;
  opacity: 1;
}

.pp-popup-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.pp-popup.is-show .pp-popup-bg {
  opacity: 1;
}

.pp-popup-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 30px);
  max-width: 900px;
  max-height: 90vh;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.pp-popup.is-show .pp-popup-box {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.pp-popup-box img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pp-popup-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.pp-popup-close:hover {
  transform: scale(1.08);
}

/*----------------------------------------------------------
 目次
---------------------------------------------------------- */
.pp-toc {
  margin-bottom: 3.5rem;
  background: #f5f5f5;
}

h2.pp-toc-title {
  margin: 0;
  padding: 1rem;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background: #000;
  height: inherit;
}

.pp-toc-body {
  padding: 1.8rem 2rem 2rem;
}

.pp-toc-list {
  margin: 0;
  padding: 0;
  list-style: disc;
}

.pp-toc-list li {
  list-style: disc;
}

.pp-toc-list li + li {
  margin-top: 0.2rem;
}

.pp-toc-list a {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.7;
  text-underline-offset: 0.15em;
  color: #000!important;
}
