dd{
    margin: 0;
}
body{
    padding-top: 0px;
    margin: 0 auto;
}
.topwidth{
    max-width: 100%;
    margin: 0 auto;
    padding-left: 15%;
}
@media screen and (max-width: 768px) {
    body{
        padding-top: 25px;
    }
}
/* よく使うタイトルのcss */
#titlebox .main{
    font-family: Cormorant Garamond,sans-serif;
    font-size: 62px;
    font-style: italic;
    margin: 0;
    line-height: initial;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
#titlebox .and{
    padding-top: 10px;
    width: 45px;
}
#titlebox .sub{
    font-family: Noto Serif JP, YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

@media screen and (max-width: 768px) {
    #titlebox .main{
        font-size: 40px;
        gap: 5px;
    }
    #titlebox .and{
        padding-top: 10px;
        width: 25px;
    }
    #titlebox .sub{
        font-size: 14px;
    }
}
/* よく使うタイトルのcss */
.width{
    max-width: 1200px;
    margin: 0 auto;
}
@media screen and (max-width: 1300px) {
    .width{
        max-width: 100%;
        padding: 0 50px ;
        margin: 0 auto;
    }
}
@media screen and (max-width: 768px) {
    .width{
        max-width: calc(100% - 40px);
        padding: 0 20px;
        margin: 0 auto;
    }
}

#aboutus{
    padding-top: 70px;
}
#aboutus .top{
    width: 100%;
    position: relative;
}
#aboutus .top .banner{
    width: 100%;
}

#aboutus .top #titlebox{
    position: absolute;
    top: 42%;
    left: 10%;
}

@media screen and (max-width: 1200px){
    #aboutus .top #titlebox{
        position: absolute;
        top: 30%;
        left: 0px ;
    }
}
@media screen and (max-width: 768px){
    #aboutus{
        padding-top: 00px;
    }
    #aboutus .top{
        width: 100%;
        position: relative;
    }
    #aboutus .top .banner{
        width: 100%;
    }
    
    #aboutus .top #titlebox{
        position: absolute;
        top: 42%;
        left: 0px;
    }

}

#Welfare,#Date{
    margin-top: -70px;
    padding-top: 70px;
}
@media screen and (max-width: 768px) {
    #Welfare,#Date{
        margin-top: -50px;
        padding-top: 50px;
    }
}

#aboutus .r_body{
   padding-top: 50px;
   padding-bottom: 50px;
}
#aboutus .r_body .top_text{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 22px;
    line-height: 46px;
    letter-spacing: 2px;
    font-weight: 500;
}
#aboutus .aboutus_title{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 25px;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 10px;
}
#aboutus .update_year{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    #aboutus .r_body{
        padding: 40px 0 30px;
     }
     #aboutus .r_body .top_text{
         font-size: 16px;
         line-height: 35px;
         letter-spacing: 1px;
         font-weight: 500;
     }
     #aboutus .aboutus_title{
         font-size: 20px;
         letter-spacing: 2px;
         font-weight: 500;
     }
     #aboutus .update_year{
        font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 20px;
    }
}

/* アコーディオン */

.contents{
    max-width: 400px;
    padding: 0 40px;
    margin: 0 auto;
}
  
.accordion-single  {
    border-bottom: 2px solid #528080;
    margin-top: 10px;
}

.accordion-title {
    border-top: 2px solid #528080;
    padding: 30px 0;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    margin: 0;
    position: relative;
}

.accordion-title::after{
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 15px;
    height: 15px;
    border-top: solid 2px #528080;
    border-right: solid 2px #528080;
    transform: translateY(-50%) rotate(135deg);
}
.accordion-title.is-open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 45%;
}
.accordion-title .main{
    font-size: 37px;
    font-family: 'Oswald',sans-serif;
    color: #528080;
    font-weight: 500;
    letter-spacing: 3px;
}
.accordion-title .sub{
    font-size: 18px;
    padding-bottom: 10px;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    color: #000;
}

.accordion-content {
    display: none;
}

.accordion-content .inner {
    padding: 30px 0;
    border-top: 1px solid #999999;
    font-size: 18px;
    line-height: 46px;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    color: #000;
    letter-spacing: 2px;
}
.accordion-content .inner p {
    margin: 0;
}

.accordion-content .inner .imgbox{
    width: 100%;
    padding: 30px 0;
}
.accordion-content .inner .imgbox img{
    width: 100%;
}

