/*
Theme Name: [2026-] Office Webminare
*/

.grecaptcha-badge { visibility: hidden; }

.hidden-fields-container,
.wpcf7-response-output,
.screen-reader-response {
	display: none;
}

.wpcf7-not-valid-tip {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.3;
	color: #ec0000;
	margin: 10px 0 0;
	display: block;
	text-align: left;
}

.frmSndBtn input:disabled {
	background-color: #666!important;
	cursor: default;
}

.rslLstImg {
	background: #fff;
}

.cctCapTxt {
	margin: 0 0 45px;
}

.cctTpyTxt {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	margin: 20px 0 10px;
	text-align: left;
}

.cctTpyChk {
	font-size: 16px;	
	margin: 0 0 30px;
	overflow: hidden;
}

.cctTpyChk label {
	
	margin: 0 20px 5px 0;
}

.cctTpyChk label {
	display: flex;
	align-items: center;
}

.cctTpyChk label input {
	margin: 1px 5px 0 0
}
.contactBtn a:visited,
.contactBtn a {
	position: fixed;
	width: 120px;
	height: 120px;
	top: 0;
	right:0;
	display: flex;
	align-items: center;
	color: #fff!important;
	background: #970c10;
	text-align: center;
	justify-content: center;
	z-index: 2000;
	cursor: pointer;
}

.contactBtn a strong {
	text-align: center;
	position: absolute;
	bottom: 25px;
	left: 0;
	width: 100%;
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	color: #fff;
	letter-spacing: 0.1em;
	transition: all 0.3s ease;
}

.contactBtn a:before {
	content: "";
	display: block;
	width: 28px;
	height: 21px;
	background-size: 100% auto;
	background-image: url(/wp-content/themes/original-template/files/images/icn_mail.png);
	position: absolute;
	top: 45px;
	left: 50%;
	margin-left: -14px;
	z-index: 2001
}

.contactBtn a:hover {
	background: #aa383b;
	transition: all 0.3s ease;
}
/*
.menu {
	right: 120px;
}
*/

.menu:hover {
  background: #333;
  transition: all 0.3s ease;
}

.frmSndBtn {
	max-width: 370px;
}

.center {
	text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1040px) {
	.contactBtn a {
		width: 100px;
		height: 100px;
	}
	
	.contactBtn a strong {
		bottom: 17px;
		letter-spacing: -0.01rem;
	}
	
	.contactBtn a:before {
		top: 34px;
	}
	/*
	.menu {
		width: 100px;
		height: 100px;
		right: 100px;
	}
	*/

	.frmSndBtn {
		max-width: 300px;
	}
}

@media screen and (max-width:767px) {
	.cctCapTxt {
		margin: 0 0 30px;
	}	
	
	.contactBtn a {
		width: 60px;
		height: 60px;
	}
	
	.contactBtn a strong {
		bottom: 8px;
		font-size: 1rem;
		white-space: nowrap;
	}
	
	.contactBtn a:before {
		top: 14px;
		width: 22px;
		height: 16px;
		margin-left: -11px;
	}
	
	.contactBtn span {
		display: none;
	}

	.menu {
		/*
		width: 60px;
		height: 60px;
		right: 60px;
		*/
	}
	
	.frmSndBtn {
		max-width: 280px;
	}
	
}

.fadTp {
    opacity: 0;
    transform: translateY(-50px);
}

.fadBt {
    opacity: 0;
    transform: translateY(50px);
}

.fadLt {
    opacity: 0;
    transform:  translate(-50px, 0);
}

.fadRt {
    opacity: 0;
    transform: translateX(50px);
}

@keyframes fadeIn {
    0% {
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}

.fad {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

/* ローディングを重ねるための親要素の準備 */
.resultsSwiper {
    position: relative;
}

/* ローディングの膜（オーバーレイ） */
.swiper-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* うっすら白くする */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease; /* ふわっと出す */
}

/* 膜が表示された時 */
.swiper-loading-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* グルグル回るアニメーションアイコン */
.swiper-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #333; /* アイコンの色（お好みで変えてください） */
    border-radius: 50%;
    animation: swiper-spin 0.8s linear infinite;
}

@keyframes swiper-spin {
    to { transform: rotate(360deg); }
}

