@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Cinzel|Poppins:400,700|Noto+Serif+JP&display=swap');

/* RESET
----------------------------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  white-space:normal;
  outline:0;
  background:transparent;
  line-height:1.6;
  text-align:left;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}

/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
body {
  margin: 0 auto;
  padding: 0;
  font-size: 14px;
  line-height: 1.6em;
  color: #311d22;
  height: 100%;
  font-family: "Poppins","Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background: #fff;
  /*background: #f3ecd8;*/
}


sup,sub {
  font-size: 70%;
}
sup {
  vertical-align: top;
}

.min {
  font-family: 'Cinzel','Noto Serif JP',"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* IE8〜11はメイリオ */
/*@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body {
    font-size: 14px;
    font-family: 'Segoe UI',
                 Meiryo,
                 sans-serif;
  }
}*/



@media only screen and ( max-width : 767px ) {
  body {font-size: 13px;}
}



/* ----------------------------------------------

 * アンカータグの設定

---------------------------------------------- */
a {
  outline:none;
  color: #311d22;
}

a:hover {
  text-decoration: none;
}


a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80) !important;
  -moz-opacity:0.80 !important;
  opacity:0.80 !important;
}

.clr {
  zoom:1;
  display:inline-table;
}
.clr:after {
  content:".";
  display:block;
  height:0;
  clear:both;
  visibility:hidden;
  font-size:0;
  line-height:0;
  }

* html .clr {
  height:1%;
  display:inline-table;
  display:block;
  height:1%;
}
.clr {
  display:block;
}

input,textarea {
    border-radius:0;
    line-height: 1em;
}
input[type="text"],textarea,input[type="tel"],input[type="email"],input[type="number"],input[type="password"]{
  padding:10px;
  border: none;
  margin:0;
  display: block;
  background: #fff;
  font-family: inherit;
  -webkit-appearance: none;
  font-size: inherit;
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 5px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance:textfield;
}
input[type="submit"] {
  -webkit-appearance: none;
}

textarea {
  height: 14em;
  width: 100%;
  display: block;
  resize: vertical;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

label input[type="checkbox"] + span::before {
  border-color: #00acc1;
}
label input[type="checkbox"]:checked + span::before {
  background-color: #00acc1;
}
label input[type="checkbox"] + span,
label input[type="radio"] + span {
  position: relative;
  padding: 0 5px 5px 23px;
}
label {
  position: relative;
  /*display: block;*/
  display: inline-block;
  word-break: break-all;
}
label span {
  display: inline-block;
}
label input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
label input[type="checkbox"] + span::before, label input[type="checkbox"] + span::after {
  position: absolute;
  top: 4px;
  left: 0;
  display: inline-block;
  content: '';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
label input[type="checkbox"] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 18px;
  height: 18px;
  border: 1px #c4c4c4 solid;
  background: #fff;
}
label input[type="checkbox"] + span::after {
  z-index: 1;
  margin: 3px 6px;
  width: 6px;
  height: 9px;
}
label input[type="checkbox"]:checked + span::before {
  background-color: #616161;
  border: 1px #616161 solid;
}
label input[type="checkbox"]:checked + span::after {
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}


label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
label input[type="radio"] + span::before {
  position: absolute;
  display: inline-block;
  content: '';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 22px;
}
label input[type="radio"] + span::before {
  z-index: 0;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 22px;
  height: 22px;
  border: 1px #c4c4c4 solid;
  background: #eeeeee;
}
label input[type="radio"]:checked + span::before {
  border-width: 6px;
}

.select-wrap {
    position: relative;
}
.select-wrap:before {
  content: "";
    z-index: 1;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -4px;
    height: 1em;
    line-height: 1em;
    pointer-events: none;
    font-weight: bold;
    width: 12px;
    height: 8px;
    background: url(../img/arrow.png) no-repeat center / 100%;
}
select{
    outline:none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 40px;
    padding: 8px 34px 8px 12px;
    border: none;
    color:#535353;
    width:100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}
select option{
  background-color: #fff;
  color: #333;
}
select::-ms-expand {
  display: none;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  *behavior:url(/scripts/boxsizing.htc);
}

@media(max-width:767px){
  .sp_none{display:none !important;}
}
@media print, screen and ( min-width : 768px ) {
  .sp{
    display:none;
  }
}


/* -----------------------------------------------
 * base.css
----------------------------------------------- */

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

@media only screen and ( max-width : 767px ) {
  .container {
    padding: 0 4%;
  }
  .sp_inner {
    padding: 0 4%;
  }
  .sp_box {
    margin-bottom: 50px;
  }
  .sp_sbox {
    margin-bottom: 25px;
  }
  .sp_ssbox {
    margin-bottom: 15px;
  }
  .sp_inner {
    padding: 0 20px;
  }
  .section {
    padding: 40px 0;
    margin-bottom: 0;
  }
  .br_pc {
    display: none;
  }
  .box {
    margin-bottom: 50px;
  }
  .sbox {
    margin-bottom: 25px;
  }
  .ssbox {
    margin-bottom: 15px;
  }
}

@media print, screen and ( min-width : 768px ) {
  .posL {
    float: left;
  }
  .posR {
    float: right;
  }
  .br_sp {
    display: none;
  }
  .section {
    padding: 80px 0;
  }
  .box {
    margin-bottom: 80px;
  }
  .sbox {
    margin-bottom: 40px;
  }
  .ssbox {
    margin-bottom: 20px;
  }
  .sssbox {
    margin-bottom: 10px;
  }
  .small_container {
    max-width: 750px;
    margin: 0 auto;
  }
}

/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  /*background: #dcd2b5;
  color: #fff;*/
  background: #eeeded;
  border-bottom: 1px solid #201115;
}

