@charset "UTF-8";
/*------- icon -----------------------*/
.icon-san::before {
  display: inline-block;
  content: '';
  width: 64px;
  height: 64px;
  background: url(/vol1/senkyo/chronology/images/icon_san.svg) no-repeat center;
  background-size: contain;
}
.icon-shu::before {
  display: inline-block;
  content: '';
  width: 64px;
  height: 64px;
  background: url(/vol1/senkyo/chronology/images/icon_shu.svg) no-repeat center;
  background-size: contain;
}
.icon-share::before {
  display: inline-block;
  content: '';
  width: 27.6px;
  height: 36px;
  background: url(/vol1/senkyo/chronology/images/icon_share.svg) no-repeat center;
  background-size: contain;
}
.icon-topic::before {
  display: inline-block;
  content: '';
  margin-right: 12px;
  width: 40px;
  height: 40px;
  background: url(/vol1/senkyo/chronology/images/icon_topic.svg) no-repeat center;
  background-size: contain;
}
.icon-orangepoint::before {
  display: inline-block;
  content: '';
  width: 24px;
  height: 24px;
  background: url(/vol1/senkyo/chronology/images/icon_orange_point.svg) no-repeat center;
  background-size: contain;
}
.icon-whitearrow::before {
  display: inline-block;
  content: '';
  width: 20px;
  height: 20px;
  background: url(/vol1/senkyo/chronology/images/icon_white_arrow.svg) no-repeat center;
  background-size: contain;
}
.icon-share-link::before {
  display: inline-block;
  content: '';
  width: 24px;
  height: 24px;
  background: url(/vol1/senkyo/chronology/images/icon_share_link.svg) no-repeat center;
  background-size: contain;
}
.icon-share-twitter::before {
  display: inline-block;
  content: '';
  width: 24px;
  height: 24px;
  background: url(/vol1/senkyo/chronology/images/icon_share_twitter.svg) no-repeat center;
  background-size: contain;
}
.icon-share-x::before {
  display: inline-block;
  content: '';
  width: 24px;
  height: 24px;
  background: url(/vol1/senkyo/chronology/images/icon_share_x.svg) no-repeat center;
  background-size: contain;
}
.icon-share-facebook::before {
  display: inline-block;
  content: '';
  width: 24px;
  height: 24px;
  background: url(/vol1/senkyo/chronology/images/icon_share_facebook.svg) no-repeat center;
  background-size: contain;
}

/*------- accordion ---------*/
.accordion-btn {
  position: relative;
  cursor: pointer;
}
.accordion-btn .icon::before{
  position: absolute;
  top: 50%;
  right: 0;
  transition: transform 0.8s;
  transform: translate(0, -50%);
}
.accordion-btn.open .icon::before {
  transform: translate(0, -50%) rotate(180deg);
}

.accordion-contents {display: none;}

/*------- modal ---------*/
.modal-open{
  cursor: pointer;
}
.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 999;
}
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  max-width: 800px;
}
.modal-close{
  position: absolute;
  top: -48px;
  right: -48px;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.modal-close::before {
  display: inline-block;
  content: '';
  width: 100%;
  height: 100%;
  background: url(/vol1/senkyo/chronology/images/modal_close.svg) no-repeat center;
  background-size: contain;
}
/*------- omit -----------------------*/
.omit {display: none;}
.open .omit {display: inline;}


/*------- morelink -----------------------*/
.morelink-wrapper {
  display: inline-block;
  right: 0;
  border: 0;
  font-size: 16px;
  color: #484848;
}
.morelink {
  cursor: pointer;
  text-decoration: underline;
}
.morelink:hover {
  text-decoration: none;
}

/*------- sharebox ---------*/
.sharebox {
  padding: 60px 0;
  position: relative;
  background-color: #fff;
}
.sharebox-title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #222;
  margin-bottom: 24px;
}

.copy-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.copy-txt input[type="text"] {
  width: 560px;
  padding: 12px 0 12px 13px;
  border:1px solid #dbdbdb;
  background-color: #fafafa;
  font-size: 14px;
  color: #222;
}



.share-list ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.share-list li {
  width: 130px;
  margin-right: 24px;
}

.share-list li:last-child {
  margin-right: 0;
}

.share-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.share-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #0078C6;
  margin-bottom: 8px;
}

.share-item .icon-share-link {
  cursor: pointer;
}

.share-item .txt {
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #484848; 
}

