@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

@import url("_layout.css");
@import url("_typography.css");

* {
  box-sizing: border-box;
}
.text--center{
  text-align: center;
}
.text--right{
  text-align: right;
}
.text--left{
  text-align: left;
}
.vtext{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
rt{
  text-align: center;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.font--bold{
  font-weight: bold;
}
.wrapper {
  width: 100%;
  padding-bottom: 60px;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif !important;
}
.wrapper__inner {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}

.color--orange{
  color: #E94829;
}
.color--blue{
  color: #0068B7;
}

.sp{ display: none; }
.pc{ display: block; }

.sp--inline{ display: none; }
.pc--inline{ display: inline; }


.feature__title{
  color: #080808;
}
img{
  max-width: 100%;
}
html{
  font-size: 62.5%;
}
body {
  line-height: 2;
  position: relative;
  font-size: 16px;
  font-weight: normal;
  color: #000;
}
.fl-l{
  float: left;
}
.fl-r{
  float: right;
}
h1,h2,h3,h4,h5,h6{
  margin: 0;
}
/*
.fsize10{ font-size:10px; }
.fsize11{ font-size:11px; }
.fsize12{ font-size:12px; }
.fsize14{ font-size:14px; }
.fsize16{ font-size:16px; }
.fsize18{ font-size:18px; }
.fsize20{ font-size:20px; }
.fsize27{ font-size:27px; }
*/
.fw100{ font-weight: 100;}
.fw200{ font-weight: 200;}
.fw300{ font-weight: 300;}
.fw400{ font-weight: 400;}
.fw500{ font-weight: 500;}
.fw600{ font-weight: 600;}
.fw700{ font-weight: 700;}

.mb1{ margin-bottom: 1rem; }
.mb2{ margin-bottom: 2rem; }
.mb3{ margin-bottom: 3rem; }
.mb4{ margin-bottom: 4rem; }
.mb5{ margin-bottom: 5rem; }
.mb6{ margin-bottom: 6rem; }
.mb7{ margin-bottom: 7rem; }
.mb8{ margin-bottom: 8rem; }
.mb9{ margin-bottom: 9rem; }
.mb10{ margin-bottom: 10rem; }

.p1 { padding:1rem; }
.p2 { padding:2rem; }
.p3 { padding:3rem; }

.pl1 { padding-left:1rem; }
.pl2 { padding-left:2rem; }
.pl3 { padding-left:3rem; }

.pr1 { padding-right:1rem; }
.pr2 { padding-right:2rem; }
.pr3 { padding-right:3rem; }

.grow{
  flex: 1;
}

@media screen and (max-width:940px) {
  .contents__inner,
  body{ 
    
    width:100%;
    min-width: auto;
  }
  .wrapper__inner {
    max-width: 100%;
    padding-left: 1.5rem; 
    padding-right: 1.5rem;
  }
  .text--center--sp{
    text-align: center;
  }
  .text--right--sp{
    text-align: right;
  }
  .text--left--sp{
    text-align: left;
  }
}
@media screen and (max-width:767px) {
  .sp{ display: block; }
  .pc{ display: none; }
  .sp--inline{ display: inline; }
  .pc--inline{ display: none; }
  body {
    font-size: 14px;
  }
  section{
    
  }
  .wrapper__inner{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  img{
    max-width: 100%;
  }
  .p0--sp { padding: 0!important; }
  .p1--sp { padding:1rem!important; }
  .p2--sp { padding:2rem!important; }
  .p3--sp { padding:3rem!important; }

  .pl0--sp { padding-left:0!important; }
  .pl1--sp { padding-left:1rem!important; }
  .pl2--sp { padding-left:2rem!important; }
  .pl3--sp { padding-left:3rem!important; }

  .pr0--sp { padding-right:0!important; }
  .pr1--sp { padding-right:1rem!important; }
  .pr2--sp { padding-right:2rem!important; }
  .pr3--sp { padding-right:3rem!important; }
  .ph0--sp{
    padding-right:0!important;
    padding-left:0!important;
    
  }
  .box--sp{
    display: flex;
    justify-content:center;
    align-items:center;
  }
}

.hilight{ 
  color: #EC6C2A;
}
ul.simple{
  padding-left: 3rem;
}
ul.simple li{
  font-weight: 400;
  list-style:none;
  text-indent: -1.2rem;
  margin-bottom: 0.7rem;
}
ul.simple li::before{
  content: "■";
  font-size: 1.3rem;
  display: inline-block;
  margin-right: 10px;
}
ul.simple.orange li::before{
  color: #F5A100;
}
ul.simple.gray li::before{
  color: #AFB093;
}
ul.simple.blue li::before{
  color: #0081C0;
}

.pc-on {
  display: block;
}
.sp-on {
  display: none;
}
.pc-on-inline {
  display: inline-block;
}
.sp-on-inline {
  display: none;
}
a:hover{
  opacity: 0.8;
}
.mv2{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/*	‐‐‐‐‐‐‐‐‐‐‐‐スマホ指定‐‐‐‐‐‐‐‐‐‐‐‐‐*/
@media screen and (max-width:767px) {
  .pc-on {
    display: none;
  }
  .sp-on {
    display: block;
  }
  .pc-on-inline {
    display: none;
  }
  .sp-on-inline {
    display: inline-block;
  }
  .contents__inner {
    padding: 0px 15px;
  }
  .mb1--sp{ margin-bottom: 1rem; }
  .mb2--sp{ margin-bottom: 2rem; }
  .mb3--sp{ margin-bottom: 3rem; }
  .mb4--sp{ margin-bottom: 4rem; }
  .mb5--sp{ margin-bottom: 5rem; }
  .mb6--sp{ margin-bottom: 6rem; }
  .mb7--sp{ margin-bottom: 7rem; }
  .mb8--sp{ margin-bottom: 8rem; }
  .mb9--sp{ margin-bottom: 9rem; }
  .mb10--sp{ margin-bottom: 10rem; }
  .mb12--sp{ margin-bottom: 12rem; }
}


/*	‐‐‐‐‐‐‐‐‐‐‐‐1p目‐‐‐‐‐‐‐‐‐‐‐‐‐*/
.box{
  display: flex;
  align-items: center;
  justify-content:center;
}
.flex-wrap{
  flex-wrap: wrap;
}
.row{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.wp100{ width: 100%; }
.wp50{ width: 50%; }


.bg-vol37{
  background: #F1F2F0;
}

.img-kawakami{
  width: 100%;
  max-width: 340px;
  margin-bottom: -1rem;
}
.kawakami-caption{
  flex: 1;
  padding-top:3rem;
  max-width: 380px;
  margin-left: 6rem;
}

.illust-01{
  width: 352px;
  position: absolute;
  top: -170px;
  right: -50px;
}


@media screen and (max-width:767px) {
  .img-kawakami{
    width: 100vw;
    max-width: 100vw;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .kawakami-caption{
    width: 100%;
    padding:1rem 1.5rem;
    max-width: 100vw;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    background: white;
    text-align: center;
  }
  .kawakami-caption p{
    text-align: left;
  }

  .illust-01{
    width: 191px;
    position: relative;
    top: 0px;
    right:0px;
    margin-top: -3rem;
    margin-left: 50%;
    margin-bottom: 5rem;
  }

}

.year-block{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 3rem;
}
.year-block .year{
  height: 60px;
  width: auto;
}
.year-block hr{
  flex: 1;
  color: transparent;
  border-top: 1px dashed black;
  margin-left: 2rem;
}

.year-caption-block{
  position: relative;

}
.year-caption{
  max-width: 430px;
}

@media screen and (max-width:767px) {
  .year-block .year{
    height: 46px;
    width: auto;
  }

}
.img-1950-01{
  width: 286px;
  position: absolute;
  right: 13rem;
  top: -3rem;
}
.img-1950-02{
  width: 519px;
}
.img-1950-03{
  width: 260px;
  position: absolute;
  right: 3rem;
  top: -36rem;
}

.img-1950-04{
  width:293px;
  margin-left: 50%;
  margin-top: -10rem;
}

.illust-02{
  width: 160px;
  position: absolute;
  bottom: 0px;
  right: -3rem;
}

.memory-caption{
  padding-left: 2.5rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 2px dotted #E94829;
  
}

.memory-caption:last-child{
  border-bottom:none;
}

.memory-caption:before{
  content: "";
  background: #E94829;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  margin-left: -2.5rem;
  margin-right: 0.5rem;
}

.illust-03{
  width: 100px;
  position: absolute;
  bottom: 3rem;
  right:0;
}

@media screen and (max-width:767px) {
  .wp100--sp{
    width: 100%!important;
  }

  .year-img{
    display: flex;
    justify-content:center;
  }
  .img-1950-01{
    width: 242px;
    position: relative;
    right: 0;
    top: 0;
    margin: auto;
  }
  .img-1950-02{
    width: 100%;
    margin-bottom: 3rem;
  }
  .img-1950-03{
    width: 217px;
    position: relative;
    right: -5rem;
    top: 0;
    margin-top: -10rem;
  }
  
  .img-1950-04{
    width:251px;
    margin-left: -7rem;
    margin-top: 0;
  }
  
  .illust-02{
    width: 135px;
    
  }

  .illust-03{
    width: 87px;
    position: relative;
    bottom: 3rem;
    right:0;
    left: calc( 100% - 87px );
  }
  .memory-caption:before{
    margin-bottom: -2px;
  }
  .memory-caption.border-bottom--sp{
    border-bottom: 2px dotted #E94829;
  }
}

/*	‐‐‐‐‐‐‐‐‐‐‐‐2p目‐‐‐‐‐‐‐‐‐‐‐‐‐*/

.align-stretch{
  align-items: stretch!important;
}
.img-1970-01{
  width: 350px;
  position: absolute;
  right: 5rem;
  top: -3rem;
}
.img-1970-02{
  width: 323px;
  margin-top: 4rem;
}
.img-1970-03{
  width: 514px;
  position: absolute;
  right: 0rem;
  bottom: 0rem;
}
.og-block{
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  padding: 2rem;
  width:50%;
}
.og-img img{
  width: 318px;
}
.bubble-block{
  position: relative;
  margin-top: 5.5rem;
  padding: 0 2rem;
  background:url(../img/feature/vol37/bubble-middle.png);
  background-size: 100%;
  flex: 1;
  color: #E94829;
}
.bubble-block::before{
  content: "";
  height: 50px;
  width: 100%;
  background:url(../img/feature/vol37/bubble-top.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left:0;
  top: -50px;
}
.bubble-block::after{
  content: "";
  height: 20px;
  width: 100%;
  background:url(../img/feature/vol37/bubble-bottom.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left:0;
  bottom: -20px;
}

.illust-04{
  width: 115px;
  position: absolute;
  right: 0;
  top: -7rem;
}
.illust-05{
  width: 132px;
  position: absolute;
  left: -14rem;
  bottom: 0rem;
}
@media screen and (max-width:940px) {
  .bubble-block{
    margin-top: calc( ( 50vw - 2rem - 1.5rem ) * 50 / 450 );
  }
  .bubble-block::before{
    height: calc( ( 50vw - 2rem - 1.5rem ) * 50 / 450 );
    top: calc( ( 50vw - 2rem - 1.5rem ) * -50 / 450 );
  }
  .bubble-block::after{
    content: "";
    height: 20px;
    width: 100%;
    background:url(../img/feature/vol37/bubble-bottom.png) no-repeat;
    background-size: 100%;
    position: absolute;
    left:0;
    bottom: -20px;
  }
}
@media screen and (max-width:767px) {
  .img-1970-01{
    width: 327px;
    position: relative;
    right:0;
    top: 0;
  }
  .img-1970-02{
    width: 288px;
    margin-top: 4rem;
  }
  .img-1970-03{
    width: 343px;
    position: relative;
    right: 0rem;
    bottom: 0rem;
    margin-top: 3rem;
  }
  .illust-04{
    width: 323px;
    position: relative;
    right: 0;
    top: 0;
    margin-top: -7rem;
  }
  .illust-05{
    width: 116px;
    position: relative;
    left: 0;
    bottom: 0rem;
  }
  
  .og-img img{
    width: 290px;
    margin-left: 2rem;
  }
  

}

@media screen and (max-width:480px) {
  .og-block{
    padding: 2rem 0;
    width:100%;
  }
  .bubble-block{
    position: relative;
    margin-top: calc( ( 100vw - 3rem ) * 50 / 450 );
    padding: 0 2rem;
    background:url(../img/feature/vol37/bubble-middle-sp.png);
    background-size: 100%;
    flex: 1;
    color: #E94829;
  }
  .bubble-block::before{
    content: "";
    height: calc( ( 100vw - 3rem ) * 50 / 450 );
    width: 100%;
    background:url(../img/feature/vol37/bubble-top-sp.png) no-repeat;
    background-size: 100%;
    position: absolute;
    left:0;
    top: calc( ( 100vw - 3rem ) * -50 / 450 );
  }
  .bubble-block::after{
    content: "";
    height: calc( ( 100vw - 3rem ) * 40 / 450 );
    width: 100%;
    background:url(../img/feature/vol37/bubble-bottom-sp.png) no-repeat;
    background-size: 100%;
    position: absolute;
    left:0;
    bottom: calc( ( 100vw - 3rem ) * -40 / 450 );
  }
}

.img-1980-01{
  width: 408px;
  margin-top: -18rem;
  margin-left: 50%;
}
.img-1990-01{
  width: 263px;
  margin-left: 25rem;
}
.img-1990-02{
  width: 286px;
  position: absolute;
  right: 8rem;
  top: 0;
}

.illust-06{
  width: 154px;
  position: absolute;
  left: 0rem;
  bottom: 0rem;
}
.charactor-history-block{
  position: relative;
}
.charactor-block{
  display: flex;
  justify-content:space-between;
  align-items: flex-end;
  margin-top: -10rem;
}
.chara-01{
  width: 242px;
}
.chara-02{
  width: 337px;
}
.chara-03{
  width: 260px;
}



.illust-07{
  width: 66px;
  position: absolute;
  right: 0rem;
  top: 3rem;
}

.illust-08{
  width: 124px;
  position: absolute;
  left: -13rem;
  bottom: 3rem;
}

@media screen and (max-width:767px) {
  .og-block{
  } 
  .img-1980-01{
    width: 319px;
    margin-top: -2rem;
    margin-left: 0;
  }
  .img-1990-01{
    width: 286px;
    margin-left: 0;
  }
  .img-1990-02{
    width: 263px;
    position: relative;
    right: 0;
    top: 0;
  }

  .illust-06{
    width: 128px;
    position: absolute;
    left: auto;
    right: -1rem;
    bottom: -10rem;
  }
  .title-chara-history{
    width: 116px;

  }
  .charactor-block{
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    align-items: flex-end;
    margin-top: 2rem;
  }
  .chara-01{
    width: 242px;
    margin-bottom: 3rem;
  }
  .chara-02{
    width: 266px;
    margin-bottom: 3rem;
  }
  .chara-03{
    width: 260px;
    margin-bottom: 2rem;
  }
  .history-gage{
    position: absolute;
    top: 9rem;
    left: 0;
  }

  .illust-07{
    width: 66px;
    position: absolute;
    right: 0rem;
    left: 0;
    top: -3rem;
    margin: auto;
  }

  .illust-08{
    width: 100px;
    position: relative;
    left: 0;
    bottom: 3rem;
    margin-top: 2rem;
  }

}
/*	‐‐‐‐‐‐‐‐‐‐‐‐3p目‐‐‐‐‐‐‐‐‐‐‐‐‐*/

.link-block{
  background:#E7F4FD;
  padding: 1.5rem 2rem;
  font-size: 1.4rem;
  width: 367px;
}
.link-block a,
.link-block a:visited{
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  color: #333;
  margin-top: 0.5rem;
}
.img-2000-01{
  width: 532px;
  margin-bottom: 4rem;
}
.img-2000-02{
  width: 270px;
  position: absolute;
  right: 3rem;
  top: -3rem;
}
.img-2000-03{
  width: 426px;
  position: absolute;
  right: 0;
  bottom: -8rem;
}
.illust-09{
  width: 133px;
  position: relative;
  left: -16rem;
  bottom: -17rem;
  
}

.chara-04{
  width: 190px;
}
.chara-05{
  width: 494px;
}

.illust-10{
  width: 51px;
  position: absolute;
  left: 30%;
  bottom: -12rem;
}
.illust-11{
  width: 100px;
  position: absolute;
  right: 2rem;
  top: 6rem;
}

.illust-12{
  width: 70px;
  position: absolute;
  left: -10rem;
  bottom: 47rem;
}



@media screen and (max-width:767px) {

  .img-2000-01{
    width: 260px;
    margin-bottom: 4rem;
    margin-left: -9rem;
  }
  .img-2000-02{
    width: 257px;
    position: relative;
    right: -5rem;
    top: -3rem;
  }
  .img-2000-03{
    width: 343px;
    position: relative;
    right: 0;
    bottom: 0;
    margin-bottom:4rem;
  }
  .illust-09{
    width: 86px;
    position: absolute;
    right: 0;
    left: auto;
    bottom: auto;
    top: 57rem;
    
  }
  .link-block{
    background:#E7F4FD;
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
    width: 100%;
  }
  .link-block a,
  .link-block a:visited{
    font-size: 1.1rem;
  }

  
  .chara-04{
    width: 210px;
  }
  .chara-05{
    width: 257px;
  }
  .illust-10{
   display: none;
  }
  .illust-11{
    width: 92px;
    position: absolute;
    right: 0rem;
    top: -14rem;
  }

  .illust-12{
    width: 53px;
    position: absolute;
    left: 1rem;
    bottom: auto;
    top: -5rem;
  }


}


.txt-message{
  text-align: center;
  max-width: 720px;
  margin: auto;
  color: #0068B7;
  line-height: 2.5;
}

.year-70th{
  width: 125px;
  margin: 0 2rem;
}

.illust-13{
  width: 140px;
  position: absolute;
  right: 2rem;
  top: -13rem;
}

.illust-14{
  width: 186px;
  position: absolute;
  right: -3rem;
  bottom: 3rem;
}

.like-img img{
  height: 130px;
  width: auto;
}
.like-title-block{
  margin: 2rem 0 3rem 0;
  padding: 1.5rem;
  text-align: center;
  color: #E94829;
  border-top: 2px dashed #E94829;
  border-bottom: 2px dashed #E94829;
  font-weight: 600;
}

@media screen and (max-width:767px) {
  .message-from-yamaha{
    width: 80%;
  }
  .txt-message{
    text-align: center;
    max-width: 100%;
    margin: auto;
    color: #0068B7;
    line-height: 2.5;
  }
  
  .year-70th{
    width: 90px;
    margin: 0 2rem;
  }
  
  .illust-13{
    width: 106px;
    position: absolute;
    right: 0rem;
    top: -14rem;
  }
  
  .illust-14{
    width: 139px;
    position: absolute;
    right: -3rem;
    bottom: -10rem;
  }
  
  .like-img img{
    height: 110px;
    width: auto;
  }
  .like-title-block{
    margin: 2rem 0;
    padding: 1.5rem;
    text-align: center;
    color: #E94829;
    border-top: 2px dashed #E94829;
    border-bottom: 2px dashed #E94829;
    
  }
  .title-like-yamaha{
    width: 194px;
  }

}