@charset "utf-8";
/*
Theme Name: wa-12 Custom Theme
Author: white-arc inc.
Version: 1.1
*/

/*----------------------------
Font
----------------------------*/
/*----------------------------
ENGLISH
----------------------------*/
@font-face {
	font-family: 'Lato';
	src: url('../fonts/Lato-Black.ttf') format('truetype');
	font-weight: 900;
}

@font-face {
	font-family: 'Lato';
	src: url('../fonts/Lato-Bold.ttf') format('truetype');
	font-weight: 700;
}

@font-face {
	font-family: 'Lato';
	src: url('../fonts/Lato-Regular.ttf') format('truetype');
	font-weight: 500;
}

@font-face {
	font-family: 'Lato';
	src: url('../fonts/Lato-Light.ttf') format('truetype');
	font-weight: 300;
}

html,
body {
	color: #3E3A39;
	font-family: "Lato", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 16px;
	font-weight: normal;
	letter-spacing: 5%;
	line-height: 1.6em;
	box-sizing: border-box;
	scroll-padding-top: 3rem;
	scroll-behavior: smooth;
	background-color: var(--color-wh);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: '';
	letter-spacing: '10%';
	line-height: '';
	word-break: break-all;
	margin: 0;
	padding: 0;

}

p {
	margin: 0;
}

pre {
	font-size: inherit;
}

table {
	max-width: 100%;
}

th,
td {
	padding: .5em;
}

dt,
dd {
	margin: 0;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

iframe {
	max-width: 100%;
}

input,
textarea,
button {
	font-size: inherit;
	line-height: '';
	cursor: pointer;
}

code {
	font-size: inherit;
	word-break: break-all;
}

img {
	max-width: 100%;
}

a {
	color: #3E3A39;
	text-decoration: none;
}

/*----------------------------
共通クラス
----------------------------*/

.flex {
	display: flex;
}

.flex-row {
	display: flex;
	align-items: center;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.wrap {
	margin: 0 auto;
	width: 90%;
}

.fa-solid {
	font-size: 0.825rem;
	padding: 0 0.5rem;
}

.main-container {
	width: calc(100vw - 2rem);
	margin-inline: auto;
}

.sub-container {
	margin-inline: auto;
}

.btn {
	display: inline-block;
	width: 20rem;
	height: 4rem;
	border-radius: 4rem;
	color: var(--color-wh);
	position: relative;
	padding: 1rem 0;
	z-index: 1;
	text-align: center;
	align-items: center;
	line-height: 180%;

}

.btn:before {
	font-family: "Font Awesome 5 Free";
	font-size: 1rem;
	font-weight: 900;
	line-height: 1;
	position: absolute;
	top: calc(50% - 0.5rem);
	right: 2rem;
	margin: 0;
	padding: 0;
	content: '\f178';
}

.brk {
	display: block;
	font-weight: 700;
	font-size: 0.75rem;
}

.brk-page-title {
	font-weight: 700;
	font-size: 1rem;
	line-height: 200%;
}

.page-title-wrap {
	padding-top: 0.5rem;
	margin-bottom: 3rem;
}

.annotation {
	color: var(--color-gr-letter);
}

.sp-br {
	display: block;
}

.pc-br {
	display: none;
}

.section-title {
	font-size: 1.75rem;
	font-weight: 700;
}

.color-gb {
	color: var(--color-sub);
}

.shadow-main {
	box-shadow: var(--shadow-main);
}

.justify {
	text-align: justify;
}

.text-center {
	text-align: center;
}

.fit-content {
	width: fit-content;
}

.color-sub {
	color: var(--color-sub);
}

summary {
	display: block;
}

.form-item-label-required {
	color: var(--color-red);
	font-size: 0.875rem;
	margin-right: 1rem;
	border: 1px solid var(--color-red);
	border-radius: 0.5rem;
	padding: 0.125rem 0.5rem;
}

.btn-normal {
	background-color: var(--color-sub-btn);
	transition: 0.2s ease-in-out;
}

.btn:hover {
	opacity: 0.5;
}

.btn-comfirm {
	background-color: var(--color-sub);
	transition: 0.2s ease-in-out;
}

::placeholder {
	color: var(--color-gr-letter2);
	font-weight: 200;
}

.hamburger-menu {
	list-style: none;
}

.footer-nav-item a,.global-nav-item a,.text-hover {
		background-image: linear-gradient(var(--color-bk-letter), var(--color-bk-letter));
		background-repeat: no-repeat;
		background-position: bottom right;
		background-size: 0 1px;
		transition:background-size 0.3s;
}

.footer-nav-item a:hover,.global-nav-item a:hover,.text-hover:hover {
	background-position: bottom left;
	background-size: 100% 1px;
}

/*----------------------------
カスタムプロパティ
----------------------------*/
:root {
	--color-bk-letter: #3E3A39;
	--color-bk-bg: #4d4d4d;
	--color-wh: #ffffff;
	--color-wh-bg: #fbfbfb;
	--color-wh-fixed: rgba(255, 255, 255, 0.5);
	--color-gr-letter: #787878;
	--color-gr-letter2: #c2c2c2;
	--color-gr-bg: #f6f6f6;
	--color-gr-shadow: rgba(127, 147, 145, 0.6);
	--color-sub: #0A92A0;
	--color-sub-15: rgba(10, 145, 160, 0.15);
	--color-sub-bg: #D5ECEF;
	--color-sub-btn: #92CAD0;
	--color-red: #DC6868;
	--bg-gradation: linear-gradient(180deg, rgba(10, 146, 160, 0) 0%, rgba(10, 146, 160, 0.05) 3.82%);

	--border-d3: 1px solid #d3d3d3;
	--border-3e: 1px solid #3E3A39;
	--border-0a: 1px solid #0A92A0;

	--shadow-main: 0px 60px 40px -50px var(--color-gr-shadow);
}

/*----------------------------
header
----------------------------*/
header {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 1rem;
	height: 3.5rem;
	width: calc(100% - 2rem);
	margin-inline: auto;
}

.header-site-name {
	margin-inline: 0 auto;
	width: 140px;
}

.header-inner {
	justify-content: space-between;
	padding: 1rem 0;
}

.div-header-site-name .header-logo {
	aspect-ratio: 325.87/56;
}

.header-logo img {
	width: 100%;
	height: 1.5rem;
	aspect-ratio: 325.87/56;
	object-fit: contain;
}

.btn-menu img {
	height: 1.5rem;
}

.global-nav {
	display: none;
}

.global-nav-item a {
	padding: 0 0 6px;
}

/*----------------------------
ham-menu
----------------------------*/
.hamburger-menu-wrapper {
	position: relative;
	z-index: 10000;
}

#hamburger-menu-button {
	display: none;
}

#hamburger-menu-button:checked~.hamburger-menu-close {
	display: block;
	opacity: 0.5;
}

#hamburger-menu-button:checked~.hamburger-menu-content {
	transform: translate3d(0, 0, 0);
}

.hamburger-menu-open .fa-bars {
	color: var(--color-bk-letter);
	font-size: 2rem;
}

.hamburger-menu-open {
	position: absolute;
	margin-bottom: 0;
	width: 1.5rem;
	top: -0.75rem;
	right: 0;
	transition: 0.2s ease;
	animation: site-title 0.8s ease 0.5s 1 normal;
	animation-fill-mode: forwards;
	opacity: 1;
	z-index: 10001;
	cursor: pointer;
}

.hamburger-menu-close {
	display: none;
	opacity: 0;
	background: #000;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	transition: 0.3s ease;
	z-index: 10002;
}