.sharebox-msg {
  display: none;
  padding: 12px 24px;
  background-color: #0078c6;
  border-radius: 8px;
  position: absolute;
  bottom: -64px;
  left: 50%;
  transform: translate(-50%, 50%);
}

.sharebox-msg .msg {
  font-size: 14px;
  text-align: center;
  color: #fff;  
}




/*------- senkyohistory-wrapper ---------*/
.senkyohistory-wrapper {
  height: 100%;
  background: url(/vol1/senkyo/chronology/images/bg_senkyoshitory.jpg) no-repeat top;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.senkyohistory-wrapper::before {
  display: inline-block;
  content: '';
  width: 160px;
  height: 100%;
  background: linear-gradient(to right,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%,rgba(255, 255, 255, 0.6) 100%);
  position: absolute;
  top: 0;
  right: 0;
}



/*------- senkyohistory ---------*/
.senkyohistory {
  padding: 40px 0 24px;

}

/*------- senkyohistory-item-wrapper ---------*/
.senkyohistory-item-wrapper {
  width: 768px;
  position: relative;
}

.senkyohistory-item-wrapper::before {
  content: '';
  height: 100%;
  border-left: 2px solid #BFBFBF;
  position: absolute;
  top: 48px;
  left: -39px;
}

/*------- senkyohistory-year ---------*/
.senkyohistory-year {
  margin-right: 110px;
  width: 155px;
  color: #003d66;
  position: relative;
}

.senkyohistory-year .year-item {
  opacity: 0;
}

.senkyohistory-list li:first-child .senkyohistory-year .year-item {
  opacity: 1;
}

.senkyohistory-year .year {
  margin-bottom: 12px;
  font-size: 56px;
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  line-height: 1;
}

.senkyohistory-year .era {
  font-size: 16px;
  text-align: left;
  line-height: 1;
}

/*------- senkyohistory-item-main ---------*/
.senkyohistory-item-main {
  margin-bottom: 100px;
}

/*------- senkyohistory-head ---------*/
.senkyohistory-head {
  margin-bottom: 80px;
}
.senkyohistory-head-shoulder {
  margin-bottom: 8px;
}
.senkyohistory-head-shoulder a {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  color: #0078c6;
  vertical-align: middle;
}
.senkyohistory-head .title-page {
  color: #484848;
}
/*------- senkyohistory-contents ---------*/
.senkyohistory-contents {
  display: flex;
  justify-content: center;
  align-items: top;
  position: relative;
}

/*------- senkyohistory-anchorlist ---------*/
.senkyohistory-anchorlist {
  position: absolute;
  top: 198px;
  right: 0;
  z-index: 2;
}

.senkyohistory-anchorlist li:not(.dot) {
  text-align: right;
  height: 44px;
}

.senkyohistory-anchorlist li > a,
.senkyohistory-anchorlist li > span {
  display: inline-block;
  padding-right: 15px;
  letter-spacing: 0.5px;
}

.senkyohistory-anchorlist li.dot {
  margin-bottom: 4px;
}
.senkyohistory-anchorlist li.dot.last {
  margin-bottom: 14px;
}
.senkyohistory-anchorlist li a .year {
  font-family: 'Roboto';
  font-size: 14px;
  text-align: right;
  color: #484848;
}

.senkyohistory-anchorlist li a .era {
  display: none;
}
.senkyohistory-anchorlist li.dot > span {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.senkyohistory-anchorlist li.dot > span::before {
  display: inline-block;
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #BFBFBF;
}
.senkyohistory-anchorlist li.dot a {
  display: none;
}
.senkyohistory-anchorlist li a.hover,
.senkyohistory-anchorlist li a:hover {
  padding:9px 15px 8px 16px ;
  border-radius: 18px 0px 0px 18px;
  background-color:rgba(0, 120, 198,0.7)
}

.senkyohistory-anchorlist li a.hover .year,
.senkyohistory-anchorlist li a:hover .year {
  font-weight: 500;
  font-size: 20px;
  color: #fff;  
}

.senkyohistory-anchorlist li a.hover .era,
.senkyohistory-anchorlist li a:hover .era {
  display: inline-block;
  font-size: 10px;
  color: #fff;  
}





/*------- senkyohistory-item-head ---------*/
.senkyohistory-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 21px 16px 32px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom: 1px solid #DBDBDB;
  background-color: #F4F4F4;
  position: relative;
}
.senkyohistory-item-head::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -13px;
  border: 13px solid transparent;
  border-right: 20px solid #f4f4f4;
}
.senkyohistory-item-head.icon-orangepoint::before {
  position: absolute;
  top: 50%;
  left: -39px;
  transform: translate(-50%,-50%)
}
.senkyohistory-item-head .share {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 21.4px;
  height: 64px;
  border-left: 1px solid #DBDBDB;
}
.head-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.head-title span {
  display: inline-flex;
}
.head-title .txt {
  font-size: 20px;
  font-weight: 600;
  color: #484848;
}
.head-title .txt > span {
  display: inline-block;
  margin-left: 24px;
}
.head-title .txt .date {
  color: #003d66;
}

