<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*======================================================
サイト共通の設定
======================================================*/

/*-----------------------------
フォントの設定
-----------------------------*/


html {
	font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
}

body {
	font-size: 1.6rem;/* 16px */
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";　//文字詰めの設定  
}

/* スマホの時は13pxで */
@media(max-width:480px){
    body{
        font-size:1.3rem;
    }
}

/*　文字詰めの設定 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
		font-feature-settings: "pkna";
	}
}

/*------------------------------------------------
WordPress画像の配置
------------------------------------------------*/

/* 画像配置 左 */
img.alignleft {
        text-align: left;
}

/* 画像配置 中央 */
img.aligncenter {
        display: block;
        margin: 1px auto;
}

/* 画像配置 右 */
img.alignright {
        display: block;
        margin: 1px 1px 1px auto;
}


/*-----------------------------
共通の設定
-----------------------------*/

body {
	line-height: 1.75;
	color: #222;
}

li, p{
    color:#222;
}

figcaption {
	font-size: 1.1rem;
}

.att{
    font-size:1.2rem;
    line-height: 1.0em;
}

/*clearfix*/

.cf:after {
  content: ""; 
  display: block; 
  clear: both;
 }

dl dt, dl dd{
    padding:0;
    margin:0;
}

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

.resize img{
    max-width: 100vw;
}

.tel-link a:link,.tel-link a:hover,.tel-link a:active{
    text-decoration: none;
}

section,article{
    margin-bottom:60px;
}

.sentence{
    text-indent: 1em;
}

.ta th, .ta td{
    border:1px solid #999;
    padding:8px;
}

table th{
    text-align: left;
    font-weight: normal;
}

address{
    font-style: normal;
}

.fas,.far{
    margin-right:0.5rem;
}

.list-square li::before{
    content:"■";
    padding-right:0.5em;
}

.list-circle li::before{
    content:"●";
    padding-right:0.5em;
}

.room-about li{
    font-size:1.3rem;
}

.room-point-ta th{
    background: #fcfad9;
}


/*-----　　取消線の色　　-----*/

del{
    color:#f00;
}

del span{
    color:#333;
}

p{ line-break: normal; }
p{ line-break: strict; }

.cont-gray{
	background: #888c98;
	padding:20px 0 40px;
}

.cont-gray p,.cont-gray li,.cont-gray a:link,.cont-gray a:visited,.cont-gray dt,.cont-gray dd{
	color:#fff;
}

.w860{
	max-width: 860px;
	margin: 0 auto;
	padding:20px 0;
}

.w1000{
    max-width: 1000px;
    margin: 0 auto;
    padding:20px 0;
}


@media(max-width:767px){
	.w860{
		padding:20px 2%;
	}
}


/*-----------------------------
表示に関するcss
-----------------------------*/


@media screen and (max-width:768px){
    
    /*スマホのときだけ表示しない設定*/
    .s-none{
        display: none !important;
    }

    /* スマホのときだけ左寄せ */
    .s-left{
        text-align:left;    
    }
    
}

@media (min-width:769px){
    /* パソコン以上で表示しない */
    .pc-none{
        display: none !important;
    }
}


/*-----------------------------
リンク
-----------------------------*/

a:hover img{
    opacity: 0.6;
    filter: alpha(opacity=50);
    -webkit-transition:0.4s;
    transition: 0.4s;
}

a:link ,a:visited {
	color: #555;
	text-decoration:underline dotted;
}

a:hover{
	color: #999;
    text-decoration:underline dotted;
}

.post{
    text-indent:1em;
    margin-bottom:0.5em;
}


/*　この辺りにマージンだけとかフロートだけとか　*/

.mb0{
    margin-bottom: 0 !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;
}

.ml10{
    margin-left:1em !important;
}

.ml20{
    margin-left:2em !important;
}

.ml30{
    margin-left:3em !important;
}

.mr10{
    margin-right:10px !important;
}

.mr20{
    margin-right:20px !important;
}

.mr30{
    margin-right:30px !important;
}

.lh12{
    line-height: 1.2;
}

.lh15{
    line-height:1.5;
}

.alignleft {
	margin-right: 80px;
	margin-bottom: 20px;
	float: left;
}

.alignright {
	margin-left: 80px;
	margin-bottom: 20px;
	float: right;
}

.left {
	text-align: left !important;
}

.right {
    text-align: right !important;
}

.center {
    text-align: center !important;
}

/*　flexbox設定　*/


.flex-c{
    display:flex;
    justify-content: center;
}

.flex-bw{
    display:flex;
    justify-content: space-between;
}

.flex-ar{
    display:flex;
    justify-content: space-around;
}

.flex-st{
    display:flex;
    justify-content:flex-start;
}

.flex-en{
     display:flex;
    justify-content:flex-end;   
}

.fo-1{
    order:1;
}

.fo-2{
    order:2;
}

.fo-3{
    order:3;
}

.fo-4{
    order:4;
}

.fo-5{
    order:5;
}

.fo-6{
    order:6;
}


/*　font　*/

.font10 {
    font-size:10px;
	font-size: 1.0rem !important;
}

.font11{
    font-size:11px;
    font-size:1.1rem !important;
}

.font12{
    font-size:12px;
    font-size:1.2rem !important;
}

.font13{
    font-size:13px;
    font-size:1.3rem !important;
}

.font14{
    font-size:14px;
    font-size:1.4rem !important;
}

.font15{
    font-size:15px;
    font-size:1.5rem !important;
}

.font16{
    font-size:16px;
    font-size:1.6rem !important;
}

.font17{
    font-size:17px;
    font-size:1.7rem !important;
}

.font18{
    font-size:18px;
    font-size:1.8rem !important;
}

.font19{
    font-size:19px;
    font-size:1.9rem !important;
}

.font20{
    font-size:20px;
    font-size:2.0rem !important;
}

.font21{
    font-size:21px;
    font-size:2.1rem !important;
}

.font22{
    font-size:22px;
    font-size:2.2rem !important;
}

.font23{
    font-size:23px;
    font-size:2.3rem !important;
}

.font24{
    font-size:24px;
    font-size:2.4rem !important;
}

.font25{
    font-size:25px;
    font-size:2.5rem !important;
}

.font26{
    font-size:26px;
    font-size:2.6rem !important;
}

.font27{
    font-size:27px;
    font-size:2.7rem !important;
}

.font28{
    font-size:28px;
    font-size:2.8rem !important;
}

.font29{
    font-size:29px;
    font-size:2.9rem !important;
}

.font30{
    font-size:30px;
    font-size:3.0rem !important;
}



/*　よく使う色　*/

.white{
	color:#fff !important;
}

.gray{
	color:#888C97 !important;
}

.yellow{
    color:#f59700 !important;
}

.pink{
    color:#F672DA !important;
}

.opange{
	color:#FFB082 !important;
}

.green{
    color:#00a73c !important;
}

.redb{
    color:#ea0404;
    font-weight: bold;
}

.red{
    color:#df0043;
}

.blue{
    color:#3485f2;
}
</pre></body></html>