﻿@charset "utf-8";


/*---------------------------------------------
	▼共通
---------------------------------------------*/
html{
	font-size:16px;
}
body{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino KaKu Gothic Pro", "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, sans-serif;
	background-color: #f2f3e9;
}

body,div,p,h1,h2,h3,h4,ul,ol{
	margin:0;
	padding:0;
}

span.nowrap{/*文字列の途中で折り返さない*/
	white-space: nowrap;
	font-size:initial;
}

p.indent{/*2行目以降を1文字下げる*/
	padding-left:1em;
	text-indent:-1em;
}


/*---------------------------------------------
	▼ヘッダー
---------------------------------------------*/
header{
	background-color:#fff;
}

.header-inner{
	max-width:1000px;
	margin:0 auto;
	padding:20px 0 10px 10px;
	background-color:#fff;
	display:flex;
	justify-content:space-between;/*　imgの均等配置　*/
	align-items:center;/*　imgの中央ぞろえ　*/
}

.header-inner-bottom{
	justify-content: right;/*　imgの右寄せ　*/
	padding-top: 0;
}

.daily_logo {
    margin-right: 50px;
}

img.dsonline,img.ds_paper {
	width:200px;
}

img.sns_link{
	width:245px;
}


.header_PC .sns_link{
	image-rendering: -webkit-optimize-contrast;/*画像がぼやけて表示されるのを改善*/
}

/*///////　PC版の際は非表示　///////*/
@media screen and (min-width:1025px){
.header_SP{
	display:none;
}

.nav_SP{
	display:none;
}
}

/*---------------------------------------------
	▼ナビ
---------------------------------------------*/
nav{
	background-color:#fff;
}

.nav-inner{
	max-width:1000px;
	margin:0 auto;
	padding:33px 0;
}

.gnav{
	display:flex;
	height:2rem;
	margin:0 auto;
}

.gnav > li{/*　親階層のみ幅を20％にする　*/
	max-width:20%;
}

/*///////　すべてのリスト・リンク共通　///////*/
.gnav li{
	list-style:none;
	position:relative;
	width:200px;
}

.gnav li a{
	color:#000;
	display:flex;
	height:4rem;
	text-align:center;
	font-weight:bold;
	text-decoration:none;
	align-items: center;
	justify-content: center;
}

.gnav li a:hover{
	background:#ebb143;
}

.gnav li a:last-child:hover{
	color:#fff;/*　バックナンバーのみ子階層がないので親階層を白字にする　*/
	background:#df813a;
}



/*///////　子階層以降共通　///////*/
.gnav li li{
	height:0;
	overflow:hidden;
	transition:.5s;/*　0.5秒アニメーション　*/
	background:#ebb143;
}

.gnav li li a{
	border-top:solid #eee 1px;
	color:#fff;/*　子階層を白字にする　*/
}

.gnav li li a:hover{
	background:#df813a;
}

.gnav li:hover > ul >li{
	height:4rem;
	overflow:visible;
}

/*///////　子階層にホバー時の親階層　///////*/
.company:hover{
	background:#ebb143;
	height:4rem;
}
.recruit:hover{
	background:#ebb143;
	height:4rem;
}
.event:hover{
	background:#ebb143;
	height:4rem;
}
.kodoku:hover{
	background:#ebb143;
	height:4rem;
}

/*---------------------------------------------
	▼パンくずリスト
---------------------------------------------*/
.breadcrumb{
	max-width:1000px;
	margin:0 auto;
}

.breadcrumb ol{
	list-style-type:none;
	margin:20px 0;
	margin-left:20px;
}

.breadcrumb li{
	display:inline;
	color:#645952;
}

.breadcrumb li::after{
	content:">";
}

.breadcrumb li:last-child::after{
	content:none;
}

.breadcrumb li a{
	text-decoration:none;
	color:#645952;
}

/*---------------------------------------------
	▼見出し：購読申し込み/バックナンバー申し込み
---------------------------------------------*/
.title{
	background-size: auto auto;
	background-color: rgba(255, 247, 210, 1);
	background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, rgba(255, 234, 114, 1) 4px, rgba(255, 234, 114, 1) 9px );	
	padding:20px;
}

