@charset "UTF-8";
.gnavi_area{
    width: 100%;
    height: 75px;
    background-color: white;
}

.logo_area{
    width: 200px;
    margin-left: 10%;
    margin-top: 10px;
    margin-bottom: 10px;
    float: left;
}

.logo_area_indiv01{
    width: 70%;
    float: left;
    margin-right: 5%;
}

.logo_area_indiv02{
    width: 20%;
    float: left;
}

.link_area{
    float: right;
    width: 50%;
}

.link_pass_area{
    float: left;
    margin-left: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.gnavi_a_style{
    text-decoration: none;
    color: #003E8F;
}

.link_pass_area02{
    width: 20%;
    float: left;
    margin-right: -5%;
}



/*　ハンバーガーメニュー関連　*/

.header {
  display: none;
}


.logo {
  font-size: 24px;
}

/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}

/*　ハンバーガーメニュー関連終了　*/




.mainvisual_area_all{
    width: 100%;
    background-image: url(../img/mainvisual_back.png);
    background-size: 100% 100%;
    height: 75vh;
    margin-top: -20px;
    background-repeat: none;
}


.mv_sp_dis{
    display: none;
}


.mainvisual_left{
    float: left;
    margin-left: 5%;
}

.syokencode_area{
    margin-top: 50px;
}

.syokencode_pass{
    color: white;
    font-size: 120%;
}

.title_area{
    margin-top: 5vh;
}

.title_img_area{
    width: 50%;
    margin-left: -6%;
}

.main_kikan_area{
    margin-top:2vh;
    margin-bottom: 2vh;
}

.main_kikan_p{
    color: white;
    font-size: 125%;
}


.main_merit_area{
    width: 30%;
}

.main_application_area{
    width: 20%;
    margin-left: 10%;
    margin-top: 5vh;
}


.introduction_area_all{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vh;
    margin-bottom: 5vh;
}


.introduction_p_strong{
    margin-bottom: 3vh;
}

.introduction_p_strong02{
    margin-bottom: 3vh;
}

.introduction_p_strong_style{
    text-align: center;
    font-size: 150%;
    font-weight: bold;
    color: #00B050;
}

.introduction_p_strong02_style{
    text-align: center;
    font-size: 120%;
    font-weight: bold;
    color: #003E8F;
}

.introduction_p{
     margin-top: 5vh;
     margin-bottom: 5vh;
}

.introduction_p_style{
    text-align: center;
    font-size: 100%;
    color: #707070;
    line-height: 1.5em;
}



/* sp用の導入エリア */

.introduction_area_all_sp{
    display: none;
}


.introduction_p_strong{
    margin-bottom: 3vh;
}

.introduction_p_strong02{
    margin-bottom: 3vh;
}

.introduction_p_strong_style{
    text-align: center;
    font-size: 150%;
    font-weight: bold;
    color: #00B050;
}

.introduction_p_strong02_style{
    text-align: center;
    font-size: 120%;
    font-weight: bold;
    color: #003E8F;
}

.introduction_p{
     margin-top: 5vh;
     margin-bottom: 5vh;
}

.introduction_p_style{
    text-align: center;
    font-size: 100%;
    color: #707070;
    line-height: 1.5em;
}
/* sp用の導入エリア */




/*aboutエリア*/

.about_all{
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
}

.title_area{
    width: 100%;
}

.title_style{
    color: #003E8F;
    text-align: center;
    font-weight: bold;
    font-size: 48px;
    width: 100%
}

/* タブレット用（1023px以下） aboutエリア*/
@media screen and (max-width: 1023px) {
    .about_all{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 100px;
        background-color:brown;
    }

    .title_area{
        width: 100%;
    }

    .title_style{
        color: #003E8F;
        text-align: center;
        font-weight: bold;
        font-size: 48px;
        width: 100%;
    }
    
}


/* スマホ用（767px以上）aboutエリア */
@media screen and (max-width: 767px) {
      .about_all{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 100px;
        background-color: aqua;
    }

    .title_area{
        width: 100%;
    }

    .title_style{
        color: #003E8F;
        text-align: center;
        font-weight: bold;
        font-size: 48px;
        width: 100%;
    }

}








.graph_area_all{
    margin-top: 5vh;
    margin-bottom: 5vh;
}


.pc_displaynone{
    display: none;
}

.graph_area01{
    width: 100%;
    height: 90vh;
    background-image: url(../img/graph_pic01.png);
    background-repeat: no-repeat;
    background-size: 70% 70%;
}


.graph_h3_area_atyle{
    text-align: center;
    color: white;
    font-size: 120%;
    font-weight: bold;
    padding-top: 5vh;
    margin-bottom: 5vh;
}

.graph_float_area{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
}

.graph_content_left_area{
    width: 45%;
    float: left;
    margin-right: 5%;
    margin-top: -20vh;
}

.graph_content_right_area{
    width: 45%;
    float: left;
    margin-right: 5%;
    margin-top: -12vh;
}

.graph_content_storong{
    width: 100%;
    margin-bottom: 5vh;
}

.graph_content_storong_style{
    color: white;
    font-size: 550%;
    margin-top: 10vh;
    margin-bottom: 0px;
    line-height: 1.0em;
    padding-left: 10%;
}

.top-margin-15{
    padding-top: 15vh;
}

.top_margin-15{
    padding-top: -25vh;
}


.graph_content_kigou_style{
    color: white;
    font-size: 50%;
}

.graph_content_p{
    width: 100%;
}

