/*
Theme Name: kazuma-wp
Theme URI: https://e-kazuma.jp/
Description: 株式会社カズマ用カスタムテーマ
Author: Kazuma Co., Ltd.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

/* 共通クラス */
.punctuation {
	margin-right: -30px;
}

.sp_only {
	display: none;
}

@media screen and (max-width: 767px) {
	.sp_only {
		display: block;
	}

	.pc_only {
		display: none;
	}
}

/* メイン */
body {
	background: #F4F5F7;
	color: #000;
	font-family:
		"Noto Serif JP",
		'Noto Sans JP',
		"Hiragino Mincho ProN",
		-apple-system,
		BlinkMacSystemFont,
		"Yu Gothic",
		"Helvetica Neue",
		"Helvetica",
		"Hiragino Sans",
		"Arial",
		"Meiryo",
		sans-serif;
	width: 100%;
	position: relative;
}

header {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	background: #000;
	width: 100%;
	height: 54px;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

/* ローディング */
#loader {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0px;
	left: 0px;
	background-color: #000;
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

#loader video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
	#loader video {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		min-width: 100%;
		min-height: 100%;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}

/* ヒーローセクション */
#hero {
	width: 100%;
	height: 100vh;
	background: #000;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

#hero .hero-box {
	width: 50%;
	max-width: 800px;
}

@media screen and (max-width: 767px) {
	#hero .hero-box {
		width: 90%;
		max-width: unset;
	}
}

#hero .hero-box h1 {
	width: 100%;
	margin: 0 auto 64px;
	position: relative;
	transition: all .8s;
}

@media screen and (max-width: 767px) {
	#hero .hero-box h1 {
		margin-bottom: 96px;
	}
}

#hero .hero-box h1 img {
	width: 100%;
	max-width: 953px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#hero .hero-box p {
	font-size: 24px;
	color: #fff;
	text-align: center;
	line-height: 2.2;
	letter-spacing: 2px;
	opacity: 0;
	margin-bottom: -86px;
	transition: .8s;
}

#hero .hero-box p.up {
	opacity: 1;
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	#hero .hero-box p {
		font-size: 16px;
		text-align: left;
	}
}

#hero .scroll {
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
	position: absolute;
	bottom: 64px;
	left: 50%;
	transform: translateX(-50%);
	display: none;
}

@media screen and (max-width: 767px) {
	#hero .scroll {
		bottom: 96px;
	}
}

#hero .scrollbar {
	position: absolute;
	width: 1px;
	height: 42px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(255, 255, 255, .51);
	overflow: hidden;
	display: none;
}

@media screen and (max-width: 767px) {
	#hero .scrollbar {
		height: 72px;
	}
}

#hero .scrollbar::before {
	content: '';
	position: absolute;
	width: 3px;
	/* 1pxだと表示されなくなる？ */
	height: 42px;
	background-color: #fff;
	bottom: 42px;
	left: 50%;
	transform: translateX(-50%);
	animation: scroll 1.2s ease infinite;
}

@media screen and (max-width: 767px) {
	#hero .scrollbar::before {
		height: 72px;
		bottom: 72px;
		animation: scroll-sp 1.2s ease infinite;
	}
}

@keyframes scroll {
	0% {
		bottom: 42px;
	}

	100% {
		bottom: -42px;
	}
}

@keyframes scroll-sp {
	0% {
		bottom: 72px;
	}

	100% {
		bottom: -72px;
	}
}

/* メッセージ */
#message {
	width: 100%;
	margin-top: 120px;
}

#message .message-container img {
	display: block;
	margin: 0 auto;
	width: 281px;
	height: 281px;
}

#message .message-container h2 {
	font-size: 50px;
	letter-spacing: 4px;
	text-align: center;
	margin-top: 60px;
}

#message .message-container .message {
	font-size: 18px;
	letter-spacing: 4px;
	line-height: 2.5;
	text-align: center;
	margin-top: 60px;
}