.title h1{
	font-size:2rem;
	max-width:1000px;
	margin:0 auto;
	padding-left:20px;
	text-indent:0;/*　text.cssの影響をうけるためリセット　*/
}

/*---------------------------------------------
	▼各種お申し込みフォーム
---------------------------------------------*/
.form{
	max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

.form h2{ 
	color:#fff;
	background-color:#4458ac;
	padding:20px;
	box-sizing:border-box;
	font-size:1.4rem;
}
p.lead{
	margin:40px 20px;
	line-height:2;
}


.form div, label {
    font-size: 18px;
}

form{
	padding:0 20px;
}

.form-box{
	display:flex;
	border-bottom:1px solid #b0b1a9;
}

.form-box-left{
	width: 35%;
    min-width: 100px;
	text-align:left;
	font-weight:bold;
    padding: 10px 0px;
}

.form-box-right {
    width: 65%;
    padding: 10px 0px;
}


/*///////　カレンダー　///////*/
input#calender-field{
    margin-bottom: 15px;
	width:200px;
	text-align: center;
	margin-right:10px;
}


/*///////　※注意書き　///////*/
p.note{
	line-height:1.6;
	font-size:0.9em;
	margin-top:5px;
}

/*///////　必須表示　///////*/
.required{
	color:#fff;
	font-size:0.8rem;
	background-color:#f68436;
	padding:2px;
	margin-left:15px;
	white-space: nowrap;
}

/*///////　ラジオボタン、チェックボックス　///////*/
.form li{
	display:inline;
	margin-right:1em;
}



/*///////　入力枠　///////*/
input[type="text"],input[type="tel"],input[type="email"],select{
	background-color:#ffffd3;
	border:solid 1px #999;
	border-radius:5px;
	font-size:100%;
	height:2.4rem;
	padding:0 10px;
	box-sizing: border-box;	
}

textarea{
	background-color:#ffffd3;
	border:solid 1px #999;
	border-radius:5px;
	font-size:100%;
	height:7.4rem;
	padding:0 10px;
	box-sizing: border-box;	
}

	
select#present{/*プレゼント*/
	width:100%;
	max-width:330px;
}

input#age-field {/*年齢*/
    width: 70px;
	text-align: center;
}

input#postal-code{/*郵便番号*/
	width:100px;
	text-align: center;
}

input#pref01 {/*都道府県*/
	width:100px;
}
input#addr01 {/*市郡町村*/
    max-width: 600px;
    width: 95%;
}


input#addr02 {/*番地・マンション名・部屋番号*/
    max-width: 600px;
    width: 95%;
}

input#email-field {/*メールアドレス*/
    max-width: 600px;
    width:95%
}

input#newspaper-field {/*現在ご購読の新聞名*/
    max-width: 600px;
    width:95%;
}

textarea {/*番地・マンション名・部屋番号*/
    max-width: 600px;
    width: 95%;
}


/*///////　購読理由欄　///////*/
li.reazon{
	white-space: nowrap;/*　改行させないCSS　*/
}


.reazon label{
	line-height:1.4rem;
}

p.reazon-note{
	margin-top:10px;
}



/*///////　プレゼント選択欄：非表示　///////*/
.none{
  display: none;
}

/*///////　「申し込み確認画面へ」ボタン　///////*/
input:focus{/*　クリック時の枠線を消す*/
	outline:0;
}

input[type="submit"]{
	width:300px;
	max-width: 90%;
	font-size:1.4rem;
	margin:50px 0;
	padding-top: 15px;
	padding-bottom: 15px;
	border:none;
	border-radius:10px;
	color:#fff;
	background: -webkit-linear-gradient(-180deg, rgb(57, 131, 198) 0%,rgb(57, 131, 198) 50%,rgb(35, 118, 200)50%, rgb(35, 118, 200) 100%);
	background: linear-gradient(-180deg, rgb(57, 131, 198) 0%,rgb(57, 131, 198) 50%, rgb(35, 118, 200) 50%,rgb(35, 118, 200) 100%);
}

