/*

【CSS記述ルール】

① font-sizeはpxで指定してください
　（rem、%等の指定はしないようお願いいたします）

② data はディレクトリ名に変更してください

③ 必ずディレクトリ名が付いたidセレクタを先頭に記述した後に、要素を記述してください
　（例：#oneday .inner、#oneday .page-title 等）

④ CSS内の画像指定パスは、CSSファイルから見た相対パスで指定してください
　（例：../images/ディレクトリ名/画像名.拡張子）

*/

/*------------------------------------------------------------
common
------------------------------------------------------------*/
.data {
  font-family: 'Noto Sans JP', 'Century Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック体, YuGothic, "Yu Gothic Medium", 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

#data * {
  box-sizing: border-box;
}

#data a {
  transition: opacity .3s;
  color: unset;
}

#data a[href^="tel:"] {
  display: inline-block;
  transition: none;
}

#data a:hover {
  text-decoration: none;
}

#data a:focus-visible {
  outline: none;
}

#data img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

#data .js-fadein {
  opacity: 0;
  transform: translate(0, 20px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}

#data .scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

#data .text {
  margin-bottom: 2em;
}

#data .text:last-of-type {
  margin-bottom: 0;
}

#data .pc-br {
  display: none;
}

#data .notes {
  display: inline-block;
  position: relative;
  margin-left: 1em;
}

#data .notes::before {
  content: '\0203B';
  display: block;
  position: absolute;
  top: 0;
  left: -1em;
}

#data .inner {
  width: calc(100% - 24px);
  max-width: 1180px;
  margin: 0 auto;
}

#data a:not([href^="tel:"]):hover{
  opacity: unset!important;
}

#data .br-point{
  display: inline-block;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  .data {
    font-size: 16px;
  }
  
  #data a[href^="tel:"] {
    color: inherit;
    pointer-events: none;
  }
  
  #data a:not([href^="tel:"]):hover {
    opacity: .5;
  }
  
  #data .sp-br {
    display: none;
  }
  
  #data .pc-br {
    display: inline;
  }
}
/*------------------------------------------------------------
font
------------------------------------------------------------*/
#data .font-solitas{
  font-family: solitas-serif-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
}

#data .font-tbud{
  font-family: tbudmincho-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}


/*------------------------------------------------------------
main
------------------------------------------------------------*/
#data .main{
  background-image: url("../images/data/h1_bg_sp.jpg");
  background-position: right top;
  background-size: 325px 345px;
  background-repeat: repeat-y;
  min-height: 395px;
  position: relative;
  z-index: 0;
  margin-bottom: 50px;
}

#data .main .main-img{
  width: 100%;
  position: relative;
  padding-right: 12px;
}

#data .main-text-wrap{
  width: fit-content;
  position: absolute;
  top: 215px;
  right: 12px;
}

#data .main .main-ttl{
  position: relative;
  z-index: 50;
  width: fit-content;
}

#data .main .main-message{
  position: relative;
  z-index: 50;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
  width: 100%;
  max-width: 293px;
}

#data .main-ttl .text-box{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#data .main .ttl-eng{
  color: #6B5E11;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .1em;
  min-width: 130px;
  width: fit-content;
  padding-left: 5px;
  transform: translateY(-9px);
}

#data .main .ttl-jpn{
  color: #FFF;
  font-size: 12px;
  letter-spacing: .04em;
  min-width: 138px;
  width: fit-content;
  padding-left: 3px;
  transform: translateY(3px);
}

#data .main .message-box{
  display: flex;
  justify-content: flex-end;
  padding: 20px 0 18px;
}

#data .main .inner-box-eng{
  background-color: #FFF;
  max-height: 24px;
  width: fit-content;
}

