@charset "UTF-8";



/*///////////////////////////////
	共通パーツ
///////////////////////////////*/

html{
    scroll-padding-top: 150px;
}

body {
    margin:0px;
	padding:0px;
	background-color: #fff;
	color:#000;
    font-family: "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
    /* 画像ファイルの指定 */
    background-image: url("image/back.jpg");
    /* 画像を常に天地左右の中央に配置 */
    background-position: center center;
    /* 画像をタイル状に繰り返し表示しない */
    background-repeat: no-repeat;
    /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
    background-attachment: fixed;
    /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
    background-size: cover;
}
@media (max-width: 750px) {
    body{
        font-size: 80%; 
    }    
    
}

.inner { 
    display:block; 
    margin:120px auto;
    max-width: 900px;
}
@media (max-width: 750px) {
    .inner{
        margin:80px 10px; 
    }    
}

img{
    width: 100%;
}

a{
    text-decoration: none;
    color: #000;
}

h2{
    text-align:center;
    color: #fff;
    background-color: #297E5C;
    padding: 8px 0;
    font-size:140%; 
    position: relative;
}
@media (max-width: 750px) {
    h2{
        font-size: 120%; 
    }    
}

h2 span{
    text-align:right;
    position: absolute;
    right: 5px;
    font-size:80%;
    font-weight: 600;
}
@media (max-width: 750px) {
    h2 span{
        font-size: 80%; 
    }    
}


h3{
    margin: auto;
    max-width: 450px;
}
@media (max-width: 750px) {
    h3{
        max-width: 300px;
    }    
}


p{
    font-size: 120%;
    font-weight: 600;
}
@media (max-width: 750px) {
    p{
        font-size: 90%; 
    }    
}

li {
  list-style-type: none;
}


.pc_vis{
    display:block;
}
@media (max-width: 750px) {
    .pc_vis{
        display: none;
    } 
    
}

.sp_vis{
    display: none;
}
@media (max-width: 750px) {
    .sp_vis{
        display: block;
    } 

}

.fontBold{
    font-weight: bold;
}

.wrapper{
    max-width: 415px;
    margin: auto;
}

.wsnw{
    white-space: nowrap;
}


/*///////////////////////////////
	ヘッダー
///////////////////////////////*/

header{
    position: relative;
}

.header_logo{
    width: 85%;
    margin:50px auto 20px;
}

.header_fixed{
    position: fixed;
    background: #000;
    max-width: 415px;
    height: 180px;
    z-index: 999;
}

.header_position{
    position: relative;
}

 /*** ナビゲーション ***/
.right_menu{
    display: flex;
}

nav{
    padding: 0;
}
    
.navIn{
    display: none;
}  

/* ハンバーガーボタンのデザイン */
.drawer__button{
    position: absolute;
    right: 5px;
    top: -50px;
}

.drawer__button,
.drawer__nav{
    display:block;
}
    
.drawer__button {
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 9999; /* メニューを開いている時もクリックできるよう設定 */
}

/* ハンバーガーボタン内の線 */
.drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.8rem;
    height: 1px;
    background-color: #fff;
    transform: translateX(-50%);
}

.drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
}

.drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.drawer__button > span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
}

.drawer__button .menu{
    font-size: 80%;
    background-color: transparent;
    transform: translate(-50%, calc(-50% + 1rem));
    transition: transform 0.3s ease;
    width: 4rem;
    text-align: center;
    color: #0086D1;
}

/* 展開時のデザイン */
.drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
    background: #000;
}

.drawer__button.active > span:nth-child(2) {
    opacity: 0;
}

.drawer__button.active > span:nth-child(3){
    transform: translate(-50%, -50%) rotate(45deg);
    background: #000;
}

/* メニューのデザイン */
.drawer__nav {
    position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.drawer__nav.active {
    opacity: 1;
    visibility: visible;
}

.drawer__nav__inner {
    position: relative;
    z-index: 99999;
    width: 50%;
    height: 100%;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 800px;
    /* 画像ファイルの指定 */
    background-image: url("image/back.jpg");
    /* 画像を常に天地左右の中央に配置 */
    background-position: center center;
    /* 画像をタイル状に繰り返し表示しない */
    background-repeat: no-repeat;
    /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
    background-attachment: fixed;
    /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
    background-size: cover;
}
@media (max-width: 750px) {
    .drawer__nav__inner{
        width: 100%;
    }   
}

.drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
}

