@charset "UTF-8";

/* CSS Document */
:root {
  --baseColor: #fff;
  --darkColor: #000;
  --grayColor: #666666;
  --lgrayColor: #CCCCCC;
  --lgrayColor2: #F6F6F6; 
  --dgrayColor: #393939;
  --f1: 5rem;
  --f2: 3.6rem;
  --f3: 2.2rem;
  --f4: 1.6rem;
  --f5: 1.2rem;
  --f6: 1rem;
  --fontFamily: 'Roboto',"Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --fontFamilyJp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  color: var(--dgrayColor2);
  font-size: 1.5rem;
  font-family: var(--fontFamilyJp);
  letter-spacing: 0.03em;
  background: var(--lgrayColor2);
  overflow-x: hidden;
  overflow-y: scroll;
}

a {
  color: var(--dgrayColor);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text-default-light);
  opacity: 1;
  transition: border-color .1s ease-in,opacity .1s ease-in;
}

a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  /* .main-contents {
    padding-top: 50px;
  } */
}
/* logo */
.header.fixed .mark {
  fill: #f00064;
}
.header.fixed .type {
  fill: #000;
}


/* header */
.header {
  text-align: center;
  background: linear-gradient(rgba(255,255,255,0.7) ,rgba(255,255,255,0));
  top: -100px;
  position: fixed;
  width: 100%;
  margin: 70px auto 0;
  padding: 30px 0 0;
  line-height: 1.5em;
  z-index: 999;
  min-width: 1100px;
}

.header__inner {
  padding: 0 0 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo {
  width: 190px;
  height: auto;
  display: inline-block;
}

.header .logo a {
  display: block;
  padding-top: 5px;
}

.header .logo svg {
  max-width: 100%;
  height: auto;
}

/*----------------------------------------
  gnav
----------------------------------------*/
#global-nav .nav-wrapper {
  list-style: none;
  display: flex;
  align-items: center;
}

#global-nav .nav-wrapper>ul {
  display: block;
}

#global-nav .nav-item {
  text-align: center;
  position: relative;
}

#global-nav .nav-item span {
  display: block;
  color: #cccccc;
}

#global-nav .nav-item a {
  color: var(--darkColor);
  text-shadow: 0 0 15px #fff,0 0 10px #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  display: block;
  transition: all .5s;
  padding: 0 18px;
}

#global-nav .nav-item a:hover,
#global-nav .nav-item a.active {
  color: var(--lgrayColor);
}

/*liの矢印の設定*/
#global-nav .nav-item.has-child a {
  padding-right: 35px;
}

#global-nav .nav-item.has-child a::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 30px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(135deg);
  transition: all .5s;
}

/*下の階層を持っているulの指定*/
#global-nav .nav-item.has-child ul {
  position: absolute;
  left: 0;
  top: 58px;
  z-index: 4;
  background: #fff;
  width: 180px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
}

/*hoverしたら表示*/
#global-nav .nav-item.has-child:hover>ul, #global-nav .nav-item.has-child ul li:hover>ul, #global-nav .nav-item.has-child.on>ul, #global-nav .nav-item.has-child ul li:active>ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
#global-nav .nav-item.has-child ul li a {
  color: #000;
  padding: 10px 15px;
  background: #fff;
}

#global-nav .nav-item.has-child ul li a:after {
  display: none;
}

#global-nav .nav-item.has-child ul li:last-child a {
  border-bottom: none;
}

#global-nav .nav-item.has-child ul li a:hover,
#global-nav .nav-item.has-child ul li a:active {
  background: #000;
  color: #fff !important;
}

/* Fixed */
.header.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  padding-top: 0px;
  background-color: rgba(246, 246, 246, 0.8);
}


/* header btn */
#global-nav .contact-btn a {
  font-weight: bold;
  background-color:var(--darkColor);
  color: var(--baseColor);
  padding: 15px 30px;
}


#global-nav .contact-btn a {
  color: var(--baseColor);
  text-shadow: none;
}

#global-nav .contact-btn--document a {
  background: var(--baseColor);
  color: var(--darkColor);
  margin-left: 10px;
}

#global-nav .contact-btn--contact a {
  background: var(--darkColor);
}