input[type="submit"]:hover{/*　ホバー時透過　*/
	opacity: 0.8 ;
}


button[name="back"]{
	width:300px;
	max-width: 90%;
	font-size:1.4rem;
	/*margin-top:10px;*/
	padding-top: 15px;
	padding-bottom: 15px;
	border:none;
	border-radius:10px;
	color:#fff;
	background: -webkit-linear-gradient(-180deg, rgb(57, 131, 198) 0%,rgb(57, 131, 198) 50%,rgb(35, 118, 200)50%, rgb(35, 118, 200) 100%);
	background: linear-gradient(-180deg, rgb(57, 131, 198) 0%,rgb(57, 131, 198) 50%, rgb(35, 118, 200) 50%,rgb(35, 118, 200) 100%);
}

button[name="back"]:hover{/*　ホバー時透過　*/
	opacity: 0.8 ;
}

.button{
    width: 100%;
	text-align:center;
	border-bottom:solid #fff;
}


/*---------------------------------------------
	▼お問い合わせ（kodoku.shtml / yubin.shtml）
---------------------------------------------*/
.contact{
	height:200px;
	margin:0 auto;
	text-align:center;	
	padding:60px 0 40px 0;
	background-color:#434a64;
}

.contact h3{
	font-size:1.6rem;
	display:inline;
	color:#fff;

}
.contact h4{
	font-size:2.5rem;
	color:#3b55aa;
	display:block;
	max-width:380px;
	margin:0 auto;
	margin-top:20px;
	padding:30px 0;
	background-color   : #f6f6ef;
}

.contact span{
	font-size:1.4rem;
}


/*---------------------------------------------
	▼フッター
---------------------------------------------*/
footer{
	color:#fff;
	background:#434a64;
}

.footer-inner{
	text-align:center;
	padding: 20px 0;
}

/*---------------------------------------------
	▼kodoku.shtml プレゼントエリア
---------------------------------------------*/
.present_campaign{
	max-width: 1000px;
    margin: auto;
    background: #ffffb3;
    text-align: center;
    padding: 1.5rem;
	box-sizing: border-box;
}

img.present_campaign_img {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: block;
}
.present_course{
	display:flex;
	align-items: start;
	margin-bottom:50px;
}

.present_course img{
	width:50%;
	height:100%;
	object-fit: contain;
}

.present_precautions_area {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
}

.present_precautions_area h3{
	font-weight:bold;
	color:#ea3535;
	margin-bottom: 10px;
}

.precautions{
	display: flex;
}

.precautions_left{
	flex:1;
	text-align: left;
	padding-right: 10px;
	border-right: solid #e8d33a 2px;
}

.precautions_right{
	flex:1;
	text-align: left;
	padding-left: 10px;
}


/*---------------------------------------------
	▼ 購読料(kodoku.shtml/ yubin.shtml) / 販売価格(kounyu.shtml) 
---------------------------------------------*/
.fee_area{
	max-width:800px;
	margin:0 auto 70px;
}

.fee_area h2{
	margin:50px auto;
	padding:20px;
	text-align:center;
	width:250px;
	border-top:solid 2px;
	border-bottom:solid 2px;
	font-size:1.2rem;
}

/*///////　販売価格　///////*/

.fee_wrap{
	display: flex;
	width:95%;
	max-width:800px;
	margin:auto;
}
table.table_left {
    width: 70%;
	height:435px;
}

table.table_right {
    width: 30%;
	height:435px;
}

table.table_left th {
    height: 45px;
}

table.table_right th {
    height: 45px;
}



.fee_wrap table {
border:1px #000 solid;
border-collapse:collapse;
text-align:center;
background:#fff;

}

.fee_wrap th,.fee_wrap td{
padding:0.3rem;
border:solid 1px #000;
font-size:14px;
}

.fee_wrap th{
    background:#000;
    color:#fff;
}

.fee_area .nowrap{
	font-size: 14px;
}
	
