@charset "utf-8";
/*
Theme Name:aats2022
Author:
Description: avoc A.T.Sのテーマ
Version:1.0
*/

header {
	position: sticky;
	top: 0;
	z-index: 10;
	width: 100%;
	background-color: #fff;
}

#wrapper {
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - 58px);
}

.wp-element-caption {
	font-size: 1.4rem;
	text-align: center;
	color: #666;
}

.image-caption-m {
	font-size: 2.4rem;
}
h2:not(.contents h2) {
	line-height: 1.5;
}

.pg-search ul {
	padding-left: 24px;
}
.pg-search li {
	padding: 8px 0;
}

.btn-basic {
	border: 1px solid #999;
	border-radius: 30px;
	padding: 16px 32px; 
	text-decoration: none;
	color:#000;
	transition: all .4s;
}
.btn-basic:hover {
	background-color: #eee;
}

.pg-group {
	padding: 0;
	contain:content;
}

.list-default {
	padding-left: 24px;
}
ul.list-red {
	list-style: circle;
	padding-left: 24px;
}
ul.list-red li {
	color: #f00;
}
ul.list-red li span {
	color: #111;
}

/* ContactForm7 */
.wpcf7 div.screen-reader-response {
	display: none;
}
.wpcf7 small {
	color: #dc3232;
}
.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}
.wpcf7 form.init .wpcf7-response-output {
	display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}
.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}
.wpcf7 form fieldset {
	border-width:0;
}
.wpcf7-not-valid-tip {
	color: #dc3232;
	font-size: 1em;
	font-weight: normal;
	display: block;
}
.wpcf7 input[type="number"] {
	width: 100px;
}
.wpcf7 input[type="submit"] {
	width: 100%;
}
.wpcf7 table {
	width: 100%;
	font-size: revert;
}
.wpcf7 th {
	display: block;
	background-color: #f0f0f0;
}
.wpcf7 td {
	display: block;
}
.wpcf7 th p,
.wpcf7 td p {
	margin-bottom: 0;
}

/* Search */
.searchform {
	display: none;
}
.searchform-mb {
	margin: auto 0 auto 8px;
}
.searchform-mb input[type="search"] {
	border: 1px solid #999;
	border-radius: unset;
	padding: 11px 8px;
	width: 136px;
	font-size: 14px;
}
.searchform-mb input[type="search"]:focus {
	outline: 0;
}
.searchform-mb button {
	cursor: pointer;
	border: none;
	background: #999;
	color: #fff;
	outline : none;
	padding: 12px;
	font-size: 14px;
}
.site-header {
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.mb-nodisp {
	display: none;
}

/*
 *メニュー
 */
#menu {
	display: none;
	visibility: hidden;
	max-width: 1024px;
	margin: 0 auto;
}
#menu #nav {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
}
#menu #nav li {
	list-style: none;
}
#menu #nav a.nav-item {
	display: table-cell;
	line-height: 1.6;
	height: 62px;
	vertical-align: middle;
	color: #111;
	text-decoration: none;
	text-align: center;
}
#menu #nav a.nav-item span {
	padding: 2px;
}
#menu #nav a.nav-item:hover span {
	padding: 2px;
	border-bottom: 3px solid red;
}
.menu-mb,
.logo a,
.menu-mail,
.menu-btn {
	height: 58px;
}
.menu-mb {
	display: flex;
	visibility: unset;
}
.menu-mail {
	position: fixed;
	top: 0;
	right: 62px;
	display: flex;
	width: 48px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	font-size: 26px;
	text-decoration: none;
	color: #666666;
}
#menu-btn-check{
	display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	transition: all .4s;
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
	transition: all .4s;
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
	transition: all .4s;
}
#menu-btn-check:checked ~ .menu-content {
	left: calc(100% - 248px);/*メニューを画面内へ*/
}
.menu-btn {
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	width: 62px;
	justify-content: center;
	align-items: center;
	z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #666666;
	position: absolute;
	transition: all .4s;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}
.menu-content {
	width: 248px;
	position: fixed;
	top: 58px;
	left: 100%;
	z-index: 80;
	background-color: #333333;
	transition: all 0.5s;
}
.menu-content ul {
	margin: 2px 0;
	padding: 0;
}
.menu-content ul li {
	border-bottom: solid 1px #666666;
	list-style: none;
}
.menu-content ul li:last-child {
	border-bottom: none;
}
.menu-content ul li a {
	display: block;
	width: 100%;
	font-size: 1.6rem;
	box-sizing: border-box;
	color:#ffffff;
	text-decoration: none;
	padding: 11px 16px 12px 20px;
	position: relative;
}
.menu-content ul li a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
	transform: rotate(45deg);
	position: absolute;
	right: 20px;
	top: 20px;
}
.logo a {
	display: block;
	background-color:#f00;
	width: 104px;
	text-align: center;
}
.logo a img {
	height: 50px;
}

