@charset "UTF-8";

/* CSS Document */
.section-top {
    position: relative;
    padding-top: 90px;
}

.section-top__bg {
    background: url(../images/maker/maker-top.jpg) 30% bottom;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 70vh;
}

.section-top__bg-shadow {
    position: relative;
    display: block;
    height: 70vh;

}

.section-top__bg-shadow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
}

.section-top__title {
    padding-top: 30vh;
    margin: 0 10vh;
    text-align: center;
    position: relative;
    z-index: 100;
}

.section-top__title span {
    font-family: "urw-din-condensed", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3.4rem;
    line-height: 2.6rem;
    letter-spacing: 0.14em;

}

.section-top__title p {
    font-size: 2.0rem;
    font-weight: 600;
    margin-top: 20px;
}

.section-maker__explanation {
    margin-top: 50px;
    padding: 0 30px;
}

.section-maker__item-wrapper {
    margin-top: 50px;
    padding: 0 30px;
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 40px 16px;
}

.section-maker__item {
    box-shadow: 0 0 0 2px #e5e5e5;
}

.section-maker__item-img {
    width: 80%;
    margin: 20px auto;
}

.section-maker__textbox {
    padding: 0 25px 25px 25px;
}
.section-maker__textbox-title{
    font-size: 2.0rem;
    font-weight: 600;
}
.section-maker__textbox-explanation{
    font-size: 1.4rem;
}
.section-maker__textbox-example{
    padding-top: 20px;
    font-size: 1.4rem;
}
.section-maker__textbox-button{
    margin-top: 20px;
}
.arrow_button {
    position: relative;
    display: inline-block;
    padding-left: 37px;
    
}

.arrow_button::before {
    content: '';
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    border: 2px solid #333;
}

.arrow_button::after {
    content: '';
    width: 9px;
    height: 9px;
    border: 0;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 6px;
    bottom: 0;
    margin: auto;
}
.section-maker__textbox-button p{
    border-bottom: 1px solid #333;
}
@media(min-width:768px){
    .section-top__bg{
        height: 45vh;
    }
    .section-top__bg-shadow{
        height: 45vh;
    }
    .section-top__title{
        padding-top: 21vh;
    }
    .section-top__title span{
        font-size: 4.8rem;
    }
    .section-top__title p{
        font-size: 2.6rem;
    }
    .section-maker__explanation{
        margin-top: 100px;
        padding: 0 50px;
    }
    .section-maker__item-wrapper {
        margin-top: 100px;
        padding: 0 50px;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(min-width:1140px){
    .section-top__bg{
        height: 60vh;
    }
    .section-top__bg-shadow{
        height: 60vh;
    }
    .section-top__title{
        padding-top: 26vh;
    }
    .section-top__title span{
        font-size: 8.0rem;
    }
    .section-top__title p{
        font-size: 3.6rem;
    }
    .section-maker__explanation{
        padding: 0 ;
        max-width: 1140px;
        margin: 100px auto 0;
    }
    .section-maker__item-wrapper {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1140px;
        margin: 100px auto 0;
    }
}
.section-maker__item {
    opacity: 0;
    transition: all 1s;
    transform: translateY(100px);
  }
  .section-maker__item.show {
    opacity: 1;
    transform: translateY(0px);
  }
  