/*------- senkyohistory-item-contents ---------*/
.senkyohistory-item-contents {
  background:rgba(255,255,255,0.92);
}
.senkyohistory-item-contents .inner {
  padding: 22px 32px 32px 32px;
}
.senkyohistory-item-contents .item-title {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 600;
  text-align: left;
  color: #222;
}

.senkyohistory-item-contents .item-contents {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.senkyohistory-item-contents .item-thumbnail {
  width: 38%;
  margin-right: 2%;
  border: 1px solid #dbdbdb;
}

.senkyohistory-item-contents .item-detail {
  width: 60%;
}

.senkyohistory-item-contents .item-detail > div {
  border-bottom: 1px solid #919191;
}

.senkyohistory-item-contents .item-detail > div.detail-link {
  margin: 0;
  padding: 12px 0 0;
  padding-bottom: 0;
  border-bottom: none;
}

.senkyohistory-item-contents .item-detail > .detail-description {
  font-size: 16px;
  text-align: left;
  color: #222;
  line-height: 1.8;
  padding-bottom: 32px;
  margin-bottom: 20px;
}

/*------- detail-senkyoinfo ---------*/
.detail-senkyoinfo {
  margin-bottom: 20px;
}

.detail-senkyoinfo ul {
  margin-bottom: 20px;
}
.detail-senkyoinfo .senkyoinfo-title {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: #222;
  margin-bottom: 20px;
}

.detail-senkyoinfo ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed #a8a8a8;
}
.detail-senkyoinfo ul li:first-child {
  padding-top: 0;
}
.detail-senkyoinfo ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.detail-senkyoinfo ul li span {
  font-size: 16px;
  line-height: 1;
}
.detail-senkyoinfo ul li span:nth-of-type(1) {
  color: #767676;
}
.detail-senkyoinfo ul li span:nth-of-type(2) {
  color: #222;
}

/*------- detail-senkyoseat ---------*/
.detail-senkyoseat .seat-title {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: #222;
  margin-bottom: 20px;
}

.detail-senkyoseat .seat-table {
  margin-bottom: 20px;
}
.detail-senkyoseat .seat-table th,
.detail-senkyoseat .seat-table td {
  border: 1px solid #dbdbdb;
}

.detail-senkyoseat .seat-table tbody th,
.detail-senkyoseat .seat-table tbody td {
  border-top: none;
}

.detail-senkyoseat .seat-table tbody tr:not(:last-child) th,
.detail-senkyoseat .seat-table tbody tr:not(:last-child) td {
  border-bottom: none;
}

.detail-senkyoseat .seat-table thead th {
  padding: 12px;
  font-size: 13px;
  text-align: center;
  line-height: 1;
}

.detail-senkyoseat .seat-table thead th:nth-of-type(1),
.detail-senkyoseat .seat-table thead th:nth-of-type(2) {
  width: 16%;
}

.detail-senkyoseat .seat-table thead th.elect {
  font-weight: 600;
}

.detail-senkyoseat .seat-table thead th:first-child,
.detail-senkyoseat .seat-table tbody th {
  background-color: #F4F4F4;
}

.detail-senkyoseat .seat-table tbody th,
.detail-senkyoseat .seat-table tbody td {
  padding: 6px 12px;
}

.detail-senkyoseat .seat-table tbody th {
  font-size: 13px;
  text-align: left;
  color: #222;
  line-height: 1;
}

.detail-senkyoseat .seat-table tbody td {
  font-size: 13px;
  text-align: center;
  color: #767676;
  letter-spacing: 0.5px;
}

.detail-senkyoseat .seat-table tbody td:nth-of-type(2) {
  text-align: center;
} 

.detail-senkyoseat .seat-table tbody td:first-child {
  text-align: left;
  color: #222;
}

.detail-senkyoseat .seat-table tbody tr:first-child th,
.detail-senkyoseat .seat-table tbody tr:first-child td {
  padding-top: 12px;
}

.detail-senkyoseat .seat-table tbody tr:last-child th,
.detail-senkyoseat .seat-table tbody tr:last-child td {
  padding-bottom: 12px;
}