#data .main .inner-box-jpn{
  margin-right: -12px;
  background-color: #6B5E11;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #data .main .main-img{
    max-width: unset;
    width: 88%;
  }
  
  #data .main{
    background-image: url("../images/data/h1_bg_pc@2x.jpg");
    background-size: contain;
    margin-bottom: 80px;
  }
  
  #data .main .ttl-eng{
    font-size: 40px;
    transform: translateY(-5px);
    line-height: 1;
  }
  
  #data .main .ttl-jpn{
    font-size: 22px;
    padding: 0 6px;
    transform: translateY(9px);
    line-height: 1;
  }
  
  #data .main .main-message{
    font-size: 16px;
    max-width: 960px;
  }
  
  #data .main .inner-box-eng{
    margin-left: -30px;
    max-height: unset;
    height: 48px;
    width: 110%;
  }
  
  #data .main-text-wrap{
    top: calc(100vw / 1920 * 430);
  }
  
  #data .main .message-box{
    justify-content: center;
    padding: 40px 0 36px;
  }
  
  #data .main-img img{
    object-fit: cover;
    width: 100%;
    height: 600px;
  }
  
  #data .main .inner-box-jpn{
    margin-right: -30px;
    height: 30px
  }
}

@media print, screen and (min-width: 1560px) {/* ---------- タブレット・PC以上 ---------- */
  #data .main .main-img{
    height: calc(100vw / 1920 * 600);
  }
  
  #data .main-img img{
    height: auto;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1280px) {/* ---------- 画面幅768px ～ 1280px ---------- */
  #data .main-img img{
    height: 500px;
  }
  
 
}

/*------------------------------------------------------------
suggest
------------------------------------------------------------*/
#data .suggest-ttl{
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0 40px;
}

#data .suggest-ttl-eng{
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.2;
  padding-bottom: 6px;
}

#data .suggest-wrap .bg{
  background-image: url("../images/data/suggest_bg_sp.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 58px;
}

#data .suggest-wrap{
  color: #FFF;
}

#data .suggest-wrap .link-box{
  width: 140px;
  height: 130px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

#data .suggest-wrap .link-box-outer:nth-last-of-type(-n+1){
  margin-bottom: 0;
}

#data .suggest-wrap .link-ttl-eng{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}

#data .suggest-wrap .link-ttl-jpn{
  font-size: 10px;
  font-weight: bold;
  letter-spacing: .04em;
}

#data .suggest-wrap .text-wrap{
  position: relative;
  width: 100%;
  z-index: 50;
}

#data .suggest-wrap .suggest-links .text-wrap::after{
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  transform: translateY(-50%);
  position: absolute;
  right: 5px;
  top: 50%;
  background-image: url("../images/data/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#data .suggest-wrap .link-box-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 300px;
  margin: 0 auto;
}

#data .suggest-wrap .link-box::after{
  position: absolute;
  content: "";
  display: block;
  width: 140px;
  height: 130px;
  top: 0;
  left: 0;
  background-color: #333333;
  opacity: .44;
  transition: all .3s ease-out;
}

#data .suggest-wrap .link-box-outer:hover .link-box::after{
  opacity: 0;
}

#data .suggest-wrap .link-box-outer:hover .link-box{
  transition: all .3s ease;
  transform: scale(1.2);
  will-change: transform;
}

#data .link-box-outer{
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

#data .suggest-wrap .link-box-outer .text-wrap{
  position: absolute;
  bottom: 0;
  padding: 0 6px 7px;
}

#data .suggest-links{
  margin-bottom: 30px;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #data .suggest-wrap .link-box-wrap{
    max-width: 1200px;
    padding: 0 10px;
  }
  
  #data .suggest-wrap .link-box{
    width: 100%;
    max-width: 220px;
    height: 210px;
    align-items: stretch;
  }
  
  #data .suggest-wrap .link-box::after{
    width: 100%;
    max-width: 220px;
    height: 210px;
  }
  
  #data .link-box-outer{
    margin-bottom: 0;
    width: calc((100% - 80px) / 5);
    z-index: 0;
  }
  
  #data .suggest-wrap .link-ttl-eng{
    font-size: 30px;
    letter-spacing: .05em;
  }
  
  #data .suggest-wrap .link-ttl-jpn{
    font-size: 16px;
  }
  
  #data .suggest-wrap .link-box-outer .text-wrap{
    padding: 0 10px 30px 10px;
  }
  
  #data .suggest-wrap .suggest-links .text-wrap::after{
    top: calc(50% - 10px);
    right: 10px;
    transition: all .3s ease-out;
    width: 8px;
    height: 14px;
  }
  
  #data .suggest-wrap .bg{
    background-image: url("../images/data/suggest_bg_pc@2x.jpg");
    padding-bottom: 120px;
  }
  
  #data .suggest-ttl-eng{
    font-size: 40px;
    padding-bottom: 10px;
  }
  
  #data .suggest-ttl-jpn{
    font-size: 22px;
  }
  
  #data .suggest-links{
    margin-bottom: 57px;
  }
  
  #data .suggest-ttl{
  padding: 120px 0 80px;
  }
  
  #data .suggest-links .link-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/*------------------------------------------------------------
