/*スマホ最適化*/
@media only screen and (max-width: 751px) {
/* =========================================================
container
========================================================= */
  body.no-scroll {
    overflow: hidden;
    position: fixed; /* スクロール位置を固定 */
    width: 100%;
  }
  sup{
    font-size: 70%;
    vertical-align: top;
    position: relative;
    top: -0.1em;
  }
  div#container img{
    max-width: 100%;
  }
  div#container .inner{
    padding: 0;
  }
  .btn{
    margin-top: 30px;
  }
  .btn a{
    background: #0071be;
    background-size: 8px;
    border-radius: 8px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    display: block;
    text-align: center;
    box-shadow: 0 0 14px rgb(0, 0, 0, 0.25);
    padding: 15px 0;
  }
  .btn a span{
    background: url(../img/arrow_r_wh.svg) right center no-repeat;
    background-size: 8px;
    display: inline-block;
    padding-right: 18px;
  }
/* =========================================================
eyecatch
========================================================= */
  div#eyecatch{
    background: #ffe100;
    padding-top: 60px;
  }
  div#eyecatch .detail{
    padding: 5px 20px 30px;
  }
  div#eyecatch .detail .inner > p{
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
  }
  div#eyecatch .detail .inner > p:last-of-type{
    margin-bottom: 0;
  }
