@charset "UTF-8";
/*
Theme Name: ckipsettingman
*/

/*
全般
*/

body {
  font-family: "Noto Sans JP", sans-serif;

  margin: 0;
  padding: 0;

  color: #444444;

  position: relative;
  min-height: 100vh;
  padding-bottom: 59px;
}

/*すべての要素*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

/*すべてのリンク*/
body a {
  color: #1190E8;
}

body a:visited {
  /* color: #550066; */
}
body a:hover {
  text-decoration: none;
}


/*ヘッダー*/
.header-link {
  background-color: #14A0DC;
  padding: 5px 10px;
}

.header-link a {
  color: #fff;
}

.site-branding-container {
  background-color: #ebf5fd;
  padding: 20px 0;
}

.site-branding-container h1 {
  text-align: center;
  margin: 0;
}

.site-branding-container h1::before {
  content: "";
  background-image: url('images/ckip_logo.svg');
  background-repeat: no-repeat;
  display: inline-block;
  width: 124px;
  height: 54px;
  margin-right: 10px;
  vertical-align: middle;
  background-size: contain;
}

.site-branding-container a {
  color: #444;
  text-decoration: none;
}

.site-branding-container a:hover {
  text-decoration: underline;
}

.site-branding-container a:hover h1:before {
  opacity: 0.8;
}



/*検索セクション*/
.searchsec {
  background-color: #E4E4E4;
  padding: 20px;
}

.searchsec > div {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.searchsec label {
  display: none;
}

.searchsec > div p {
  margin: 0;
  margin-top: 10px;
}

.wp-block-search__input {
  border: none;
  font-size: 1em;
}

.wp-block-search__input::placeholder {
  color: #999;
}

.wp-block-search__button {
  margin: 0;
  border: none;
  background-color: #14A0DC;
  color: #fff;
  font-size: 1em;
  padding: 0 1.5em;
  transition: 0.2s;
}

.wp-block-search__button:hover {
  background-color: #5fb2d6;
}



/*メインエリア*/
.site-main {
  max-width: 940px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}



/*トップページsection*/
.home .site-main > section {
  margin-top: 40px;
  position: relative;
}

.top-section {
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
}

.top-section article.has-post-thumbnail {
  max-width: 17%;
}

.top-section .entry-title {
  font-size: 16px;
}

.excelscreen .top-section {
  gap: 10px 33px;
}

.faq .top-section {
  flex-flow: column;
  gap: 20px;
}

.faq .top-section > article::after {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid #999;
}

.post-thumbnail {
  height: 110px;
  overflow: hidden;
  border: 1px solid #999;
}

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


.ckipscreen > div > h2::before {
  content: "";
  background-repeat: no-repeat;
  display: inline-block;
  width: 43px;
  height: 43px;
  margin-right: 10px;
  vertical-align: middle;
  background-size: contain;
  
  background-color:#336699;
  -webkit-mask: url("images/icon-pc-display.svg");
  mask: url("images/icon-pc-display.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}



.excelscreen > div > h2::before {
  content: "";
  background-repeat: no-repeat;
  display: inline-block;
  width: 43px;
  height: 43px;
  margin-right: 10px;
  vertical-align: middle;
  background-size: contain;
  
  background-color:#336699;
  -webkit-mask: url("images/icon-excel.svg");
  mask: url("images/icon-excel.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}



.faq > div > h2::before {
  content: "";
  background-repeat: no-repeat;
  display: inline-block;
  width: 43px;
  height: 43px;
  margin-right: 10px;
  vertical-align: middle;
  background-size: contain;
  
  background-color:#336699;
  -webkit-mask: url("images/icon-faq.svg");
  mask: url("images/icon-faq.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}



.about-section h2 {
  color: #fff;
  background-color: #336699;
  display: inline-block;
  margin-bottom: 0;
  font-size: 16px;
  padding: 5px 20px;
}

.about-section p {
  margin: 0;
  padding: 10px 20px;
  border: 1px solid #336699;
}



/*アーカイブリンク*/
.archives-link {
  position: absolute;
  right: 0;
  top: 0;
}

.archives-link a {
  display: block;
  padding: 5px 10px;
  border: 1px solid #336699;
  color: #336699;
  text-decoration: none;
  transition: 0.2s;
}

.archives-link a:hover {
  color: #fff;
  background-color: #336699;
}



/*フッター*/
footer.site-footer {
  background-color: #14A0DC;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.copyright {
  font-size: 0.8em;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
}



/*ページリンク*/
.page-link {
  gap: 0 15px;
  padding: 0 20px;
}

.page-link .entry-title {
  font-size: 15px;
  margin: 0;
  margin-top: 10px;
  font-weight: normal;
}

.page-link article {
  display: none;
}


body.single-ckipscreen .page-link article.ckipscreen {
  display: flex;
}

body.single-excelscreen .page-link article.excelscreen {
  display: flex;
}