btn
------------------------------------------------------------*/
#data .btn-search .btn-text-eng{
  font-size: 20px;
  font-weight: 600;
  padding-right: 20px;
  letter-spacing: .1em;
}

#data .btn-search{
  max-width: 351px;
}

#data .btn01{
  width: calc(100% - 24px);
  border-radius: 5px;
  margin: 0 auto;
  transition: all .3s ease-out;
  background: linear-gradient(to right, #C8BB8D 0%, #6B5E11 51%, #C8BB8D 100%);
  background-size: 200% auto;
  box-shadow: 0 5px 3px rgba(0,0,0,.16);
}

#data .btn01:hover{
  background-position: right center;
}

#data .btn01 .text-wrap{
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  padding: 16px 0;
}

#data .btn01 .text-wrap::after{
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease-out;
  background-image: url("../images/data/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#data .btn01 .btn-text-jpn{
  padding-right: 31px;
  letter-spacing: .04em;
}

#data .btn01:hover .text-wrap::after{
  left: 105%;
}


@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #data .btn-search{
    max-width: 960px;
  }
  
  #data .btn-search .btn-text-eng{
    font-size: 34px;
    line-height: 1.2;
  }
  
  #data .btn-search .btn-text-jpn{
    font-size: 20px;
  }
  
  #data .btn01 .text-wrap::after{
    width: 10px;
    height: 18px;
  }
  
  #data .btn01{
    border-radius: 10px;
    box-shadow: 0 10px 6px rgba(0,0,0,.16);
  }
  
  #data .btn01 .text-wrap{
    padding: 34px 0 37px;
  }
}

/*------------------------------------------------------------
data
------------------------------------------------------------*/
#data .content-wrap{
  margin-bottom: 60px;
}

#data .data-box{
  width: calc(100% - 54px);
  margin: 0 auto 30px;
  background-color: #F5F5F5;
}

#data .data-box:last-of-type{
  margin-bottom: 0;
}

#data .data-box .data-ttl{
  background-color: #333333;
  color: #FFF;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 15px;
  width: fit-content;
  letter-spacing: .1em;
}

#data .data-box .ttl-jpn{
  font-size: 15px;
  margin-right: 10px;
}

#data .data-box .ttl-eng{
  font-size: 12px;
}

#data .data-box .data-text-wrap{
  background-color: #FFF;
  margin-left: 21px;
  font-size: 14px;
  letter-spacing: .01em;
  line-height: 1.64;
  padding: 15px 15px 15px 0;
}

#data .data-box .data-text-box::before{
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #6B5E11;
  position: absolute;
  left: 0;
  top: 10px;
}

#data .data-box .data-text-box{
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

#data .data-box .data-text-box:last-of-type{
  margin-bottom: 0;
}

#data .graph-area{
  width: 150px;
  height: 150px;
}

#data .graph-text-wrap .text-box{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  letter-spacing: .01em;
  position: absolute;
}

#data .graph-text-wrap .year-harf, #data .graph-text-wrap .married, #data .graph-text-wrap .smoker{
  top: -30px;
  right: -15px;
}

#data .graph-text-wrap .year-5, #data .graph-text-wrap .single, #data .graph-text-wrap .nonsmoker{
  bottom: 3px;
  left: 100%;
}

#data .graph-text-wrap .year-10{
  bottom: 115px;
  right: 90%;
}

#data .graph-text-wrap .year-20{
  left: 32px;
  top: -50px;
}

/*#data .graph-text-wrap .year-20::after{
  position: absolute;
  content: "";
  width: 14px;
  height: 1px;
  background-color: #333333;
  right: -10px;
  bottom: -1px;
  transform: rotate(45deg);
}*/

#data .graph-text-wrap .text-jpn{
  font-size: 13px;
  font-weight: bold;
  margin-bottom: -5px;
  display: inherit;
}

