/*
 Author: NOGUCHI KIKAKU

 ▼目次
 1.  便利
 2.  テキスト装飾
 3.  背景色・模様
 4.  余白
 5.  見出し・テキスト装飾
 6.  ボタン装飾
 7.  横幅指定
 8.  リスト装飾
 9.  Q&A装飾
 10. 引用装飾
 11. 枠装飾
 12. 画像装飾
 13. その他装飾
 20. フッターウィジェットのメニュー
 21. 1行のお知らせ
 22. 2行のお知らせ
 23. サムネイル付きお知らせ 縦
 30. tableのレスポンシブ対応（2列の場合に効果的）
 99. メディアクエリ
*/

/* =========================================================
 * 1. 便利
========================================================= */
.p-none p {
    margin: 0;
}

/* Google map レスポンシブ */
.gmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.gmap iframe,
.gmap object,
.gmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =========================================================
 * 2. テキスト装飾
========================================================= */
.font140 {
    font-size: 140% !important;
}
.font135 {
    font-size: 135% !important;
}
.font130 {
    font-size: 130% !important;
}
.font125 {
    font-size: 125% !important;
}
.font120 {
    font-size: 120% !important;
}
.font115 {
    font-size: 115% !important;
}
.font110 {
    font-size: 110% !important;
}
.font105 {
    font-size: 105% !important;
}
.font95 {
    font-size: 95% !important;
}
.font90 {
    font-size: 90% !important;
}
.font85 {
    font-size: 85% !important;
}
.font80 {
    font-size: 80% !important;
}
.font75 {
    font-size: 75% !important;
}
.font70 {
    font-size: 70% !important;
}
.font65 {
    font-size: 65% !important;
}
.font60 {
    font-size: 60% !important;
}
.txtcenter {
    text-align: center;
}
.txtright {
    text-align: right;
}
.txtleft {
    text-align: left;
}
.txtnarrow {
    letter-spacing: 0 !important;
}
.txtbold {
    font-weight: bold !important;
}
.txtthin {
    font-weight: normal !important;
}
.txtwhite {
    color: #fff;
}
.txtblack {
    color: #000;
}
.txtlightgray {
    color: #ccc;
}
.txtgray {
    color: #777;
}
.txtred {
    color: #F44336;
}
.txtpurple {
    color: #7C4DFF;
}
.txtblue {
    color: #1976D2;
}
.txtgreen {
    color: #388E3C;
}
.txtorange {
    color: #F57C00;
}
.txtshadow {
    text-shadow: 0 1px 0 #333;
}

/* =========================================================
 * 3. 背景色・模様
========================================================= */
.bgwhite {
    background: #fff;
}
.bgblack {
    background: #000;
}
.bggray {
    background: #fafafa;
}
.bgred {
    background: #F44336;
}
.bgpurple {
    background: #7C4DFF;
}
.bgblue {
    background: #1976D2;
}
.bggreen {
    background: #388E3C;
}
.bgorange {
    background: #F57C00;
}

/* CSS模様 */
.stripe-slant {
    background-image: repeating-linear-gradient(
        135deg,
        #eeeeee,
        #eeeeee 5px,
        #ffffff 5px,
        #ffffff 10px
    ) !important;
}
.stripe-vertical {
    background-image: repeating-linear-gradient(
        to right,
        #eeeeee,
        #eeeeee 5px,
        #ffffff 5px,
        #ffffff 10px
    ) !important;
}

.stripe-horizontal {
    background-image: linear-gradient(
        to bottom,
        #eeeeee,
        #eeeeee 50%,
        #ffffff 50%,
        #ffffff
    ) !important;
    background-size: 100% 10px; /* ボーダーの幅 */
}

