@charset "UTF-8";
:root {
  --c-green: #00712f;
  --c-gry: #333;
  --c-red: #dc2630;
}

#sustainability{
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem 0 4rem;
}

#sustainability .wrap-common{
    max-width: calc(980px + 20vw);
    margin: 0 auto;
}

#sustainability p{
    font-size: 16px;
    font-weight: 500;
    line-height: 2em;
}

#sustainability p.sust-title{
    font-size: 32px;
    line-height: 1.5em;
    font-weight: bold;
    color: var(--c-green);
    text-align: center;
}

#sustainability .sust-layout{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
padding-top: 50px;
}

#sustainability .sust-layout .item:nth-of-type(1){
    padding-right:50px;
}

#sustainability .sust-layout .item:nth-of-type(2){
    padding-left:50px;
    border-left: 1px solid #D9D9D9;
}

#sustainability .sust-layout .item .sust-title{
    margin-top: 0;
}

.attempt{
    padding-top: 100px;
    text-align: center;
}

.attempt-column{
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #333;
    margin-bottom: 30px;
}

.attempt-column .attempt-title{
    border-bottom: 2px dashed #ccc;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.5em;
    padding:20px 50px;
    text-align: left;
    color: var(--c-green);
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.attempt-column .attempt-title.active{
    border-bottom: 0;
}

.attempt-column .attempt-title::before{
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--c-green);
    background-color: #fff;
}

.attempt-column .attempt-title::after{
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--c-green);
    margin-left: auto;
    background-color: #fff;
    background-image: linear-gradient(var(--c-green), var(--c-green));
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 2px;
}


.attempt-column .attempt-title.active::after{
    background-image:
        linear-gradient(var(--c-green), var(--c-green)),
        linear-gradient(var(--c-green), var(--c-green));
    background-repeat: no-repeat;
    background-position: center, center;
    background-size: 12px 2px, 2px 12px;
}

.attempt-column .attempt-content{
    max-height: var(--attempt-height, none);
    overflow: hidden;
    opacity: 1;
    transition: max-height 0.5s ease, opacity 0.3s ease;
}

.attempt-column .attempt-content.active{
    max-height: 0;
    opacity: 0;
}

.attempt-column .attempt-content .inner{
    padding: 40px 80px 60px;
}

.attempt-column .mark-layout{
    display: grid;
    grid-template-columns:110px 1fr;
    gap: 50px;
}

.attempt-column .mark-layout .item ul{
    margin: 0;
    padding: 0;
}

.attempt-column .mark-layout .item ul li{
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    text-indent: -1.5em;
    margin-left: 1.5em;
    margin-bottom: 15px;
}

.attempt-column .mark-layout .item ul li:last-child{
    margin-bottom: 0;
}

.attempt-column .mark-layout .item ul li::before{
    content: "●";
    color: var(--c-green);
    margin-right: .5em;
}

.attempt-column .sub-layout{
    padding-top: 40px;
    display: grid;
    grid-template-columns:1fr 320px;
    gap: 80px;
}

.attempt-column .sub-layout .item{
    text-align: left;
}

.attempt-column .sub-layout .item .batch{
    display: inline-block;
    color: #fff;
    background-color: var(--c-green);
    padding: 10px 25px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1em;
}

.attempt-column .sub-layout .item p{
    margin: 0 0 1em;
    font-size: 16px;
    line-height: 1.8em;
}

.attempt-column .sub-layout .item p.title{
    font-size: 18px;
    font-weight: bold;
}

.attempt-column .sub-layout .item p:last-child{
    margin-bottom: 0;
}

@media (max-width: 768px) {

#sustainability{
    padding: 1rem 0 2rem;
}

#sustainability p{
    font-size: 14px;
}

#sustainability p.sust-title{
    font-size: 24px;
}

#sustainability .sust-layout{
display: grid;
grid-template-columns: 1fr;
gap: 0;
padding-top: 50px;
}

#sustainability .sust-layout .item:nth-of-type(1){
    padding-right:0;
    padding-bottom: 30px;
}

#sustainability .sust-layout .item:nth-of-type(2){
    padding-left:0;
    padding-top: 30px;
    border-left: 0;
    border-top: 1px solid #D9D9D9;
}


.attempt{
    padding-top: 100px;
    text-align: center;
}

.attempt-column{
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #333;
    margin-bottom: 30px;
}

.attempt-column .attempt-title{
    border-bottom: 2px dashed #ccc;
    font-size: 18px;
    line-height: 1.5em;
    padding:15px 15px;
    text-align: left;
    color: var(--c-green);
    display: flex;
    align-items: center;
    gap:10px;
    cursor: pointer;
}

.attempt-column .attempt-title::before{
    content: "";
    width: 16px;
    height: 16px;
}

.attempt-column .attempt-title::after{
    content: "";
    width: 24px;
    height: 24px;
}

.attempt-column .attempt-content .inner{
    padding: 30px 20px 20px;
}

.attempt-column .mark-layout{
    display: grid;
    grid-template-columns:1fr;
    gap: 30px;
}

.attempt-column .mark-layout .item:nth-of-type(1) img{
    max-width: 100px;

}

.attempt-column .mark-layout .item ul{
    margin: 0;
    padding: 0;
}

.attempt-column .mark-layout .item ul li{
    font-size: 14px;
}

.attempt-column .mark-layout .item ul li:last-child{
    margin-bottom: 0;
}


.attempt-column .sub-layout{
    padding-top: 40px;
    display: grid;
    grid-template-columns:1fr;
    gap: 20px;
}

.attempt-column .sub-layout .item{
    text-align: left;
}

.attempt-column .sub-layout .item .batch{
    padding: 5px 15px;
    font-size: 14px;
}

.attempt-column .sub-layout .item p{
    margin: 1em 0;
    font-size: 14px;
}

.attempt-column .sub-layout .item p.title{
    font-size: 16px;
}

.attempt-column .sub-layout .item p:last-child{
    margin-bottom: 0;
}


}