#data .graph-text-wrap .text-jpn .decoration{
  font-size: 12px;
}

#data .graph-text-wrap .text-jpn .decoration-year{
  font-size: 13px;
}

#data .graph-text-wrap .text-number{
  font-size: 23px;
  font-weight: 500;
}

#data .graph-text-wrap .text-number .small{
  font-size: 18px;
}

#data .graph-text-wrap .text-number .decoration{
  font-size: 12px;
}

#data .data-box .graph-wrap{
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

#data .data-box-length .graph-wrap{
  margin: 56px auto 13px;
}

#data .data-box-age .graph-wrap{
  margin: 27px auto 25px;
}

#data .data-box-commutetime .graph-wrap{
  margin: 80px auto 40px;
  width: calc(100% - 70px);
  height: 50px;
}

#data .data-box-career .graph-wrap{
  margin: 25px auto 18px;
}

#data .data-box.data-box-commute .graph-wrap{
  margin: 32px auto 31px;
  width: calc(100% - 51px);
  height: 100%;
}

#data .data-box-commute .commute-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

#data .data-box-married .graph-wrap{
  margin: 25px auto 23px;
}

#data .data-box-smoking .graph-wrap{
  margin: 26px auto 23px;
}

#data .data-box-birthplace .graph-wrap{
  padding: 8px 0 6px;
  position: relative;
  width: calc(100% - 14px);
  height: 100%;
  margin: 0 auto;
}

#data .data-box .birthplace-map{
  
}

#data .data-box .birthplace-map, #data .data-box .birthplace-pins{
  width: 100%;
}

#data .data-box .birthplace-pins{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
}

#data .data-box .birthplace-pins.scroll-in{
  transform: translate(-50%, -50%);
}

#data .graph-text-wrap .age-20, #data .graph-text-wrap .midcareer-recr{
  top: 50px;
  right: 17px;
  color: #FFF;
}

#data .graph-text-wrap .age-30, #data .graph-text-wrap .newgrad-recr{
  bottom: 30px;
  left: 17px;
  color: #FFF;
}

#data .graph-text-wrap .age-40{
  top: 14px;
  left: 30px;
}

#data .data-box-age .graph-text-wrap .text-jpn .decoration{
  font-size: 18px;
  line-height: 1.15;
}

#data .data-box-age .graph-text-wrap .text-jpn{
  align-items: baseline;
  display: flex;
  margin-bottom: -10px;
}

#data .data-box-commutetime .graph-text-wrap .text-jpn{
  margin-bottom: -8px;
  line-height: 1.15;
}

#data .data-box-commutetime .graph-text-wrap .text-jpn .decoration{
  font-size: 18px;
}

#data .data-box-commutetime .graph-text-wrap .text-number{
  font-size: 26px;
}

#data .graph-text-wrap .commutetime-30{
  width: 44%;
}

#data .data-box-commutetime .graph-text-wrap{
  max-width: 245px;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

#data .data-box-commutetime .graph-text-wrap .text-box{
  position: unset;
  justify-content: center;
}

#data .graph-text-wrap .commutetime-60{
  width: 31%;
  color: #FFF;
}

#data .graph-text-wrap .commutetime-60 .text-inner-box{
  padding-right: 4px;
}

#data .data-box-commutetime .graph-text-wrap .commutetime-60 .text-jpn, #data .data-box-commutetime .graph-text-wrap .commutetime-60 .text-number{
  padding-left: 6px;
}

#data .graph-text-wrap .commutetime-90{
  width: 25%;
}

#data .data-box-commutetime .graph-text-wrap .text-inner-box{
  width: 100%;
  height: 100%;
  position: relative;
}

#data .data-box-commutetime .graph-text-wrap .text-inner-box::before{
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -10;
}

#data .data-box-commutetime .commutetime-30 .text-inner-box::before{
  background-color: #C5BFB9;
}

#data .data-box-commutetime .commutetime-60 .text-inner-box::before{
  background-color: #CEBB6C;
}

#data .data-box-commutetime .commutetime-90 .text-inner-box::before{
  background-color: #9C8B3F;
}

#data .data-box-commutetime .commutetime-90 .text-group{
  position: absolute;
  width: max-content;
  bottom: 110%;
  right: -15px;
  /*transform: translateX(50%);*/
}

