* { 
  -webkit-transition: all .2s linear; 
  -o-transition: all .2s linear; 
  -moz-transition: all .2s linear; 
  transition: all .2s linear; 
}

/*Text Colors */
a{
  color: #393636;
}

a:hover{
  color: #E36A54;
}

.hover-italic{
}
.hover-italic:hover{
  -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
}

.hover-large:hover{
  scale: 1.1;
}

.cl-primary {
	color: #E36A54;
}

.cl-hover-primary:hover {
	color: #E36A54;
}

.cl-secondary {
	color: #68E5AE;
}

.cl-black-base {
	color: red;
}

.border-primary {
  border: solid 2px #E36A54!important;
}

.bg-primary {
  background-color: #E36A54!important;
}

.coinouter {
  width: 30px;
  height: 30px;
  border: 2px solid #e5a930;
  border-radius: 50%;
  color: #e5a930;
  box-shadow: 0 0 0.625em #e5a930, 0 0 0.5em #e5a930, 0 0 0.75em #e5a930;
}

@keyframes flip {
    0% {
        transform: rotateY(0);
    }

    100% {
        transform: rotateY(-180deg);
    }
}

.f-jp{
  font-family: source-han-sans-japanese, sans-serif;
  word-break: break-word;
}

.f-en{
  
}
@media (max-width: 575px) {
  .vh100-phone{
    height: 100vh;
  }
}

#session1{
  background: url('images/mv-bg2.png');  
  background-repeat: no-repeat; 
  background-position: center;
}

@media (max-width: 576px) {
  #session1{
    background-position: left;
  }
}

#blackscreen{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; 
  height: 100vh; 
  background-color: rgba(112, 112, 112, 0.8);
  z-index: 2;
}

#loading-screen{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; 
  height: 100vh; 
  background-color: #F9F9F9;
  opacity: 1;
  visibility: visible;
  -webkit-animation: cssAnimation 6s forwards; 
  animation: cssAnimation 6s forwards;
}

.loading-typing{
  opacity: 1;
  -webkit-animation: cssAnimation 6s forwards; 
  animation: cssAnimation 6s forwards;
}


@keyframes cssAnimation {
  0%   {opacity: 1; visibility: visible;}
  90%  {opacity: 1; visibility: visible;}
  100% {opacity: 0; visibility: hidden;}
}
@-webkit-keyframes cssAnimation {
  0%   {opacity: 1; visibility: visible; }
  90%  {opacity: 1; visibility: visible;}
  100% {opacity: 0; visibility: hidden;}
}

.menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  cursor: pointer;
  width: 81px;
  height: 66px;
}

.line {
  width: 100%;
  height: 2px;
  background-color: #707070;
  margin: 10px 0;
  transition: all 0.2s ease-in-out;
}

.line1 {
  transform-origin: bottom right; /* changed from top right */
  width: 80px; /* changed from 20px */
}

.line2 {
  transform-origin: center right;
  width: 60px;
}

.line3 {
  transform-origin: top right; /* changed from bottom right */
  width: 40px; /* changed from 40px */
}

.change .line1 {
  transform: rotate(45deg) translate(12px, 43px); /* changed from rotate(-45deg) translate(-3px, -4px) */
  width: 50px; /* changed from 30px */
}

.change .line2 {
  width: 30px;
  opacity: 0;
}

.change .line3 {
  transform: rotate(-45deg) translate(12px, -43px); /* changed from opacity: 0 */
  width: 50px;
}

.default-button {
  position: relative;
  background: #E36A54;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  width: 240px;
  height: 48px;
  transition: 0.3s;
  letter-spacing: 1.6px;
}

.default-button::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50px;
  border: #E36A54 4px solid;
  transition: 0.3s;
}

.default-button:hover{
  width: 241px;
  height: 49px;
  font-size: 18px;
  letter-spacing: 1.8px;
  transition: 0.3s;
}

.default-button:hover:after{
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: #E36A54 3px solid;
  transition: 0.3s;
}