.resultsSwiper .swiper-button-disabled {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.slider-global-overlay {
	position: absolute !important;
	top: 80px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: 100vw !important;
	height: calc(100% - 80px) !important;
	background: #fbfbfb !important;
	z-index: 9999 !important;

	display: flex !important;
	justify-content: center !important;
	align-items: flex-start !important;
	padding-top: 40px !important;
	box-sizing: border-box !important;

	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease !important;
}

.resultsSwiper.is-static .swiper-wrapper {
	transform: translate3d(0, 0, 0) !important;
}

.resultsSwiper .is-empty-slide {
	width: 100% !important;
	height: auto !important;
	box-sizing: border-box !important;
}

.resultsSwiper .is-empty-slide p {
	padding: 60px 20px;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}

@media (max-width:1024px){

	.resultsSwiper{
		padding:0 16px;
		box-sizing:border-box;
	}

	.resultsSwiper .swiper-button-prev{
		left:0px;
	}

	.resultsSwiper .swiper-button-next{
		right:0px;
	}

}

@media screen and (max-width: 1024px) {

	.results__slider nav {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.results__slider nav::-webkit-scrollbar {
		display: none;
	}

	.results__slider nav ul {
		display: flex;
		flex-wrap: nowrap;
		width: max-content;
		min-width: 100%;
		margin-bottom: 0;
	}

	.results__slider nav ul li {
		flex: 0 0 auto;
		white-space: nowrap;
	}

}

.formInner {
max-width: 1000px;
margin: 0 auto;
padding: 0 30px;
}

.cctLst li {
	display: flex;
}

.cctLst li:not(:last-child) {
	margin: 0 0 40px;
	padding: 0 0 40px;
	border-bottom: solid  1px #e1e2e2;
}

.cctLst li:nth-last-child(2) {
	margin: 0 0 60px;
	padding: 0;
	border-bottom: none;
}

.cctLstTtl {
	width: 280px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4;
	margin: 25px 20px 0 0;
	text-align: left;
}

.eslIcn {
font-weight: normal;
color: #c00;
}

.cctLstCntBox {	
	width: calc(100% - 300px);
}

.frmBox01 {
	width: 100%;
	height: 70px;	
	border-radius: 5px;
	border: 1px solid #e1e2e2;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	color: #000;
	padding: 15px;
	box-sizing: border-box;
	background: #fff;
}

.frmBox02 {
	width: 100%;
	height: 250px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	color: #000;
	padding: 15px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 5px;
	border: 1px solid #e1e2e2;
}

input::placeholder,
textarea::placeholder {
	color: #c8c8c8;
}

.frmSndBtn {
	text-align: center;
	position: relative;
	max-width: 320px;
	z-index: 1;
	font-size: 18px;
}

.frmSndBtn input {
	width: 100%;
	display: block;
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	color: #fff;
	padding: 25px;
	background: #000;
	background-size: 15px auto;
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.frmSndBtn input:hover {
	background: #970c10;
	background-size: 15px auto;
}

@media screen and (min-width:768px) and (max-width:1040px) {
	.cctCapTxt {
		font-size: 1.5rem;
	}

	.cctLst li:not(:last-child) {
		margin: 0 0 30px;
		padding: 0 0 30px;
	}

	.cctLst li:nth-last-child(2) {
		margin: 0 0 40px;
		padding: 0;
	}

	.cctLstTtl {
		width: 180px;
		margin: 20px 20px 0 0;
	}

	.cctLstCntBox {	
		width: calc(100% - 200px);
	}

	.frmBox01 {
		height: 60px;
	}

	.frmBox02 {
		height: 200px;
	}

	.frmSndBtn {
	}

	.frmSndBtn:before {
		right: 55px;
	}

	/*
	.frmSndBtn input {
		padding: 20px 70px 20px 20px;
		background: url(../images/arw_rt_wt.png) right 20px center no-repeat #000;
		background-size: 15px auto;
	}

	.frmSndBtn input:hover {
		background: url(../images/arw_rt_wt.png) right 20px center no-repeat #970c10;
		background-size: 15px auto;
	}
	*/
}

@media screen and (max-width:767px) {
	.cctCapTxt {
		font-size: 14px;
	}
	
	.cctLst li {
		display: block;
	}

	.cctLst li:not(:last-child) {
		margin: 0 0 20px;
		padding: 0 0 20px;
	}

	.cctLst li:nth-last-child(2) {
		margin: 0 0 20px;
		padding: 0;
	}

	.cctLstTtl {
		width: 100%;
		font-size: 18px;
		margin: 0 0 10px;
	}

	.cctLstCntBox {	
		width: 100%;
	}

	.frmBox01 {
		height: 50px;
		padding: 15px 10px;
	}

	.frmBox02 {
		height: 160px;
		padding: 15px 10px;
	}

	.frmSndBtn {
		max-width: 100%;
	}

	.frmSndBtn:before {
		right: 55px;
	}

	.frmSndBtn input {
		text-align: center;
		font-size: 16px;
		padding: 17px;
		background: #000;
		background-size: 15px auto;
		border-radius: 4px!important;
	}

	.frmSndBtn input:hover {
		background: #970c10;
		background-size: 15px auto;
	}
	.formInner {
		padding: 0;
	}
}

.cctTnkBox {
	border: 1px solid #ccc;
	background: #fff;
	padding: 30px;
	border-radius: 5px;
}

.cctTnkTtl {
	font-weight: bold;
	font-size: 30px;
	margin: 0 0 30px;
}

.cctTnkTxt {
	margin: 0 0 30px;
}

@media screen and (max-width:767px) {
	.cctTnkBox {
		padding: 20px 0 0;
	}

	.cctTnkTtl {
		font-size: 24px;
		margin: 0 0 20px;
	}

	.cctTnkTxt {
		font-size: 16px;
		margin: 0 0 20px;
	}	
}
/*
.works__image {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  display: block !important;
}
*/

.works__image .wgLineup,
.works__image .wgLineup * {
  box-sizing: border-box;
}

.works__image .wgLineup {
  position: relative !important;
  display: block !important;
  width: 600px !important;
  max-width: 100% !important;
  height: 600px !important;
  margin: 0 auto !important;
  background: transparent !important;
  font-family: "Helvetica Neue", Arial, sans-serif !important;
  isolation: isolate;
  transform: none !important;
}

.works__image .wgLineupSvg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
  pointer-events: none;
}

.works__image .wgSpoke {
  stroke: #222;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  animation: wgDraw .7s ease forwards;
}

.works__image .wgOrbitBase {
  fill: none;
  stroke: #222;
  stroke-width: 1.1;
  opacity: 0;
  animation: wgShow .4s ease forwards;
  animation-delay: 1.7s;
}

.works__image .wgOrbitRed {
  fill: none;
  stroke: #b40000;
  stroke-width: 1.7;
  stroke-dasharray: 115 650;
  stroke-dashoffset: 0;
  opacity: 0;
  animation: wgOrbit 4.5s linear infinite;
  animation-delay: 2.1s;
}

.works__image .wgCircle {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  border: none !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.09) !important;
  z-index: 3;
  opacity: 0;
  transform: scale(.35);
  animation: wgPop .45s cubic-bezier(.2,1.45,.35,1) forwards;
}

.works__image .wgInner {
  position: absolute;
  inset: 13%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  color: #222;
  line-height: 1.4;
}

.works__image .wgCenter {
  width: 42%;
  height: 42%;
  left: 29%;
  top: 29%;
  z-index: 4;
  animation-delay: 0s;
}

.wgCenter .wgInner {
	top: 15px;
}

.works__image .wgItem {
  width: 23%;
  height: 23%;
}

.works__image .wgTower {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 7px;
}
	
.works__image .wgTower img {
	width: 24px;
	height: auto;
}

.works__image .wgMainTitle {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.works__image .wgMainTitle:after {
	content: "";
	display: block;
	width: 76px;
	height: 4px;
	background: #b40000;
	margin: 8px auto 8px;
}

.works__image .wgMainText {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
	white-space: nowrap;
}

.works__image .wgIcon {
  color: #b40000;
  font-size: 23px;
  line-height: 1;
  margin-bottom: 5px;
}
	
.wgIcon img {
	width: 30px;		
	margin-top: 10px;
	margin-bottom: 5px;
}

.works__image .wgTitle {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 7px;
	white-space: nowrap;
}

.works__image .wgText {
  font-size: 12px;
  line-height: 1.45;
	white-space: nowrap;
}

.works__image .wgArrow {
	color: #b40000;
	font-size: 32px;
	line-height: 1;
	margin-top: 9px;
	font-weight: 100;
	text-indent: -9999px;
	position: absolute;
	bottom: -7px;
	width: 14px;
	left: calc(50% - 7px);
}
	
.works__image .wgArrow {
	width: 10px;
	height: 10px;
	border-top: 2px solid #b40000;
	border-right: 2px solid #b40000;
	transform: rotate(45deg);
	display: none!important;
}
	
.wgCircle .wgIcon img {
	margin-top: 0;
}
	
.wgItem07 .wgText,
.wgItem07 .wgTitle {
	width: 120%;
	margin-left: -10px;
}
	
	
	
.works__image .wgItem01 { left: 38.5%; top: 1.5%; animation-delay: .55s; }
.works__image .wgItem02 { left: 70%; top: 14%; animation-delay: .7s; }
.works__image .wgItem03 { left: 77%; top: 46%; animation-delay: .85s; }
.works__image .wgItem04 { left: 56%; top: 74%; animation-delay: 1s; }
.works__image .wgItem05 { left: 21%; top: 74%; animation-delay: 1.15s; }
.works__image .wgItem06 { left: 0%; top: 46%; animation-delay: 1.3s; }
.works__image .wgItem07 { left: 6.5%; top: 14%; animation-delay: 1.45s; }

@keyframes wgDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes wgShow {
  to { opacity: 1; }
}

@keyframes wgPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wgOrbit {
  0% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 1;
    stroke-dashoffset: -770;
  }
}

.works__image .wgCircle,
.works__image .wgOrbitBase,
.works__image .wgOrbitRed {
  animation-play-state: paused;
}

.works__image .wgLineup.is-start .wgCircle,
.works__image .wgLineup.is-start .wgOrbitBase,
.works__image .wgLineup.is-start .wgOrbitRed {
  animation-play-state: running;
}

.formInner {
max-width: 1000px;
margin: 0 auto;
padding: 0 30px;
}

.cctLst li {
	display: flex;
}

.cctLst li:not(:last-child) {
	margin: 0 0 40px;
	padding: 0 0 40px;
	border-bottom: solid  1px #e1e2e2;
}

.cctLst li:nth-last-child(2) {
	margin: 0 0 60px;
	padding: 0;
	border-bottom: none;
}

.cctLstTtl {
	width: 280px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4;
	margin: 25px 20px 0 0;
	text-align: left;
}

.eslIcn {
font-weight: normal;
color: #c00;
}

.cctLstCntBox {	
	width: calc(100% - 300px);
}

.frmBox01 {
	width: 100%;
	height: 70px;	
	border-radius: 5px;
	border: 1px solid #e1e2e2;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	color: #000;
	padding: 15px;
	box-sizing: border-box;
	background: #fff;
}

.frmBox02 {
	width: 100%;
	height: 250px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	color: #000;
	padding: 15px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 5px;
	border: 1px solid #e1e2e2;
}

input::placeholder,
textarea::placeholder {
	color: #c8c8c8;
}

.frmSndBtn {
	text-align: center;
	position: relative;
	max-width: 320px;
	z-index: 1;
	font-size: 18px;
}

.frmSndBtn input {
	width: 100%;
	display: block;
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	color: #fff;
	padding: 25px;
	background: #000;
	background-size: 15px auto;
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.frmSndBtn input:hover {
	background: #970c10;
	background-size: 15px auto;
}

@media screen and (min-width:768px) and (max-width:1040px) {
	.cctCapTxt {
		font-size: 1.5rem;
	}

	.cctLst li:not(:last-child) {
		margin: 0 0 30px;
		padding: 0 0 30px;
	}

	.cctLst li:nth-last-child(2) {
		margin: 0 0 40px;
		padding: 0;
	}

	.cctLstTtl {
		width: 180px;
		margin: 20px 20px 0 0;
	}

	.cctLstCntBox {	
		width: calc(100% - 200px);
	}

	.frmBox01 {
		height: 60px;
	}

	.frmBox02 {
		height: 200px;
	}

	.frmSndBtn {
	}

	.frmSndBtn:before {
		right: 55px;
	}

	/*
	.frmSndBtn input {
		padding: 20px 70px 20px 20px;
		background: url(../images/arw_rt_wt.png) right 20px center no-repeat #000;
		background-size: 15px auto;
	}

	.frmSndBtn input:hover {
		background: url(../images/arw_rt_wt.png) right 20px center no-repeat #970c10;
		background-size: 15px auto;
	}
	*/
}

@media screen and (max-width:767px) {
	.cctCapTxt {
		font-size: 14px;
	}
	
	.cctLst li {
		display: block;
	}

	.cctLst li:not(:last-child) {
		margin: 0 0 20px;
		padding: 0 0 20px;
	}

	.cctLst li:nth-last-child(2) {
		margin: 0 0 20px;
		padding: 0;
	}

	.cctLstTtl {
		width: 100%;
		font-size: 18px;
		margin: 0 0 10px;
	}

	.cctLstCntBox {	
		width: 100%;
	}

	.frmBox01 {
		height: 50px;
		padding: 15px 10px;
	}

	.frmBox02 {
		height: 160px;
		padding: 15px 10px;
	}

	.frmSndBtn {
		max-width: 100%;
	}

	.frmSndBtn:before {
		right: 55px;
	}

	.frmSndBtn input {
		text-align: center;
		font-size: 16px;
		padding: 17px;
		background: #000;
		background-size: 15px auto;
		border-radius: 4px!important;
	}

	.frmSndBtn input:hover {
		background: #970c10;
		background-size: 15px auto;
	}
	.formInner {
		padding: 0;
	}
}

@media screen and (min-width: 1041px) {
	.sptb,
	.tbsp {
		display: none;
	}
}


.cctTnkDwdTtl {
	padding: 0 0 30px;
}

.materialThankyou .cctTnkTtl.cctTnkDwdTtl{
	margin: 0;
	padding-bottom: 10px;
}

.materialThankyou .cctTnkDwd .cctTnkTxt {
	margin-bottom: 0;	
}

.cctTnkDwd {
	max-width: 900px;
	margin: 0 auto 30px; 	
	background: #fcf7ec;
	padding: 30px;
	border-radius: 10px;
}

.cctTnkDwd a {
	color: #ae0b06
}

.cctTnkDwd .cctTnkDwdInr{
	display: flex;
	text-align: left;
	justify-content: center;
	align-items: center;
}

.cctTnkDwdInr:before {
	content: "";
	display: block;
	width: 44px;
	height: 44px;
	background: #fce7b5 url(assets/images/icon_dl.png) center center no-repeat;
	background-size: 26px 26px;
	border-radius: 1000px;
	margin-right: 10px;
	flex-shrink: 0;
}

.cctTnkDwd {
	margin: 0 auto 30px; 
	padding: 20px;
}

@media screen and (max-width:767px) {
	.cctTnkDwd {
		padding: 15px;
	}
	.cctTnkDwdInr .cctTnkTxt {
		font-size: 13px;
	}	
	.materialThankyou .cctTnkTxt {
		text-align: left;
	}
	.cctTnkDwdInr::before {
		width: 32px;
		height: 32px;
		background: #fce7b5 url(assets/images/icon_dl.png) center center no-repeat;
		background-size: auto;
		background-size: 20px 20px;
	}
}

/*==================================================
アンケート
==================================================*/

.secondForm {
	max-width: 900px;
	margin: 0 auto 20px;
	background: #fff;
	padding: 30px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	text-align: left;
}

.secondForm .cctLst li {
	display: block;
}


.secondForm .cctLstCntBox {
	display: block;
	width: 100%;
	padding: 0 15px;
}

.secondFormHead {
	max-width: 900px;
	margin: 0 auto;
}

.secondFormHead h2 {
	font-size: 20px;
	margin-bottom:5px;
}

.secondFormHead .caution {
	font-size: 14px;
	margin: 0 0 30px;
}

.cctLstTtlWrp {
	padding: 0 0 20px;
}

.secondForm .cctLstTtl {
	font-size: 16px;
	position: relative;
	display: inline;
	margin: 0;
	padding: 0 40px 0 0;
}

.secondForm .cctLstTtl .q {
	color: #ae0b06;
	font-size: 20px;
	margin-right: 15px;
}

.secondForm .cctLstTtl .h {
	background: #e3cecc;
	color: #ae0b06;
	font-size: 10px;
	position: absolute;
	right: 0;
	top: calc(50% - 7px);
	display: flex;
	align-items: center;
	border-radius: 1000px;
	padding: 2px 5px 3px;
	line-height: 1;
	height: 14px;
}

.secondForm .cctLstTtl .n {
	background: #ebeaea;
	color: #222;
	font-size: 10px;
	position: absolute;
	right: 0;
	top: calc(50% - 7px);
	display: flex;
	align-items: center;
	border-radius: 1000px;
	padding: 2px 5px;
	line-height: 1;
	height: 14px;
}

.secondForm li:not(:last-child) {
  margin: 0 0 40px;
  padding: 0;
  border-bottom: none;
}

.secondForm .wpcf7-not-valid-tip {
	display: none;
}

.secondForm {
	margin: 0 auto 30px;
	padding: 20px 20px 30px;
}	

@media screen and (max-width:767px) {
	.cctTnkDwdTtl {
		padding: 0 0 20px;
		font-size: 20px;
	}
	.secondForm {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.materialThankyou .cctTnkTtl.cctTnkDwdTtl{
		margin: 0;
		padding-bottom: 10px;
	}

	.materialThankyou .cctTnkDwd .cctTnkTxt {
		margin-bottom: 0;	
		text-align: left;
	}

	.materialThankyou .cctTnkTxt br{
		display: none;
	}


	.secondForm .cctLstTtl {
		padding: 0 0 10px;
	}

	.secondForm .cctLstCntBox {
		display: block;
		width: 100%;
		padding: 0;
	}

	.secondFormHead h2 {
		font-size: 16px;
		text-align: left;
	}
	.secondFormHead h2 br {
		display: none;	
	}

	.secondFormHead .caution {
		font-size: 12px;
		margin: 0 0 20px;
		text-align: left;
	}

	.secondFormHead .caution br {
		display: none;
	}

	.secondForm .cctLstTtl {
		padding: 10px;
		margin: 0 -20px 15px;
		font-size: 15px;
		border-radius: 0!important;
		width:calc(100% + 40px);
		box-sizing:border-box;
	}

	.secondForm li:not(:last-child) {
		margin: 0 0 20px;
		padding: 0;
		border-bottom: none;
	}
}

.cctLstCntBox.btnMod .wpcf7-radio {
	display: grid;
	gap: 12px;
	display: flex;
	flex-wrap: wrap;
}

.cctLstCntBox.btnMod .wpcf7-list-item {
	margin: 0;
	width: calc(50% - 6px);
	box-sizing: border-box;
	font-size: 14px;
}



.cctLstCntBox.btnMod02 .wpcf7-list-item {
	margin: 0;
	width: auto;
	box-sizing: border-box;
	font-size: 14px;
}

.cctLstCntBox.btnMod .wpcf7-list-item label {
  display: block;
  cursor: pointer;
}

.cctLstCntBox.btnMod input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cctLstCntBox.btnMod .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 56px;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  color: #333;
  font-weight: 700;
  transition: 0.2s;
}

/* hover */
.cctLstCntBox.btnMod label:hover .wpcf7-list-item-label {
	border-color: #ae0b06;
	color: #ae0b06;
}

@media screen and (max-width:767px) {
	.cctLstCntBox.btnMod .wpcf7-list-item-label {
		min-height: auto;
		padding: 10px;
		text-align: left;
	}
}

/*==================================================
Q1
==================================================*/

/*
.cctLstCntBox.btnMod01 .wpcf7-list-item-label { padding-left: 55px!important; }
.btnMod01 .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label{
	background: #fff url(/wp-content/themes/webminare/assets/images/icon_keiei.png) left 10px center no-repeat; background-size: 40px 40px;	}
.btnMod01 .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label{
	background: #fff url(/wp-content/themes/webminare/assets/images/icon_hanbai.png) left 10px center no-repeat; background-size: 40px 40px;	}
.btnMod01 .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label{
	background: #fff url(/wp-content/themes/webminare/assets/images/icon_tantou.png) left 10px center no-repeat; background-size: 40px 40px;	}
.btnMod01 .wpcf7-list-item:nth-child(4) .wpcf7-list-item-label{
	background: #fff url(/wp-content/themes/webminare/assets/images/icon_sonota.png) left 10px center no-repeat; background-size: 40px 40px;	}

.btnMod01 .wpcf7-list-item:nth-child(1) input[type="radio"]:checked + .wpcf7-list-item-label,
.btnMod01 .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label:hover{
	background: #faedea url(/wp-content/themes/webminare/assets/images/icon_keiei_on.png) left 10px center no-repeat; background-size: 40px 40px;	}
.btnMod01 .wpcf7-list-item:nth-child(2) input[type="radio"]:checked + .wpcf7-list-item-label,
.btnMod01 .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label:hover{
	background: #faedea url(/wp-content/themes/webminare/assets/images/icon_hanbai_on.png) left 10px center no-repeat; background-size: 40px 40px;	}
.btnMod01 .wpcf7-list-item:nth-child(3) input[type="radio"]:checked + .wpcf7-list-item-label,
.btnMod01 .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label:hover{
	background: #faedea url(/wp-content/themes/webminare/assets/images/icon_tantou_on.png) left 10px center no-repeat; background-size: 40px 40px;	}
.btnMod01 .wpcf7-list-item:nth-child(4) input[type="radio"]:checked + .wpcf7-list-item-label,
.btnMod01 .wpcf7-list-item:nth-child(4) .wpcf7-list-item-label:hover{
	background: #faedea url(/wp-content/themes/webminare/assets/images/icon_sonota_on.png) left 10px center no-repeat; background-size: 40px 40px;	}
*/

/* 選択中 */
.cctLstCntBox.btnMod input[type="radio"]:checked + .wpcf7-list-item-label {
	border-color: #ae0b06;
	background: #faedea;
	color: #ae0b06;
}

@media screen and (max-width:767px) {
	
	.materialThankyou .cctLstTtl {
		padding: 0 40px 0 10px;
		width: 100%;
		box-sizing: border-box;
		display: block;
		margin: 0 -10px 0;
	}
	
	.cctLstCntBox.btnMod01 .wpcf7-list-item {
		width: 100%;
	}
	.cctLstCntBox.btnMod01 .wpcf7-radio {
		flex-direction: column;
		gap: 10px;
	}
}

/*==================================================
Q2
==================================================*/

.cctLstCntBox.btnMod02 .wpcf7-radio {
	flex-wrap: nowrap;
	width:100%;
}

.cctLstCntBox.btnMod02 .wpcf7-list-item {
	font-size: 13px;
	flex:none;
	margin:0;
}

.btnMod02 .wpcf7-list-item:last-child{
	flex:1;
}

@media screen and (max-width:767px) {
	
	.cctLstCntBox.btnMod02 .wpcf7-list-item {
		width: 100%;
	}
	.cctLstCntBox.btnMod02 .wpcf7-radio {
		flex-direction: column;
		gap: 10px;
	}
}

/*==================================================
Q3
==================================================*/

.budgetSlider {
	width: 100%;
}

.budgetSlider__labels {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 700;
	color: #111;
	text-align: center;
}

.budgetSlider__labels span {
	position: relative;
}

.budgetSlider__labels span::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -12px;
	width: 6px;
	height: 6px;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	transform: translateX(-50%) rotate(-45deg);
}

.budgetSlider__wrap {
	position: relative;
	padding-bottom: 42px;
}

#budgetRange {
	width: 100%;
	height: 6px;
	margin: 0;
	background: linear-gradient(
		to right,
		#c40000 0%,
		#c40000 25%,
		#e9e9e9 25%,
		#e9e9e9 100%
	);
	border-radius: 999px;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
}

