@charset "utf-8";

*{ box-sizing:border-box; }

button,label{ cursor:pointer; }

img{
    max-width:100%;
    height:auto;
}

/* レスポンシブ
----------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .pc-only{ display: none !important; /* PCのみ表示 */ }
}
@media screen and (min-width: 769px) {
    .sp-only{ display: none !important; /* SPのみ表示 */ }
}


/* 分類：レイアウト
----------------------------------------------------------------------------- */
/* インナーレイアウト */
.inner{
    width:100%;
    max-width:800px;
    margin:0 auto;
}
@media screen and (max-width:768px){
    .inner{
        width:100%;
    }
}

/* カラムレイアウト */
.col{
    width:100%;
    display:table;
}

/* ２カラム */
.col-2{
    display:table-cell;
    vertical-align:top;
    width:50%;
}
/* ３カラム */
.col-3{
    display:table-cell;
    vertical-align:top;
    width:calc(100% / 3);
}
@media screen and (max-width:768px){
    /* カラムレイアウト */
    .col{
        width:100%;
        display:block;
    }

    /* ２カラム */
    .col-2{
        display:block;
        width:100% !important;
        padding-right:0 !important;
        padding-left:0 !important;
        margin-bottom:15px;
    }
    /* ３カラム */
    .col-3{
        display:block;
        width:100% !important;
        padding-right:0 !important;
        padding-left:0 !important;
        margin-bottom:15px;
    }
    
    .col .col-2:last-child,
    .col .col-3:last-child{
        margin-bottom:0;
    }
}

