/* CSS Document */

img {
  /* ウィンドウサイズに応じて画像を拡縮 */
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: auto;
}

body {
  color: #000;
  -webkit-text-size-adjust: 100%;/* 横向きにしたときにフォントサイズが変わらないように */
  line-height: 1.5em;
}
.wrapper {
  max-width: 1000px;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 0 auto;
}

.btn {
  box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.35);
  -webkit-transition: box-shadow 0.2s, -webkit-transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.35);
  transition-duration: 0.1s;
}

.sp_only {
  display: none;
}
.sp_break {
  display: none;
}

@media screen and (max-width: 736px) {
  .wrapper {
    padding: 0;
  }
  
  .sp_only {
    display: block;
  }
  .sp_break {
    display: inline;
  }
  
  .pc_only {
    display: none;
  }
  .pc_break {
    display: none;
  }
}


/***************************
 ** flexible boxと子要素の関係
 * flexible box仕様には3段階あります。box,flexbox,flex
 * ブラウザによって実装段階がそれぞれ異なるので、注意すること
 *
 * 横並びのboxなのでクラス名を「flex_row」に変更
 */

.flex_row {
  /* flexible boxの使用宣言（box,flexbox,flex） */
  -js-display: flex;/*--- ie8,9(flexibility.js) ---*/
  display: -webkit-box;/*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;/*--- ie10 ---*/
  display: -webkit-flex;/*--- mac old safari ---*/
  display: flex;
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: justify;/*--- Androidブラウザ ---*/
  -ms-flex-pack: justify;/*--- ie10 ---*/
  -webkit-justify-content: space-between;/*--- mac old safari ---*/
  justify-content: space-between;
  /* flexアイテムの縦方向の整列 */
  -webkit-box-align: stretch;/*--- Androidブラウザ ---*/
  -ms-flex-align: stretch;/*--- ie10 ---*/
  -webkit-align-items: stretch;/*--- mac old safari ---*/
  align-items: stretch;
  /* flexアイテムの並び方向 */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;/*--- Androidブラウザ 2つに分かれている ---*/
  -ms-flex-direction: row;/*--- ie10 ---*/
  -webkit-flex-direction: row;/*--- mac old safari ---*/
  flex-direction: row;
  /* flexアイテムを複数行にするかどうか */
  /* box仕様のbox-linesに当たるが、androidブラウザは未対応 */
  /* wrapさせたい場合はandroid4DefaultBrowser.cssにて対応すること */
  -ms-flex-wrap: nowrap;/*--- ie10 ---*/
  -webkit-flex-wrap: nowrap;/*--- mac old safari ---*/
  flex-wrap: nowrap;
}
.flex_row>* {
  /**** flexible box関連指定 ****/
  /* flexアイテムの伸縮、アイテム幅の指定 */
  -webkit-box-flex: 0.1;/*--- Androidブラウザ 要素がはみ出す場合があることへの対処 ---*/
  -ms-flex: 1 0 auto;/*--- ie10 ---*/
  -webkit-flex: 1 0 auto;/* mac old safari */
  flex: 0 1 auto;/*--- flex-grow,flex-shrink,flex-basis ---*/
  /* 並び順の指定 */
  -webkit-box-ordinal-group: 1;/*--- Androidブラウザ ---*/
  -ms-flex-order: 0;/*--- ie10 ---*/
  -webkit-order: 0;/*--- mac old safari ---*/
  order: 0;
}

@media screen and (max-width: 736px) {
/***************************
 * スマホの場合にどうするかを記載するので接頭辞として、「sp_」を追加
 */
  .sp_flex_col {
	/* flexアイテムの並び方向 */
	-webkit-box-orient: vertical;/*--- Androidブラウザ 2つに分かれている ---*/
	-ms-flex-direction: column;/*--- ie10 ---*/
	-webkit-flex-direction: column;/*--- mac old safari ---*/
	flex-direction: column;
  }
  .sp_flex_col>* {
	width: 100%;
  }
}


/***************************
 ** header
 */

#header {
  padding: 23px 0 18px;
  /*シャープのロゴ使用規定に準拠*/
}