.hamburger-menu-content {
	background: var(--color-wh);
	position: fixed;
	left: 0;
	top: 0;
	width: 80%;
	height: 100%;
	transition: 0.3s ease;
	transform: translate3d(-100%, 0, 0);
	overflow: auto;
	z-index: 10003;
}

.hamburger-menu {
	padding: 0;
}

.hamburger-menu li {
	padding: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 18px;
	text-align: left;
	transition: 0.3s ease;
}

.hamburger-menu li a {
	color: #555555;
}

.hamburger-menu li:hover {
	transform: translateX(5px);
}

/*----------------------------
page-top-btn
----------------------------*/
.page-top {
	display: block;
	width: 3rem;
	height: 3rem;
	background-color: var(--color-gr-bg);
	border-radius: 50%;
	color: var(--color-bk-letter);
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 1rem;
	bottom: 2rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s, visibility 0.5s;
	z-index: 99;
}

.page-top.is-visible {
	opacity: 1;
	visibility: visible;
}

.page-top::after {
	content: "";
	width: 1rem;
	height: 1rem;
	margin-top: 0.25rem;
	border-top: solid 3px var(--color-bk-letter);
	border-right: solid 3px var(--color-bk-letter);
	transform: rotate(-45deg);
}

/*----------------------------
main
----------------------------*/
.bg-container {
	background: var(--bg-gradation);
	margin-top: 9.5rem;
	overflow: hidden;
}

.category-text-404 {
	margin-bottom: 10rem;
	background-color: var(--color-gr-bg);
}

/*----------------------------
section-contact
----------------------------*/

.section-contact {
	background-color: var(--color-sub-bg);
}

.section-contact-inner {
	text-align: center;
	padding: 3rem 0;
}

.section-contact-title h2 {
	font-size: 2rem;
	font-weight: 900;
	margin-bottom: 2rem;
}

.contact-btn-area p {
	margin-bottom: 1rem;
	line-height: 150%;
	font-weight: 400;
}

/*----------------------------
contact-form
----------------------------*/
.confirm-area,
.thanks-area {
	display: none;
}

.wpcf7-response-output{
	display: none;
}

.confirm-area {
	max-width: 800px;
	margin-inline: auto;
	width: 100%;
}

.contact-submit-button {
	margin-inline: auto;
}

.wpcf7-not-valid-tip {
	display: inline-block;
}

/*----------------------------
thanks
----------------------------*/
.thanks,.not-found-text {
	height: 30vh;
}

/*----------------------------
footer
----------------------------*/

.footer-inner {
	padding: 3rem 0 2rem;
}

.footer-site-name {
	margin-bottom: 3rem;
}

.footer-logo img {
	height: 3rem;
}

.footer-nav-list {
	width: 8.625rem;
	font-size: 1.25rem;
	font-weight: 500;
}

.footer-nav-item {
	padding: 1rem 0;
	border-top: var(--border-d3);
	line-height: 130%;
}

.footer-nav-item:first-child {
	border-top: none;
	padding-top: 0;
}

.copyright-area {
	color: var(--color-wh);
	background-color: var(--color-bk-bg);
}


/*--------------------------------------------------------------------------------
PC-responsive
----------------------------------------------------------------------------------*/

@media screen and (min-width:768px) {
	html,body {
		scroll-padding-top: 7rem;
	}
	.main-container {
		max-width: 1200px;
	}

	.sub-container {
		max-width: 75vw;
	}

	.sp-br {
		display: none;
	}

	.pc-br {
		display: block;
	}

	/*------------------------------
	PC-header
	------------------------------*/
	header {
		position: fixed;
		max-width: 100vw;
		width: 100%;
		top: 0;
		left: 0;
		height: 7rem;
		background-color: var(--color-wh-fixed);
	}

	.header-site-name {
		width: 35%;
	}

	.header-inner {
		width: calc(100% - 2rem);
		margin-inline: auto;
		max-width: 1600px;
	}

	.bg-container {
		margin-top: 16rem;
	}

	.global-nav,
	.global-nav-list {
		display: flex;
		flex-wrap: wrap;
	}

	.page-title-wrap {
		margin-bottom: 12rem;
	}

	.btn-menu {
		display: none;
	}

	.header-inner {
		padding: 0;
	}

	.header-site-name h1 {
		padding-top: 1.875rem;
	}

	.header-logo img {
		height: 3.5rem;
		width: fit-content;
	}

	.global-nav-list {
		font-weight: 700;
		padding-top: 4.5rem;
		gap: 3rem;
	}

	.hamburger-menu-wrapper {
		display: none;
	}

	/*------------------------------
	PC-footer
	------------------------------*/

	.footer-inner {
		padding: 5rem 0 3rem;
	}

	.footer-nav-list {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}

	.footer-nav-item {
		border-top: none;
		padding-top: 0;
	}
}


@media screen and (min-width: 768px) and (max-width: 1100px) {
	.global-nav-list {
		font-size: 0.75rem;
		gap: 0.75rem;
	}
}



/* style.cssより移動 */
/*----------------------------
index.html
----------------------------*/
.index-heading-ja {
	font-size: 7vw;
	font-weight: 700;
}

.index-heading-rec {
	margin-left: 4vw;
	font-size: 5vw;
	font-weight: 700;
	position: relative;
}

.index-heading-rec::before {
	display: inline-block;
	content: "";
	position: absolute;
	top: -1vw;
	left: -4vw;
	width: 3vw;
	height: 14vw;
	background-image: url(img/bar-gb.webp);
	background-size: contain;
	background-repeat: no-repeat;
}

.main-bg-container {
	background: var(--bg-gradation);
	margin-top: 2rem;
}

.hero-index {
	margin-bottom: 5rem;
}

.hero-index-container {
	flex-direction: column;
}

.hero-image-box {
	margin-bottom: 2rem;
}

.hero-text-box p {
	background-color: var(--color-wh);
	font-size: 10vw;
	font-weight: 700;
	line-height: 180%;
	margin-bottom: 1rem;
	display: block;
	width: fit-content;
}

.about-us-wrapper {
	background-color: var(--color-wh);
	padding: 3rem 0.75rem;
}

.about-us-heading {
	width: fit-content;
	margin-inline: auto;
}

.about-us-text {
	padding: 1rem;
	line-height: 200%;
}

.about-us-heading {
	margin-bottom: 1rem;
}

.index-iso-image {
	transform: translateY(-20%);
	width: 75vw;
	margin-inline: auto;
}

.works-heading-top-head {
	position: relative;
}

.works-heading-top-head::before {
	content: '';
	position: absolute;
	top: 1.75rem;
	width: 3.75rem;
	height: 1px;
	border-bottom: var(--border-3e);
}

.index-works-wrapper {
	background-color: var(--color-wh);
	padding: 3rem 1rem;
	margin-bottom: 7.5rem;
}

.index-works-heading {
	width: fit-content;
	margin-inline: auto;
	margin-bottom: 2rem;
}

.index-works-container {
	flex-direction: column;
	justify-content: center;
}

.index-works-content {
	background-color: var(--color-gr-bg);
	margin-bottom: 1.5rem;
	text-align: justify;
}

.index-works-content-heading {
	padding: 1rem 0.75rem 0.5rem;
}

.index-works-content-text {
	padding: 0.5rem 0.75rem;
}

.index-works-content-viewmore {
	text-align: right;
}

.index-works-content-viewmore a {
	display: inline-block;
	padding: 1rem;
}

.index-works-button {
	margin-inline: auto;
}

.index-news-area {
	background-color: var(--color-gr-bg);
	box-shadow: var(--shadow-main);
}

.index-news-container {
	padding: 3rem 1rem 5rem;
}

.index-news-heading {
	margin-bottom: 1.5rem;
}

.index-news-contents {
	margin-bottom: 1.5rem;
}

