@charset "utf-8";
/* CSS Document */
:root {
 font-size: 10px;
}
html {
 scroll-behavior: smooth;
 scroll-padding-top: 150px;
}
body {
 font-size: 20px; font-size: 2.0rem;
 line-height: 150%;
 font-family: "zen-kaku-gothic-new", sans-serif;
 font-style: normal;
 color: #3d3d3d;
 word-break: break-all;
 background-color: #ffffff;
}

h1 {
 font-size: 32px; font-size: 3.2rem;
 line-height: 120%;
 font-weight: bold;
}
h2 {
 font-size: 28px; font-size: 2.8rem;
 line-height: 120%;
}
h3{
 font-size: 24px; font-size: 2.4rem;
 line-height: 120%;
}
a {
 transition: all 0.1s;
 text-decoration-skip-ink: none;
}
a:hover {
 color: #e94628;
 transition: all 0.1s;
}
img {
 width: 100%;
}

.wrapper {
 background-color: #ffffff;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 body {
  font-size: 16px;
 }
 .wrapper {
  margin-top: 50px;
 }
}

/*ページ内リンクのヘッダー高さ調整*/
 @media screen and (max-width: 640px) {
  html {
   scroll-padding-top: 50px;
  }
 }
 /*ページ内リンクのヘッダー高さ調整*/

/*TOPへ戻る*/
.backtotop {
 position: fixed;
 right: 20px;
 bottom: 180px;
 z-index: 88;
 display: none;
}
.backtotop a {
 display: block;
 content: url("../img/back_top.png");
 padding: 10px; 
 margin: 0;
 background-color: #f39c3f;
 border-radius: 50%;
 text-decoration: none;
 font-weight: bold;
 border: 1px solid #ffffff;
 box-shadow: 0 5px 0 #cccccc;
 transition: all 0.2s;
}
.backtotop a:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 600px) {
 .backtotop {
  bottom: 180px;
  opacity: 0.9;
 }
 .backtotop a {
  /*background-color: rgba(240,131,15,0.90);*/
 }
}

/*新規申請フォーム*/
.kyoto_form {
 position: fixed;
 right: 0;
 bottom: 100px;
 z-index: 88;
 display: none;
}
.kyoto_form a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 200px;
 height: 50px;
 margin: 0;
 background-color: #76bf65;
 border-top-left-radius: 25px;
 border-bottom-left-radius: 25px;
 color: #ffffff;
 text-decoration: none;
 box-shadow: 0 5px 0 #cccccc;
 transition: all 0.2s;
}
.kyoto_form a:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 600px) {
 .kyoto_form {
  bottom: 120px;
  opacity: 0.9;
 }
 .kyoto_form a {
  width: 170px;
  height: 40px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
 }
}

/*マイページ*/
.kyoto_form2 {
 position: fixed;
 right: 0;
 bottom: 20px;
 z-index: 88;
 display: none;
}
.kyoto_form2 a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 200px;
 height: 50px;
 margin: 0;
 background-color: #76bf65;
 border-top-left-radius: 25px;
 border-bottom-left-radius: 25px;
 color: #ffffff;
 text-decoration: none;
 box-shadow: 0 5px 0 #cccccc;
 transition: all 0.2s;
}
.kyoto_form2 a:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 600px) {
 .kyoto_form2 {
  bottom: 60px;
  opacity: 0.9;
 }
 .kyoto_form2 a {
  width: 170px;
  height: 40px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
 }
}