#header .wrapper {
  display: flex;
}

#header .header_left {
  margin-right: auto;
  display: flex;
}

#header #site_id {
  margin: 0 30px;
  /*シャープのロゴ使用規定に準拠*/
}

#header p {
  margin-top: 0.8rem;
}

#header #page_title {
  margin-top: 0.8rem;
  margin-left: 0.5rem;
}

@media screen and (max-width: 736px) {
  #header {
	padding: 0;
  }

  #header .wrapper {
	display: block;
	padding: 14px 0 9px 20px !important;
	/*シャープのロゴ使用規定に準拠*/
	box-sizing: border-box;
	margin: 0 !important;
  }

  #header #site_id {
	/*シャープのロゴ使用規定に準拠*/
	width: 96px;
	height: 33px;
	margin: 0 15px 0.8rem 0;
  }

  #header p {
	margin-top: 0;
  }

  #header #page_title {
	margin: 0.5rem 0;
	text-align: center;
  }

  #header #page_title img {
	width: 75%;
  }
}


/***************************
 ** #main
 */

#main {
  display: block;/*ie10で必要*/
}


/***************************
 ** #fv FV
 */

#fv {
  padding-bottom: 2rem;
}

@media screen and (max-width: 736px) {
  #fv {
    padding-bottom: 1rem;
  }
}


/***************************
 ** .CV
 */

.cv {
  margin-bottom: 5rem;
  padding: 0 20px;
}