.cvr {
	background-repeat:no-repeat;
	background-size:cover;
	background-position:left;
	height:140px;
}
.no-thumbnail {
	height:140px;
}
.tomei {
	height:100%;
	background:linear-gradient(to bottom, transparent 0%, transparent 30%, #fff 100%);
}
.no-thumbnail ul {
	border: 1px solid #ccc;
}

main.single {
	height: calc(100% - 56px);
}
main.main {
	position:relative;
	top: -90px;
}

.notice {
	display: flex;
	max-width: 1024px;
	width: 100%;
	margin:1em auto 3em;
	z-index: 1;
	font-size: 14px;
	background-color: #FFE3EB;
	background-color: #FEF7D5;
}
.notice span {
	min-width: max-content;
	padding: 12px 16px;
	color: #BF1E56;
	color: #DA5019;
}
.notice ul {
	padding: 12px 16px 12px 0;
	list-style: none;
}
.notice a {
	color: #333;
}
.notice a:hover {
	opacity: 0.5;
}

.container {
	position: relative;
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 16px;
	font-size: 1.5rem;
	line-height: 1.6;
}
.box1 {
	position: absolute;
	top: -112px;
	width: calc(100% - 32px);
}
.box2 {
	position: relative;
	top: -24px;
}
.kiji>h2:first-child {
	margin-top: 0;
}

/*
 * title
 */
.h-hasen {
	padding: 0 0 8px;
	border-bottom: dashed 1px #aaa;
}
.h3-title-rd {
	font-size: 1.26em;
	font-weight: normal;
	margin-top: 56px;
	margin-bottom: 8px;
	padding: 6px 12px;
	border-left: 10px solid #ff0000;
}
.h4-title {
	margin-top: 0;
	margin-bottom: 1em;
	padding: 4px 0;
	border-bottom: solid 1px #aaa;
}

/******************************
 * breadcrumb
 ******************************/
.breadcrumb-area {
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 16px;
}
.breadcrumb {
	background-color: rgba(255,255,255,0.8);
	font-size: 14px;
}
.breadcrumb ul {
	padding: 8px 10px;
}
.breadcrumb ul li {
	display:inline;
	line-height: 21px;
}
.breadcrumb ul li::after {
	font-family: FontAwesome;
	content: '\f105';
	padding: 0 0.4em;
	color: #555;
}
.breadcrumb ul li:last-child:after {
	content: '';
}
.breadcrumb ul li a {
	text-decoration: none;
}

/******************************
 * single page
 ******************************/
.entry-pager {
	display:flex;
	justify-content:space-between;
}
.entry-pager a {
	text-decoration: none;
	padding: 10px 20px;
	color: #4c3b3b;
	border: 1px solid #cec1c1;
}
.entry-pager a:hover {
	background-color: #f1eded;
}

/******************************
 * hanyo title capture
 ******************************/
.contents {
	contain:content;
	position:relative;
	margin: 0 auto;
	padding: 0 16px;
	max-width: 920px;
	top: -54px;	/* menuからの移動時のエリアタイトル分の高さ */
	padding-top: 56px;	/* menuからの移動時のエリアタイトル分の高さ */
}
.contents h2 {
	font-size: 1.6em;
	font-weight: normal;
	text-align: center;
}
#jobs h2 {
	margin-top: 0;
}

/**
 * category
 */
.box-connection {
	margin: 16px 0;
	padding: 24px;
	background-color:#eee;
	border-radius:6px;
}
.box-connection ul {
	font-size: 1.5rem;
	line-height: 2;
	padding-left: 24px;
}
a.caterink {
	margin-top: 20px;
	display:flex;
	justify-content: space-between;
	border-bottom:1px dotted #666;
	color:#333;
	text-decoration:none;
}
a.caterink div:last-child {
	margin-left: 8px;
	padding-top: 14px;
}
a.caterink h3 {
	font-size: revert;
	margin:0;
}
a.info {
	background-color: #fa7d00;
	color: #fff;
	padding: 4px 8px;
	text-decoration: none;
	margin-right: 8px;
}
a.products {
	background-color: #00ba00;
	color: #fff;
	padding: 4px 8px;
	text-decoration: none;
	margin-right: 8px;
}
a.info:hover,
a.products:hover {
	opacity: 0.7;
}

