body {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings: "width" 100;
  }
  /* 全体共通 */
body{
    background-color: #181619;
}
/* ヘッダー */
header{
    color: #ffffff;
    position: sticky;
    top: 5px;
    background-color: #181619 ;
    opacity: 0.9;
    z-index: 5;

}
header .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: aqua; */
    width: 90%;
    margin: 0 auto;
    max-width: 1500px;
    padding: 20px;
}
header .logo{
    font-size: 24px;
    font-weight: 700;
    
}
header nav ul{
    display: flex;
}
header nav ul li{
    margin-left: 50px;
}
header nav ul li a{
    transition: .4s;
}
header nav ul li a:hover{
    transition: .4s;
    color: yellow;
}
@media screen and (max-width: 960px) {
  header .row{
    display: block;
    /* flex-wrap: wrap; */
  }
  header nav ul{
    width: 100%;
    font-size: 12px;
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
  }
  header nav ul li{
    margin-left: 0px;
}
}
/* メインビジュアル */

 .main_visual{
    position: relative;
    height: 90vh;
    /* border-radius: 0 0 20px 20px; */
    overflow: hidden;
 }
 .main_visual video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    border-radius: 0 0 10px 10px;
    /* z-index: inherit;-1 */
    height: 100%;
 }
 .main_visual .container{
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
    height: 640px;
    position: relative;
 }
 .main_visual .title{
    position: absolute;
    bottom: 10%;
    left: 0;
    z-index: 2;
 }
 .main_visual h1{
    font-size: 70px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    mix-blend-mode: overlay;
    z-index: ;
    
 }
 .main_visual p{
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
 }
 .main_visual .purple{
    background-color: #7f8180;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    mix-blend-mode: multiply;
}
@media screen and (max-width: 960px) {
  .main_visual h1{
    font-size: 32px;
  }
  .main_visual p{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
 }
 .main_visual .title{
    position: absolute;
    top: 20%;
    left: 0;
    z-index: 2;
 }
  .main_visual .container{
    height: 340px;
  }
  .main_visual{
    height: 2%;
 }
  
}

