@charset "UTF-8";
/* CSS Document */
/* ============================================ */
/*
768〜1200pxでフォントサイズ24px(2.4rem)〜36px(3.6rem)で可変　

計算式
calc(ZZ + ((1vw - XX) * YY))
ZZ = 24 * 0.1rem = 2.4rem
XX = (768 / 100 * 0.1rem) = 0.768rem
YY = 100 * (36 - 24) / (1200 - 768) = 2.777

font-size: calc(2.4rem + ((1vw - (768 / 100 * 0.1rem)) * 100 * (36 - 24) / (1200 - 768)));
*/
/* ============================================ */
.text-variable {
	font-size: 3.6rem;
	font-size: calc(2.4rem + ((1vw - 0.768rem) * 2.777));
}
.con-img {
	width: 50vw;
}
@media screen and (min-width: 1200px) {
	.text-variable {
		font-size: 3.6rem;
	}
}
@media screen and (max-width: 767px) {
	.text-variable {
		font-size: 2.4rem;
	}
}

/* イメージ */
/* ============================================ */
/* スライダー */
.slider {
	margin: 0 auto;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
.slider div {
	height: 100%;
	max-height: 480px;
}


/* テキスト */
/* ============================================ */
.heading-tpl {
	border-bottom: 2px solid #333;
	font-size: 2.4rem;
	font-weight: bold;
	padding: .25em 0;
	margin-bottom: .75em;
}

/* お知らせ */
/* ============================================ */
.cci-lead {
  background: #f5efea;
/*  max-width: 1000px;*/
  margin: auto auto 60px;
  padding: 30px 1em;
}
.cci-lead p {
  max-width: 1000px;
  margin: auto;
  background: no-repeat url(../img/img_lead.png) center right;
  background-size: contain;
  font-size:1.8rem;
  line-height: 1.8;
  padding: 1em 0;
}
.cci-lead span {
  font-size: 2.4rem;
  font-weight: bold;
}
.cci-lead .txt-01 {
  padding-right: 0.1em;
  color: #ff6600;
}
.cci-lead .txt-02 {
  color: #ff6600;
}
.cci-wrap {
  max-width: 1000px;
  margin: auto;
  border-top: 1px solid #ccc;
}
.cci-wrap h2 {
  display: flex;
  justify-content: center;
  padding: .5em .5em .6em;
  background: #ffd4b8;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
}
.cci-wrap ul li {
  display: flex;
  padding: 1em 2em;
  border-bottom: 1px solid #ccc;
}
.cci-wrap ul li .day {
  width: 100px;
}

.cci-2col {
  max-width: 1000px;
  padding: 3em 0 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bnr-cci {
  width: 48%;
  max-width: 480px;
  border: 1px solid #ccc;
  transition: all 0.3s;
}
.cci-2col > .bnr-cci.bnr-w100 {
  width: 100%;
  max-width: 1000px;
  margin: 0 0 2em;
}

@media screen and (min-width: 768px) {
  .bnr-cci:hover {
    box-shadow: 0 12px 12px 0px rgba(0, 0, 0, .2);
    transition: all 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .cci-lead {
    padding: 1em;
  }
  .cci-lead p {
    font-size: 1.5rem;
    background-position: center bottom;
    background-size: 149px 200px;
    padding-top: 0;
    padding-bottom: 210px;
  }
.cci-lead span {
  font-size: 1.8rem;
  font-weight: bold;
}
  .cci-lead .txt-01 {
    font-size: 1.8rem;
  }
  .cci-wrap h2 {
    width: auto;
    padding: 1rem;
    font-size: 1.6rem;
  }
  .cci-wrap {
    max-width: 1000px;
    margin: auto;
    height: auto;
    display: flex;
    overflow: hidden;
    flex-direction: column;
  }
  .cci-wrap ul li {
    padding: 10px 0;
    flex-direction: column;
  }
  .bnr-w100 {
    max-width: 480px;
  }
  .cci-2col {
    width: 100%;
    max-width: 480px;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0 0;
  }
  .cci-2col .bnr-cci:not(:last-of-type) {
    margin: 0 0 2rem 0;
  }
  .cci-2col > .bnr-cci {
    width: 100%;
  }
}

/* 新着情報 */
/* ============================================ */
.news-container,
.test-container {
	padding-top: 60px;
	padding-bottom: calc(3vw + 50px);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
  .news-container {
  background-image: url("/common/img/bg-01.jpg");
}
.test-container {
  background-image: url("/common/img/bg-02.jpg");
}
.news-container::before,
.test-container::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    backdrop-filter: blur(4px);
}
.news-container p:not(:last-child) {
  margin-bottom: 1em;
}
.heading-ttl01 {
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.heading-ttl01 h2 {
  font-size: 3.2rem;
  text-align: center;
}
.ttl-sub {
  font-size: 1.4rem;
  color: #fff;
  background-color: #333;
  display: inline-block;
  line-height: 1.5em;
  padding: 0 1em;
  margin-bottom: 5px; 
}
.ttl-sub::before,
.ttl-sub::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #fff;
  margin-bottom: .3em;
}
.ttl-sub::before {
  margin-right: 8px;
}
.ttl-sub::after {
  margin-left: 8px;
}
.ttl-s {
  font-size: 1.3rem;
}
.news-container .parent {
  max-width: 1000px;
  margin: auto;
}
.news-container .parent li {
  position: relative;
}
.news-container .parent li:last-of-type {
  display: none; /* 商工会議所会員のための商談サイト「ザ・商談モール」部分の非表示 */
}
.news-container .parent li::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: .5em;
  width: 14px;
  height: 14px;
  border-top: 2px solid #1877f2;
  border-right: 2px solid #1877f2;
  transform: rotate(45deg);
  transition: all 0.3s;
}
.news-container .parent li::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 22px;
  height: 2px;
  background: #1877f2;
  transition: all 0.3s;
}
.news-container .parent li:not(:last-of-type) {
  margin-bottom: 1px;
}
.news-container .parent li:hover::before {
  left: 1.5em;
}
.news-container .parent li:hover::after {
  width: 38px;
}
.news-container .parent a {
  display: inline-block;
  width: 100%;
  background: #fff;
  padding: .75em 1em .75em 2em;
  transition: all 0.3s;
}
.news-container .parent a:hover {
  color: #1877f2;
  text-decoration: underline;
  transition: all 0.3s;
  padding-left: 3em;
}
@media screen and (max-width: 767px) {
  .heading-ttl01 h2 {
    font-size: 2rem;
  }
}

/* 検定試験情報 */
/* ============================================ */
.test-wrap {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 5rem 4rem;
  position: relative;
}
.test-wrap section {
  max-width: 340px;
  width: 32%;
  display: flex;
  flex-direction: column;
}
.test-wrap section:not(:last-of-type) {
  margin-right: 2rem;
}
.test-wrap .wrap-txt-box p:last-of-type {
  margin-top: auto;
}
.test-wrap .wrap-btn-box .link-btn01:not(:last-of-type) {
  margin-bottom: 1rem;
}
.test-wrap section > h3 {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
.test-wrap section:not(:last-of-type) > p:not(:last-of-type) {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.link-btn01 a {
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
  padding: 1rem;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  border-radius: 100vh;
  background-image: -webkit-linear-gradient(left, #0057b9, #3a97ff);
  background-image: linear-gradient(90deg, #0057b9, #3a97ff);
  z-index: 5;
}
.link-btn01 a:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 100vh;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #0057b9;
  opacity: 0;
  z-index: -1;
}
.link-btn01 a:hover:after {
  width: 100%;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .test-wrap {
    flex-direction: column;
    padding: 3rem 2rem 4rem;
  }
  .test-wrap section {
    max-width: 100%;
    width: 100%;
  }
  .test-wrap section:not(:last-of-type) {
    margin: 0 0 3em;
  }
  .test-wrap section > h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}


/* 検定試験情報 */
/* ============================================ */
.ft-bnr {
  width: calc(100% - 1em - 1em);
  max-width: 1200px;
  margin: 6rem auto;
}
.ft-bnr ul {
  display: flex;
  justify-content: space-around;
}
.ft-bnr ul li {
  width: calc((100% - 52px) / 4); /*4つ並び*/
}
.ft-bnr li a {
  width: 100%;
  height: 80px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ft-bnr li a:hover {
  box-shadow: 0 12px 12px 0px rgba(0, 0, 0, .2);
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  .ft-bnr ul {
    flex-direction: column;
    align-items: center;
  }
  .ft-bnr ul li {
    width: 80%;
  }
  .ft-bnr ul li:not(:last-of-type) {
    margin-bottom: 2rem;
  }
}


/* 各地会議所のご案内 */
/* ============================================ */
.list-container {
  padding-bottom: 1rem;
}
.bg-brwon {
  position: relative;
}
.bg-brwon::before {
  content: "";
  width: 100%;
  height: 190px;
  background-color: #f5efea;
  position: absolute;
  top: 0;
  z-index: -1;
}
.list-inner {
  max-width: 1000px;
  margin: auto;
}
.list-heading-ttl {
  font-size: 3.6rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  margin: 60px 0;
}
.list-heading-ttl span {
  position: relative;
  padding-left: 75px;
}
.list-heading-ttl span::before {
  content: "";
  display: inline-block;
  background-image: url("/common/img/list_img01.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 67px;
  height: 90px;
  position: absolute;
  top: -20px;
  left: 0;
}
.breadcrumb {
  font-size: 1.2rem;
  display: flex;
}
.breadcrumb li:not(:last-of-type)::after {
  content: "/";
  margin: 0 1em;
}
.breadcrumb li a {
  color: #ff6600;
}
.breadcrumb li a:hover {
  border-bottom: 1px solid #ff6600;
  transition: none;
}

@media screen and (max-width: 767px) {
  .bg-brwon::before {
    height: 140px;
  }
  .list-heading-ttl {
    font-size: 2.2rem;
    margin: 40px;
  }
  .list-heading-ttl span {
    padding-left: 50px;
  }
  .list-heading-ttl span::before {
    width: 40px;
    height: 55px;
    top: -10px;
  }
}


/* table */
/* ============================================ */
.list-table {
  margin: 2rem 0 6rem;
}
.list-table tr:last-of-type {
  border-bottom: 1px solid #ccc;
}
.list-table th {
  font-size: 2rem;
  width: 160px;
  text-align: center;
}
.list-table .category01 th {
  background: -webkit-linear-gradient(135deg, rgba(181,212,105,0.4) 0%,rgba(181,212,105,0.2) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(-45deg, rgba(181,212,105,0.4) 0%,rgba(181,212,105,0.2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.list-table .category02 th {
  background: -webkit-linear-gradient(135deg, rgba(108,196,123,0.4) 0%,rgba(108,196,123,0.2) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(-45deg, rgba(108,196,123,0.4) 0%,rgba(108,196,123,0.2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.list-table .category03 th {
  background: -webkit-linear-gradient(135deg, rgba(253,215,92,0.4) 0%,rgba(253,215,92,0.2) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(-45deg, rgba(253,215,92,0.4) 0%,rgba(253,215,92,0.2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.list-table .category04 th {
  background: -webkit-linear-gradient(135deg, rgba(252,180,94,0.4) 0%,rgba(252,180,94,0.2) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(-45deg, rgba(252,180,94,0.4) 0%,rgba(252,180,94,0.2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.list-table .category05 th {
  background: -webkit-linear-gradient(135deg, rgba(255,146,177,0.4) 0%,rgba(255,146,177,0.2) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(-45deg, rgba(255,146,177,0.4) 0%,rgba(255,146,177,0.2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.list-table .category06 th {
  background: -webkit-linear-gradient(135deg, rgba(121,211,226,0.4) 0%,rgba(121,211,226,0.2) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(-45deg, rgba(121,211,226,0.4) 0%,rgba(121,211,226,0.2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.list-table .category07 th {
  background: -webkit-linear-gradient(135deg, rgba(133,165,237,0.4) 0%,rgba(133,165,237,0.2) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(-45deg, rgba(133,165,237,0.4) 0%,rgba(133,165,237,0.2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.list-table td {
  width: calc(100% - 160px);
  padding: 4rem 2rem 3rem 4rem;
}
.list-table td > ul {
  display: flex;
  flex-wrap: wrap;
}
.list-table td > ul li {
  width: calc(100% / 3);
  padding-left: 1.2em;
  margin-bottom: 10px;
  position: relative;
}
.list-table td > ul li::before {
  content: "";
  width:  .6em;
  height: .6em; 
  border-radius:  50%;
  position: absolute;
  top: .55em;
  left: 0;
}
.list-table .category01 td > ul li::before {
  background-color: #99d20d;
}
.list-table .category02 td > ul li::before {
  background-color: #41c056;
}
.list-table .category03 td > ul li::before {
  background-color: #ffc300;
}
.list-table .category04 td > ul li::before {
  background-color: #fb9b28;
}
.list-table .category05 td > ul li::before {
  background-color: #fe7a9f;
}
.list-table .category06 td > ul li::before {
  background-color: #46cbe1;
}
.list-table .category07 td > ul li::before {
  background-color: #638be5;
}

@media screen and (min-width: 768px) {
 .list-table tr {
   border-top: 1px solid #ccc;
  }
}

@media screen and (max-width: 767px) {
	.list-table tr {
    display: flex;
    flex-direction: column;
  }
  .list-table th {
    font-size: 1.5rem;
    width: 100%;
  }
  .list-table td {
    width: 100%;
    padding: 2rem 1rem 3rem;
  }
  .list-table td > ul li {
    width: calc(100% / 2);
    padding-left: 1em;
  }
}