/**
 * Pagenation
 */
.pagination {
	text-align: right;
}

/**
 * Footer Area
 */
.bunner-items .w102 {
	width: 102px;
}
.bunner-items .w136 {
	width: 136px;
}
.bunner-items .w188 {
	width: 188px;
}

footer {
	font-size: 1.4rem;
	width: 100%;
	margin-top: auto;
	background-color: #696969;
	color: #fff;
}
footer ul {
	padding: 0;
	display: flex;
	justify-content: center;
	list-style: none;
}
footer ul li:first-child {
	display: none;
}
footer ul li:not(:last-child):after {
	content: "|";
	margin: 0 1ex;
}
footer a {
	color: #fff;
	text-decoration: none;
	padding: 16px 0;
	line-height: 56px;
}
footer a:hover {
	text-decoration: underline;
}

/*** 追従するトップへ戻るボタン ***/
#page-top {
	position: relative;
	bottom: 0;
	line-height: 1;
	opacity: 0;
}
#page-top a {
	position: absolute;
	bottom: 56px;
	background: #ddd;
	color: #737373;
	padding: 12px 0;
	width: 100%;
	text-align: center;
	font-size: 16px;
}
/***トップへ戻るボタンここまで***/

/********************
 * Page
 ********************/
.tbl-area thead {
	background-color: #f5f5f5;
}
.tbl-area thead {
	background-color: #f5f5f5;
}
.tbl-area tbody tr td:first-child {
	background-color: #f5faff;
	font-weight: 700;
}
.tbl-area th {
	border-style: solid none none;
	border-color: #ddd;
	word-break: keep-all !important;
}
.tbl-area td {
	border-style: solid none none;
	border-color: #ddd;
	min-width: 64px;
}

table.tbl-l th,
table.tbl-l td,
table.hanyotable th,
table.hanyotable td,
table.basictable th,
table.basictable td {
	display: block;
}
table.basictable tr.midashi td,
table.basictable td.midashi {
	background: #666666;
	color: #ffffff;
}
table.basictable td:not(.midashi) {
	padding-bottom: 16px;
}
table.basictable td.midashi a {
	text-decoration: none;
	color: #ffffff;
}
table.basictable td.midashi a:hover {
	text-decoration: underline;
}
table.hanyotable{
	background:#FFFFFF;
	border-right:1px solid #aaa;
	border-bottom:1px solid #aaa;
}
table.hanyotable td{
	padding: 8px 12px;
}
table.hanyotable td.midashi{
	background:#f5faff;
	text-align:center;
	border-top:1px solid #aaa;
	border-left:1px solid #aaa;
}
table.hanyotable td.submidashi{
	background:#FFFFFF;
	text-align:left;
	border-top:1px solid #aaa;
	border-left:1px solid #aaa;
}
table.type1 tr {
	border-top: 1px solid #aaa;
}
table.type1 td {
	padding: 8px 4px;
	vertical-align:top;
}
table.type1 td:first-child {
	min-width: 44px;
	text-align: right;
	padding-right: 12px;
}
.table {
	width: 100%;
}
.table thead {
	background-color: #f5f5f5;
}
.table th,
.table td {
	line-height:1.5;
	vertical-align: top;
}
.table .active {
	background-color: #f5f5f5;
}
.table .plan {
	background-color: #f5faff;
}
.tbl-l ul {
	padding-left: 20px;
}
.title-m {
	font-weight: bold;
	margin-bottom: 4px;
}

/*
 * Apply Page
 */