#global-nav .contact-btn a:hover {
  background:  var(--grayColor);
  color: var(--baseColor);
}
@media screen and (min-width: 901px) {

  .header.fixed #global-nav  .contact-btn a:hover {
    background: var(--grayColor);
    color: var(--baseColor);
  }
  .header.fixed #global-nav .nav-item:not(.contact-btn) a {
    color: var(--darkColor);
    text-shadow:none;
  }
  .header.fixed #global-nav .nav-item:not(.contact-btn) a:hover {
    color: var(--lgrayColor);
  }
}

@media screen and (max-width: 900px) {
  .header {
    top: 0;
    position: fixed;
    margin-top: 0;
    padding-top: 0;
    background: transparent;
    min-width: 0;
  }

  .header__inner {
    padding: 0;
  }

  /* Fixed reset */
  .header.fixed {
    padding-top: 0;
    background-color: rgba(246, 246, 246, 0.8);
  }

  #mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    z-index: 999;
    position: relative;
    background: linear-gradient(rgba(255,255,255,0.6),rgba(255,255,255,0));
  }

  .header.fixed .logo a, .header .logo a {
    margin-left: 5px;
    padding-left: 5px;
  }

  .header .logo {
    width: 190px;
    align-items: center;
    visibility: visible;
  }

  .header .logo img {
    width: 100%;
    height: auto;
  }

  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: 0;
    background: var(--baseColor);
    width: 100%;
    text-align: center;
    padding: 80px 0;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    box-shadow: 0px 10px 10px 1.2px rgba(0, 0, 0, 0.12);
    visibility: hidden;
    height: 100vh;
    opacity: 0;
  }

  #global-nav .nav-wrapper {
    list-style: none;
    font-size: 14px;
    margin-top: 0px;
    display: block;
    float: none;
  }

  #global-nav .nav-item {
    flex: none;
    width: 100%;
    padding: 0px;
  }

  #global-nav .nav-item a {
    padding: 20px 0;
    font-size: 1.8rem;
  }

  /* Toggle Button */
  #nav-toggle {
    position: absolute;
    right: 15px;
    top: 17px;
    width: 22px;
    height: 16px;
    cursor: pointer;
    z-index: 101;
  }

  #nav-toggle div {
    position: relative;
  }

  #nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--darkColor);
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }

  #nav-toggle span:nth-child(1) {
    top: 0;
  }

  #nav-toggle span:nth-child(2) {
    top: 8px;
  }

  #nav-toggle span:nth-child(3) {
    top: 16px;
  }
  .header.fixed:not(.open) #nav-toggle span {
    background: #000;
  }


  /* #nav-toggle 切り替えアニメーション */
  .open .logo {
    display: none;
  }
  .open #nav-toggle span {
    background:  var(--darkColor);
  }
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }

  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }

  /* #global-nav スライドアニメーション */
  .open #global-nav {
    visibility: visible;
    opacity: 1;
  }

  #global-nav .nav-wrapper {
    display: block;
  }

  #global-nav .nav-item.has-child ul, #global-nav .nav-item.has-child ul ul {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
    box-shadow: none;
  }

  /*矢印の位置と向き*/
  #global-nav .nav-item.has-child a::after {
    right: 20px;
    top: 24px;
  }

  #global-nav .nav-item.has-child.ona a::after {
    transform: rotate(-45deg);
  }

  #global-nav .contact-btn a {
    width: 90%;
    margin: 15px auto 15px;
  }
  #global-nav .contact-btn--document a {
    background: var(--lgrayColor);
  }
}
/*----------------------------------------
	特徴4種
----------------------------------------*/
.annotation{
	text-align: left;
	font-size: 1.3rem;
}
/*----------------------------------------
	導入のご相談はこちらから
----------------------------------------*/
.cv-area {
  background: url(/wp-content/themes/sg/assets/img/common/contact_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  background-blend-mode: multiply;
  background-color: #777;
}
.cv-area .cv-area__sub span{
  position: relative;
}
.cv-area .cv-area__sub span:before{
  content: "";
  display: block;
  position: absolute;
  left: -18px;
  top: 55%;
  width: 2px;
  height: 1.2em;
  background-color: #fff;
  transform: translateY(-50%) rotate(-30deg);
}

.cv-area .cv-area__sub span:after{
  content: "";
  display: block;
  position: absolute;
  right: -18px;
  top: 55%;
  width: 2px;
  height: 1.2em;
  background-color: #fff;
  transform: translateY(-50%) rotate(30deg);
}

.cv-area p{
  color: var(--baseColor);
  margin-top: 10px;

}
.cv-area__button{
	margin-top: 30px !important;
}
.cv-area__button a{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cv-area__button a + a{
  margin-top: 10px;
}
@media screen and (min-width: 901px) {
  .cv-area__button a + a{
    margin-top: 20px;
  }
}
/*----------------------------------------
	ニュース
----------------------------------------*/
.more-area__button {
  text-align: center;
  margin-top: 50px;
}

/*----------------------------------------
  footer
----------------------------------------*/
#footer {
  background: var(--darkColor);
  padding: 0 0 20px 0;
  font-size: 1.3rem;
  overflow: hidden;
}

.footer-menu {
  max-width: 1680px;
  padding: 0 4vw;
  margin: auto;
  margin-bottom: 30px;
}
.footer__inner{
  display:flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer__inner_l{
  margin: 50px auto 0;
}
.footer-menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-menu__list li {
  padding: 0 15px;
  font-size: 1.6rem;
  color: var(--baseColor);
}

.footer__logo {
  width: 240px;
  height: auto;
  margin: auto;
}
.footer__logo a{
  opacity: 1;
}

.footer__logo svg {
  max-width: 100%;
  height: auto;
}

.footer__inner a{
  color: #fff !important;
  text-decoration: none;
  display: block;
  margin-bottom: 0px;
}
.footer__inner a:hover,
.footer-menu__list li a:hover{
  color: var(--lgrayColor)!important;
}

.footer-menu__list li a{
  color: #fff !important;
}
.footer-menu__list__sub {
  padding-left: 20px;
  display: block;
}

.footer-menu__list__sub li {
  padding: 0;
  margin-bottom: 0;
  font-size: 1.2rem;
}

.footer-menu__list__sub li a {
  margin-bottom: 0;
}
.cFooter__pageTop_arrow {
    display: flex;
    justify-content: center;
    width: calc(17rem / 16)
}
.cFooter__pageTop_arrow span:first-of-type {
    display: block;
    width: 1px;
    height: 47px;
    background-color: var(--baseColor);
}

.cFooter__pageTop_arrow span:last-of-type {
    position: absolute;
    top: 1px;
    left: calc(50% - 6.5px);
    width: 13px;
    height: 13px;
    background-color: rgba(0,0,0,0);
    transform: rotate(45deg)
}
.cFooter__pageTop_text {
    writing-mode: vertical-rl;
    line-height: calc(21rem / 16);
    margin-top: calc(15rem / 16);
	font-size: calc(19rem / 16);
}
.backtotop a:hover{
  text-decoration: none;
}
#footer small {
  font-size: 1.4rem;
  display: block;
  margin-top: 15px;
  text-align: center;
  color: var(--baseColor);
  font-family: var(--fontFamily);
}


#breadcrumbs {
  padding: 20px 50px;
  color: #888;
  font-size: 1.4rem;
}
#breadcrumbs a{
  color: #888;  
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding:  0 6%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.bg01 {
  background: #f4f4f2;
}
/*----------------------------------------
	背景の斜線の設定
----------------------------------------*/
/* 共通設定 */
.signage01:before,
.signage02:before,
.news:before,
.company_area02:before {
  content: '';
  position: absolute;
  width: 65px;
  height: 1000px;
  background-color: #e3e2e2;
  -webkit-transform:skewX(-28deg);
  transform: skewX(-28deg);
  top: 0%;
  z-index: -1;
}
.signage01:before {
  left: 0%;
}
.signage02{
  z-index: 0;
}
.signage02:before {
  left: 77%;
  background-color:var(--dgrayColor);
 /*  height: -webkit-fill-available; */
  height:100%;
}
.news:before {
  left: 77%;
  height:100%;
}
.company_area02:before {
  left: 10%;
}
@media screen and (max-width: 901px), print {
.signage01:before {
  left: 4%;
}

  }