.graph_content_p_style{
    color: white;
    font-size: 80%;
    margin-top: 10vh;
    margin-bottom: 0px;
    line-height: 1.5em;
    padding-left: 10%;
}

.graph_content_annotation{
    width: 100%;
}

.graph_content_img{
    margin-top: 0vh;
}

.graph_content_annotation_style{
    color: white;
    font-size: 50%;
    margin-top: 2vh;
    margin-bottom: 0px;
    line-height: 1.5em;
    padding-left: 10%;
}

.graph_area02{
    width: 100%;
    height: 90vh;
    background-image: url(../img/graph_pic02.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 70% 70%;
    
}

.graph_area03{
    width: 100%;
    height: 90vh;
    background-image: url(../img/graph_pic03.png);
    background-repeat: no-repeat;
    background-size: 70% 70%;
}


.button_area{
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vh;
    margin-bottom: 30vh;
}

.margin-top_-30{
    margin-top: -20vh;
}


.maincontent_area{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}


.maincontent_title_area{
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vh;
    border-bottom: 5px solid #FEB200;
}

.maincontent_title_strong{
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
}



.performer_content_in_area{
    width: 100%;
    margin-bottom: 5vh;
}

.performar_float_left{
    float: left;
    width: 30%;
}

.performar_float_right{
    float: left;
    width: 60%;
    margin-left: 5%;
}

.performer_head_strong{
    font-size: 150%;
    color: #003E8F;
}

.gathering_area_all{
    width: 100%;
    height: 100vh;
    background-image: url(../img/gathering_pic.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 60% 60%;
}

.gathering_pic_raea{
    display: none;
}


.gathering_float_right{
    width: 50%;
    margin-left: auto;
    margin-right: 1%;
    padding-top: 0vh;
}

.gathering_head_area{
    width: 100%;
    border-bottom: 5px solid #FEB200;
    margin-bottom: 0px;
}

.gathering_head_strong{
    font-size: 150%;
    font-weight: bold;
    color: #FEB200;
    margin-bottom: 0px;
}

.gathering_head_mini{
    font-size: 130%;
    color: #707070;
}

.gathering_content_p{
    font-size: 100%;
}

.top-margin-30{
    margin-top: -30vh;
}

.overview_title_area{
    background-color: #003E8F;
    height: 25vh;
}

.overview_title_strong{
    text-align: center;
    padding-top: 5vh;
    font-size: 300%;
    color: white;
}

.bccolor{
    width: 100%;
    background-color: #F3F3F3;
    padding-top: 10vh;
}


/*フレックス*/

.overview_area_all{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}


.overview_cell_area{
    width: 47%;
    margin-right: 3%;
    height: 100px;
}

.overview_head_area{
    float: left;
    width: 50%;
    background-color: #003E8F;
    padding: 10px 0;
}

.overview_head{
    color: white;
    font-size: medium;
    text-align: center;
}

.padding-topbottom{
    padding-top: 10px;
    padding-bottom: 10px;
}

.overview_content_area{
    float: left;
    width: 50%;
   background-color: white;
}

.overview_content{
    padding:20px 10px;
    color: #707070;
    font-size: medium;
    text-align: center;
}

.font-size-small{
    font-size: 12px;
}


.overview_time_area_all{
    width: 47%;
    margin-right: 3%;
    float: left;
}

.overview_time_cell_area{
    width: 100%;
    padding:26px 0;;
}

.area_blue_add{
    background-color: #003E8F;

}

    
.overview_blue_100{
    color: white;
    font-size: medium;
    text-align: center;
    
}

.overview_white_100{
    width: 100%;
    background-color: white;
    padding:20px 0;
    color: #003E8F;
    font-size: medium;
    text-align: center;
}

.overview_white_margin{
    margin-top: -19px;
}

.overview_time_head{
    width: 30%;
    float: left;
    background-color: #5690DC;
    padding:22px 0;
}


.overview_time_head02{
    width: 30%;
    float: left;
    background-color: #5690DC;
    padding:34px 0;
}

.overview_time_head_in{
    color: #003E8F;
    font-size: medium;
    text-align: center;
}



.overview_content_in{
    color: #707070;
    font-size: medium;
    padding:10px 0 10px 10px;
}

.overview_content_in_area{
    width: 70%;
    background-color: white;
    float: left;
}

.map_area{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.margin-bottom_add{
    margin-bottom: 35px;
}

.right_2cul{
    width: 47%;
    margin-right: 3%;
    float: left;
}

.overview_destination_area_all{
    width: 100%;
    margin-bottom: 20px;
}

.overview_destination_cell_area{
    width: 100%;
    padding: 20px 0;
    margin-bottom: 20px;
}

.overview_destination_cell_area_02{
    width: 100%;
    padding-bottom: 10px;
    background-color: white;
    margin-top: -20px;
}





.padding-100{
    padding-bottom: 100px;
}

.voice_display{
    display: none;
}


.sanka_graph_area_all{
    width: 100%;
}

.sanka_graph_piece{
    width: 30%;
    margin-right: 3%;
    float: left;
}

.accordion_Q_area{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
}

.accordion_A_area{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
}

summary {
  display: block;
  list-style: none;
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
  display:none;
}


.margin-top-10{
    margin-top: -10px;
}


.application_form{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}


.footer_area{
    width: 100%;
    padding: 50px 0px;
    background-color: #003E8F;
    margin-top: 100px;
}

.footer_logo_area{
    width: 15%;
    margin-left: auto;
    margin-right: auto;
}