/*ハンバーガーメニュー*/
#menu-button {
 display: none;
 position: fixed;
 z-index: 88;
 top: 0;
 width: 100%;
 height: 50px;
 background-color: #f39c3f;
 box-sizing: border-box;
 box-shadow: 0px 2px 2px rgba(0,0,0,0.30);
}
.hun_txt_area {
 display: flex;
 flex-direction: row;
 padding: 5px 0 0 5px;
 box-sizing: border-box;
}
.hun_txt_area img {
 width: 40px;
 box-sizing: border-box;
 transition: all 0.2s;
}
.hun_txt_area img:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.icon {
 cursor: pointer;
 position: relative;
}
.icon span {
  position: absolute;
  right: 15px;
  width: 30px; /* 線の幅 */
  height: 3px; /* 線の太さ */
  background-color: #ffffff; /* 線の色 */
  transition: ease 0.3s;
}
.icon span:nth-of-type(1) {
  top: 15px; /* 上の線の位置調整 */
}
.icon span:nth-of-type(2) {
  top: 25px; /* 真ん中の線の位置調整 */
}
.icon span:nth-of-type(3) {
  top: 35px; /* 下の線の位置調整 */
}
.open span:nth-of-type(1) {
  top: 25px;
  transform: rotate(-45deg); /* 線の角度調整 */
}
.open span:nth-of-type(2) {
  opacity: 0; /* 透明化 */
}
.open span:nth-of-type(3) {
  top: 25px;
  transform: rotate(45deg);  /* 線の角度調整 */
}
.hun_tit {
 height: 100%;
 padding-left: 10px;
 font-style: normal;
 font-size: 16px;
 line-height: 18px;
 font-weight: bold;
 box-sizing: border-box;
}
.s_sp {
 display: none;
}
.sample-menu {
 display: none;
 width: 100%;
 position: fixed;
 z-index: 88;
 top: 50px;
 left: 0;
 background-color: #f39c3f;
 color: #ffffff;
}
.sample-menu li {
 border-top: 1px solid #ffffff;
 box-sizing: border-box;
 font-size: 16px;
 line-height: 18px;
}
.sample-menu li:last-child {
 border-bottom: 1px solid #ffffff;
}
.sample-menu li a {
 display: inline-block;
 width: 100%;
 padding: 10px;
 color: #ffffff;
 font-weight: bold;
 text-decoration: none;
 box-sizing: border-box;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 #menu-button {
  display: block;
 }
 .top_hum {
  margin-top: 50px;
 }
}

/*ヘッダー*/
#hedder {
 position: sticky;
 top: 0;
 z-index: 88;
}
.hed_tit {
 position: relative;
 width: 100%;
 height: 100px;
 background-color: #ffffff;
 box-sizing: border-box;
}
.hed_tit p {
 position: absolute;
 left: 20px;
 top: 50%;
 transform: translateY(-50%);
 font-size: 30px;
 font-weight: bold;
 width: 100%;
 max-width: calc(100% - 120px);
}
.hed_tit p a {
 color: #3d3d3d;
 text-decoration: none;
 transition: all 0.2s;
}
.hed_tit p a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.hed_logo {
 position: absolute;
 right: 20px;
 top: 50%;
 transform: translateY(-50%);
 width: 100%;
 max-width: 60px;
}
.hed_nav {
 display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
 background-color: #f39c3f;
 padding: 10px 0;
 border-bottom: 1px solid #ffffff;
 box-sizing: border-box;
}
.hed_nav li {
 width: calc(100%/5);
 text-align: center;
 border-right: 1px solid #ffffff;
 box-sizing: border-box;
}
.hed_nav li:last-child {
 border-right: none;
}
.hed_nav li a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 30px;
 color: #ffffff;
 text-decoration: none;
 box-sizing: border-box;
 transition: all 0.2s;
}
.hed_nav li a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
/* デバイス幅が750px以下 */
@media only screen and (max-width:750px) {
 .hed_tit p {
  font-size: 28px;
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 #hedder {
  display: none;
 }
}

/*メインビジュアル*/
.kyoto_main_vis {
 width: 100%;
 max-width: 1200px;
 margin: 0 auto;
}
.kyoto_main_vis_sp {
 display: none;
 width: 100%;
}
.kyoto_main_vis img,
.kyoto_main_vis_sp img {
 vertical-align: middle;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .kyoto_main_vis {
  display: none;
 }
 .kyoto_main_vis_sp {
  display: block;
 }
}

/*ニュース*/
.news_area {
 width: 100%;
 max-width: 1000px;
 height: 210px;
 overflow-y: auto;
 margin: 30px auto 0;
 padding: 20px;
 background-color: #ffffff;
 border: 1px solid #f39c3f;
 box-sizing: border-box;
}
.news_area dl {
 display: flex;
 padding: 10px 0;
 border-bottom: 1px dotted #f39c3f;
 box-sizing: border-box;
}
.news_area dl:last-child {
 border: none;
}
.news_area dl dt {
 width: 210px;
} 
.news_red::after {
 content: "重要";
 font-size: 16px;
 color: #ffffff;
 padding: 5px;
 margin-left: 5px;
 border-radius: 10px;
 background-color: #e94628;
 box-sizing: border-box;
}
.news_new::after {
 content: "新着";
 font-size: 16px;
 color: #ffffff;
 padding: 5px;
 margin-left: 5px;
 border-radius: 10px;
 background-color: #76bf65;
 box-sizing: border-box;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .news_area dl {
  flex-direction: column;
 }
 .news_tit,
 .news_area {
  max-width: 100%;
 }
 .news_area {
  margin-top: 10px;
 }
 .news_red::after {
  font-size: 14px;
  padding: 3px;
 }
}