.accordion-content.event .inner .imgbox{
    width: 100%;
    display: flex;
    padding: 30px 0;
}
.accordion-content.event .inner .imgbox img{
    width: 50%;
}
@media screen and (max-width: 768px) {
    .accordion-title{
        padding: 20px 0 ;
    }
    .accordion-title .main {
        font-size: 30px;
        font-family: 'Oswald',sans-serif;
        color: #528080;
        font-weight: 500;
        letter-spacing: 2px;
    }
    .accordion-title .sub {
        font-size: 16px;
        padding-bottom: 10px;
        font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
        color: #000;
    }
    .accordion-content .inner {
        padding: 20px 0;
        border-top: 1px solid #999999;
        font-size: 16px;
        line-height: 40px;
        letter-spacing: 1px;
    }
    .accordion-title::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        transition: all 0.2s ease-in-out;
        display: block;
        width: 10px;
        height: 10px;
        border-top: solid 2px #528080;
        border-right: solid 2px #528080;
        transform: translateY(-50%) rotate(135deg);
    }
    .accordion-content.event .inner .imgbox{
        width: 100%;
        display: block;
        padding: 20px 0;
    }
    .accordion-content.event .inner .imgbox img{
        width: 100%;
    }
}
@media screen and (max-width: 350px) {
    .accordion-title .main {
        font-size: 25px;
        font-family: 'Oswald',sans-serif;
        color: #528080;
        font-weight: 500;
        letter-spacing: 2px;
    }
    .accordion-title .sub {
        font-size: 15px;
        padding-bottom: 10px;
        font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
        color: #000;
    }
}

.accordion-container .accordion-title.is-open .accordion-content  {
    display: block;
    animation-name:fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
}
  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
.accordion-container.is-open .accordion-title::after  {
transform: translateY(-50%) rotate(315deg);
}
/* アコーディオン */

/* 数字で見るグローバルセンター　ここから */
#aboutus .Earnings{
    padding-top: 100px;
}
#aboutus .Earnings .detail{
    background-color: #c3c3c3;
    padding: 100px 0 200px;
}
@media screen and (max-width: 768px) {
    #aboutus .Earnings{
        padding-top: 50px;
    }
    #aboutus .Earnings .detail{
        background-color: #c3c3c3;
        padding: 50px 0 ;
    }
}

#aboutus .Earnings .graph_title{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 32px;
    padding: 10px 0;
    margin: 20px 0 ;
    text-align: center;
    letter-spacing: 2px;
    font-weight: bold;
}

#aboutus .Earnings .datebox{
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}
#aboutus .Earnings .datebox .inner{
    background-color: #fff;
    min-height: 330px;
    flex-basis: calc(50% - 25px);
    padding: 30px 0;
}
#aboutus .Earnings .datebox .inner.top{
    min-height: 330px;
    padding: 50px 0 30px;
}
#aboutus .Earnings .datebox .inner .percentbox{
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}
#aboutus .Earnings .datebox .inner .percentbox .percent.left{
    position: relative;
    color: #528080;
}
#aboutus .Earnings .datebox .inner .percentbox .percent.right{
    color: #7788b7;
}
#aboutus .Earnings .datebox .inner .percentbox .percent.left::after{
    position: absolute;
    content: ":";
    font-family: 'Noto Serif JP',sans-serif;
    font-size: 60px;
    bottom:10px;
    right: -25px;
    color: #000;
}
#aboutus .Earnings .datebox .inner .percentbox .percent .gender{
    font-size: 22px;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
}
#aboutus .Earnings .datebox .inner .percentbox .percent .num{
    font-family: 'Oswald',sans-serif;
    font-size: 60px;
    letter-spacing: 5px;
    width: 180px;
}
#aboutus .Earnings .datebox .text{
    margin: 0;
    text-align: center;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 16px;
    line-height: 30px;
}