#data .data-box-commutetime .commutetime-90 .text-group::before{
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #333333;
  transform: rotate(115deg) translateY(-50%);
  position: absolute;
  bottom: -4px;
  right: 43%;
}

#data .data-box-commutetime .graph-text-wrap::before{
  content: "";
  display: block;
  width: 30px;
  height: 38px;
  background-image: url("../images/data/icon_footprint.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  z-index: 50;
}

#data .graph-text-wrap .midcareer-recr{
  top: unset;
  right: 26px;
  bottom: 26px;
}

#data .text-box.scroll-in,
#data .birthplace-pins.scroll-in{
  transition-delay: .6s;
}

#data .graph-text-wrap .newgrad-recr{
  top: 10px;
  left: 41px;
  bottom: unset;
}

#data .data-box-career .graph-text-wrap .text-jpn{
  margin-bottom: -11px;
}

#data .data-box-married .text-box, #data .data-box-smoking .text-box{
  width: max-content;
}

#data .graph-text-wrap .married{
  top: 15px;
  left: -30px;
}

#data .graph-text-wrap .single{
  bottom: 20px;
  right: -42px;
  left: unset;
}

#data .graph-text-wrap .nonsmoker{
  right: 100%;
  left: unset;
}

#data .graph-text-wrap .smoker{
  top: -26px;
  right: -27px;
}

#data .data-box-smoking .graph-wrap::before, #data .data-box-married .graph-wrap::before{
  content: "";
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#data .data-box-smoking .graph-wrap::before{
  width: 45px;
  height: 35px;
  background-image: url("../images/data/icon_smoking.svg");
}

