@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,900&display=swap&subset=japanese");
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	変数設定

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.container {
  width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .container {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	common

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
html {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #231815;
  font-family: "Roboto", sans-serif, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
}

html * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
}

body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  word-wrap: normal;
  width: 100%;
  overflow: hidden;
}

main,
section,
article {
  overflow: hidden;
}

sup {
  font-size: 0.8rem;
  vertical-align: top;
  position: relative;
  top: 0;
}

a {
  text-decoration: none;
  color: #231815;
  transition: 0.3s ease;
}
a:visited {
  text-decoration: none;
  color: #231815;
}
a:hover {
  text-decoration: none;
  color: rgba(35, 24, 21, 0.6);
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
  color: #231815;
}

.overflow_hidden {
  overflow: hidden;
}

.clear {
  clear: both;
}

.spBr {
  display: none;
}

.spNoBr {
  display: block;
}

.serif {
  font-family: "Noto Serif JP", serif, YuMincho, "Yu Mincho", "Hiragino Mincho ProN";
  letter-spacing: 0.05rem;
}

.column_l {
  float: left;
}

.column_r {
  float: right;
}

.caution_list {
  font-size: 0.8rem;
}
.caution_list li {
  position: relative;
  padding-left: 1.5em;
}
.caution_list li::before {
  position: absolute;
  content: "※";
  left: 0;
}

/*--------------------------------------------------------------
	header
--------------------------------------------------------------*/
header {
  position: fixed;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 200001; /*1*/
}
header h1 {
  float: left;
  margin-top: 20px;
}

/*--------------------------------------------------------------
	nav
--------------------------------------------------------------*/
nav {
  position: fixed;
  right: 0;
  font-size: 0;
  line-height: 1;
  z-index: 200002; /*2*/
  /* contact */
}
nav #globalNav {
  display: inline-block;
  margin-right: 20px;
}
nav #globalNav > li {
  display: inline-block;
}
nav #globalNav > li > a {
  position: relative;
  display: block;
  font-size: 1rem;
  padding: 32px 20px;
}
nav #globalNav > li > a::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 3px;
  background: #231815;
  transition: 0.3s ease;
}
nav #globalNav > li > a:hover {
  color: #fabe00;
}
nav #globalNav > li:hover > a::before {
  width: 100%;
}
nav #globalNav > li.active > a::before {
  width: 100%;
}
nav #globalNav .sub_menu ul {
  display: none;
  font-size: 1rem;
}
nav #globalNav .sub_menu ul a {
  display: block;
  padding: 20px;
  background: #fabe00;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
nav #globalNav a:hover {
  color: #fff;
}
nav .but_contact {
  display: inline-block;
}
nav .but_contact a {
  display: block;
  font-size: 1rem;
  color: #fff;
  background: url("../img/icon_mail_white.svg") left 30px center no-repeat #cc0000;
  padding: 32px 30px 32px 70px;
}
nav .but_contact a:hover {
  background-color: #fabe00;
}

/*--------------------------------------------------------------
	footer
--------------------------------------------------------------*/
footer #addressBlock {
  font-size: 0.9rem;
  background: #fabe00;
  padding: 60px 0;
}
footer #addressBlock h1 {
  font-size: 2rem;
  line-height: 1;
  margin: 5px 0 20px;
}
footer #copyrightBlock {
  font-size: 0.75rem;
  color: #666;
  background: rgba(250, 190, 0, 0.1);
  padding: 20px 0;
}
footer #copyrightBlock ul {
  overflow: hidden;
}
footer #copyrightBlock li:nth-child(1) {
  float: left;
}
footer #copyrightBlock li:nth-child(2) {
  float: right;
}
footer #copyrightBlock a {
  color: #666;
}

