@charset "UTF-8";
/*----online--
@import url('//fonts.googleapis.com/css?family=Noto+Sans+JP:400,700,900&display=swap');
--*/

:root {
    --color-text-h: #333;           /*--見出し--*/
    --color-text-p: #333;           /*--テキスト--*/
    --color-text-p-secondary: #666; /*--テキスト2--*/
    --color-text-white: #fff; /*--テキスト3--*/
    --color-text-a: #0076b0;       /*-- テキストリンク--*/
    --color-text-a-visited: #0076b0;  /*--テキストリンク訪問済--*/
    --color-bg-00: #111;
    --color-bg-01: #fff;
    --color-bg-02: #EFEFEF;
    --color-bg-03: rgba(255,255,255,.7);
    --color-bg-04: #242937;
    --color-bg-05: rgb(23, 70, 29);
    --color-bg-06: #d2ddda;
    --color-bg-07: #eef5f3;
    --color-btn-00: #ffffff;
    --color-btn-01: #20265c;
    --color-btn-02: #595959;
    --color-btn-03: #0099FF;
    --color-btn-04: #D5C8C8;
    --shadow-01: 0 0 1px rgba(60,64,67,.1) , 0 0 2px rgba(60,64,67,.1) ;
    --shadow-02: 0 1px 2px rgba(60,64,67,.08), 0 1px 3px rgba(60,64,67,.08);
    --shadow-03: 0 2px 3px rgba(60,64,67,.05), 0 2px 4px rgba(60,64,67,.05);
    --shadow-r1: -6px 0 3px -3px rgba(0,0,0,.2) inset;
    --shadow-l1: 6px 0 3px -3px rgba(0,0,0,.2) inset;
    --shadow-white01:  0 0 12px rgba(255,255,255,1), 0 0 24px rgba(255,255,255,1);
    --font-1: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    /*--font-2: 'Noto Sans JP', sans-serif;*/
    --font-2: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, sans-serif;
    --font-3: 'Font Awesome 6 Free';
    --header-fixed: 88px;
    --header-fixed-mobile: 62px; 
}

/*=============common=============*/

input[type="button"],
input[type="submit"]{
    -webkit-appearance: none;
}

html{
    /* support iOS */
    height: -webkit-fill-available;
    /*--アンカースクロール対策--*/
    scroll-padding-top: 90px;
    scroll-behavior: smooth;
}

body{
    /* support iOS */
    min-height: 100vh;
    min-height: -webkit-fill-available;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: var(--font-2);
    color: var(--color-text-p);
    background: var(--color-bg-01);
    position: relative;
}

.h1, h1,.h2, h2,.h3, h3,.h4, h4,.h5, h5,.h6, h6{
    font-feature-settings: "palt";
    font-weight: 600;
    margin-bottom: 1.8rem;
    padding: .5rem 0;
    color: var(--color-text-h);
}

.h1, h1 {font-size: clamp(20px, 3vw, 24px);}
.hero-content h2 {font-size: clamp(17px, 3vw, 20px); line-height: 1.5;}
.h2, h2 {font-size: clamp(28px, 3vw, 48px); line-height: 1.5; }
.h3, h3 {font-size: clamp(18px, 3vw, 32px); line-height: 1.5;}
.h4, h4 {font-size: clamp(17px, 3vw, 19px); }

p{
    color: var(--color-text-p);
    word-break: break-all;
}