/* =========================================================
sec
========================================================= */
  section .tit-box,
  #lineup .tit-box{
    text-align: center;
    margin-bottom: 20px;
  }
  section .tit-box .logo{
    padding: 0 20px;
    margin: 0 auto 10px;
  }
  section .tit-box h2,
  #lineup .tit-box h2{
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
  }
  section .tit-box p,
  #lineup .tit-box p{
    font-size: 17px;
    font-weight: 900;
    color: #0071be;
    margin-top: 5px;
  }
  #sec01{
   background: #fff url(../img/bg-white.jpg) left top repeat;
   padding: 35px 0 50px;
  }
  /* 横スクロールアニメーション */
  @keyframes bg-move {
    from { background-position: 0 bottom; }
    to   { background-position: -1250px bottom; } /* 画像幅に合わせて調整 */
  }
  #sec01 .read-box{
    background: url(../img/sec01-bg.jpg) left bottom repeat-x;
    background-size: 1250px;
    animation: bg-move 60s linear infinite;
    padding-bottom: 130px;
    margin-bottom: 30px;
  }
  #sec01 .read-box p{
    font-size: 17px;
    line-height: 1.8;
    padding: 0 20px;
  }
  #sec01 .detail .inner{
    padding: 0 20px;
  }
  #sec01 .detail .qa-list{

    margin-bottom: 20px;
  }
  #sec01 .detail .qa-list li{
    background: #ffe100;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 15px 10px 20px;
    margin-bottom: 30px;

  }
  #sec01 .detail .qa-list li .stit-box{
    text-align: center;
    margin-bottom: 10px;
  }
  #sec01 .detail .qa-list li .stit-box .ico{
    width: 70px;
    margin: 0 auto 8px;
  }
  #sec01 .detail .qa-list li .stit-box h3{
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  #sec01 .detail .qa-list li .stit-box p{
    font-size: 17px;
    line-height: 1.6;
  }
  #sec01 .detail .qa-list li .graph-list{
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  #sec01 .detail .qa-list li .graph-list dt{
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    padding: 12px 20px 0;
    margin-bottom: 12px;
  }
  #sec01 .detail .qa-list li .graph-list dd{
    padding: 0 20px 15px;
    border-bottom: 1px solid #ccc;
  }
  #sec01 .detail .qa-list li .graph-list dd:last-of-type{
    border-bottom: 0;
  }
  #sec01 .detail .qa-list li .graph-list dd .bar-box{
    background: #f5f5f5;
    height: 20px;
    position: relative;
  }
  #sec01 .detail .qa-list li .graph-list dd .bar {
    display: inline-block;
    height: 20px;
    background: #000;
    width: 0 !important; /* 初期状態は0 */
    transition: width 1.5s ease-out;
  }
  #sec01 .detail .qa-list li .graph-list dd .bar.is-active {
    width: var(--goal-width) !important;
  }
  #sec01 .detail .qa-list li .graph-list dd .pct{
    font-size: 19px;
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: 5px;
  }
  #sec01 .detail .qa-list li .graph-list dd:nth-of-type(1) .bar{
    background: #ff8a00;
  }
  #sec01 .detail .qa-list li .graph-list dd:nth-of-type(1) .pct{
    color: #ff8a00;
  }
  #sec01 .detail .qa-list li .graph-list dd:nth-of-type(2) .bar{
    background: #ffb400;
  }
  #sec01 .detail .qa-list li .graph-list dd:nth-of-type(2) .pct{
    color: #ffb400;
  }
  #sec01 .detail .qa-list li .graph-list dd:nth-of-type(3) .bar{
    background: #39a242;
  }
  #sec01 .detail .qa-list li .graph-list dd:nth-of-type(3) .pct{
    color: #39a242;
  }
  #sec01 .detail .qa-list li .graph-list dd:nth-of-type(4) .bar{
    background: #0071be;
  }
  #sec01 .detail .qa-list li .graph-list dd:nth-of-type(4) .pct{
    color: #0071be;
  }
  #sec01 .detail .qa-list li .comment-btn{
    background: #FF8A00;
    background: linear-gradient(90deg,rgba(255, 138, 0, 1) 0%, rgba(255, 102, 0, 1) 100%);
    box-shadow: 0 0 14px rgb(0, 0, 0, 0.25);
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    padding: 15px 0;
    margin: 0 20px;
    cursor: pointer;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }
  #sec01 .detail .qa-list li .comment-btn:hover{
  box-shadow: none;
  }
  #sec01 .detail .qa-list li .comment-btn span{
    background: url(../img/sec01-q-ico.png) left center no-repeat;
    background-size: 20px;
    padding-left: 25px;
  }
  #sec01 .detail .comment-box{
    position: fixed;
    top:50%;
    left:50%;
    width:90%;
    transform: translate(-50%, -50%);
    opacity:0;
    pointer-events:none;
    z-index:2001;
    transition: all 0.3s ease;
  }
  #sec01 .detail .comment-box.open {
    opacity:1;
    pointer-events:auto;
    transform: translate(-50%, -50%) scale(1);
  }
  #sec01 .detail .comment-box .comment{
    margin-bottom: 20px;
  }
  #sec01 .detail .comment-box .comment h3{
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
  }
  #sec01 .detail .comment-box .comment .comment-list{
    margin-bottom: 30px;
  }
  #sec01 .detail .comment-box .comment .comment-list li{
    display: flex;
    margin-bottom: 15px;
  }
  #sec01 .detail .comment-box .comment .comment-list li:last-child{
    margin-bottom: 0;
  }
  #sec01 .detail .comment-box .comment .comment-list li .ico{ 
    flex-shrink: 0;
    width: 60px;
  }
  #sec01 .detail .comment-box .comment .comment-list li .balloon{
    background: #fff;
    border: 4px solid #ffe100;
    border-radius: 20px;
    width: 100%;
    padding: 15px;
  }
  #sec01 .detail .comment-box .comment .comment-list li .balloon p{
    font-size: 15px;
    line-height: 1.8;
  }
  #sec01 .detail .comment-box .comment .comment-list li .balloon p.profile{
    font-size: 13px;
    text-align: right;
    margin-top: 5px;
  }
  #sec01 .detail .comment-box .comment .comment-list li .balloon p strong{
    background:linear-gradient(transparent 60%, #ffe100 60%);
  }
  #sec01 .detail .comment-box .close-btn{
    background: #000;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px;
  }
  #sec01 .detail .overlay {
    position: fixed;
    inset:0;
    background: rgba(0,0,0,0.9);
    opacity:0;
    pointer-events:none;
    z-index:2000;
    transition: opacity 0.3s ease;
  }
  #sec01 .detail .overlay.show {
    opacity:1;
    pointer-events:auto;
  }
  #sec01 .detail .summary-box{
    background: #0f1308 url(../img/sec01-box-bg.jpg) center top no-repeat;
    background-size: 100%;
    border: 5px solid #ffe100;
    border-radius: 20px;
    padding: 20px;
  }
  #sec01 .detail .summary-box h3{
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
  }
  #sec01 .detail .summary-box h3 strong{
    color: #ffe100;
  }
  #sec01 .detail .summary-box p{
    font-size: 17px;
    line-height: 1.8;
    color: #fff;
  }

  #sec02{
    background: #eee;
    padding-bottom: 50px;
  }
  #sec02 .top-box{
    border-top: 20px solid  #ffe100;
    border-bottom: 20px solid  #ffe100;
    margin-bottom: 30px;
  }
  #sec02 .detail .inner{
    padding: 0 20px;
  }
  #sec02 .detail .feature-list li{
    margin-bottom: 30px;
  }
  #sec02 .detail .feature-list li:last-child{
    margin-bottom: 0;
  }

  #sec02 .detail .feature-list li .img{
    margin-bottom: 15px;
  }

  #sec02 .detail .feature-list li .text-box h3{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  #sec02 .detail .feature-list li .text-box p{
    font-size: 17px;
    line-height: 1.8;
  }

  #lineup{
    padding: 35px 20px 50px;
  }
  #lineup .tit-box{
    text-align: center;
    margin-bottom: 20px;
  }
  #lineup .tit-box h2{
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
  }
  #lineup .tit-box p{
    font-size: 17px;
    font-weight: 900;
    color: #0071be;
    margin-top: 5px;
  }
  #lineup .lineup-list li{
    background: url(../img/lineup-bg_sp.jpg) left top no-repeat;
    background-size: 100%;
    padding: 24px 0 24px 10px;
    box-sizing: border-box;
    margin-right: auto;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
  #lineup .lineup-list li:last-of-type{
    margin-bottom: 40px;
  }
  #lineup .lineup-list li .img{
    width: 90%;
    margin-right: 3%;
  }
  #lineup .lineup-list li .logo{
    margin-bottom: 12px;
  }
  #lineup .lineup-list li p{
    font-size: 10px;
    line-height: 1.4;
    padding-right: 10px;
  }
  #lineup .btn a{
    background-position: right 58px center;
  }
  #lineup .coop{
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin-top: 20px;
  }
  #lineup .coop a{
    color: #0071be;
    text-decoration: underline;
  }
  #footer{
    padding-top: 10px;
  }
}


