@charset "utf-8";
/*****************************************
	original.css
	企業固有のスタイルを指定
******************************************/
body {
  -webkit-text-size-adjust: 100% !important;
}
body, #header {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (max-width: 767px) {
  #header {
    margin-bottom: 0;
  }
}
#header, #footer,
#header *, #footer * {
  box-sizing: border-box;
}

#header img,
#footer img {
  width: 100%;
  vertical-align: bottom;
}
img {
  height: auto;
  vertical-align: bottom;
}

/*コンテンツ幅設定用（依頼指示の幅+20px）*/
#main > .content {
  max-width: 1020px;
  margin: 0 auto;
}
/*404エラー画面（依頼指示の幅+20px）*/
#errorContent {
  max-width: 1020px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px;
  font-size: 14px;
}
#errorContent #httpError h1.error_title {
  font-size: 21px;
}
#errorContent a {
  color: #0055dd !important;
}
@media only screen and (max-width: 767px){
  #errorContent {
    padding: 0 15px;
  }
}
/*for Android copyrightマークの色 */
footer span.copy {
  font-family: Verdana, "Droid Sans" !important;
}

/*******************************
 スクリーンリーダー
*******************************/
.screen-reader-wrap{position:relative;}
.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important;
}
/*******************************
 スキップリンク
 *******************************/
.skip-hidden-text{
  position: relative;
}
.skip-hidden-text a,
.skip-hidden-text span{
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}
.skip-hidden-text a:focus,
.skip-hidden-text a:active {
  display: block;
  width: 15em;
  height: auto;
  top: 10px;
  left: 10px;
  clip: auto;
  z-index: 1000;
  font-size: 1rem;
  padding: 5px;
  background-color: #FFF;
  border: 1px solid #999;
  border-radius: 10px;
  text-align: center;
}
/*******************************
 loading=lazy画像
 *******************************/
img {
  height: auto;
}
img[loading="lazy"] {
  width:auto;
  max-width:100%;
  height:auto;
}
/*******************************
 clearfix
 *******************************/
.clearfix::after{
  content:"";
  display:block;
  clear:both;
}

/*******************************
 自由ヘッダー
*******************************/
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 60px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 10px;
}
header img.logo {
  max-width: 150px;
  padding: 16px 0 6px;
}
.h1-contents-wrap {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 150px - 20px); /* logo - margin10x2 */
}
@media screen and (max-width: 767px) {
  .h1-contents-wrap {
    justify-content: center;
    width: 100%;
  }
}
header h1 {
  font-size: 15px;
  font-weight: bold;
  font-style: normal;
  text-align: right;
  padding-top: 5px;
}
header h1 span {
  display: inline-block;
}
@media only screen and (max-width: 767px){
  .header-inner {
    flex-direction: column;
    height: auto;
  }
  header h1 {
    width: 100%;
    font-size: 15px;
    text-align: center;
    padding: 0 0 20px;
  }
  /* header h1 span {
    display: block;
  } */
}
/*******************************
 自由コンテンツ上
*******************************/
.headContent .free {
}

/*******************************
 自由コンテンツ中
*******************************/
.bottomContent .freeHead {
}

/*******************************
 自由コンテンツ下
*******************************/
.bottomContent .freeBottom {
}
/*******************************
 自由フッター
*******************************/
#footer {
  min-height: 120px;
}
@media screen and (min-width: 768px) {
  #footer {
    background-color: #E6E9EF;
  }
}
#footer .content .free {
  display: block;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  #footer .content .free {
    background-color: #E6E9EF;
  }
}
footer {
  max-width: 1160px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  min-height: 120px;
}
footer p {
  color: #fff;
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
  padding-bottom: 0.2em;
}
.free footer p {
  color: #fff;
  text-align: left;
  padding: 0;
  font-size: 12px;
}
.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer-links {
    flex-direction: column;
    gap: 0px;
  }
}
.free footer .copy {
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .free footer .copy {
    font-size: 12px;
    padding-bottom: 5px;
    padding-top: 6px;
  }
}
footer p small {
  font-size: 100%;
}
/*for Android copyrightマークの色*/
footer span.copy {
  font-family: Verdana, "Droid Sans" !important;
}
footer a:link,
footer a:active,
footer a:visited,
footer a:hover {
  color: #442d84 !important;
  text-decoration: none;
}
footer a {
  transition: linear .25s;
}
@media (hover: hover) {
  footer a:hover {
    opacity: .8;
  }
}
@media only screen and (max-width: 767px){
  #footer {
    min-height: 110px;
    position: absolute;
    bottom: 0;
  }
  footer {
    min-height: 110px;
    text-align: center;
  }
}

/*** footer の高さが増える場合、この数値も増やす ***/
#main .space {
  padding-bottom: 120px;
}
@media only screen and (max-width: 767px){
  #main .space {
    padding-bottom: 120px;
  }
}
footer * {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
#footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: transparent;
}
#footer .content, #footer .content .free {
  width: auto;
}
#footer {
  min-height: 110px;
}
@media only screen and (max-width: 767px) {
  #footer {
    min-height: 110px;
  }
  footer {
    padding: 0 10px;
  }
}
#footer .content {
  position: relative;
  z-index: 11;
}
#footer .content .free {
  display: block;
  width: 100%;
  background-color: #000;
  position: relative;
}
footer {
  max-width: 1160px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  position: relative;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  footer {
    align-items: start;
  }
}
footer p {
  color: var(--color-strong-text);
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
  padding-bottom: 0.2em;
}
footer p small {
  font-size: 100%;
}
/*for Android copyrightマークの色*/
footer span.copy {
  font-family: Verdana, "Droid Sans" !important;
}
footer a:link,
footer a:active,
footer a:visited,
footer a:hover {
  color: var(--color-strong-text) !important;
  text-decoration: none;
}
footer a {
  transition: linear .25s;
}
@media only screen and (min-width: 768px) {
  footer a:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  #footer {
    position: absolute;
    bottom: 0;
  }
  footer {
    min-height: 110px;
  }
}
.free footer .copy {
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .free footer .copy {
    font-size: 12px;
    padding-bottom: 5px;
    padding-top: 6px;
  }
}
.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer-links {
    gap: 0;
    flex-direction: column;
  }
}

