@charset "UTF-8";
/*breakpoint   641以上　768以上 */

:root {
  --c-red: red;
  --c-black: #333;
  --inner-width: 1200px;
  --c1: #b1dedb; /*ベージュ*/
  --c2: #eae6db; /*うすいベージュ*/
  --c3:#ded8e2; /*うす紫*/
  --c4:#633585; /*物件*/
  --c6:#d8e2dc; /*うすグリーン*/
  --c7:#256b3f; /*物件*/
  --c5: #e1d67e; /*サービス*/
}

/* ==============================================================================================
   Reset styles
   ============================================================================================== */
/* Document
   ========================================================================== */

html {
	font-feature-settings: "palt";
  font-family: /* "Font Awesome 5 Free", "Roboto",  */"Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "游ゴシック体", "Yu Gothic", "游ゴシック", Meiryo, "メイリオ", Osaka, "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-justify: inter-ideograph;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: var(--c-black);
  }

/* Sections
   ========================================================================== */
body {
  margin: 0;
  /*font-size:1.6rem;*/
  }

*, *::before, *::after {
  box-sizing: border-box; }
  
header{
 text-align: left;
 font-size: 1.6rem;
 background-color: var(--c1);
}

main {
  display: block;
  font-size: 1.4rem;
}

h1, h2, h3,
h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.4; }

/* Grouping content
   ========================================================================== */
address {
  font-style: normal;
  font-size: 12px;
  }

figure {
  margin: 0; }

hr {
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden; }

pre {
  font-family: monospace, monospace;
  font-size: inherit; }

em{font-style: normal;display: inline-block;}


/* Links
   ========================================================================== */
a {
  color: currentColor;
  text-decoration: underline;
  outline: 0;
  background-color: transparent;
  }
  
a:hover {
	color: var(--c-black);
	}

/* Text-level semantics
   ========================================================================== */
p {
  margin: 0; }

abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted; }

b, strong {
  font-weight: 700; }

em {font-style: normal; text-decoration: inherit;}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit; }


sup, sub {
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
  position: relative; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Lists
   ========================================================================== */
dl, ol, ul,
dt, dd, li {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-image: none; }

dt {
  font-weight: 700; }

/* Tables
   ========================================================================== */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed; 
  font-size: 1.4rem;}


td, th {
  padding: 0; }

/* Embedded content
   ========================================================================== */
img, svg,
audio, video,
canvas, iframe {
  vertical-align: middle; }



img[src$=".svg"] {
    width: 100%;
}
img {
  max-width: 100%;
  border: 0; }

svg:not(:root) {
  overflow: hidden; }
  
  
.visuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/* Forms
   ========================================================================== */
button,
input,
optgroup,
select,
textarea {
	line-height: 1.5;
	border: 1px solid #bbbbbb;
	border-radius: 5px;
  margin: 0;
  padding: 7px 10px;
  color: currentColor;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 500;
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

select{width: 100%;}
  

button,
input {
  overflow: visible; }

button{  
  padding: 7px 5px;
}
  

button,
select {
  text-transform: none; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  cursor:pointer;
  background: #ededed;
  }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: dotted 1px ButtonText; }

fieldset {
  margin: 0;
  padding: 0;
  border: 0; }

textarea {
  overflow: auto;
  resize: vertical;
  width: 100%;}

[type="checkbox"],
[type="radio"] {
  padding: 0;
  box-sizing: border-box; }

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield; }
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button; }
  

input[type="file"] {
	padding: 0;
  cursor: pointer;
  border: none;
  border-radius: 0;
}
  
  
::placeholder {
  color: #ccc;
}

/* IE */
:-ms-input-placeholder {
  color: #ccc;
}

/* Edge */
::-ms-input-placeholder {
  color: #ccc;
}

/* Interactive
   ========================================================================== */
details {
  display: block; }

summary {
  display: list-item; }

/* Misc
   ========================================================================== */
template,
[hidden] {
  display: none; }

/* ==============================================================================================
   Base styles: opinionated defaults
   ============================================================================================== */