main p,
main li,
main dt,
main dd{
    font-size: 1.2rem;
    font-weight: bold;
    color: #565656;
}
.container,
.container-fluid{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.main .container,
.main .container-fluid{
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
}

ul{
    list-style: none;
    padding: 0;
}

p,
li{
    line-height: 1.52;
}

img{
    max-width: 100%;
    height: auto;
    box-sizing: content-box;
}

a,
a:link,
a:visited,
a:active{
    color: var(--color-text-a);
    text-decoration: none;
}

a:hover {
    color: var(--color-text-a);
    text-decoration: underline;
}

.table>:not(:first-child) {
    border-top: none;
}

.text-red{
    color: rgb(165, 10, 10) !important;
}

.text-ll{
    font-size: 2.8rem;
}
.text-ml{
    font-size: 1.25rem;/*--20px相当--*/
}
.text-m{
    font-size: 1.15rem;
}


/*=============header=============*/

header{
    width: 100%; 
    height: 80px;   
    padding : 0;
    background:  var(--color-bg-03);
    box-shadow: var(--shadow-03);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
}

header .container-fluid{
    padding-top: 0;
    padding-bottom: 0;
}

header .container-fluid,
header .row{
    height: 100%;
}

.logo,
.logo-mma{
    margin: 0;
    display: block;
}

.logo{ max-width: 100px;}
.logo-mma{max-width: 200px;}


header figure{
    margin: 0;
    padding: 8px 0;
    display: flex;
    align-items: center;
}


/*=============footer=============*/

footer{
    background: var(--color-bg-04);
}

.head-back{
    position: fixed;
    bottom: 20px;
    right: 20px;
}

footer small{
    display: block;
    width: 100%;
    color: #92949b;
    text-align: center;
    padding: 1rem 15px;
    border-top: 1px solid #92949b;
}

footer .container-fluid{
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-logo{
    width: 207px;
    display: block;
}

footer dl{
    color: #92949b;
    border-left: 1px solid #92949b;
    padding: 0 0 0 30px;
}

footer dl dt{
    color: #92949b;
    margin: 0 0 .2rem;
    font-size: 1.1rem;
}

footer dl dd{
    color: #92949b;
    font-size: .875rem;
    font-weight: bold;
    line-height: 1.45;
}

footer dl ul{
    display: flex;
}

footer dl li{
    color: #92949b;
    line-height: 1.45;
    padding: 0 1rem 0 0;
}
/*=============contact================*/

.btn-group{
    display: flex;
    justify-content: center;
    margin: 0;
}

.btnInq a {
    display: block;
    text-align: center;
    width: 480px;
    padding: 19px 0 20px;
    margin: 0 40px 0 0;
    border-radius: 3px;
    background-color: #036;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    -webkit-transition: 0.1s ease-in-out;
    -moz-transition: 0.1s ease-in-out;
    -o-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
}

.btnInq a::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 16px;
    margin-right: 10px;
    background: url(../img/icon_mail.png) no-repeat 0 0 / cover;
}

.btnInq a span {
    display: block;
    font-size: 60%;
    line-height: 1.45;
}

.btnInq a:hover {
    text-decoration: none;
    opacity: .7;
}

.btnPp a {
    width: 168px;
    height: 100%;
    padding-top: 9px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    display: inline-block;
    text-align: center;
    color: #333;
    font-size: .875rem;
    line-height: 1.2;
    font-weight: bold; 
}

.btnPp a img {
    width: 33px;
    height: auto;
    margin-bottom: 5px;
}

/*=============main=============*/

main section{
    padding-top: 80px;
    padding-bottom: 80px;
}

main .section-btn-group{
    padding-top: 27px;
    padding-bottom: 27px;
}

/*--hero--*/

.hero-content{
    background: url(../img/bg-01.jpg) left center /cover no-repeat;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-content .container-fluid{
    padding: 0;
}

.hero-content .row > div{
    padding: 80px 0 0;
    min-height: 600px;
    height: 78vh;
}

.hero-image{
    background: url(../img/bg-02.jpg) center center /cover no-repeat;
    position: relative;
}

.hero-image::after{
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgba(52, 54, 52, 0.24);
    z-index: 3;
    top: 0;
    left: 0;
}

.hero-image figure{
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-text-01{
    display: inline-block;
    max-width: 500px;
    position: relative;
    z-index: 4;
    filter: drop-shadow(0 0 0.25rem #000) drop-shadow(0 0 0.25rem #000);
    transition: .8s all linear;
    opacity: 0;
}

.hero-text-01.view{
    opacity: 1;
}

.hero-info{
    background:var(--color-bg-05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-info-main{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
}

.hero-info-main > *:not(p){
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.supervision{
    display: flex;
    justify-content: center;
    text-align: center;
    height: 100px;
    width: 100px;
    margin: 0;
    padding: 8px 0 0;
    border-radius: 50%;
    font-weight: bold;
    font-size: .875rem;
    line-height: 1.4;
    color: var(--color-text-white);
    background:#f57100;
    align-items: center;
    /*transform: rotate(-7deg);*/
    position: absolute;
    top: -80px;
    left: -80px;
}

.supervision.view{
    animation: tilt .5s forwards;
    animation-delay: .14s;
}

.hero-logo-area{
    position: relative;
    max-width: 20vw;
    margin: 0 0 1.8rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid var(--color-text-white);
}

.hero-logo-area figure{
    margin: 0;
}

.hero-logo{
    display: block;
}

.hero-info h1{
    margin: 0 0 .5rem;
    padding: 0;
    color: #fff;
}

.hero-info h2{
    margin: 0 0 1.5rem;
    padding: 0;
    color: #fff;
}

.hero-info-main h2 + p{
    color: var(--color-text-white);
    max-width: 76%;
    margin: 0 auto;
    font-size: 1rem;
}

.hero-app-image{
    display: block;
    width: 10vw;
    position: absolute;
    bottom: -40px;
    right: -80px;
    z-index: 60;
    transform: rotate(12deg);
}

h2{
    text-align: center;
    color: #0b2a0f;
    margin-bottom: 3rem;
}

main section.section-news{
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-news p{
    text-align: center;
    color: var(--color-text-white);
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.news-head-area{
    height: 180px;
    width: 180px;
    background: var(--color-bg-05);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.news-area{
    height: 246px;
    overflow: scroll;
    overflow-x: hidden;
    border:1px solid var(--color-bg-06);;
    padding: 1rem 15px;
}

.news-area dl{
    display: flex;
    flex-wrap: wrap;
    margin:0;
}

.news-area dl dt{
    flex: 0 0 140px;
    font-size: 1rem;
    text-align: center;
}

.news-area dl dd{
    flex: 0 0 calc(100% - 140px);
    margin: 0;
    font-size: 1rem;
}

.news-area dl dt:not(:first-child),
.news-area dl dt:not(:first-child) + dd{
    border-top: 1px solid #d6d6d6;
    margin: .6rem 0 0;
    padding: .6rem 0 0;
}

.news-area a{
    text-decoration: underline;
    color: var(--color-bg-05);
}

.news-area a:hover{
    text-decoration: underline;
    opacity: .8;
}

.news-area a i{
    padding: 0 0 0 10px;
}


.section-01 .content-group{
    position: relative;
    margin: 0 0 3rem;
    background: var(--color-bg-01);
    border-radius: 10px;
    box-shadow: var(--shadow-01);
    opacity: 0;
}

.section-01 .content-group.view{
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
    animation-delay: .24s;
    height: calc(100% - 106px);
}

.section-01 .content-group figure{
    background:var(--color-bg-05);
    border-radius: 50%;
    color: #fff;
    height: 120px;
    width: 120px;
    padding: 26px;
    margin: 0;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
}

.section-01 .content-group h3{
    color: var(--color-text-white);
    background:var(--color-bg-05);
    border-radius: 10px 10px 0 0;
    margin: 58px 0 0 ;
    padding: 68px 0 30px;
    text-align: center;
}

.section-01 .content-group p{
    padding: 1rem 40px 1.8rem;
}

.section-01 h3{
    text-align: center;
}

.section-02{
    position: relative;
    padding: 0;
}

.section-02 .container-fluid{
    padding: 0;
}

.section-02-bg-01,
.section-02-bg-02{
    position: relative;
}

.section-02-bg-01{
    background: url(../img/bg-001.jpg) center top /cover no-repeat;
    box-shadow: var(--shadow-r1);
}

.section-02-bg-02{
    background: url(../img/bg-002.jpg) center top /cover no-repeat;
    box-shadow: var(--shadow-l1);
}

.section-02-bg-01:before,
.section-02-bg-02:before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.58);
}

.section-02 h2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #333;
}

.section-02 h2 > figure:first-child{
    width: 60%;
}

.section-02 h2 > figure:last-child{
    width: 36%;
}

.section-02-image-01{
    max-width: 260px;
    width: 100%;
    display: block;
    margin: 0 auto;
    opacity: 0;
}

.section-02-image-01.view{
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
    animation-delay: .24s;
}

.section-02-image-02{
    display: block;
}

.section-02-image-03{
    display: block;
    margin: 0;
}

.section-02 .content-group{
    padding: 5.8rem 80px;
}

.section-02 .content-group-02{
    width: 100%;
    height: 100%;
    padding: 1.5rem 40px;
    border-radius: 10px;
    background: var(--color-bg-01);
}

.section-02 h4{
    font-size: 1.5rem;
    line-height: 1.5;
    position: relative;
    padding: .1rem 0 0 55px;
    margin: 0 0 .8rem;
}

.section-02 h4:before {
    font-family: "Font Awesome 6 Free";
    content: "\f00c";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-weight: 900;
    position: absolute;
    font-size: 1.2rem;
    left: 0;
    top: 0;
    background: #17461d;
    color: #fff;
    transition: .1s all linear;
    transform: scale(.01);
}

.section-02 h4.view:before{
    transform: scale(1);
}

.section-02 h4 + p{
    padding: 0 0 0 55px;
    margin: 0 0 1.8rem ;
}

.section-03 .content-group-02{
    margin: 0 auto;
    padding: 8px;
    background: #fff;
    border-radius: 10px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-01);
    max-width: 300px;
}

.section-03 .content-group-02 > p{
    position: absolute;
    top: -60px;
    left: -60px;
    display: flex;
    align-items: end;
    justify-content: center;
    height: 120px;
    width: 120px;
    padding-bottom: 8px;
    background: var(--color-bg-05);
    transform: rotate(-45deg);
}

.section-03 .content-group-02 > p span{
    display: block;
    transform: rotate(45deg);
    color: #fff;
    font-size: 1.3rem;
}

.section-03 figcaption{
    font-weight: bold;
    font-size:.875rem;
    padding: 1rem 12px 0;
}

.section-04 p{
    height: 280px;
    width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--color-bg-05);
    color: var(--color-text-white);
    font-size: 1.6rem;
    text-align: center;
    box-shadow: var(--shadow-01);
    opacity: 0;
}

.section-04 p.view{
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
    animation-delay: .24s;
}
/*--faq--*/

.dl-faq{
    padding-top: 1.8rem;
    margin-top: 1.8rem;
    border-top: 1px dashed #565656;
    max-width: 1000px;
    margin: 0 auto;
}

.dl-faq dt,
.dl-faq dd{
    position: relative;
    padding: .35rem 0 0 55px;
    min-height: 55px;
}

.dl-faq dt{
    color: #17461d;
    font-size: 1.34rem;
}

.dl-faq dd{
    padding-bottom: 1.8rem;
    margin-bottom: 1.8rem;
    border-bottom: 1px dashed #000000;
    font-weight: bold;
    font-size: 1.04rem;
}

.dl-faq dt::before,
.dl-faq dd::before{
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    top: 0;
    left:0;
    color: #fff;
    font-size: 1.2rem;
}

.dl-faq dt::before{
    content: 'Q';
    background: #17461d;
}

.dl-faq dd::before{
    content: 'A';
    background: #669488;
}

/*--faqツリー--*/

.dl-faq ul,
.dl-faq ol{
    margin: 1rem 0 0;
    padding: 28px 30px !important;
    background: #f6f6f6;
    border-radius: 10px;
    list-style: none;
}

.dl-faq ol{
    counter-reset: li;
}

.dl-faq ol li{
    position: relative;
    padding: 0 0 0 42px;
}

.dl-faq ol li::before {
    counter-increment: li;
    content: counter(li);
    position: absolute;
    left: 0;
    top: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #666666;
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
}

.dl-faq dt *,
.dl-faq dd *{
    min-height: auto;
    padding: 0;
    border: none;
}

.dl-faq dt *::before,
.dl-faq dd *::before{
    display: none;
}

.dl-faq dd dt{
    margin: 0 0 .3rem;
    color: #565656;
    font-size: 1.24rem;
}

.dl-faq dd dd{
    margin: 0 0 1rem;
    color: #8b8b8b;
    font-size: 90%;
}

.dl-faq dd li:last-child dd,
.dl-faq dd li:last-child dl{
    margin: 0;
}

/*--機種--*/
.dl-faq ul li{
    padding: .3rem 0 .3rem 36px;
    font-size: 1.06rem;
    position: relative;
}

.dl-faq ul li::before{
    position: absolute;
    top: 3px;
    left: 0;
    content: '\f00c';
    display: block;
    font-family: var(--font-3);
    color: #666666;
}

/*--download--*/
.section-download h3{
    color: var(--color-text-white);
}

.download-area{
    border-radius: 10px;
    box-shadow: var(--shadow-01);
}

.download-area > div:last-child{
    border-left: 2px dashed var(--color-bg-05);
}

.download-area .content-group{
    padding: 2.8rem 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.download-area .content-group-02{
    padding: 2.8rem 40px;
    height: 100%;
    display: flex;
    align-items: center;
}

.download-area .supervision{
    top: -50px;
    left: -30px;
}

.download-logo{
    width: 280px;
}

.download-area .support{
    display: flex;
    align-items: center;
    margin: 0;
}

.support dt,
.support dd{
    font-size: .875rem;
    font-weight: bold;
    margin: 0 10px 0 0;
}

.support dt{
    color: var(--color-text-white);
    background: var(--color-bg-05);
    border-radius: 50px;
    padding: .2rem 15px;
}

.download-area .download-list{
    display: flex;
    align-items: center;
}

.download-area .download-list li{
    margin: 0;
    padding: 0 20px 0 0;
}

.download-area .download-list a img,
.sns-btn li a{
    transition: .15s all linear;
    display: block;
}

.download-area .download-list a:hover img,
.sns-btn li a:hover{
    transform: scale(1.03);
}

.download-01{
    width: 140px;
}

.download-02{
    width: 140px;
}

.download-area .download-info li{
    font-size: .875rem;
}

/*--近日リリース向け--*/
.download-area .release-info{
    width: 360px;
    text-align: center;
}

.download-area .release-info p{
    font-size: 1.25rem;
    margin: 0;
}



/*--sns--*/

.sns-btn{
    display: flex;
    justify-content: center;
    margin: 0;
}

.sns-btn li{
    padding: 0 .2rem;
}

.sns-btn li a{
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: .6rem 30px;
    width: 80px;
    font-size: 1.25rem;
    border-radius: 4px;
}

.sns-fb-btn{ background: #3b5998;}
.sns-twiter-btn{background: #55acee;}
.sns-line-btn{background: #06c755;}

/*--news-page--*/

.update{
    margin: 0;
}

.update + h2{
    text-align:left;
    font-size: 1.4rem;
    margin: 0 0 1.5rem;
}

/*--bg--*/

.bg-01{background: var(--color-bg-01);}
.bg-02{background: var(--color-bg-02);}
.bg-03{background: var(--color-bg-03);}
.bg-04{background: var(--color-bg-04);}
.bg-05{background: var(--color-bg-05);}
.bg-06{background: var(--color-bg-06);}
.bg-07{background: var(--color-bg-07);}
.bgimg-01{
    position: relative;
}

.bgimg-01::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../img/bg-01.jpg) center center /cover no-repeat;
    opacity: 0.5;
    filter: blur(5px);
}

.bgimg-01 > div{
    position: relative;
}

.bgimg-03{
    background: url(../img/bg-03.jpg) center center /cover no-repeat;;
}

.marking {
	display: inline;
    color: #232323;
	background-image: linear-gradient(rgba(255,255,255,0) 80%, rgba(233, 86, 28, .4) 20%);
}

/*============form==================*/

.w20{ width: 20px !important;}
.w30{ width: 30px !important;}
.w40{ width: 40px !important;}
.w50{ width: 50px !important;}
.w60{ width: 60px !important;}
.w70{ width: 70px !important;}
.w80{ width: 80px !important;}
.w90{ width: 90px !important;}
.w100{ width: 100px !important;}
.w110{ width: 110px !important;}
.w160{ width: 160px !important;}
.w170{ width: 170px !important;}
.w180{ width: 180px !important;}
.minw230{ min-width: 230px !important;}
.h14em{ height: 14em !important;}
.maxh200{max-height: 200px;}

/*============animation==================*/

.fadeup {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeup {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tilt {
    animation: fadeup 1s forwards;
}

@keyframes tilt {
    0% {
        transform: rotate(0);
    }
    70% {
        transform: rotate(-12deg);
    }
    90% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(-7deg);
    }
}

/*********************responsive PC-first*********************/

/*--xl-1200px未満--*/
@media (max-width: 1199.98px) {
    .section-04 p {
        height: 200px;
        width: 200px;
        font-size: 1.2rem;
    }

    .content-group-02{
        flex-direction: column;
    }
}

/*--lg-992px未満--*/
@media (max-width: 991.98px) {

    .h3, h3 {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .hero-logo-area {
        max-width: 280px;
    }

    .supervision {
        height: 80px;
        width: 80px;
        font-size: .75rem;
        top: -77px;
        left: -34px;
    }

    .hero-text-01 {
        max-width: 340px;
    }

    .hero-content .row > div {
        min-height: 480px;
        height: 52vh;
        padding:  140px 0 0;
    }

    .hero-content .row > div:last-child {
        padding: 0;
    }

    .hero-image {
        background: url(../img/bg-02.jpg) 30% center /cover no-repeat;
        position: relative;
    }

    main p, main li, main dt, main dd {
        font-size: 1.05rem;
    }

    .section-news p{
        color:  var(--color-bg-05);
        padding: 0 30px;
    }
    
    .news-head-area{
        height: auto;
        width: 100%;
        background: none;
        margin: 0 0 1rem;
    }

    .section-02 h4 {
        font-size: 1.25rem;
        padding: 0 0 0 43px;
    }

    .section-02 h4:before {
        height: 30px;
        width: 30px;
        font-size: .875rem;
    }

    .section-02-image-01 {
        max-width: 160px;
    }

    .download-logo {
        width: 230px;
    }

    /*--近日リリース--*/
    .download-area .release-info {
        width: 100%;
    }
}

/*--md-768px未満--*/
@media (max-width: 767.98px) {
    .hero-content .row > div {
        height: 54vh;
    }

    .hero-content .row > div:last-child {
        height: 46vh;
    }

    .h2, h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-01 .content-group p {
        padding: 1rem 25px 1.8rem;
    }

    .hero-app-image {
        width: 13vw;
        right: 10px;
    }


    h2,
    .section-01 h3 {
        text-align: left;
    }

    .section-01 .content-group h3,
    .section-04 h2 {
        text-align: center;
    }
    h2 br,h3 br,h4 br{
        display: none;
    }

    .download-area > div:last-child {
        border-left: none;
        border-top: 2px dashed var(--color-bg-05);
    }

    .section-03 .content-group-02{
        margin: 0 auto 1.5rem;
        height: auto;
    }

    .footer-logo {
        margin: 0 auto;
    }

    footer dl {
        color: #92949b;
        border-left: none;
        padding: 0;
    }

    footer dl dt,
    footer dl dd{
        text-align: center;
    }

    footer dl ul {
        justify-content: center;
    }

    .btn-group{
        flex-direction: column;
    }

    .btn-group li{
        display: flex;
        justify-content: center;
    }

    .btnInq a {
        width: 240px;
        padding: 10px 0;
        margin: 0 0 1rem;
        font-size: 1.1rem;
    }

    .btnPp a {
        width: 240px;
        padding-top: 0;
    }

    .section-02-bg-01,
    .section-02-bg-02{
        height: 250px;
        background-position: column;
        box-shadow: none;
    }

    .section-02 .content-group{
        padding: 3.8rem 1.5rem;
    }

    .section-02 .content-group ,
    .section-03 .content-group {
        margin: 0 auto;
        max-width: 540px;
    }
}

/*--sm-576px未満--*/
@media (max-width: 575.98px) {

    .hero-content .row > div {
        height: 66vh;
    }

    .hero-content .row > div:last-child {
        height: 32vh;
    }

    .logo-mma {
        max-width: 170px;
    }

    .hero-text-01 {
        max-width: 260px;
    }

    .bgimg-01::before{
        background: url(../img/bg-01.jpg) left center /cover no-repeat;
    }

    .news-area dl dt{
        flex: 0 0 100%;
        text-align: left;
    }

    .news-area dl dt span{
        padding: .2rem 10px;
        background: var(--color-bg-05);
        color: var(--color-text-white);
        font-size: .875rem;
    }


    .news-area dl dd,
    .news-area dl dt:not(:first-child) + dd{
        flex: 0 0 100%;
        font-size: 1rem;
        margin: .3rem 0 0;
        padding: 0;
    }

    .news-area dl dt:not(:first-child) + dd {
        border-top: none;
    }

    

}

/*--380px未満--*/
@media (max-width: 379.98px) {

    .hero-content .row > div {
        height: 80vh;
    }

    .logo-mma {
        max-width: 130px;
    }

    .logo {
        max-width: 62px;
    }

    .hero-app-image {
        width: 15vw;
        right: 10px;
    }
}