/* index.html & servis.html 共通
---------------------------------------------------------------------------------*/
html{
    font-size: 100%;
}
body{
    font-family: "Noto Sans",sans-serif;
    font-weight: 400;
    color: #000;
    font-size: 16px;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
li{
    list-style: none;
}
a{
    color: #000;
    text-decoration: none;
}
a:hover{
    opacity: 0.7;
}
section, .last{
    padding: 0 16px;
}
.wrapper{
    max-width: 1312px;
    margin: 0 auto;
    padding: 96px 96px;
}
.sp{
    display: none;
}
/* js追加クラス ------------------------------------*/
.fade-in {
    opacity: 1; 
    transform: translatey(100%); 
    transition: none; 
}
body.js-loaded .fade-in {
    opacity: 0;
    transform: translatey(0.50%);
    transition: 2s;
}
body.js-loaded .fade-in.is-active {
    opacity: 1;
    transform: translatey(0.0);
}
/* ヘッダー -------------*/
header{
    width: 93%;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 16px;
    left: 3.3vw;
    z-index: 50;
}
header img{
    width: 6.25vw;
}
/* ナビ -------------*/
.nav_list{
    display: flex;
    gap: 2.5vw;
    font-weight: 700;
    background: linear-gradient(90deg, rgb(0, 37, 247), rgb(0, 191, 255));
    padding: 16px 3vw;
    border-radius: 10px;    
    font-size: 0.8vw;
}
.nav_list a{
    color: #fff;
}
/* お問い合わせ --------------*/
.last{
    background: linear-gradient(90deg, rgb(0, 191, 255), rgb(0, 37, 247));
}
.contact .box{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.contact .item{
    background-color: #fff;
    border-radius: 20px;
    padding: 32px 55px 0 55px;
    text-align: center;
    width: 352px;
    height: 266px;
}
.contact .item img{
    width: 72px;
}
.contact .item .left{
    text-align: start;
}
.way{
    margin: 32px 0;
    font-weight: 700;
}
/* 黒ボタン */
.contact .btn{
    padding: 10px 42px 10px 36px;
    color: #fff;
    background-color: #000;
    border-radius: 50px;
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
}
.contact .btn::before{
    content: "";
    position: absolute;
    width: 10px;
    height: 13px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #fff;
    top: 50%; 
    right: 25px;
    transform: translateY(-50%);
}
.contact .btn:hover{
    color: #000;
    background-color: #fff;
    opacity: 1;
    border: #000 solid 1px;
}
.contact .btn:hover:before{
    background-color: #000;
}
/* footer -------------*/
.footer{
    margin-top: 128px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.footer p, .footer ul a, .copylight{
    color: #fff;
}
.footer , .footer .inner{
    display: flex;
}
.footer .inner{
    gap: 32px;
    align-items: center;
}
.footer .inner img{
    width: 103px;
}
.footer .inner .name{
    font-size: 24px;
    margin-bottom: 24px;
}
.footer ul li{
    margin-bottom: 8px;
}
.copylight{
    text-align: center;
    margin-top: 96px;
}


/* index.html 【pc】
---------------------------------------------------------------------------------*/
.ja{
    font-size: 20px;
    color: #4B4949;
}
.en{
    font-family: "Outfit";
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #133D83;
    font-size: 64px;
    margin-bottom: 32px;
}
/* ファーストビュー ---------------*/
.mv{
    text-align: center;
    width: 100%;
    aspect-ratio: 1920/995;
    background-image: url(../img/fv.jpg);
    background-size: cover;
    padding-top: 7vw;
    position: relative;
}
.mv .text , .mv h2, .scroll{
    color: #fff;
}
.mv .text{
    margin-top: 6vw;
    font-size: 2vw;
    text-shadow: #2C80D9 0 0 40px,#2C80D9 0 0 10px;
}
.mv h2{
    font-size: 13vw;
    font-style: italic;
    text-shadow: #2C80D9 0 0 60px, #2C80D9 0 0 40px,#2C80D9 0 0 10px;
    letter-spacing: -0.03em;
    display: flex;
    overflow: hidden;
    padding: 60px ;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
h2 .block {
    display: flex;
}
.sp-break {
    width: 100%;
    justify-content: center;
}
.mv h2 span{
    transform: translateY(2em);
    animation: textanimation 2s forwards;
}
.mv h2 span:nth-child(1){
    animation-delay: 0.2s;
}
.mv h2 span:nth-child(2){
    animation-delay: 0.4s;
}
.mv h2 span:nth-child(3){
    animation-delay: 0.6s;
}
@keyframes textanimation {
    0%{
        transform: translateY(2em);
    }

    100%{
        transform: translateY(0);
    }
}
.scroll{
    position  : absolute;
    font-size: 1vw;
    font-weight: 700;
    font-family: "Outfit";
    left : 50%;
    bottom: 7vw;
    transform: translateX(-50%);
    text-shadow: #133D83 0 0 4px,#133D83 0 0 4px;
    letter-spacing: 0.3em;
}
.scroll::after {
    content : '';
    display : inline-block;
    position : absolute;
    background-color: #fff;
    right : 50%;
    bottom : -6vw;
    transform : translateX(-50%);
    width : 1px;
    height : 5vw;
    animation: scroll 1.5s infinite;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* ABOUT　UZUMARUとは --------------*/
.about{
    background-image: url(../img/wave-pc_about.png);
    background-size: cover;
}
.about p{
    text-align: center;
}
.about .ja{
    text-align: left;
}
.about p:nth-child(3){
    color: #133D83;
    font-size: 24px;
    font-weight: 700;
}
.about .box{
    margin: 32px auto 0;
    width: 600px;
}
.bottom{
    display: flex;
    margin-top: -41px;
}
.about .item{
    width: 300px;
    height: 300px;
    padding-top: 65px;
    margin: 0 auto;
    border-radius: 50%;
}
.about .item p{
    color: #fff;
}
.about .about-en{
    font-size: 40px;
}
.about .text{
    line-height: 30px;
}
.blue1{
    background-color: #65A9E4;
}
.blue2{
    background-color: #2E82CC;
}
.blue3{
    background-color: #133D83;
}
/* 事業内容 ----------------*/
.service .box{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.service .item{
    width: 352px;
    height: 325px;
    background-size: contain;
    padding: 32px 36px;
}
.service .item h3{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}
.service .item p{
    color: #fff;
    margin: 32px 0;
}
.service .item:nth-child(1){
    background-image: url(../img/servis01.jpg);
}
.service .item:nth-child(2){
    background-image: url(../img/servis02.jpg);
}
.service .item:nth-child(3){
    background-image: url(../img/servis03.jpg);
}
/* 白ボタン */
.service .btn{
    padding: 10px 42px 10px 36px;
    color: #000;
    background-color: #fff;
    border-radius: 50px;
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
}
.service .btn::before{
    content: "";
    position: absolute;
    width: 10px;
    height: 13px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #000;
    top: 50%; 
    right: 25px;
    transform: translateY(-50%);
}
.service .btn:hover{
    color: #fff;
    background-color: #000;
    opacity: 1;
}
.service .btn:hover:before{
    background-color: #fff;
}
/* オレンジボタン */
.service-btn{
    color: #fff;
    font-size: 20px;
    padding: 15px 52px 15px 38px;
    background-color: #E66700;
    border-radius: 50px;
    position: relative;
    display: block;
    width: fit-content;
    margin: 32px auto 0 auto;
    box-shadow: 4px 5px rgba(230, 103, 0, 0.45);
    border: #E66700 solid 1px;
}
.service-btn::before{
    content: "";
    position: absolute;
    width: 10px;
    height: 13px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #fff;
    top: 50%; 
    right: 25px;
    transform: translateY(-50%);
}
.service-btn:hover{
    color: #E66700;
    background-color: #fff;
    border: #E66700 solid 1px;
    opacity: 1;
}
.service-btn:hover:before{
    background-color: #E66700;
}
/* 代表挨拶 ---------------*/
.message{
    background-image: url(../img/wave-pc_message.png);
    background-size: contain;
    background-position: center;
}
.message .text{
    margin-bottom: 16px;
    line-height: 1.4em;
}
.message .text p{
    margin-top: 16px;
}
.message span{
    font-size: 24px;
}
.message .name{
    text-align: right;
}
.message h3{
    margin-top: 64px;
    font-size: 24px;
    font-weight: 700;
}
.video{
    width: 100%;
    height: auto;
    max-width: 1024px;
    aspect-ratio: 16/9;
    display: block;
    margin: 32px auto 0 auto;
}
/* 会社概要 ---------------*/
.comoany{
    background-image: url(../img/wave-pc_company.png);
    background-size: contain;
    background-position: center;
}
.history{
    display: flex;
}
.history .time{
    margin-right: 16px;
    white-space: nowrap;
}
table{
    max-width: 768px;
    margin: 0 auto;
    border-collapse: collapse;
}
table th{
    white-space: nowrap;
    text-align: left;
    font-weight: 400;
    vertical-align: top;
    width: 24%;
}
table th, table td{
    padding: 32px 0;
    border-bottom: #D9D9D9 solid 1px;
    font-size: 16px;
}
table tr:last-child th, table tr:last-child td{
    border-bottom: none;
    padding-bottom: 0;
}
/* お問い合わせ ---------------*/
.contact .ja, .contact .en{
    color: #fff;
}

/* service.html 【pc】
---------------------------------------------------------------------------------*/
.service_ja{
    font-size: 20px;
}
.service_en{
    margin-bottom: 32px;
    font-family: "Outfit";
    font-size: 64px;
    font-weight: 700;
    color: #133D83;
}
.discript{
    font-size: 24px;
    font-weight: 700;
    color:#333333;
    margin: 32px 0;
}
/* ファーストビュー ------------*/
.service_mv{
    text-align: center;
    width: 100%;
    aspect-ratio: 1920/750;
    background-image: url(../img/fv02.jpg);
    background-size: cover;
    padding-top: 15vw;
}
.service_mv h2{
    font-family: "Outfit";
    color: #fff;
    font-size: 10vw;
    font-style: italic;
    letter-spacing: 0.03em;
    text-shadow: #2C80D9 0 0 60px, #2C80D9 0 0 40px,#2C80D9 0 0 10px;
}
/* SES事業 ------------*/
.ses h3{
    display: flex;
    align-items: center;
    gap: 24px;
    color: #133D83;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}
.ses span{
    font-family: "Outfit";
    font-size: 64px;
}
.ses .text{
    margin-bottom: 40px;
}
.ses .box{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.ses .item{
    background-color: #F5F5F5;
    border-radius: 15px;
    padding: 32px 64px 0 64px;
    width: 543px;
    background-size: 150px;
    background-position: 91.16% 50%;
    margin: 0 auto;
}
.ses .item01{
    background-image: url(../img/car.png);
}
.ses .item02{
    background-image: url(../img/suit.png);
}
.ses .item03{
    background-image: url(../img/graph.png);
}
.ses .item04{
    background-image: url(../img/building.png);
}
.box01{
    margin-bottom: 32px;
}
.box01 .item{
    height: 260px;
}
.box02 .item{
    height: 250px;
}
.ses .subtitle{
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}
.ses .ex{
    font-weight: 700;
    padding: 4px 0;
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
}
.orange{
    color: #E66700;
    font-size: 20px;
    font-weight: 700
}
/* 飲食コンサルティング --------------*/
.food{
    background-color: rgba(46, 130, 204, 0.05);
}
.food .text{
    margin-bottom: 64px;
}
.food .box{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.food .item{
    background-color: #fff;
    width: 544px;
    height: 298px;
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
    box-shadow: 9px 10px rgba(197, 220, 241,1);
}
.food h3{
    display: flex;
    font-weight: 600;
    font-size: 20px;
    max-width: 544px;
    height: 116px;
    background-color: #2E82CC;
    color: #fff;
    border-radius: 15px 15px 0 0;
    clip-path: polygon(0% 0%,100% 0%,100% 70%,50% 100%,0% 70%);
}
.circle{
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    width: 64px;
    height: 64px;
    font-family: "Outfit";
    font-size: 40px;
    font-weight: 700;
    color: #2E82CC;
    text-align: center;
    line-height: 1.5;
    box-sizing: border-box;
    margin: 16px 32px auto 112px;
}
.food h3 p{
    margin-top: 35px;
}
.food .item .text{
    padding: 16px 32px 0 32px;
}
/* 輸入服飾雑貨販売事業 --------------*/
.store img{
    margin-top: 64px;
}
.store .inner{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}
.store iframe{
    width: 544px;
    aspect-ratio: 544/260;
    margin: 0 auto;
}
.access p{
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0;
}
.access table{
    width: 495px;
    border-collapse: collapse;
    margin-top: 32px;
    margin: 0 auto;
}
.access table th,.access table td{
    padding: 0;
    border-bottom: none;
    font-size: 12px;
}
.access table tr{
    display: block;
    padding: 16px 0;
    border-bottom: #D9D9D9 solid 1px;
}
.access table tr:first-child{
    padding-top: 0;
}
.access table th{
    text-align: left;
    font-weight: 400;
    vertical-align: top;
    width: 96px;
}
/* お問い合わせ --------------*/
.contact .service_ja, .contact .service_en{
    color: #fff;
}
/* privacypolicy.html 【pc】
---------------------------------------------------------------------------------*/
.privacy{
    background-image: url(../img/wave-pc_about.png);
    background-size: contain;
    background-position: top;
}
.title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 114px;
    text-align: center;
    margin-bottom: 64px;
} 
.subtitle{
    font-size: 24px;
    font-weight: 300;
    margin-bottom:96px ;
    text-align: center;
}
.group{
    margin-bottom: 64px;
}
.group p, .group02 p{
    margin-left: 24px;
}
.group h3{
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 700;
}
h4{
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
}
.group.group02{
    margin-bottom: 0;
}
.window{
    margin: 16px 0;
}
.list{
    margin-left: 42px;
}
.list02{
    margin-top: 16px;
}
.list li{
    list-style-type: inherit;
}
.list ul {
    list-style-type: disc;
}
.list ol{
    list-style-type: decimal;
}

@media (max-width: 767px){
    /* index.html & servis.html 共通 【スマホ】
    -----------------------------------------------------------------------------*/
    body{
        font-size: 12px;
    }
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
    section, .last{
        padding: 0 24px;
    }
    .wrapper{
        padding: 48px 0;
        max-width: 550px;
    }
    /* hmgメニュー　枠 */
    .hamburger{
        width: 50px;
        height: 50px;
        cursor: pointer;
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 30;
        border-radius: 5px;
        background-image: url(../img/open.png);
        background-size: contain;
    }
    .hamburger:hover{
        opacity: 0.7;
    }
    /* hmgメニュー　ckick */
    .hamburger.active{
        background-image: url(../img/close.png);
    }
    header .nav.active{
        right: 0;
    }
    /* ナビゲーション */
    header .nav{
        width: 80%;
        height: 100vh;
        background-color: #fff;
        position: fixed;
        top: 0;
        right: -82%;
        z-index: 20;
        transition: all 0.6s;
        box-shadow: -4px 0 10px rgba(101, 169, 228, 0.2);
    }
    header .nav .nav_list{
        width: 100%;
        height: 100vh;
        gap: 0;
        padding: 80px 0;
        flex-direction: column;
        border-radius: 0;
        background: #fff;
        overflow: auto;
        text-align: center;
    }
    header .nav .nav_list li{
        padding-bottom: 32px;
        font-size: 18px;
        font-weight: 400;
    }
    .nav_list a{
        color: #000;
    }
    header img{
        width: 65px;
    }
    /* お問い合わせ --------------*/
    .contact .item{
        width: 220px;
        height: 200px;
        padding: 32px 20px 0 20px;
    }
    .contact .item img{
        width: 38px;
    }
    .way{
        margin: 32px 0 16px;
    }
    .contact .item:nth-child(3){
        margin-bottom: 0;
    }
    /* 黒ボタン */
    .contact .btn{
        padding: 8px 35px 8px 32px;
    }
    .contact .btn::before{
        width: 9px;
        height: 11px;
        right: 20px;
    }
    /* footer */
    .footer{
        margin-top: 48px;
        flex-direction: column-reverse;
        text-align: center;
    }
    .footer .inner{
        display: block;
        margin-top: 40px;
    }
    .footer .inner img{
        width: 68px;
    }
    .footer .inner .name{
        font-size: 14px;
        margin: 16px 0;
    }
    .copylight{
        margin-top: 48px;
    }
    /* index.html 【スマホ】
    -----------------------------------------------------------------------------*/
    .ja{
        font-size: 12px;
    }
    .en{
        font-size: 32px;
        margin-bottom: 32px;
    }
    /* ファーストビュー ----------*/
    .mv{
        height: 610px;
        background-image: url(../img/fv_sp.jpg);
    }
    header{
        top: 0px;
        left: 3vw;
    }
    .mv .text{
        margin-top: 110px;
        font-size: 16px;
        letter-spacing: 0.1em;
    }
    .mv h2{
        margin-top: 20px;
        font-size: 90px;
        letter-spacing: 0;
        line-height: 110px;
        flex-wrap: wrap;
    }
    .sp-break {
      width: auto;
    }
    .scroll{
        bottom: 100px;
        font-size: 15px;
    }
    .scroll::after {
        bottom : -75px;
        height : 65px;
    }
    /* ABOUT　UZUMARUとは -----------*/
    .about{
        background-image: url(../img/wave-sp_about.png);
        background-size: cover;
        background-position: center;
    }
    .about .en{
        margin-bottom: 16px;
    }
    .about p:nth-child(3){
        font-size: 19px;
    }
    .about .box{
        width: 312px;
    }
    .bottom{
        margin-top: -21px;
    }
    .about .item{
        width: 156px;
        height: 156px;
        padding-top: 32px;
    }
    .about .about-en{
        font-size: 20px;
        margin-bottom: 8px;
    }
    .about .text{
        line-height: 20px;
    }
    /* 事業内容 ------------------*/
    .service .item{
        width: 312px;
        height: 266px;
        padding: 32px 16px;
        background-size: cover;
    }
    .service .item h3{
        text-align: center;
        font-size: 20px;
    }
    .service .item p{
        color: #fff;
        margin: 32px 0;
    }
    /* 白ボタン */
    .service .btn{
        padding: 8px 34px 8px 24px;
    }
    .service .btn::before{
        width: 9px;
        height: 11px;
        right: 20px;
    }
    /* オレンジボタン */
    .service-btn{
        font-size: 14px;
        padding: 10px 34px 10px 24px;
    }
    .service-btn::before{
        width: 9px;
        height: 11px;
        right: 20px;
    }
    /* 代表挨拶 -----------------*/
    .message{
        background-image: url(../img/wave-sp_message.png);
        background-size: contain;
        background-position: center;
    }
    .message .text p{
        margin-top: 0;
    }
    .message span{
        font-size: 15px;
    }
    .message h3{
        margin-top: 40px;
        font-size: 16px;
    }
    /* 会社概要 -----------------*/
    .comoany{
        background-image: url(../img/wave-sp_company.png);
        background-size: cover;
        background-position: center;
    }
    table{
        width: 310px;
    }
    .comoany table th,.comoany table td{
        display: block;
        border-bottom:none;
    }
    table tr{
        border-bottom: #D9D9D9 solid 1px;
    }
    table td{
        padding: 8px 0;
        font-size: 12px;
    }
    table th{
        padding: 8px 0 0;
        font-size: 10px;
    }
    table tr:last-child{
        border-bottom: none;
        padding-bottom: 0;
    }
    /* servis.html 【スマホ】
    -----------------------------------------------------------------------------*/
    .ses .wrapper,.food .wrapper,.store .wrapper,.last .wrapper {
        padding: 64px 0;
    }
    .service_ja{
        font-size: 12px;
    }
    .service_en{
        margin-bottom: 32px;
        font-size: 32px;
    }
    .discript{
        font-size: 14px;
    }
    /* ファーストビュー ------------*/
    .service_mv{
        background-image: url(../img/fv02_sp.jpg);
        height: 610px;
        padding-top: 0;
        position: relative;
    }
    .service_mv h2{
        font-size: 17vw;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    header{
        top: 0px;
        left: 3vw;
    }
    /* SES事業 ------------*/
    .ses h3{
        gap: 18px;
        font-size: 20px;
    }
    .ses span{
        font-size: 32px;
    }
    .ses .text{
        margin-bottom: 32px;
    }
    .ses .box{
        gap: 16px;
    }
    .ses .item{
        padding: 32px;
        width: 312px;
        background-size: 100px;
        background-position: bottom 32px right 32px;
    }
    .box01 .item, .box02 .item{
        height: 262px;
    }
    .ses .box .item .ex{
        font-size: 16px;
    }
    .ses .box .item .orange{
        font-size: 16px;
    }
    /* 飲食コンサルティング --------------*/
    .food .text{
        margin-bottom: 32px;
    }
    .food .item{
        height: auto;
    }
    .food h3{
        font-size: 16px;
        gap: 16px;
        height: auto;
        justify-content: center;
        padding-top: 10px;
        padding-bottom: 20px;
    }
    .circle{
        display: inline-block;
        width: 30px;
        height: 30px;
        font-size: 20px;
        margin: 0;
    }
    .food h3 p{
        margin-top: 4px;
    }
    /* 輸入服飾雑貨販売事業 --------------*/
    .store img{
        margin-top: 32px;
    }
    .store iframe{
        width: 69%;
        min-width: 250px;
        aspect-ratio: 544/306;
    }
    .access p{
        font-size: 16px;
        text-align: center;
    }
    .access table{
        width: 306px;
    }
    .access table tr{
        padding: 9px 0;
    }
    .access table th{
        width: 56px;
    }

     /*privacypolicy.html 【スマホ】
    -----------------------------------------------------------------------------*/
    .title{
        font-size: 20px;
        font-weight: 700;
        margin-top: 122px;
    }
    .subtitle{
        font-size: 20px;
        font-weight: 500;
    }
    .group{
        margin-bottom: 32px;
    }
    .group p,.group02 p{
        margin-left: 16px;
    }
    .group h3{
        margin-top: 32px;
        margin-bottom: 16px;
        font-size: 12px;
    }
    h4{
        font-size: 12px;
    }
}