html, head, body{
    margin: 0;
}
body{
    padding: 0;
    background-color: white;
    z-index: 1;
    position: relative;
}
header{
    padding: 24px 120px 24px;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 240px);
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.7);
}
header .header-title{
    font-size: 24px;
    color: white;
    text-decoration: none;
}
header .menu-header{
    
}
header .menu-header .menu-item{
    color: white;
    text-decoration: none;
    padding: 12px 12px;
    border-right: 1px solid white;
}
.menu-item.active{
    border-bottom: 1px solid white;
}
.img{
    position: fixed;
}
.img .opacity-img{
    min-width: 100vw;
    opacity: 0.3;
    margin-left: 0px;
    object-fit: contain;
}
.catch-copy{
    position: fixed;
    top: 36vh;
    font-size: 3vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 0 120px;
    font-weight: bold;
    width: calc(100%);
}
.catch-copy-company{
    text-align: center;
    font-size: 32px;
    margin-left: -240px;
    margin-top: 120px;
}
.big-title{
    font-size: 40px;
    margin: 0 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0  0 0;
}
.profile {
    font-size: 16px;
    margin: 0 120px;
}
.profile-item {
    padding: 32px 120px;
    border-bottom: 1px solid #ccc;
    display: flex;
}
.profile-item-title {
    font-weight: bold;
    min-width: 120px;
    max-width: 120px;
    text-align: right;
}
.profile-item-content {
    padding-left: 32px;
}
.background-img-area{
    display: block;
    height: 100vh;
}
main{
    background-color: white;
    z-index: 1;
    position: relative;
}
.greeting{
    margin: 64px 120px;
    line-height: 2;
}
.greeting-header{
    font-size: 24px;
    font-weight: bold;
}
.greeting-header-sub{
    font-size: 18px;
    font-weight: bold;
}
.flow-wrapper{
    border: 4px solid #aaa;
    padding: 24px;
    color: #333;
    margin: 36px 80px;
}
.flow-title{
    font-size: 28px;
    margin: 12px 0;
    border-bottom: 1px solid #aaa;
    font-weight: bold;
}
.flow-content-wrapper{
    display: flex;
    justify-content: space-between;
}
.flow-content{
    font-size: 20px;
}
.flow-img img{
    height: 160px;
}
.flow-next-icon{
    text-align: center;
    font-size: 36px;
    color: gray;
    font-weight: bold;
}
.catalog-wrapper{
    display: flex;
    justify-content: space-between;
    margin: 36px 0;
}
.catalog-caption{
    border-bottom: 1px solid #3f51b5;
    border-left: 12px solid #3f51b5;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
}
.contact-wrapper {
    background-color: rgba(0, 0, 0, 0.5);
    padding-bottom: 128px;
    padding-top: 128px;
    margin-top: 128px;
}
.contact-contents {
    background-color: white;
    width: 70%;
    margin: 0 auto;
    position: relative;
    padding: 60px 0;
}
.contact-form-wrapper {
    margin: 0 auto;
    width: 70%;
}
.contact-form-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 12px 12px 0;
}
.form-control {
    width: 100%;
    height: 40px;
    border: 0px solid #ccc;
    border-bottom: 1px solid #bbb;
    border-radius: 4px;
    padding: 0 10px;
}
.required {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 4px 16px;
    font-size: 12px;
    position: relative;
    bottom: 1px;
    margin-left: 12px;
}
.input-field {
    margin-bottom: 48px;
}
.btn {
    background-color: #3f51b5;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-align: center;
    display: block;
    margin: 0 auto;
    width: 200px;
    text-decoration: none;
}
.footer {
    height: 24px;
    top: 32px;
    position: relative;
    text-align: center;
    font-size: 12px;
}
.inquiry{
    padding-top: 0px;
}
.sub-title{
    text-align: center;
    margin-bottom: 64px;
    margin-top: -32px;
}
.line-up-wrapper{
    display: flex;
    justify-content: space-between;
    margin: 32px 0 64px;
}
.line-up-title{
    text-align: center;
    font-weight: bold;
}
.line-up-items img{
    cursor: pointer;
}
.modal{
    display: none;
}
.modal.active{
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal.active .modal-content{
    background-color: white;
    padding: 32px;
    height: 80%;
    width: 60%;
    position: fixed;
    border-radius: 12px;
    overflow-y: auto;
}
.modal-title{
    text-align: center;
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 20px;
}
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th {
    background-color: #3f51b5;
    color: white;
    border-bottom: 1px solid #9fa8da;
}
.table tr:nth-child(odd) {
    background-color: rgb(241, 242, 246);
}
.table td,
.table th {
    padding: 8px 24px;
    text-align: left;
}
