﻿/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #fff;
	background:#1F469D;
    border-bottom: 1px solid #ffffff;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #FFEF00;
	border-right: 2px solid #FFEF00;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
	font-size: 1.5rem;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

.box30 {
    margin: 2em 0;
    background: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.box30 .box-title {
    font-size: 1.6em;
    background: #5fc2f5;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box30 p {
    font-size: 1.4em;
    padding: 15px 20px;
    margin: 0;
}

.box30-price {
    font-size: 5em;
    padding: 15px 20px;
    font-weight: bold;
    color: #1F469D;
    margin: 0;
}

.box30-price2 {
    font-size: 2.5em;
    padding: 15px 20px;
    font-weight: bold;
    color: #1F469D;
    margin: 0;
}


/* ボタン */

.cv-btn-wrap * {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

.cv-btn-wrap {
  padding: 0.5em !important;
  margin: 0 0 2em !important;
  font-size: 16px;
  line-height: 1.8;
}

.cv-copy,
.cv-btn-wrap a,
.cv-note {
  max-width: 350px;
  margin: auto !important;
  border: none;
}

.cv-copy {
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9em;
  text-align: center;
}

.cv-btn {
  max-width: 350px;
  position: relative;
  color: #fff;
  text-decoration: none !important;
  background: #FFEF00;
  border-bottom: solid 4px #DACA00;
  padding: 0.5em 1em !important;
  border-radius: 7px;
  margin: 0.3em auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.cv-btn:hover {
  opacity: 0.9;
}

.cv-btn:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  border-bottom: none;
}

.cv-btn:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 100) 81%, rgba(255, 255, 255, 0) 100%);
/*  animation: shine 3s infinite; */
}

@keyframes shine {
  33% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.cv-btn:after {
  content: '≫';
  display: block;
  position: absolute;
  right: 1em;
  color: #000000;
}

.cv-btn a {
  color: #000000 !important;
  text-decoration: none !important;
}

.cv-btn .cv-em {
  font-size: 0.9em;
  line-height: 1.3;
  text-align: center;
  font-weight: 600;
  display: block;
  color: #ef5350;
/*  background: #fff;    */
  padding: 5px 10px !important;
  margin: 2px 10px 0px 0 !important;
  border-radius: 30px;
  min-width: 55px;
  max-width: 80px;
}

.cv-btn .cv-text {
  font-size: 0.9em;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  border-left: 1px solid #000000;
  line-height: 25px;
  margin: 0.6em auto 0.6em 0 !important;
  padding: 0 0.6em 0 1em !important;
}

.cv-btn svg {
  color: #fff;
  min-width: 22px;
}

.cv-url-wrap span {
  color: #1a0dab !important;
  text-decoration: none !important;
}

.cv-btn-wrap .cv-note {
  font-size: 0.9em;
  font-weight: bold;
  color: #fff;
/*  border: 1px solid #ef5350;   */
  margin-top: 0.5em !important;
  padding: 0.5em 1em !important;
}

/*320px以下*/
@media screen and (max-width: 320px) {
  .cv-btn-wrap {
    padding: 1em !important;
  }
}


/* 黄色のアンダーライン */

.under_y {
    background:linear-gradient(transparent 60%, #ff6 60%);
}