.secondary-button {
  position: relative;
  background: white;
  border-radius: 50px;
  border: #E36A54 2px solid;
  color: #E36A54;
  font-size: 16px;
  letter-spacing: 1.6px;
  width: 240px;
  height: 48px;
  transition: 0.3s;
}

.secondary-button::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50px;
  border: #E36A54 1px solid;
  transition: 0.3s;
}

.secondary-button:hover{
  width: 241px;
  height: 49px;
  font-size: 18px;
  letter-spacing: 1.8px;
  transition: 0.3s;
}

.secondary-button:hover:after{
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: #E36A54 1px solid;
  transition: 0.3s;
}

.tertiary-button {
  position: relative;
  background: #68E5AE;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  letter-spacing: 1.6px;
  width: 103px;
  height: 32px;
  transition: 0.3s;
}

/* .default-button:hover:after {
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 25px;
  border: #E36A54 2px solid;
  transition: 0.3s;
}
*/

.text-over-image{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.img-layer-border-1-parent, 
.img-layer-border-2-parent, 
.img-layer-border-3-parent{
  position: relative;
  display: inline-flex;
}

.img-layer-border-1-parent::after {
  content: '';
  position: absolute;
  top: 40px;
  left: -40px;
  right: 40px;
  bottom: -40px;
  border: #68E5AE 2px solid;
  transition: 0.3s;
  z-index: -1;
}

.img-layer-border-1 {
  display: inline-table;
  box-shadow: -20px 20px #68E5AE;
}

.img-layer-border-2-parent::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 40px;
  right: -40px;
  bottom: 40px;
  border: #68E5AE 2px solid;
  transition: 0.3s;
  z-index: -1;
}

.img-layer-border-2 {
  display: inline-table;
  box-shadow: 20px -20px #68E5AE;
}

.img-layer-border-3-parent::after {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  right: 40px;
  bottom: 40px;
  border: #68E5AE 2px solid;
  transition: 0.3s;
  z-index: -1;
}

.img-layer-border-3 {
  display: inline-table;
  box-shadow: -20px -20px #68E5AE;
}

@media (max-width: 991px) {
  .img-layer-border-1-parent::after,
  .img-layer-border-2-parent::after,
  .img-layer-border-3-parent::after{
    display: none!important;
  }
  .img-layer-border-1,
  .img-layer-border-2,
  .img-layer-border-3{
    box-shadow: none!important;
  }
}

@media (max-width: 575px) {
  .img-layer-border-1-parent, 
  .img-layer-border-2-parent, 
  .img-layer-border-3-parent{
    display: block;
  }
}

.card-1{
  /* margin-right: -100px;  */
  margin-bottom: -90px;
}

.card-2{
  /* margin-left: -50px;  */
  margin-bottom: 210px;
}

.card-3{
  /* margin-right: -100px;  */
  margin-bottom: 190px;
}
@media (max-width: 991px) {
  .card-1{
    margin-right: 0px; 
    margin-bottom: 0px;
  }
  .card-2{
    margin-left: 0px; 
    margin-bottom: 0px;
  }
  .card-3{
    margin-right: 0px; 
    margin-bottom: 0px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .card-1{
    margin-right: -10px; 
  }
  .card-3{
    margin-right: 0px; 
    margin-bottom: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1350px) {
  .card-2{
    margin-left: -30px; 
    margin-bottom: 110px;
  }
}


/* float button */
.floating {
  background-color: white;
  border-radius: 50%;
  padding-left: 15px;
  padding-top: 12px;
  padding-right: 15px;
  padding-bottom: 18px;
  box-shadow: 0px 0px 20px -8px #393636;
}

@media screen and (min-width: 768px) {
  .floating {
    padding-left: 15px;
    padding-top: 12px;
    padding-right: 15px;
    padding-bottom: 18px;
  }
}

#float-menu{
  bottom: 55%; 
  right: 2%;
}

.floating img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  max-width: 60px;
    max-height: 60px;
}

@media screen and (min-width: 576px) and (max-width: 991px) {
  .floating img {
    max-width: 60px;
    max-height: 60px;
  }
}