html {
  position: relative;
  font-size: 10px;
}

body{
  text-align: center;
  line-height: 1.5;
}

h2{font-size:3rem;}
h2 a{text-decoration: none;}

h3{font-size:1.8rem;}
h4{font-size:1.6rem; font-weight: normal;}
h5{font-size:1.5rem;}

._inner{
	padding-left: 30px;
  padding-right: 30px;
  max-width: var(--inner-width);
  margin: 0 auto;
}

.flex{display: flex;}
.wrap{flex-wrap: wrap;}

.small{font-size: 1.2rem;}

.larger {
	font-size: 1.8rem;
}

.largest {
	font-size: 2rem;
}


.mt{margin-top: 2em;}

h2{
	padding-top: 5px;
	padding-bottom:10px;
}

ul.dot li{
	list-style:disc;
	margin-left: 1.5em;
	padding: 5px 0;
}

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

.aic{align-items: center;}

.btns > *{
  min-width: 250px;
  font-size: 1.6rem;
  border: 1px solid var(--c-black);
  background-color: var(--c2);
  display: block;
  text-decoration: none;
  padding: 10px 20px;
  margin: 20px;
  display: block;
  cursor: pointer;
  user-select: none;
}

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


.qm-edit a {
  border-color: var(--c-black); 
}


/* ==============================================================================================
 　header
 ============================================================================================== */
 header ._inner{
   padding-top: 20px;
   padding-bottom: 20px;
 }
 
 /* ==============================================================================================
  　#global_nav
  ============================================================================================== */
#global_nav{
  background-color: var(--c2);
}

#global_nav ul{
  display: flex;
}

#global_nav ul li a{
  display: block;
  padding: 10px 4vw;
  font-size: 1.4em;
  text-decoration: none;
}

#global_nav ul li.current{
  background-color: #fff;
}

 /* ==============================================================================================
  　main
  ============================================================================================== */
 main ._inner{
     padding-top: 50px;
     padding-bottom: 50px;
   }
   
.table_menu{
     margin: 50px auto;
     max-width: 500px;
   }
  
  
  
  
  
/* emergency
     ======================================================================================*/
   .emergency_list {
     max-width: 1040px;
     margin: 0 auto;
     padding: 0 20px;
   }
   
   .emergency_list_inner {
     border: 4px solid #d20021;
     border-radius: 10px;
     background: #fbffe1;
     padding: 10px 20px;
     text-align: center;
     font-size: 18px;
     font-weight: bold;
     box-shadow: 0px 5px 15px -4px rgba(0, 0, 0, 0.42);
   }
   
   .emergency_list_inner h3 {
     color: #d20021;
     margin-bottom: 10px;
     padding-top: 0;
     font-size: 28px;
   }
   
   .emergency_list_inner>*+* {
     margin-top: 5px!important;
   }
   
   .emergency_list_inner dl {
     display: grid;
     grid-template-columns: 6em 1fr;
     gap: 2vw;
     text-align: left;
     margin: 0;
   }
   
   .emergency_list_inner dd{
     margin-left: 0;
   }
   
   .emergency_list_inner a {
     color: #052782;
     text-decoration: none;
   }
   
   .emergency_list_inner a:hover {
     text-decoration: underline;
   }
   
   /*SP*/
   @media screen and (max-width: 767px) {
     .emergency_list_inner{
       margin-right: 60px;
     }
   }
   
   
   /*SP*/
   @media screen and (max-width: 480px) {
     .emergency_list_inner dl {
       grid-template-columns: 1fr;
     }
   }  
   
   
/* ==============================================================================================
   footer
   ============================================================================================== */
footer{
  padding-top: 30px;
	padding-bottom: 30px;
}
footer .logos{
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 10px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

footer .logos li{
	width: 240px; max-width:50%; padding: 20px;
}

footer .logos li:nth-child(4){
	width: 220px;
}

/*SP*/
@media screen and (max-width: 767px) {
  ._inner{
  	padding: 10px;
  	
  }	
}



