123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- @charset "utf-8";
-
- /* **********************************************
- * footer定義 css
- *
- * 画面の大きさ・位置定義
- *
- *
- ********************************************** */
-
- /*
- * 2014/02/26
- * footer 大きさ定義
- *
- */
-
- footer {
- position: relative;
- display: block;
- width: 100%;
- height: 110px;
- bottom: 0px;
- margin: 0px 10px 0px 0px;
- padding: 0;
- }
-
- @media screen and (max-width: 768px) {
- footer {
- position: relative;
- display: block;
- width: calc(100% - 20px);
- height: 240px;
- margin: 2px auto 0px;
- padding: 0;
- }
- }
-
- div.footer {
- position: relative;
- display: block;
- width: 100%;
- height: 80px;
- }
-
- @media screen and (max-width: 768px) {
- .footer_img {
- display: none;
- }
- }
-
- p.footer_text {
- margin: 16px auto;
- text-align: center;
- font-size: 12px;
- }
-
- @media screen and (max-width: 768px) {
- p.footer_text {
- font-size: 8px;
- }
- }
-
- p.footer_text a {
- text-decoration: none;
- }
-
- /* footer モバイル用にクラス定義*/
- div.footer_mobile {
- display: none;
- }
-
- @media screen and (max-width: 768px) {
- div.footer_mobile {
- display: block;
- }
-
- div.footer_mobile_title {
- position: relative;
- display: block;
- width: calc(100% - 20px);
- text-align: center;
- }
-
- img.footerImg__logo {
- padding-left: 20px;
- }
-
- h1.footerMobile__text {
- margin: 0 0 16px;
- padding-left: 20px;
- color: #109033;
- }
-
- div.footer_mobile_address {
- position: relative;
- display: block;
- width: 100%;
- text-align: center;
- font-size: 15px;
- }
-
- .sp__brDisplay {
- display: none;
- }
- }
-
- /* footer ここまで */
|