.-effect {
	margin-bottom: 1rem;
}

.index-news-content {
	margin-bottom: 1rem;
}

.i-company-text {
	font-weight: 700;
}

.i-company-texts a {
	color: var(--color-sub);
	text-decoration: underline;
}

.index-company-area {
	background-color: var(--color-wh);
	margin-bottom: 5rem;
	
}

.index-company-container {
	background-color: var(--color-wh);
	padding: 3rem 1rem;
}

.index-company-heading,
.index-company-contents {
	margin-bottom: 1rem;
}

.index-company-name,
.index-company-address,
.index-company-tel {
	margin-bottom: 0.75rem;
}

.i-company-texts {
	line-height: 130%;
}


/*----------------------------
works.html
----------------------------*/

.category-heading-top-head {
	position: relative;
	color: var(--color-sub);
}

.category-heading-top-head::before {
	content: '';
	position: absolute;
	top: 1.75rem;
	width: 3.75rem;
	height: 1px;
	border-bottom: var(--border-0a);
}

.works-btn {
	display: inline-block;
	width: 8rem;
	height: 4.5rem;
	color: var(--color-sub);
	position: relative;
	padding: 1rem 0;
	border: 1px solid var(--color-sub);
	text-align: center;
	transition: 0.2s;
}

.works-btn::after {
	position: absolute;
	top: 2.5rem;
	right: 3.5rem;
	content: '';
	width: 1rem;
	height: 1rem;
	border-top: 3px solid var(--color-sub);
	border-left: 3px solid var(--color-sub);
	transform: rotate(-135deg);

}

.works-btn:hover {
	background-color: var(--color-sub);
	color: var(--color-wh);
}

.works-btn:hover::after{
	border-top: 3px solid var(--color-wh);
	border-left: 3px solid var(--color-wh);
}

.works-page-wrapper {
	margin-bottom: 5rem;
}

.works-content-heading-box {
	text-align: center;
}

.works-content-heading-top {
	position: relative;
	z-index: 3;
	background-color: var(--color-wh);
	padding-top: 4rem;
}

.works-content-heading {
	font-size: 22px;
	line-height: 160%;
}

.works-content-heading-text {
	background-color: var(--color-wh);
	padding-top: 2rem;
	position: relative;
}

.works-content-heading-text p {
	font-size: 16px;
}

.works-content-heading-text::before {
	content: '';
	position: absolute;
	top: 1rem;
	width: 5rem;
	border-top: var(--border-3e);
	transform: translateX(-50%);
}

.works-content-heading {
	font-weight: 400;
}

.works-content-heading-text {
	font-size: 1rem;
	line-height: 200%;
	padding-bottom: 2rem;
}

.works-page-button-container {
	background-color: var(--color-wh);
}

.works-page-button-box {
	align-items: center;
	gap: 2rem;
	padding-bottom: 2rem;
}

.works-category {
	text-align: justify;
	padding-bottom: 3rem;
	background-color: var(--color-wh-bg);
}

.category-heading {
	background-color: var(--color-gr-bg);
	padding: 3rem 1rem;
}

.category-heading-top {
	margin-bottom: 1rem;
}

.category-contents {
	background-color: var(--color-wh-bg);
	padding: 3rem 1rem 0;
}

.category-content-image {
	width: 80px;
	margin-inline: auto;
	margin-bottom: 1rem;
}

.category-content-head,
.cate-tools,
.cate-phase {
	margin-bottom: 2rem;
}

.last-cate {
	border-bottom: none;
}

.cate-contents-box {
	border-bottom: var(--border-d3);
}

.cate-box-last {
	border-bottom: none;
}

.cate-other-text {
	padding-bottom: 2rem;
}


/*----------------------------
company.html
----------------------------*/

.bordered-left-bk {
	position: relative;
	padding-bottom: 0.75rem;
}

.bordered-left-bk::before {
	position: absolute;
	top: 2rem;
	content: '';
	width: 40px;
	height: 1px;
	border-bottom: var(--border-3e);
}

.company-page-profile {
	background-color: var(--color-wh);
	padding: 1rem;
	margin-bottom: 5rem;
	box-shadow: var(--shadow-main);
}

.company-content-box {
	margin-bottom: 5rem;
}

.company-content-box dt {
	font-weight: 700;
	padding-top: 1rem;
}

.company-content-box dt:first-child {
	padding-top: 0;
}

.company-content-box dd {
	padding-bottom: 1rem;
	border-bottom: var(--border-d3);
}

.company-content-box dd:last-child {
	border-bottom: none;
}

.company-data a {
	color: var(--color-sub);
	text-decoration: underline;
}


.company-access-container {
	background-color: var(--color-wh);
	padding: 5rem 1rem 5rem;
}

.company-page-section-title {
	transform: translateY(60%);
	position: sticky;
	z-index: 3;
}

.company-page-access {
	margin-bottom: 5rem;
}

.access-map-box {
	margin-bottom: 1.5rem;
	height: 220px;
}

.access-text-box p {
	margin-bottom: 1rem;
}

.access-map-box iframe {
	width: 100%;
	height: 100%;
}

/*----------------------------
news.html
----------------------------*/
.news-page-wrapper {
	background-color: var(--color-wh);
	padding: 1rem 1rem 2rem;
	margin-bottom: 5rem;
}

.news-page-content-box {
	padding-top: 3rem;
	margin-bottom: 0;
	border-bottom: var(--border-d3);
}

.news-page-content-box:last-child {
	border-bottom: none;
}

.news-page-image {
	margin-bottom: 2rem;
}

.news-page-image img {
	width: 100%;
	height: 175px;
	object-fit: cover;
	object-position: top;
}

.news-page-date {
	font-size: 0.75rem;
	font-weight: 700;
}

.news-page-text-heading p {
	margin-bottom: 1rem;
	color: var(--color-gr-letter);
}

.news-page-text-index {
	padding: 1rem;
}

.news-page-index-list {
	display: block;
	list-style-type: decimal;
	margin-bottom: 5rem;
	margin-left: 0.75rem;
}

.news-page-index-list li {
	margin-bottom: 1rem;
}

.news-page-index-list li:first-child {
	margin-top: 1rem;
}

/*----------------------------
contact.html
----------------------------*/

.contact-form-container {
	background-color: var(--color-wh);
	padding: 2rem 1.5rem 5rem;
	margin-bottom: 5rem;

}

.tel-address-area {
	background-color: var(--color-gr-bg);
	margin-inline: auto;
	padding: 2rem 1rem;
	margin-bottom: 3rem;
}

.tel-address-area p {
	margin-bottom: 1rem;
}

.contact-annotation {
	font-size: 0.875rem;
	margin-bottom: 0;
}

.contact-progress-list {
	justify-content: space-around;
	max-width: 248px;
	margin-inline: auto;
	height: 42px;
	gap: 16px;
	margin-bottom: 2rem;
}

.active-list {
	background-color: var(--color-sub);
	color: var(--color-wh);
	padding: 8px 20px;
	position: relative;
}

.active-list span,.non-active span {
	white-space: nowrap;
}

.active-list::before {
	position: absolute;
	top: 0px;
	left: -16px;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent var(--color-sub) transparent;
	border-width: 0px 0px 42px 16px;
}

.active-list::after {
	position: absolute;
	top: 0px;
	right: -16px;

	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-color: var(--color-sub) transparent transparent transparent;
	border-width: 42px 16px 0px 0px;
}

.non-active {
	background-color: var(--color-gr-bg);
	padding: 8px 20px;
	position: relative;
}

.non-active::before {
	position: absolute;
	top: 0px;
	left: -16px;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent var(--color-gr-bg) transparent;
	border-width: 0px 0px 42px 16px;
}