#header a {
  /*color: #fff;*/
}
#headerR a {
  display: block;
  text-align: center;
}
#headerR small {
  display: block;
}
#headerR .h_tel_btn span {
  line-height: 1;
}
#headerR .h_tel_btn span:before,#headerR .h_form_btn span:before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 26px;
  height: 20px;
  vertical-align: middle;
  line-height: 1;
}
#headerR .h_tel_btn span:before {
  background: url(../img/icon-tel.png) no-repeat center / 100%;
}
#headerR .h_form_btn span:before {
  background: url(../img/icon-mail.png) no-repeat center / 100%;
}
.h_tel_btn {
  /*background: #692b3a;*/
  background: #0f1057;
  color: #fff;
}
.h_tel_btn small {
  display: block;
  text-align: center;
}
.h_form_btn {
  /*background: #89702d;*/
  background: #00a2e8;
  color: #fff;
}
#header .site_discription {
  font-size: 11px;
  border-bottom: 1px solid rgba(49,29,34,.2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#header .site_discription span {
  display: inline-block;
  border: 1px solid rgba(49,29,34,.6);
  margin: 0 2px;
  padding: 4px;
  line-height: 1;
  background: #d6e9e9;
}
.is-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    padding: 0;
    width: 100%;
    z-index: 1000;
}

#h_logo {
  display: flex;
  align-items: baseline;
}
#h_logo img {
  padding: 5px;
}

/* 2020-01-31@nak ロゴ暫定設置 */
  #headerL .shop-name {
  	/*color: #ffe100;*/
  	font-weight: bold;
  	font-size: 160%;
  /*text-shadow:1px 1px 0 #0f1057, -1px -1px 0 #0f1057,
              -1px 1px 0 #0f1057, 1px -1px 0 #0f1057,
              0px 1px 0 #0f1057,  0-1px 0 #0f1057,
              -1px 0 0 #0f1057, 1px 0 0 #0f1057;*/
  }
/* /2020-01-31@nak */