/*各項目*/
.main_top {
 padding: 30px 20px;
 background-color: #f39c3f;
 box-sizing: border-box;
}
.lead_txt {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 color: #ffffff;
}
.lead_txt2 {
 width: 100%;
 max-width: 800px;
 margin: 0 auto;
 color: #3d3d3d;
}
.lead_txt2 h1 {
 font-size: 50px;
 margin-bottom: 20px;
}
.lead_txt2 h2 {
 font-size: 40px;
 margin-bottom: 20px;
}
.lead_txt2 p {
 font-size: 25px;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .lead_txt2 h1 {
  font-size: 40px;
 }
 .lead_txt2 h2 {
  font-size: 30px;
 }
 .lead_txt2 p {
  font-size: 22px;
 }
}
.main {
 padding: 50px 20px;
 background-color: rgba(118,191,101,0.05);
 box-sizing: border-box;
}
.kyoto_orange {
 background-color: #fddfa3;
}
.main_tit {
 width: 100%;
 max-width: 1000px;
 text-align: center;
 font-size: 30px;
 font-weight: bold;
 margin: 0 auto;
}
.main_tit a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.main_tit a {
 color: #3d3d3d;
 transition: all 0.2s;
}
/*.main_sub {
 display: block;
 width: 100px;
 height: 5px;
 margin: 10px auto 20px;
 background-color: #fd9e13;
}*/
.column_tit {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 margin-top: 30px;
 padding: 10px 20px;;
 color: #ffffff;
 font-size: 25px;
 background-color: #f39c3f;
 box-sizing: border-box;
}
.txt_area {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 padding: 20px;
 border: 1px solid #f39c3f;
 border-top: none;
 background-color: #ffffff;
 box-sizing: border-box;
}
.txt_area p {
 margin-bottom: 30px;
}
.k_t_img {
 width: 100%;
 max-width: 900px;
 margin: 0 auto 30px;
}
.k_t_img_sp {
 display: none;
 max-width: 300px;
 margin: 0 auto 20px;
}
.txt_area p:last-child {
 margin-bottom: 0;
}
.main.kyoto_gaiyo {
 background-color: rgba(243,156,63,0.05);
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .main {
  padding: 20px 10px;
 }
 .main_tit {
  font-size: 22px;
 }
 .column_tit {
  font-size: 18px;
  margin-top: 10px;
 }
 .txt_area {
  padding: 10px;
 }
 .txt_area p {
  margin-bottom: 20px;
 }
 .k_t_img {
  display: none;
 }
 .k_t_img_sp {
  display: block;
 }
}
/*テーブル*/
.kyoto_table {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 border-collapse: collapse;
}
.kyoto_table th,
.kyoto_table td {
 padding: 5px;
 border: 1px solid #f39c3f;
 box-sizing: border-box;
}
.kyoto_table th {
 text-align: center;
 background-color: rgba(243,156,63,0.30);
}
.kyoto_table td {
 background-color: #ffffff;
}
.tb_img {
 width: 100%;
 max-width: 100px;
 margin: 10px auto;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .tb_img {
  max-width: 70px;
 }
}
/*補助金の執行状況*/
.f_b_graph {
 width: 100%;
 height: 300px;
}
.f_b_double {
 width: 100%;
 height: 200px;
 display: flex;
 flex-direction: row;
}
.f_b_graph iframe,
.f_b_double iframe {
 width: 100%;
 height: 100%;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .f_b_double {
  flex-direction: column;
  height: 400px;
  transform: scale(.75);
  width: 420px;
  margin-left: -26px;
 }
}
/*.frame_block {
 position: relative;
 width: 100%;
 padding: calc(200 / 900 * 100%) 0 0;
}
.frame_block iframe {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
}*/

