@charset "utf-8";
/* CSS Document */

/*--------------------------------------
　Main Index
---------------------------------------*/

#index {
  margin: 0;
  padding: 25px;
}

#index .headArea {
  margin: 0 0 25px;
}

#index .headArea h2 {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 10px;
}

#index .sec01 h2,
#index .sec02 h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 10px;
}

#index .sec01 h3,
#index .sec02 h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 10px;
}

#index .sec01 h4,
#index .sec02 h4 {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px;
}

#index .sec01 h5,
#index .sec02 h5 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
}

#index .sec01 h6,
#index .sec02 h6 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
}

#index .sec01 p.lead,
#index .sec02 p.lead {
  margin: 0 0 30px;
}

#index .sec01 {
  margin: 0 0 50px;
  padding: 25px;
  border: 1px solid #D5D5D5;
}

#index .sec02 {
  margin: 0 0 50px;
  padding: 25px;
  border: 1px solid #D5D5D5;
}

#index .sec01 p,
#index .sec02 p {
  margin: 0 0 20px;
}

#index .sec01 p:last-child,
#index .sec02 p:last-child {
  margin: 0;
}

.acd-check{
    display: none;
}
.btn-more-new{
    display: block;
    margin: 3rem auto 5rem;
    padding: 2.1rem 4.5rem;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.74;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
    max-width: 450px;
    position: relative;
    color: #111111;
    background: #ffffff;
    border:2px solid #111111;
    font-weight:bold;
    cursor: pointer;
    border-radius: 999px;
}
.btn-more-new::before {
    content: "";
    width: 0.2rem;
    height: 1.4rem;
    background: #111111;
    position: absolute;
    right: 3.6rem;
    top: 50%;
    transform: translateY(-50%);
}
.btn-more-new:after{
    content: "";
    width: 1.4rem;
    height: 0.2rem;
    background: #111111;
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
}
.acd-content{
    display: block;
    height: 0;
    opacity: 0;
    padding: 0;
    transition: .5s;
    visibility: hidden;
}
.acd-check:checked + .btn-more-new:after{
    content: "";
    width: 1.4rem;
    height: 0.2rem;
    background: #111111;
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
}
.acd-check:checked + .btn-more-new:before{
    content: none;
}
.acd-check + .btn-more-new + .acd-content{
    height:0;
    overflow: hidden;
}
.acd-check:checked + .btn-more-new + .acd-content{
    height: auto;
    opacity: 1;
    visibility: visible;
}


@media screen and (max-width: 599px) {
.btn-more-new {
  padding: 1.7rem 4.5rem;
  font-size: 1.7rem;
  max-width: 85%;
}
}