@media only screen and ( max-width : 991px ) {
  #header .site_discription {
    font-size: 9px;
    padding: 10px;
    line-height: 1.2em;
    margin-bottom: 0;
    transition: .2s;
  }
  #h_logo {
    flex-direction: column;
  }
  #h_logo img {
    width: 250px;
    margin-left: 10px;
  }
  #headerL .shop-name {
  	margin-left: 10px;
  	font-size: 130%;
  }
  #h_inner {
    position: relative;
    padding: 8px 0;
    /*background: #dcd2b5;*/
    background: #fff;
    /*height: 60px;*/
    transition: .2s;
  }
  .is-scrolled#header .site_discription { /* 2020-03-04 .is-fixed#header .site_discription */
    height: 0;
    padding: 0;
    /*visibility: hidden;
    border: none;*/
    font-size: 0;
  }
  .is-scrolled#header .site_discription span { /* 2020-03-04 .is-fixed#header .site_discription span */
    padding: 0;
    border: none;
  }
  #headerR .h_tel_btn span:before,#headerR .h_form_btn span:before {
    width: 20px;
    height: 15px;
  }

  /*#header.is-fixed #h_inner {
      position: fixed !important;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
  }*/
  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 97;
    opacity: 0;
    transition: opacity .5s;
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  main {
    height: 100%;
    /*min-height: 100vh;*/
    transition: all .5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  main.open {
    transform: translateX(-250px);
  }
  .menu-trigger {
    display: inline-block;
    width: 28px;
    height: 22px;
    vertical-align: middle;
    cursor: pointer;
    position: absolute;
    top: 19px;
    right: 15px;
    z-index: 9999;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    /*background-color: #fff;*/
    background-color: #311d22;
    transition: all .5s;
  }
  .menu-trigger.active span {
    /*background-color: #fff;*/
    background-color: #311d22;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }

  nav {
    width: 250px;
    height: 100%;
    padding-top: 120px;
    /*background-color: #311d22;
    background-color: #dcd2b5;*/
    background-color: #d6e9e9;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    transform: translate(250px);
    transition: all .5s;
    z-index: 98;
  }
  nav.open {
    transform: translateZ(0);
  }
  nav li {
    color: #fff;
  }
  nav li a {
    display: block;
    padding: 20px;
  }
  #headerR {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 96;
    width: 100%;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
  }
  #headerR .h_tel_btn span {
    font-size: 18px;
  }
  #headerR small {
    font-size: 10px;
  }
  #headerR a {
    height: 60px;
    width: 50%;
    padding: 10px;
  }
}
@media only screen and ( max-width : 575px ) {
  .h_btn_icon {
    width: 20px;
  }
  #headerR .h_tel_btn span {
    font-size: 16px;
  }
  #headerR a {
    flex: auto;
    width: auto;
  }
  #h_inner {
    padding: 8px 0 0;
  }
  #h_logo {
    width: 250px;
    margin-left: 10px;
  }
  #headerL .shop-name {
  	font-size: 120%;
  }
}
@media only screen and ( max-width : 320px ) {
  #headerR .h_tel_btn span:before,#headerR .h_form_btn span:before {
    content: none;
  }
}
@media print, screen and ( min-width : 992px ) {
  #headerL {
    padding: 10px 30px;
  }
  #headerR a {
    height: 65px;
  }
  #headerR {
    width: 260px;
  }
  #headerL {
    width: calc(100% - 260px);
  }
  #headerL .shop-name {
    font-size: 140%;
  }
  #h_nav {
    font-size: 13px;
  }
  #h_nav li {
    margin: 2px 0;
    /*margin-right: 15px;*/
    padding: 0 15px;
    border-right: 1px solid #311d22;
  }
  #h_nav li:last-child {
    margin-right: 0;
    border-right: none;
  }
  #h_nav li a {
    display: block;
  }
  #h_nav li a:hover {
    text-decoration: underline;
  }
  #headerR .h_tel_btn span {
    font-size: 24px;
  }
  #headerR small {
    font-size: 11px;
  }
  #h_logo {
    display: block;
  }
  #h_logo img {
    width: 220px;
    margin-right: 20px;
  }
  #h_nav {
    max-width: calc(100% - (220px + 20px));
  }
}
@media print, screen and ( min-width : 1200px ) {
  #header .site_discription {
    padding-bottom: 15px;
    margin-bottom: 10px;
    /*margin-bottom: 15px;*/
  }
}
@media print, screen and ( min-width : 1300px ) {
  #h_nav {
    font-size: 14px;
  }
  #h_logo img {
    width: 220px;
    margin-right: 20px;
  }
  #h_nav {
    max-width: calc(100% - (268px + 20px));
  }
  #h_nav li {
    /*margin-right: 30px;*/
    padding: 0 15px;
  }
  #header .site_discription {
    font-size: 12px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  /*background: #311d22;
  color: #fff;*/
  background: #eeeded;
  /*background: #dcd2b5;*/
}
#footer a {
  /*color: #fff;*/
}
.f_logo {
  display: block;
}
#footerL p strong {
  display: block;
}
@media only screen and ( max-width : 991px ) {
  #footer {
    padding: 30px 0 90px 0;
    font-size: 12px;
    overflow: hidden;
  }
  #footerL p,#footerL p strong {
    text-align: center;
  }
  .f_logo {
    width: 180px;
    margin: 0 auto;
  }
  #f_nav {
    margin: 30px 0;
  }
  #f_nav li {
    width: 49%;
    margin-right: 2%;
    border-bottom: 1px solid rgba(255,255,255,.4);
  }
  #f_nav li:nth-child(2n) {
    margin-right: 0;
  }
  #f_nav li a {
    display: block;
    padding: 10px;
  }
  .copy {
    text-align: center;
    font-size: 12px;
  }
}
@media only screen and ( max-width : 575px ) {
  #f_nav li {
    width: 100%;
    margin-right: 0;
  }
}
@media print, screen and ( min-width : 768px ) {
}
@media print, screen and ( min-width : 992px ) {
  #footer {
    padding: 50px 0;
  }
  .copy {
    text-align: right;
  }
  #f_nav li {
    margin-left: 12px;
  }
  #f_nav li:first-child {
    margin-left: 0;
  }
}
@media print, screen and ( min-width : 1200px ) {
  #f_nav li {
    margin-left: 28px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   CONTENTS

--------------------------------------------------------------------------------------------- */
table {
  width: 100%;
}
.title span {
  display: block;
  text-align: center;
  letter-spacing: 0.15em;
}
.title span.en {
  color: #89702d;
  border-bottom: 1px solid #311d22;
  line-height: 1em;
}
.sec_ttl {
  position: relative;
}
.sec_ttl h2 {
  margin-bottom: 0;
}
.more_link {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #311d22;
}
.more_link:after {
  content: ">>";
  font-family: sans-serif;
}
.more_link:hover {
  color: #692b3a;
}
.fit-img {
  object-fit: cover;
  width: 100%;
}
.btn {
  display: block;
  color: #fff;
  /*padding: 3px;
  border: 1px solid #89702d;*/
  font-family: inherit;
  font-size: inherit;
  /*background: #00a2e8;
  background: #89702d;*/
  background: #777777;
  position: relative;
  min-width: 200px;
  margin: 0 auto;
}
.side_contact .btn {
  background: #ff7f27;
}

.btn:after {
  content: "";
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  /*border: 1px solid #1d949c;
  border: 1px solid #89702d;*/
  border: 1px solid #777777;
  top: -4px;
  left: -4px;
}
.btn span {
  display: block;
  text-align: center;
  padding: 10px;
}
.btn.large_btn span {
  padding: 20px;
  font-size: 18px;
}
@media only screen and ( max-width : 991px ) {
  h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .title span.en {
    font-size: 24px;
    padding-bottom: 5px;
  }
  .title span.jp {
    font-size: 13px;
    padding-top: 5px;
  }
  .sec_ttl {
    margin-bottom: 30px;
  }
}
@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
  .sec_ttl {
    margin-bottom: 50px;
  }
}
@media print, screen and ( min-width : 992px ) {
  h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .title span.en {
    font-size: 40px;
    padding-bottom: 10px;
  }
  .title span.jp {
    font-size: 16px;
    padding-top: 10px;
  }
}
/* ---------------------------------------------------------------------------------------------

　   クイックお問い合わせ

--------------------------------------------------------------------------------------------- */
#quick_contact {
  /*color: #fff;*/
}
.quick_contact_box label {
  display: block;
  margin-bottom: 5px;
}
@media only screen and ( max-width : 991px ) {
  #quick_pc {
  	display: none;
  }
  #quick_contact {
    padding: 20px 15px 25px 15px;
  }
  .quick_contact_ttl {
    text-align: center;
  }
  .quick_contact_ttl img {
    max-width: 200px;
  }
  .quick_contact_box {
    flex: auto;
    margin: 0 4px;
  }
  .quick_contact_btn {
    margin: 10px 0;
    text-align: center;
  }
  .quick_contact_btn .btn_go {
    height: 30px;
  }
  .quick_contact_box:last-child {
    margin-bottom: 0;
  }
}
@media print, screen and ( min-width : 992px ) {
  #quick_sp {
  	display: none;
  }
  #quick_contact {
    padding: 15px 0;
  }
  .quick_contact_box {
    flex: auto;
    margin: 0 8px;
    width: 33%;
  }
  .quick_contact_box .btn_go {
    width: 50%;
  }
  .quick_contact_box label {
    font-size: 14px;
    text-align: center;
  }
  .quick_contact_ttl img {
    max-width: 250px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   NEWS

--------------------------------------------------------------------------------------------- */
.infoList_content h3 {
  font-weight: bold;
}
.infoList_content time {
  display: block;
  color: #86777b;
}
.info-cat {
  color: #fff;
  padding: 3px;
  display: inline-block;
  text-align: center;
}
.cat-news {
  background: #676492;
}
.cat-blog {
  background: #5d926c;
}
.infoList_thumb {
  overflow: hidden;
}
.infoList_thumb img {
  transition: .2s;
}
.infoList_box a:hover .infoList_thumb img {
  transform: scale(1.1);
}

@media print, screen and ( max-width : 991px ) {
  .infoList article {
    width: 49%;
    margin-right: 2%;
    margin-top: 60px;
  }
  .infoList article:nth-child(1),.infoList article:nth-child(2) {
    margin-top: 0;
  }
  .infoList article:nth-child(2n) {
    margin-right: 0;
  }
}

@media only screen and ( max-width : 767px ) {
  .infoList article {
    width: 100%;
    margin-bottom: 30px;
    margin-top: 0;
    margin-right: 0;
  }
  .infoList article:last-child {
    margin-bottom: 0;
  }
  .infoList_box {
    margin-bottom: 20px;
  }
  .infoList_box a {
    display: flex;
  }
  .infoList_thumb {
    width: 120px;
    margin-right: 10px;
  }
  .infoList_content {
    width: calc(100% - 130px);
  }
  .infoList_content h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .infoList_content time {
    font-size: 11px;
    margin-bottom: 5px;
  }
  .info-cat {
    font-size: 10px;
    width: 80px;
  }
  .infoList_thumb img,.infoList_thumb {
    height: 80px;
  }
}
@media print, screen and ( min-width : 768px ) {
  .infoList_box a {
    display: block;
    padding-bottom: 15px;
    height: 100%;
  }
  .infoList_box a:hover {
    box-shadow: 10px 10px 15px -10px rgba(0,0,0,.3);
  }
  .infoList_content {
    padding: 0 10px;
  }
  .infoList_content h3 {
    font-size: 15px;
  }
  .infoList_content time {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .info-cat {
    font-size: 12px;
    width: 100px;
  }
  .infoList_thumb {
    margin-bottom: 10px;
  }
  .infoList_thumb img,.infoList_thumb {
    height: 110px;
  }
}
@media print, screen and ( min-width : 992px ) {
  .infoList article {
    width: 23.5%;
    margin-right: 2%;
    margin-top: 60px;
  }
  .infoList article:nth-child(1),.infoList article:nth-child(2),.infoList article:nth-child(3),.infoList article:nth-child(4) {
    margin-top: 0;
  }
  .infoList article:nth-child(4n) {
    margin-right: 0;
  }
  .infoList_thumb img,.infoList_thumb {
    height: 150px;
  }
  .infoList_content h3 {
    font-size: 17px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   物件一覧共通

--------------------------------------------------------------------------------------------- */
.propertyList_thumb {
  position: relative;
  overflow: hidden;
}
.propertyList_thumb img {
  display: block;
  transition: .2s;
}
.propertyList_box a:hover .propertyList_thumb img {
  transform: scale(1.1);
}
.propertyList_thumb .cat {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  background: #692b3a;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
}
.propertyList_tag li {
  background: #1d949c;
  color: #fff;
  /*background: #dcd2b5;*/
  text-align: center;
  border-radius: 5px;
  margin-right: 2%;
  margin-top: 5px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and ( max-width : 991px ) {
  #top .propertyList article {
    width: 49%;
    margin-right: 2%;
    margin-top: 60px;
  }
  #top .propertyList article:nth-child(1),#top .propertyList article:nth-child(2) {
    margin-top: 0;
  }
  #top .propertyList article:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and ( max-width : 766px ) {
  #top .propertyList article {
    width: 100%;
    margin-bottom: 30px;
    margin-top: 0;
    margin-right: 0;
  }
  #top .propertyList article:last-child {
    margin-bottom: 0;
  }
  .propertyList_thumb .cat {
    font-size: 10px;
    width: 100px;
  }
  .propertyList_tag li {
    font-size: 10px;
  }
}
@media print, screen and ( min-width : 768px ) {
  .propertyList_thumb .cat {
    font-size: 12px;
    width: 120px;
  }
  .propertyList_tag li {
    font-size: 12px;
  }
}
@media print, screen and ( min-width : 992px ) {
  #top .propertyList article {
    width: 23.5%;
    margin-right: 2%;
    margin-top: 60px;
  }
  #top .propertyList article:nth-child(1),#top .propertyList article:nth-child(2),#top .propertyList article:nth-child(3),#top .propertyList article:nth-child(4) {
    margin-top: 0;
  }
  #top .propertyList article:nth-child(4n) {
    margin-right: 0;
  }
}