/*申請フロー*/
.flow_shin {
 padding: 2px;
 background-color: #ed7979;
 font-weight: bold;
 box-sizing: border-box;
}
.flow_jimu {
 padding: 2px;
 background-color: #76bf65;
 font-weight: bold;
 box-sizing: border-box;
}
.flow_tool {
 max-width: 900px;
 margin: 0 auto 30px;
 font-weight: bold;
 color: #f0830f;
 text-align: center;
}
.flow_area {
 width: 100%;
 max-width: 900px;
 margin: 0 auto 30px;
 padding: 10px;
 border: 1px solid;
 box-sizing: border-box;
}
.f_a_shin {
 border-color: #ed7979;
 background-color: rgba(237,121,121,0.10);
}
.f_a_jimu {
 border-color: #76bf65;
 background-color: rgba(118,191,101,0.1);
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .flow_tool,
 .flow_area {
  margin: 0 auto 20px;
 }
}
/*ボタン*/
.kyoto_bt {
 width: 100%;
 max-width: 400px;
 margin: 0 auto 30px;
 text-align: center;
}
.kyoto_bt a {
 display:flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 50px;
 line-height: 120%;
 color: #ffffff;
 text-decoration: none;
 background-color: #76bf65;
 background-image: url("../img/button.png");
 background-repeat: no-repeat;
 background-position: 95% center;
 border-radius: 35px;
 box-sizing: border-box;
 box-shadow: 0 5px 0 #cccccc;
 transition: all 0.2s;
}
.kyoto_bt a::after {
 height: 45px;
 margin-left: 10px;
}
.kyoto_bt a:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
.kyoto_tb {
 cursor: pointer;
 display:flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 max-width: 400px;
 margin: 0 auto 30px;
 height: 50px;
 text-align: center;
 color: #ffffff;
 text-decoration: none;
 background-color: #76bf65;
 background-image: url("../img/button.png");
 background-repeat: no-repeat;
 background-position: 95% center;
 border-radius: 35px;
 box-sizing: border-box;
 box-shadow: 0 5px 0 #cccccc;
 transition: all 0.2s;
}
.kyoto_tb:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
.k_tb_bt {
 margin-bottom: 30px;
}
.kyoto_bt_blue,
a.kyoto_bt_blue {
 background-color: #78a7d9;
}
.kyoto_bt_red,
a.kyoto_bt_red {
 background-color: #ed7979;
}
.kyoto_bt_null {
 display:flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 width: 100%;
 max-width: 400px;
 height: 50px;
 margin: 30px auto 0;
 color: #5d5d5d;
 line-height: 120%;
 text-align: center;
 border: 1px solid #999999;
 border-radius: 35px;
 background-color: #cccccc;
 box-sizing: border-box;
}
.kyoto_img {
 margin: 30px 0;
 text-align: center;
}

/*よくある質問*/
.faq_tit {
 width: 100%;
 max-width: 1000px;
 margin: 30px auto 0;
 font-size: 22px;
 font-weight: bold;
}
.faq {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
}
.faq dl {
}
.faq dl dt,
.faq dl dd {
 position: relative;
 width: 100%;
 padding: 10px 10px 10px 50px;
 border-radius: 10px;
 box-sizing: border-box;
}
.faq dl dt::before,
.faq dl dd::before {
 position: absolute;
 left: 10px;
 top: 10px;
 font-size: 30px;
 font-weight: bold;
}
.faq dl dt {
 cursor:pointer;
 margin-top: 30px;
 color: #ffffff;
 background-color: #76bf65;
}
.faq dl dt::before {
 content: "Q";
}
.faq dl dd {
 margin-top: 10px;
 background-color: #ffffff;
 border: 1px solid #f39c3f;
}
.faq dl dd::before {
 content: "A";
 color: #f39c3f;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .faq_tit {
  margin: 20px auto 0;
  font-size: 18px;
 }
 .faq dl dt {
  margin-top: 20px;
 }
 .faq dl dt,
 .faq dl dd {
  padding-left: 40px;
 }
 .faq dl dt::before,
 .faq dl dd::before {
  font-size: 20px;
 }
}

/*バナー*/
.kyoto_ban {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
}
.k_b_item {
 width: 100%;
 max-width: 333px;
 /*margin: 10px 0;*/
 text-align: center;
}
.k_b_item figcaption {
 font-size: 16px;
 margin-bottom: 5px;
}
.k_b_item a {
 width: 100%;
 transition: all 0.2s;
}
.k_b_item a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.k_b_item img {
 width: 90%;
}