#data .data-box-married .graph-wrap::before{
  width: 42px;
  height: 47px;
  background-image: url("../images/data/icon_glass.svg");
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #data .content-wrap{
    margin-bottom: 120px;
  }
  
  #data .data-wrap{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    flex-direction: column;
    max-height: 2100px;
  }
  
  #data .data-box{
    max-width: 580px;
    width: calc(50% - 20px);
    margin: 0 0 42px 0 ;
    height: fit-content;
  }
   
  #xdata .data-box:nth-last-of-type(-n+2){
    margin-bottom: 0;
  }
  
  #data .data-box .ttl-jpn{
    font-size: 20px;
  }
  
  #data .data-box .ttl-eng{
    font-size: 14px;
  }
  
  #data .data-box .data-text-wrap{
    font-size: 16px;
    line-height: 1.87;
    margin-left: 50px;
    padding: 20px 20px 20px 0;
  }
  
  #data .data-box .data-text-box::before{
    width: 20px;
    height: 2px;
  }
  
  #data .data-box .data-text-box{
    padding-left: 40px;
  }
  
  #data .data-box .graph-wrap{
    width: 300px;
    height: 300px;
  }
  
  #data .data-box-age .graph-wrap{
    margin: 50px auto 46px;
  }
  
  #data .data-box-career .graph-wrap{
    margin: 55px auto 51px;
  }
  
  #data .graph-text-wrap .text-jpn{
    font-size: 30px;
    display: flex;
    align-items: baseline;
    margin-bottom: -19px;
  }
  
  #data .graph-text-wrap .age-20 .text-jpn, #data .graph-text-wrap .age-30 .text-jpn{
    margin-bottom: -20px;
  }
  
  #data .graph-text-wrap .text-jpn .decoration, #data .graph-text-wrap .text-jpn .decoration-year{
    font-size: 22px;
  }
  
  #data .graph-text-wrap .text-number{
    font-size: 40px;
  }
  
  #data .graph-text-wrap .text-number .small{
    font-size: 30px;
  }
  
  #data .graph-text-wrap .age-20 .text-number, #data .graph-text-wrap .age-30 .text-number{
    font-size: 50px;
  }
  
  #data .graph-text-wrap .text-number .decoration{
    font-size: 16px;
  }
  
  #data .graph-text-wrap .year-20{
    top: -79px;
    left: 70px;
  }
  
  /*#data .graph-text-wrap .year-20::after{
    height: 2px;
    width: 18px;
    right: -14px;
    bottom: 12px;
    transform: rotate(50deg);
  }*/
  
  #data .data-box-length .graph-wrap{
    margin: 80px auto 32px;
  }
  
  #data .graph-text-wrap .year-harf{
    top: -50px;
    right: -15px;
  }
  
  #data .graph-text-wrap .year-10{
    bottom: 240px;
    left: -30px;
  }
  
  #data .graph-text-wrap .year-5{
    bottom: 2px;
    right: -46px;
    left: unset;
  }
  
  #data .data-box-age .graph-text-wrap .text-jpn{
    font-size: 22px;
  }
  
  #data .data-box-age .graph-text-wrap .text-jpn .decoration{
    font-size: 30px;
  }
  
  #data .graph-text-wrap .age-20{
    top: 120px;
    right: 42px;
  }
  
  #data .graph-text-wrap .age-30{
    bottom: 60px;
    left: 35px;
  }
  
  #data .graph-text-wrap .age-40{
    top: 26px;
    left: 66px;
  }
  
 /* #data .data-box-length{
    order: 1;
  }*/
  
  #data .data-box-career{
    order: 1;
  }
  
  #data .data-box-married{
    order: 2;
  }
  
  #data .data-box-birthplace{
    order: 3;
  }
  
  #data .data-box-age{
    order: 4;
  }
  
  #data .data-box-commutetime{
    order: 5;
  }
  
  #data .data-box-commute{
    order: 6;
  }
  
  /*#data .data-box-smoking{
    order: 8;
  }*/
  
  #data .data-box-commutetime .graph-text-wrap .text-jpn{
    font-size: 22px;
    justify-content: center;
  }
  
  #data .data-box-commutetime .graph-text-wrap .text-jpn .decoration{
    font-size: 30px;
  }
  
  #data .data-box-commutetime .graph-wrap{
    width: calc(100% - 140px);
    height: 100px;
    margin:  132px auto 74px 50px;
  }
  
  #data .data-box-commutetime .graph-text-wrap{
    max-width: unset;
  }
  
  
  #data .data-box-commutetime .graph-text-wrap .text-number{
    font-size: 50px;
  }
  
  #data .data-box-commutetime .graph-text-wrap .commutetime-90 .text-number{
    font-size: 40px;
  }
  
  #data .data-box-commutetime .commutetime-90 .text-group::before{
    height: 2px;
    width: 30px;
    bottom: -10px;
  }
  
  #data .data-box-commutetime .graph-text-wrap::before{
    width: 60px;
    height: 75px;
    left: 80%;
  }
  
  #data .graph-text-wrap .commutetime-30{
    width: 44%;
  }
  
  #data .graph-text-wrap .commutetime-60{
    width: 31%;
  }
  
  #data .graph-text-wrap .commutetime-90{
    width: 25%;
  }
  
  #data .graph-text-wrap .newgrad-recr{
    top: 25px;
    left: 85px;
  }
  
  #data .data-box-career .graph-text-wrap .text-jpn{
    font-size: 22px;
    margin-bottom: -17px;
  }
  
  #data .graph-text-wrap .midcareer-recr{
    right: 68px;
    bottom: 62px;
  }
  
  #data .data-box-smoking .graph-wrap{
    margin: 100px auto 126px 28%;
  }
  
  #data .graph-text-wrap .married{
    top: 51px;
    left: -61px;
  }
  
  #data .graph-text-wrap .single{
    bottom: 42px;
    right: -73px;
  }
  
  #data .data-box-married .graph-text-wrap .text-jpn{
    font-size: 22px;
  }
  
  #data .data-box-married .graph-wrap::before{
    width: 80px;
    height: 100px;
  }
  
  #data .data-box-smoking .graph-text-wrap .text-jpn{
    font-size: 22px;
    line-height: 1.36;
    margin-bottom: -14px;
  }
  
  #data .data-box-smoking .graph-text-wrap .text-number .decoration-large{
    font-size: 50px;
  }
  
  #data .graph-text-wrap .smoker{
    right: -36px;
    top: -32px;
  }
  
  #data .data-box-smoking .graph-wrap::before{
    width: 80px;
    height: 60px;
  }
  
  #data .data-box.data-box-birthplace .graph-wrap{
    width: calc(100% - 46px);
    height: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  
  #data .data-box-married .graph-wrap{
    margin: 60px auto 56px;
  }
 
}