/* Chrome / Edge / Safari */
#budgetRange::-webkit-slider-runnable-track {
	height: 6px;
	background: transparent;
	border-radius: 999px;
}

#budgetRange::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 19px;
	height: 19px;
	margin-top: -6.5px;
	border: 3px solid #c40000;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 2px #fff;
	cursor: pointer;
}

/* Firefox */
#budgetRange::-moz-range-track {
	height: 6px;
	background: transparent;
	border-radius: 999px;
}

#budgetRange::-moz-range-progress {
	height: 6px;
	background: #c40000;
	border-radius: 999px;
}

#budgetRange::-moz-range-thumb {
	width: 13px;
	height: 13px;
	border: 3px solid #c40000;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 2px #fff;
	cursor: pointer;
}

.budgetSlider__bubble {
	position: absolute;
	box-sizing: border-box;
	top: 35px;
	left: 0;
	transform: translateX(-50%);
	padding: 6px 13px;
	border-radius: 4px;
	background: #c40000;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	pointer-events: none;
}

.budgetSlider__bubble::before {
	content: "";
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #c40000;
}

.budgetSlider__note {
	margin: 0;
	font-size: 11px;
	color: #999;
	text-align: center;
	position: relative;
	top: 10px;
}

@media screen and (max-width:767px) {
	.budgetSlider__labels{
		display: flex;
		justify-content: space-between;
	}
	
	.budgetSlider {
		padding: 0 20px;
	}

	.budgetSlider__labels span:nth-child(2),
	.budgetSlider__labels span:nth-child(3),
	.budgetSlider__labels span:nth-child(4){
		display: none;
	}
	.budgetBubble {
		padding: 5px;
	}
}