/* 分類：文字・背景
----------------------------------------------------------------------------- */
/* 文字色 */
.fc-green { color:#76cbae !important; }
.fc-orange{ color:#f5c47b !important; }
.fc-pink  { color:#f9a6ae !important; }
.fc-blue  { color:#4b80c1 !important; }
.fc-purple{ color:#cd96bd !important; }
.fc-gray  { color:#808080 !important; }

/* フォント */
.ff-min{
    font-family:"游明朝体", "Yu Mincho", YuMincho, "Sawarabi Mincho","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif !important;
    font-weight:500 !important;
}

/* 強調テキスト */
.fc-strong{
    font-weight:bold;
    background: linear-gradient(transparent 30%, #fef6b2 30%);
    padding:0 5px;
}

/* 分類：インプット系
----------------------------------------------------------------------------- */
input[type="text"],
input[type="date"],
input[type="time"],
input[type="password"],
input[type="number"],
input[type="month"],
select,
textarea{
    font-family:inherit;
    border:1px solid #ccc;
    border-radius:3px;
    padding:5px 10px;
/*    -webkit-appearance: none;*/
}

select{
    cursor:pointer;
    padding-right:30px !important;
    background-repeat:no-repeat;
    background-size:10px 5px;
    background-position:right 10px center;
}
input[type="text"]{
    width:100%;
}
textarea{
    width:100%;
    min-height:100px;
    resize:vertical;
}
@media screen and (max-width: 1100px) {
    input[type="text"],
    input[type="date"],
    input[type="time"],
    input[type="password"],
    input[type="number"],
    input[type="month"],
    select,
    textarea{
        padding:5px;
    }
}


/* 分類：見出し
----------------------------------------------------------------------------- */
/* ページタイトル */
.ttl{
    padding:0 15px 15px;
    position:relative;
}
.ttl h1{
    display: inline-block;
    font-size: 18px;
    font-weight:bold;
    color:#ffa8a0;
    vertical-align:middle;
}
.ttl-btn{
    display: inline-block;
    float:right;
}
.ttl a,
.ttl button{
    display: inline-block;
    text-decoration:none;
    margin-left: 10px;
    margin-right: 0;
    margin-bottom: 0;
    vertical-align:middle;
    height:30px;
    line-height:30px;
    font-size:13px;
}

/* 大見出し */
.ttl-L{
    font-size:15px;
    font-weight:bold;
    margin:0 auto 10px;
}
.ttl-L::before{
    content: "";
    display: inline-block;
    width:20px;
    height:2px;
    margin-right: 10px;
    vertical-align:middle;
    background-color: #eb9da8;
}

@media screen and (max-width:768px){
    
}

/* 中見出し */
.ttl-M{
    
}
@media screen and (max-width:768px){
    .ttl-M{
        
    }
    
}

/* 小見出し */
.ttl-S{
    
}
@media screen and (max-width:768px){
    .ttl-S{
    
    }
}

/* 分類：テキスト
----------------------------------------------------------------------------- */
/* 一般テキスト */
.main p{
    margin-bottom:30px;
    line-height:1.7;
}
@media screen and (max-width:768px){
    .main p{
        margin-bottom:20px;
    }
}

/* 導入テキスト */
.txt-intro{
    text-align:center;
    margin:0 auto 30px;
    font-size:16px;
    line-height:1.7;
}
.txt-intro strong{
    display:block;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 2.0;
    text-align: center;
}
@media screen and (max-width:768px){
    .txt-intro{
        margin:0 auto 20px;
        font-size:14px;
    }
    .txt-intro strong{
        font-size: 17px;
        margin-bottom: 20px;
    }
}

/* 分類：ボックス
----------------------------------------------------------------------------- */

/* 通常ボックス */
.box{
    background-color:#fff;
    border-radius:10px;
    box-shadow: 0px 3px 5px -3px rgba(0,0,0,0.3);
    padding:15px 15px 5px;
    margin:0 auto 15px;
}
.box-ttl{
    font-size:16px;
    font-weight:bold;
    border-bottom:1px solid #eb9da8;
    padding:0 10px 10px;
    margin:0 auto 10px;
}

/* 通常テキスト */
.box-txt{
    padding:10px;
}

/* ワンポイントテキスト① */
.box-point01{
    color:#e67e95;
    padding:0 10px;
    margin:0 auto 10px;
}

/* ワンポイントテキスト② */
.box-point02{
    padding:10px;
    margin:0 auto 10px;
    background-color:#fcfbf2;
    border:1px solid #f5e8c6;
}

/* 日付・時間ボックス */
.box-date{
    margin:0 auto 10px;
    border:1px solid #f5e8c6;
    background-color: #fcfbf2;
    padding:0 10px;
}
.box-date table{
    width: 100%;
    
}
.box-date table tbody tr{
    border-bottom: 1px solid #f7f1e1;
}
.box-date table tbody tr:last-child{
    border-bottom:none;
}
.box-date table tbody th{
    font-weight: bold;
    padding:10px;
    vertical-align: middle;
}
.box-date table tbody td{
    padding:10px;
    vertical-align: middle;
}

/* 絞り込みボックス */
.box-search{
    margin:0 auto 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.box-search dl{
    display: table-cell;
}
.box-search dl dt,
.box-search dl dd{
    display: table-cell;
    vertical-align: middle;
}
.box-search dl dt{
    padding: 0 10px;
    font-weight: bold;
}
.box-search dl dd > .btn-normal{
    height:30px;
    line-height: 30px;
}

/* カレンダー送りボタン */
.box-search-prev,
.box-search-next{
    padding:5px;
    text-align: center;
    font-size:20px;
    vertical-align: middle;
    color:#666;
}
.box-search-prev{
    margin-right: 10px;
}
.box-search-next{
    margin-left:10px;
}

/* スタイリストボックス */
.box-img{
    margin: 0 auto 10px
}
.box-img-main{
    margin: 0 auto 30px;
    text-align: center;
}
.box-img-main img{
    width: 400px;
    height:auto;
}
.box-img-stylist dl{
    width: 100%;
    display: table;
}
.box-img-stylist dl dt,
.box-img-stylist dl dd{
    display: table-cell;
    vertical-align:middle;
    width:50%;
}
.box-img-stylist dl dt{
    text-align: right;
    padding-right: 15px;
}
.box-img-stylist dl dd{
    text-align: left;
    padding-left:15px;
}
.box-img-stylist-photo{
    display: inline-block;
    width: 150px;
    height: 150px;
    border-radius: 75px;
    overflow: hidden;
    position:relative;
}
.box-img-stylist-photo img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    max-width:99999px;
    height: 100%;
}
.box-img-stylist-name{
    font-size:18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* アコーディオンボックス */
.box-open{
    margin-bottom: 20px;
}
.box-open-ttl{
    border:1px solid #ddd;
    padding:5px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    vertical-align: middle;
    cursor: pointer;
}
.box-open-ttl::before{
    display: inline-block;
    content:"\f0d7";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size:20px;
    margin-right: 10px;
    color:#eb9da8;
}
.box-open-ttl.is-open::before{
    content:"\f0d8";
}

/* 説明文用スクロールボックス */
.box-scroll{
    border:1px solid #ddd;
    padding:15px;
    height:200px;
    overflow-y:scroll;
}
.is-enabled{
    color:#aaa;
    opacity:0.5;
    pointer-events: none;
}

/* エラー */
.box-error{
    color:#a22041;
    background-color:#fef4f4;
    padding:10px;
}
.box-error i{
    color:#ba2636;
    font-size:24px;
    margin-right:10px;
    vertical-align:middle;
    margin-top:-2px;
}

/* 分類：リンク
----------------------------------------------------------------------------- */
/* ボタン共通 */
.btn-normal,
.btn-submit,
.btn-cancel{
    min-width:120px;
    height:40px;
    line-height:40px;
    text-align:center;
    display:inline-block;
    margin:0 2.5px 10px;
    padding:0 15px;
    border:none;
    text-decoration:none;
    background-color:#666;
    color:#fff;
    font-family:inherit;
    border-radius:20px;
    font-size:15px;
}
/* ※リスト内ボタン調整 */
.tbl-list .btn-normal,
.tbl-list .btn-submit,
.tbl-list .btn-cancel{
    min-width:50px;
    height:25px;
    line-height:25px;
    border-radius: 12.5px;
    margin-bottom:0;
    font-size:10px;
}
.tbl-list .btn-normal{
    margin-bottom: 5px;
}
.btn-search{
    background: #ffa8a0;
    border: none;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
}
@media screen and (max-width:768px){
    
}

/* 送信系ボタン（.btn-submit） */
.btn-submit{
    background: rgb(255,168,160);
    background: linear-gradient(131deg, rgba(255,168,160,1) 0%, rgba(255,210,138,1) 100%);
    box-shadow: 0px 3px 5px -3px rgb(0 0 0 / 30%);
}
@media screen and (max-width:768px){
    
}

/* キャンセル系ボタン（.btn-cancel） */
.btn-cancel{
    color:#555;
    background-color:#ddd;
}

/* レイアウト：メンバーメッセージ
----------------------------------------------------------------------------- */
.member-modal{
	position:relative;
}
.member-modal-box{
	width:300px;
	height:180px;
	background-color:rgba(0,0,0,0.9);
	border-radius:5px;
	color:#fff !important;
	position:fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	z-index:8888;
	overflow:hidden;
	box-shadow:0px 0px 10px -1px rgba(0,0,0,0.6);
}

/* タイトル */
.member-modal-ttl{
	padding:5px 10px;
	text-align:center;
	font-weight:bold;
}
/* 禁止 */
.member-modal.is-error .member-modal-ttl,
.member-modal.is-error .member-modal-btn button{
	color:#fff;
	background-color:#c9234e;
}
/* 警告 */
.member-modal.is-caution .member-modal-ttl,
.member-modal.is-caution .member-modal-btn button{
	color:#fff;
	background-color:#c99c23;
}
/* 通知 */
.member-modal.is-info .member-modal-ttl,
.member-modal.is-info .member-modal-btn button{
	color:#fff;
	background-color:#83ca37;
}

/* メッセージ */
.member-modal-msg{
	padding:10px;
	margin:0 0 20px;
}

/* ボタン */
.member-modal-btn{
	text-align:center;
}
.member-modal-btn button{
	display:inline-block;
	border:none;
	padding:5px 15px;
}

/* 分類：ローディング
----------------------------------------------------------------------------- */
.loading{
    position:fixed;
    width:100%;
    height:100vh;
    z-index:599999999;
    top:0;
    left:0;
    background-color: rgba(255,255,255,0.5);
}
.loading img{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto;
}

/* 分類：リンクボックス
----------------------------------------------------------------------------- */
.link{
    margin-bottom: 15px;
}

/* タイトル */
.link-ttl{
    text-align: center;
    font-size:17px;
    font-weight: bold;
    margin-bottom: 5px;
    color:#ffa8a0;
}

/* リンクリスト */
.link ul{
    
}
.link ul li{
    border-bottom:2px solid #faf9f7;
    background-color:#fff;
}
.link ul li:last-child{
    border-bottom:none;
}
.link ul li a{
    display: block;
    text-decoration: none;
    padding:10px 15px;
    position:relative;
    vertical-align: middle;
}
.link ul li a::after{
    content:"";
    display: inline-block;
    position:absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #4f5052;
    top:calc(50% - 5px);
    right:10px;
}

/* 通知バッジ付き */
.link ul li a span{
    display: inline-block;
    font-size: 11px;
    margin-left: 10px;
    background-color: #e3446e;
    color:#fff;
    text-align: center;
    width:20px;
    height: 20px;
    line-height:20px;
    border-radius: 10px;
    vertical-align: middle;
    margin-top:-2px;
}

/* 分類：ボタン
----------------------------------------------------------------------------- */

/* 目立たせたいボタン */
.btn-L{
    width:100%;
    max-width:375px;
    height:60px;
    line-height:60px;
    color:#fff;
    font-size:20px;
    display:inline-block;
    border:none;
    text-align:center;
    border-radius:10px;
    background: linear-gradient(0deg, rgba(225,105,62,1) 0%, rgba(241,145,73,1) 100%);
    box-shadow: 0px 2px 6.72px 0.28px rgba(204, 204, 204, 0.004);
    text-decoration:none;
    font-family:inherit;
    box-shadow: 0px 2px 6.72px 0.28px rgba(204, 204, 204, 0.8);
}
.btn-L:hover{
    background: linear-gradient(180deg, rgba(225,105,62,1) 0%, rgba(241,145,73,1) 100%);
}
.btn-L::before{
    display:inline-block;
    margin-top:-3px;
    margin-right:10px;
    content:"";
    vertical-align:middle;
    background-position:left center;
    background-repeat:no-repeat;
    background-size:100% auto;
}
@media screen and (max-width:768px){
    .btn-L{
        width:100%;
        font-size:17px;
        border-radius:10px;
    }
    .btn-L::before{
        margin-right:5px;
    }
}

/* アイコン付き：書類 */
.btn-L.is-doc::before{
    width:23px;
    height:24px;
    background-image:url("/common/images/btn_doc.png");
}
/* アイコン付き：メール */
.btn-L.is-mail::before{
    width:24px;
    height:18px;
    background-image:url("/common/images/btn_mail.png");
}
/* アイコン付き：電話 */
.btn-L.is-tel{
    font-size:26px;
    font-weight:bold;
}
.btn-L.is-tel::before{
    width:24px;
    height:24px;
    background-image:url("/common/images/btn_tel.png");
}


/* 分類：テーブル
----------------------------------------------------------------------------- */
/* 詳細系テーブル */
.tbl-detail{
    background-color:#fff;
    width:100%;
    border:2px solid #EBE9E4;
    margin-bottom:10px;
}
.tbl-detail tbody th,
.tbl-detail tbody td{
    border:1px solid #ebe9e3;
    padding:10px 15px;
    font-size:11px;
}
.tbl-detail tbody th{
    background-color:#f9f9f6;
    font-weight:bold;
    vertical-align:middle;
}
.tbl-detail tbody td{
    vertical-align:top;
}
@media screen and (max-width:768px){
    
}

/* リスト系テーブル */
.tbl-list{
    background-color:#fff;
    width:100%;
    border:2px solid #EBE9E4;
}
.tbl-list thead th{
    font-size:10px;
    background-color:#333;
    color:#fff;
    padding:5px 10px;
    vertical-align:middle;
    font-weight:bold;
    border-right:1px solid #fff;
}
.tbl-list thead th:last-child{
    border-right:none;
}
.tbl-list tbody th,
.tbl-list tbody td{
    font-size:12px;
    border:1px solid #ebe9e3;
    padding:5px 10px;
}
.tbl-list tbody th{
    background-color:#f9f9f6;
    font-weight:bold;
    vertical-align:top;
}
.tbl-list tbody td{
    vertical-align:top;
}
.tyuuigaki{
    margin: 5px 0px 0px 10px;
}
@media screen and (max-width:768px){
    
}

/* 分類：カレンダーパーツ
----------------------------------------------------------------------------- */
.calendar{
    margin:0 auto 15px;
}
.calendar-tbl{
    width:100%;
    table-layout: fixed;
}

/* 月表示 */
.calendar-tbl thead th{
    padding:10px;
    font-size: 16px;
    font-weight: bold;
}

/* 曜日表示 */
.calendar-tbl tbody tr td{
    border:1px solid #eee;
    vertical-align:top;
    
}
.calendar-tbl tbody tr td button{
    display: block;
    text-decoration: none;
    border:none;
    background-color:transparent;
    vertical-align:top !important;
    width:100%;
    text-align: left;
    padding:0 !important;
    justify-content: start !important;
    align-items: start !important;
    font:inherit !important;
}
.calendar-tbl tbody tr td button span{
    font-size: 15px;
    padding:5px 5px 10px;
    vertical-align:top !important;
    display: block;
}
.calendar-tbl tbody tr td button p{
    padding:5px;
    font-size:12px;
    font-family: inherit !important;
    margin:0;
    vertical-align:top !important;
}

/* 分類：ページャー
----------------------------------------------------------------------------- */
.pager{
    text-align:center;
    margin:0 auto 30px;
    padding-top:20px;
}

.pager li{
    display:inline-block;
    margin:0 7.5px;
}
.pager li a{
    display:block;
    width:35px;
    height:35px;
    line-height:35px;
    text-decoration:none;
    background-color:#fce5ca;
    border-radius:3px;
    vertical-align:middle;
    text-align:center;
    font-weight:bold;
}
.pager li a:hover,
.pager li.is-current a{
    background-color:#fcc688;
    color:#fff;
}
@media screen and (max-width:768px){
    .pager{
        margin:0 auto 20px;
    }
    .pager li{
        margin:0 5px 5px;
    }
    .pager li a{
        display:block;
        width:30px;
        height:30px;
        line-height:30px;
    }
}



/* 分類：タブ切り替え
----------------------------------------------------------------------------- */
.tab{
    margin-bottom:20px;
}

/* タブボタン */
.tab-btn{
    text-align:center;
    margin:0 auto 10px;
    border-bottom:1px solid #fcc688;
}
.tab-btn li{
    display:inline-block;
    border:1px solid #fcc688;
    margin:0 5px -1px;
    padding:3px 3px 0;
}
.tab-btn li.is-current{
    border-bottom:1px solid #fff;
}
.tab-btn li a{
    display: block;
    background-color:transparent;
    border:none;
    padding:5px 30px;
    color:#fcc688;
    text-decoration: none;
}
.tab-btn li.is-current a{
    background-color:#fcc688;
    color:#fff;
}

/* タブコンテンツ */
.tab-main .tab-main-box{
    padding:10px;
    
}
.tab-main .tab-main-box:nth-child(n+2){
    display:none;
}
@media screen and (max-width:768px){
    
}

/* リスト系
----------------------------------------------------------------------------- */
.list-photo{
    margin:0 auto 10px;
    text-align: center;
}
.list-photo ul li{
    display: inline-block;
    margin:0 5px 15px;
}
.list-photo ul li a{
    display: block;
    position: relative;
    width: 200px;
    height: 250px;
    overflow:hidden;
}
.list-photo ul li a img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    max-width:99999px;
    height: 100%;
}


/* 画像アップローダー
----------------------------------------------------------------------------- */
.upload{
    display:inline-block;
    position:relative;
    margin:0 10px 10px 0;
}

/* プレビューエリア */
.upload-preview{
    display:block;
    border:5px solid #eee;
    width:200px;
    height:250px;
    background-image:url("/common/images/no_image.png");
    background-repeat:no-repeat;
    background-position:center center;
    background-size:125px 125px;
    cursor:pointer;
    overflow:hidden;
    position:relative;
}
.upload-preview img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    max-width:99999px;
    height: 100%;
}

.upload-input{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    text-align:center;
    padding:10px;
}
.upload-input button{
    display: inline-block;
    margin: 0 5px 5px;
    border-radius: 3px;
    padding: 5px 10px;
    font-size: 14px;
    box-shadow: 0px 1px 0px 1px #bbb;
    border:none;
    font-family:inherit;
}
.upload-input-file-btn{
    background-color: #333;
    color: #fff;
}
.upload-clear{
    background-color:#ccc;
    color:#444;
}

/* PDFアップローダー */
.upload.is-pdf{
    margin:0 !important;
}
.upload.is-pdf .upload-input{
    position:relative !important;
    padding:0 !important;
}
.upload-input-file-name{
    font-size:13px;
}

/* チェックリスト
----------------------------------------------------------------------------- */
ul.check-list li{
  border-bottom: 1px solid #ebd3d6;
  padding: 5px 0;
}
.list-add-copy {
    display: none !important;
}
.list-add li{
    padding-top: 10px;
    position: relative;
}
.list-add li.list-add-btn {
    display: block;
    width: 150px;
    margin: 0 auto;
}
.list-add li.list-add-btn {
    background-color: #fff;
    text-align: center;
}
.list-add .list-add-del {
    width: 20px;
    height: 20px;
    border: none;
    color: #555;
    background-color: #ddd;
    font-size: 15px;
    position: absolute;
    right: 0;
    top:40%;
}

/* モーダルウィンドウ
----------------------------------------------------------------------------- */
.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background-color:rgba(0,0,0,0.5);
    z-index:99999;
    overflow:hidden;
}
.modal-window{
    position:absolute;
    top:0;
    left:0;
    right: 0;
    bottom:0;
    margin:auto;
    width:950px;
    height:70vh;
    background-color:#fff;
    border-radius: 5px;
    box-shadow:0px 0px 8px -1px rgba(0,0,0,0.5);
}

.modal-window-ttl{
    text-align: center;
    font-size:18px;
    border-bottom: 1px solid #ccc;
    padding: 15px;
    position: relative;
    font-weight: bold;
    background-color: #f1f1f1;
    border-radius:5px 5px 0px 0px;
    height: 60px;
}
.modal-window-ttl::after{
    display: inline-block;
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(131deg, rgba(255,168,160,1) 0%, rgba(255,210,138,1) 100%);;
    position: absolute;
    left: calc(50% - 40px);
    bottom: -2px;
}

.modal-window-main{
    height:calc(70vh - 130px);
    overflow: scroll;
    padding:15px;
}

.modal-window-footer{
    position:absolute;
    left:0;
    bottom:0;
    text-align: center;
    padding:10px;
    width: 100%;
    background-color:#f5f5f5;
    border-radius:0px 0px 5px 5px;
    height:70px;
}

@media screen and (max-width:1000px){
    .modal-window{
        width: 90%;
        height: 80%;
    }
    .modal-window-main{

    }
    .modal-window-footer{
        height: 140px;
    }
    .box-search-area-box-list li span{
        width: 100%;
    }
}

.other-example{
    position:relative;
    bottom: 17px;
    left:350px;
    width: 200px;
}
@media screen and (max-width:768px){
    .other-example{
        position:relative;
        bottom: 17px;
        left:60%;
        width: 45%;
    }
}

.str-disp{
    font-weight:900;
    color:#ffa8a0;
}

.str-disp2{
    font-weight:600;
}