/* =========================================================
 * 4. 余白
========================================================= */
.mt0 {
    margin-top: 0px !important;
}
.mt5 {
    margin-top: 5px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.mt30 {
    margin-top: 30px !important;
}
.mt40 {
    margin-top: 40px !important;
}
.mt50 {
    margin-top: 50px !important;
}
.mt60 {
    margin-top: 60px !important;
}
.mt70 {
    margin-top: 70px !important;
}
.mt80 {
    margin-top: 80px !important;
}
.mt90 {
    margin-top: 90px !important;
}
.mt100 {
    margin-top: 100px !important;
}
.mb0 {
    margin-bottom: 0px !important;
}
.mb5 {
    margin-bottom: 5px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb50 {
    margin-bottom: 50px !important;
}
.mb60 {
    margin-bottom: 60px !important;
}
.mb70 {
    margin-bottom: 70px !important;
}
.mb80 {
    margin-bottom: 80px !important;
}
.mb90 {
    margin-bottom: 90px !important;
}
.mb100 {
    margin-bottom: 100px !important;
}

/* =========================================================
 * 5. 見出し装飾
========================================================= */
/* spanに小さいテキストを使った見出し */
.addsub span {
    font-weight: normal;
    margin-left: 15px;
    font-size: 60%;
    color: #777;
    position: relative;
    top: -2px;
}

/* アンダーラインに色線を重ねる */
.hline {
    position: relative;
    padding-bottom: .5em;
    border-bottom: 4px solid #ccc;
    border-left: none;
    padding-left: 0;
}
.hline::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 4px;
    background-color: #333;
}
.hline-lv2 {
    font-size: 20px;
    margin: 50px 0 15px 0;
    position: relative;
    padding-bottom: .5em;
    border-bottom: 2px solid #ccc;
}
.hline-lv2::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 2px;
    background-color: #333;
}
.hcenter {
    border: none;
    padding: 0;
    margin: 0;

    line-height: 1.6;
    font-weight: bold;
    text-align: center;
}
.hcenter-lv2 {
    border: none;
    padding: 0;
    margin: 0;

    color: #777;
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    text-align: center;
}
hr.hcenter-line {
    padding: 0;
    border: 0;
    margin: 20px auto;
    border-top: 4px solid #ccc;
    height: 0;
    width: 200px;
}
hr.half {
    padding: 0;
    border: 0;
    margin: 50px auto;
    border-top: 1px solid #ccc;
    height: 0;
    width: 50%;
}

/* テキスト装飾 */