/*==================================================
Q4
==================================================*/

.cctLstCntBox.btnMod04 .wpcf7-radio {
	flex-wrap: nowrap;
	width: 100%;
}

.cctLstCntBox.btnMod04 .wpcf7-radio .wpcf7-list-item {
	text-align: center;
}

.btnMod04 .wpcf7-list-item .wpcf7-list-item-label {
	padding-top: 60px;
}

.cctLstCntBox.btnMod04 .wpcf7-list-item-label {
	justify-content: center;
}

.btnMod04 .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label{
	background: #fff url(/wp-content/themes/webminare/assets/images/icon_shindan-kibou.png) center top 10px no-repeat; background-size: 40px 40px;	
}
.btnMod04 .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label{
	background: #fff url(/wp-content/themes/webminare/assets/images/icon_kabeuchi.png) center top 10px no-repeat; background-size: 40px 40px;	
}
.btnMod04 .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label{
	background: #fff url(/wp-content/themes/webminare/assets/images/icon_shiryo.png) center top 10px no-repeat; background-size: 40px 40px;	
}
.btnMod04 .wpcf7-list-item:nth-child(1) input[type="radio"]:checked + .wpcf7-list-item-label,
.btnMod04 .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label:hover{
	background: #faedea url(/wp-content/themes/webminare/assets/images/icon_shindan-kibou_on.png) center top 10px no-repeat; background-size: 40px 40px;	}
.btnMod04 .wpcf7-list-item:nth-child(2) input[type="radio"]:checked + .wpcf7-list-item-label,
.btnMod04 .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label:hover{
	background: #faedea url(/wp-content/themes/webminare/assets/images/icon_kabeuchi_on.png) center top 10px no-repeat; background-size: 40px 40px;	}
.btnMod04 .wpcf7-list-item:nth-child(3) input[type="radio"]:checked + .wpcf7-list-item-label,
.btnMod04 .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label:hover{
	background: #faedea url(/wp-content/themes/webminare/assets/images/icon_shiryo_on.png) center top 10px no-repeat; background-size: 40px 40px;	}

@media screen and (max-width:767px) {

	.cctLstCntBox.btnMod04 .wpcf7-radio {
		flex-direction: column;
		gap: 10px;
	}
	
	.cctLstCntBox.btnMod04 .wpcf7-list-item {
		width: 100%;
	}

	.btnMod04 .wpcf7-list-item .wpcf7-list-item-label {
		padding: 10px 10px 10px 60px;
	}
	

	.btnMod04 .wpcf7-list-item .wpcf7-list-item-label br {
		display: none;
	}
	
	.btnMod04 .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label,
	.btnMod04 .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label,
	.btnMod04 .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label,
	.btnMod04 .wpcf7-list-item:nth-child(1) input[type="radio"]:checked + .wpcf7-list-item-label,
	.btnMod04 .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label:hover, 
	.btnMod04 .wpcf7-list-item:nth-child(2) input[type="radio"]:checked + .wpcf7-list-item-label,
	.btnMod04 .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label:hover, 
	.btnMod04 .wpcf7-list-item:nth-child(3) input[type="radio"]:checked + .wpcf7-list-item-label,
	.btnMod04 .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label:hover
	{		
		background-position: left 10px center;
		justify-content: flex-start;
	}
	
	
}

/*==================================================
サンキュー
==================================================*/

.thxBtns {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.cctTnkTtl.red {
	color:  #ae0b06;
}

.frmSndBtnCenter {
	padding: 20px 0 50px;
}

.frmSndBtnCenter .frmSndBtn {
	margin: 0 auto;
}

.morBtn {
	text-decoration: underline;
}

.cctIco {
	text-align: center;
	margin: 0;
}

.cctIco img {
	width: 50px;
	height: auto;
}

@media screen and (max-width:1024px) {

	.thxBtns {
		flex-direction: column;
		justify-content: center;
		gap: 10px;
	}
	
	.cctTnkTxt.thx {
		text-align: left;
	}

	.cctTnkTtl.red {
		color:  #ae0b06;
	}
	
	.frmSndBtnCenter {
		padding: 20px 0;
	}
}


@media screen and (max-width:1024px) {
	.cctIco img {
		width: 35px;
		height: auto;
	}
}

.materialThankyou {
	padding-top: 0;
}

.materialThankyou .cctTnkBox {
	
	background: none;
	border: none;
}