.drawer__nav__menu {
    list-style: none;
    padding-left: 2em;
    padding-top: 150px;
}
@media (max-width: 750px) {
    .drawer__nav__menu{
        padding-top: 60px;
    }   
}

.drawer__nav__link {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 0.8rem 0.8rem;
    font-weight: 600;
    font-size: 140%;
}
    
.drawer__nav  .header_logo{
    margin: auto
}

.drawer__nav__item{
    padding-left: 20px;
    background-size: 4%;
}

.drawer__nav__item:hover{
    opacity: 0.3;
}

.drawer__nav__item span{
    font-size: 55%;
}

.item_title{
    font-size: 150%;
    margin-top:30px;
}

.pagetop{
    width: 15%;
    position: fixed;
    right: 0;
    bottom: 0;
    max-width: 80px;
}




/*///////////////////////////////
	メイン
///////////////////////////////*/

.top{
    padding-top: 20px;
    margin-bottom: 20px;
    width: 90%;
}

 /*** language ***/
.language{
    display: flex;
    justify-content: space-between;
    padding-top:195px;
    margin-left: 10px;
    margin-right: 10px;
}

.language div{
    background: #fff;
    width: 18%;
    padding: 10px 0;
    text-align: center;
    color: #000;
    border-radius: 5px;
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.3);
}

.language div a{
    display: block;
}

.method div a{
    display: block;
}


.method{
    display: flex;
    justify-content: space-between;
    padding-top:10px;
    margin-left: 10px;
    margin-right: 10px;
}

.method div{
    background: #fff;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    color: #000;
    border-radius: 5px;
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.3);
    margin: 10px 10px;
    height: 20px;
}

.language div:hover{
    color: #fff;
    background: #000;
}

.language div a:hover{
    color: #fff;
}

.method div a:hover{
    color: #fff;
}

.wrapper .target{
    background: #000;
}

.wrapper .target a{
    color: #fff;
}




/*----------------------------------------------------------------------*/
/*タブメニュー
/*----------------------------------------------------------------------*/

.prefectures{
    margin: 0 5px;
}

.prefectures_tab{
    margin:0 auto;
    display: flex;
    align-items: flex-end;
    height: 100px;
    padding-left: 0;
    box-sizing:border-box;
    width: 100%;
    
}
@media (max-width: 750px) {
    .prefectures_tab{
        height: 80px;
    }
}


.prefectures_tab li{
    padding-top:15px;
    padding-bottom:15px;
    float:left;
    font-size: 2.3rem;
    cursor:pointer;
    width: 100%;
    text-align: center;
    display: table;
    border: solid 2px #707070;
 }
@media (max-width: 750px) {
    .prefectures_tab li{
        height: 30px;
    }
}

.prefectures_tab p{
    line-height:1em;
    letter-spacing: 0;
    display: table-cell;
    vertical-align: middle;
    font-size: 80%;
}
@media (max-width: 750px) {
    .prefectures_tab p{
        margin: 0;
    }
}



.prefectures_tab p .corporation_select{
    display: none;
}
.prefectures_tab p .local_select{
    display: none;
}

.corporation span{
    font-size: 50%;
    display: block;
    font-weight: 600;
}
 .caution .caution_in{
    display: none;
}
@media (max-width: 750px) {
    .corporation span{
        line-height: 1.3em;
    }
    
    .caution .caution_in{
        font-size: 75%;
        line-height: 1.5em;
        display: inline-block;
        font-weight: 400;
    }
}

.corporation{
    
}

.local{
    
}

.prefectures_tab .corporation p{
    color: #D9261D;
}

.prefectures_tab .local p{
    color: #004098;
}

.prefectures_tab li:first-child{
     margin-left:0;
}
.prefectures_tab li.select{
    height: 32px; 
    border: solid 2px #D9261D;
    border-bottom: none;
}
@media (max-width: 750px) {
    .prefectures_tab li.select{
        height:32px;
    }
}

.prefectures_tab .select{
    height: 90px;  
}
.prefectures_tab .select .corporation_select{
    display: block;
    position: absolute;
    top:0;
    width: 9%;
    left: 20%;
}
@media (max-width: 750px) {
    .prefectures_tab .select .corporation_select{
        top: 18px;
        left: 23%;
    }
}
@media screen and (max-width: 575px) {
	.prefectures_tab .select .corporation_select{
        left: 21%;
        top: 25px;
    }
}
@media screen and (max-width: 450px) {
	.prefectures_tab .select .corporation_select{
         left: 20%;
        top: 30px;
    }
}