.convenience {
  margin-bottom: 3rem;
}
.convenience h3 {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 2rem;
}
.convenience ul {
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.convenience ul li {
  width: 25%;
  text-align: center;
}
.convenience ul li a {
  display: block;
}

.scroll-btn {
  margin-bottom: 3rem;
}

@media screen and (max-width: 736px) {
  .cv {
    margin: 0 0.8rem 3rem;
  }

  .convenience h3 {
	font-size: 1.35rem;
	line-height: 1.8rem;
  }
  .convenience ul {
	justify-content: space-around;
  }
  .convenience ul li {
	width: 42%;
  }
  .convenience ul li:first-child,
  .convenience ul li p:nth-child(2) {
	margin-bottom: 1em;
  }
	
  .scroll-btn li {
	text-align: center;
  }
  .scroll-btn li:first-child {
	margin-bottom: 1em;
  }
}


/***************************
 ** 書類や写真を簡単に印刷
　　(ネットワークプリント)
 */

.print-contents {
  margin-bottom: 3rem;
}
.print-contents > h3 {
  background-color: #f6dfcd;
  padding: 20px 1rem;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.print-cont-inner {
  padding: 0 20px;
  margin-bottom: 3rem;
}
.print-cont-inner > p {
  margin-bottom: 1.5rem;
}

.nwp-list li {
  margin-bottom: 1.2rem;
}
.link {
	text-align: right;
}

.about {
  margin-bottom: 5rem;
}
.about_file {
  align-items: center;
  margin-bottom: 1rem;
}
.about_file > img {
  max-width: 400px;
  height: 100%;
}

/* ファイル形式のテーブル */
.file_table_area {
  width: 50%;
}
.file_table {
  width: 100%;
  border-top: 1px solid #c9c9c9;
  border-left: 1px solid #c9c9c9;
  margin-bottom: 0.5rem;
}
.file_table tr th,
.file_table tr td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #c9c9c9;
  border-right: 1px solid #c9c9c9;
  text-align: left;
}
.file_table tr th {
  background: #f8f4e6;
}

.spec {
  text-align: right;
  margin-bottom: 3rem;
}

/* プリントの種類 */
.print_store_type {
  width: 50%;
  margin: 0 auto 2rem;
}
.print_store_table_ttl {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.print_store_table {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  width: 100%;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
}
.print_store_table tr th, 
.print_store_table tr td {
  padding: 0.3rem;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
}
.print_store_table tr th {
  background: #efefef;
  font-weight: bold;
}
.print_store_type .note {
  font-size: 0.875rem;
}

.cv_btn {
  display: block;
  box-sizing: border-box;
  margin: 0 auto 1rem;
  padding: 1.2rem;
  font-size: 2rem;
  background: #ffae00;
  color: #fff;
  border-radius: 10px; 
  text-decoration: none;
  box-shadow: 0 4px 0 #af7700;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 1;
}
.cv_btn span {
  font-size: 0.55em;
}
.cv_btn:active {
  box-shadow: none;
  top: 4px;
}

@media screen and (max-width: 736px) {
  .print-contents > h3 {
	font-size: 1.5rem;
  }
  .about {
    margin-bottom: 3rem;
  }
  .about_file > img {
	margin-bottom: 1em;
  }

  .file_icon {
    margin-bottom: 1rem;
  }
  .file_icon img {
    max-width: 90%;
  }
  
  /* ファイル形式のテーブル */
  .file_table_area {
    width: 94%;
    margin-bottom: 1rem;
  }
  .file_table tr th,
  .file_table tr td {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
  
  /* プリントの種類 */
  .print_store_type {
    width: 96%;
    margin: 0 auto 1rem;
  }
  .print_store_table_ttl {
    font-size: 0.875rem;
  }
  .print_store_table {
    font-size: 0.75rem;
  }
  .print_store_type .note {
    font-size: 0.75rem;
  }

  .cv_btn {
    padding: 0.8rem;
    font-size: 1.5rem;
    border-radius: 5px;
	margin: 0 0.8rem 3rem;
  }
  .cv_btn:active {
    box-shadow: none;
    top: 4px;
  }
}

/* #howto 使い方 */
#howto {
  margin-bottom: 5rem;
}
.ttl_howto {
  margin-bottom: 3rem;
}
.howto_list {
  margin-bottom: 1.5rem;
}
.howto_list li {
  flex-basis: 31.2%;
  border: 1px solid #1da1f2;
  position: relative;
}
.howto_img .cv_btn_area {
  padding: 0 1rem;
}
.howto_img .cv_btn {
  box-sizing: border-box;
  width: 100%;
  font-size: 1rem;
  padding: 0.5rem;
  text-align: center;
}
.howto_list_ttl {
  padding: 10px;
}
#howto .note {
  font-size: 0.875rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 736px) {
  #howto {
    margin-bottom: 3rem;
  }
  .ttl_howto {
    margin-bottom: 2rem;
  }
  .howto_list {
    margin: 0 0.8rem;
  }
  .howto_list li {
    flex-basis: auto;
    margin-bottom: 1rem;
  }
  .howto_img .cv_btn_area {
    text-align: center;
  }
  .howto_img .cv_btn {
    font-size: 1.5rem;
    width: auto;
    padding: 0.5rem;
    margin: 0 auto;
  }
  #howto .note {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
  }
  #howto .note:last-of-type {
    font-size: 0.75rem;
    margin-bottom: 2rem;
  }
}


/***************************
 ** 各種証明書を簡単に印刷
(コンビニ交付サービス)
 */

.acq-cert  {
  margin-bottom: 3rem;
}
.acquisition {
  margin-bottom: 1rem;
  border: 2px solid #454038;
  border-radius: 20px;
  background-color: #f9f4e5;
  padding: 2rem;
}
.acquisition h3 {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
.acquisition dl.residence {
  margin-bottom: 2rem;
}
.acquisition dl dt {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.75rem;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  text-indent: -1.75rem;
}
.acquisition dl dd ul li {
  margin-bottom: 0.2rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.acquisition dl dd ul li::before {
  content: "・";
}

.acq-cert .note2 a::after {
/*  content: url('/bs/networkprint/images-target/pc/external-link_icon-s.png'); */
  padding: 0 0.2rem;
}

@media screen and (max-width: 736px) {
  .acquisition {
	padding: 0.8rem;
	margin: 0 0.8rem 3rem;
  }
  .acquisition h3 {
	font-size: 1.35rem;
	margin-bottom: 1.2rem;
  }
  .acquisition dl dt {
	font-size: 1.1rem;
  }
  .note2 {
	margin: 0 0.8rem 3rem;
  }
}

#sec01,
#sec02 {
  margin-bottom: 3rem;
}
#sec01 h2,
#sec02 h2 {
  margin-bottom: 1rem;
}
#sec02 .img_box {
  margin-bottom: 1rem;
}
#sec02 .note2 {
  font-size: 0.875rem;
  padding-left: 1.25rem;
  text-indent: -1.25rem;
}
#sec02 .note2 a::after {
/*  content: url('/bs/govservice/images-govservice/external-link_icon-s.png'); */
  padding: 0 0.2rem;
}