a.pg-btn {
	width: calc(100% - 8px);
	max-width: 320px;
	padding: 24px 0;
	display: inline-block;
	border: solid 1px #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	color: #fff;
	text-decoration: none;
	text-shadow: 1px 1px 4px #000, 0 0 20px #000, 0 0 40px #000;
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
	transition: 0.5s;
	line-height: 1.8;
}
a.pg-btn:hover {
	opacity:0.6;
}
a.btn-hanbai {
	background: url(img/hanbai588_283.jpg) no-repeat;
	background-size: cover;
	background-position: top center;
}
a.btn-ibmi {
	background: url(img/ibmi592_397.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}
a.btn-hp {
	background: url(img/webdesign480_270.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}
a.btn-ebi {
	background: url(img/gw592_260.jpg) no-repeat;
	background-size: cover;
	background-position: center 40%;
}
a.btn-ansin {
	color: #333;
	text-shadow: -1px -1px 3px #fff, 1px 1px 3px #fff, 0 0 20px #fff, 0 0 40px #fff;
	border: solid 1px #bbb;
	background: url(img/ansin.jpg) no-repeat;
	background-position: bottom right;
}
a.btn-obc {
	background: url(img/obc484_200.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}
a.btn-solr {
	text-shadow: 1px 1px 4px #000, 0 0 20px #000;
	background: url(img/solr640_427.jpg) no-repeat;
	background-size: unset;
	background-position: right 30% bottom 58%;
}
a.btn-hpsupport {
	color: #333;
	text-shadow: -1px -1px 3px #fff, 1px 1px 3px #fff, 0 0 20px #fff, 0 0 40px #fff;
	border: solid 1px #bbb;
	background: url(img/hpsupport255_161.jpg) no-repeat;
	background-size: 60%;
	background-position: center 15%;
}

table.type1 {
	width: 100%;
}


/* google map */
.gm-style .place-desc-large {
	width: 300px;
}


/***************************************
 * tablet 
 ***************************************/
@media screen and (min-width:500px){
ul.list-default,
ul.list-red {
	padding-left: 32px;
}
/* ContactForm7 */
.wpcf7 input {
	width: revert;
	max-width: 100%;
}
.wpcf7 input[type="submit"] {
	width: 360px;
}
.wpcf7 p:has(input[type="submit"]) {
	text-align: center;
}
.wpcf7 .wpcf7-spinner {
	display: block;
}
}

@media screen and (min-width:768px){
.wpcf7 th,
.wpcf7 td {
	display: revert;
}
.wpcf7 th {
	width: 35%;
}
h2:not(.contents h2) {
	line-height: revert;
}
h3 {
	line-height: revert;
}
.h3-title-rd:not(:first-of-type) {
	margin-top: 64px;
}

/* menu */
.menu-mb,
.logo a,
.menu-mail,
.menu-btn {
	height: 62px;
}
#menu {
	display: block;
	visibility: unset;
}
#menu #nav a.nav-item span {
	font-size: 15px;	/* ブラウザのフォントサイズ設定回避 */
}
.menu-mb {
	display:none;
	visibility: hidden;
}
.logo {
	display:flex;
}
.logo a {
	width: 120px;
}
.menu-content {
	top: 62px;
}
#wrapper {
	min-height: calc(100vh - 62px);
}
main.single {
	height: calc(100% - 88px);
}

/* 検索 */
.pg-search ul {
	padding-left: revert;
}
.pg-search li {
	padding: unset;
}

/* 汎用ページ */
.container {
	font-size: revert;
	line-height: revert;
}
.pg-group {
	padding: 0 10px;
}
.pg-group .mgT30 {
	margin-top: 30px;
}
.tbl-area {
	padding: 0 10px;
}
table.tbl-l th,
table.tbl-l td,
table.hanyotable th,
table.hanyotable td,
table.basictable th,
table.basictable td {
	display: revert;
}
table .mb-nodisp {
	display: table-row;
}
table.tbl-s,
table.tbl-l,
table.hanyotable {
	font-size: 1.5rem;
}
table.type1 td:first-child {
	min-width: 100px;
	padding: 10px;
	text-align: left;
}
table.type1 td:last-child {
	padding: 10px;
}
table.basictable td:not(.midashi) {
	padding-bottom: 8px;
	border-left: 1px solid #ffffff;
}
table.basictable tr.midashi td,
table.basictable td.midashi {
	border-bottom: 1px solid #ffffff;
}
table.tbl-l th {
	width: 160px;
}


.bunner-area {
	padding: 20px;
}
footer {
	font-size: 1.6rem;
}
footer ul {
	margin: 16px 0;
}
footer ul li:first-child {
	display: revert;
}
#page-top {
	position: sticky;
	transition: .3s;
	opacity: 0;
}
#page-top a {
	right: 10px;
/*	bottom: 96px;*/
	width: unset;
	padding: 16px 17px;
	background: #111;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 27px;
}
}

/***************************************
 * PC 
 ***************************************/
@media screen and (min-width:943px){
#menu #nav a.nav-item span {
	font-size: 16px;	/* ブラウザのfontsize設定回避 */
}
}