@media screen and (max-width: 430px), print {
.signage02:before{
  left: 54%;
}
.news:before {
  left: 40%;
}
	}
@media screen and (max-width: 415px), print {
.signage01:before {
  left: -45%;
}
.signage02:before{
  left: 2%;
}
.news:before {
  left: 35%;
}
.company_area02:before {
  left: -23%;
}
	}
/*------------------------------------*/

@media (max-width: 900px) {
  html {
    font-size: 53.125%;
  }

  body {
    font-size: 1.6rem;
  }

  img {
    max-width: 100%;
    max-height: 100%;
  }

  #footer {
    text-align: center;
  }

  .footer-menu__list__sub {
    margin: 0 0 15px 0;
    padding: 0;
  }

  .footer-menu__list {
    width: 100%;
    display: block;
  }

  #breadcrumbs {
    padding: 20px 20px;
  }
}

.sub-page, .article-page {
  color: #111;
  text-align: left;
}

.sub-page .page-title, .article-page .page-title {
  background-size: cover !important;
  position: relative;
}

.sub-page .page-title {
  background: url(/wp-content/uploads/images/contact/contact_ttl_bg.jpg);
  background-repeat: no-repeat;
}

.article-page .page-title {
  background: url(/wp-content/uploads/images/news/news_ttl_bg.jpg);
  background-repeat: no-repeat;
}

