@charset "utf-8";

/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

.vk-mobile-nav-menu-btn {
	display: none;
}

/*---------- reset ----------*/
input, textarea, select {
	font-size: 16px !important;
}

/*---------- body ----------*/
body, html {
	background: transparent !important;
	font-size: 16px;
}

body::after {
	content: "";
	display: block;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(to bottom right, #32CCBC, #90F7EC);
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: -1;
}


/*---------- header ----------*/
.page-header {
    display: none;
}

.site-header {
	color: #fff !important;
	background: linear-gradient(to bottom right, #26998E, #26998E);
}

.site-header a {
	color: #fff;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.05em;
}

/* breadcrumb */
.breadcrumb {
	display: none;
}
/*---------- contents ----------*/
.contents-ttl {
	margin-bottom: 0;
}

.contents-ttl h2 {
	font-size: 17px;
	text-align: center;
	border: none;
	color: #fff;
	background: linear-gradient(to bottom right, #26998E, #32CCBC);
	margin-bottom: 0;
	padding: 20px;
	letter-spacing: .05em;
}

.contents-wrap {
	background: #fff;
	padding: 25px;
}

/* section */
.section {
	margin-bottom: 10px;
}

/* text */
h4 {
	font-size: 1rem;
	padding: 0.5em 0.8em;
	line-height: 1.8;
}

p {
	line-height: 1.8;
}

/* 設問 */
.required {
	position: relative;
}

.required h4 {
	padding-right: 50px;
}

.required p {
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
	margin: 0 0 0 10px;
	padding: 3px 6px 4px;
	border-radius: 4px;
	background: #F03547;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
}

/* ラジオボタン・チェックボックス */
.wpcf7-list-item {
	display: block;
	margin-bottom: 1.2em;
}

.wpcf7-list-item span {
	display: block;
	line-height: 1.44em;
}

/* チェックボックス */
.wpcf7 .template01 .wpcf7-checkbox:not(.wpcf7-exclusive-checkbox) input[type=checkbox] {
  display: none;
}
.wpcf7 .template01 .wpcf7-checkbox:not(.wpcf7-exclusive-checkbox) input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 2em;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
.wpcf7 .template01 .wpcf7-checkbox:not(.wpcf7-exclusive-checkbox) input[type=checkbox] + span::before {
  content: "";
  opacity: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.44em;
  height: 1.44em;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  box-sizing: border-box;
  transition: opacity .25s ease;
  z-index: 1;
}
.wpcf7 .template01 .wpcf7-checkbox:not(.wpcf7-exclusive-checkbox) input[type=checkbox] + span::after {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 0.19em;
  left: 0.5em;
  width: 0.45em;
  height: .9em;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  box-sizing: border-box;
  transform: rotate(40deg);
  transition: opacity .25s ease;
  z-index: 10;
}
.wpcf7 .template01 .wpcf7-checkbox:not(.wpcf7-exclusive-checkbox) input[type=checkbox]:checked + span {
  color: #26998E;
  transition: all .25s ease;
}
.wpcf7 .template01 .wpcf7-checkbox:not(.wpcf7-exclusive-checkbox) input[type=checkbox]:checked + span::before {
  opacity: 1;
  transition: opacity .25s ease;
}
.wpcf7 .template01 .wpcf7-checkbox:not(.wpcf7-exclusive-checkbox) input[type=checkbox]:checked + span::after {
	opacity: 1;
	border-bottom: 3px solid #26998E;
	border-right: 3px solid #26998E;
	transition: opacity .25s ease;
}

/* チェックボックス（排他化：ラジオボタン風） */

.wpcf7 .template01 .wpcf7-exclusive-checkbox input[type=checkbox] {
  display: none;
}
.wpcf7 .template01 .wpcf7-exclusive-checkbox input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  margin: 0; 
  padding: 0 1em 0 2em;
  font-size: inherit;
  transition: opacity .25s ease;
}
.wpcf7 .template01 .wpcf7-exclusive-checkbox input[type=checkbox] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.44em;
  height: 1.44em;
  border: 1px solid #ccc;
  border-radius: 50% !important;
  background-color: #fff;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
.wpcf7 .template01 .wpcf7-exclusive-checkbox input[type=checkbox] + span::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
.wpcf7 .template01 .wpcf7-exclusive-checkbox input[type=checkbox]:checked + span {
  color: #26998E;
  transition: opacity .25s ease;
}
.wpcf7 .template01 .wpcf7-exclusive-checkbox input[type=checkbox]:checked + span::after {
  opacity: 1;
  top: .2em;
  left: .2em;
  width: 1.04em;
  height: 1.04em;
  background-color: #26998E;
  border-radius: 50%;
  box-sizing: border-box;
  transition: opacity .25s ease;
}

/* ラジオボタン */
.wpcf7 .template01 input[type=radio] {
  display: none;
}
.wpcf7 .template01 input[type=radio] + span {
  cursor: pointer;
  position: relative;
  margin: 0; 
  padding: 0 1em 0 2em;
  font-size: inherit;
  transition: opacity .25s ease;
}
.wpcf7 .template01 input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.44em;
  height: 1.44em;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
.wpcf7 .template01 input[type=radio] + span::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
.wpcf7 .template01 input[type=radio]:checked + span {
  color: #26998E;
  transition: opacity .25s ease;
}
.wpcf7 .template01 input[type=radio]:checked + span::after {
  opacity: 1;
  top: .2em;
  left: .2em;
  width: 1.04em;
  height: 1.04em;
  background-color: #26998E;
  border-radius: 50%;
  box-sizing: border-box;
  transition: opacity .25s ease;
}
/* 送信ボタン */
.group-ptn1,
.group-ptn2 {
	
}

.btn1,
.btn2 {
	background: linear-gradient(to bottom right, #26998E, #32CCBC);
	border: none !important;
	padding: 1em 3em !important;
	display: block;
	margin: auto;
}

/*---------- footer ----------*/
.site-footer {
	border: none;
	background: #26998E;
}

.site-footer-copyright p:nth-child(1) {
    color: #fff;
}

.site-footer-copyright p:nth-child(2) {
    display:none;
}

/*---------- demo ----------*/

.demo1 {
	background: #F0EB4B;
	padding: 25px;
	font-size: 14px;
	font-weight: 500 !important;
	color: #000;
}

.demo2 {
	text-align: center;
}

.demo2 img {
	max-width: 424px;
	width: 100%;
}