@charset 'UTF-8';

/**
 * Project Settings
 * ================================================================================
 * Table of Contents:
 *
 * Accordion
 * Floating Button / Banner
 * Shop
 * Post Meta
 * Trial
 * Card
 * ================================================================================
 */



/**
 * Accordion
 * -------------------------------
 */

.p-accordion__panel {
  display: none;
}


/**
 * Floating Button / Banner
 * -------------------------------
 */

.p-flo {
  position: fixed;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width-container);
  box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.25);
}

/* -- CTA Button -- */
.p-flo-ctabtn {
  bottom: -110px;
  padding: 1.5rem 1.2rem 2.1rem 1.2rem;
  border-top-left-radius: 1.0rem;
  border-top-right-radius: 1.0rem;
  background-color: var(--color-white);
  transition: bottom 0.2s ease-out;
}

.p-flo-ctabtn.is-active {
  bottom: 0;
}

.p-flo-ctabtn__list {
  display: flex;
  margin-top: -1.0rem;
  margin-left: -1.0rem;
}

.p-flo-ctabtn__list-item {
  padding-top: 1.0rem;
  padding-left: 1.0rem;
}


/**
 * Shop
 * -------------------------------
 */

.p-shop {
  text-align: center;
}

.p-shop__ttl {
  margin-bottom: 2.5rem;
  color: var(--color-idbrown);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.2;
}

.p-shop__img {
  position: relative;
  z-index: 1;
}

.p-shop__img::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url('/csguide/assets/common/img/shop_img_bg.svg');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  content: '';
}

.p-shop__btn {
  margin-top: 0.5rem;
}


/**
 * Post Meta
 * -------------------------------
 */

.p-post-meta,
.p-post-meta__inner {
  display: flex;
  flex-wrap: wrap;
}

.p-post-meta__item,
.p-post-meta__head,
.p-post-meta__body {
  flex: 0 0 auto;
  width: auto;
  color: #969696;
  font-weight: 400;
  line-height: 1.4;
}

.p-post-meta__item {
  position: relative;
  padding-left: 0.8rem;
  margin-left: 0.8rem;
}

.p-post-meta__item:nth-of-type(1) {
  padding-left: 0;
  margin-left: 0;
}

.p-post-meta__item::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 80%;
  background-color: #969696;
  content: '';
}

.p-post-meta__item:nth-of-type(1)::before {
  display: none;
}

.p-post-meta__item a {
  color: #00744e;
}


/**
 * Trial
 * -------------------------------
 */

.p-trial {
  position: relative;
  padding-top: 11.7rem;
  padding-bottom: 5.0rem;
  background-color: #fff;
}

.p-trial__ttl {
  position: absolute;
  top: 4.5rem;
  left: 4.0rem;
  z-index: 2;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.95;
}

.p-trial__img {
  position: relative;
  z-index: 1;
}

.p-trial__btn {
  margin-top: 2.6rem;
  text-align: center;
}


/**
 * Card
 * -------------------------------
 */

/* -- Type -- */
.p-card-type1__img {
  display: block;
  position: relative;
}

.p-card-type1__label {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.4rem 1.2rem;
  background-color: #c30d24;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-card-type1__label::after {
  position: absolute;
  top: 0;
  right: -0.95rem;
  width: 1.0rem;
	height: 100%;
	background-color: #c30d24;
	clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  content: '';
}

.p-card-type1__body {
  margin-top: 0.6rem;
}

.p-card-type1__ttl {
  font-size: 1.4rem;
  font-weight: 400;
}

.p-card-type1__meta {
  margin-top: 0.4rem;
  font-size: 1.0rem;
}