.sub-page .page-title::before, .article-page .page-title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  background-image: radial-gradient(rgba(0, 0, 0, 0.25) 13%, transparent 16%), radial-gradient(rgba(0, 0, 0, 0.25) 13%, transparent 16%);
  background-position: 0 0, 4px 4px;
  background-size: 8px 8px;
}

/* contact */
.contact__item {
  margin-top: 20px;
  font-weight: bold;
}

.contact__asterisk {
  color: var(--baseColor);
  font-size: 1rem;
}

/**********MW WP Form*********/
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

.mw_wp_form {
  padding: 10px 0;
}

.mw_wp_form input,
.mw_wp_form textarea,
.mw_wp_form select {
  width: 100%;
  padding: 3px 5px;
  border-radius: 6px;
  box-sizing: border-box;
  border: 2px solid #eee;
  height: 2.5em;
  margin-top: 5px;
  font-size: 16px;
}

.mw_wp_form input[type="checkbox"] {
  height: 1em;
  margin-right: 5px;
  width: 1.5em;
}

.mw_wp_form textarea {
  height: 300px;
}

.mw_wp_form input[type="text"]:focus, .mw_wp_form select:focus, .mw_wp_form textarea:focus {
  border: 2px solid var(--baseColor);
  outline: 0;
}

.mw_wp_form span.error {
  margin-top: 4px;
  color: var(--baseColor);
  font-weight: bold;
  display: flex;
}

.mw_wp_form span.error::before {
  content: "\f06a";
  font-family: "Font Awesome 5 Free";
  display: block;
  margin-right: 5px;
}

.mw_wp_form .mwform-tel-field {
  margin-left: 0px;
}

/*ç¢ºèªãƒ»é€ä¿¡ãƒœã‚¿ãƒ³*/
.mw_wp_form .sendbtn,
.mw_wp_form .confbtn {
  background: var(--baseColor);
  border: 0 none;
  color: #FFF;
  text-decoration: none;
  padding: 15px 25px;
  cursor: pointer;
  overflow: hidden;
  margin: 20px 10px 20px 0;
  height: auto;
  font-weight: bold;
}

/*æˆ»ã‚‹ãƒœã‚¿ãƒ³*/
.mw_wp_form .backbtn {
  background: #000000;
  border: 0 none;
  color: #FFF;
  height: 39px;
  text-decoration: none;
  padding: 0 25px;
  cursor: pointer;
  overflow: hidden;
  margin: 20px 10px 20px 0;
}

.mw_wp_form .item {
  margin-bottom: 25px;
  line-height: 1.5;
}

.mw_wp_form .item-name {
  font-weight: bold;
  display: flex;
  align-items: center;
}

.mw_wp_form .item .item-field {
  margin-top: 5px;
}

.mw_wp_form .required {
  background: var(--baseColor);
  color: var(--baseColor);
  font-weight: bold;
  padding: 0 8px;
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  min-width: 40px;
  text-align: center;
}

.mw_wp_form .attention {
  font-size: 1.2rem;
}

.mw_wp_form .trigger {
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px
}

.mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0%;
}

@media screen and (max-width: 900px) {
  .mw_wp_form {
    width: 100%;
  }
}

/* End contact */
/* レスポンシブ表示用 */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}