@charset "UTF-8";

/* CSS Information
---------------------------------------------------------------
Site URL:https://uniwork.jp
File name:common.css
Summary:reset styles
Created:2021-12-01
--------------------------------------------------------------- */

@media screen and (min-width: 1201px) {

/* Link */
/* ------------------------------------------------------------ */

a:link,
a:visited {
	color: #000;
	text-decoration: none;
}

a:hover,
a:active {
	color: #000;
	text-decoration: none;
}

img,
.alpha {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.alpha:hover {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */

em {
	font-style: normal;
}

sup {
	font-size: 66%;
	vertical-align: top;
}

sub {
	font-size: 66%;
	vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */

.indent {
	text-indent: -1em;
	margin-left: 1em;
}

/* Align */
/* ------------------------------------------------------------ */

.a_left {
	text-align: left !important;
}

.a_center {
	text-align: center !important;
}

.a_right {
	text-align: right !important;
}

/* Float */
/* ------------------------------------------------------------ */

.f_left {
	float: left;
}

.f_right {
	float: right;
}

/* Clear */
/* ------------------------------------------------------------ */

.clfx::after {
	content: '';
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}

/* HR */
/* ------------------------------------------------------------ */

hr {
	height: 1px;
	margin: 60px 0;
	padding: 0;
	display: block;
	border: 0;
	border-top: 1px #e6e6e6 solid;
}

/* Center合わせ */
/* ------------------------------------------------------------ */

.c_mgn {
	margin-left: auto;
	margin-right: auto;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */

.pc_mode {
	display: inherit !important;
}

.sp_mode {
	display: none !important;
}

/* Header */
/* ------------------------------------------------------------ */

header {
}

header .inner {
	border-top: 25px #000 solid;
	background: #fff;
	width: 100%;
	z-index: 999;
	position: absolute;
	top: -150px; /* fixed時に下にアニメーションさせる */
	margin-top: 150px; /* fixed時に下にアニメーションさせる */
}

header .inner.fixed {
	position: fixed !important;
	top: 0px !important;
	margin-top: 0 !important;
	-webkit-transition: top 0.5s ease-in;
	-moz-transition: top 0.5s ease-in;
	transition: top 0.5s ease-in;
}

header .inner .header_area {
	width: 1200px;
	height: 125px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .inner .header_area > div > h1 {
	width: 530px;
}

/* Global menu */
/* ------------------------------------------------------------ */

header #global_nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}

header #global_nav ul:nth-of-type(1) {
	width: 340px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header #global_nav ul:nth-of-type(1) li a {
	border-radius: 17px;
	background: #000;
	color: #fff;
    font-size: 16px;
    font-weight: 500;
	width: 160px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
}

header #global_nav ul:nth-of-type(2) {
	width: 560px;
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header #global_nav ul:nth-of-type(2) li a {
	color: #000;
    font-size: 16px;
    font-weight: 500;
	white-space: nowrap;
	display: block;
	position: relative;
}

header #global_nav ul:nth-of-type(2) li a span {
	position: relative;
}

header #global_nav ul:nth-of-type(2) li a span::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

header #global_nav ul:nth-of-type(2) li a:hover span::after {
	background: #000;
	bottom: -3px;
}

header #global_nav ul:nth-of-type(2) li a.active span::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #000;
	position: absolute;
	bottom: -3px;
	left: 0;
}

/* Main */
/* ------------------------------------------------------------ */

main:not(#index) {
	padding-top: 150px;
	padding-bottom: 120px;
	overflow: hidden;
}

main > section:not(#title) {
	margin: 120px 0;
	padding: 0;
}

main > section:last-child {
	margin-bottom: 0 !important;
}

main > section .inner {
	width: 1200px;
	margin: 0 auto;
}

a[href^="tel:"] {
	color: #000;
	pointer-events: none;
	cursor: text;
	text-decoration: none;
}

/* title */
/* ------------------------------------------------------------ */

main:not(#index) section#title .inner {
	width: 1200px;
	margin: 0 auto;
}

main:not(#index) section#title h2 {
	color: #fff;
	font-size: 60px;
	font-weight: 900;
}

main:not(#index) section#title h2 span {
	font-size: 18px;
	font-weight: 400;
	margin-top: 20px;
	display: block;
}

main section h3 {
	font-size: 40px;
	font-weight: 900;
	margin-bottom: 40px;
}

main section h4{
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

main section p.comment {
	line-height: 1.7;
}

/* Button */
/* ------------------------------------------------------------ */

p.btn1 a {
	border: 1px #000 solid;
	background: #000;
	text-decoration: none;
	width: 100%;
	height: 60px;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

p.btn1 a span {
	position: relative;
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.2em;
	margin-right: -0.2em;
}

p.btn1 a img {
	position: absolute;
	top: calc(50% - 7px);
	right: 10px;
	width: 10px;
	height: 14px;
}

p.btn1 a::before {
	box-sizing: border-box;
	transition: transform 0.4s;
}

p.btn1 a::before {
	content: '';
	width: 120%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #969696;
	transform-origin: left top;
	transform: skewX(-30deg) scale(0, 1);
}

p.btn1 a:hover::before {
	transform-origin: left top;
	transform: skewX(-30deg) scale(1, 1);
}

p.btn2 a {
	border: 1px #000 solid;
	background: #fff;
	text-decoration: none;
	width: 100%;
	height: 60px;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

p.btn2 a span {
	position: relative;
	color: #000;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.2em;
	margin-right: -0.2em;
}

p.btn2 a img {
	position: absolute;
	top: calc(50% - 7px);
	right: 10px;
	width: 10px;
	height: 14px;
}

p.btn2 a::before {
	box-sizing: border-box;
	transition: transform 0.4s;
}

p.btn2 a::before {
	content: '';
	width: 120%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #969696;
	transform-origin: left top;
	transform: skewX(-30deg) scale(0, 1);
}

p.btn2 a:hover::before {
	transform-origin: left top;
	transform: skewX(-30deg) scale(1, 1);
}

/* Inquiry */
/* ------------------------------------------------------------ */

main section#inquiry .inner {
	display: flex;
	justify-content: space-evenly;
	align-items: stretch;
}

main section#inquiry #tel,
main section#inquiry #mail {
	background: #4D4D4D;
	color: #fff;
	width: 540px;
	height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

main section#inquiry #tel h4,
main section#inquiry #mail h4 {
	margin-bottom: 60px;
	position: relative;
}

main section#inquiry #tel h4::after,
main section#inquiry #mail h4::after {
	content: '';
	position: absolute;
	left: calc(50% - 215px);
	bottom: -15px;
	display: inline-block;
	width: 430px;
	height: 1px;
	background: #fff;
}

main section#inquiry #tel .tel_num a {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	display: flex;
	align-items: center;
}

