
/* =========================================================
   Base
========================================================= */
:root {
    --container: 1200px;
    --gutter: 75px;
    --guttersp: 30px;

    --bg: #ffffff;
    --text: #202020;
    --muted: #202020;
    --line: #005BAA;

    --blue: #005BAA;
    --blue-soft: #D2E7FF;

    --card: #ffffff;
    --shadow: 0 8px 24px rgba(0, 0, 0, .16);
    --radius: 10px;
}

* {
    box-sizing: border-box;
}

.layout-wrapper[data-bg-color="1"]>div>div {
    padding: 0;
}


body {
    margin: 0;
    min-width: 0;
}

main {
    margin: 0;
    font-family: "Noto Sans JP", "Biz UDPGothic","Hiragino Kaku Gothic Pro",sans-serif;
    color: var(--text);
    padding: 0px 0px 40px;
    line-height: 1.6;
    font-size: 20px;
    width: 100%;
    max-width: 1208px;
    margin: auto;
    background-color: #fff;
    scroll-behavior: smooth;
    padding-bottom: 100px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}


.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1 {
    font-size: clamp(23px, 4.5vw, 33px);
    line-height: 1;
}

h2 {
    font-size: clamp(18px, 3.5vw, 27px);
    color: #005BAA;
}

.download-title {
    line-height: 2;
}

.download-under-bar {
    background-color: #005BAA;
    width: 90px;
    height: 2px;
    margin: 0 auto;
}

/*--Top--*/

.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #005BAA;
    color: #fff;
    height: 70px;
    font-weight: bold;
    font-size: clamp(15px, 2.5vw, 20px);
}

.download-top-visual{
    padding-left: 130px;
    font-weight: bold;
    background-image: url(../image/download_fv.png);
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 100px;
        background-position: center bottom;
    background-size: cover;
}

/*--download--*/
.download-all {
    padding: 50px 0;
    margin: 0 40px;
    text-align: center;
}

.download-box-flex {
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
    gap: 40px;
}

.download-left-inner {
    background-color: #fff;
    box-shadow:  0 0 7px rgba(0, 0, 0, .16);
    border-radius: 10px;
    padding: 20px;
}

.download-left-inner img {
    box-shadow:  0 0 3px rgba(0, 0, 0, .2);
}

.download-img-flex {
    display: flex;
    margin-top: 20px;
    gap: 20px;
    width: 212px;
}

.download-left-text ,
.download-left-point {
    width: 485px ;
    font-size: 14px;
    margin: 20px 0;
    text-align: left;
}

.download-left-text p {
    font-size: 16px;
}

.download-left-point {
    background-color: rgba(235, 248, 255, .7);
    border-radius: 10px;
    padding: 20px 10px;
}

.point-flex{
    display: flex;
    gap: 5px;
    font-weight: bold;
    font-size: 17px;
    color: #005BAA;
}
.point-flex img{
    width: 18px;
}


.point-flex {
    margin-left: 20px;
    margin-bottom: 10px;
}

.download-point-box {
    margin-left: 40px;
}

.point-flex  p ,
.download-point-box p {
    margin: 3px;
}


.download-point-box img {
    width: 15px;
}

.point-check-flex {
    display: flex;
    font-size: 17px;
    gap: 5px;
}

.download-right-inner {
    width: 590px;
    height: auto;
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 15px;
}

.download-right-text {
    width: 100%;
    height: 50px;
    background-color: #005BAA;
    border-radius: 5px;
    position: relative;
}
.download-right-text::before{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 40px;
  right: 45%;
  border-top: 25px solid #005BAA;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
}

.download-right-text p {
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    margin: 0;
    padding-top: 12px;
}

.layout-nocover ,
.nocover-body ,
.center-wrap ,
.center-body {
    margin-bottom: 0;
}

.center-body {
    max-width: 470px;
}



/* ===== SP（差分） ===== */


@media (max-width: 768px){
  /* SPで変えたいものだけ */

  .under-bar {
    margin:20px auto 0;
}

.download-top-title {
    display: block;
}

main {
    max-width: 768px;
    width: 100%;
    min-width: 390px;
}
.sp-br {
    display: block;
}
.top-bar {
    height: 55px;
}

.download-all {
    padding: 0;
    margin:0 30px;
}

.download-box-flex {
    display: block;
}

.download-img-flex {
    width: 47%;
}

.download-left-text ,
.download-left-point {
    padding: 0 25px 0 10px;
    width: clamp(338px, 85vw, 700px);
}

.download-right-inner {
    width: clamp(330px, 85vw, 590px);
}

.download-top-visual{
    padding-left:30px;
    background-image: url(../image/download_fv-sp.png);
    background-size: cover;
    background-position: center right;
}
.download-title {
    margin-top: 50px;
}

}