/*
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;
	}

	.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;
	}
}