.fee_area p{/*バックナンバー申込*/
    margin: 10px 25px;
    text-align: right;
}
/*///////　購読料　//////*/

.fee-inner p {
display: block;
    width: 250px;
    background: #ffef68;
    border-radius: 10px;
    padding: 30px;
	margin: auto;
    font-size: 2.5rem;
    font-weight: bold;
    }

.fee-inner p span.yen{
	font-size:1.5rem;
}

.fee-inner p span.tax{
	font-size:1rem;
}



/*---------------------------------------------
	▼配達地域一覧（kodoku.shtml / yubin.shtml）
---------------------------------------------*/
.area{
	max-width:800px;
	margin:0 auto;
	margin-bottom:70px;
	padding:20px 0;
	box-sizing: border-box;
	background-color:#dcd9cd;
	border-radius:10px;
}

.area h2{
	margin:30px auto;
	padding:20px;
	text-align:center;
	width:200px;
	border-top:solid 2px;
	border-bottom:solid 2px;
	font-size:1.2rem;
}

.area table{
	margin:0 60px;
}

.area th{
	padding:20px 60px 20px 0;
	min-width: 130px;
	text-align:left;
}



.area p{
	text-align:center;/*　中央ぞろえ　*/
	line-height:2rem;
	width:95%;
	margin:20px auto;
	padding:20px 10px;
	background:#fff;
	border-radius:7px;
	max-width: 500px;
	box-sizing: border-box;
}

.area a{
	color:#0d5cec;
}

.area a:hover{
	text-decoration: none;	
}

.area-box-left {
    font-size: 16px;
    font-weight: bold;
	width: 25%;
    padding: 10px 20px;
}

.area-box-right {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.4rem;
}

/*---------------------------------------------
	▼kounyu.shtml 
---------------------------------------------*/

/*///////　お支払い方法　///////*/
.payment h2{
	margin:50px auto 30px;
	padding:20px;
	text-align:center;
	width:200px;
	border-top:solid 2px;
	border-bottom:solid 2px;
	font-size:1.2rem;
}

/*払込票画像*/	
.payment img{	
	max-width:100%;
}

.example {
    background: #dde0e1;
    max-width: 800px;
    margin: auto;
    text-align: center;
    margin-bottom: 100px;
    padding: 30px;
    box-sizing: border-box;
}

.example h3 {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/*///////　申込フォーム　///////*/
/*購読希望新聞*/
.select_area{
	margin-top:10px;
}
/*掲載日欄*/
select#copies {
    margin:10px 0;
}


/*---------------------------------------------
	▼back_number.shtml
---------------------------------------------*/
.backnumber_note{
	
	max-width: 1000px;
	margin: auto;
	background: #fff;
	padding: 50px 30px;
	box-sizing: border-box;
	line-height: 2;
	margin-bottom: 40px;
}

.backnumber_note p{
	margin-bottom:10px;	
}
	
.backnumber_area{
	display:flex;
	max-width: 1000px;
	margin: auto;
	margin-bottom: 150px;
}

.backnumber_area p.note{
	margin-bottom:10px;
}

.backnumber_area h2{
	text-align: center;
	font-size: 1.6rem;
	line-height: 2;
	color: #fff;
}


.kansai_hiroshima_ban{
	flex:1;
	background: #bcdfe8;
}

.kansai_hiroshima_ban h2{
	background: #556799;
}


.tokyo_ban{
	flex:1;
	background: #ffd6d6;
	margin-left:20px;
}

.tokyo_ban h2{
	background: #d76a6a;
}

.application{
	padding: 30px;
}

.application h3{
	font-size: 1rem;
	font-weight: bold;
	margin-top: 40px;
	margin-bottom: 10px;
	padding-bottom:5px;
	border-bottom: solid 1px;
}

/*バックナンバー申込みへ　ボタン*/

.to_form {
	width:80%;
    max-width: 500px;
    text-align: center;
    line-height: 5;
    background: #556799;
    font-weight: bold;
    border-bottom: solid 7px #3f3965;
    margin: 50px auto;
	border-radius:5px;
	padding:10px 0;
}