@media screen and (min-width: 0px) and (max-width: 575px){
  #float-menu{
    bottom: 97%; 
    right: 2%;
  }
}

/* draft */
@media (min-width: 992px) {
  .p-l-lg-90{
    padding-left: 90px;
  }
  .m-t-lg-175{
    margin-top: 175px;
  }
  .m-t-lg-0{
    margin-top: 0px;
  }
  .m-t-lg-150{
    margin-top: 150px;
  }
  .p-r-lg-70{
    padding-right: 70px;
  }
  .p-b-lg-60{
    padding-bottom: 60px;
  }
}

.app-icons {
  display: flex;
  align-items: center;
}

.android {
  max-width: 200px;
  padding-left: 0;
  padding-right: 0;
  width: 106%;
  height: 106%;
  object-fit: cover;
}

.apple {
  /* max-width: 173px; */

  /* original */
  max-width: 164px;

  padding-left: 0;
  padding-right: 0;
  width: 85%;
  height: 85%;
  object-fit: cover;
}

.web {
  max-width: 400px;
  padding-left: 0;
  padding-right: 0;
  width: 106%;
  height: 106%;
  object-fit: cover;
}


.ti-cursor{
  font-size: 72px;
  color: #E36A54!important;
}

@media (max-width: 576px) {
  .ti-cursor{
    font-size: 32px!important;
    line-height: 1.5!important;
  }
}

#youtube-video{
  /* width: 100%;
  height: 100vh;
  min-height: 100%;
  max-height: 100%; */
  position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}
/* Contact form — post-send UX */
.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.contact-status {
  margin: 0 0 20px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 8px;
  text-align: left;
}

.contact-status--error {
  color: #7a1c1c;
  background: #fdecec;
  border: 1px solid #f0b4b4;
}

.contact-status--info {
  color: #1a3a5c;
  background: #eef5fc;
  border: 1px solid #b7d0ea;
}

#contact-form-panel .form-control.is-invalid {
  border-color: #d64545 !important;
  box-shadow: 0 0 0 0.15rem rgba(214, 69, 69, 0.15);
}

.secondary-button.is-loading {
  opacity: 0.85;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: contact-spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-success {
  text-align: center;
  padding: 36px 16px 24px;
  max-width: 480px;
  margin: 0 auto;
  outline: none;
}

.contact-success--enter {
  animation: contact-success-in 0.45s ease-out both;
}

@keyframes contact-success-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-success__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-success__ring {
  stroke: #2a9d5c;
}

.contact-success__check {
  stroke: #2a9d5c;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-success--enter .contact-success__ring {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: contact-ring 0.55s ease-out 0.05s forwards;
}

.contact-success--enter .contact-success__check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: contact-check 0.35s ease-out 0.4s forwards;
}

@keyframes contact-ring {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes contact-check {
  to {
    stroke-dashoffset: 0;
  }
}

.contact-success__title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.06em;
}

.contact-success__lead {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.contact-success__note {
  margin: 0 0 28px;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
}

.contact-success__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-success__btn {
  margin: 0 auto;
}

.contact-success__link {
  appearance: none;
  border: 0;
  background: none;
  padding: 8px 4px;
  font-size: 13px;
  color: #444;
  text-decoration: underline;
  cursor: pointer;
}

.contact-success__link:hover {
  color: #111;
}

#session4 {
  color: #111;
  background: #fff !important;
}

#session4 .form-control {
  color: #111;
  background-color: #fff;
}

#session4 .col-form-label {
  color: #222;
}

/* Footer — parent company (PwR) */
.footer-company {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.footer-company:hover .footer-company__label,
.footer-company:hover .footer-company__url {
  text-decoration: underline;
}

.footer-company__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #222;
}

.footer-company__url {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.04em;
}

/* Payment methods */
.payment-methods {
  background: #f7f7f7;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 56px 0 48px;
}

.payment-methods__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.payment-methods__label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
}