#sec03 {
  margin-bottom: 3rem;
}
#sec03 h2 {
  margin-bottom: 1rem;
}
#sec03 .img_box {
  margin-bottom: 1rem;
}
#sec03 .note3 {
  border: 1px solid #454038;
  background-color: #f8f7f6;
  padding: 2rem;
  font-size: 0.875rem;
}
#sec03 .note3 a::after {
/*  content: url('/bs/govservice/images-govservice/external-link_icon-s.png'); */
  padding: 0 0.2rem;
}

@media screen and (max-width: 736px) {
  #sec03 .note3 {
	padding: 0.8rem;
  }
}


/***************************
 ** #cv02
 */

.convenience02 {
  margin-bottom: 3rem;
}
.convenience02 h3 {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 2rem;
}
.convenience02 ul {
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.convenience02 ul li {
  width: 50%;
  text-align: center;
}
.convenience02 ul li::after {
	content: url('/bs/networkprint/images-target/pc/external-link_icon.png');
	display: block;
}
.convenience02 ul li a {
  display: block;
}

#cv02 {
	margin-bottom: 3rem;
}
#cv02 dl {
	text-align: center;
}
#cv02 dl dt {
	margin-bottom: 1rem;
	font-weight: bold;
}

@media screen and (max-width: 960px) {
  #cv02 {
	margin: 0 0.5rem 3rem;
  }
}


/***************************
 ** フッター上リスト
 */

#sec04 ul.note {
  font-size: 75%;
  line-height: 1.5;
}
#sec04 ul.note li {
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin-bottom: 0.2em;
}
#sec04 ul.note li:before {
  content: "\25cf";
  margin-right: 0.5em;
}

@media screen and (max-width: 736px) {
  #sec04 {
	margin: 0 0.5rem 1rem;
  }
}


/***************************
 ** #footer
 */

#footer {
  margin-top: 2rem;
  border-top: #ccc 1px solid;
  font-size: 68.75%;
  padding-bottom: 0.3rem;
}
#footer .footer_nav a {
  color: #000;
}
#footer .footer_nav a:hover {
  color: #999;
  text-decoration: none;
}
#footer .footer_nav ul {
  display: table;
  padding: 1rem 0;
}
#footer .footer_nav ul li {
  display: table-cell;
  padding: 0 1rem;
  border-right: 1px #aaa solid;
  line-height: 1;
}
#footer .footer_nav ul li:first-child {
  border-left: 1px #aaa solid;
}
#footer .copyright {
  font-weight: bold;
}
#footer .flex_row {
  /* flexアイテムの縦方向の整列 */
  -webkit-box-align: center;/*--- Androidブラウザ ---*/
  -ms-flex-align: center;/*--- ie10 ---*/
  -webkit-align-items: center;/*--- mac old safari ---*/
  align-items: center;
}

@media screen and (max-width: 736px) {
  #footer {
	background-color: #f0f0f0;
	padding: 0 0.5rem 1rem;
  }
  #footer .footer_nav ul {
	display: block;
	padding: 1rem 0;
  }
  #footer .footer_nav ul li {
	display: block;
	border-right: none;
	line-height: 2;
	padding: 0;
  }
  #footer .footer_nav ul li:first-child {
	border-left: none;
  }
}


/***************************
 ** #rev_top
 */

#rev_top {
  position: fixed;
  width: 7%;
  max-width: 60px;
  bottom: 20px;
  left: 20px;
  text-decoration: none;
  -ms-filter: "alpha(opacity=80)";
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  box-shadow: 0 0 4px rgba(0, 0, 0, .3);
}