.to_form p{
    color: #ffff00;
	line-height: 2rem;
}


.to_form:hover{
	opacity:0.5;	
}
.to_form a{
	text-decoration: none;
}

.to_form a:hover{
	text-decoration: none;
}

/*///////　バックナンバー問い合わせ先　///////*/

.backnumber_contact {
	margin: auto;
	padding: 40px 0;
	background-color: #434a64;
}

.address_wrapper {
    display: flex;
	justify-content: space-between;
    max-width: 1100px;
    margin: auto;

}

.backnumber_contact h3{
	padding:5px;
	text-align:center;
	font-size:1.6rem;
	line-height: 2rem;
	color: #fff;
}

.backnumber_contact h4{
	font-size: 1.2rem;
	line-height: 2rem;
	border-bottom: solid 2px;
	max-width: 320px;
}

.backnumber_contact span{
	font-size:1.6rem;
}
.address {
    max-width: 320px;
    margin: 30px 5px 0;
    padding: 15px;
    background: #f6f6ef;
    width: 30%;
}
.address p{
	line-height:1.6;
	margin-top:10px;
	padding-left:1em;
	text-indent:-1em;
}



/*---------------------------------------------
	▼yubin.shtml
---------------------------------------------*/
.yubin_note{
	
	max-width: 1000px;
	margin: auto;
	background: #fff;
	box-sizing: border-box;
	line-height: 2;
	margin-bottom: 40px;
}

.yubin_note p{
	margin-bottom:10px;	
}

#yubin li{/*購入希望新聞,購読期間*/
	white-space:nowrap;
}





/*---------------------------------------------
	▼タブレット版　
---------------------------------------------*/

@media screen and (max-width:1024px){
	
/*///////　タブレット版・SP版の際は非表示　///////*/
.header_PC{
	display:none;
}
.nav_PC{
	display:none;
}
.breadcrumb{
	display:none;
}

/*///////　ヘッダー　///////*/
.header-inner{	
	padding: 0 0 0 10px;
}
	
/*　ロゴの大きさ　*/
.header_SP img{
	width:70%;
}

/*///////　ハンバーガーメニュー　///////*/
/*　3本線の親要素　*/
.nav_toggle {
	display: block;
	position: relative;
	width: 2.5rem;
	height: 2rem;
	margin:35px;
}
/*　3本線の本体となる部分　*/
.nav_toggle i {
	display: block;
	width: 100%;
	height: 5px;
	background-color: #333;
	position: absolute;
	transition: transform .5s, opacity .5s;/*　アニメーション　*/
}

/*　3本線の一番上　*/
.nav_toggle i:nth-child(1) {
	top: 0;
}

/*　3本線の真ん中　*/
.nav_toggle i:nth-child(2) {
	top: 0;
	bottom: 0;
	margin: auto;
}
/*　3本線の一番下　*/
.nav_toggle i:nth-child(3) {
	bottom: 0;
}

/*///////　ハンバーガーメニュー　ボタンクリック後　///////*/
.nav_toggle.show i:nth-child(1) {
	transform: translateY(15px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
	opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
	transform: translateY(-12px) rotate(45deg);
}

/*///////　メニューリストのCSS【クリック前】　///////*/
.nav_SP {
	position: fixed;
	top: 6.3rem;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s, visibility .5s;
}
/*///////　メニューリストのCSS【クリック後】　///////*/
.nav_SP.show {
	opacity: 1;
	visibility: visible;
	background:#545454;
	overflow-y: scroll;/*　背景固定時メニューはスクロールするため　*/
}

.nav_SP.show ul{
	list-style-type:none;
}
.nav_SP.show ul a{
	color:#fff;
	text-decoration:none;
	font-size:1.5rem;
	font-weight:bold;
	border-bottom:solid 2px #fff;
}

.nav_SP.show .nav_menu_li{
	padding:0 0 30px 0;
}


.nav_SP.show .nav_menu_li a{
	display:block;
	padding:20px 0;
}

.nav_SP.show .nav_menu_li li a{
	text-indent:1.5rem;
	border-bottom:solid 1px #fff;
	font-size:1.1rem;
}
	
.nav-inner{
	padding:0;
}	
	
/*///////　リストマークの挿入　///////*/
.nav_SP.show .nav_menu_li li a::before{/*　子階層のすべて　*/
	content:"";
	display: inline-block;
	background:url(../img/listmark.png) no-repeat;
	width:15px;
	height:15px;
	background-size:contain;
}
	
.nav_SP.show .nav_menu_li:last-child a::before{/*　親階層 ：バックナンバー申込　*/
	content:"";
	display: inline-block;
	background:url(../img/listmark.png) no-repeat;
	width:20px;
	height:20px;
	background-size:contain;
}
	
/*///////　バナー画像　///////*/
	
ul.link_bn {
    display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	align-items: center;
}	
ul.link_bn li{
    width:24%;
}	
	
/*　バナー画像　*/
img.sns_link {
    width: 100%;
	
}	
.nav_SP.show img{
	display:block;
	margin:25px auto;
}
	
img.dsonline,img.ds_paper {
    width: 100%;
}	
	
/*///////　背景をスクロールせず固定するCSS　///////*/
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}	
	
	
/*///////　back_number.shtml / kounyu.shtml　///////*/
/*問い合わせ先*/
.address_wrapper {
    flex-flow: column;
}
	
.address {
    width: 90%;
    margin: 10px auto;
    max-width: 400px;
}

}/*768pxここまで*/