.payment-methods__lead {
  margin: 0 auto 28px;
  max-width: 36em;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.payment-methods__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-methods__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 128px;
  width: calc(50% - 12px);
  max-width: 156px;
  padding: 16px 12px 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

@media (min-width: 640px) {
  .payment-methods__item {
    width: auto;
    min-width: 140px;
  }
}

.payment-methods__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.payment-methods__badge--cards {
  color: #1a1a1a;
  background: #eef2f7;
}

.payment-methods__badge--stripe {
  color: #635bff;
  background: #f0efff;
}

.payment-methods__badge--paypay {
  color: #fff;
  background: #ff0033;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
}

.payment-methods__badge--apple {
  color: #111;
  background: #ececec;
}

.payment-methods__badge--play {
  color: #34a853;
  background: #e9f7ee;
}

.payment-methods__name {
  font-size: 13px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

.payment-methods__detail {
  font-size: 11px;
  color: #777;
  line-height: 1.3;
}

.payment-methods__note {
  margin: 22px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: #777;
}

.payment-methods__note a {
  color: #333;
  text-decoration: underline;
}

/* privacypolicy terms */
.pptermLink{
  font-size: 12px;
  padding-top: 80px;
}

.pptermLink a{
  text-decoration: underline!important;
}
.ppterm {
  width: 87.5%;
  max-width: 800px;
  margin: 120px auto 200px;
}

.ppterm__item{
  margin-bottom: 40px;
}

.ppterm h2{
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 40px;
}

.ppterm h3{
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 24px;
}

.ppterm h4{
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 24px;
}

.ppterm .list{
  padding-left: 0;
}
.ppterm .list li{
  margin-bottom: 24px;
}

.ppterm .list-mid li{
  list-style-type: decimal;
  margin-bottom: 24px;
}

.ppterm .list-small{
  counter-reset: cnt;
}

.ppterm .list-small li{
  list-style-type: none;
  margin-bottom: 0;
}

.ppterm .list-small li::before {
  counter-increment: cnt;
  content: "(" counter(cnt) ")";
}

.ppterm .list-min{
  counter-reset: cnt;
}

.ppterm .list-min li{
  list-style-type: none;
  padding-left: 24px;
  margin-bottom: 0;
  position: relative;
}

.ppterm .list-min li::before {
  content: "" counter(cnt) "";
  counter-increment: cnt;
  border: 1.5px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  width: 18px;
  font-size: 85%;
  position: absolute;
  top: 0;
  left: 0;
}

.ppterm p{
  margin-bottom: 24px;
}

.ppterm__closing{
  display: flex;
  justify-content: flex-end;
}

.ppterm__closing p{
  margin-bottom: 16px;
}

/* Terms / privacy page UX */
.ppterm-page {
  background: #fafafa;
}

.ppterm-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.ppterm-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: #222;
  transition: width 0.1s linear;
}

.ppterm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.ppterm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 4%;
}

.ppterm-header__brand img {
  display: block;
  height: 28px;
  width: auto;
}

.ppterm-header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 16px;
  font-size: 12px;
}

.ppterm-header__nav a {
  color: #333;
  text-decoration: none;
}

.ppterm-header__nav a:hover {
  text-decoration: underline;
}

.ppterm-page .ppterm {
  width: min(92%, 800px);
  margin: 40px auto 120px;
  padding: 0;
}

.ppterm__intro {
  margin-bottom: 32px;
}

.ppterm__eyebrow {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #666;
  text-transform: uppercase;
}

.ppterm h1 {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.4;
}

.ppterm__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #666;
}

.ppterm__lead {
  margin-bottom: 0;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  background: #fff;
  border-left: 3px solid #222;
}