/* ---------------------------------------------------------------------------------------------
　静的ページ　関連
--------------------------------------------------------------------------------------------- */

#privacy,#sitemap,#company {
  width: 80% !important;
  margin: 0 auto;
}

#company h3,#privacy h3 {
  font-size: 130%;
  font-weight: bold;
  margin: 20px 0;
}

#privacy h4, .about h4 {
  font-size: 120%;
  font-weight: bold;
  margin: 20px 0;
}

/* ご契約の流れ */

#procedure .step {
	position: relative;
	margin-bottom: 60px;
	padding: 20px 30px;
	border: 1px solid #311d22;
}
#procedure .step:after {
	content: "";
	background: url(../img/arrow.png) no-repeat center / 100%;
	width: 43px;
	height: 27px;
	position: absolute;
	bottom: -45px;
	left: 50%;
	margin-left: -21px;
}
#procedure .step_last:after,
#procedure .step:last-child:after {
	content: none;
}
#procedure .step:last-child {
	margin-bottom: 0;
}
#procedure .step h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  border-bottom: 1px dotted #311d22;
}
.after_procedure {
	margin-bottom: 10px;
	font-size: 16px;
}

/* ウィークリーマンションとは */
.about {
  margin-bottom: 80px;
}

.about p {
  margin-bottom: 1.6rem;
}