/*---------------------------------------------
	▼SP版　共通
---------------------------------------------*/

@media screen and (max-width:480px){


/*///////　バナー画像　///////*/
	
ul.link_bn {
	flex-flow: column;
}	
	
ul.link_bn li {
    width: 100%;
}	
	
.nav_SP.show img {
    margin: 20px auto;
}	


	
.nav_SP.show .sns_link{
	width:80%;
}	
img.dsonline,img.ds_paper {
    width: 80%;
}	
	
	
/*///////　購読申し込み　///////*/
.title h1{
	padding:0;
	font-size:1.5rem;
}

/*///////　お申し込みフォーム　///////*/
.form h2{
	text-align:center;
}

.form table{
	border-top:1px solid #b0b1a9;
}

.form-box{
	display: inherit;
}
#kounyu .form-box:first-child{
	border-top:1px solid #b0b1a9;
}	
#kodoku .form-box:first-child{
	border-top:1px solid #b0b1a9;
}	
.form-box-left{
	max-width: 300px;
    width: 100%;
	padding:10px 0 0 0;}	
	
.form-box-right {
    width: 100%;
}
/*購読開始日*/	
input#datepicker {
    width: 80%;
}

	
/*///////　お問合せ　///////*/
.contact h3{
	font-size:1.3rem;
}

.contact h4{
	width:90%;
	font-size: 2rem;
}
	
/*///////　フッター　///////*/
.footer-inner{
	font-size:0.75rem;
}	

/*---------------------------------------------
	▼【SP】kodoku.shtml プレゼントエリア
---------------------------------------------*/
.present_course{
	flex-flow: column;
}

.present_campaign img	{
	width:100%;
}
	
.course_3month{
	margin-bottom:30px;
}	

.precautions{
	flex-flow:column;
}
	
	
.precautions_left{
	padding-right: 0;
	border-right: none;
}

.precautions_right{
	padding-left: 0;
}

p.note{
	margin: 10px 0;
}	
	


/*---------------------------------------------
	▼ 【SP】購読料(kodoku.shtml/ yubin.shtml) / 販売価格(kounyu.shtml) 
---------------------------------------------*/
.fee-inner{
	flex-flow: column;
}

.fee_wrap{
	display: block;
}
table.table_left {
    width: 100%;
}

table.table_right {
    width: 100%;
	height:auto;
}
	
.fee_area .fee_wrap td{
	display:table-cell;
	height: 45px;
}

/*---------------------------------------------
	▼【SP】配達地域一覧（kodoku.shtml / yubin.shtml）
---------------------------------------------*/