/* セクション１ */
.section1{
    color: #ffffff;
    padding: 80px 0;

}
.section1 .container{
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
}
.section1 .row{
    display: flex;
    justify-content: space-between;
}
.section1 .col{
    width: 48%;
}
.section1 .sub_title{
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.section1 h2{
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.6;
    /* background-color: aqua; */
    word-break: break-all;
}
.section1 .text{
    font-size: 18px;
    line-height: 1.8;
    padding: 50px 0;
    margin-bottom: 50px;
}
.btn{
    font-size: 18px;
    border: solid 1px #ffffff;
    border-radius: 100px;
    display: inline-block;
    width: 270px;
    line-height: 60px;
    text-align: center;
    transition: .5s;
}
.btn:hover{
    color: yellow;
    border: solid 1px yellow;
    transition: .5s;
}
@media screen and (max-width: 960px) {
    .section1{
        padding: 20px;
      }
  .section1 .row{
    flex-wrap: wrap;
  }
  .section1 .col{
    width: 100%;
  }
  .section1 h2{
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    /* background-color: aqua; */
    word-break: break-all;
  }
.section1 .text{
    font-size: 15px;
    line-height: 1.6;
    padding: 30px 0;
    margin-bottom: 40px;
  }
}
/* .btn{
   left: 50%;
   transform: translateX(-50%);

} */
/* セクション２ */
.section2{
    color: #ffffff;
    padding: 80px 0;
    /* background-color: aqua; */
}
.section2 .container{
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
}
.section2 .sub_title{
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.section2 h2{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 60px;
}
.section2 .row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
.section2 .col{
    width: 24%;
    height: 300px;
    /* background-color: aqua; */
    position: relative;
}
.section2 img{
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: unset;
}
.section2 h3{
    background-color: #ffffff;
    display: inline-block;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    width: 80%;
    opacity: 0.8;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    color: #181619;
}
.section2 .row .col .btn{
    background-color: #fcfefb;
    display: inline-block;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    width: 80%;
    opacity: 0.8;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    /* color: #181619; */
    color: #181619;
    mix-blend-mode: luminosity¥¥¥;
    line-height: 25px;
}
.section2 .center{
    text-align: center;
}
.section2 h1{
    font-size: 15px;
    font-weight: 500;
    margin: 10px 0 30px;
}
@media screen and (max-width: 960px) {
  .section2{
    padding: 20px;
  }
  .section2 .row{
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .section2 .col{
    width: 100%;
    margin-bottom: 20px;
  }
}
/* セクション3 */
.section3{
    color: #ffffff;
    padding: 80px 0;
    /* background-color: aqua; */
}
.section3 .container{
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
}
.section3 .sub_title{
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.section3 h2{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
}
.section3 .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section3 .col{
    width: 48%;
}
.section3 .text{
    line-height: 1.8;
    margin-bottom: 50px;
}
.section3 img{
    border-radius: 20px;
}
@media screen and (max-width: 960px) {
    .section3{
        padding: 20px;
      }
  .section3 .row{
    flex-wrap: wrap;
  }
    .section3 .col{
        width: 100%;
        margin-bottom: 30px;
    }
  }

/* セクション4 */
.section4{
    color: #ffffff;
    padding: 80px 0;
    /* background-color: aqua; */
}
.section4 .container{
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
}
.section4 .sub_title{
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.section4 h2{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
}
.section4 .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section4 .col{
    width: 48%;
    height: 361px;
}
.section4 .text{
    line-height: 1.8;
    margin-bottom: 50px;
}
.section4 img{
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 960px) {
  .section4{
    padding: 20px;
  }
  .section4 .row{
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
    .section4 .col{
        width: 100%;
        margin-bottom: 30px;
        height: 100%;
    }
   .section4 .btn{
    top: -50px;
   }
  }

/* フッター */
footer{
    color: #ffffff;
    text-align: center;
    font-size: 12px;
}
footer .container{
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
    border-top: solid 1px #ffffff;
    padding: 50px 0 20px;
}
footer .logo{
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 40px;
}
footer ul{
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
footer ul li{
    font-size: 15px;
    margin: 0 20px;
}
footer a {
    transition: .5s;
}
footer a:hover{
    transition: .5s;
    color: yellow;
    opacity: 0.7;
}
@media screen and (max-width: 960px) {
    footer ul li{
        margin: 2%;
    }
    }
/* 下層ページ共通 */

.page_main_visual{
    position: relative;
    height: 35vh;
    /* border-radius: 0 0 20px 20px; */
    overflow: hidden;
 }
 .page_main_visual video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    border-radius: 0 0 10px 10px;
    /* z-index: inherit;-1 */
    height: 100%;
 }
 .page_main_visual .container{
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
    height: 300px;
    position: relative;
 }
 .page_main_visual .title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
    text-align: center;
 }
 .page_main_visual h1{
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    mix-blend-mode: overlay;
    z-index: 1;
    
 }
 .page_main_visual p{
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
 }
 .page_main_visual .purple{
    background-color: #7f8180;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    mix-blend-mode: multiply;
}
@media screen and (max-width: 960px) {
    .page_main_visual .title{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        z-index: 2;
        text-align: center;
     }
  .page_main_visual h1{
    font-size: 35px;
  }
  .page_main_visual .container{
    height: 200px;
  }
  .page_main_visual{
    height: 200px;
 }
 }
  
 /* コンセプト　セクション１ */

.company_section1{
    color: #ffffff;
    padding: 80px 0;
    /* background-color: aqua; */
}
.company_section1 .container{
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
}
.company_section1 .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.company_section1 .col{
    width: 48%;
    height: 361px;
}
.company_section1 img{
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}
.company_section1 table{
    /* background-color: aqua; */
    width: 100%;
}
.company_section1 table tr{
    /* background-color: aqua; */
    padding: 10px 0 5px;
    display: block;
    border-bottom: solid 0.3px; #ffffff
}
.company_section1 table tr th{
    width: 100px;
}
.company_section1 .sub_title{
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.company_section1 h2{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
    .company_section1 .row{
    flex-wrap: wrap;
    flex-direction: column-reverse;
    }
    .company_section1 .col{
        width: 100%;
        margin-bottom: 30px;
    }
    .company_section1 table tr th{
        width: 90px;
    }
  }

/* メニューセクション1 */
.menu_section1{
    color: #ffffff;
    padding: 80px 0;
    /* background-color: aqua; */
}
.menu_section1 .container{
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
}
.menu_section1 .sub_title{
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.menu_section1 h2{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 60px;
}
.menu_section1 .row{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.menu_section1 .col{
    width: 24%;
    height: 300px;
    /* background-color: aqua; */
    position: relative;
}
.menu_section1 img{
    border-radius: 20px;
    height: 70%;
    object-fit: cover;
    width: 100%;
    /* flex-wrap: wrap; */
    /* position: absolute;
    top: -60px; */
    /* z-index: -1; */
}
.menu_section1 h3{
    /* background-color: rgb(234, 120, 120); */
    display: inline-block;
    position: absolute;
    /* bottom: 16px; */
    top: 72%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    width: 100%;
    opacity: 0.8;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
}
/* .menu_section1 .row .col .btn{
    background-color: rgb(234, 120, 120);
    display: inline-block;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    width: 80%;
    opacity: 0.8;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    /* color: #181619; */
    color: #181619;
    mix-blend-mode: luminosity¥¥¥;
    line-height: 25px;
} */
.menu_section1 .center{
    text-align: center;
}
.menu_section1 h1{
    font-size: 15px;
    font-weight: 500;
    margin: 10px 0 30px;
}
@media screen and (max-width: 960px) {
  .menu_section1 .row{
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .menu_section1 .col{
    width: 47%;
    margin-bottom: 20px;
    /* display: inline-block; */
    
  }
}
/* お問い合わせ＿セクション１ */

.contact_section1{
    color: #ffffff;
    padding: 80px 0;
    /* background-color: aqua; */
}
.contact_section1 .container{
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
}
.contact_section1 .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact_section1 .col{
    width: 48%;
    height: 361px;
}
.contact_section1 img{
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}
.contact_section1 table{
    /* background-color: aqua; */
    width: 100%;
}
.contact_section1 table tr{
    /* background-color: aqua; */
    padding: 10px 0 5px;
    display: block;
    border-bottom: solid 0.3px; #ffffff
}
.contact_section1 table tr th{
    width: 100px;
}
.contact_section1 .sub_title{
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.contact_section1 h2{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
    .contact_section1 .row{
    flex-wrap: wrap;
    flex-direction: column-reverse;
    }
    .contact_section1 .col{
        width: 100%;
        margin-bottom: 30px;
    }
    .contact_section1 table tr th{
        width: 90px;
    }
  }