main section#inquiry #tel .tel_num a img {
	width: 48px;
	height: auto;
	margin-right: 10px;
}

main section#inquiry #mail .mailform a {
	background: #fff;
	color: #4D4D4D;
	font-size: 24px;
	font-weight: 700;
	padding: 5px 20px;
	display: flex;
	align-items: center;
}

main section#inquiry #mail .mailform a img {
	width: 58px;
	height: auto;
	margin-right: 10px;
}

main section#inquiry #tel .businesshours,
main section#inquiry #mail .businesshours {
	font-size: 18px;
	margin-top: 20px;
}

/* Table */
/* ------------------------------------------------------------ */

main section .dllist {
	margin-top: 60px;
}

main section .dllist .dlbox {
	border-bottom: 1px #fff solid;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main section .dllist .dlbox .dtbox {
	text-align: left;
	width: 280px;
	padding: 30px 0;
	display: block;
	flex-shrink: 0;
}

main section .dllist .dlbox .ddbox {
	text-align: left;
	width: 100%;
	padding: 30px 0;
	display: block;
}

main section .dllist .dlbox:nth-of-type(1) {
	border-top: 1px #fff solid;
}

main section .dllist .dlbox .wrap {
	line-height: 1.7;
	padding: 0 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main section .dllist .dlbox .dtbox .wrap {
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

main section .dllist .dlbox .ddbox .wrap {
	flex-wrap: wrap;
}

main section .dllist .dlbox .ddbox dl {
	line-height: 1.7;
	width: 100%;
}

main section .dllist .dlbox .ddbox dl:nth-of-type(2) {
	margin-top: 40px;
}

main section .dllist .dlbox .ddbox dl dt {
	padding-bottom: 15px;
	border-bottom: 1px #fff solid;
}

main section .dllist .dlbox .ddbox dl dd {
	color: #fff;
    position: relative;
	margin-top: 15px;
	padding-left: 1em;
}

main section .dllist .dlbox .ddbox dl dd::before {
	content: "";
    background: #000;
    border-radius: 50%;
	border: 1px #fff solid;
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 4px);
}

/* Form */
/* ------------------------------------------------------------ */

main section#form .must {
	background: #C20D23;
	color: #fff;
	font-size: 12px;
	line-height: 1;
	margin-top: 10px;
	padding: 5px 10px;
	display: block;
}

main section#form input[type="text"],
main section#form input[type="tel"],
main section#form input[type="email"],
main section#form input[type="password"],
main section#form input[type="date"],
main section#form input[type="number"] {
	outline: none;
	border: none;
	border-radius: 3px;
	background: #fff;
	font-size: 18px;
	letter-spacing: 1px;
	width: 100%;
	height: 60px;
	padding: 10px;
	box-sizing: border-box;
}

main section#form input[type="file"] {
	font-size: 18px;
}

main section#form input[type="text"].zip {
	width: 30%;
	margin-left: 10px;
}

main section#form select {
	outline: none;
	border: none;
	border-radius: 3px;
	background: #fff;
	font-size: 18px;
	letter-spacing: 1px;
	width: 100%;
	height: 70px;
	padding: 10px;
	box-sizing: border-box;
	-webkit-appearance: none;
}

