@charset "utf-8";
/* 2019.5.22 */

.cw-contents {
    padding-bottom: 1px;
}

.cw-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 60px;
}

.cw-section {
    margin-bottom: 60px;
}

.cw-section-small {
    margin-bottom: 40px;
}

.cw-section ,
.cw-section-switch {
    font-size: 13px;
}

.cw-section p ,
.cw-section-switch p {
    margin-bottom: 1.5em;
}

.cw-section strong ,
.cw-section-switch strong {
    color: #009f94;
}

.cw-heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: #d4d4d3 1px solid;
}

.cw-subtitle {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
    text-indent: -1em;
    margin-left: 1em;
}
.cw-subtitle:before {
    content: "■";
    color: #009f94;
}

.cw-menu {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 60px;
}
.cw-menu li {
    flex: 0 1 33.3333%;
    max-width: 33.3333%;
    padding: 10px;
    box-sizing: border-box;
}
.cw-menu a {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    display: block;
    line-height: 20px;
    text-decoration: none;
    background-color: #f0f0f0;
    padding: 10px 0;
    position: relative;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cw-menu a:hover {
    background-color: #009f94;
    color: #fff !important;
}
.cw-menu .fa {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.cw-menu-sub {
    display: block;
    font-size: 12px;
}

.cw-content {
    margin-bottom: 40px;
}

.cw-switch-check {
    display: none;
}
.cw-switch {
    background: #f0f0f0;
    padding: 15px 45px 15px 20px;
    cursor: pointer;
    display: block;
    position: relative;
}
.cw-switch-inner {
  font-size: 16px;
  font-weight: 700;
}
.cw-switch:after {
  content: "+";
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  text-align: center;
}
.cw-switch:hover ,
.cw-switch-check:checked ~ .cw-switch {
    background: #009f94;
    color: #fff;
}
.cw-switch-check:checked ~ .cw-switch:after {
  content: "-";
}

.cw-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: padding 0s ease .4s, max-height .4s ease, opacity .4s ease-in;
    box-sizing: border-box;
    background: #f0f0f0;
}
.cw-switch-check:checked ~ .cw-body {
    max-height: 10000px;
    opacity: 1;
    padding: 20px;
    transition-delay: 0s;
}

.cw-note {
    font-size: 12px;
    margin: 8px 0;
}

.cw-table {
    width: 100%;
    border-collapse: collapse;
}
.cw-table th {
    border: 1px solid #d4d4d3;
    background: #f5f2e9;
    padding: 5px 20px;
    text-align: center;
    vertical-align: center;
}
.cw-table td {
    border: 1px solid #d4d4d3;
    background: #fff;
    padding: 5px 20px;
    vertical-align: center;
}
.cw-table .tac {
  text-align: center;
}

.cw-table-02 th:nth-child(1) ,
.cw-table-02 th:nth-child(2) {
  width: 25%;
}

.cw-body .cw-table th:nth-child(1) {
    width: 15%;
}
.cw-body .cw-table th:nth-child(3) {
    width: 20%;
}

.cw-body-2 .cw-table th:nth-child(1) {
    width: 12%;
}
.cw-body-2 .cw-table th:nth-child(3) {
    width: 15%;
}
.cw-body-2 .cw-table th:nth-child(4) {
    width: 17%;
}

.btn-back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 20;
}