.prefectures_tab .select .local_select{
    display: block;
    position: absolute;
    top:0;
    width: 9%;
    right: 21%;
}
@media (max-width: 750px) {
    .prefectures_tab .select .local_select{
        top: 18px;
        right: 23%;
    }
}
@media screen and (max-width: 575px) {
	.prefectures_tab .select .local_select{
        right: 21%;
        top: 25px;
    }
}
@media screen and (max-width: 450px) {
	.prefectures_tab .select .local_select{
        right: 20%;
        top: 30px;
    }
}

.prefectures_list{
    margin-top: 0;
    padding-left: 0;
    border: solid 2px #000;
    border-top: none;
    padding-top: 20px;
}

.prefectures_list .menu{
    padding-top: 20px;
    padding-bottom:30px;
    margin: auto;
    padding-right: 5px;
    padding-left: 5px;
}
.corporation .corporation_write{
    max-width: 650px;
}

.local .local_write{
    max-width: 750px;
}

.prefectures_tab .corporation{
    border-right: none;
}

.prefectures_tab .local{
    border-left: none;
}


.prefectures_list li{
    padding: 10px 0px;
    display: block;
 }

.prefectures .hide {
    display:none;
}

.prefectures_list .caution{
    text-align: right;
}
@media screen and (max-width: 750px) {
	.prefectures_list .caution{
        text-align: left;
    }
}

.smallSize{
    font-size: 110%;
}

.prefectures_tab li {
  opacity: 0.6;
  transition: opacity 0.3s;
}

.prefectures_tab li.select {
  opacity: 1;
}



.prefectures_tab li:first-child {
  border-color: #D9261D;
}

.prefectures_tab li:nth-child(2) {
  border-color: #004098;
}

.prefectures_tab li.select:first-child {
  border-color: #D9261D;
  border-bottom: none;
}

.prefectures_tab li.bottom-red {
  border-bottom: 2px solid #004098 !important;
}

.prefectures_tab li.bottom-blue {
  border-bottom: 2px solid #D9261D !important;
}


.prefectures_tab li.select:nth-child(2) {
  border-color: #004098;
  border-bottom: none;
}

.prefectures_list.border-red {
  border-color: #D9261D !important;
}

.prefectures_list.border-blue {
  border-color: #004098 !important;
}

.prefectures_tab li.select {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.prefectures {
    margin: 0 5px;
    
}






@media screen and (max-width: 750px) {
	/*----------------------------------------------------------------------*/
	/*タブメニュー[sp]
	/*----------------------------------------------------------------------*/
	.prefectures_tab{
		min-width:300px;
		overflow:hidden;
        padding-left: 0;
	}
	.prefectures_tab li{
		padding:10px 20px;
		 float:left;
		 font-size: 1.6rem;
		 cursor:pointer;
	 }
	.prefectures_tab li.select{
        
	}
	.prefectures_list{

	}
	.prefectures_list li{
        padding: 0;
		 -webkit-transition: .3s;
		 transition: .3s;

	 }
	.prefectures .hide {
		display:none;
	}
    
    .prefectures_list .menu{
        margin: 0 5px;
        padding-bottom: 10px;
    }
    
    

}



 /*** 横スクメニュー ***/

.nav-horizontal {
    overflow: hidden;
    height: 3em; /* 可視領域の高さ */
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    line-height: 3em;
    margin-right: 5px;
    margin-left: 5px;
  
}
.nav-horizontal .mask {
    height: 5em; /* 横スクロールする理屈上の高さ */
    overflow-x: auto;
    
      
}
.nav-horizontal .list {
    display: flex;
    max-width: 100%;
}
.nav-horizontal .list div {
    display: table-cell;
    padding: 0 17px;
    font-weight: bold;
    font-size: 120%;
}

.menu div{
    padding-top: 45px;
    margin-bottom: 20px;
}

.nav-horizontal .list .smallSize{
        font-size: 100%;
 }


#stop{
    margin: 0 0 0 auto;
    width: 70%;
}


/* PC（768px以上）は普通に中央寄せ & max-width */
.first {
  display: none;
}

/* スマホ（768px以下）は全画面のスプラッシュ */
@media screen and (max-width: 768px) {
  html, body {
    margin: 0;
    height: 100%;
    overflow-x: hidden;
  }

  .first {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: none; /* max-widthをリセット */
    margin: 0;       /* marginもリセット */
  }

  .first img {
    display: block;
    height: 100%;
    width: auto;
  }
}


[id] {
  scroll-margin-top: 150px;
}