@media screen and (max-width: 767px) {
	#message {
		margin-top: 80px;
	}

	#message .message-container img {
		width: 183px;
		height: 183px;
	}

	#message .message-container h2 {
		font-size: 28px;
		line-height: 2;
		margin-top: 45px;
	}

	#message .message-container .message {
		width: 80%;
		margin: 45px auto 0;
		font-size: 14px;
		letter-spacing: 1px;
		line-height: 2.5;
		text-align: justify;
	}
}

/* カテゴリ */
#category {
	width: 100%;
	margin: 120px auto;
}

#category .category-container {
	width: 80%;
	margin: 0 auto;
}

#category .category-container .headings {
	display: block;
	width: 100%;
	height: auto;
}

#category .category-container .icon {
	display: block;
	margin: 90px auto 0;
	width: 62px;
	height: 47px;
}

#category .category-container .question {
	font-size: 30px;
	text-align: center;
	line-height: 2;
	letter-spacing: 6px;
	margin-top: 40px;
}

#category .category-container .category-box {
	width: 100%;
	min-width: 800px;
	max-width: 800px;
	margin: 60px auto 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#category .category-container .category-box img {
	width: 220px;
	height: 220px;
}

#category .category-container .category-box a:nth-of-type(1),
#category .category-container .category-box a:nth-of-type(2),
#category .category-container .category-box a:nth-of-type(4) {
	margin-right: 50px;
}

#category .category-container .category-box a:nth-of-type(n+4) {
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	#category .category-container {
		width: 100%;
	}

	#category .category-container .question {
		font-size: 22px;
	}

	#category .category-container .category-box {
		width: 100%;
		min-width: unset;
		margin: 60px auto 0;
	}

	#category .category-container .category-box .empty,
	#category .category-container .category-box img {
		width: 170px;
		height: 170px;
	}

	#category .category-container .category-box a:nth-of-type(1),
	#category .category-container .category-box a:nth-of-type(2),
	#category .category-container .category-box a:nth-of-type(4) {
		margin-right: unset;
	}

	#category .category-container .category-box a:nth-of-type(n+4) {
		margin-top: unset;
	}

	#category .category-container .category-box a:nth-child(odd) img {
		margin-right: 10px;
	}
}

/* プログラム */
#programs {
	width: 100%;
	margin: 140px auto;
}

#programs .programs-container h2 {
	width: 50%;
	margin: 0 auto;
}

#programs .programs-container h2 img {
	width: 100%;
	height: auto;
}

#programs .programs-container h2 p {
	font-family: 'Noto Sans JP';
	margin-top: 24px;
	font-size: 16px;
	text-align: center;
	letter-spacing: 2px;
}

#programs .programs-container .program {
	width: 82%;
	margin: 90px auto 0;
}

#programs .programs-container .program img.no {
	display: block;
	margin: 0 auto;
	width: 150px;
	height: 150px;
}

#programs .programs-container .program .program-main-box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 48px;
}

#programs .programs-container .program .program-main-box.reverse {
	flex-direction: row-reverse;
}

#programs .programs-container .program .program-image {
	width: 50%;
	height: auto;
}

#programs .programs-container .program .description-box {
	width: 50%;
	padding: 30px 30px 30px 40px;
}

#programs .programs-container .program .description-box .description-title-box .section-title {
	font-size: 18px;
	letter-spacing: 2px;
	line-height: 1.5;
}

#programs .programs-container .program .description-box .description-title-box h3 {
	font-size: 30px;
	letter-spacing: 4px;
	line-height: 1.8;
	margin-top: 8px;
}

#programs .programs-container .program .description-box .description {
	margin-top: 30px;
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 2.2;
}

#programs .programs-container .program .program-box {
	display: flex;
	width: 100%;
	background: #fff;
	padding: 24px;
	margin-top: 36px;
}

#programs .programs-container .program .program-box .divider {
	width: 20%;
	font-size: 18px;
	letter-spacing: 2px;
	line-height: 1.8;
	padding-right: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#programs .programs-container .program .program-box .content {
	width: 90%;
	font-size: 15px;
	letter-spacing: 1px;
	border-left: dashed 1px #707070;
	padding-left: 24px;
}

#programs .programs-container .program .program-box .content li {
	line-height: 2;
}

#programs .programs-container .program:nth-of-type(4) .program-box .content li {
	margin-top: 18px;
}