/* pageTop */
#pageTop {
  position: fixed;
  cursor: pointer;
  display: none;
  right: 40px;
  bottom: 40px;
  z-index: 1000;
}
#pageTop::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  margin-top: -10px;
  border: solid 10px transparent;
  border-bottom: solid 16px #000;
  opacity: 0.6;
}
#pageTop::before {
  position: absolute;
  content: "";
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.8);
}
#pageTop .stop {
  bottom: 40px;
}

/*--------------------------------------------------------------
	main
--------------------------------------------------------------*/
main {
  margin-top: 80px;
  text-align: left;
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	parts

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* page title */
#titleBlock {
  text-align: center;
  line-height: 1;
  color: #fff;
  padding: 100px 0;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#titleBlock h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
#titleBlock h3 {
  font-size: 0.75rem;
}

/* パンくず */
#breadcrumbBlock {
  overflow: hidden;
  line-height: 1.4;
}
#breadcrumbBlock ul {
  text-align: left;
  text-overflow: ellipsis;
  margin: 0;
}
#breadcrumbBlock ul * {
  color: #666;
}
#breadcrumbBlock li {
  position: relative;
  display: inline;
  font-size: 12px;
  padding: 15px 20px 15px 10px;
}
#breadcrumbBlock li::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background: url(../img/arrow_r_gray.svg) no-repeat center right;
  background-size: 8px;
}
#breadcrumbBlock li:last-child::after {
  width: 0;
}
#breadcrumbBlock li a {
  display: inline;
}
#breadcrumbBlock li:first-child a {
  display: inline-block;
  width: 15px;
  height: 15px;
}
#breadcrumbBlock li:first-child a {
  background: url(../img/icon_home.svg) no-repeat center center;
  background-size: 12px;
}
#breadcrumbBlock li a:hover {
  text-decoration: none;
  opacity: 0.6;
}

/* headline */
.headline {
  text-align: center;
  line-height: 1;
  margin-bottom: 40px;
}
.headline h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.headline h3 {
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.headline h4 {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
.headline h4::before, .headline h4::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 30px;
  height: 1px;
  background: rgba(35, 24, 21, 0.7);
}
.headline h4::before {
  left: -40px;
}
.headline h4::after {
  right: -40px;
}

/* lead_box */
.lead_box {
  text-align: center;
  margin-bottom: calc(120px / 3);
}
.lead_box h3 {
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.img_box {
  overflow: hidden;
}
.img_box img {
  width: 100%;
}

.data_box {
  text-align: left;
}

/*-------------------- column --------------------*/
/* 3 */
.column_3 {
  overflow: hidden;
}
.column_3 li {
  float: left;
  width: calc((100% - 60px) / 3);
  margin: 0 30px 60px 0;
  background: #fff;
}
.column_3 li:nth-child(3n) {
  margin-right: 0;
}
.column_3 li:nth-last-child(-n+3) {
  margin-bottom: 0;
}

/*-------------------- ボタン --------------------*/
/* ボタン □> */
.but_more a {
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  width: 300px;
  margin: 60px auto 0;
  padding: 15px;
  overflow: hidden;
  z-index: 1;
}
.but_more a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 100%;
  background: #fabe00;
  opacity: 0;
  z-index: -1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: 0.3s ease;
  will-change: transform; /*ちらつき防止　OK*/
}
.but_more a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #cc0000;
  z-index: -2;
}
.but_more .arrow {
  position: absolute;
  content: "";
  top: calc(50% - 4px);
  right: 20px;
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  will-change: transform; /*ちらつき防止　OK*/
}
.but_more a:hover::before {
  width: 320px;
  height: 320px;
  opacity: 1;
}

/* ボタン □ _blank */
.but_blank a {
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  width: 300px;
  margin: 60px auto 0;
  padding: 15px;
  background: #cc0000;
}
.but_blank a::before {
  position: absolute;
  content: "";
  top: calc(50% - 10px);
  right: 20px;
  width: 20px;
  height: 20px;
  background: url("../../common/img/icon_link_white.svg") center right no-repeat;
}
.but_blank a:hover {
  color: #cc0000;
  background-color: #fff;
}
.but_blank a:hover::before {
  background-image: url("../../common/img/icon_link_red.svg");
}