/*フッター*/
#footer {
 color: #ffffff;
 background-color: #f39c3f;
}
.kyoto_foot_area {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 padding: 20px 10px;
 text-align: center;
 box-sizing: border-box;
}
.kyoto_foot_area p.large {
 font-size: 28px;
}
.kyoto_add {
 width: 100%;
 max-width: 600px;
 margin: 0 auto;
}
.k_f_toi {
 margin-top: 30px;
 padding: 10px;
 color: #3d3d3d;
 background-color: #ffffff;
 border-radius: 20px;
 box-sizing: border-box;
}
.toi_block {
 margin: 20px auto;
 padding: 20px 10px;
 width: 100%;
 max-width: 500px;
 border: 1px solid #f39c3f;
 border-radius: 20px;
 box-sizing: border-box;
}
.kyoto_mail {
 width: 100%;
 font-size: 30px;
 margin: 0 auto 20px;
}
.kyoto_mail img {
 max-width: 40px;
 margin-right: 10px;
 vertical-align: bottom;
}
.kyoto_copy {
 width: 100%;
 color: #3d3d3d;
 text-align: center;
 padding: 10px;
 background-color: rgba(255,255,255,0.30);
 box-sizing: border-box;
}
.kyoto_townmark {
 width: 100%;
 text-align: center;
 padding: 10px;
 background-color: #ffffff;
 box-sizing: border-box;
}
.kyoto_townmark p img {
 max-width: 100px;
 vertical-align: middle;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .kyoto_foot_area h2 {
  font-size: 22px;
 }
 .k_f_toi {
  margin-top: 10px;
 }
 .kyoto_foot_area p.large {
  font-size: 18px;
 }
 .toi_block {
  margin: 10px auto;
  padding: 10px;
  max-width: 400px;
 }
 .kyoto_mail {
  font-size: 22px;
  margin: 10px auto;
 }
 .kyoto_mail img {
  width: 22px;
 }
}

/*アコーディオン用*/
.submenu {
 display: none;
}

/*文字装飾*/
.bold {
 font-weight: bold;
}
.nomal {
 font-weight: normal;
}
.red {
 color: #ff0000;
}
.blue {
 color: #0000cc;
}
.yellow {
 color: #fcc601;
}
.black {
 color: #3d3d3d;
}
.white {
 color: #ffffff;
}
.mark {
 background-color: #ffff00;
}
.double_line {
 text-decoration: underline;
 text-decoration-style: double;
 text-decoration-skip-ink: none;
}
.small {
 font-size: 0.8em;
}
.small_2 {
 font-size: 0.7em;
}
.large {
 font-size: 1.2em;
}
.large_2 {
 font-size: 1.5em;
}
.cen {
 text-align: center;
}

/*二行目以降字下げ*/
.kai {
 display: block;
 text-indent: -1em;
 padding-left: 1em;
 box-sizing: border-box;
}
.kai_1-3 {
 display: block;
 text-indent: -1.3em;
 padding-left: 1.3em;
 box-sizing: border-box;
}
.kai_2 {
 display: block;
 text-indent: -2em;
 padding-left: 2em;
 box-sizing: border-box;
}
.kai_2-5 {
 display: block;
 text-indent: -2.5em;
 padding-left: 2.5em;
 box-sizing: border-box;
}
.kai_3 {
 display: block;
 text-indent: -3em;
 padding-left: 3em;
 box-sizing: border-box;
}
.kai_4 {
 display: block;
 text-indent: -4em;
 padding-left: 4em;
 box-sizing: border-box;
}
.kai_5 {
 display: block;
 text-indent: -5em;
 padding-left: 5em;
 box-sizing: border-box;
}
.kai_6 {
 display: block;
 text-indent: -6em;
 padding-left: 6em;
 box-sizing: border-box;
}
.kai_7 {
 display: block;
 text-indent: -7em;
 padding-left: 7em;
 box-sizing: border-box;
}
.kai_8 {
 display: block;
 text-indent: -8em;
 padding-left: 8em;
 box-sizing: border-box;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .kai_8 {
  text-indent: 0;
  padding-left: 0;
 }
}

/*サイズ毎の表示変更*/
.pc {
 display: block;
}
.tb {
 display: none;
}
.sp {
 display: none;
}
/* デバイス幅が1000px以下 */
@media only screen and (max-width:1000px) {
 .pc {
  display: none;
 }
 .tb {
  display: block;
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .tb {
  display: none;
 }
 .sp {
  display: block;
 }
}

/*フロート解除*/
.clear {
 clear: both;
}

.none {
 display: none;
}