/* business page */



.business__fv{
  width: 100%;
  padding-top: calc(500 / 1440 * 100%);
  background-image: url(../../img/business/fv.jpg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 30px;
}

.about {
    margin-top: 100px;
}


.container {

}

.about__items {
    position: relative;
    z-index: 1;
    padding: 50px 0 100px;
    margin-top: 50px;
}

.about__items::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    width: 100vw;
    background: #f2f2f2;
    z-index: -1;
}

.about__item {
    display: flex;
    margin-top: 40px;
}

.about__item-left {
    width: 400px;
}

.about__item-title {
    font-size: 80px;
    color: #0071bc;
    line-height: 1;
}

.about__item-title span{
    font-size: 20px;
    font-weight: 700;
    font-family: "NotoSansJP", "ヒラギノ角ゴ ProN W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
    margin-left: 10px;
}

.about__item-right {
    width: calc(100%  - 400px);
    margin-top: auto;
    margin-bottom: auto;
    border-left: 3px solid #0071bc;
    padding-left: 20px;
}

.about__item-text {
    font-size: 18px;
}


.flow {
    margin-top: 100px;
}

.flow__images {
    margin-top: 50px;
    display: flex;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.flow__img {

}

.flow__items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
}

.flow__item {
    width: calc(25% - 5px);
    background: #0071bc;
    color: #fff;
    padding: 50px 10px 20px;
    position: relative;
}

.flow__item-number {
    position: absolute;
    font-size: 48px;
    left: -5px;
    top: -9px;
    line-height: 1;
}

.flow__item-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

.flow__item-text {
    margin-top: 20px;
    padding: 0 12px;
}

.flow__copy {
    font-size: 40px;
    color: #0071bc;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
}

.menu {
    margin-top: 100px;
}

.h2 {

}

.menu__items {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
}

.menu__item {
    background: #0071bc;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 20px 0 23px 0;
}

.business__button{
    margin: auto;
    margin-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

.business__button a{
    text-align: left;
    font-size:30px;
    width: 450px;
    padding: 15px 30px 18px;
}

@media screen and (max-width: 767.98px){
    .about{
        margin-top: 50px;
    }
    .about__item{
        display: block;
    }
    .about__item-left{
        width: 100%;
    }
    .about__item-title{
        font-size: 36px;
    }
    .about__item-title span{
        font-size: 14px;
    }
    .about__item-right{
        width: 100%;
        border-left: 0;
        padding-left: 0;
        margin-top: 10px;
    }
    .about__item-text{
        font-size: 14px;
    }
    .about__items{
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .about__item{
        margin-top: 25px;
    }
    .about__items{
        margin-top: 20px;
    }
    .flow__images{
        flex-wrap: wrap;
    }
    .flow__img{
        width: 50%;
    }
    .flow__items{
        display: block;
    }
    .flow__item{
        width: 100%;
        margin-top: 10px;
        padding: 30px 10px 10px;
    }
    .flow__item-title{
        font-size: 20px;
        margin-bottom: 0;
    }
    .flow__item-text{
        text-align: center;
        margin-top: 10px;
    }
    .flow__copy{
        font-size: 20px;
    }
    .menu__items{
        margin-top: 30px;
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }
    .menu__item{
        font-size: 16px;
        padding: 15px 0 16px;
    }
    .business__button{
        margin-top: 50px;
    }
    .business__button a{
        width: 250px;
        font-size: 16px;
    }
}