/*-------------------- 記事リスト --------------------*/
/* archive_list □ □ □（index・archive） */
.archive_list {
  font-size: 0.8rem;
  overflow: hidden;
}
.archive_list > li {
  position: relative;
  float: left;
  width: calc((100% - 60px) / 3);
  margin: 0 30px 60px 0;
  background: #fff;
  overflow: hidden;
}
.archive_list > li:nth-child(3n) {
  margin-right: 0;
}
.archive_list > li:nth-last-child(-n+3) {
  margin-bottom: 0;
}
.archive_list a {
  display: block;
}
.archive_list .img_box {
  position: relative;
  overflow: hidden;
}
.archive_list .img_box img {
  width: 100%;
  transition: 0.3s ease;
}
.archive_list .data_box {
  padding: 15px 20px;
}
.archive_list li:hover .img_box img {
  transform: scale(1.1);
}
.archive_list .category {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 20px;
  color: #fff;
  line-height: 1;
}
.archive_list .category.web {
  background: #003399;
}
.archive_list .category.graphic {
  background: #FF6600;
}
.archive_list .worktype_list {
  font-size: 0.75rem;
  line-height: 1;
}
.archive_list .worktype_list li {
  display: inline-block;
  color: #fff;
  background: rgba(250, 190, 0, 0.8);
  border-radius: 2px;
  padding: 5px 5px;
  margin: 5px 2px 0 0;
}
.archive_list .worktype_list li:last-child {
  margin-right: 0;
}

/*-------------------- table --------------------*/
/* table_type_1 */
.table_type_1 {
  width: 100%;
  border-bottom: 1px dotted #ccc;
}

.table_type_1 tr {
  border-top: 1px dotted #ccc;
}

.table_type_1 th,
.table_type_1 td {
  padding: 20px;
}

.table_type_1 th {
  width: 180px;
}

.table_type_1 td {
  position: relative;
  width: calc(100% - 180px);
}

.table_type_1 td::before {
  position: absolute;
  content: "";
  top: 20px;
  left: 0;
  width: 1px;
  height: calc(100% - 40px);
  background: #ccc;
}

/*--------------------------------------------------------------
	leadBlock
--------------------------------------------------------------*/
#leadBlock {
  text-align: center;
  padding-top: calc(120px / 2);
}
#leadBlock section .catchcopy {
  line-height: 1;
  margin-bottom: 30px;
  vertical-align: baseline;
}
#leadBlock section .catchcopy h3 {
  display: inline-block;
  font-size: 4rem;
  color: #fabe00;
}
#leadBlock section .catchcopy p {
  display: inline-block;
  font-size: 2rem;
  color: #ccc;
  line-height: 5rem;
  margin: 0 10px;
}
#leadBlock section h4 {
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 15px;
}
#leadBlock section p {
  margin-bottom: calc(120px / 2);
}

#contentsBlock {
  overflow: hidden;
  padding: 120px calc(120px / 2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#contentsBlock dl {
  display: inline-block;
  background: rgba(35, 24, 21, 0.75);
}
#contentsBlock dt {
  color: #fff;
  font-size: 1.25rem;
  background: #fabe00;
  padding: 10px;
}
#contentsBlock dd {
  text-align: left;
  color: #fff;
  padding: 20px 40px;
}
#contentsBlock ul {
  text-align: left;
}
#contentsBlock li {
  position: relative;
  padding-left: 1.5rem;
}
#contentsBlock li::before {
  position: absolute;
  content: "";
  top: 0.7rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #fff;
}