@media screen and (max-width: 767px) {
	#programs .programs-container {
		width: 100%;
	}

	#programs .programs-container h2 {
		width: 90%;
		margin: 0 auto;
	}

	#programs .programs-container h2 p {
		font-size: 14px;
	}

	#programs .programs-container .program {
		width: 100%;
		flex-direction: column;
		position: relative;
		margin: 60px auto 0;
	}

	#programs .programs-container .program img.no {
		display: none;
	}

	#programs .programs-container .program img.no_sp {
		position: absolute;
		width: 73px;
		height: 73px;
		top: -36px;
		left: 50%;
		transform: translateX(-50%);
	}

	#programs .programs-container .program .program-image {
		width: 100%;
		height: auto;
	}

	#programs .programs-container .program .description-box {
		width: 100%;
		position: relative;
		padding: 30px;
	}

	#programs .programs-container .program .description-box .description-title-box {
		position: relative;
		margin-top: 24px;
		justify-content: center;
	}

	#programs .programs-container .program .description-box .description-title-box .section-title {
		font-size: 20px;
		text-align: center;
		letter-spacing: 2px;
		line-height: 1;
	}

	#programs .programs-container .program .description-box .description-title-box h3 {
		font-size: 16px;
		text-align: center;
		margin-top: 30px;
		line-height: 1.8;
	}

	#programs .programs-container .program .program-box {
		display: block;
		width: 100%;
		background: inherit;
		padding: 0 24px;
		margin-top: 20px;
	}

	#programs .programs-container .program .program-main-box.reverse {
		flex-direction: column;
	}

	#programs .programs-container .program .program-box .divider {
		width: 100%;
		font-size: 18px;
		letter-spacing: 4px;
		line-height: 1;
		padding-right: 0;
		display: block;
		text-align: center;
		position: relative;
	}

	#programs .programs-container .program .program-box .divider:before,
	#programs .programs-container .program .program-box .divider:after {
		content: "";
		background-image: linear-gradient(to right, #707070 3px, transparent 1px);
		background-size: 4px 1px;
		background-repeat: repeat-x;
		width: 80px;
		position: absolute;
		top: 11px;
		bottom: 0;
	}

	#programs .programs-container .program .program-box .divider:before {
		left: 0;
	}

	#programs .programs-container .program .program-box .divider:after {
		right: 0;
	}

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

		#programs .programs-container .program .program-box .divider:before,
		#programs .programs-container .program .program-box .divider:after {
			width: 64px;
		}

	}

	#programs .programs-container .program .program-box .content {
		width: 100%;
		font-size: 15px;
		letter-spacing: 1px;
		border: none;
		margin-top: 24px;
		padding: 0;
		text-align: left
	}

}

/* 募集要項 */
#guideline {
	width: 100%;
	margin: 180px auto 0;
}

#guideline .guideline-container h2 {
	font-family: 'Noto Sans JP';
	width: 50%;
	margin: 0 auto;
}

#guideline .guideline-container h2 img {
	width: 357px;
	height: auto;
	display: block;
	margin: 0 auto;
}

#guideline .guideline-container h2 p {
	margin-top: 24px;
	font-size: 16px;
	text-align: center;
	letter-spacing: 2px;
}

#guideline .requirements {
	font-family: 'Noto Sans JP';
	width: 70%;
	margin: 64px auto;
}

#guideline .requirements tr:not(:last-child) {
	border-bottom: dashed 1px #707070;
}

#guideline .requirements th,
#guideline .requirements td {
	font-size: 16px;
	letter-spacing: 2px;
	padding: 16px 0;
	line-height: 1.8;
}

#guideline .requirements th {
	width: 150px;
}

@media screen and (max-width: 767px) {
	#guideline {
		margin: 80px auto 0;
	}

	#guideline .guideline-container h2 {
		width: 90%;
	}

	#guideline .guideline-container h2 img {
		width: 100%;
		height: auto;
	}

	#guideline .guideline-container h2 p {
		font-size: 14px;
	}

	#guideline .requirements {
		width: 90%;
	}

	#guideline .requirements th,
	#guideline .requirements td {
		width: 100%;
		display: block;
		font-size: 14px;
		line-height: 1.8;
	}

	#guideline .requirements th {
		padding: 16px 0 0;
	}

}