.area{
	border-radius: initial;
	margin-bottom:0;
}
	
.area td{
	display: block;
	padding-top:0;
}

.area p{
	font-size:0.9rem;
}

.area table{
	margin: 0 10px;
}
	
	
.area-box-left {
	padding-bottom:10px;
}
	
.area-box-right{
	padding:30px 20px;
}	

/*---------------------------------------------
	▼【SP】kounyu.shtml 
---------------------------------------------*/
/*お支払方法*/	
.example {
    padding: 10px;
    margin-bottom: 50px;
}
	
/*掲載日欄*/
select#copies {
    margin: 5px 0 20px 0;
}
	


/*---------------------------------------------
	▼【SP】back_number.shtml
---------------------------------------------*/
.backnumber_note{	
	margin-bottom:0;
	padding: 30px 10px;
}
	
.backnumber_area{
	flex-flow: column;
	margin-bottom:0;
}

.application{
	padding: 30px 15px;
}	
	
	
.to_form {
	width:90%;
}
	
.tokyo_ban{
	margin-left:0;
}

.to_form p{
	font-size:1rem;
}
	
/*掲載日欄*/	
#kounyu input#datepicker {
    width: 100%;
}
	
#kounyu input#datepicker2 {
    width: 100%;
}
#kounyu input#datepicker3 {
    width: 100%;
}	
	
/*バックナンバ-問い合わせ先*/	
.backnumber_contact {
	padding: 0;
}	
.backnumber_contact h3{
	padding:30px 0 20px;
}
	
	
.address {
	width: 85%;
    margin: 10px auto;
    max-width: 400px;	
}

.address p{
	font-size:14px;
}
	

}/*480pxここまで*/



/*---------------------------------------------
	▼IE
---------------------------------------------*/

@media all and (-ms-high-contrast: none) {
/*///////　お申し込みフォーム共通　///////*/
.form span{
		font-size:16px;
}	
	
/*///////　kodoku.shtml 配達地域一覧　///////*/
.area span {
    font-size:16px;
  }
	
/*///////　▼back_number.shtml 　//////*/
/*関西版・広島版申込*/
.to_form span{
	font-size:16px;
}	
/*お問い合わせ先*/	
.address span{
font-size:16px;
}	
	
}/*IEここまで*/


/*---------------------------------------------
	申し込み確認画面以降のページレイアウト
---------------------------------------------*/


.hb_menu li {
    list-style: none;
}

.text6 {
    font-size: 20px;
    text-decoration: none;
    width: 250px;
    height: 30px;
}

p.value {
    font-size: 20px;
}

p.error {
    font-size: 20px;
    color: red;
    text-align: center;
    width: 100%;
    margin: 20px;
    font-weight: bold;
}


.nlhnormal {
    font-size: 24px;
}

td.hb_menu {
}

/*//////【-check.shtml】認証用コードここから//////*/
.securimage_box{
	text-align:center;
	margin-top: 30px;
}
.authentication_code{
	margin:15px 0;
}

.securimage_box a {
    display: block;
	color:#000099;
}

#securyinfo {
    margin: 20px 0 10px;
}
/*//////【-check.shtml】認証用コードここまで//////*/


/*//////【-thanks.shtml】ここから//////*/
.to_ds a{
	color:#000099;
	text-decoration: none;
	font-size: 20px;
}

/*フッターを最下部に*/
.thanks_footer{
    position: fixed;
    bottom: 0;
    width: 100%;
}

/*//////【-thanks.shtml】ここまで//////*/



@media screen and (max-width:480px){

    #container {
        margin-top: 20px;
    }

    .text6 {
        font-size: 14px;
        font-weight: bold;
    }

    tr.hb_menu {
        display: block;
		margin: 15px 0;
    }

    td.hb_menu {
        display: block;
    }

    td.nlhnomal {
        display: block;
        margin: 0px 0px 20px 0px;
    }
	
	.hb_menu input[type="submit"] {
    margin: 15px 0 0;
}

}/*480pxここまで*/