/* 蛍光ペン http://itbenricho.com/highlighter-marker-css.html */
.marker-yellow {
    background: linear-gradient(transparent 60%, #ffff92 60%);
}
.marker-lime {
    background: linear-gradient(transparent 60%, #8ffcd8 60%);
}
.marker-water {
    background: linear-gradient(transparent 60%, #bbeaf8 60%);
}
.marker-pink {
    background: linear-gradient(transparent 60%, #fea6d2 60%);
}

/* =========================================================
 * 6. ボタン装飾
========================================================= */
.button i.left {
    border-right: 1px solid rgba(255, 255, 255, .2);
    margin-right: 5px;
    padding-right: 10px;
}
.button i.right {
    border-left: 1px solid rgba(255, 255, 255, .2);
    margin-left: 5px;
    padding-left: 10px;
}

.button,
.button:visited {
    display: inline-block;
    padding: 10px 15px;
    margin-bottom: 5px;
}
.button.big,
.button.big:visited {
    display: block;
    font-size: 120%;
    max-width: 300px;
    text-align: center;
}

.button.round {
    border-radius: 5px;
}

.button.green,
.button.green:visited {
    background: #5EA337;
    color: #FFF
}
.button.green:hover {
    background: #70B44A;
}

.button.gray,
.button.gray:visited {
    background: #475160;
    color: #FFF
}
.button.gray:hover {
    background: #3F4754;
}

.button.blue,
.button.blue:visited {
    background: #1E72BD;
    color: #FFF
}
.button.blue:hover {
    background: #1860A0;
}

.button.white,
.button.white:visited {
    background: #1e72bd;
    color: #FFF;
    border: 2px solid #FFF;
}
.button.white:hover {
    background: #FFF;
    color: #1e72bd;
    border: 2px solid transparent;
}

.button.white-bg,
.button.white-bg:visited {
    background-color: transparent;
    border: 2px solid #FFF;
    color: #FFF;
}
.button.white-bg:hover {
    background-color: #FFF;
    color: #222;
}
.button.white-bg i {
    color: #FFF;
}
.button.white-bg:hover i {
    color: #222;
}

.button.see-through {
    background-color: transparent;
    color: #222;
    font-weight: bold;
    border: 2px solid #222;
}
.button.see-through:hover {
    background-color: #222;
    color: #FFF;
}

/* 3dボタン */
a.button-3d {
    display: inline-block;
    position: relative;
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;

    background-color: #777;
    border-radius: 4px;
    color: #fff;
    -webkit-transition: none;
    transition: none;
    box-shadow: 0 3px 0 #555;
}
.button-3d:hover {
    color: #fff;
    background-color: #666;
    box-shadow: 0 3px 0 #444;
}
.button-3d:active {
    top: 3px !important;
    box-shadow: none !important;
}
/* 3dボタン：カラー */
.button-3d.red {
    background-color: #ee5b5c;
    box-shadow: 0 3px 0 #da3131;
}
.button-3d.red:hover {
    background-color: #ec434a;
    box-shadow: 0 3px 0 #cf1b22;
}
.button-3d.green {
    background-color: #70B44A;
    box-shadow: 0 3px 0 #559631;
}
.button-3d.green:hover {
    background-color: #63a73e;
    box-shadow: 0 3px 0 #559631;
}
.button-3d.blue {
    background-color: #19afc3;
    box-shadow: 0 3px 0 #0894a7;
}
.button-3d.blue:hover {
    background-color: #14a7bb;
    box-shadow: 0 3px 0 #0a94a6;
}
.button-3d.orange {
    background-color: #f39800;
    box-shadow: 0 3px 0 #eb6100;
}
.button-3d.orange:hover {
    background-color: #e89100;
    box-shadow: 0 3px 0 #eb6100;
}
.button-3d.purple {
    background-color: #5b6bdc;
    box-shadow: 0 3px 0 #3b4cbf;
}
.button-3d.purple:hover {
    background-color: #4a5bce;
    box-shadow: 0 3px 0 #2d3dad;
}

/* =========================================================
 * 7. 横幅指定
========================================================= */
.width10p {
    width: 10%;
}
.width20p {
    width: 20%;
}
.width30p {
    width: 30%;
}
.width33p {
    width: 33.3%;
}
.width40p {
    width: 40%;
}
.width50p {
    width: 50%;
}
.width60p {
    width: 60%;
}
.width70p {
    width: 70%;
}
.width80p {
    width: 80%;
}
.width90p {
    width: 90%;
}
.width100p {
    width: 100%;
}
.width5p {
    width: 5%;
}
.width15p {
    width: 15%;
}
.width25p {
    width: 25%;
}
.width35p {
    width: 35%;
}
.width45p {
    width: 45%;
}
.width55p {
    width: 55%;
}
.width65p {
    width: 65%;
}
.width75p {
    width: 75%;
}
.width85p {
    width: 85%;
}
.width95p {
    width: 95%;
}

/* =========================================================
 * 8. リスト装飾
========================================================= */
ul.tight,
ol.tight {
    margin: 0 0 0 1.5em;
}

ol.flow1 {
    counter-reset: li; /* Initiate a counter */
    list-style: none; /* Remove default numbering */
    *list-style: decimal; /* Keep using default numbering for IE6/7 */
    padding: 0;
    margin-left: 1em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
ol.flow1 li {
    font-size: 18px;
    line-height: 30px;

    position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    *padding: .4em;
    margin: .5em 0;
    background: #eee;
    color: #444;
    text-decoration: none;
    border-radius: .3em;
    transition: all .3s ease-out;
}
ol.flow1 li:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0,0,0,.5);
    background: #009944;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}


/* =========================================================
 * 9. Q&A装飾
========================================================= */
.faq1 {
    margin-bottom: 20px;
    border-bottom: 1px dotted #ddd;
}
.faq1 .title-q {
    font-weight: bold;
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 1em;
    border: none;
}
.faq1 .icon-q,
.faq1 .icon-a {
    color: #fff;
    line-height: 1.4em;
    font-size: 1.4em;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 3px;
    margin-right: 10px;
}
.faq1 .icon-q {
    background: #009944;
}
.faq1 .icon-a {
    background: #D32F2F;
}


.faq2-q {
    padding: 10px;
    margin: 0;
    background: #eee;
}
.faq2-q .faq2-title {
    font-size: 18px;
    line-height: 38px;
    padding: 0;
    margin: 0;
    border: none;
}
.faq2-a {
    padding: 10px;
    margin: 0 0 20px 0;
    min-height: 38px;
}
.faq2-circle-no {
    font-size: 24px;
    text-align: center;
    color: #fff;
    background: #666;
    border-radius: 50%;
    height: 38px;
    width: 38px;
    line-height: 38px;
    margin: 0 10px 0 0;
    float: left;
}
.dl-faq2 {
    margin: 0;
}
.dl-faq2 dt {
    float: left;
    width: 55px;
    overflow: hidden;
    clear: left;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dl-faq2 dd {
    margin: 0 0 0 55px;
    line-height: 1.8;
}

/* =========================================================
 * 10. 引用装飾
========================================================= */
blockquote{
    font-size: 100%;
    font-style: normal;
    position: relative;
    margin: 0 1em 1.5em;
    padding: 1em;
    border: 1px solid #dddddd;
    background-color: #fafafa;
    z-index: 1;
}
blockquote p {
    position: relative;
    z-index: 3;
}
blockquote:before{
    content: "“";
    font-size: 1000%;
    line-height: 0.8em;
    font-family: 'Times New Roman' ,"ＭＳ Ｐゴシック" ,sans-serif;
    color: #F0F0F0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}


/* =========================================================
 * 11. 枠装飾
========================================================= */
.box ol, .box ul {
    margin: 0 0 0 2em;
}
.box p:last-child {
    margin: 0;
}

.box-title {
    font-size: 22px;
    color: #fff;
    background: #333;
    text-align: center;
    padding: 10px 0;
    margin: 0;
}

.box-key {
    border: 5px solid #ccc;
    padding: 15px;
}
.box-type0 {
    border: 1px solid #ccc;
    padding: 15px;
}

/* http://wp.myafi.net/css-design-frame/ */
.box-type1 {
    padding: 20px;
    background: #fff;
    border: 3px #ccc solid;
    position: relative;
    z-index: 10;
}
.box-type1:before {
    content: "";
    position: absolute;
    background: #fff;
    margin: 3px;
    border: 1px #ccc solid;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: -10;
}
.box-type2 {
    color: #fff;
    padding: 20px;
    background: #666;
    position: relative;
    z-index: 10;
}
.box-type2:before {
    content: "";
    position: absolute;
    background: #666;
    margin: 4px;
    border: 2px #fff solid;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: -10;
}
.box-type3 {
    color: #fff;
    background: #666;
    padding: 20px;
    border: 1px dashed rgba(255,255,255,0.8);
    box-shadow: 0 0 0 5px #666;
    -moz-box-shadow: 0 0 0 5px #666;
    -webkit-box-shadow: 0 0 0 5px #666;
}

.box-type4 {
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: inset 0px 0px 0px 4px rgba(0, 0, 0, 0.05);
}

/* =========================================================
* 12. 画像装飾
========================================================= */
.img-ontext {
    position: relative;
}
.img-ontext-box {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width:100%;
    color: #fff;
    background-color: rgba(0,0,0,0.8);
}
.img-ontext-text {
    text-align: center;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 0;
}


/* =========================================================
 * 13. その他装飾
========================================================= */
.tools-circle1 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    background-color: #333;
    text-align: center;
}
.tools-circle1 p {
    position: relative;
    top:50%;
    transform: translateY(-50%);
    margin: 0;
}


/* =========================================================
 * 20. フッターウィジェットのメニュー
========================================================= */

.footer-widget-menu-title {
    font-size: 120%;
    line-height: 2em;
}
.footer-widget-menu ul,
.footer-widget-menu ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 90%;
    line-height: 1.6em;
}
.footer-widget-menu li {
    margin: 0;
    padding: 0;
}
.footer-widget-menu li.footer-widget-menu-child {
    margin-left: 18px;
}
.footer-widget-logo {
    margin-bottom: 10px;
}
.footer-widget-info .fa {
    width: 26px;
    text-align: center;
}

/* =========================================================
 * 21. 1行のお知らせ
========================================================= */
ul.info1column {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.info1column li {
    border-bottom: 1px dotted #ccc;
}
.info1column li a {
    padding: 10px 10px 9px 7.5em;
    position: relative;
    display: block;
    vertical-align: middle;
}
.info1column li a:hover, .info1column li a:focus, .info1column li a:active {
    background-color: #fafafa;
}
.info1column li a .cat {
    position: absolute;
    padding: 0;
    top: 12px;
    left: 10px;
    font-size: 80%;
    color: #fff;
    width: 100px;
    text-align: center;
}
/*-- カテゴリのスラッグ毎に色を変える --*/
.info1column li a .cat {
    background: #333;
}
.info1column li a .information {
    display: block;
}
.info1column li a .information .date {
    font-size: 90%;
    margin-right: 20px;
    display: block;
    float: left;
    color: #333333;
}
.info1column li a .information .text {
    display: block;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .info1column li a {
        padding-left: 10px;
        position: static;
    }
    .info1column li a:hover, .info1column li a:focus, .info1column li a:active {
        text-decoration: none !important;
    }
    .info1column li a .cat {
        padding: 3px 10px;
        margin-right: 10px;
        position: static;
        top: 0;
        left: 0;
        display: inline;
    }
    .info1column li a .information {
        display: inline;
    }
    .info1column li a .information .date {
        margin-right: 0;
        display: inline;
        float: none;
    }
    .info1column li a .information .text {
        padding-top: 7px;
    }
    .info1column li a .information:after {
        display: none !important;
    }
}

/* =========================================================
 * 22. 2行のお知らせ
========================================================= */
.info2column {
    margin: 0;
    padding: 0;
}
.info2column .info-column {
    padding: 0 0 10px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px dotted #ccc;
}
.info2column .info-meta {
    line-height: 1em;
}
.info2column .info-meta .info-cat {
    float: left;
    text-align: center;
    width: 80px;
    margin-right: 10px;
}
.info2column .info-meta .info-date {
    display: table-cell;
    vertical-align: middle;
    font-size: 90%;
    line-height: 1.4em;
}
.info2column .info-title {
    margin-top: 5px;
}
/*-- カテゴリのスラッグ毎に色を変える --*/
.info2column .info-meta .info-cat {
    padding: 2px 6px;
    font-size: 80%;
    color: #fff;
    background: #333;
}

/* =========================================================
 * 23. サムネイル付きお知らせ　縦
========================================================= */
.show-thumbnail-title .info-meta {
    line-height: 1.5em;
}
.show-thumbnail-title .info-cat {
    padding: 2px 6px;
    font-size: 80%;
    color: #fff;
    background: #333;
}
.show-thumbnail-title .info-date {
    padding: 0 10px;
    font-size: 90%;
}


/* =========================================================
 * 30. tableのレスポンシブ対応（2列の場合に効果的）
========================================================= */
/* XSサイズ : Extra Small Devices, Phones */
@media only screen and (max-width : 768px) {
    table.table-small {
        font-size: 80%;
        letter-spacing: 0;
    }
    table.table-small tr th,
    table.table-small tr td {
        padding: 5px;
    }
    .table,
    .table-bordered {
        border: none !important;
    }
    /* tableのレスポンシブ対応（table-pcを除く） */
    table:not(.table-pc) th,
    table:not(.table-pc) td {
        width: 100%;
        display: block;
    }
    table:not(.table-pc) th {
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        background: rgba(0, 0, 0, 0.05);
        padding: 5px !important;
    }
    table:not(.table-pc) td {
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 10px 5px 20px 5px !important;
        border: none !important;
    }
    table:not(.table-pc) input,
    table:not(.table-pc) select,
    table:not(.table-pc) textarea {
        width: 100%;
    }
    /* checkboxのレスポンシブ対応 */
    table:not(.table-pc) span.wpcf7-list-item input {
        width: auto;
    }
}
/* カスタム, iPhone Retinaディスプレイ */
@media only screen and (max-width : 320px) {
    table.table-small {
        font-size: 70%;
        letter-spacing: 0;
    }
    table.table-small tr th,
    table.table-small tr td {
        padding: 5px;
    }
}

/* =========================================================
* 99. メディアクエリ
========================================================= */

/*==========  モバイル・ファーストの場合  ==========*/

/* カスタム, iPhone Retinaディスプレイ */
@media only screen and (min-width : 320px) {

}

/* XSサイズ : Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Sサイズ、タブレット : Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Mサイズ、デスクトップ : Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Lサイズ、ワイドスクリーン : Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}


/*==========  非モバイル・ファーストの場合  ==========*/

/* Lサイズ、ワイドスクリーン : Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Mサイズ、デスクトップ : Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Sサイズ、タブレット : Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* XSサイズ : Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .mfont50 {
        font-size: 50% !important;
    }
    .mfont55 {
        font-size: 55% !important;
    }
    .mfont60 {
        font-size: 60% !important;
    }
    .mfont65 {
        font-size: 65% !important;
    }
    .mfont70 {
        font-size: 70% !important;
    }
    .mfont75 {
        font-size: 75% !important;
    }
    .mfont80 {
        font-size: 80% !important;
    }
    .mfont85 {
        font-size: 85% !important;
    }
    .mfont90 {
        font-size: 90% !important;
    }
    .mfont95 {
        font-size: 95% !important;
    }
    .mfont100 {
        font-size: 100% !important;
    }
}

/* カスタム, iPhone Retinaディスプレイ */
@media only screen and (max-width : 320px) {

}
