@charset "UTF-8";
/*
Theme Name: 【最新】シンプル　天野企画テーマ
Author: amanokikaku
Author URI: http://amnk.co.jp/
Description: 2019.5.10
Version: 1.0
*/






/*--------------------reset.css--------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  color: #000;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
 text-align: left;
}



/* change border colour to suit your needs
*/
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

img{
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

iframe {
  vertical-align: bottom;
  max-width: 100%;
}

th {
  text-align: left;
}

*, *:before, *:after {
  box-sizing: border-box;
}

/*--------------------reset.cssここまで--------------------*/

/*--------------------form.css--------------------*/

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="range"],
input[type="color"],
input[type="radio"],
input[type="checkbox"],
input[type="submit"],
input[type="button"],
input[type="image"],
select,
button,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  font-family: "メイリオ", Meiryo, "Noto Sans JP",  sans-serif;
}

/* プレースホルダー */
::-webkit-input-placeholder {
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
::-ms-input-placeholder {
  color: #ccc;
}
::placeholder {
  color: #ccc;
}

/* 入力欄 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="range"] {
  width: 100%;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  color: #333;
}

/* 入力欄 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
textarea {
  background: #fff;
  font-size: 16px;
}

/* 日付 */
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"] {
  font-size: 16px;
}

/* 数値 */
/* スピンボタン非表示*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* レンジ */
/* カラーピッカー */
select {
  width: 100%;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  background: url(images/down-select.png) no-repeat right 1em center;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

textarea {
  width: 100%;
  /* ieでスクロールバー非表示 */
  padding: 0.5em 1em;
  overflow: hidden;
  border: 1px solid #ccc;
}

input[type="submit"],
input[type="button"],
button {
  cursor: pointer;
}

form input[type="radio"] {
  display: none;
}

form input[type="radio"] + span {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position:relative;
}

form input[type="radio"] + span:before {
  margin-right: 0.3em;
  content: "";
  width:14px;
  height:14px;
  display:inline-block;
  border-radius:10px;
  border:1px solid #cccccc;
  position:relative;
  top:2px;
}

form input[type="radio"]:checked + span:after {
  content: "";
  width:10px;
  height:10px;
  background:#0063b1;
  display:inline-block;
  border-radius: 5px;
  position: absolute;
  left: 2px;
  top: 6px;
}

form input[type="checkbox"] {
  display: none;
}

form input[type="checkbox"] + span {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position:relative;
}

form input[type="checkbox"] + span:before {
  margin-right: 0.3em;
  content: "";
  width:14px;
  height:14px;
  display:inline-block;
  border:1px solid #cccccc;
  position:relative;
  top:2px;
}

form input[type="checkbox"]:checked + span:after {
  content: "";
  width: 14px;
  height: 10px;
  display: inline-block;
  position: absolute;
  left: 1px;
  top: 3px;
  border-bottom: 3px solid #0063b1;
  border-left: 3px solid #0063b1;
  transform: rotate(-45deg);
}

.prefbox select{
  width:100px;
  margin-bottom:0.5em;
  font-size:16px;
}

.wrap .contact-form table th,.wrap .contact-form table td {
    vertical-align: middle;
}

.contact-form button{
  background: #333;
  color: #ffffff;
  padding: 0.5em 1em;
  width: 50%;
  margin: auto;
  display: block;
  font-size: 18px;
  font-weight: bold;
}

.mw_wp_form_preview .list-caution{
  display:none;	
}

@media screen and (min-width: 901px) {
  select {
    width: 410px;
  }
  textarea {
    height: 210px;
	display:block;
  }
}

@media screen and (max-width: 640px) {
  textarea {
    height: 60vw;
	display:block;
  }
}

/*--------------------form.cssここまで--------------------*/





body {
  color: #333333;
  font-family: "メイリオ", Meiryo, "Noto Sans JP", sans-serif;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.textCenter {
  text-align: center;
}

.textJustify {
  text-align: justify;
  text-justify: inter-ideograph;
}

.weightBold {
  font-weight: bold;
}

.colorBlue {
  color: #555;
}

.text-common {
  line-height: 1.75;
margin-bottom: 2em;
	font-size: 16px;
}

.in_black{
	margin-right: 0.5em;
    background: #333;
    color: #fff;
    padding: 0.25em 0.5em;
    border-radius: 0px
}

html,
body {

}

body {
  overflow-x: hidden;	
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.flexCenter {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.flexLeft {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

.flexRight {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fullWidth {
  width: 100%;
}

.wp-block-image{
  margin-bottom:32px;
}

.wp-block-image figcaption{
  text-align:center;
  margin:10px 0 0;
  font-size:14px;
}

.company .wrap-main {
  background: url(images/bg-company-top.png) no-repeat center center;
}

.works .wrap-main {
  background: url(images/bg-works-top.png) no-repeat center center;
}

.recruit .wrap-main {
  background: url(images/bg-recruit-top.png) no-repeat center center;
}

.inner-main {
  color: #fff;
}

.inner-main h1 {
  margin-bottom: 1em;
}

.inner-main p {
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.list-post{
  margin-top:-20px;
}

.box-post-text {
  border-bottom: 1px solid #ccc;
}

.box-post-text a {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.box-post-text a > * {
  display: block;
  margin: 5px 0;
  line-height: 20px;
}

.box-post-text time {
  margin-right: 10px;
  font-size: 14px;
}

.main-column > p{
  font-size: 14px;
  text-align: justify;
  line-height: 1.7;		
}

.main-column ul{
  margin:15px 0;
}

.main-column ul li{
  font-size: 14px;
  line-height: 28px;
}

.main-column ul li:before{
  content:"";
  display:inline-block;
  height:10px;
  width:10px;
/*   background:#0063b1; */
    background: #555555;
  border-radius:5px;
	margin-right:5px;
}

.main-column pre{
  max-width:100%;
  font-size: 14px;
  text-align: justify;
  line-height: 1.7;	
  white-space: pre-wrap ;
}

.main-column table{
  margin:32px 0;
  width:100%;
}

.main-column table th,
.main-column table td{
   line-height: 1.75;	
}

.main-column table th{
  padding: 1em 1em;
  vertical-align: top;

}


.main-column table td{
  padding: 1em 1em;
  vertical-align: top; 

}



.main-column .box-post-text h3 {
  width: calc(100% - 180px);
  margin:0;
  padding:0;
  border:none;
  font-size: 14px;
  line-height:32px;
}

.wrap-post-img-text {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.wrap-post-img-text:after {
  display: block;
  width: 31%;
  height: 1px;
  content: "";
}

.box-post-img-text {
  width: calc((100% - 40px) / 3);
  margin: 20px 0;
}

.box-post-img-text a {
  display: block;
}

.box-post-img-text a > *:nth-child(1) {
  margin-bottom: 10px;
  position:relative;
}

.box-post-img-text a > *:nth-child(1) span{
  position:absolute;
  top:10px;
  border-radius:0 3px 3px 0;
}

.box-post-img-text img {
  width: 100%;
  height: auto;
}

.box-post-img-text time {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}



.main-column .box-post-img-text h3,.wrap-1column .box-post-img-text h3 {
      font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.5;
font-size: 17px;
    margin: 0.5em;
    padding: 0; 
    border: none;
}

.box-post-img-text p {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
	text-align: left;
}

.wrap-post-archive{
  margin-top:-20px;
}

.box-post-archive {
  border-bottom: 1px solid #ccc;
}

.box-post-archive a {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0;
}

.wrap-1column .box-post-archive a {
  padding: 40px 0;	
}

.box-post-archive a > div:nth-child(1) {
  width: 250px;
  margin-right: 20px;
}

.box-post-archive a > div:nth-child(2) {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: calc(100% - 270px);
}


.box-post-archive img {
  width: 100%;
  height: auto;
}

.box-post-archive time {
  display: block;
  margin-bottom: 1em;
  font-size: 14px;
  line-height: 20px;
}

.box-post-archive time:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(images/date.svg);
  background-size: cover;
  margin-right: 5px;
  position: relative;
  top: 2px;	
}

.main-column .box-post-archive h3,.wrap-1column .box-post-archive h3 {
  width: 100%;
  line-height: 1.5;
  font-size:20px;
  margin:0;
  padding:0;
  border:none;
}

.box-post-archive p {
  width: 100%;
  line-height: 1.5;
  font-size:14px;
  margin-top:5px;
  position:relative;
  padding-bottom:25px;
}

.box-post-archive p:before {
  content:"続きを読む";
  position:absolute;
  bottom:0;
  right:20px;
}

.box-post-archive p:after {
  content:"";
  display:block;
  height:14px;
  width:14px;
  background:url(images/triangle.svg);
  background-size:cover;
  position:absolute;
  bottom:4px;
  right:0;
}

.box-post-archive-side a {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.box-post-archive-side a > div:nth-child(1) {
  width: 65px;
  margin-right:10px;
}

.box-post-archive-side a > div:nth-child(2) {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: calc(100% - 100px);
}

.box-post-archive-side img {
  width: 100%;
	height:65px!important;
  height: auto;
}

.box-post-archive-side time {
  display: block;
  font-size: 10px;
  line-height: 20px;
}

.box-post-archive-side h3 {
  width: 100%;
  line-height: 1.5;
}

.box-post-archive-side .category-post {
  display: inline-block;
  width: 70px;
  padding:0 5px;
  height: 14px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wrap-post-archive-side{
	margin-top:12px;
}

.wrap-post-archive-side .box-post-archive-side:not(:last-child){
	margin-bottom:20px; 
}

.category-post {
  display: inline-block;
  width: 80px;
  height: 20px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.box-post-text .category-post {
  margin-right: 10px;
}

.header {
  z-index: 6;
  position: relative;
  background: #fff;
  position: fixed;
}

.header.over {
  position: fixed;
  left: 0;
	top: 0;
}

.header.over.active {
  /*position: fixed;
  top: 0;
  left: 0;*/
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  transition: all 0.5s 0.5s;
}

.inner-header {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.wrap-logo {
  display: flex;
  align-items: center;
}

.wrap-logo .logo {
  display: block;
}

.wrap-logo .logo:hover {
  opacity:1;
}

.wrap-logo .logo img {
  display: block;
  max-width: 100%;
  height: auto;
max-height: 72px;
}

.head-header {
    margin-left: 5.5em;
    line-height: 1.25;
    margin-top: 3px;
    font-size: 15px;
}


.wrap-tel-header p {
  font-size: 12px;
  text-align: right;
	margin-top:5px;
}

.tel {
  font-size: 28px;
  font-weight: bold;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  position:relative;
}

.tel:before {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.list-sp-menu {
  display: none;
}

.list-sp-menu li {
  width: 40px;
  height: 40px;
}

.sp-menu {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  text-align: center;
}

.sp-menu span {
  -webkit-transform: scale(0.8, 0.8);
  display: block;
  padding-top: 0.75em;
          transform: scale(0.8, 0.8);
  font-size: 10px;
}

.sp-menu:before {
  color: #555;
  font-size: 24px;
}

.nav-open {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}

.nav-open:after {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
    font-size: 10px;
    text-align: center;
    content: "MENU";
    padding-bottom: 0.1em;
    /* position: absolute; */
    /* bottom: 0px; */
    /* line-height: 1; */
    /* left: 15%; */
}

.footer {
  position:relative;
  margin-top:auto;
}

.footer-contact {
  padding: 50px 0;
  border-bottom: 1px solid #ccc;
}

.footer-contact * {
  text-align: center;
}

.footer-contact h3 {
  margin-bottom: 2em;
  padding: 0.5em 0;
  border-bottom: 1px solid #ccc;
  font-size: 20px;
  line-height: 1.5;
}

.footer-top {
     padding: 30px 0 ;
}

.inner-footer-top {
     display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
}

.box-info-footer {

	text-align: center;
}

.box-info-footer .logo {
  display: block;
  margin-bottom: 1em;
}

.box-info-footer img {

  height: auto;
}

.box-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 115px;
}

.info-footer {
  margin-bottom: 30px;
  line-height: 1.5;
}

.list-contact li:not(:last-child) {
  margin-bottom: 0.75em;
}

.btn-number {
  display: block;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: bold;
}

.btn-number:before {
  width: 3em;
  margin-right: 0.5em;
  background: #999999;
  color:#ffffff;
  font-size: 45%;
  font-weight: normal;
  line-height: 30px;
  text-align: center;
  vertical-align: bottom;
  border-radius:5px;
}

.btn-contact {
  display: block;
  position: relative;
  padding: 1em;
  border-radius: 3px;
  text-align: center;
}

.btn-contact:after {
  -webkit-transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

.footer-contents{
  width:840px;
  display:flex;
	justify-content:space-between;
}

.wrap-footer-nav {
  /*display: flex;
  justify-content: space-between;*/
  width: 100%;
}

.wrap-footer-nav .footer-nav li a span{
  display:none;
}

.wrap-footer-nav .footer-nav{
    /* width: calc((100% - 40px) / 3); */
    /* border-bottom: 1px solid #cccccc; */
    /*width: calc(100% - 200px);*/
    margin: 0 auto;
    display: flex;
    flex-flow: row;
}

.wrap-footer-nav .footer-nav li a{
 /* border-top:1px solid #cccccc;*/
  border-right:1px solid #cccccc;
 
  display:block;
	text-align: center;
}

.wrap-footer-nav .footer-nav li:last-of-type a{
	border-right: none;
}

.footer-facebook{
  width: calc((100% - 40px) / 3);	
}

.footer-twitter{
  width: calc((100% - 40px) / 3);	
}

.copyright {
  padding: 0.5em 0;
	font-size:12px;
	color:#ffffff;
	text-align:center;
}

.sidebar img {
  max-width: 100%;
  height: auto;
}

.widget_nav_menu,
.box-side {

}

.widget_nav_menu:not(:last-child),
.box-side:not(:last-child) {
  margin-bottom: 30px;
}

.widget_nav_menu h3,
.head-side {
     position: relative;
    padding: 0.75em 0 0.5em;
    font-size: 16px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    /* justify-content: center; */
    background-color: #eee;
    padding: 0.5em 1em;
	line-height: 1;
}


.widget_nav_menu h3:before,.head-side:before{
  margin-right:0.5em;
}

.widget_nav_menu h3:after,.head-side:after {
  margin-left:0.5em;	
}



.widget_nav_menu .menu > li{
  position:relative;
}

.widget_nav_menu .menu > li,.list-side > li {
  border-bottom: 1px solid #eee;
}

.widget_nav_menu .menu > li a,
.list-side > li a {
  display: block;
  position: relative;
  padding: 0.75em 0;
  background: #fff;
  line-height: 1.25;
}

.widget_nav_menu ul > li > ul.sub-menu{
  visibility:hidden;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  opacity:0;
  transition:0.5s;
}

.widget_nav_menu ul > li:hover > ul.sub-menu{
  visibility:visible;
  z-index:10;
  opacity:1;

}

.widget_nav_menu ul > li > ul.sub-menu > li:nth-child(1):before{
  content: "";
  height: 15px;
  width: 15px;
  display: block;
  background: #0063b1;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -8px;
  margin: auto 0;
  z-index: -1;	
}

.widget_nav_menu ul > li > ul.sub-menu > li > ul > li:nth-child(1):before{
 background: #104f82;	
}

.widget_nav_menu ul > li > ul.sub-menu > li:not(:last-child) {
  border-bottom: 1px solid #c9caca;
}


.widget_nav_menu ul > li > ul.sub-menu > li{
  position:relative;
}

.widget_nav_menu ul > li > ul.sub-menu > li a{
  background:#0063b1;
  padding:0.75em 1em;
  color:#ffffff;
  z-index:1;
}

.widget_nav_menu ul > li > ul.sub-menu > li a:hover{
  opacity:1;
  background:#333;
}

.widget_nav_menu ul > li > ul.sub-menu > li > ul  > li > a{
  background:#104f82;	
}


.wp-caption-text{
  font-size: 12px;
  line-height: 2em;
  margin-top: 0.5em;
  width: 300px;
  text-align: justify;
}

.list-side2 {
  margin-bottom: 1em;
}

.list-side2 li {

}

.list-side2 li:not(:first-child) {
  margin-top: 15px;
}

.list-side2 a {
  display: flex;
}

.list-side2 a div:nth-child(1) {
  width: 90px;
  margin-right: 10px;
}

.list-side2 a div:nth-child(2) {
  width: 200px;
}

.box-side2 .list-side2 img {
  width: 100%;
  height: 90px!important;
}

.list-side2 time {
  display: block;
  margin-bottom: 0.5em;
  font-size: 12px;
}

.list-side2 span {
  font-size: 14px;
  line-height: 1.5;
}

.side-compnay {
  line-height: 1.5;
}

.side-compnay picture{
  margin-top:12px;
}

.side-compnay img {
	margin-top: 1em;
  margin-bottom: 1em;
}

.side-address-compnay {
  margin-bottom: 1em;
}

.side-address-compnay p:before{
  content:"";
  display:inline-block;
  width:14px;
  height:14px;
  margin-right:5px;
  background-size:cover;
  position: relative;
  top: 2px;
}

.company_name:before{
  background:url(images/company.svg); 
}

.company_zipcode:before{
  background:url(images/zip.svg); 
}

.company_pref:before{
  background:url(images/pref.svg); 
}

.company_tel:before{
  background:url(images/tel2.svg); 
}

.company_fax:before{
  background:url(images/fax.svg); 
}

.side-list-compnay {
  display: flex;
  justify-content: space-between;
}

.side-list-compnay li{
  width:48%;	
}

.side-list-compnay a {
  display: block;
  padding: 0.5em 1em;
  border: 1px solid #aaaaaa;
  font-size: 12px;
  text-align: center;
}

.side-access:before {
  margin-right: 0.5em;
  color: #dc4b3e;
}

.side-company:after {
  margin-left: 1em;
}

.box-search {
  display: flex;
  padding-top:12px;
}

.box-search input[type="text"] {
  width: 85%;
  padding: 7px 14px 6px;
  border-radius: 5px 0 0 5px;
}

.box-search button[type="submit"] {
  width: 15%;
}

.box-search .fa-search {
  display: block;
  background: #666666;
  height: 39px;
  border-radius: 0 5px 5px 0;
  position:relative;
}

.box-search .fa-search:before {
  content:"";
  background:url(images/search.svg);
  background-size:cover;
  display:block;
  height:20px;
  width:20px;
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
  margin:auto;
}

.check {
  display: none;
}

.check + .parent {
  display: flex;
  justify-content: space-between;
  padding: 0.75em 1em;
  background: #555;
  color: #fff;
  line-height: 1.25;
  cursor: pointer;
}

.check + .parent:after {
  content: "▼";
}

.check + .parent + ul {
  display: none;
}

.check:checked + .parent:after {
  content: "▲";
}

.check:checked + .parent + ul {
  display: block;
}

.breadcrumb {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 2em;
  padding: 1em 0 0.5em;
}

.breadcrumb li:nth-child(1){
  padding-left:26px;
  position:relative;
}

.breadcrumb li:nth-child(1) a:before{
  content:"";
  width:18px;
  height:15px;
  display:inline-block;
  background:url(images/home.svg);
  background-size:cover;
  margin-right:5px;
  position:absolute;
  left:0;
  top:-2px;
  
}

.breadcrumb li:not(:first-child):before {
  margin: 0 0.5em 0 1em;
  font-size: 12px;
  content: "/";
}

.breadcrumb a,
.breadcrumb span {
  font-size: 12px;
}

.breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.interval5em > *:not(:last-child) {
  margin-bottom: 0.5em;
}

.interval10em > *:not(:last-child) {
  margin-bottom: 1em;
}

.interval15em > *:not(:last-child) {
  margin-bottom: 1.5em;
}

.interval20em > *:not(:last-child) {
  margin-bottom: 2em;
}

.interval25em > *:not(:last-child) {
  margin-bottom: 2.5em;
}

.interval30em > *:not(:last-child) {
  margin-bottom: 3em;
}

.interval35em > *:not(:last-child) {
  margin-bottom: 3.5em;
}

.interval40em > *:not(:last-child) {
  margin-bottom: 4em;
}

.interval45em > *:not(:last-child) {
  margin-bottom: 4.5em;
}

.interval50em > *:not(:last-child) {
  margin-bottom: 5em;
}

.main-visual {
  position:relative;
  top: 95px;
  overflow-x: hidden;
}


.main-visual .noslide {
  width:1920px;
  position:relative;

    left: 50%;
    transform: translate(-50%);
}

body:not(.index) .main-visual {
  display: flex;
  align-items: center;
  height: 150px;
background-image: linear-gradient(-60deg, #16a085 0%, #f4d03f 100%);

  margin-bottom: 125px;
}

body.service .main-visual {
background-image: linear-gradient(-60deg, #16a085 0%, #f4d03f 100%);
}

body.info .main-visual {
background-image: linear-gradient(-60deg, #16a085 0%, #f4d03f 100%);
}

body.works .main-visual {
background-image: linear-gradient(-60deg, #16a085 0%, #f4d03f 100%);
}

body.search .main-visual {
background-image: linear-gradient(-60deg, #16a085 0%, #f4d03f 100%);
}

.main-visual picture {
  display: block;
}

.main-visual img {
  width: 100%;
  height: auto;
}

.head-page {
  color: #fff;
  font-size: 32px;
  letter-spacing: 0.3em;
  text-align: center;
  text-indent: 0.3em;
}

.head-page:after {
  margin-top: 0.5em;
  font-size: 16px;
}

.wrap-slider {
  position: relative;
  width: 1920px;
  left: -360px;	
}

.wrap-slider .slider {
  position: relative;
  width: 100%;
  height: 600px;
}

.wrap-slider .slider li {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-fill-mode: backwards;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
          animation-name: fade;
          animation-duration: 15s;
          animation-fill-mode: backwards;
          animation-iteration-count: infinite;
}

.wrap-slider .slider li:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.wrap-slider .slider li:nth-child(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.wrap-slider .slider li:nth-child(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

@-webkit-keyframes fade {
  0% {
    display: none;
    opacity: 0;
  }
  10% {
    display: block;
    opacity: 1;
  }
  33% {
    display: block;
    opacity: 1;
  }
  45% {
    display: none;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    display: none;
    opacity: 0;
  }
  10% {
    display: block;
    opacity: 1;
  }
  33% {
    display: block;
    opacity: 1;
  }
  45% {
    display: none;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

.wrap-head-common {
  margin-bottom: 30px;
}

.head-common {
  line-height: 1.5;
}


.main-column h2 {
  font-size: 26px;
}

.main-column h2 {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.5;
  margin-bottom:32px;
  margin-top:80px;
}

.main-column h2:after {
  display: block;
  content: "";
  height: 1px;
  background-color: #999999;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  min-width: 20px;
  margin-left:20px;
}

.main-column h2 + p{
	margin-top:-20px;
}

.wrap-1column h2 {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  letter-spacing: 0.25rem;
  text-indent:0.3em;
  font-size:30px;
  margin-bottom: 30px;
	line-height: 1.5;

	&.ex{
  font-size:min(+6vw,42px);
  color: #a26c35;
  font-weight: 700;
		line-height: 1.5;
		letter-spacing: 0.25rem;
 }
}

.wrap-1column h2:after {
  display: block;
  width: 100px;
  height: 1px;
  margin-top: 25px;
  background: #555;
  content: "";
}

.single-post .head-common {
  font-size: 36px;
  border-bottom:1px solid #999999;
}

a:hover {
  opacity: 0.7;
  transition: 0.2s;
}

.hover-opacity1 a:hover {
  opacity: 1;
}

.wrap-btn {
  display: flex;
}

.section-about .wrap-btn {
  justify-content: flex-end;
}

.btn-archive {
margin:0 auto;
  display: block;
  z-index: 1;
  position: relative;
  width:50%;
  min-width:200px;
  margin-top: 40px;
  padding: 1em;
  background:#333;
  text-align: center;
  transition: 0.5s;

	display: block;
    z-index: 1;
    position: relative;
    width: 26%;
    min-width: 200px;
    margin-top: 40px;
    padding: 1em;
   background:#fff;
    text-align: center;
    transition: 0.5s;
    border: 1px solid #ccc;
    color: #222;
	/*    border-radius: 5px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 1px rgba(0, 0, 0, 0.19);*/
}

.footer-contact .btn-archive {
  min-width: 350px;
  margin: 2em 0;
  box-shadow: 0 0 3px 1px #ccc;
}

.sidebar .btn-archive {
  margin-top: 15px;	
}

.section-about .btn-archive {
  width:100%;
  min-width:100px;
}

.btn-archive:hover {
  background:#eee;

  opacity: 1;
}

.btn-archive:after {
  -webkit-transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  width: 12px;
  height:12px;
  margin: auto;
          transform: rotate(45deg);
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  content: "";
color:#333;
}

.btn-archive:after:hover{

  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  

}

.btn-form,
button.btn-form {
  border: 1px solid #555;
  background: #555;
  color: #fff;
  text-align: center;
}

.btn-form:hover,
button.btn-form:hover {
  background: #fff;
  color: #555;
  opacity: 1;
}

.global-nav {
  display: flex;
  z-index: 2;
  width: 100%;
}

.global-nav > li {
  position: relative;
  /* flex: 1;
border-right: 1px solid #ccc;*/
margin-right:20px;
}

.global-nav > li:first-child {
 /* border-left: 1px solid #ccc;*/
}

.global-nav > li > a {
  /*display: block;*/
  padding:0.5em 0;
  /*text-align: center;*/
  position:relative;
}

.global-nav > li > a span{
  display:block;
  font-size:10px;
  margin-top:4px;
  margin-bottom:-4px;
}

.global-nav > li a:before {
  content: "";
  display: block;
  height: 1px;
  width:0;
  background: #333;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  transition:0.5s;
}

.global-nav > li a:hover:before {
  width: 100%;

}



.global-nav > li > ul {
  z-index: 2;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  width: 100%;
  height:auto;
  opacity: 0;
  transition:0.5s;
  visibility: hidden;
}


.global-nav > li:hover > ul{
  height:auto;
  opacity:1;
  transition:0.5s;
  top: calc(100% + 15px);
  visibility: visible;
}

.global-nav > li:hover > ul:before{
  content:"";
  display:block;
  height:15px;
  width:100%;
  position:absolute;
  top:-15px;
  right:0;
  left:0;
  margin:0 auto;
}

.global-nav > li:hover > ul:after{
  content:"";
  height:0; 
  width:0;
  display:block;
  border-color: transparent transparent #0063b1;
  border-style: solid;
  border-width: 0 10px 10px;
  position:absolute;
  top:-10px;
  right:0;
  left:0;
  margin:0 auto;
  z-index:-1;
}

.global-nav > li > ul.sub-menu > li > ul > li{
	position:relative;
}

.global-nav > li > ul.sub-menu > li > ul > li:nth-child(1):before{
  content: "";
  height: 0;
  width: 0;
  display: block;
  border-color: transparent transparent #104f82;
  border-style: solid;
  border-width: 10px 10px 10px;
  position:absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  margin: auto 0;
  z-index:2;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.global-nav > li:last-child > ul.sub-menu > li > ul > li:nth-child(1):before{
  left:initial;
  right: -20px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);	
}



.global-nav > li > ul.sub-menu > li a:hover{
  background:#333;
  opacity:1;
}



.global-nav > li > ul > li{
  position:relative;
  transition:0.5s;
}

.global-nav > li > ul > li > ul{
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  opacity:0;
  visibility:hidden;
  transition:0.5s;
  z-index:1;
}

.global-nav > li > ul > li:hover > ul{
  opacity:1;
  visibility:visible;
  transition:0.5s;

}


.global-nav > li:last-child > ul > li > ul{
  right:100%;
  left:initial;
}



.global-nav > li > ul > li > ul > li{
  opacity:0;
  visibility:hidden;

}

.global-nav > li > ul > li:hover > ul > li{
  opacity:1;
  visibility:visible;
}

.global-nav > li > ul.sub-menu > li > ul > li > a{
  background:#104f82;
}
 

.global-nav .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #c9caca;
}

.global-nav .sub-menu a {
  display: block;
  padding: 1em;
  text-align: center;
}

.global-nav li > ul > li > a{
	z-index:10;
}

.drawer-nav > li,.drawer-nav > li > ul > li {
  position: relative;
  border-bottom: 1px solid #ccc;
  line-height: 1.75;
}

.drawer-nav > li > ul > li:last-child {
  border-bottom: none;	
}

.drawer-nav > li > a,.drawer-nav > li > ul > li > a {
  z-index: 1;
  position: relative;
}


.drawer-nav li a span{
  display:none;
}

.drawer-nav .sub-menu {
  display: none;
  border-top: 1px solid #ccc;
}

.drawer-nav a {
  display: block;
  padding: 0.5em 1em;
}

.drawer-nav a:after {
    -webkit-transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    top: 0;
    right: 1em;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    transform: rotate(45deg);
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    content: "";
}

/*
.drawer-nav a:before {
  content:"●";
  margin-right:3px;
  color:#555;
}*/

.drawer-nav .btn-sub {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  margin: auto;
  color:#999999;
}

.footer-nav > li {
  line-height: 1.75;
	width:calc(100%/6);
		font-size: 12px;
}

.footer-nav > li > a {
  position: relative;
}

.footer-nav a:before {
 /* -webkit-transform: rotate(45deg);
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.5em;
          transform: rotate(45deg);
  border-top: 2px solid #131313;
  border-right: 2px solid #131313;
  vertical-align: 5%;
  content: "";*/
}

.footer-nav .sub-menu li a{
  padding-left: 1em;
}

.footer-nav .sub-menu li ul li a{
  padding-left: 2em;
}

.pagination {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  color: #555;
}

.pagination li {
  margin: 0 5px;
}

.pagination .pager {
  display: inline-block;
  min-width: 40px;
  border-radius: 50%;
  background: #999;
  color: #fff;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}

.pagination .pager i {
  vertical-align: bottom;
}

.pagination .pager i:before {
  display: block;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.pagination .pager:hover,
.pagination .pager.current {
  background: #555;
  opacity: 1;
}

.pagetop {
  display: flex;
  z-index: 5;
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #555;
  color: #fff;
  text-align: center;
  transition: 0.3s;
  /*
	.fas {
		display: block;
		padding: 0.25em 0 0em;
		height: 1em;
	}
	img{
		height: auto;

		@include media(pc) {
			width: 96px;
		}
		@include media(sp) {
			width: 15vw;
		}
	}
	.fas{
		display: block;
		font-weight: bold;
		color: #fff;
		text-align: center;
		background: $color-main;
		background-size: contain;
		
		@include media(pc) {
			width: 50px;
			height: 50px;
			font-size: 20px;
			line-height: 50px;
		}
		@include media(sp) {
			width: 10vw;
			height: 10vw;
			font-size: 4vw;
			line-height: 10vw;
		}
	}
*/
}

.pagetop span {
  -webkit-transform: rotate(-45deg);
  display: block;
  width: 25%;
  height: 25%;
  margin-top: 5px;
          transform: rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
  width:100%;
}

.loading {
  z-index: 10100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
}

.loading img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  margin: auto;
}

.bg-loading img {
  background: #aaa url(images/bg-loading.svg) no-repeat center center;
  background-size: 50px;
}

.stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.dot-pulse {
  -webkit-animation: dotPulse 1.5s infinite linear;
  -webkit-animation-delay: 0.25s;
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #555;
  box-shadow: 9999px 0 0 -5px #00529c;
  color: #00529c;
          animation: dotPulse 1.5s infinite linear;
          animation-delay: 0.25s;
}

.dot-pulse::before, .dot-pulse::after {
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #00529c;
  color: #00529c;
  content: "";
}

.dot-pulse::before {
  -webkit-animation: dotPulseBefore 1.5s infinite linear;
  -webkit-animation-delay: 0s;
  box-shadow: 9984px 0 0 -5px #00529c;
          animation: dotPulseBefore 1.5s infinite linear;
          animation-delay: 0s;
}

.dot-pulse::after {
  -webkit-animation: dotPulseAfter 1.5s infinite linear;
  -webkit-animation-delay: 0.5s;
  box-shadow: 10014px 0 0 -5px #00529c;
          animation: dotPulseAfter 1.5s infinite linear;
          animation-delay: 0.5s;
}

@-webkit-keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 9984px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px #00529c;
  }
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 9984px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px #00529c;
  }
}

@-webkit-keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 9999px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px #00529c;
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 9999px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px #00529c;
  }
}

@-webkit-keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 10014px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px #00529c;
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 10014px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px #00529c;
  }
}

.nav-link {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.link-prev,
.link-next,
.link-archive {
  width: 180px;
  position:relative;
}

.link-prev a,
.link-next a,
.link-archive a {
  display: block;
  padding: 1em;
  /*background: #555;*/
  /*color: #fff;*/
  text-align: center;
}

.link-prev a:before, .link-prev a:after,
.link-next a:before,
.link-next a:after,
.link-archive a:before,
.link-archive a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.link-archive {
  order: 2;
}

.link-archive a {
/*  background: #555;
  color: #fff;*/
}

.link-prev a:before {
  -webkit-transform: rotate(225deg);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 1em;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  transform: rotate(225deg);
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  content: "";
}

.link-next {
  order: 3;
  text-align: right;
}

.link-next a:after {
  -webkit-transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  transform: rotate(45deg);
  border-top: 3px solid #333;
    border-right: 3px solid #333;
  content: "";
}

.icon-phone:before {
  content: "\f095";
}

.icon-access:before {
  content: "\f1ac";
}

.icon-mail:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f0e0";
}

.icon-question:before,
.icon-tel:before {
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: -10%;
  content: "";
}

.icon-question:before {
  background: url(images/icon-question.png) no-repeat center center;
  background-size: contain;
}

.icon-tel:before {
  background: url(images/icon-tel.png) no-repeat center center;
  background-size: contain;
}

.bg-blue {
  background: #555;
}

.bg-stripe-blue {
  background-image: linear-gradient(90deg, #555 0, #555 3%, transparent 3%, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat;
  background-size: 18px 18px;
}

.index .overlay {
  position: relative;
}

.list-num > li {
  list-style-position: inside;
  counter-increment: cnt;
}

.list-num > li:before {
  display: inline-block;
  content: counter(cnt);
}

.main-column ul.list-caution{
  margin:0.5em 0 0;
}


ul.list-caution li{
  font-size:12px;
  line-height:16px;
}


ul.list-caution li:before {
  content: "※";
  height:initial;
  width:initial;
  background:none;
}

.list-circle > li {
  margin-left: 1em;
  text-indent: -1em;
}

.list-circle > li:before {
  content: "●";
}

.list-circle-border > li {
  margin-left: 1em;
  text-indent: -1em;
}

.list-circle-border > li:before {
  content: "○";
}

.list-dot > li {
  margin-left: 1em;
  text-indent: -1em;
}

.list-dot > li:before {
  content: "・";
}

.imgFullWidth {
  display: block;
  width: 100%;
  height: auto;
}

/*
* object-fitのclassとie対応（ofi.js必要）
*/
.ofi-cover {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.ofi-contain {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.wrap-zoom {
  overflow: hidden;
}

.wrap-zoom > img {
  transition: 0.5s;
}

.wrap-zoom > img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*　疑似要素テキスト　*/
.attrTextLeft:before,
.attrTextTop:before,
.attrTextBottom:after,
.attrTextRight:after {
  content: attr(data-text);
}

.attrTextLeft:before,
.attrTextRight:after {
  display: inline-block;
}

.attrTextTop:before,
.attrTextBottom:after {
  display: block;
}

/*　疑似要素テキスト　*/
/*　疑似要素アイコン　*/
.attrIconLeft:before,
.attrIconTop:before,
.attrIconBottom:after,
.attrIconRight:after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #0063b1;
  position: absolute;
  left: -36px;
  top: -2px;
  border-radius:5px;
}

.attrIconLeft:after{
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background:url(images/tel.svg);
  background-size:cover;
  position: absolute;
  left: -36px;
  top: -2px;
  border-radius:5px;
  margin:5px;
}

.attrIconTop:before,
.attrIconBottom:after {
  display: block;
}

.attrIconLeft:before,
.attrIconRight:after {
  display: inline-block;
}

/*　疑似要素アイコン　*/
#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}

#nav-open {
  z-index: 10000;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  margin: auto;
  vertical-align: middle;
}

#nav-open:hover {
  cursor: pointer;
}

#nav-open span {
  position: absolute;
  right: 0;
  left: 0;
  width: 80%;
  height: 3px;
  margin: auto;
  background: #555;
  transition: all 0.5s;
}

#nav-open span:nth-of-type(1) {
  top: 0px;
}

#nav-open span:nth-of-type(2) {
  top: 9px;
}

#nav-open span:nth-of-type(3) {
  top: 18px;
}

/*閉じる用の薄黒カバー*/

.btn-close {
  margin: 40px;
  padding: 1em;
  background: #555;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

#nav-input:checked ~ #nav-open span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
  transition: all 0.5s;
}

#nav-input:checked ~ #nav-open span:nth-of-type(2) {
  opacity: 0;
}

#nav-input:checked ~ #nav-open span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
  transition: all 0.5s;
}

.table-common {
  width: 100%;
}

.table-common th {
  letter-spacing: 0.2em;
  line-height: 2;
}

.table-common td {
  letter-spacing: 0.1em;
  line-height: 2;
}

.table-common a {
  text-decoration: underline;
}

.table-contact {
  width: 100%;
  border-top: 1px solid #ccc;
}

.table-contact th {
  position: relative;
}

.table-contact th.required:after {
  position: absolute;
  right: 0;
  height: 1.5em;
  padding: 0 1em;
  background: #e60012;
  color: #fff;
  line-height: 1.5;
  content: "必須";
}

.table-contact td {
  border-bottom: 1px solid #ccc;
}

.wrap-about {
 /* display: flex;
  flex-flow: row-reverse nowrap;
  width: 100%;*/
}

.wrap-about > div:nth-child(1) {
  /*margin-left: 25px;*/
}

.wrap-about > div:nth-child(2) {
  width: calc(100% - 256px - 25px);
}

.wrap-message {
     display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}
/*
.wrap-message > div {
  margin: 25px;
}*/

.wrap .wrap-message h3{
  margin-top:0;
}



.wrap-message > div:nth-child(2) {
  text-align: left;
	width: 65%;
}

.top-message {
  margin-bottom: 0.5em;
  font-family: "リュウミン M-KL", "Ryumin Medium KL", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 48px;
  line-height: 1.25;
}

.single-post {
  margin-bottom: 10em;
}

.single-header {
  margin-bottom: 1em;
  display:flex;
  justify-content:space-between;
}

.single-header time {
  margin-right: 2em;
  font-size: 14px;
}

.single-header time:before {
  content:"";
  display:inline-block;
  width:14px;
  height:14px;
  background:url(images/date.svg);
  background-size:cover;
  margin-right:5px;
  position:relative;
  top:2px;
}

.single-contents > *:not(:last-child) {
  margin-bottom: 1em;
}

.main-column > *:nth-child(1){
  margin-top:0;
}



.main-column h3 {
  margin: 2em 0 1em;
  padding: 0.25em 0;
  border-bottom: 2px solid #555;
  font-size: 22px;
  line-height: 1.25;
}

.president{
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; 
  margin-top:1em;
  font-weight: bold;
  color: #000000;
  font-size: 16px;
}


.main-column h3 + p{
  margin-top:-10px;	
}

.main-column .box-post-img-text h3 + p,.main-column .box-post-archive p{
  margin-top:0;		
}

.main-column h4 {
  margin: 2em 0 0.5em;
  font-size: 20px;
  line-height: 1.25;
}

.main-column h4:before {
  margin-right: 0.5em;
  color: #555;
  content: "■";
}

.single-contents p {
  line-height: 2;
}

.single-contents img {
  max-width: 100%;
  height: auto;
}

.single-contents iframe {
  max-width: 100%;
}

.single-contents table {
  width: 100%;
}

.single-contents table th,
.single-contents table td {
  padding: 0.5em 1em;
  line-height: 1.5;
}

.single-contents strong {
  font-weight: bold;
}

.related{
  margin-top:50px;
}

.wp-block-media-text{
  margin:32px 0;
}

.wp-block-media-text{
align-items:start;
}

.wp-block-media-text > *:nth-child(1){
  margin-right:32px;
}

.wp-block-media-text.has-media-on-the-right > *:nth-child(1){
  margin-right:0px;	
}

.wp-block-media-text.has-media-on-the-right > *:nth-child(2){
  margin-right:32px;	
}

.wp-block-media-text .wp-block-media-text__content{
  padding:0;
}

.wp-block-media-text .wp-block-media-text__content p,.wp-block-column p{
font-size: 16px;
  text-align: justify;
  line-height: 1.7; 
}

.wp-block-columns{
  margin:32px 0;
}

.wp-block-column .wp-block-image{
  margin-bottom:10px;
}

.wp-block-button{
  margin:15px 0 32px;
}

.wp-block-button__link{
  min-width:50%;
}


.wp-block-cover{
  margin:32px 0;	
}

.main-column ul.nav-link li:before{
  content:none;
}


.main-column ul.nav-link li.link-archive:nth-child(1){
	margin:0 auto;
}

.has-very-dark-gray-background-color.has-very-dark-gray-background-color {
  background-color: #0063b1;
}


.main-column .sitemap > li{
  border-top:1px solid #cccccc;
}

.main-column .sitemap > li > a{
  padding:10px 0;	
  display: block;
}

.main-column .sitemap > li:last-child{
	border-bottom:1px solid #cccccc;	
}



.main-column .sitemap li a span{
  display:none;
}


.main-column .sitemap .sub-menu{
	margin:0;
}

.main-column .sitemap > li > ul > li{
	width:calc(100% * 2 / 3);
	margin-left:calc(100% / 3);
	border-top:1px solid #cccccc;
}

.main-column .sitemap > li > ul > li > a{
	padding:10px 0;	
	display:block;
}

.main-column .sitemap > li > ul > li > ul > li{
	width:calc(100% / 2);
	margin-left:calc(100% / 2);
	border-top:1px solid #cccccc;
}


.main-column .sitemap > li > ul > li > ul > li > a{
	padding:10px 0;	
	display:block;	
}




.main-column .sitemap li:before{
  content:none;
}

.main-column .contact-form table th{
  padding:1em 1em;
}

.main-column .contact-form table td{
  padding:1em 1em;
}
/*
.section-about h2{
  margin-bottom:15px;
}*/

.section-about .btn-archive{
  margin-top:15px;	
}

.main-column .wrap-post-img-text .box-post-img-text h3{
  margin-top:5px;
}

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

.contents {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
	
.has-large-font-size{
  font-size:42px;		
}
	

	
.wrap-2column .main-column {
  width: 840px;
}
	
.main-column > p{
  font-size:14px;
  text-align:justify;
  line-height:1.7;
}
	

.wrap-1column-narrow .main-column {
  width: 840px;
  margin:0 auto;
}
	

	
.wp-block-cover__inner-container p{
  color:#ffffff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.wrap-message > div:nth-child(1) {
  /*width: calc(100% - 222px - 50px);*/
width: 30%;
	}
	

	
}




@media screen and (min-width: 901px) and (max-width:1240px) {
  .contents {
  width: calc(100% - 80px);
  margin-right: auto;
  margin-left: auto;
  }
	
  .wrap-2column .main-column {
    width:calc(100% - 340px);
  }
	
  .footer-contents {
   /* width:calc(100% - 340px);*/
  }
	
	.footer-contents .footer-nav a{
    /*font-size:1.2vw;*/
  }

	.wrap-message{
    /*flex-flow: column;	*/	
	}

	.wrap-message > div:nth-child(1){
    /*width: 100%;*/
    box-sizing: border-box;
    margin: 0;
		width: 30%;
    /*padding: 25px;*/
	}
	
	.lazyloaded{
	width:initial;
	}
	
	.main-visual .noslide{
	width:calc((100% - 80px) * 1.6);
/* 	left:calc((100% - 80px) * -0.3); */
	}

}



@media screen and (min-width: 901px) {
  .tb {
    display: none;
  }
  .sp {
    display: none;
  }
	
  body.over {
    /*padding-top: 128px;*/
  }
	
		.wrap-1column{
		width: 980px;
		margin: 0 auto;
	}
	
  .wrap-2column {
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
  }

  .wrap-2column .sidebar {
    width: 300px;
  }
  .index .wrap {
    padding: 70px 0 0px;
  }
  body:not(.index) .wrap {
    padding: 0 0 150px;
  }
  .inner {
    padding: 0 50px;
  }
  .wrap-section-interval > *:not(:last-child) {
    margin-bottom: 90px;
  }
  .wrap-section-padding > * {
    padding: 60px 0;
  }
  .wrap-2column .section-common:nth-child(1) h2{
    margin-top: 0px;
  }
  .wrap-1column .section-common {
    padding: 120px 0 50px;
    margin-top: 0px;
    text-align: center;
  }
  .wrap-main {
    display: flex;
    position: absolute;
    top: -25px;
    left: -450px;
    align-items: center;
    justify-content: flex-end;
    width: 898px;
    height: 305px;
    padding: 50px;
  }
  .inner-main {
    width: 250px;
  }
  .inner-main h1 {
    font-size: 26px;
  }
  .inner-main p {
    font-size: 14px;
  }
  .wrap-post-img-text {
    margin: -20px 0;
  }
	
  .header.over {
    /*top: -48px;*/
  }
  .header.over .inner-header {
  /*  display: none;*/
  }
  .wrap-tel-header {
    display: flex;
    flex-direction: column-reverse;
  }
	
  a[href^="tel:"] {
    pointer-events: none;
  }
  .btn-form,
  button.btn-form {
    width: 250px;
    padding: 1em;
    font-size: 15px;
  }
  .drawer-nav {
    display: none;
  }
  .pagetop {
  right: 20px;
  bottom: -20px;
  opacity:0;
  transition:0.5s;
  }
  .pagetop.active {
  bottom: 20px;
  opacity:0.7;
  transition:0.5s;
  }
	.pagetop.active:hover {
  opacity:1;	
  }	
	
  .icon-question:before,
  .icon-tel:before {
  width: 15px;
  height: 15px;
  }
  .bg-footer {
    background: url(images/bg-footer.jpg) no-repeat center top -1px;
    background-size: 2001px 273px;
  }
  .index .overlay:before {
    z-index: 4;
    position: absolute;
    top: -40px;
    left: -450px;
    width: 480px;
    height: 743px;
    background: rgba(0, 155, 219, 0.6);
    content: "";
  }
  .index1:after {
    z-index: 1;
    position: absolute;
    top: -160px;
    left: -450px;
    width: 898px;
    height: 864px;
    background: url(images/index1.png) no-repeat center center;
    content: "";
  }
  .bg-company {
    background: url(images/bg-works.png) no-repeat center top;
  }
  .bg-outline {
    background: url(images/bg-outline.jpg) no-repeat center top;
  }
  .bg-history {
    background: url(images/bg-history.jpg) no-repeat center top;
  }
  .bg-access {
    background: url(images/bg-access.jpg) no-repeat center top;
  }
  #nav-open {
    display: none;
  }
  .btn-close {
    display: none;
  }
  .table-common th {
    width: 180px;
    padding: 0.5em 1em;
    vertical-align: top;
  }
  .table-common td {
    padding: 0.5em 1em;
    vertical-align: top;
  }
  .table-contact {
    margin-bottom: 60px;
  }
  .table-contact th {
    width: 230px;
    padding: 2em 0 0 1em;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
    vertical-align: middle;
    vertical-align: top;
  }
  .table-contact th.required:after {
    top: 2.5em;
    font-size: 11px;
  }
  .table-contact td {
    padding: 1em 2em;
  }
  .confirm .table-contact td {
    height: 72px;
    line-height: 40px;
  }
	
  .wrap-1column .box-post-archive a > div:nth-child(1) {
    width: 300px;
    margin-right: 40px;	
  }
	
  .wrap-1column .box-post-archive a > div:nth-child(2) {
    width: calc(100% - 420px);	
  }	
	
	
}


@media screen and (min-width: 641px) and (max-width:900px){
  .wrap-1column .box-post-archive a > div:nth-child(1) {
    width: 240px;
    margin-right: 40px;	
  }
	
  .wrap-1column .box-post-archive a > div:nth-child(2) {
    width: calc(100% - 280px);	
  }	
	
.wrap-message > div:nth-child(1) {
    /* width: 100%; */
    box-sizing: border-box;
    margin: 0;
    width: 30%;
    /* padding: 25px; */
}
	
.wrap-message > div:nth-child(2) {
    text-align: left;
    width: 65%;
}
	
	.wrap-message > div:nth-child(2) .btn-archive{
    min-width:100%;
	
	}
	
	.main-visual .noslide{
	width:calc(92% * 1.6);
/* 	left:calc(92% * -0.3); */
	}
	
	
}


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


@media screen and (max-width: 900px) {
 /* .pc {
    display: none;
  }*/
  .sp {
    display: none;
  }
  body.over {
  /*  padding-top: 80px;*/
  }
  .tb-contents {
    width: 100%;
  /*padding-right: 4%;
  padding-left: 4%;*/
  }
  .sp-contents {
    width: 100%;
  padding-right: 4%;
  padding-left: 4%;
  }
	
	.wrap-1column{
	width: 90%;
		margin: 0 auto;
	}
	
  .wrap-2column .main-column {
    margin-bottom: 10vw;
  }

  .wrap-2column .section-common:nth-child(1) h2 {
    margin-top: 0px;
  }

  .index .wrap {
    padding: 10vw 0 0vw;
  }
  body:not(.index) .wrap {
    padding: 0 4% 20vw;
  }
  .wrap-section-interval > *:not(:last-child) {
    margin-bottom: 15vw;
  }
  .wrap-section-padding > * {
    padding: 10vw 0;
  }
  .wrap-2column .section-common:not(:last-child) {
    margin-bottom: 10vw;
  }
  .wrap-1column .section-common {
    padding: 22vw 0 0;
	  margin-top: -12vw;
	  text-align: center;
  }
  .box-post-text a {
    flex-flow: row wrap;
    padding: 5px 0;
  }
  .header.over {
   /* top: -80px;*/
  }
  .wrap-logo {
    margin-left: 20px;
  }
  .head-header {
    width: 55%;
  }
  .wrap-tel-header {
    display: none;
  }
  .inner-footer-top {
    justify-content: center;

  }
  .inner-footer-top > div {
    /*margin: 20px;*/
  }
  .box-info-footer {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    /*width: 285px;*/
  }
	
	.wrap-footer-nav .footer-nav li a {
	/*font-size:1.6vw;*/
		
	}

  .sidebar {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .sidebar > * {
    width: 100%;  
  }
	
  .sidebar .widget_nav_menu {
    display:none;		
  }
	
  .sidebar img {
    width: 100%;
  }
  .list-side2 a div:nth-child(1) {
    width: 40%;
    margin-right: 5%;
  }
  .list-side2 a div:nth-child(2) {
    width: 55%;
  }
  .side-list-compnay {
    justify-content: flex-start;
  }
  .side-list-compnay li:nth-child(1) {
    margin-right: 1em;
  }

  .global-nav {
    display: none;
  }
  .footer-nav {
    align-items: center;
  }
	
  .footer-contents {
	  width:100%;
  }	
	
  .pagetop {
    right: 3vw;
    bottom: -60px;
  }
  .pagetop.active {
    bottom: 3vw;
  }
  #nav-close {
    display: none;
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  #nav-content {
    -webkit-transform: translateX(-105%);
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 300px;
    height: 100%;
    overflow: auto;
            transform: translateX(-105%);
    background: #fff;
    transition: 0.5s ease-in-out;
  }
  .btn-close {
    display: block;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
    opacity: 0.5;
  }
  #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
  .top-message {
    font-size: 30px;
  }
	
  .side-compnay{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
  }
	
  .side-compnay h3{
    width:100%;
  }
	
  .side-compnay picture{
 /*   width:48%;	*/
  }
	
  .side-address-compnay-box{
   width:100%;		
  }
	
  .company-photo{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
  }
	
  .sidebar .company-photo > div{
    width:48%;
    margin-bottom: 4vw;
    }
	
  .wrap-post-img-text {
    margin: -20px 0;
  }
	
	.btn-archive{
		min-width:100%;
		
	}
}


@media screen and (max-width: 640px) {
  body.over {
   /* padding-top: 60px;*/
  }
  .spFullWidth {
    width: 100%;
    height: auto;
  }
  .wrap-main {
    width: 100%;
    padding: 10vw 5vw;
  }
  .inner-main h1 {
    font-size: 6vw;
  }
  .box-post-text time {
    width: 6em;
    margin-right: 5px;
    font-size: 10px;
  }
  .main-column .box-post-text h3,.wrap-1column  .box-post-text h3{
    width: 100%;
    font-size: 13px;
    line-height: 16px;
  }
  .wrap-post-img-text:after {
    width: 47%;
  }
  .box-post-img-text {
    width: 47%;
    margin: 3vw 0;
	display: flex;
    flex-direction: column;
  }
  .box-post-img-text h3 {
    font-size: 13px;
  }
  .box-post-img-text p {
    font-size: 13px;
	  margin-bottom:10px;
  }
  .box-post-archive a > div:nth-child(1) {
    width: 25vw;
  }
  .box-post-archive a > div:nth-child(2) {
    width: calc(100% - 25vw - 20px);
  }
  .box-post-archive h3 {
    margin-top: 0;
    font-size: 13px;
  }
  .category-post {
    width: 6em;
    font-size: 10px;
  }
  .box-post-text .category-post {
    margin-right: 5px;
  }
  .header.over {
   /* top: -70px; */
  }
  .inner-header {
    height: 70px;
    padding: 20px 0 5px;
  }
  .wrap-logo {
    margin-left: 0;
  }
  .wrap-logo .logo {
    width: 180px;
    margin-left: 10px;
  }
  .head-header {
    position: absolute;
    top: 0;
    width: 100%;
    margin: 0;
    background: #555;
    line-height: 15px;
  }
  .head-header > * {
    color: #fff;
    font-size: 8px;
    text-align: center;
  }
  .list-sp-menu {
    display: flex;
    position: absolute;
    top: 23px;
    right: 50px;
  }
	
  .sp-header-tel{
    position:relative;
    height:40px;
    width:40px; 
    display:inline-block;		
  }

  .sp-header-tel span{
    width:100%;
    position:absolute;
    bottom:0;
  }
	
  .sp-header-tel:before{
    content:"";
    display:inline-block;
    height:25px;
    width:25px;
    position:absolute;
    background: url(images/tel2.svg);
    background-size:cover;
    margin:0 auto;
    right:0;
    left:0;		
  }


  .sp-header-contact{
    position:relative;
    height:40px;
    width:40px; 
    display:inline-block;
  }
	
  .sp-header-contact span{
    width:100%;
    position:absolute;
    bottom:0;
  }
	
  .sp-header-contact:before{
    content:"";
    display:inline-block;
    height:25px;
    width:25px;
    position:absolute;
	background: url(images/mail.svg);
    background-size:cover;
    margin:0 auto;
    right:0;
    left:0;
  }
	
  .sp-header-access{
    position:relative;
    height:40px;
    width:40px; 
    display:inline-block;
  }
	
  .sp-header-access span{
    width:100%;
    position:absolute;
    bottom:0;
  }
	
  .sp-header-access:before{
    content:"";
    display:inline-block;
    height:25px;
    width:25px;
    position:absolute;
    background: url(images/pref.svg);
    background-size:cover;
    margin:0 auto;
    right:0;
    left:0;
  }
	
.footer-top {
/*     padding: 30px 0; */
    padding: 30px 0 0;
}
	
  .inner-footer-top > div {
    margin: 0;
	  padding: 0 4%;
  }
  .box-footer-top {
    padding: 10vw 10vw 7.5vw;
    text-align: center;
  }
  .wrap-footer-nav {
    /*display: none;*/
	  border-top:1px solid #cccccc;
  }
	.box-info-footer img{
		/* width: 80%; */
	}

	.wrap-footer-nav .footer-nav {

    flex-flow: wrap;
	/*width: 285px;*/
	}
	
	.footer-nav > li{
		width: 50%;
	}
	
	.wrap-footer-nav .footer-nav li a {
        border-bottom: 1px solid #cccccc;
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.8), 0 1px 0px rgba(0, 0, 0, 0.19);
    padding: 1em 0;
}
	
	/*.wrap-footer-nav .footer-nav li:first-of-type a{
		border: none;
	}*/
	
	.wrap-footer-nav .footer-nav li:last-of-type a{
		border-right: 1px solid #cccccc;
	}
	
	
  .copyright {
    font-size: 3vw;
  }
  .sidebar {
    display: block;
  }
  .sidebar > * {
    width: auto;
  }
  .widget_nav_menu:not(:last-child),
  .box-side:not(:last-child) {
    margin-bottom: 10vw;
  }
  .list-side2 a div:nth-child(1) {
    width: 30%;
  }
  .list-side2 a div:nth-child(2) {
    width: 65%;
  }
  .breadcrumb {
    display: none;
  }
	
	.main-visual {
    position: relative;
    top: 70px;
}
  .main-visual {
    width: 100%;
    margin-bottom: 10vw;
  }
  body:not(.index) .main-visual {
    height: 100px;
  }
  .head-page {
    padding-top: 0.5em;
    font-size: 25px;
  }
  .head-page:after {
    font-size: 12px;
  }
  .wrap-slider .slider {
    height: 75vw;
  }
  .wrap-slider .slider img {
    height: 75vw;
  }
  .section-about .wrap-btn {
    justify-content: center;
  }
  .btn-form,
  button.btn-form {
    width: 65vw;
    padding: 1em;
  }

  .pagination .pager {
    min-width: 7.5vw;
    height: 7.5vw;
    font-size: 4vw;
    line-height: 7.5vw;
  }
  .pagination .pager i:before {
    min-width: 7.5vw;
    height: 7.5vw;
    font-size: 4vw;
    line-height: 7.5vw;
  }
  .nav-link {
    z-index: 10;
    /*position: fixed;*/
    bottom: 0;
    left: 0;
    width: 100%;
    /*background: #ccc;*/
  }
  .link-prev,
  .link-next,
  .link-archive {
    flex: 1;
    width: auto;
    height: 100%;
  }
  .link-prev a,
  .link-next a,
  .link-archive a {
    height: 100%;
    /*padding: 2em 1em;*/
    font-size: 12px;
  }
  .icon-question:before,
  .icon-tel:before {
    width: 4vw;
    height: 4vw;
  }
  .bg-footer {
    background: url(images/bg-footer@2x.jpg) no-repeat center top;
    background-size: 100% 55.5vw;
  }
  .bg-company {
    background: url(images/bg-works.png) no-repeat right 40% bottom;
    background-size: cover;
  }
  .bg-outline {
    background: url(images/bg-outline.jpg) no-repeat center top;
    background-size: cover;
  }
  .bg-history {
    background: url(images/bg-history.jpg) no-repeat center top;
    background-size: cover;
  }
  .bg-access {
    background: url(images/bg-access.jpg) no-repeat center top;
    background-size: cover;
  }
  .spImgFullWidth {
    display: block;
    width: 100%;
    height: auto;
  }
  #nav-open {
    top: 24px;
    right: 10px;
  }
  .table-common > tbody > tr, .table-contact > tbody > tr {
    display: block;
    width: 100%;
  }
  .table-common > tbody > tr th, .table-contact > tbody > tr th,
  .table-common > tbody > tr td,
  .table-contact > tbody > tr td {
    display: list-item;
    width: 100%;
    list-style-type: none;
  }
  .table-common th {
    padding: 1em 0 0.5em;
  }
  .table-common td {
    padding: 0 0 1em;
    border-bottom: 1px solid #eee;
  }
  .table-contact {
    margin-bottom: 5vw;
  }
  .table-contact th {
    padding: 1.5em 1em 0.5em;
  }
  .table-contact th.required:after {
    top: 1.5em;
    margin-right: 1em;
    font-size: 2.7vw;
  }
  .table-contact td {
    padding: 0.5em 1em 1.5em;
  }
  .wrap-about {
    flex-flow: row wrap;
    justify-content: center;
  }
  .wrap-about > div:nth-child(1) {
    margin-right: 0;
    margin-bottom: 3vw;
    margin-left:0;
    width:100%;
  }
	
	.wrap-about > div:nth-child(1) img {
    width:100%;		
	}
	
  .wrap-about > div:nth-child(2) {
    width: 100%;
  }
  .wrap-message {
    flex-flow: row-reverse wrap;
    justify-content: center;
  /*  padding: 5vw 2.5vw;*/
  }
  .wrap-message > div {
    margin: 0;
  }
  .wrap-message > div:nth-child(1) {
    width: 50%;
   margin-bottom: 2.5vw;
  }
	
	.wrap-message > div:nth-child(2){
		width: 100%;
	}
	
	.main-visual .noslide{
	width:100%;
	left:0;
	transform: unset;
	}
	
	.text-common{
		font-size: calc(8px + 1vw);
		font-size: 13px;
		text-align: center;
	}
	
	.wrap-1column h2{
		font-size: calc(18px + 1vw);
	}

	.main-column .box-post-img-text h3, .wrap-1column .box-post-img-text h3{
		font-size: calc(12px + 1vw);
    margin-left: 0;
	    margin-right: 0;
	}
	.box-post-img-text a {
		margin-top: auto;
	}
	/*
	.toi_tell{
		padding: 10vw 0;
    border-top: 2px solid #efefef;
    border-bottom: 2px solid #efefef;
	}
	

	
	.toi_mail p{
	    font-size: 16px;
    margin: 10vw 0 0;
	}
	
		.section-common.toi .text-common:last-of-type{
	margin-bottom: 0;
	}
	
	.left{
		text-align: left;
	}
	
	*/
}




/*--------------------common.css--------------------*/

/* ////////////////////////////////////////
PC,SP共通 
//////////////////////////////////////// */
/* 共通色指定
*************************** */

.global-nav .sub-menu > li > a,
.copyright,
.btn-contact,
.pagetop,
.category-post,
.slick-dots li.slick-active button:before,
.sp-nav,
.wpcf7-submit {
  background:#333;
  color: #fff;
}

.main-slider .slick-prev:before,
.main-slider .slick-next:before {
  color: #fff;
}

.footer {
background:#fff;
}

/*　フッター　*/
/* カテゴリ表示の背景色 */
.bg-cate-1 {
  background: #333;
}

.bg-cate-2 {
  background: #333;
}

.bg-cate-3 {
  background: #333;
}

.bg-cate-4 {
  background: #333;
}

.bg-cate-5 {
  background: #333;
}

.bg-cate-6 {
  background: #333;
}

.bg-cate-7 {
  background: #333;
}

.bg-cate-8 {
  background: #333;
}

.bg-cate-9 {
  background: #333;
}

.bg-cate-10 {
  background: #333;
}

/* カテゴリ表示の背景色 */
/* 共通色指定
*************************** */
/* ウィジェット
*************************** */
.widget_nav_menu li > a {
  padding: 1em 1em;
}

#gallery-1 .gallery-item,
#gallery-2 .gallery-item {
  margin-top: 0 !important;
  margin-bottom: 0.5em;
}

#gallery-1 .gallery-caption,
#gallery-2 .gallery-caption {
  padding: 0.5em 0;
  line-height: 1.25;
}

/* ウィジェット
*************************** */
/* 固定ページ
*************************** */
/* 見出し */
.contents-page h2,
.contents-page h3,
.contents-page h4 {
  margin-bottom: 28px;
  line-height: 1.5;
}

.contents-page h2 {
  padding: 0.5em;
  font-size: 22px;
  font-weight: bold;
}

.contents-page h3 {
  padding: 0.5em;
  border-bottom: 1px solid #ccc;
  font-size: 20px;
}

.contents-page h4 {
  padding: 0.5em;
  font-size: 18px;
  font-weight: bold;
}

.contents-page h2 .mincho {
  font-size: 24px;
}

/* 見出し */
.contents-page p,
.contents-page span {
  line-height: 1.75;
}

.contents-page img {
  max-width: 100%;
  height: auto;
}



/*トップ　テーブル*/

.top_table{
	width: 100%;
}

.top_table tr{
	border-bottom: 1px solid #ccc;
}

.top_table th{
	padding: 1em;
	width: 20%;
}

.top_table td{
	padding: 1em;
}

/*トップ　マップ*/

.section-common.map .text-common{
	line-height: 2;
}

.section-common.map iframe{
	width: 100%;
	height: 400px;
}

/*トップ　問い合わせ*/
.section-common.toi .text-common{
	margin-bottom: 0;
    margin-top: 0.5em;
}

.section-common.toi .left{
	text-align: left;
}

.section-common.toi .pc{
	    /* text-align: left; */
    margin-top: 0.5em;


}

.toi_tell{
	/*display: flex;*/
    align-items: center;
    margin-bottom: 4em;
}


	.toi_tell:before{
	content: "\f2a0";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
	font-size: 40px;

	}

.toi_mail{
    /*display: flex;*/
    align-items: center;
    margin-bottom: 4em;
}


	.toi_mail:before{
    content: "\f0e0";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 40px;
    /*margin-right: 15px;
    width: 70px;*/
	}


.section-common.toi .toi_mail{
	/*text-align: left;*/
}



.section-common.toi .toi_mail a{
	font-size: 48px;
    line-height: 1;
    /* margin: 1em; */
    line-height: 1.75;
    font-family: serif;
}

/* 固定ページ
*************************** */
/* 会社概要　テーブル
*************************** */

table.table-company th {
  background: #eee;
  border:none;
}

table.table-company td {
  border:none;	
}

/* 会社概要　テーブル
*************************** */

/*会社概要*/

section.company_access{
	padding-top: 40px;
	margin-top: -40px;
}

/* お問い合わせ　テーブル
*************************** */
.contact table {
  width: 100%;
}

.contact table th,
.contact table td {
  line-height: 1.75;
}

.contact table th {
  background: #eee;
}

/* お問い合わせ　テーブル
*************************** */



/*お問い合わせ　電話メール*/
.contact #section_7{
	text-align: center;
}

/*野村追加*/
.main-column .kome{
    text-align: center;
    border: 4px double #a87945;
    padding: 1em;
    margin-top: 6em;
}
.toi_tell:before{
	display:none;
}
.contact .toi_tell:before{
	display:none;
}

/* ////////////////////////////////////////
PC,SP共通 
//////////////////////////////////////// */
/* ////////////////////////////////////////
PCのみ
//////////////////////////////////////// */

/* ////////////////////////////////////////
PCのみ
//////////////////////////////////////// */
/* ////////////////////////////////////////
SPのみ
//////////////////////////////////////// */
/* ////////////////////////////////////////
SPのみ
//////////////////////////////////////// */
@media screen and (min-width: 641px), print {
  /* 会社概要　テーブル
	*************************** */
  .sp_tell{
    text-align: center;
    font-size: calc(26px);
    padding: 0.5em 0 ;
    margin: 28px auto 28px;
    margin-bottom: 1em;
	  
color: #333;
    width: 80%;
	display:block;
    border-radius: 2em;

	}
	

table.table-company tr {
    border-bottom: 1px solid #ccc;
  }

table.table-company tr:first-child {
    border-top: 1px solid #ccc;
  }

table.table-company th {
    width: 20%;
  }
  /* 会社概要　テーブル
	*************************** */
  /* お問い合わせ　テーブル
	*************************** */
  .contact table tr {
    border-bottom: 1px solid #ccc;
  }
  .contact table tr:first-child {
    border-top: 1px solid #ccc;
  }
  .contact table th {
    width: 20%;
    line-height: 42px;
  }
  /* お問い合わせ　テーブル
	*************************** */
}
@media screen and (min-width: 901px) {
  .nav {
   /* background: #eeeeee;*/
    color: #333;

  }
	
	.nav>div {
    width: 570px;
  }
	
	.nav > .contents{
		padding:5px 0;
	}
	
	
}
@media screen and (min-width: 641px) {
.wrap-footer-nav .footer-nav{
    justify-content: center;	
}	
	
	.spnomi{display:none;}
.single-post {
    margin-bottom: 10em;
    border: 1px solid #ccc;
    padding: 56px;
    box-shadow: 2px 2px 4px #eee;
}
}


@media screen and (max-width: 640px) {
	.section-common.toi .toi_mail a{
	font-size: 23px;}
	.spnomi{display:block;}
	.wrap-logo .logo img {
  display: block;
  max-width: 100%;
  height: auto;
max-height:9vw;
}
	 .pc {
    display: none;
  }
  .sp {
    display: block;
	}
	
	  .index .wrap {
    padding: 10vw 0 0;
  }
	
	.section-common.toi .text-common span, .section-common.toi .text-common a{
	/*	font-size: calc(24px + 1vw); */
	}
	
	.section-common.toi .text-common span.in_black{
		font-size: 13px;
		font-family: sans-serif;
	}
	
	.top_table th{
		width: 32%;
	}
	
	
		
	.toi_tell{
		padding: 10vw 0;
    border-top: 2px solid #efefef;
    border-bottom: 2px solid #efefef;
		display: block;
	}
	
	.toi_tell:before{
		content: none;
	}
	
	.section-common.toi .toi_mail{
		justify-content: center;
	}
	
	.toi_mail:before{
		font-size: 30px;
		width: auto;
	}
	
	.toi_mail p{
	    font-size: 16px;
    /*margin: 10vw 0 0;*/
	}
	
		.section-common.toi .text-common:last-of-type{
	margin-bottom: 0;
	}
	
	.left{
		text-align: left;
	}
	
	
	.sp_tell{
    text-align: center;
    font-size: calc(18px + 1vw);
    padding: 0.5em 0;
    margin: 0 auto;
    margin-bottom: 1em;
    background: #333;
    color: #fff;
    width: 80%;
    border-radius: 2em;
		display: block;
	}
	
	.section-common.toi .text-common{
		margin-bottom: 2em;
	}
	
		
	.main-column .contact-form table td{
  padding:1em 0em;
}
	
}

/*--------------------common.cssここまで--------------------*/



  /*grid*/

  :is([class*="grid-"]:not(.wp-block-group), [class*="grid-"].wp-block-group >div) {
    display: grid;

    *:has(> &) {
      container: gap / inline-size;
    }

    &>* {
      margin: unset;
    }

  }

  :is(.grid-2:not(.wp-block-group), .grid-2.wp-block-group >div) {
    grid-template: auto / repeat(auto-fill, minmax(min(40%, 600px), 1fr));
    gap: min(8vw, 6rem) min(6vw, 6rem);

    @container gap (width <=1280px) {
      grid-template: auto / repeat(auto-fill, minmax(min(40%, 420px), 1fr));
      gap: min(8vw, 4rem) min(4vw, 4rem);
    }

    @container gap (width <=860px) {
      grid-template: auto / repeat(auto-fill, minmax(min(100%, 300px), 1fr));
      gap: min(6vw, 3rem) min(4vw, 2rem);

      :is(&.shape-keep, .shape-keep >&) {
        grid-template: auto / repeat(auto-fill, minmax(min(40%, 300px), 1fr));
        gap: min(4vw, 4rem) min(4vw, 2rem);
      }
    }

  }

  :is(.grid-3:not(.wp-block-group), .grid-3.wp-block-group >div) {
    grid-template: auto / repeat(auto-fill, minmax(min(40%, 480px), 1fr));
    gap: min(8vw, 4rem) min(6vw, 4rem);

    @container gap (width <=1280px) {
      grid-template: auto / repeat(auto-fill, minmax(min(100%, 280px), 1fr));
      gap: min(6vw, 4rem) min(4vw, 3rem);
    }

    @container gap (width <=860px) {
      grid-template: auto / repeat(auto-fill, minmax(min(100%, 200px), 1fr));
      gap: min(6vw, 3rem) min(4vw, 2rem);

      :is(&.shape-keep, .shape-keep >&) {
        grid-template: auto / repeat(auto-fill, minmax(min(40%, 280px), 1fr));
      }

    }
  }

  :is(.grid-4:not(.wp-block-group), .grid-4.wp-block-group >div) {
    grid-template: auto / repeat(auto-fill, minmax(min(40%, 400px), 1fr));
    gap: min(8vw, 3rem) min(6vw, 3rem);

    @container gap (width <=1000px) {
      grid-template: auto / repeat(auto-fill, minmax(min(40%, 200px), 1fr));
      gap: min(6vw, 3rem) min(4vw, 2rem);
    }

    @container gap (width <=860px) {
      grid-template: auto / repeat(auto-fill, minmax(min(100%, 180px), 1fr));
      gap: min(6vw, 2rem) min(4vw, 1rem);

      :is(&.shape-keep, .shape-keep >&) {
        grid-template: auto / repeat(auto-fill, minmax(min(40%, 120px), 1fr));
      }

    }

  }


  /*幅*/

  [class*="width-"] {
    margin-left: auto;
    margin-right: auto;
  }

  .width-640 {
    inline-size: min(100%, 640px);
  }