/*
.about h4 {
  border-bottom: 1px solid rgba(137,112,45,.15);
}
*/

#about02 h4 {
  margin-top: 2rem;
}

#about01 div img {
  max-width: 100%;
  margin-bottom: 20px;
}

@media only screen and ( max-width : 767px ) {
	#about01 div {
	  width: 100%;
	}
}
@media print, screen and ( min-width : 768px ) {
	#about01 div {
	  width: 49%;
	  margin-right: 2%;
	}
	#about01 div:last-child {
	  margin-right: 0;
	}
}

/* 会社概要 */


#company caption {
  background: #676492;
  color: #fff;
  text-align: center;
  padding: 10px;
}
#company th,#company td {
  border: 1px solid #ccc6b6;
  vertical-align: middle;
}

#company th {
  text-align: center;
  background: #e6dfcc;
  padding: 10px;
}
#company td {
  background: #fff;
  padding: 10px;
}

#company .map iframe {
  display: block;
  width: 100%;
}

/* サイトマップ */

#sitemap ul li {
  margin-bottom: 1.6rem;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
#sitemap ul li > ul {
  margin-top: 1.6rem;
}

#sitemap ul li a {
  color: #0366d6;
}

/* プライバシーポリシー */

#privacy p,
#privacy ol li{
  margin-bottom: 1.6rem;
  font-size: 16px;
  line-height: 1.8;
}

#privacy ol {
  padding:0 0 0 2em;
  margin:0;
}

#privacy ol li{
  list-style-type:none;
  list-style-position:inside;
  counter-increment: cnt;
}
  #privacy ol li:before{
    display: marker;
    content: "(" counter(cnt) ") ";
  }





/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

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