main section#form select.prefecture {
	width: 30%;
	margin-bottom: 10px;
}

main section#form textarea {
	outline: none;
	border: none;
	border-radius: 3px;
	background: #EDEDED;
	font-size: 18px;
	letter-spacing: 1px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

/*radio button*/
main section#form .radio {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
main section#form .radio input[type="radio"] {
	position: absolute;
	visibility: hidden;
	width: auto;
}
main section#form .radio .mwform-radio-field-text {
	line-height: 1;
	margin-right: 20px;
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
main section#form .radio .mwform-radio-field-text::before {
	position: relative;
	left: 0;
	top: 0;
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background: #fff;
	border: 1px solid #a1a1a1;
	box-sizing: border-box;
	border-radius: 50%;
	vertical-align: middle;
}
main section#form .radio input[type="radio"]:checked + .mwform-radio-field-text::before {
	border: 1px solid #1270B6;
}
main section#form .radio input[type="radio"]:checked + .mwform-radio-field-text::after {
	position: absolute;
	left: 5px;
	top: 5px;
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #1270B6;
	border-radius: 50%;
	box-sizing: border-box;
	vertical-align: middle;
}

/*checkbox button*/
main section#form input[type="checkbox"] {
    display: none;
}
main section#form .mwform-checkbox-field {
}
main section#form .mwform-checkbox-field-text {
    display: inline-block;
    position: relative;
    padding: 0 36px 0 36px;
}
main section#form .mwform-checkbox-field-text::before,
main section#form .mwform-checkbox-field-text::after {
    content: "";
    position: absolute;
    display: block;
}
main section#form .mwform-checkbox-field-text::before {
    background: #fff;
    border: 2px solid #a1a1a1;
    border-radius: 2px;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
main section#form .mwform-checkbox-field-text::after {
    border-width: 3px;
    border-color: transparent transparent #1270B6 #1270B6;
    border-style: solid;
    width: 20px;
    height: 10px;
    margin-top: -0.2em;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
    opacity: 0;
}
main section#form input[type="checkbox"]:checked + .mwform-checkbox-field-text::after {
    opacity: 1;
}

main section#form .btn_area {
	width: 660px;
	margin: 60px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

main section#form .btn_submit {
	background: #C20D23 /*url(../img/common/btn_arrow.svg) no-repeat right 10px center*/;
	background-size: 8px 12px;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.2em;
	margin-right: -0.2em;
	width: 400px;
	height: 60px;
	display: block;
	cursor: pointer;
	border: none;
}

main section#form .btn_submit:hover {
	background-color: #000;
}

main section#form span.error {
	margin-top: 5px;
}

main section#form .radio span.error {
	margin-top: 0;
}

main section#form .mw_wp_form_complete p {
	line-height: 1.2;
	margin-top: 60px;
}

/* Simulation */
/* ------------------------------------------------------------ */

main section#simulation {
	background: #1270B6 url(../img/price/bg_price2.png);
	background-repeat: no-repeat;
	background-position: calc(50% - 340px) 0;
	margin: 0;
}

main section#simulation .inner {
	height: 470px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

main section#simulation h3,
main section#simulation p.comment {
	color: #fff;
}

main section#simulation p.btn {
	width: 420px;
	margin-top: 40px;
}

/* Footer */
/* ------------------------------------------------------------ */

footer {
	background: #fff;
	padding: 60px 0;
	border-bottom: 25px #000 solid;
}

footer .inner {
	width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer h1 {
	width: 530px;
}

footer address {
	font-style: normal;
	line-height: 1.7;
	margin-top: 20px;
}

footer nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}

footer nav ul:nth-of-type(1) {
	width: 340px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer nav ul:nth-of-type(1) li a {
	border-radius: 17px;
	background: #000;
	color: #fff;
    font-size: 16px;
    font-weight: 500;
	width: 160px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer nav ul:nth-of-type(2) {
	width: 560px;
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer nav ul:nth-of-type(2) li a {
	color: #000;
    font-size: 16px;
    font-weight: 500;
	white-space: nowrap;
	display: block;
	position: relative;
}

footer nav ul:nth-of-type(2) li a span {
	position: relative;
}

footer nav ul:nth-of-type(2) li a span::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

footer nav ul:nth-of-type(2) li a:hover span::after {
	background: #000;
	bottom: -3px;
}

footer nav ul:nth-of-type(2) li a.active span::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #000;
	position: absolute;
	bottom: -3px;
	left: 0;
}

/* fadein */
/* ------------------------------------------------------------ */

.fadein {
	opacity: 0;
	transform: translate(0, 40px);
	transition: all 700ms;
}

.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* トップページに戻るボタン */
/* ------------------------------------------------------------ */

.pagetop {
	border-radius: 60px;
	width: 60px;
	display: none;
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index: 1;
}

.pagetop a {
	display: block;
}

.pagetop img {
	width: 100%;
	height: auto;
}

}