/*--------------------------------------------------------------
	cherishBlock
--------------------------------------------------------------*/
#cherishBlock {
  padding: 120px 0;
  background: #f4f4f4;
}
#cherishBlock .cherish_list li {
  position: relative;
  margin-top: 10px;
}
#cherishBlock .cherish_list li section {
  padding: 50px 30px 30px 30px;
}
#cherishBlock .cherish_list li h4 {
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 1.2rem;
  line-height: 1;
  padding: 10px 10px 10px 0;
  color: #fff;
  background: #fabe00;
}
#cherishBlock .cherish_list li h4:first-letter {
  background: #231815;
  padding: 8px 10px;
  margin-right: 5px;
}

/*--------------------------------------------------------------
	contactBlock
--------------------------------------------------------------*/
#contactBlock {
  position: relative;
  padding: 120px 0;
  text-align: center;
  border-top: 6px solid #fabe00;
}
#contactBlock::before {
  position: absolute;
  content: "";
  top: -6px;
  right: 0;
  width: 50%;
  height: 6px;
  background: #000;
}
#contactBlock::after {
  position: absolute;
  content: "";
  top: -6px;
  right: calc(50% + 0px);
  border: solid 3px transparent;
  border-right: solid 3px #000;
  border-top: solid 3px #000;
}
#contactBlock h3 {
  margin-bottom: 10px;
}
#contactBlock h4 {
  font-size: 1.75rem;
  color: #fabe00;
}

