@charset "UTF-8";
@import "style.css";

main {
    padding: 0 0 0rem;
}

section {
    padding: 0px 0 90px;
}

#kvarea #kv {
    height: 250px;
    position: relative;
	background: transparent url(../img/kv.jpg) no-repeat center center;
    background-size: cover;
}
#kvarea #kv::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 40, 50, .25);
    z-index: 1;
}
h2 {
	font-size: 2.5rem;
	line-height: 1.2;
	font-weight: 700;
    position: absolute;
    top: 50%;
	left: 5%;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
	z-index: 9;
	margin-bottom: 0px;
    text-shadow: 0 0 12px rgba(255, 255, 255, .95),0 0 12px rgba(255, 255, 255, .95),0 0 12px rgba(255, 255, 255, .95);
}
h2.kv_ttl strong {
	text-transform: uppercase;
	font-size: 12px;
	display: block;
}
h2 span {
    position: relative;
    letter-spacing: .35rem;
}
#tinymce p {
	margin-bottom: 2rem;
}
#tinymce p.right {
	text-align: right;
}
#tinymce h3 {
	line-height: 1.4;
	margin-bottom: 1.2rem;
}
#tinymce h4 {
	font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: dotted 1px #CCC;
}
#tinymce .table {
	margin-bottom: 3rem;
}
#tinymce table {
    font-size: .9rem;
    width: 100%;
    border-top: solid 1px #CCC;
    border-left: solid 1px #CCC;
}
#tinymce table th,
#tinymce table td {
    text-align: left;
    vertical-align: middle;
    border-right: solid 1px #CCC;
    padding: 1.7rem;
}
#tinymce table th {
    background-color: #EFEFEF;
	font-weight: 700;
    border-bottom: solid 1px #CCC;
    width: 27%;
	text-align: center;
}
#tinymce table td {
	border-bottom: solid 1px #CCC;
}
#tinymce ol,
#tinymce ul {
	margin-bottom: 3rem;
	margin-left: 20px;
}
#tinymce ul {
	list-style: disc;
}
#tinymce ol {
	list-style: decimal;
}
#tinymce ul.icon {
    margin-left: 4ch;/*ｵﾘｼﾞﾅﾙ　0px*/
}
#tinymce ul.icon li {
	list-style: none;
	margin-bottom: .5rem;
}
#tinymce ul.icon li a {
	display: inline-block;
	position: relative;
	padding-left: 30px;
}
#tinymce ul.icon li a::before {
    position: absolute;
    top: 2px;
    left: 0;
    content: "";
    width: 21px;
    height: 27px;
}
#tinymce ul.icon li a.pdf::before {
    background: transparent url(../img/pdf-icon.png) no-repeat center center;
    background-size: contain;
}
#tinymce ul.icon li a.doc::before {
    background: transparent url(../img/doc-icon.png) no-repeat center center;
    background-size: contain;
}
#tinymce ul.icon li a.xls::before {
    background: transparent url(../img/xls-icon.png) no-repeat center center;
    background-size: contain;
}
#tinymce ul.icon li a.ppt::before {
    background: transparent url(../img/ppt-icon.png) no-repeat center center;
    background-size: contain;
}
@media screen and (max-width: 764px) {
#kvarea #kv {
    height: 150px;
}
section {
    padding: 0px 0 40px;
}
h2 {
    transform: translate(5%, -50%);
    -webkit-transform: translate(5%, -50%);
    -ms-transform: translate(5%, -50%);
}
#tinymce h4 {
	font-size: 18px;
  }
#tinymce .table {
    overflow-x: scroll;
}
#tinymce .table table {
    width: 150%;
	margin-bottom: 1rem;
}
#tinymce table th, #tinymce table td {
    padding: .8rem;
}
#tinymce ul.icon li a {
    padding-left: 27px;
}
#tinymce ul.icon li a::before {
    top: 0px;
    width: 19px;
    height: 25px;
}
}

#thumbnail-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
/*追加*/
    width: 80%;
    margin:0 auto;
}

#thumbnail-list .thumbnail-item {
    width: 20%;/*5%*/
    padding: 0 0%;
	margin-bottom: 0%;
    box-sizing: border-box;
    position: relative;
}

#thumbnail-list .thumbnail-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    -ms-transition: 0.8s;
    transition: 0.8s;
}

#thumbnail-list .thumbnail-item.thumbnail-current::after,
#thumbnail-list .thumbnail-item:hover::after {
    background-color: rgba(0, 0, 0, 0);
}


#thumbnail-list .thumbnail-item img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 764px) {
#thumbnail-list .thumbnail-item {
    width: 10%;
}
}
#gallery .item  {
	margin-bottom: 3rem;
}
.item.fadeIn {
margin-top: 7rem;
}

/*追加*/
.kakko {
  counter-reset: num;
  list-style: none;
  padding-left: 0;
}

.kakko li {
  counter-increment: num;
}

.kakko li::before {
  content: "(" counter(num) ") ";
  /* font-weight: bold; 太字にしたくない場合は削除 */
}

ol.kakko {
  list-style: none !important;
}

.slick-slider
{
    width: 80%;
    margin: 0 auto;}

.w700
{
    width: 70%;}

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