/* エントリー */
#entry {
	width: 100%;
	margin: 40px auto;
	padding-top: 80px;
}

#entry .entry-container h2 {
	width: 50%;
	margin: 0 auto;
}

#entry .entry-container h2 img {
	width: 224px;
	height: auto;
	display: block;
	margin: 0 auto;
}

#entry .entry-container h2 p {
	font-family: 'Noto Sans JP';
	margin-top: 24px;
	font-size: 16px;
	text-align: center;
	letter-spacing: 2px;
}

#entry .entry-container .notice {
	font-family: 'Noto Sans JP';
	width: 75%;
	margin: 64px auto;
	border: solid 4px #fff;
	padding: 16px 32px;
	font-size: 14px;
	line-height: 2;
	letter-spacing: 1px;
}

#entry .entry-container .form-area {
	font-family: 'Noto Sans JP';
	width: 50%;
	margin: 0 auto;
}

#entry .entry-container .form-area input[type^=text],
#entry .entry-container .form-area input[type^=email] {
	background: #fff;
	display: block;
	width: 100%;
	height: 54px;
	margin: 12px auto;
	padding: 0 18px;
}

#entry .entry-container .form-area input[type^=text].zip1 {
	width: 75px;
	display: inline-block;
}

#entry .entry-container .form-area input[type^=text].zip2 {
	width: 87px;
	display: inline-block;
}

#entry .entry-container .form-area input[type^=radio] {
	margin-right: 4px;
}

#entry .entry-container .form-area .radio {
	display: inline-block;
	margin-top: 12px;
	margin-bottom: 12px;
}

#entry .entry-container .form-area .radio:not(:last-child) {
	margin-right: 20px;
}

#entry .entry-container .form-area .row,
#entry .entry-container .form-area p {
	margin-top: 24px;
}

#entry .entry-container .form-area .spacer {
	margin: 0 8px;
}

#entry .entry-container .form-area .submit-row {
	margin: 60px auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#entry .entry-container .form-area .submit-row .btn_submit {
	width: 249px;
	height: 63px;
	background: #000;
	color: #fff;
	font-size: 18px;
	text-align: center;
}

#entry .policy {
	background: #fff;
	margin: 12px 0;
	padding: 12px;
	height: 143px;
	font-size: 14px;
	overflow-y: scroll;
	overflow-x: hidden;
	line-height: 1.8;
	letter-spacing: 3px;
}

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

	#entry {
		margin: 40px auto;
		padding-top: 80px;
	}

	#entry .entry-container h2 {
		width: 90%;
	}

	#entry .entry-container .notice {
		width: 90%;
		border: none;
		padding: 0 12px;
		text-align: left;
	}

	#entry .entry-container .form-area {
		width: 90%;
	}
}

/* 最下部バナー */
#banner {
	width: 100%;
	height: 519px;
	margin: 180px auto 0;
	background: url('../images/banner-background.jpg') no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}

#banner .image-text {
	width: 50%;
	height: auto;
}

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

	#banner {
		height: 216px;
		background: url('../images/banner-background_sp.jpg') no-repeat;
		background-position: center;
		background-size: cover;
	}

	#banner .image-text {
		width: 90%;
	}

}

/* フッタ */
footer {
	width: 100%;
	background-color: #000;
	color: #fff;
	padding: 120px 0;
}

footer .footer-container .message {
	text-align: center;
	font-size: 25px;
	letter-spacing: 12px;
}

footer .footer-container .btn_entry {
	display: block;
	margin: 64px auto 0;
	width: 181px;
	height: 181px;
}

footer .footer-container .address {
	font-family: 'Noto Sans JP';
	font-size: 14px;
	text-align: center;
	line-height: 3;
	letter-spacing: 2px;
	margin-top: 64px;
}

footer .footer-container .sns_icon {
	margin-top: 64px;
	display: flex;
	justify-content: center;
}

footer .footer-container .sns_icon img {
	width: 40px;
	height: 40px;
}