.ppterm-toc {
  margin-bottom: 40px;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.ppterm-toc__summary {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.ppterm-toc__summary::-webkit-details-marker {
  display: none;
}

.ppterm-toc__summary::after {
  content: "＋";
  float: right;
  font-weight: 400;
}

.ppterm-toc[open] .ppterm-toc__summary::after {
  content: "−";
}

.ppterm-toc__nav {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ppterm-toc__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 16px;
  margin: 12px 0 0;
  padding-left: 1.25rem;
  font-size: 13px;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .ppterm-toc__list {
    grid-template-columns: 1fr 1fr;
  }
}

.ppterm-toc__list a {
  color: #333;
  text-decoration: none;
}

.ppterm-toc__list a:hover {
  text-decoration: underline;
}

.ppterm-page .ppterm .list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ppterm-page .ppterm .list__item {
  margin-bottom: 32px;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  scroll-margin-top: 72px;
}

.ppterm-page .ppterm h2 {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.ppterm-page .ppterm .list-mid {
  padding-left: 1.25rem;
}

.ppterm-page .ppterm .list-small {
  margin-top: 12px;
  padding-left: 0;
}

.ppterm-page .ppterm .list-small > li {
  padding-left: 2em;
  text-indent: -2em;
}

.ppterm-page .ppterm .list-small > li::before {
  margin-right: 0.35em;
}

.ppterm__note {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  text-indent: 0;
}

.ppterm__dates {
  margin-top: 24px;
  text-align: right;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.ppterm__related {
  margin-top: 32px;
  font-size: 14px;
}

.ppterm__related a {
  color: #333;
  text-decoration: underline;
}

.ppterm-top {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: #fff;
  color: #222;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.ppterm-top:hover {
  background: #f5f5f5;
}

.ppterm-top[hidden] {
  display: none;
}

@media (max-width: 575px) {
  .ppterm-header__nav {
    font-size: 11px;
    gap: 8px 12px;
  }

  .ppterm-page .ppterm .list__item {
    padding: 18px 14px;
  }
}


/*-----------------------------------
  Guide Page Style
-----------------------------------*/
.guide_page main {
  background-color: #fff;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0rem 1rem 2rem 1rem;
}

/* Heading Style */
.guide_page h1 {
  font-size: 1.6rem;
  text-align: center;
  padding-top: 2rem;
}

.guide_page h2 {
  font-size: 1.4rem;
  padding: 0.8rem 1rem 0.6rem 3rem;
  margin-top: 2rem;
  background-color: #E36A54;
  text-indent: -1.5rem;
}

.guide_page #index h2 {
  font-size: 1.2rem;
  padding: 0.1rem 0rem 0rem 1rem;
  background-color: transparent;
  border-left: 6px solid #E36A54;
  text-indent: 0;
  line-height: 1.2;
}

/* List Style */
.guide_page ul {
  padding-left: 1.2rem;
}

.guide_page ul > li {
  list-style: disc;
}

.guide_page ul.level-1 > li {
  list-style: decimal;
  padding: 0.8rem 0;
}

.guide_page ul.level-2 > li {
  padding: 0.4rem 0;
}

.guide_page #index ul.level-1 {
  padding-top: 0.8rem;
}

.guide_page #index ul.level-1 > li {
  padding: 0.2rem 0;
}

.guide_page #qa .qa {
  padding: 0.8rem 0;
}

.guide_page #qa .qa .question,
.guide_page #qa .qa .answer {
  text-indent: -1.8rem;
  padding-left: 1.8rem;
}

.guide_page #qa .qa .question .icon {
  color: #E36A54;
}

.guide_page #qa .qa .answer .icon {
  color: #68E5AE;
}

.guide_page #qa .qa .answer-contents {
  padding-left: 1.8rem;
}

.guide_page #usage ul.level-1 > li {
  list-style: disc;
}

.guide_page #usage ul.check-icon > li {
  list-style: none;
  position: relative;
  padding: 0.4rem 0;
}

.guide_page #usage ul.check-icon > li::before {
  content: '';
  display: block;
  width: 14px;
  height: 8px;
  border-left: 3px solid #E36A54;
  border-bottom: 3px solid #E36A54;
  transform: rotate(-45deg);
  position: absolute;
  top: 15px;
  left: -22px;
}

/* Image Style */
.guide_page img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  padding: 0.6rem 0;
  display: block;
}

/* Indent */
.guide_page .annotation {
  text-indent: -1rem;
  padding-left: 1rem;
  font-size: 0.8rem;
}

/* Text Color */
.guide_page .theme-color {
  color: #E36A54;
}