#aboutus .Earnings .datebox .inner .numbox {
    padding-bottom: 20px;
    text-align: center;
    letter-spacing: 15px;
    color: #528080;
    font-weight: 500;
    font-size:  35px;
    font-family: 'Noto Sans CJK JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
}
#aboutus .Earnings .datebox .inner .numbox .num{
    font-family: 'Oswald',sans-serif;
    font-size: 60px;
    width: 180px;
}
#aboutus .Earnings .datebox .top .percentbox .percent.left::after{
    display: none;
}
#aboutus .Earnings .datebox .inner .percentbox .percent.right .numbox{
    color: #7788b7;
}
@media screen and (max-width: 1000px) {
    #aboutus .Earnings .datebox .inner .percentbox {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
    #aboutus .Earnings .datebox .inner .percentbox .percent .num {
        font-family: 'Oswald',sans-serif;
        font-size: 43px;
        letter-spacing: 2px;
        width: 140px;
    }
    #aboutus .Earnings .datebox .inner .percentbox .percent.left::after {
        position: absolute;
        content: ":";
        font-size: 40px;
        bottom: 10px;
        right: -10px;
    }
}
@media screen and (max-width: 768px) {
        
    #aboutus .Earnings .graph_title{
        font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
        font-size: 22px;
        padding: 5px 0;
        margin: 10px 0 ;
        text-align: center;
        letter-spacing: 2px;
        font-weight: bold;
    }

    #aboutus .Earnings .datebox{
        display: block;
    }
    #aboutus .Earnings .datebox .inner{
        background-color: #fff;
        min-height: 330px;
        padding: 30px 10px;
        margin-bottom: 30px;
    }
    #aboutus .Earnings .datebox .inner.top{
        min-height: 220px;
        padding: 40px 10px 30px;
        width: calc(100% - 20px);
    }
    #aboutus .Earnings .datebox .inner .percentbox{
        display: flex;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }
    #aboutus .Earnings .datebox .inner .percentbox .percent{
        width: calc(50% - 30px);
    }
    #aboutus .Earnings .datebox .inner .percentbox .percent.left::after{
        position: absolute;
        content: ":";
        font-size: 40px;
        bottom: 10px;
        right: -15px;
        color: #000;
    }
    #aboutus .Earnings .datebox .inner .percentbox .percent .gender{
        font-size: 20px;
    }
    #aboutus .Earnings .datebox .inner .percentbox .percent .num{
        font-size: 45px;
        letter-spacing: 3px;
        width: 100%
    }
    #aboutus .Earnings .datebox .text{
        margin: 0;
        text-align: center;
        font-size: 14px;
        line-height: 28px;
    }

    #aboutus .Earnings .datebox .inner .numbox {
        padding-bottom: 10px;
        text-align: center;
        letter-spacing: 5px;
        font-weight: 500;
        font-size:  25px;
    }
    #aboutus .Earnings .datebox .inner .percentbox .percent2{
        margin: 0;
        padding-top: 20px;
        width: 100px;
    }
    #aboutus .Earnings .datebox .inner .numbox .num{
        font-size: 45px;
        width: auto;
    }
}

@media screen and (max-width: 350px) {
    #aboutus .Earnings .datebox .inner .percentbox .percent .num{
        font-size: 40px;
        letter-spacing: 1px;
        width: 90%
    }
}


#aboutus .Earnings .from{
    background-color: #fff;
    margin-top: 40px;
    padding: 50px 0 70px;
    text-align: center;
}
@media screen and (max-width: 1200px) {
    #aboutus .Earnings .from{
        margin: 50px 50px 20px;
    }
}


#aboutus .Earnings .from .inner{
    max-width: 80%;
    margin: 0 auto;
    padding: 50px 0 30px;
}
#aboutus .Earnings .from .inner .map1{
    width: 100%;
    padding-bottom: 50px;
}
#aboutus .Earnings .from .inner .area_box.for-large{
    display: -webkit-flex; /* Safari */
    display: flex;
    gap: 80px;
    justify-content: center;
}
#aboutus .Earnings .from .inner .area_box.for-small{
    display: none;
}
#aboutus .Earnings .from .inner .area_box .area{
    width: 170px;
}
#aboutus .Earnings .from .inner .area_box .area .area_title{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    padding: 5px 0 ;
    color: #fff;
    letter-spacing: 0px;
}
@media screen and (max-width: 768px) {
    #aboutus .Earnings .from{
        padding: 30px 0px 0px;
        margin: 50px 20px 20px;
        text-align: center;
    }
    #aboutus .Earnings .from .inner{
        max-width: 100%;
        margin: 0 auto;
        padding: 50px 20px 30px;
    }
    #aboutus .Earnings .from .inner .map1{
        width: 100%;
        padding-bottom: 30px;
    }
    #aboutus .Earnings .from .inner .area_box.for-large{
        display: none; 
    }
    #aboutus .Earnings .from .inner .area_box.for-small{
        display: -webkit-flex; /* Safari */
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    #aboutus .Earnings .from .inner .area_box .area{
        width: calc(50% - 15px);
    }
    #aboutus .Earnings .from .inner .area_box .area .area_title{
        font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
        font-size: 16px;
        margin-bottom: 10px;
        padding: 5px 0 ;
        color: #fff;
        letter-spacing: 0px;
    }
}
#aboutus .Earnings .from .inner .area_box .kinki .area_title{
    background-color: #c98030;
}
#aboutus .Earnings .from .inner .area_box .kanto .area_title{
    background-color: #bf9a4c;
}
#aboutus .Earnings .from .inner .area_box .touhoku .area_title{
    background-color: #0070ad;
}
#aboutus .Earnings .from .inner .area_box .kyushu .area_title{
    background-color: #948088;
}
#aboutus .Earnings .from .inner .area_box .shikoku .area_title{
    background-color: #8380ad;
}
#aboutus .Earnings .from .inner .area_box .chugoku .area_title{
    background-color: #008eff;
}