footer .footer-container .footer-imagebox {
	display: flex;
	justify-content: center;
	margin: 64px auto 0;
}

footer .footer-container .footer-imagebox img {
	width: 108px;
	height: 108px;
}

footer .footer-container .footer-imagebox img:first-child {
	margin-right: 32px;
}

footer .footer-container .footer-linkbox {
	display: flex;
	justify-content: center;
	margin: 64px auto 0;
}

footer .footer-container .footer-linkbox img {
	width: 206px;
	height: auto;
}

footer .footer-container .footer-linkbox>img {
	margin-right: 32px;
}

footer .footer-container .copyright {
	font-family: 'Noto Sans JP';
	font-size: 11px;
	text-align: center;
	margin: 64px auto 0;
	color: #535353;
	letter-spacing: 2px;
}

footer .foot_entry {
	display: none;
	position: fixed;
	bottom: 68px;
	right: 16px;
	width: 147px;
	height: 147px;
}

@media screen and (max-width: 767px) {
	footer {
		padding: 60px 0;
	}

	footer .footer-container .message {
		font-size: 20px;
		line-height: 2;
		letter-spacing: 7px;
	}

	footer .footer-container .btn_entry {
		width: 121px;
		height: 121px;
		margin: 48px auto 0;
	}

	footer .footer-container .address {
		margin-top: 48px;
	}

	footer .footer-container .footer-imagebox {
		margin: 48px auto 0;
	}

	footer .footer-container .copyright {
		margin: 48px auto 0;
	}

	footer .foot_entry {
		bottom: 80px;
		right: 12px;
		width: 91px;
		height: 91px;
	}

	footer .footer-container .footer-linkbox {
		flex-direction: column;
		align-items: center;
	}

	footer .footer-container .footer-linkbox>img {
		margin-right: unset;
		margin-bottom: 32px;
	}

}

/* コンタクトフォーム調整 */
.wpcf7-list-item {
	display: inline-block;
	margin: 12px 20px 12px 0 !important;
}

.privacy_policy input {
	margin-right: 8px;
}

.submit-row .wpcf7-submit {
	width: 249px;
	height: 63px;
	background: #000;
	color: #fff;
	font-size: 18px;
	text-align: center;
}

/* .grecaptcha-badge {
	visibility: hidden;
} */

/*----------------
インターシップ追加
------------------*/
.program-sub{
	max-width: 1000px;
	display: flex;
	gap: 40px;
	margin: 40px auto 40px;
}
.program-sub-item{
	width: calc((100% - 40px) / 2);
	background: #fff;
}
.program-sub-item-pho{
	position: relative;
}
.program-sub-item-pho img{
	width: 100%;
	height: auto;
}
.program-sub-item-pho p{
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	padding: 10px;
	box-sizing: border-box;
	width: 170px;
	text-align: center;
}
.program-sub-item-pho .c_1{
	background: #00B0F0;
}
.program-sub-item-pho .c_2{
	background: #697EE5;
}
.program-sub-item-pho .c_3{
	background: #65D5C8;
}
.program-sub-item-pho .c_4{
	background: #99CCFF;
}
.program-sub-item-pho .c_5{
	background: #ebbbbb;
}
.program-sub-item-pho .c_6{
	background: #29ff8a;
}
.program-sub-item-text{
	padding: 20px 15px;
	box-sizing: border-box;
	line-height: calc(1em + 12px);
}
.program-btn{
	background: #000;
	width: 300px;
	height: 60px;
	margin: 0 auto;
}
.program-btn a{
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
}
/*sp*/
@media screen and (max-width: 767px) {
	.program-sub{
		width: 90.625%;
		display: flex;
		gap: 20px;
		margin: 40px auto 40px;
		flex-flow: column;
	}
	.program-sub-item{
		width:100%;
	}
	.program-sub-item-pho p{
		font-size: 14px;
		width: 150px;
	}
	.program-sub-item-text{
		padding: 10px;
	}
	.program-btn{
		background: #000;
		width: 90.625%;
		height: 50px;
		margin: 0 auto;
	}
	.program-btn a{
		font-size: 15px;
	}
}