.detail-senkyoseat .note {
  margin-bottom: 20px;
  font-size: 12px;
  text-align: left;
  color: #484848;
}

/*------- band-graph ---------*/
.band-graph {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 16px;
}

.band-graph .band {
  width: 25%;
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.band-graph .band .title {
  font-size: 12px;
  margin-bottom: 4px;
  text-align: center;
  color: #fff;
  line-height: 1;
}

.band-graph .band .num {
  font-family: 'Roboto';
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.5px;
}

.band-graph.is-san .band1 {
  background-color: #E25A83;
}

.band-graph.is-san .band2 {
  background-color: #DB2059;
}

.band-graph.is-san .band3 {
  background-color: #2D61AA;
}

.band-graph.is-san .band4 {
  background-color: #4B73AA;
}

.band-graph.is-shu .band1 {
  background-color: #DB2059;
}

.band-graph.is-shu .band2 {
  background-color: #2D61AA;
}

#list-2012 .band-graph.is-shu .band1 {
  background-color: #DB2059;
}

#list-2012 .band-graph.is-shu .band2 {
  background-color: #2D61AA;
}

#list-2012 .band-graph.is-shu .band3 {
  background-color: #DB8520;
}

#list-2010 .band-graph.is-san .band1 {
  background-color: #2D61AA;  
}

#list-2010 .band-graph.is-san .band2 {
  background-color: #4B73AA;
}

#list-2010 .band-graph.is-san .band3 {
  background-color: #E25A83;
}

#list-2010 .band-graph.is-san .band4 {
  background-color: #DB2059;
}

.bandcolor-red1 {
  background-color: #DB2059;
}

.bandcolor-red2 {
  background-color: #E25A83;
}

.bandcolor-blue1 {
  background-color: #2D61AA;
}

.bandcolor-blue2 {
  background-color: #4B73AA;
}

.bandcolor-orange1 {
  background-color: #DB8520;
}


/*------- bar-graph ---------*/
.bar-graph {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.bar-graph .num {
  width: 30px;
  text-align: right;
  margin-right: 6px;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #222;
}
.bar-graph .bar-wrapper {
  position: relative;
  width: calc(100% - 36px);
  height: 11px;
}
.bar-graph .bar-wrapper .bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background-color: #2D61AA;
}

.bar-graph .bar-wrapper .bar.red {
  background-color: #DB2059;
}

.bar-graph .bar-wrapper .bar.orange {
  background-color: #DB8520;
}


/*------- detail-link ---------*/
.detail-link a{
  font-size: 16px;
  color: #222;
  text-decoration: underline;
}

.detail-link a:hover {
  text-decoration: none;
}

/*------- senkyohistory-list ---------*/
.senkyohistory-list {
  width: 100%;
}

.senkyohistory-list > li {
  display: flex;
  justify-content: flex-start;
}

/*------- senkyohistory-item-topic ---------*/
.senkyohistory-item-topic {
  margin-bottom: 120px;
}
.senkyohistory-item-topic .item-topic-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #003d66;
  line-height: 1;
}

/*------- topic-list ---------*/
.topic-list-wrapper {
  overflow: hidden;
  margin-right: calc(50% - 50vw);
}
.topic-list-wrapper.is-scroll {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.topic-list-wrapper.is-scroll::-webkit-scrollbar{
  display: none;
}
.topic-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.is-scroll .topic-list {
  padding-left: 500px;
  width: 1900px;
  transform: translate(-500px, 0);
}

.topic-list li {
  margin-right: 24px;
  max-width: 388px;
}

.topic-list li:last-child {
  margin-right: 0;
}

/*------- topic-detail ---------*/
.topic-detail {
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 32px;
  min-width: 388px;
}

.detail-title-shoulder {
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: #003d66;  
}

.detail-title {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  color: #222;  
} 

.detail-description {
  font-size: 16px;
  text-align: left;
  color: #222;
  line-height: 1.8;
  position: relative;
}

.detail-description a {
  text-decoration: underline;
  font-size: 16px;
  color: #484848;
}

.detail-description a:hover {
  text-decoration: none;
}

.detail-link a{
  text-decoration: underline;
  font-size: 16px;
  text-align: left;
  color: #222;  
}

.detail-link a:hover {
  text-decoration: none;
}

/*------- senkyohistory-timestamp ---------*/
.senkyohistory-timestamp {
  font-size: 12px;
  text-align: left;
  color: #767676;
}