@media screen and (max-width: 768px) {
  /*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

  	common　

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  html {
    font-size: 14px;
  }
  main {
    width: 100%;
  }
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
  .spBr {
    display: block;
  }
  .spNoBr {
    display: none;
  }
  .column_l {
    float: none;
  }
  .column_r {
    float: none;
  }
  /*--------------------------------------------------------------
  	header
  --------------------------------------------------------------*/
  header {
    height: 60px;
    z-index: 200002; /*1*/
  }
  header h1 {
    margin-top: 20px;
  }
  header img {
    width: 90px;
  }
  /*--------------------------------------------------------------
  	nav
  --------------------------------------------------------------*/
  nav {
    position: fixed;
    left: 0;
    right: auto;
    width: 100%;
    height: 100vh;
    z-index: 200001; /*2*/
    /* contact */
  }
  nav #globalNav {
    width: 100%;
    display: block;
    margin: 0 0 40px 0;
    text-align: left;
  }
  nav #globalNav > li {
    display: block;
  }
  nav #globalNav > li > a {
    padding: 30px 20px;
    background: #fabe00;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  nav #globalNav > li > a::before {
    display: none;
  }
  nav #globalNav > li > a::after {
    position: absolute;
    content: "";
    top: calc(50% - 4px);
    right: 20px;
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  nav #globalNav > li > a:hover {
    color: #fff;
  }
  nav #globalNav > li:hover > a::before {
    width: 100%;
  }
  nav #globalNav .sub_menu ul {
    display: block;
  }
  nav #globalNav .sub_menu ul a {
    position: relative;
    padding: 30px 20px 30px calc(20px + 1rem);
    border-top: 1px dotted rgba(255, 255, 255, 0.5);
  }
  nav #globalNav .sub_menu ul a::before {
    position: absolute;
    content: "";
    top: calc(50% - 3px);
    left: 20px;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100%;
  }
  nav #globalNav .sub_menu ul a::after {
    position: absolute;
    content: "";
    top: calc(50% - 4px);
    right: 20px;
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  nav #globalNav a:hover {
    color: #fff;
  }
  nav .but_contact {
    display: inline-block;
  }
  nav .but_contact a {
    padding: 20px 30px 20px 70px;
  }
  /*--------------------------------------------------------------
  	footer
  --------------------------------------------------------------*/
  footer #addressBlock {
    font-size: 0.8rem;
    padding: 25px 0;
  }
  footer #copyrightBlock {
    font-size: 0.65rem;
    padding: 12.5px 0;
  }
  /* pageTop */
  /*--------------------------------------------------------------
  	main
  --------------------------------------------------------------*/
  main {
    margin-top: 60px;
  }
  /*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

  	parts

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  /* page title */
  #titleBlock {
    padding: 50px 0;
  }
  /* パンくず */
  #breadcrumbBlock li a {
    display: inline;
  }
  /* headline */
  .headline {
    margin-bottom: 20px;
  }
  .headline h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .headline h3 {
    font-size: 2rem;
  }
  .headline h4 {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  .headline h4::before, .headline h4::after {
    width: 20px;
  }
  .headline h4::before {
    left: -30px;
  }
  .headline h4::after {
    right: -30px;
  }
  /* lead_box */
  .lead_box {
    text-align: center;
    margin-bottom: calc(120px / 3);
  }
  .lead_box h3 {
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }
  .img_box {
    overflow: hidden;
  }
  /*-------------------- column --------------------*/
  /* 3 */
  .column_3 li {
    float: none;
    width: 100%;
    margin: 0 0 30px 0;
  }
  .column_3 li:nth-last-child(-n+3) {
    margin-bottom: 30px;
  }
  .column_3 li:last-child {
    margin-bottom: 0;
  }
  /*-------------------- ボタン --------------------*/
  /* ボタン □> */
  .but_more a {
    width: 90%;
    margin: 30px auto 0;
  }
  .but_more a:hover::before {
    width: 120%;
    height: 500px;
  }
  /* ボタン □ _blank */
  .but_blank a {
    width: 90%;
    margin: 30px auto 0;
  }
  /*-------------------- 記事リスト --------------------*/
  /* archive_list □ □ □（index・archive） */
  .archive_list {
    font-size: 0.8rem;
    overflow: hidden;
  }
  .archive_list > li {
    float: none;
    width: 100%;
    margin: 0 0 30px 0;
  }
  .archive_list > li:nth-last-child(-n+3) {
    margin-bottom: 30px;
  }
  .archive_list > li:last-child {
    margin-bottom: 0;
  }
  /*-------------------- table --------------------*/
  /* table_type_1 */
  .table_type_1 {
    width: 100%;
    border-bottom: 1px solid rgba(35, 24, 21, 0.3);
  }
  .table_type_1 tr {
    border-top: none;
  }
  .table_type_1 th,
  .table_type_1 td {
    display: block;
    padding: 10px;
  }
  .table_type_1 th {
    width: 100%;
    background: rgba(35, 24, 21, 0.3);
    color: #fff;
  }
  .table_type_1 td {
    width: 100%;
  }
  .table_type_1 td::before {
    width: 0px;
    height: 0;
  }
  /*--------------------------------------------------------------
  	leadBlock
  --------------------------------------------------------------*/
  #leadBlock {
    text-align: center;
    padding-top: calc(120px / 2);
  }
  #leadBlock section .catchcopy h3 {
    font-size: 2.5rem;
  }
  #leadBlock section .catchcopy p {
    font-size: 1.5rem;
    line-height: 2;
  }
  #leadBlock section h4 {
    font-size: 1rem;
  }
  #leadBlock section p {
    text-align: left;
  }
  #contentsBlock {
    padding: calc(120px / 3);
  }
  #contentsBlock dt {
    line-height: 2rem;
  }
  #contentsBlock dd {
    padding: 20px;
  }
  /*--------------------------------------------------------------
  	cherishBlock
  --------------------------------------------------------------*/
  #cherishBlock {
    padding: calc(120px / 2) 0;
    background: #f4f4f4;
  }
  #cherishBlock .cherish_list li section {
    padding: 40px 20px 20px 20px;
  }
  /*--------------------------------------------------------------
  	contactBlock
  --------------------------------------------------------------*/
  #contactBlock {
    padding: calc(120px / 2) 0;
  }
  #contactBlock h3 {
    text-align: left;
  }
  #contactBlock h4 {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}/*# sourceMappingURL=style.css.map */