#aboutus .Earnings .from .inner .area_box .area dd{
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
#aboutus .Earnings .from .inner .area_box .area dd .num{
    font-family: 'Oswald',sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    color: #528080;
}
#aboutus .Earnings .from .inner .area_box .area dd .small{
    font-family: 'Noto Sans CJK JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #528080;
}

.map_bottom{
    display: flex;
    align-items: flex-end;
    width: 670px;
    margin: 0 auto;
    padding-top: 50px;
}
#aboutus .Earnings .from .inner .map2{
    width: 40%;
    padding-bottom: 50px;
}
#aboutus .Earnings .from .inner .area_box2{
    display: -webkit-flex; /* Safari */
    display: flex;
    gap: 80px;
    justify-content: right;
    margin-left: -20px;
    padding-bottom: 50px;
}
#aboutus .Earnings .from .inner .area_box .Betonamu .area_title{
    background-color: #d0809d;
}
#aboutus .Earnings .from .inner .area_box .Chugoku .area_title{
    background-color: #709b44;
}
@media screen and (max-width: 768px) {
    #aboutus .Earnings .from .inner .area_box .area dd{
        font-size: 16px;
        margin-bottom: 10px;
    }
    #aboutus .Earnings .from .inner .area_box .area dd .num{
        font-size: 16px;
        letter-spacing: 3px;
    }
    #aboutus .Earnings .from .inner .area_box .area dd .small{
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .map_bottom{
        display: block;
        width: 100%;
        margin: 0 auto;
        padding-top: 50px;
        text-align: center;
    }
    #aboutus .Earnings .from .inner .map2{
        width: 70%;
        padding-bottom: 30px;
    }
    #aboutus .Earnings .from .inner .area_box2{
        display: -webkit-flex; /* Safari */
        display: flex;
        gap: 30px;
        justify-content: center;
        margin-left: 0px;
        padding-bottom: 0px;
    }
}
/* 数字で見るグローバルセンター　ここまで */


/* グラフ　ここから */
.apexcharts-canvas{
    margin: 0 auto;
}
#gender{
    max-width: 300px;
    margin: 0px auto 20px;
    position: relative;
}
#gender::after{
    position: absolute;
    content: "男性";
    color: #fff;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    top: 44%;
    left: 25%;
}
#gender::before{
    position: absolute;
    content: "女性";
    color: #fff;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    top: 44%;
    right: 25%;
    z-index: 1;
}

#rent{
    max-width: 300px;
    margin: 0px auto 20px;
    position: relative;
}
#rent::after{
    position: absolute;
    content: "男性";
    color: #fff;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    top: 43%;
    left: 25%;
}
#rent::before{
    position: absolute;
    content: "女性";
    color: #fff;
    font-family: 'Noto Serif JP', YakuHanJPs, 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', MyYuGothicM, Meiryo, sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    top: 43%;
    right: 25%;
    z-index: 1;
}
@media screen and (max-width: 768px) {

    #gender{
        max-width: 270px;
        margin: 0px auto 20px;
        position: relative;
    }
    #gender::after{
        content: "男性";
        font-size: 20px;
        letter-spacing: 2px;
        top: 43%;
        left: 25%;
    }
    #gender::before{
        content: "女性";
        font-size: 20px;
        letter-spacing: 2px;
        top: 43%;
        right: 25%;
        z-index: 1;
    }
    
    #rent{
        max-width: 270px;
        margin: 0px auto 20px;
        position: relative;
    }
    #rent::after{
        content: "男性";
        font-size: 20px;
        letter-spacing: 2px;
        top: 43%;
        left: 25%;
    }
    #rent::before{        
        content: "女性";
        font-size: 20px;
        letter-spacing: 2px;
        top: 43%;
        right: 25%;
    }
    
}

    
/* グラフ　ここまで */