.non-active::after {
	position: absolute;
	top: 0px;
	right: -16px;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-color: var(--color-gr-bg) transparent transparent transparent;
	border-width: 42px 16px 0px 0px;
}

.form-item {
	margin-bottom: 1.5rem;
	border-bottom: var(--border-d3);
	padding-bottom: 1.5rem;
}

.form-last-item {
	border-bottom: none;
}

.form-item-label {
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.wpcf7-list-item {
	display: block;
	margin-bottom: 0.5rem;
}

input,
textarea {
	background-color: var(--color-gr-bg);
	border: var(--border-d3);
	border-radius: 4px;
	padding: 0.75rem;
	width: 100%;
}

input[type="checkbox"] {
	position: relative;
	width: 24px;
	height: 24px;
	border: var(--border-d3);
	vertical-align: -6px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.wpcf7-form-control .wpcf7-list-item {
	margin: 0 0 0.5rem 1em;
}

input[type="checkbox"]:checked:before {
	position: absolute;
	top: -0.5rem;
	left: 0.5rem;
	transform: rotate(50deg);
	width: 12px;
	height: 24px;
	border-right: 2px solid var(--color-sub);
	border-bottom: 2px solid var(--color-sub);
	content: '';
}

.button-wrap {
	text-align: center;
	margin-inline: auto;
}

.button-wrap .btn {
	width: calc(100vw - 6rem);
	margin-inline: auto;
}

.blank {
	display: inline-block;
	width: 4rem;
}

.page-id-29 .section-contact,.page-id-113 .section-contact {
	display: none;
}

/*----------------------------
recruit.html
----------------------------*/

.recruit-heading {
	color: var(--color-sub-15);
	font-style: italic;
	font-weight: 900;
	font-size: 48px;
}

.recruit-page-heading {
	background-color: var(--color-wh);
	padding: 2rem 1rem;
	margin-bottom: 10rem;
}

.recruit-page-heading-bg {
	position: relative;
}

.recruit-page-heading-bg h2 {
	position: absolute;
	top: -2.25rem;
}

.recruit-heading-top {
	position: relative;
}

.recruit-heading-top h3 {
	font-size: 7vw;
	margin-bottom: 2rem;
}

.recruit-heading-top::after {
	content: '';
	width: 80px;
	height: 1px;
	position: absolute;
	top: 1.25rem;
	border-top: var(--border-3e);
	transform: translate(-50%, 1.5rem);
}

.recruit-heading-text p {
	font-size: 16px;
}

.recruit-page-office {
	margin-bottom: 13rem;
}

.recruit-page-office-bg {
	position: relative;
}

.recruit-page-office-bg::before {
	content: '';
	position: absolute;
	width: 90%;
	height: calc(100% + 3rem);
	background-color: var(--color-wh);
	z-index: 1;
}

.recruit-heading-office {
	position: relative;
	transform: translate(100%, -1rem);
	width: 50%;
	z-index: 3;
}

.recruit-office-inner {
	position: relative;
	z-index: 2;
}

.recruit-office-photos {
	flex-direction: column;
	gap: 1rem;
}

.recruit-office-photos-box1 {
	gap: 1rem;
}

.recruit-office-photos-box2 {
	width: 62%;
	margin-inline: auto;
}

.recruit-data {
	margin-bottom: 5rem;
}

.recruit-data {
	width: calc(100% - 2rem);
	margin-inline: auto;
	margin-bottom: 13rem;
}

.recruit-data-bg {
	position: relative;
}

.recruit-data-bg::before {
	content: '';
	position: absolute;
	left: 1rem;
	width: 100%;
	height: calc(100% + 3rem);
	background-color: var(--color-gr-bg);
	z-index: 1;
}

.data-content-box {
	margin-bottom: 2rem;
}

.data-content-image {
	margin: 0 2rem;
}

.recruit-data-heading {
	transform: translateY(-50%);
	position: relative;
	z-index: 3;
	font-size: 1.75rem;
}

.data-content-heading {
	display: flex;
	justify-content: center;
}

.data-content-heading h3 {
	display: inline-block;
	width: 10rem;
	height: 3rem;
	border-radius: 5px;
	color: var(--color-wh);
	background-color: var(--color-sub);
	padding: 1rem 0;
	position: relative;
	z-index: 999;
	text-align: center;
	margin-inline: auto;
	transform: translateY(50%);
}

.data-content-image-box {
	position: relative;
	z-index: 3;
	padding: 1rem;
}

.data-content-image {
	position: relative;
	z-index: 5;
	background-color: var(--color-wh);
	border-radius: 10px;
}

.recruit-voice-bg {
	padding-bottom: 1rem;
	position: relative;
}

.recruit-voice-bg::before {
	content: '';
	position: absolute;
	right: 1rem;
	width: 100%;
	height: calc(100% + 0.5rem);
	background-color: var(--color-gr-bg);
	z-index: 1;
}

.recruit-voice-heading h2 {
	transform: translateY(-50%);
	position: relative;
	z-index: 3;
	margin-bottom: 2rem;
	font-size: 1.75rem;
}

.recruit-voice-container {
	position: relative;
	z-index: 3;
	max-width: none;
}

.recruit-voice {
	margin-bottom: 13rem;
}

.voice-image {
	width: 30vw;
	text-align: center;
	margin-inline: auto;
	margin-bottom: 1rem;
}

.voice-heading {
	text-align: center;
	margin-bottom: 1rem;
}

.voice-heading h3 {
	font-size: 1.75rem;
	margin-bottom: 2rem;
}

.recruit-voice-content {
	background-color: var(--color-wh);
	padding: 2rem 1rem;
	margin-bottom: 2rem;
}

.voice-texts {
	margin-bottom: 1rem;
}

.voice-texts h4 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.recruit-info {
	background-color: var(--color-wh);
	padding: 3rem 1rem;
}


.recruit-info-heading {
	text-align: center;
	margin-bottom: 1.25rem;
	font-size: 1.25rem;
}

.info-data-content {
	margin-bottom: 0.5rem;
}

.info-summary:hover {
	opacity: 0.7;
	cursor: pointer;
}

.info-summary {
	background-color: var(--color-sub);
	color: var(--color-wh);
	position: relative;
	padding: 0.5rem;
}

.info-summary::after {
	content: '';
	position: absolute;
	top: 1.25rem;
	right: 1rem;
	width: 16px;
	height: 1px;
	background-color: var(--color-wh);
}

.info-summary::before {
	content: '';
	position: absolute;
	top: 1.25rem;
	right: 1rem;
	width: 16px;
	height: 1px;
	background-color: var(--color-wh);
	transform: rotate(90deg);
}

details[open] .info-summary::before {
	opacity: 0;
	transition: 0.2s ease-in-out;
}

.data-heading {
	text-align: center;
	padding: 0.25rem;
	color: var(--color-sub);
	background-color: var(--color-sub-bg);
}

.info-summary,.data-heading p {
	padding-block: 0.5rem;
}

.data-details p {
	padding-block: 0.75rem;
}

.data-heading p {
	margin-block: auto;
	vertical-align: center;
}

.data-details-list {
	list-style: square;
	padding-left: 1rem;
}

.recruit-heading-entry {
	text-align: center;
	font-size: 2.5rem;
}

.recruit-info-data {
	margin-bottom: 3rem;
}

.recruit-heading-entry {
	margin-bottom: 1rem;
}

.entry-button {
	text-align: center;
}

.recruit-data {
	margin-bottom: 8rem;
}
.data-content-heading h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.recruit-page-heading {
	margin-bottom: 5rem;
}
.recruit-page-office {
    margin-bottom: 6rem;
}

.recruit-page-office-bg::before {
	height: 100%;
}
.recruit-office-inner.main-container {
	width: 100%;
}

.recruit-office-img-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

.recruit-office-img-items .img {
	position: relative;
}

.recruit-office-img-items .img::before {
	content: '';
	width: 100%;
	height: 100%;
	border-radius: 5px;
	position: absolute;
	top: 0;
	left: 0;
}

.recruit-office-img-items .img:first-child {
	width: 40%;
}

.recruit-office-img-items .img:nth-child(2) {
	width: 25%;
	translate: 7% 12%;
}

.recruit-office-img-items .img:last-child {
	width: 35%;
	translate: 0 50%;
}

.recruit-office-img-items .img img {
	box-shadow: 3px 3px 6px var(--color-gr-shadow);
}
.recruit-office-img-items .img:first-child img {
	border-radius: 0 5px 5px 0;
}
.recruit-office-img-items .img:nth-child(2) img {
	border-radius: 5px;
}
.recruit-office-img-items .img:last-child img {
	border-radius: 5px 0 0 5px;
}

@media screen and (min-width: 768px) {
	.recruit-voice-heading h2 {
		margin-bottom: 4rem;
	}
	.recruit-office-inner.main-container {
		width: 80vw;
        max-width: 1920px;
		margin: 0 0 auto 0;
	}

	.recruit-office-img-items .img img {
		border-radius: 5px !important;
	}

	.recruit-page-heading {
		margin-bottom: max(5rem, 14vw);
	}

	.recruit-page-office {
		margin-bottom: max(6rem, 16vw);
	}
}

.voice-main {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	background: url(https://white-arc.com/wp-content/themes/wa-12/img/wa-staff-img01-sp.webp) center/cover no-repeat;
	position: relative;
	z-index: 1;
}

.voice-main img {
	display: none;
}

.voice-main.web-designer {
	background: url(https://white-arc.com/wp-content/themes/wa-12/img/wa-staff-img02-sp.webp) center/cover no-repeat;
}

.voice-main::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, .6);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}

.voice-main h3 {
	color: var(--color-bk-letter);
    position: absolute;
    bottom: 1em;
    left: 1em;
	z-index: 4;
    font-size: 25px;
}

.recruit-voice-content {
	padding: 0;
}

.voice-text-box {
	padding: 2.5rem 2rem 2.5rem;
}

.voice-heading {
	display: none;
}
.voice-texts {
    margin-bottom: 3rem;
}
.voice-texts h4 {
	margin-bottom: 0.5rem;
	line-height: 1.4em;
	font-size: 1.125rem;
}

.recruit-voice {
    margin-bottom: 5rem;
}

/*----------------------------
application-form.html
----------------------------*/

.application-form-container {
	background-color: var(--color-wh);
	padding: 6rem 1.5rem 6rem;
	margin-bottom: 5rem;
}

.application-form {
	width: 280px;
	margin-inline: auto;
}

.application-title-texts {
	margin: 4rem 0;
}

.application-title-heading h2 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.application-title-text {
	font-size: 0.875rem;
	line-height: 130%;
}

input[type="radio"] {
	display: inline-block;
	width: fit-content;
	position: relative;
	width: 16px;
	height: 16px;
	border: var(--border-d3);
	border-radius: 50%;
	vertical-align: -2px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="radio"]:checked:before {
	position: absolute;
	top: -8px;
	left: 4px;
	transform: rotate(50deg);
	width: 10px;
	height: 18px;
	border-right: 2px solid var(--color-sub);
	border-bottom: 2px solid var(--color-sub);
	content: '';
}

.birth-year {
	width: 3.75rem;
	margin-inline: 0.5rem;
	margin-bottom: 0.5rem;
}

.birth-month {
	margin-left: 3.25rem;
}

.birth-date {
	margin-left: 0.5rem;
}

.birth-month,
.birth-date,
.birth-age,
.postal {
	width: 3.75rem;
	margin-bottom: 0.5rem;
	margin-right: 0.5rem;
}

.postal-second {
	margin-left: 0.5rem;
}

/*----------------------------
contact-confirm.html
----------------------------*/
.btn-return-wrap {
	text-align: center;
	margin-top: 1rem;
}

#back-button {
	border: none;
	margin-top: 0.5rem;
	display: block;
	margin-inline: auto;
	width: 200px;
	background-color: var(--color-sub-btn);
}

.contact-submit-button {
	display: block;
}

.confirm-text-box {
	margin: 4rem 0 2rem;
	max-width: 800px;
	width: 100%;
}

.confirm-textarea-contact,.confirm-textarea-form-pr {
	white-space: pre-wrap;
}

.thanks-area {
	max-width: 800px;
	width: 100%;
}

div.wpcf7 .wpcf7-spinner {
    display: none !important;
}

.wpcf7 span.wpcf7-not-valid-tip {
    display: none;
}
.wpcf7 .wpcf7-not-valid {
    background: var(--color-sub-bg);
}

/*--------------------------------------------------------------------------------
	PC-responsive
----------------------------------------------------------------------------------*/
@media screen and (min-width:768px) {
	/*----------------------------
	pc-size-index.html
	----------------------------*/

	.main-bg-container{
		margin-top: 6rem;
	}

	.index-heading-ja {
		font-size: 2.5rem;
		font-weight: 900;
	}

	.index-heading-rec {
		font-size: 1.5rem;
		margin-left: 2rem;
	}

	.index-heading-rec::before {
		display: inline-block;
		content: "";
		position: absolute;
		top: -1rem;
		left: -1.625rem;
		width: 3rem;
		height: 3rem;
		background-image: url(img/bar-gb.webp);
		background-size: contain;
		background-repeat: no-repeat;
	}

	.hero-index-container {
		flex-direction: row-reverse;
		width: 80%;
		margin-inline: auto;
	}

	.hero-index {
		margin-bottom: 5rem;
	}

	.hero-image-box {
		flex: 8;
		height: clamp(428px, 60vh, 640px);
		text-align: center;
		margin-bottom: 0;

	}

	.hero-image-box img {
		object-fit: contain;
		height: 100%;
	}

	.hero-text-box {
		flex: 4;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.hero-text-box p {
		display: inline-block;
		font-size: 3rem;
		margin-bottom: 3rem;
	}

	.about-us-wrapper {
		max-width: 800px;
	}

	.about-us-text {
		margin-inline: auto;
		width: fit-content;
		font-size: 1.5rem;
	}

	.index-iso-image {
		width: 22vw;
		margin: 0 300px 1rem auto;
		transform: translateY(-50%);
		margin-bottom: 2rem;
	}

	.index-works-wrapper {
		margin-bottom: 10rem;
	}

	.index-works-heading {

		margin: 2rem 0 2rem 0;
	}

	.index-works-contents {
		display: flex;
		gap: 1.5rem;
		margin-bottom: 2rem;
	}

	.index-works-content-heading
	{
		padding: 2rem 0 1rem 1.5rem;
	}

	.index-works-content-text {
		padding: 1.5rem;
	}

	.works-heading-top-head {
		font-size: 1.5rem;
	}

	.index-works-content {
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	.index-works-content-viewmore {
		margin-top: auto;
	}

	.index-works-content-viewmore a {
		padding: 2rem 1.5rem;
	}

	.index-works-button {
		margin-bottom: 2rem;
	}

	.index-news-area {
		max-width: 800px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.index-news-container {
		width: 100%;
		padding: 3rem;
	}

	.index-news-content,.-effect {
		display: flex;
		margin-left: 2.5rem;
		gap: 5rem;
	}

	.index-news-button {
		margin-inline: auto;
	}

	.index-news-image {
		transform: translateX(-200%) translateY(-50%);
		margin-bottom: 0;
	}

	.index-company-area {
		max-width: 1000px;
		width: 62.5%;
		display: flex;
		box-shadow: var(--shadow-main);
		position: relative;
		margin-bottom: 10rem;
	}

	.index-company-container {
		width: 100%;
		background-color: transparent;
		padding-bottom: 0;
	}

	.index-company-contents {
		margin-bottom: 3rem;
	}

	.index-company-inner {
		padding: 3rem;
		font-size: 1rem;
	}

	.index-company-heading {
		margin-bottom: 3rem;
	}

	.i-company-text {
		white-space: nowrap;
	}

	.index-company-name,
	.index-company-address,
	.index-company-tel {
		display: flex;
		gap: 20%;
		margin-bottom: 2rem;
	}

	.index-company-tel {
		gap: calc(20% - 1.5rem);
	}

	.index-company-button {
		text-align: center;
		line-height: 100%;
	}

	/*----------------------------
	pc-size-works.html
	----------------------------*/
	.works-page-wrapper {
		margin-bottom: 10rem;
	}

	.works-page-button-container {
		padding-bottom: 3rem;
	}

	.works-page-button-box {
		flex-direction: row;
		justify-content: space-between;
		width: 800px;
		margin-inline: auto;
	}

	.works-content-heading {
		font-size: 2rem;
	}

	.works-content-heading-text {
		padding-bottom: 5rem;
	}

	.works-content-heading-text p {
		font-size: 1rem;
	}

	.works-page-button-container a {
		display: inline-block;
	}

	.cate-heading-contents {
		display: flex;
		max-width: 1200px;
	}

	.category-heading-top {
		flex: 2;
	}

	.category-heading-text {
		flex: 10;
	}

	.cate-contents-box {
		max-width: 1000px;
		margin-inline: auto;
		display: flex;
		justify-content: space-between;
		gap: 2rem;
	}

	.category-content-image {
		flex: 1;
	}

	.category-content-head {
		flex: 4;
	}

	.category-content-head-other {
		flex: 8;
	}

	.cate-tools {
		flex: 2;
	}

	.cate-phase {
		flex: 2;
	}


	/*----------------------------
	pc-size-news.html
	----------------------------*/
	.news-page-wrapper {
		margin-bottom: 10rem;
	}

	.news-page-content-box {
		display: flex;
		gap: 2rem;
		padding: 3.5rem;
		padding-bottom: 5rem;
	}

	.news-page-image {
		flex: 5;
	}

	.news-page-image img {
		object-fit: contain;
		height: auto;
	}

	.news-page-text {
		flex: 8;
		width: 100%;
	}

	.news-page-index-list {
		margin-bottom: 0;
	}

	.news-page-image iframe {
		width: 100%;
		height: 300px;
	}

	.news-page-content-box {
		max-width: 1200px;
	}

	/*----------------------------
	pc-size-company.html
	----------------------------*/
	.company-data {
		display: flex;
		flex-wrap: wrap;
	}

	.company-page-profile {
		padding: 0;
		background-color: transparent;
	}

	.company-data dt,
	dd {
		display: inline-block;
	}

	.company-data dt:first-child {
		padding: 1.5rem;
	}

	.company-data dt {
		width: 38%;
		background-color: var(--color-gr-bg);
		padding: 1.5rem ;
		border-bottom: var(--border-d3);
		align-items: center;
	}

	.company-data dt:last-child {
		border-bottom: none;
	}

	.company-data dd {
		width: 62%;
		background-color: var(--color-wh);
		padding: 1.5rem ;
		align-items: center;
	}

	.company-page-access {
		margin-bottom: 10rem;
	}

	.access-content-box {
		display: flex;
		flex-direction: row-reverse;
	}

	.access-map-box {
		flex: 8;
		height: 456px;
	}

	.access-text-box {
		flex: 3;
		padding-left: 2rem;
		font-size: 1.125rem;
	}

	.access-text-box p {
		margin-bottom: 3rem;
		margin-inline: auto;
	}

	/*----------------------------
	pc-size-contact.html
	----------------------------*/
	.contact-progress-list {
		max-width: 736px;
		width: 90%;
		margin-inline: auto;
		height: 64px;
		gap: 8px;
		font-size: 20px;
	}

	.active-list {
		padding: 20px 12.5%;
		position: relative;
		width: fit-content;
		max-width: 240px;
	}

	.active-list span,.non-active span {
		white-space: nowrap;
		text-align: center;
	}

	.active-list::before {
		position: absolute;
		top: 0px;
		left: -32px;

		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-color: transparent transparent var(--color-sub) transparent;
		border-width: 0px 0px 64px 32px;
	}

	.active-list::after {
		position: absolute;
		top: 0px;
		right: -32px;

		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-color: var(--color-sub) transparent transparent transparent;
		border-width: 64px 32px 0px 0px;
	}

	.non-active {
		background-color: var(--color-gr-bg);
		padding: 20px 12.5%;
		position: relative;
		width: fit-content;
		max-width: 240px;
	}

	.non-active::before {
		position: absolute;
		top: 0px;
		left: -32px;

		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-color: transparent transparent var(--color-gr-bg) transparent;
		border-width: 0px 0px 64px 32px;
	}

	.non-active::after {
		position: absolute;
		top: 0px;
		right: -32px;

		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-color: var(--color-gr-bg) transparent transparent transparent;
		border-width: 64px 32px 0px 0px;
	}

	.form {
		width: 800px;
		margin-inline: auto;
	}

	.tel-address-area {
		max-width: 800px;
	}

	/*----------------------------
	pc-size-recruit.html
	----------------------------*/

	.recruit-heading {
		font-size: 8rem;
	}

	.recruit-page-heading {
		padding-top: 5rem;
	}

	.recruit-page-heading-bg h2 {
		top: -4rem;
	}

	.recruit-heading-top::after {
		top: 1.5rem;
	}

	.recruit-heading-top h3 {
		font-size: 2.5rem;
	}

	.recruit-heading-office {
		transform: translate(60vw, -1rem);
		width: fit-content;
	}

	.recruit-page-office-bg::before {
		width: 85%;
	}

	.recruit-heading-text p {
		font-size: 1rem;
	}

	.recruit-page-office {
		margin-bottom: 10rem;
	}


	.recruit-office-photos {
		flex-direction: row;
		gap: 3rem;
	}

	.recruit-office-photos-box1 {
		gap: 3rem;
		flex: 8;
	}

	.recruit-office-photos-box2 {
		height: fit-content;
		margin-block: auto;
		flex: 5;
	}

	.recruit-office-photos-box2 img {
		display: inline-block;
		width: 100%;
		margin-block: auto;
	}

	.recruit-data {
		width: 100%;
	}

	.recruit-data-wrapper {
		position: relative;
	}

	.recruit-data-wrapper::before {
		content: '';
		position: absolute;
		right: -2rem;
        top: 0;
		width: 2rem;
		height: 100%;
		background-color: var(--color-gr-bg);
		z-index: 1;
	}	

	.recruit-data-bg {
		width: 100%;
	}

	.recruit-data-heading {
		font-size: 2.5rem;
		position: relative;
		z-index: 999;
	}

	.recruit-data-bg {
		background-color: var(--color-gr-bg);
		position: relative;
		margin-inline: 0;
		padding: 8px 40px 40px;
	}

	.recruit-data-bg::before {
		content: none;
	}

	.recruit-voice-wrapper {
		position: relative;
	}

	.recruit-voice-wrapper::before {
        content: '';
        position: absolute;
        left: -2rem;
        top: 0;
        width: 2rem;
        height: 100%;
        background-color: var(--color-gr-bg);
        z-index: 1;
    }

	.recruit-data-contents {
		display: flex;
		flex-wrap: wrap;
		gap: 3.5%;
	}
	.recruit-data-content {
		width: 31%;
	}

	.data-content-box {
		margin-bottom: 0;
	}

	.recruit-voice-bg {
		padding: 8px 40px 40px;
		background-color: var(--color-gr-bg);
	}

	.recruit-voice-content {
		display: flex;
		margin: 40px 0 0;
		padding: 40px;
	}

	.data-content-heading {
		position: relative;
		z-index: 5;
	}

	.data-content-image {
		position: relative;
		z-index: 3;
		margin: 0;
	}

	.voice-image {
		flex: 1;
	}

	.voice-text-box {
		flex: 4;
	}

	.recruit-voice-heading h2 {
		font-size: 2.5rem;
	}

	.recruit-voice-bg::before {
		content: none;
	}

	.voice-heading {
		text-align: left;
	}

	.recruit-info {
		padding: 3rem 1rem;
	}

	.recruit-info:has(.recruit-info-data) {
		padding: 7rem 1rem;
	}

	.recruit-info-container {
		max-width: 800px;
		margin-inline: auto;
	}

	.recruit-info-heading h2 {
		font-size: 2rem;
	}

	.info-data-container {
		margin-bottom: 3rem;
	}

	.info-summary {
		padding: 1.5rem;
		line-height: 100%;
	}

	.info-summary::after {
		position: absolute;
		top: 2rem;
		right: 1.5rem;
		width: 20px;
		height: 2px;
		background-color: var(--color-wh);
	}

	.info-summary::before {
		top: 2rem;
		right: 1.5rem;
		width: 20px;
	}

	.info-data-content {
		background-color: var(--color-gr-bg);
	}

	.data-flex {
		display: flex;
		padding: 0.5rem 0;
	}

	.data-flex-first {
		padding-top: 0;
	}

	.data-flex-last {
		padding-bottom: 0;
	}

	.data-heading {
		padding: 1.5rem;
		align-items: center;
		width: 30%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.data-details {
		padding: 1.5rem;
	}

	.entry-title {
		margin: 7rem 0 4rem;
	}

	.entry-button {
		margin-bottom: 3rem;
	}

	.voice-heading h3 {
		margin-bottom: 2rem;
	}

	.voice-main {
		width: min(30%, 250px);
		height: 100%;
		aspect-ratio: 9 / 16;
		background: none;
	}

	.voice-main img {
		display: block;
		height: 100%;
		object-fit: cover;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
	}

	.voice-main::before {
		content: none;
	}

	.voice-main::after {
		content: '';
		width: 100%;
		height: 100%;
		background-color: var(--color-sub-15);
		position: absolute;
		top: 6%;
		left: 10%;
		z-index: 0;
	}
	.voice-main h3 {
		display: none;
	}
	.voice-heading {
		display: block;
	}

	.voice-text-box {
		padding: 0 0 0 64px;
	}


	/*----------------------------
	pc-size-application-form.html
	----------------------------*/

	.application-form-container {
		padding-top: 5rem;
	}

	.application-form {
		max-width: 800px;
		margin-inline: auto;
		width: 90%;
	}

	.form {
		max-width: 800px;
		width: 100%;
	}

	.birth-month,.birth-date {
		margin-left: 1rem;
	}

	.button-wrap .btn {
	width: 280px;
	margin-inline: auto;
	}
}

@media screen and (min-width:1264px) {
	.recruit-data-wrapper::before {
        right: calc((100vw - 1200px) / -2);
        width: calc((100vw - 1200px) / 2);
    }
	.recruit-voice-wrapper::before {
		left: calc((100vw - 1200px) / -2);
        width: calc((100vw - 1200px) / 2);
	}
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
	.hero-text-box p {
		font-size: 2rem;
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
	.recruit-heading-office  {
		font-size: 5rem;
	}
}


/*----------------------------
202510 Version: 1.1
----------------------------*/

/* works */

.works-link-list {
	background-color: var(--color-wh);
	padding: 2rem calc((100% - min(100%, 1024px)) / 2) 3rem;
	display: flex;
	justify-content: center;
}

.works-link-list li {
	width: 33%;
}

.works-link-list li:not(:last-child) {
	position: relative;
}

.works-link-list li:not(:last-child)::before {
	content: "";
	width: 2px;
	height: 1em;
	background-color: #d3d3d3;
	position: absolute;
	top: 4px;
	right: 0;
}
.works-link-list li a {
	text-align: center;
	width: 100%;
	display: block;
	font-size: clamp(.9rem, calc(.7rem + .625vw), 1.125rem);
	font-size: clamp(.9rem, calc(.3rem + 1.875vw), 1.25rem);
	font-weight: 700;
	transition: color .3s ease-in-out;
}

.works-link-list li a span {
	display: block;
	font-size: 0.69em;
	font-weight: 400;
	color: var(--color-gr-letter2);
}

.works-category {
	background-color: var(--color-wh);
}

.category-heading {
	width: min(90%, 1296px);
    margin: 0 auto;
	padding: 3rem 5%;
}

.cate-heading-contents {
	width: 100%;
}

.category-heading-top {
	margin-bottom: 1.5em;
}

.category-heading-top-head {
	position: unset;
	font-size: 1.5rem;
	line-height: 1;
}

.category-heading-top-head::before {
	content: none;
}

.category-heading-top-head .top {
	padding-bottom: .5em;
    margin-bottom: .5em;
	position: relative;
	display: block;
}

.category-heading-top-head .top::before {
	content: '';
    position: absolute;
    bottom: 0;
	left: 0;
    width: 3em;
    height: 1px;
    background-color: #0A92A0;
}

.category-heading-point {
	margin-top: 1rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: .5rem;
}

.category-heading-point li {
	padding: .6em 0;
	display: flex;
    justify-content: center;
    align-items: center;
	background-color: var(--color-sub);
	color: var(--color-wh);
	text-align: center;
	font-weight: 700;
}

.works-category-contents {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 2rem;
}

.works-category-contents > li {
	width: 100%;
	background-color: var(--color-wh);
	margin-top: 1.5rem;
	padding: 2.5rem min(5%, 40px);
	position: relative;
}

.works-category-contents > li .num {
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--color-sub-bg);
	letter-spacing: .1em;
	position: absolute;
	top: 0;
	left: 4%;
	translate: 0 -50%;
}

.works-category-contents > li .ttl-client {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 10%;
	margin: 0 0 1rem;
}

.works-category-contents > li .ttl-client h4 {
	font-size: 1.25rem;
	line-height: 1.5;
	width: 100%;
}

.works-category-contents > li .ttl-client p {
	width: fit-content;
	padding: 0 0 0 1rem;
	margin-left: auto;
	border-left: 3px solid var(--color-sub-bg);
	font-size: .875rem;
}

.works-category-contents > li .description {
	font-size: .875rem;
	line-height: 1.6;
}

.contents-bottom {
	margin: 1rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contents-bottom .contents-bottom-l {
	width: 100%;
}

.contents-bottom .contents-bottom-l ul {
	display: flex;
	flex-wrap: wrap;
	gap: .4em;
	margin: 0 0 1rem;
}

.contents-bottom .contents-bottom-l ul li {
	width: auto;
	padding: .15em 1em;
	font-size: .75rem;
	background-color: var(--color-sub-bg);
	color: var(--color-sub);
	font-weight: 700;
}

.contents-bottom .contents-bottom-l dl {
	display: flex;
	flex-wrap: wrap;
	font-size: .875rem;
}

.contents-bottom .contents-bottom-l dt {
	width: 100%;
	font-size: .875rem;
	margin-bottom: 0.25rem;
}

.contents-bottom .contents-bottom-l dd {
	width: 100%;
	display: flex;
	font-size: .875rem;
	font-weight: 700;
	gap: .6em;
}

.contents-bottom .contents-bottom-l dd::before {
	content: "";
    height: .6em;
    aspect-ratio: 1;
    background-color: var(--color-sub-bg);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    translate: .2em .6em;
}

.contents-bottom .contents-bottom-l dd + dt {
	margin-top: 1rem;
}

.contents-bottom .contents-bottom-r {
	width: 100%;
	display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contents-bottom .contents-bottom-r img {
	width: 100%;
}

@media (hover: hover) {

	.works-link-list li a:hover {
		color: var(--color-sub);
	}

	.works-link-list li a:hover span {
		color: var(--color-sub-btn);
	}

}

@media (768px <= width) {

	.works-link-list li:not(:last-child)::before {
		height: 2em;
		top: 50%;
		translate: 0 -50%;
	}

	.works-link-list li a {
		font-size: 1.5rem;
	}

	.works-link-list li a span {
		font-size: .75rem;
		margin-top: 1em;
	}

	.category-heading {
		padding: 4rem min(6%, 72px);
	}

	.cate-heading-contents {
		display: block;
	}

	.category-heading-top {
		flex: none;
	}

	.category-heading-top-head {
		font-size: 2rem;
	}
	
	.category-heading-top-head.font-size-8word {
		font-size: min(2.8125vw, 2rem);
	}

	.category-heading-point {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 1.25rem;
	}

	.works-category-contents > li .ttl-client h4 {
		font-size: 1.5rem;
	}

	.works-category-contents > li .ttl-client p {
		font-size: 1rem;
		padding: 0 0 0 2rem;
	}

	.contents-bottom .contents-bottom-l dd {
		gap: 1em;
	}
}

@media ( 1024px <= width ) {

	.cate-heading-contents {
		display: flex;
	}

	.category-heading-top {
		width: min(32%, 300px);
		margin: 0;
	}

	.category-heading-text {
		flex: none;
		width: calc(100% - min(32%, 300px));
	}

    .works-category-contents.works-category-contents-aside { /*1105*/
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        gap: 0;
    }

    .works-category-contents.works-category-contents-aside > li { /*1105*/
        width: 32%;
        background-color: var(--color-wh);
        margin-top: 1.5rem;
        margin-right: 2%;
        padding: 2.5rem min(2.5%, 40px);
        position: relative;
    }
    
    .works-category-contents.works-category-contents-aside > li:after { /*1105*/
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 1;
        width: 60px;
        height: 60px;
        aspect-ratio: 1;
        clip-path: polygon(0 100%,100% 0,100% 100%);
        background: linear-gradient(45deg,#c4d6dc,#eaecf5);
    }    

    .works-category-contents.works-category-contents-aside > li:nth-child(n+4) { /*1105*/
        margin-top: 3.5rem;
    }  

    .works-category-contents.works-category-contents-aside > li:nth-of-type(3n) { /*1105*/
        margin-right: 0;
    }

	.works-category-contents > li .ttl-client {
		margin: 0 0 1.25rem;
		align-items: center;
	}

	.works-category-contents.works-category-contents-aside > li .ttl-client { /*1105*/
		margin: 0 0 0.75rem;
		align-items: center;
	}

	.works-category-contents > li .ttl-client h4 {
		width: fit-content;
	}

	.works-category-contents.works-category-contents-aside > li .ttl-client h4 { /*1105*/
		font-size: 1.4rem;
	}

	.works-category-contents > li .ttl-client p {
		margin: 0;
	}

	.works-category-contents > li .num {
		left: 3%;
	}
    
    .works-category-contents:not(.works-category-contents-aside) > li .description { /*1105*/
        font-size: .95rem;
        padding: 8px 0 2px;
    }
    
    .works-category-contents.works-category-contents-aside > li .description { /*1105*/
        font-size: .925rem;
        line-height: 1.7;
    }

	.contents-bottom {
		margin: 1.25rem 0 0;
		flex-direction: row-reverse;
		gap: 4%;
	}

	.works-category-contents-aside .contents-bottom { /*1105*/
		margin: 0.75rem 0 0;
		flex-direction: column;
		gap: 1rem;
	}

	.contents-bottom .contents-bottom-r {
		width: min(48%, 400px);
	}

	.contents-bottom .contents-bottom-r + .contents-bottom-l {
		width: calc(100% - 4% - min(48%, 400px));
	}

	.works-category-contents-aside .contents-bottom .contents-bottom-r { /*1105*/
		width: 100%;
	}

	.works-category-contents-aside .contents-bottom .contents-bottom-r + .contents-bottom-l { /*1105*/
		width: 100%;
	}

	.contents-bottom .contents-bottom-l ul {
		margin: 0 0 1.25rem;
	}

	.contents-bottom .contents-bottom-l dl {
		gap: .625rem 0;
	}

	.contents-bottom .contents-bottom-l dt {
		width: 130px;
		margin: 0;
	}

	.contents-bottom .contents-bottom-l dd {
		width: calc(100% - 130px - 10px);
	}

	.contents-bottom .contents-bottom-l dd + dt {
		margin: 0;
	}

	.works-category-contents-aside .contents-bottom .contents-bottom-l dl { /*1105*/
		gap: 0;
        z-index: 2;
        position: relative;
	}

	.works-category-contents-aside .contents-bottom .contents-bottom-l dt { /*1105*/
		width: 100%;
		margin-bottom: 0.25rem;
	}

	.works-category-contents-aside .contents-bottom .contents-bottom-l dd { /*1105*/
		width: 100%;
        gap: .6em;
	}
    
    .works-category-contents-aside .contents-bottom .contents-bottom-l dd + dt {
        margin-top: 0.75rem;
    }

}

/* top */

.main-bg-container {
	margin-top: 4.5rem;
}

.hero-wrap-bf {
	position: relative;
	padding-bottom: min(21vw, 10rem);
	width: 100%;
	overflow: hidden;
	z-index: 0;
}

.hero-wrap-bf::before {
	content: "White Architect";
	font-size: min(21vw, 10rem);
    font-weight: 700;
	line-height: 1.5;
	color: rgba(213, 236, 239, .4);
	letter-spacing: .1em;
	white-space: nowrap;
	position: absolute;
	bottom: 0;
	left: -.2em;
}

.hero-wrap-bg {
	position: absolute;
	z-index: -1;
	background-image: url(https://white-arc.com/wp-content/themes/wa-12/img/hero-bg-wave-wh.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	inset: 0;
}

.hero-index {
	position: relative;
	margin-bottom: 0;
}

.hero-main-img {
	scale: -1 1;
    opacity: .8;
	object-fit: contain;
	margin-bottom: 24px;
}

.hero-message {
	font-size: 9vw;
	font-weight: 700;
	line-height: 2.2;
	letter-spacing: .1em;
}

.hero-message .bg-wh {
	background-color: var(--color-wh);
	padding: .4em .5em;
	box-shadow: 0 4px 20px rgba(213, 236, 239, .3);
	margin-right: .2em;
}

.hero-message .ctl-space {
	padding-left: .5em;
}

@media (768px <= width) {
	.main-bg-container {
		margin-top: 8rem;
	}

	.hero-wrap-bf {
		padding-bottom: 7rem;
	}

	.hero-index {
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		align-items: center;
	}

	.hero-main-img {
		width: min(50%, 480px);
		margin: 0;
	}

	.hero-message {
		font-size: min(4.6vw, 3rem);
	}

	.hero-message .bg-wh {
		margin-right: .4em;
	}
}