@charset "UTF-8";
/* Sass Document */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:100,300,400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");
html, body {
  font-size: 16px;
  font-weight: 400;
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 575px) {
  html, body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 400;
  line-height: 1.4;
}

.container-fluid {
  max-width: 1230px;
  /*　画面幅の上限　*/
  margin-left: auto;
  margin-right: auto;
}

a:hover,
a:active,
a:focus {
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}

/*******************************************************************************************

HEADER

*******************************************************************************************/
header.global_header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header.global_header nav.global_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  background-color: transparent;
  padding: 0;
  background-color: #ffffff;
  height: 90px;
}
@media screen and (max-width: 1199px) {
  header.global_header nav.global_nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    padding: 0;
    height: auto;
  }
}
header.global_header nav.global_nav img.panasonic {
  position: relative;
  top: auto;
  left: auto;
  margin-right: 1rem;
  max-width: 90px;
}
@media screen and (max-width: 1199px) {
  header.global_header nav.global_nav img.panasonic {
    width: 60px;
  }
}
header.global_header nav.global_nav h1 {
  font-size: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header.global_header nav.global_nav h1 a {
  margin-right: 10px;
  margin-bottom: 0;
}
header.global_header nav.global_nav h1 a img {
  max-width: 100%;
}
header.global_header nav.global_nav h1 span {
  font-size: 0.8rem;
  color: #ffffff;
  display: inline-block;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
header.global_header nav.global_nav div.global_menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 0rem;
}
header.global_header nav.global_nav div.global_menu ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu {
  margin-right: 2rem;
  position: relative;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu:last-of-type {
  margin-right: 0;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #000000;
  font-size: 0.875rem;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #000000;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a:hover::after {
  width: 100%;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 20px;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner {
  position: relative;
  padding: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  background-color: rgba(189, 177, 145, 0.5);
  text-align: left;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner::before {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 100%;
  border-bottom: 11px solid rgba(189, 177, 145, 0.5);
  border-left: 6px solid rgba(189, 177, 145, 0);
  border-right: 6px solid rgba(189, 177, 145, 0);
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a {
  white-space: nowrap;
  display: inline-block;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a + a {
  margin-top: 0.5rem;
}
@media screen and (max-width: 1199px) {
  header.global_header nav.global_nav div.global_menu {
    display: none;
  }
}
header.global_header nav.global_nav label.modal_toggle_btn {
  padding: 0 0.75rem;
  position: relative;
  margin-bottom: 0;
  border: none;
  display: none;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
  width: 3.75rem;
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  header.global_header nav.global_nav label.modal_toggle_btn {
    display: block;
  }
}
header.global_header nav.global_nav a.instagram,
header.global_header nav.global_nav a.facebook {
  color: #555555;
  text-decoration: none;
  font-size: 2.25rem;
  line-height: 1;
  margin-left: 1rem;
}
header.global_header nav.global_nav a.instagram {
  margin-right: 1rem;
}

@media (max-width: 1400px) and (min-width: 1200px) {
  header.global_header nav.global_nav div.global_menu ul {
    margin-right: 0rem;
  }
  header.global_header nav.global_nav div.global_menu ul li.main_menu {
    margin-right: 0.75rem;
  }
  header.global_header nav.global_nav div.global_menu ul li.main_menu a {
    font-size: 0.8125rem;
  }
  header.global_header nav.global_nav img.panasonic {
    margin-right: 0.75rem;
  }
  header.global_header nav.global_nav a.facebook, header.global_header nav.global_nav a.instagram {
    margin-left: 0.75rem;
  }
}
@media screen and (max-width: 1199px) {
  header.global_header nav.global_nav img.panasonic {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  header.global_header nav.global_nav h1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 45%;
  }
  header.global_header nav.global_nav label.modal_toggle_btn {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    margin-left: 0;
    line-height: 0;
  }
  header.global_header nav.global_nav a.instagram {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-left: 1rem;
    margin-right: 0.5rem;
    font-size: 1.75rem;
  }
  header.global_header nav.global_nav a.facebook {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-left: auto;
    margin-right: 0;
    font-size: 1.75rem;
  }
}
/******************/
input#modal_menu_flg {
  display: none;
}

div.modal_menu {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
  opacity: 0;
  pointer-events: none;
  padding: 30px;
}
input#modal_menu_flg:checked + div.modal_menu {
  opacity: 1;
  pointer-events: auto;
}
div.modal_menu div.global_menu ul {
  padding: 10% 0 0;
  margin: 0;
  list-style: none;
  font-size: 1rem;
}
div.modal_menu div.global_menu ul li a {
  display: block;
  color: #151515;
  text-decoration: none;
  padding: 0.625rem;
  border-bottom: 1px solid #999999;
}
div.modal_menu div.global_menu ul li a:hover, div.modal_menu div.global_menu ul li a:active, div.modal_menu div.global_menu ul li a:focus {
  background-color: #999999;
  color: #ffffff;
}
div.modal_menu div.global_menu ul li div a {
  padding-left: 2rem;
  border-bottom: 1px solid #CCCCCC;
}
div.modal_menu label {
  padding: 0;
  position: absolute;
  border: none;
  right: 0rem;
  top: 0rem;
  line-height: 1;
  margin-bottom: 0;
  width: 3.75rem;
  height: 3.75rem;
  cursor: pointer;
}
div.modal_menu label img {
  width: 1.625rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*******************************************************************************************

FOOTER

*******************************************************************************************/
div.global_footer footer {
  color: #151515;
  background-color: #FBFCFC;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  text-align: center;
}
div.global_footer footer div.footer_contact {
  border: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3.125rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
div.global_footer footer div.footer_contact div {
  width: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.875rem 0;
  background-color: #ffffff;
}
div.global_footer footer div.footer_contact div.telephone {
  border-right: 1px solid #dddddd;
}
div.global_footer footer div.footer_contact div.telephone em {
  margin-bottom: 0;
  font-size: 0.875rem;
  font-style: normal;
  margin-bottom: 0.625rem;
}
div.global_footer footer div.footer_contact div.telephone small {
  font-size: 0.75rem;
}
div.global_footer footer div.footer_contact div.telephone p {
  margin-bottom: 0;
  line-height: 1;
}
div.global_footer footer div.footer_contact div.telephone p a {
  color: #151515;
  font-size: 1.875rem;
  text-decoration: none;
  font-weight: bold;
}
div.global_footer footer div.footer_contact div.mailform em {
  margin-bottom: 0;
  font-size: 0.875rem;
  font-style: normal;
  margin-bottom: 0.625rem;
}
div.global_footer footer div.footer_contact div.mailform p {
  margin-bottom: 0;
  text-align: center;
}
div.global_footer footer div.footer_contact div.mailform p a.original-btn {
  border-color: #000000;
  color: #000000;
}
div.global_footer footer div.footer_contact div.mailform p a.original-btn:hover {
  background-color: #000000;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  div.global_footer footer div.footer_contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-bottom: 1.875rem;
  }
  div.global_footer footer div.footer_contact div {
    width: 100%;
    padding: 1rem;
  }
  div.global_footer footer div.footer_contact div.telephone {
    border-bottom: 1px solid #dddddd;
    border-right: none;
  }
  div.global_footer footer div.footer_contact div.telephone p a {
    font-size: 1.5rem;
  }
}
div.global_footer footer div.footer_logo {
  margin-bottom: 1.25rem;
}
div.global_footer footer div.footer_logo img {
  max-width: 18.75rem;
}
div.global_footer footer div.footer_logo + div {
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
div.global_footer footer div.footer_logo + div p {
  margin: 0;
}
div.global_footer footer div.footer_logo + div p a {
  color: #8c6d1a;
}
@media screen and (max-width: 767px) {
  div.global_footer footer div.footer_logo {
    margin-bottom: 0.625rem;
  }
  div.global_footer footer div.footer_logo img {
    width: 12.5rem;
  }
  div.global_footer footer div.footer_logo + div {
    font-size: 0.75rem;
  }
}
div.global_footer footer nav.footer_menu ul {
  margin: 0;
  padding: 1rem 0;
  list-style: none;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.8125rem;
  line-height: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
div.global_footer footer nav.footer_menu ul li + li {
  margin-left: 0.625rem;
  padding-left: 0.625rem;
  border-left: 1px solid #151515;
}
div.global_footer footer nav.footer_menu ul li a {
  color: #151515;
}
@media screen and (max-width: 767px) {
  div.global_footer footer nav.footer_menu ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    border-bottom: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  div.global_footer footer nav.footer_menu ul li {
    width: 50%;
    border-bottom: 1px solid #cccccc;
  }
  div.global_footer footer nav.footer_menu ul li + li {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  div.global_footer footer nav.footer_menu ul li:nth-of-type(odd) {
    border-right: 1px solid #cccccc;
  }
  div.global_footer footer nav.footer_menu ul li a {
    display: block;
    padding: 1em;
  }
}
@media screen and (max-width: 767px) {
  div.global_footer footer {
    padding-top: 1.875rem;
    padding-bottom: 0;
  }
}
div.global_footer .copyright {
  color: #ffffff;
  text-align: center;
  background-color: #BDB191;
  font-size: 0.75rem;
  padding: 2.5em 0;
}

/* ページトップへ戻るボタン */
#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 50;
}
#page-top a {
  text-decoration: none;
  color: #ffffff;
  background-color: rgba(21, 21, 21, 0.9);
  font-size: 1rem;
  text-align: center;
  display: block;
  width: 3.125rem;
  height: 3.125rem;
}
#page-top a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 1rem;
}
#page-top a:hover, #page-top a:active {
  color: #999999;
}

section.bottom_contact {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  background-color: rgba(36, 26, 27, 0.9);
  z-index: 20;
}
section.bottom_contact div.container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
section.bottom_contact div.container-fluid div.tel {
  text-align: left;
  line-height: 1.4;
  font-size: 0.9rem;
}
section.bottom_contact div.container-fluid div.tel span {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
}
section.bottom_contact div.container-fluid div.tel span i.fas {
  font-size: 0.875em;
}
section.bottom_contact div.container-fluid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.bottom_contact div.container-fluid ul li {
  margin-right: 15px;
  width: 180px;
  display: block;
}
section.bottom_contact div.container-fluid ul li a {
  display: block;
  width: 100%;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border: none;
  font-size: 0.9rem;
  padding: 0.8em;
}
section.bottom_contact div.container-fluid ul li a:hover {
  color: #241a1b;
  background-color: #ffffff;
}
section.bottom_contact div.container-fluid ul li a i {
  margin-right: 0.25em;
}
section.bottom_contact div.container-fluid ul li a.bottom_contact_reservation {
  background: #ec8e2c;
}
section.bottom_contact div.container-fluid ul li a.bottom_contact_reservation:hover {
  color: #ec8e2c;
  background: #fff;
}
section.bottom_contact div.container-fluid ul li a.bottom_contact_pamphlet {
  background: #4e8357;
}
section.bottom_contact div.container-fluid ul li a.bottom_contact_pamphlet:hover {
  color: #4e8357;
  background: #fff;
}
section.bottom_contact div.container-fluid ul li a.bottom_contact_form {
  background: #013892;
}
section.bottom_contact div.container-fluid ul li a.bottom_contact_form:hover {
  color: #013892;
  background: #fff;
}
section.bottom_contact div.container-fluid ul li:first-of-type {
  display: none;
}
@media screen and (max-width: 991px) {
  section.bottom_contact div.container-fluid {
    padding: 0;
  }
  section.bottom_contact div.container-fluid div.tel {
    display: none;
  }
  section.bottom_contact div.container-fluid ul {
    width: 100%;
  }
  section.bottom_contact div.container-fluid ul li {
    margin-right: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  section.bottom_contact div.container-fluid ul li + li {
    border-left: 1px solid #ffffff;
  }
  section.bottom_contact div.container-fluid ul li a {
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 1em;
    line-height: 1;
  }
  section.bottom_contact div.container-fluid ul li a i {
    margin-right: 0;
    margin-bottom: 0.5em;
  }
  section.bottom_contact div.container-fluid ul li:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  section.bottom_contact div.container-fluid ul li:last-of-type {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  section.bottom_contact div.container-fluid ul li a {
    font-size: 0.875rem;
  }
}

/*******************************************************************************************

MAIN

*******************************************************************************************/
body:not(.top-page) main {
  padding-bottom: 3rem;
}

/*****************/
/* ページタイトル */
/****************/
main div.page-title {
  background-color: #CCCCCC;
  height: 33.125rem;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: calc(100% - 90px);
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  main div.page-title {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  main div.page-title {
    height: 50vh;
  }
}
main div.page-title div.contents {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main div.page-title div.contents > h2 {
  font-size: 2rem;
  text-align: center;
  width: auto;
  margin: 0;
  padding: 25px 50px;
  display: inline-block;
  color: #ffffff;
  background-color: rgba(189, 177, 145, 0.7);
}
main div.page-title div.contents > h2.lineup {
  padding: 0;
  background-color: transparent;
}
main div.page-title div.contents > h2 span {
  display: block;
}
main div.page-title div.contents > h2 span.en {
  font-size: 2.625rem;
  font-weight: 500;
  font-family: "Roboto", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.5rem;
}
main div.page-title div.contents > h2 span.jp {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
}
main div.page-title div.contents > h2 img {
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
}
@media screen and (max-width: 767px) {
  main div.page-title div.contents > h2 span.en {
    font-size: 2.25rem;
    letter-spacing: 0.125rem;
  }
  main div.page-title div.contents > h2 span.jp {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}
main div.page-title div.contents img.company_name {
  position: absolute;
  left: -330px;
  top: 50px;
}

/***************+*/
/* ぱんくずリスト */
/****************/
nav.breadcrumb-filud {
  margin-bottom: 3.25rem;
  background-color: #F5F5F5;
}
nav.breadcrumb-filud ol.breadcrumb {
  margin: 0 auto;
  background-color: transparent;
  font-size: 0;
  padding: 0.625rem 15px;
  max-width: 1200px;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item {
  font-size: 0.75rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item a {
  color: #BDB191;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.25rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item + .breadcrumb-item::before {
  content: "|";
  padding-right: 0.25rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item.active {
  color: #BDB191;
}
@media screen and (max-width: 767px) {
  nav.breadcrumb-filud {
    margin-bottom: 3.125rem;
  }
  nav.breadcrumb-filud ol.breadcrumb {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.625rem 5%;
  }
  nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item {
    display: inline;
    font-size: 0.625rem;
  }
}

/****************/
/* サイドメニュー */
/***************/
@media screen and (max-width: 767px) {
  aside.secondary {
    margin-top: 4rem;
  }
}
aside.secondary nav.sidebar-menu {
  margin-bottom: 2rem;
  /* メニュー本体 */
}
aside.secondary nav.sidebar-menu > h3 {
  font-size: 1.125rem;
  color: #ffffff;
  background-color: #BDB191;
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
  line-height: 1;
  font-weight: normal;
  font-weight: bold;
}
aside.secondary nav.sidebar-menu > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
aside.secondary nav.sidebar-menu > ul > li {
  border-bottom: 1px dotted #999999;
  line-height: 1.2;
  padding: 1px 0;
}
aside.secondary nav.sidebar-menu > ul > li > a {
  padding: 20px 15px;
  display: block;
  text-decoration: none;
  color: #000000;
  font-size: 0.875rem;
}
aside.secondary nav.sidebar-menu > ul > li > a::before {
  padding-right: 0.5em;
  color: #BDB191;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}
aside.secondary nav.sidebar-menu > ul > li:hover > a, aside.secondary nav.sidebar-menu > ul > li:active > a, aside.secondary nav.sidebar-menu > ul > li.active > a {
  text-decoration: none;
  background-color: #EEEEEE;
}
aside.secondary nav.sidebar-menu + nav.sidebar-menu {
  margin-top: 2rem;
}
aside.secondary ul.banner_list {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
aside.secondary ul.banner_list li {
  margin-bottom: 1rem;
}
aside.secondary ul.banner_list li a {
  display: block;
  text-align: center;
}

/*******************************************************************************************

BOOTCMS　コンテンツ設定部分

*******************************************************************************************/
/********/
/*見出し*/
/*******/
.lv1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.3rem;
}
.lv1 span {
  color: #442200;
}
.lv1::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #BDB191;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .lv1 {
    font-size: 1.5rem;
  }
}

.lv2 {
  color: #333;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 0;
  position: relative;
  padding-left: 20px;
  margin-bottom: 1.3rem;
}
.lv2::before, .lv2::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 50%;
  left: 0;
}
.lv2::before {
  top: 0;
  background-color: #BDB191;
}
.lv2::after {
  bottom: 0;
  background-color: #a7a7a7;
}
@media screen and (max-width: 767px) {
  .lv2 {
    font-size: 1.125rem;
  }
}

.lv3 {
  color: #442200;
  font-size: 1.3rem;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .lv3 {
    font-size: 1.125rem;
  }
}

.lv4 {
  color: #333333;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .lv4 {
    font-size: 1.125rem;
  }
}

/*************/
/*テキストのみ*/
/************/
.text-only {
  margin-bottom: 1rem;
}
.text-only p {
  margin-bottom: 0;
}

/************/
/* 写真のみ */
/**********/
.photo-only {
  margin-bottom: 2rem;
  text-align: center;
}
.photo-only a img {
  display: inline-block;
}

/*****************/
/* 写真＋テキスト */
/****************/
.photo-and-text {
  margin-bottom: 1.5rem;
}
.photo-and-text:after {
  content: "";
  clear: both;
  display: block;
}
.photo-and-text p {
  margin-bottom: 0;
}
.photo-and-text img {
  margin-bottom: 1rem;
  max-width: 40%;
}
.photo-and-text img.float-right {
  margin-left: 1rem;
}
.photo-and-text img.float-left {
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .photo-and-text .photo-area {
    display: block;
    width: 100%;
    text-align: center;
  }
  .photo-and-text .photo-area img {
    max-width: 100%;
    margin: 0 0 1rem !important;
    float: none !important;
  }
}

/***********************/
/* 2列写真+キャプション */
/* 3列写真+キャプション */
/**********************/
.two-photo,
.three-photo {
  margin-bottom: 2rem;
}
.two-photo a img,
.three-photo a img {
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #ffffff;
}
.two-photo a:hover img,
.three-photo a:hover img {
  opacity: 0.7;
  background-color: #ffffff;
}
.two-photo .row div[class^=col],
.three-photo .row div[class^=col] {
  text-align: center;
}
.two-photo .row div[class^=col] img,
.three-photo .row div[class^=col] img {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .two-photo .row div[class^=col] + div,
.three-photo .row div[class^=col] + div {
    margin-top: 2rem;
  }
}
.two-photo .caption-title,
.three-photo .caption-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 15px;
  text-align: left;
  margin-bottom: 0;
}
.two-photo .caption-text,
.three-photo .caption-text {
  margin: 5px 0;
  line-height: 1.6;
  text-align: left;
}

/**********/
/* リスト */
/*********/
ul.counter, ol.counter, ul.dot, ol.dot, ul.none, ol.none {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.counter > li, ol.counter > li, ul.dot > li, ol.dot > li, ul.none > li, ol.none > li {
  padding-left: 2em;
  line-height: 1.8;
  position: relative;
}
ul.counter > li::before, ol.counter > li::before, ul.dot > li::before, ol.dot > li::before, ul.none > li::before, ol.none > li::before {
  display: inline-block;
  width: 2em;
  position: absolute;
  left: 0;
  color: #BDB191;
}

ul.dot > li::before, ol.dot > li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "•";
  text-align: center;
}

ul.counter, ol.counter {
  counter-reset: number;
}
ul.counter > li::before, ol.counter > li::before {
  counter-increment: number;
  content: counter(number) ".";
  text-align: right;
}

/**********/
/* ボタン */
/*********/
.btn-on {
  margin-bottom: 2rem;
}

.original-btn {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  text-align: center;
  border: 1px solid #BDB191;
  background-color: transparent;
  color: #BDB191;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  min-width: 200px;
}
.original-btn:hover, .original-btn:active, .original-btn:focus {
  text-decoration: none;
  background-color: #BDB191;
  color: #ffffff;
}
.original-btn.btn-big {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}
.original-btn.btn-small {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.original-btn.btn-blue {
  border: 1px solid #00238C;
  background-color: transparent;
  color: #00238C;
}
.original-btn.btn-blue:hover, .original-btn.btn-blue:active, .original-btn.btn-blue:focus {
  background-color: #00238C;
  color: #ffffff;
}
.original-btn.btn-green {
  border: 1px solid #006600;
  background-color: transparent;
  color: #006600;
}
.original-btn.btn-green:hover, .original-btn.btn-green:active, .original-btn.btn-green:focus {
  background-color: #006600;
  color: #ffffff;
}
.original-btn.btn-orange {
  border: 1px solid #FF8000;
  background-color: transparent;
  color: #FF8000;
}
.original-btn.btn-orange:hover, .original-btn.btn-orange:active, .original-btn.btn-orange:focus {
  background-color: #FF8000;
  color: #ffffff;
}
.original-btn.btn-gray {
  border: 1px solid #999999;
  background-color: transparent;
  color: #999999;
}
.original-btn.btn-gray:hover, .original-btn.btn-gray:active, .original-btn.btn-gray:focus {
  background-color: #999999;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .original-btn {
    width: 100%;
    min-width: none;
  }
}

/***********************************************/
/* Youtube GoogleMap 埋め込みタグ レスポンシブ化 */
/***********************************************/
.youtube-box,
.gmap-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.youtube-box iframe,
.gmap-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/************/
/* テーブル */
/***********/
table.table-standard,
table.table-flexible {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dddddd;
}
table.table-standard td,
table.table-flexible td {
  border: 1px solid #dddddd;
  padding: 1em;
}
table.table-standard th,
table.table-flexible th {
  border: 1px solid #dddddd;
  background-color: #eee;
  color: #000000;
  font-weight: normal;
  padding: 1em;
  width: 240px;
  white-space: nowrap;
}

.table-on {
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  table.table-standard th, table.table-standard td,
table.table-flexible th,
table.table-flexible td {
    padding: 0.5em;
  }
}

@media screen and (max-width: 767px) {
  table.table-flexible {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  table.table-flexible tbody, table.table-flexible tr, table.table-flexible th, table.table-flexible td {
    display: block;
    width: 100%;
    border-width: 0;
  }
  table.table-flexible th, table.table-flexible td {
    border-bottom-width: 1px;
  }

  table.table-standard {
    margin-bottom: 0;
  }
  table.table-standard th, table.table-standard td {
    white-space: nowrap;
  }
}
/********/
/* 全幅 */
/*******/
section.extend {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 2rem 15px;
}
section.extend.extend_fixed {
  background-attachment: fixed;
}
section.extend.none_space {
  padding: 0;
}

/*******************************************************************************************

トップページ

*******************************************************************************************/
body.top-page section.top_mainvisual {
  width: calc(100% - 90px);
  height: 0;
  padding-bottom: 49%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  body.top-page section.top_mainvisual {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 991px) {
  body.top-page section.top_mainvisual {
    width: 100%;
    padding-bottom: 430px;
  }
}
body.top-page section.top_mainvisual div.top_slideshow {
  width: 100%;
  min-width: 100%;
  height: 0;
  padding-bottom: 49%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
}
body.top-page section.top_mainvisual div.top_slideshow .slide {
  position: absolute;
  top: 0%;
  left: 0%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 3s ease, transform 5s linear;
  -webkit-transition: opacity 3s ease, -webkit-transform 5s linear;
  transition: opacity 3s ease, -webkit-transform 5s linear;
  transition: opacity 3s ease, transform 5s linear;
  transition: opacity 3s ease, transform 5s linear, -webkit-transform 5s linear;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.15) translate3d(0, 0, 0);
  transform: scale(1.15) translate3d(0, 0, 0);
}
body.top-page section.top_mainvisual div.top_slideshow .slide.showfase {
  opacity: 1;
  -webkit-transform: scale(1.075) translate3d(0, 0, 0) rotate(0.0001deg);
  transform: scale(1.075) translate3d(0, 0, 0) rotate(0.0001deg);
}
body.top-page section.top_mainvisual div.top_slideshow .slide.fadefase {
  opacity: 0;
  -webkit-transform: scale(1) translate3d(0, 0, 0) rotate(0.0001deg);
  transform: scale(1) translate3d(0, 0, 0) rotate(0.0001deg);
}
@media screen and (max-width: 991px) {
  body.top-page section.top_mainvisual div.top_slideshow {
    padding-bottom: 420px;
  }
}
body.top-page section.top_mainvisual div.top_photo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual div.top_photo {
    background-image: url(../img/main_visual_sp.jpg) !important;
  }
}
body.top-page section.top_mainvisual div.contents {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
body.top-page section.top_mainvisual div.contents div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: left;
  width: 80%;
  z-index: 1;
}
body.top-page section.top_mainvisual div.contents div h2.catch {
  color: #fff;
  margin: 0;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}
body.top-page section.top_mainvisual div.contents div h2.catch span {
  display: block;
}
body.top-page section.top_mainvisual div.contents div h2.catch span.main {
  font-size: 2.875rem;
  margin-bottom: 10px;
}
body.top-page section.top_mainvisual div.contents div h2.catch span.main span {
  font-size: 1.75rem;
  display: inline-block;
}
body.top-page section.top_mainvisual div.contents div h2.catch span.sub {
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual div.contents div h2.catch span.main {
    font-size: 2.25rem;
  }
  body.top-page section.top_mainvisual div.contents div h2.catch span.main span {
    font-size: 1rem;
  }
  body.top-page section.top_mainvisual div.contents div h2.catch span.sub {
    font-size: 1rem;
  }
}
body.top-page section.top_mainvisual div.contents p.scroll {
  position: absolute;
  color: #ffffff;
  bottom: 2.875rem;
  font-size: 3.125rem;
  width: 100%;
  left: 0;
  text-align: center;
  margin-bottom: 0;
  line-height: 1;
  z-index: 2;
}
body.top-page section.top_mainvisual div.contents p.scroll a {
  display: inline-block;
  width: 3.125rem;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual div.contents p.scroll {
    bottom: 0.625rem;
  }
  body.top-page section.top_mainvisual div.contents p.scroll a {
    width: 2.5rem;
  }
}
body.top-page .top_news_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
body.top-page .top_news_block h3 {
  text-align: center;
  font-size: 1.75rem;
  color: #442200;
  margin-bottom: 0;
}
body.top-page .top_news_block .news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  width: 62.5%;
  max-width: 750px;
  border-left: 1px solid #707070;
  margin-left: 2rem;
}
body.top-page .top_news_block .news_list dl.headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 0.75rem;
}
body.top-page .top_news_block .news_list dl.headline:first-of-type {
  margin-top: 0.75rem;
}
body.top-page .top_news_block .news_list dl.headline dt {
  font-weight: 400;
}
body.top-page .top_news_block .news_list dl.headline dt div.category-list {
  width: 130px;
  margin-right: 2rem;
}
body.top-page .top_news_block .news_list dl.headline dt div.category-list span {
  width: 100%;
}
body.top-page .top_news_block .news_list dl.headline dd {
  width: 50%;
  max-width: 350px;
}
body.top-page .top_news_block .news_list dl.headline dd span.new {
  display: inline-block;
  font-size: 0.75rem;
  color: #ffffff;
  background-color: #FF7373;
  margin-right: 0.5rem;
  padding: 0 0.75rem;
}
body.top-page .top_news_block .news_list dl.headline dd a {
  color: #000000;
}
body.top-page .top_news_block p.text-center {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
body.top-page .top_news_block p.text-center a.original-btn {
  min-width: 155px;
  border-color: #000000;
  color: #000000;
}
body.top-page .top_news_block p.text-center a.original-btn:hover {
  background-color: #000000;
  color: #ffffff;
}
@media screen and (max-width: 1199px) {
  body.top-page .top_news_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  body.top-page .top_news_block h3 {
    margin-bottom: 0.5em;
  }
  body.top-page .top_news_block .news_list {
    border-left: none;
    border-top: 1px solid #707070;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  body.top-page .top_news_block .news_list dl.headline dd {
    max-width: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  body.top-page .top_news_block .news_list dl.headline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    border-bottom: 1px solid #CCCCCC;
  }
  body.top-page .top_news_block .news_list dl.headline dt {
    margin-bottom: 0.25rem;
  }
  body.top-page .top_news_block .news_list dl.headline dt div.category-list {
    width: 120px;
    margin-right: 1rem;
    margin-left: 0;
  }
  body.top-page .top_news_block .news_list dl.headline dt div.category-list:empty {
    display: none;
  }
  body.top-page .top_news_block .news_list dl.headline dd {
    width: 100%;
  }
  body.top-page .top_news_block p.text-center {
    margin-top: 1.5rem;
  }
}
body.top-page h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
body.top-page h3 span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #aaa;
}
@media screen and (max-width: 767px) {
  body.top-page h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  body.top-page h3 span {
    font-size: 1.25rem;
  }
}
body.top-page p.btn-area {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  body.top-page p.btn-area {
    margin-top: 2rem;
    text-align: center;
  }
}
body.top-page main#cnt {
  margin-top: -4rem;
  padding-top: 4rem;
}
body.top-page .top_catch_block {
  background-image: url(../img/bg_top_catch.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body.top-page .top_catch_block p {
  max-width: 600px;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  font-size: 1.3125rem;
  line-height: 2.1428;
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  body.top-page .top_catch_block p {
    font-size: 1.125rem;
    padding: 3rem 0;
    margin: 0 1rem;
    max-width: none;
  }
}
body.top-page .top_navicontents a.original-btn {
  border-color: #000000;
  color: #000000;
  margin-top: 3rem;
}
body.top-page .top_navicontents a.original-btn:hover, body.top-page .top_navicontents a.original-btn:focus, body.top-page .top_navicontents a.original-btn:active {
  background-color: #000000;
  color: #ffffff;
}
body.top-page section.top_lineup_area {
  background-color: rgba(189, 177, 145, 0.12);
  padding-top: 3.375rem;
  padding-bottom: 5rem;
}
body.top-page section.top_lineup_area h4 {
  color: #442200;
  font-size: 2.625rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 3.375rem;
  letter-spacing: 0.1em;
}
body.top-page section.top_lineup_area h4 span {
  display: block;
  font-size: 1rem;
}
body.top-page section.top_lineup_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-bottom: 0;
  padding: 0;
}
body.top-page section.top_lineup_area ul li {
  width: 30%;
  max-width: 570px;
  text-align: center;
  margin-bottom: 0;
}
body.top-page section.top_lineup_area ul li img {
  max-width: 100%;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_lineup_area h4 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  body.top-page section.top_lineup_area ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body.top-page section.top_lineup_area ul li {
    width: 90%;
    margin-bottom: 3rem;
  }
  body.top-page section.top_lineup_area ul li:last-of-type {
    margin-bottom: 0;
  }
  body.top-page section.top_lineup_area ul li h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}
body.top-page .top_works_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.top-page .top_works_block > div {
  width: 50%;
  position: relative;
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.top-page .top_works_block > div::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
body.top-page .top_works_block > div p {
  position: relative;
  color: #ffffff;
  font-size: 2.8125rem;
  z-index: 2;
  margin-bottom: 2.625rem;
}
body.top-page .top_works_block > div p span {
  display: block;
  font-size: 1.25rem;
  text-align: center;
}
body.top-page .top_works_block > div a {
  z-index: 2;
  position: relative;
  display: block;
  max-width: 350px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  width: 80%;
  text-align: center;
  font-size: 0.875rem;
  padding: 0.75rem;
}
body.top-page .top_works_block > div a:hover {
  background-color: #ffffff;
  color: #000000;
}
body.top-page .top_works_block > div.total_building {
  background-image: url(../img/bg_top_works_01.jpg);
}
body.top-page .top_works_block > div.total_building::after {
  background-color: rgba(190, 183, 141, 0.59);
}
body.top-page .top_works_block > div.real_estate {
  background-image: url(../img/bg_top_works_02.jpg);
}
body.top-page .top_works_block > div.real_estate::after {
  background-color: rgba(137, 176, 188, 0.58);
}
@media screen and (max-width: 991px) {
  body.top-page .top_works_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  body.top-page .top_works_block > div {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  body.top-page .top_works_block > div {
    height: 300px;
  }
}
body.top-page a.top_seven_peace {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-image: url(../img/bg_top_seven_peace.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 110px 0;
}
body.top-page a.top_seven_peace:hover {
  opacity: 0.8;
}
@media screen and (max-width: 991px) {
  body.top-page a.top_seven_peace {
    background-position: left;
    padding: 11% 0;
  }
  body.top-page a.top_seven_peace img {
    max-width: 80%;
  }
}
body.top-page a.top_event_btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../img/bg_top_event_btn.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  padding: 1rem;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 3.875rem;
}
body.top-page a.top_event_btn:hover, body.top-page a.top_event_btn:focus, body.top-page a.top_event_btn:active {
  opacity: 0.75;
}
body.top-page a.top_event_btn.new {
  background-image: url(../img/bg_top_event_btn_new.png);
}
body.top-page a.top_event_btn::before, body.top-page a.top_event_btn::after {
  content: "";
  display: block;
  padding-bottom: 30%;
}
body.top-page a.top_event_btn div {
  /*border: 2px solid #fff;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
}
body.top-page a.top_event_btn div span:first-of-type {
  font-size: 2.625rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.25em;
}
body.top-page a.top_event_btn div span:last-of-type {
  font-size: 2rem;
  font-weight: 500;
  border: 4px solid #ffffff;
  width: 40%;
  max-width: 453px;
  text-align: center;
  padding: 0.375em 0;
}
@media screen and (max-width: 767px) {
  body.top-page a.top_event_btn div {
    padding: 1.5rem;
  }
  body.top-page a.top_event_btn div span:first-of-type {
    font-size: 1.5rem;
  }
  body.top-page a.top_event_btn div span:last-of-type {
    font-size: 1.25rem;
    width: 60%;
    max-width: 280px;
    border: 2px solid #ffffff;
  }
}
body.top-page .top_infocontents_wrap {
  margin-bottom: 62px;
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
  background-color: #F7F6F2;
}
body.top-page .top_infocontents_wrap h3 {
  font-size: 2.625rem;
  text-align: center;
  color: #442200;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}
body.top-page .top_infocontents_wrap h3 span {
  color: #442200;
  display: block;
  font-size: 1rem;
  letter-spacing: normal;
}
body.top-page .top_infocontents_wrap ul.news_list {
  margin-bottom: 3.125rem;
}
body.top-page .top_infocontents_wrap p.text-center {
  margin-bottom: 0;
}
body.top-page .top_infocontents_wrap p.text-center a.original-btn {
  border-color: #000000;
  color: #000000;
}
body.top-page .top_infocontents_wrap p.text-center a.original-btn:hover, body.top-page .top_infocontents_wrap p.text-center a.original-btn:active, body.top-page .top_infocontents_wrap p.text-center a.original-btn:focus {
  background-color: #000000;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  body.top-page .top_infocontents_wrap {
    padding-top: 2rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2rem;
  }
  body.top-page .top_infocontents_wrap h3 {
    font-size: 1.75rem;
  }
  body.top-page .top_infocontents_wrap ul.news_list {
    margin-bottom: 2rem;
  }
}

/*******************************************************************************************

お知らせ、インフォメーション

*******************************************************************************************/
/***************************/
/* 一覧表示（TOP・一覧共通） */
/***************************/
#news-list {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
#news-list dl.headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #151515;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  padding: 1.25rem 0.5rem;
  margin-bottom: 0;
}
#news-list dl.headline dt {
  white-space: nowrap;
  font-weight: 400;
}
#news-list dl.headline dd {
  margin: 0 0 0 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#news-list dl.headline dd span.new {
  display: inline-block;
  font-size: 0.75rem;
  color: #ffffff;
  background-color: #FF7373;
  margin-right: 0.5rem;
  padding: 0 0.75rem;
}
#news-list dl.headline dd a {
  color: #333;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #news-list dl.headline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 1rem;
  }
  #news-list dl.headline dt {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  #news-list dl.headline dd {
    margin-left: 0;
  }
}

ul.news_list {
  list-style: none;
  padding: 0;
  margin: 0 -0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
ul.news_list li.headline {
  text-decoration: none;
  padding: 0 0.9375rem;
  width: calc(100% / 4);
}
ul.news_list li.headline:hover, ul.news_list li.headline:active, ul.news_list li.headline:focus {
  outline: none;
}
ul.news_list li.headline a {
  color: #151515;
  color: #000000;
  font-weight: 400;
  text-decoration: none;
  display: block;
}
ul.news_list li.headline a div.photo {
  position: relative;
  margin-bottom: 1.125rem;
  overflow: hidden;
}
ul.news_list li.headline a div.photo span {
  display: block;
  width: 100%;
  padding-bottom: 72%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
ul.news_list li.headline a div.photo.new_flg::before {
  content: "NEW";
  font-size: 0.625rem;
  position: absolute;
  top: -1em;
  left: -2.5em;
  color: #ffffff;
  background-color: #E23E3E;
  z-index: 1;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  padding: 2em 2.5em 0.5em;
}
ul.news_list li.headline a div.photo.close_flg::before {
  content: "おかげさまで\a開催は終了しました。";
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: pre;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  color: #ff0000;
  background-color: rgba(255, 255, 255, 0.84);
  z-index: 3;
  border: 1px solid #bdb191;
}
@media screen and (max-width: 767px) {
  ul.news_list li.headline a div.photo.close_flg::before {
    font-size: 0.875rem;
  }
}
ul.news_list li.headline a:hover, ul.news_list li.headline a:active, ul.news_list li.headline a:focus {
  outline: none;
}
ul.news_list li.headline a:hover div.photo span, ul.news_list li.headline a:active div.photo span, ul.news_list li.headline a:focus div.photo span {
  opacity: 0.75;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
ul.news_list li.headline a div.group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
ul.news_list li.headline a div.group span.date {
  font-size: 0.875rem;
  margin-right: 1rem;
  color: #007100;
}
ul.news_list li.headline a div.group span.newscat {
  display: inline-block;
  background-color: #DCDCDB;
  color: #442200;
  font-size: 0.625rem;
}
ul.news_list li.headline a div.title {
  font-size: 0.875rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
ul.news_list li.headline a div.info p {
  font-size: 1.125rem;
  margin-bottom: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
ul.news_list li.headline a div.info span {
  display: block;
  font-size: 0.875rem;
  color: #007100;
}
@media screen and (max-width: 767px) {
  ul.news_list li.headline a div.info p {
    font-size: 1rem;
  }
  ul.news_list li.headline a div.info span {
    font-size: 0.75rem;
  }
}
ul.news_list.double {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
ul.news_list.double li {
  width: calc(100% / 2);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
ul.news_list.double li:nth-of-type(n + 3) {
  margin-top: 2rem;
}
ul.news_list.triple li {
  width: calc(100% / 3);
}
ul.news_list.triple li:nth-of-type(n + 4) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  ul.news_list {
    width: auto;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  ul.news_list.double {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    li: nth-of-type(n3);
  }
  ul.news_list.triple {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  ul.news_list.triple li:nth-of-type(n + 4) {
    margin-top: 0;
  }
  ul.news_list li.headline {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  ul.news_list li.headline:nth-of-type(n + 3) {
    margin-top: 2rem;
  }
  ul.news_list li.headline a div.photo {
    margin-bottom: 0.75rem;
  }
  ul.news_list li.headline a div.group span.date {
    width: 100%;
  }
  ul.news_list li.headline a div.group span.category {
    min-width: 5.5em;
  }
}

/**************/
/* 一覧ページ */
/**************/
.page-item .page-link {
  color: #BDB191;
}
.page-item.active .page-link {
  background-color: #BDB191;
  border-color: #BDB191;
}
.page-item a.page-link[href="list.php?page="] {
  cursor: auto;
  pointer-events: none;
  color: #FFFFFF;
  background-color: #dddddd;
}

/*********/
/*詳細画面*/
/********/
body.news-page div.content {
  word-break: break-all;
}
body.news-page div.content .close_text {
  text-align: center;
  font-size: 1.0625rem;
  color: #FF0000;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0;
}
body.news-page div.content .content-title {
  display: block;
  border-bottom: 2px solid #BDB191;
  font-weight: 400;
  font-style: normal;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
body.news-page div.content p.content-data {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-top: 5rem;
  font-size: 0.8rem;
  text-align: right;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}
body.news-page div.content p.content-data span {
  padding-right: 0.5rem;
}
body.news-page div.content p.content-data:blank {
  border-top: none;
  padding: 0;
}
body.news-page .news_slide {
  width: 100%;
  margin-bottom: 2rem;
}
body.news-page .news_slide span.prevArrow,
body.news-page .news_slide span.nextArrow {
  display: block;
  width: 1.5rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 5;
  cursor: pointer;
}
body.news-page .news_slide span.prevArrow::before,
body.news-page .news_slide span.nextArrow::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
body.news-page .news_slide span.prevArrow {
  left: 0;
}
body.news-page .news_slide span.prevArrow::before {
  content: "";
}
body.news-page .news_slide span.nextArrow {
  right: 0;
}
body.news-page .news_slide span.nextArrow::before {
  content: "";
}
body.news-page .news_slide .slide_panel {
  position: relative;
  outline: none;
}
body.news-page .news_slide .slide_panel img {
  max-width: 100%;
  margin: 0 auto;
}
body.news-page .news_slide .slide_panel p {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 0 10px;
}
body.news-page .news_slide + p {
  margin-bottom: 2rem;
}
body.news-page .pagination {
  padding: 3em;
}

div.category-list {
  font-size: 12px;
  line-height: 32px;
  display: inline-block;
  margin-left: 1rem;
}

.category {
  text-align: center;
  display: inline-block;
  padding: 0 10px;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  background-color: #bdb191 !important;
  border: none !important;
  color: #fff !important;
  width: 9em;
}

/*******************************************************************************************

メールフォーム

*******************************************************************************************/
body.form-page div.tel-number, body.form-page div.fax-number {
  display: inline-block;
  text-align: center;
  border: 1px solid #dddddd;
  padding: 1rem 0;
  width: 50%;
  max-width: 315px;
}
body.form-page div.tel-number > p, body.form-page div.fax-number > p {
  margin-bottom: 0;
  line-height: 1;
}
body.form-page div.tel-number > p:first-of-type, body.form-page div.fax-number > p:first-of-type {
  color: #BDB191;
}
body.form-page div.tel-number > p:nth-of-type(2), body.form-page div.fax-number > p:nth-of-type(2) {
  color: #BDB191;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  body.form-page div.tel-number, body.form-page div.fax-number {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: none;
    width: auto;
  }
}
body.form-page form.custom-form .form-group {
  margin-bottom: 2rem;
}
body.form-page form.custom-form .form-group label.control-label.item-name {
  display: block;
  background-color: #BDB191;
  color: #ffffff;
  padding: 0.5rem;
  font-weight: 700;
}
body.form-page form.custom-form .form-group.has-error label.control-label.item-name {
  background-color: #dc3545;
  color: #ffffff;
}
body.form-page form.custom-form .form-group.has-error .form-control {
  border-color: #dc3545;
}
body.form-page form.custom-form .form-group .form-control::-webkit-input-placeholder {
  color: #c5c5c5;
}
body.form-page form.custom-form .form-group .form-control::-moz-placeholder {
  color: #c5c5c5;
}
body.form-page form.custom-form .form-group .form-control:-ms-input-placeholder {
  color: #c5c5c5;
}
body.form-page form.custom-form .form-group .form-control::-ms-input-placeholder {
  color: #c5c5c5;
}
body.form-page form.custom-form .form-group .form-control::placeholder {
  color: #c5c5c5;
}
body.form-page form.custom-form .form-group .form-control.inline-parts {
  display: inline-block;
  width: auto;
}
body.form-page form.custom-form .form-group p.form-confirm-text {
  border: 1px solid #BDB191;
  padding: 1em 0.75em;
  margin-bottom: 0;
}
body.form-page form.custom-form#err {
  margin-top: -6rem;
  padding-top: 10rem;
}
body.form-page div.form-wrap {
  padding: 1rem;
  border: 1px solid #cccccc;
  margin-bottom: 3rem;
}
body.form-page div.form-wrap .form-group:last-of-type {
  margin-bottom: 0;
}

/*******************************************************************************************

各種タブ

*******************************************************************************************/
/***************************
全幅画像＋テキスト
***************************/
.img_left_block, .img_right_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-bottom: 7.5rem;
}
.img_left_block .imagebox, .img_right_block .imagebox {
  width: 52%;
  min-height: 620px;
  background-repeat: no-repeat;
  background-size: cover;
}
.img_left_block .imagebox.posiC, .img_right_block .imagebox.posiC {
  background-position: center;
}
.img_left_block .imagebox.posiL, .img_right_block .imagebox.posiL {
  background-position: left;
}
.img_left_block .imagebox.posiR, .img_right_block .imagebox.posiR {
  background-position: right;
}
.img_left_block .textbox, .img_right_block .textbox {
  width: 40%;
  padding: 1.5rem 6rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.img_left_block .textbox .inner h3, .img_right_block .textbox .inner h3 {
  font-size: 1.75rem;
  position: relative;
  color: #442200;
  font-family: noto serif jp;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.7;
}
.img_left_block .textbox .inner h4, .img_right_block .textbox .inner h4 {
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
}
.img_left_block .textbox .inner p, .img_right_block .textbox .inner p {
  font-size: 0.9rem;
  line-height: 2.5;
}
.img_left_block.sidemargin, .img_right_block.sidemargin {
  padding-left: 3rem;
  padding-right: 3rem;
}

.img_left_block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}

.img_right_block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

@media screen and (max-width: 991px) {
  .img_left_block, .img_right_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-bottom: 3.125rem;
  }
  .img_left_block .imagebox, .img_right_block .imagebox {
    width: 100%;
    min-height: auto;
    padding-bottom: 50%;
  }
  .img_left_block .textbox, .img_right_block .textbox {
    width: 100%;
  }
  .img_left_block .textbox .inner h3, .img_right_block .textbox .inner h3 {
    margin-left: 0;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .img_left_block .textbox .inner h4, .img_right_block .textbox .inner h4 {
    font-size: 1.125rem;
  }
  .img_left_block .textbox .inner p, .img_right_block .textbox .inner p {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .img_left_block .textbox, .img_right_block .textbox {
    padding: 1rem;
  }
}
/***************************
全幅画像＋テキスト（重なり）
***************************/
.img_over_left_block, .img_over_right_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  padding: 0 3.125rem;
}
.img_over_left_block .imagebox, .img_over_right_block .imagebox {
  width: 60%;
  min-height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
}
.img_over_left_block .imagebox.posiC, .img_over_right_block .imagebox.posiC {
  background-position: center;
}
.img_over_left_block .imagebox.posiL, .img_over_right_block .imagebox.posiL {
  background-position: left;
}
.img_over_left_block .imagebox.posiR, .img_over_right_block .imagebox.posiR {
  background-position: left;
}
.img_over_left_block .textbox, .img_over_right_block .textbox {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.img_over_left_block .textbox .inner, .img_over_right_block .textbox .inner {
  width: calc(100%+$span * 2);
  padding: 3.125rem;
  background-color: #ffffff;
}
.img_over_left_block .textbox .inner h4, .img_over_right_block .textbox .inner h4 {
  font-size: 1.5rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 1.875rem;
}
.img_over_left_block .textbox .inner h4::after, .img_over_right_block .textbox .inner h4::after {
  content: "";
  display: block;
  width: 11.25rem;
  height: 0.3125rem;
  background-color: #BDB191;
  margin-top: 0.625rem;
}
.img_over_left_block .textbox .inner p, .img_over_right_block .textbox .inner p {
  font-size: 0.875rem;
}

.img_over_left_block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}
.img_over_left_block .textbox .inner {
  margin-left: -3.125rem;
}

.img_over_right_block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}
.img_over_right_block .textbox .inner {
  margin-right: -3.125rem;
}

@media screen and (max-width: 991px) {
  .img_over_left_block, .img_over_right_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 0 1rem;
  }
  .img_over_left_block .imagebox, .img_over_right_block .imagebox {
    width: 100%;
    min-height: auto;
    padding-bottom: 50%;
  }
  .img_over_left_block .textbox, .img_over_right_block .textbox {
    width: 100%;
  }
  .img_over_left_block .textbox .inner, .img_over_right_block .textbox .inner {
    margin-left: 0;
    margin-right: 0;
    padding: 1.5625rem;
  }
  .img_over_left_block .textbox .inner h4, .img_over_right_block .textbox .inner h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  .img_over_left_block .textbox .inner h4::after, .img_over_right_block .textbox .inner h4::after {
    width: 5rem;
    height: 0.1875rem;
  }
}
/***************************
表題付き画像パネル
***************************/
.photo_board {
  position: relative;
  width: 100%;
  display: block;
  border: 0.25rem solid #BDB191;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.875rem;
}
.photo_board h4 {
  color: #ffffff;
  background-color: #BDB191;
  text-align: center;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 60%;
  padding: 1.25rem;
  font-size: 1.5rem;
}
.photo_board div.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -1.875rem;
}
.photo_board div.wrap p.photo {
  margin-bottom: 0;
  width: 48.2832%;
}
.photo_board div.wrap p.photo img {
  max-width: 100%;
}
.photo_board div.wrap p.text {
  margin-bottom: 0;
  width: 48.4978%;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .photo_board h4 {
    -webkit-transform: none;
            transform: none;
    width: 100%;
    max-width: none;
    padding: 0.375rem 0 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
  }
  .photo_board div.wrap {
    padding: 0.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-top: 0;
  }
  .photo_board div.wrap p.photo {
    width: 100%;
  }
  .photo_board div.wrap p.text {
    width: 100%;
    padding: 5%;
  }
}

/***************************
カード型パネル（説明文付き）
***************************/
.photo_card {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.photo_card figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f5f5f5;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.photo_card figure p.photo {
  width: 45%;
  margin-bottom: 0;
}
.photo_card figure p.photo img {
  max-width: 100%;
}
.photo_card figure figcaption {
  width: 55%;
  padding: 0 1.875rem;
}
.photo_card p.comment {
  padding: 1.875rem 0;
  font-size: 0.875rem;
  text-align: center;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .photo_card figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .photo_card figure p.photo {
    width: 100%;
  }
  .photo_card figure figcaption {
    width: 100%;
    padding: 1.25rem;
  }
}

/************************************
Q＆Aパネル
************************************/
dl.questionBox {
  margin-bottom: 50px;
}
dl.questionBox dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
dl.questionBox dt::before {
  content: "Q";
  color: #FFFFFF;
  background-color: #00698C;
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  text-align: center;
  line-height: 2.5rem;
}
dl.questionBox dt span {
  color: #00698C;
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
  padding-left: 0.625rem;
}
dl.questionBox dd {
  background-color: #f5f5f5;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  dl.questionBox dt::before {
    font-size: 1.25rem;
  }
  dl.questionBox dt span {
    font-size: 1.125rem;
  }
  dl.questionBox dd {
    font-size: 0.875rem;
  }
}

/************************************
サイトマップテーブル
************************************/
table.sitemap-table {
  width: 100%;
}
table.sitemap-table th,
table.sitemap-table td {
  line-height: 1.2;
  border-top: none;
  border-bottom: 1px solid #cccccc;
  padding: 20px;
}
table.sitemap-table th {
  font-size: 1rem;
  width: 50px;
  white-space: nowrap;
  font-weight: normal;
}
table.sitemap-table a {
  color: #212529;
  text-decoration: none;
}
table.sitemap-table a:hover, table.sitemap-table a:active, table.sitemap-table a:focus {
  text-decoration: underline;
}
table.sitemap-table td {
  font-size: 1rem;
  font-weight: normal;
}
table.sitemap-table td a {
  display: inline-block;
  position: relative;
  padding-left: 10px;
}
table.sitemap-table td a:not(:last-child) {
  margin-bottom: 15px;
}
table.sitemap-table td a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  color: #00698C;
}
@media screen and (max-width: 767px) {
  table.sitemap-table {
    display: block;
  }
  table.sitemap-table tbody, table.sitemap-table tr, table.sitemap-table th, table.sitemap-table td {
    display: block;
  }
  table.sitemap-table th {
    width: auto;
    white-space: normal;
    border-bottom: none;
    padding: 15px 10px;
  }
  table.sitemap-table td {
    padding: 0 20px;
    margin: 10px;
  }
  table.sitemap-table td a {
    margin-bottom: 15px;
  }
}

/****************************************
画像ギャラリー
****************************************/
.galary_wrap {
  background-color: #f5f5f5;
  padding-top: 3rem;
}
.galary_wrap ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  list-style: none;
}
.galary_wrap ul li {
  margin: 0;
  padding: 0;
  width: 22%;
}
@media screen and (max-width: 991px) {
  .galary_wrap ul li {
    width: 44%;
  }
}
@media screen and (max-width: 575px) {
  .galary_wrap ul li {
    width: 88%;
  }
}
.galary_wrap ul li a {
  display: block;
  color: #151515;
  text-decoration: none;
}
.galary_wrap ul li a figure {
  margin-bottom: 3rem;
}
.galary_wrap ul li a figure img {
  max-width: 100%;
  margin: 0;
}
.galary_wrap ul li a figure figcaption {
  position: relative;
  display: block;
}
.galary_wrap ul li a figure figcaption::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #BDB191;
  position: absolute;
  left: 50%;
  top: -2rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.galary_wrap ul li a figure figcaption::after {
  content: "";
  display: block;
  width: 2px;
  height: 3.5rem;
  background-color: #BDB191;
  position: absolute;
  left: 50%;
  top: -2rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.galary_wrap ul li a figure figcaption h4 {
  font-size: 1rem;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}
.galary_wrap ul li a figure figcaption p {
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0;
}

/****************************************
コラム
****************************************/
ul.colam_list {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
ul.colam_list li {
  width: 48%;
  display: block;
  padding: 0 1.25rem 1.25rem;
  background-color: #f5f5f5;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  ul.colam_list li {
    width: 100%;
  }
}
ul.colam_list li h4 {
  background: #BDB191;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  padding: 0.625rem;
  position: relative;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-bottom: 0;
}

/***************************
上下違いパネル
***************************/
.img_left_cross_block, .img_right_cross_block {
  position: relative;
  padding-bottom: 5rem;
  margin-bottom: 8rem;
}
.img_left_cross_block .imagebox, .img_right_cross_block .imagebox {
  width: 66.6666%;
  min-height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
}
.img_left_cross_block .imagebox.posiC, .img_right_cross_block .imagebox.posiC {
  background-position: center;
}
.img_left_cross_block .imagebox.posiL, .img_right_cross_block .imagebox.posiL {
  background-position: left;
}
.img_left_cross_block .imagebox.posiR, .img_right_cross_block .imagebox.posiR {
  background-position: left;
}
.img_left_cross_block .textbox, .img_right_cross_block .textbox {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.img_left_cross_block .textbox .inner, .img_right_cross_block .textbox .inner {
  width: 43.75%;
  max-width: 840px;
  padding: 3.125rem;
  background-color: #BDB191;
  text-align: center;
  min-height: 669px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
}
.img_left_cross_block .textbox .inner.pink, .img_right_cross_block .textbox .inner.pink {
  background-color: #F29CA5;
  color: #ffffff;
}
.img_left_cross_block .textbox .inner.orange, .img_right_cross_block .textbox .inner.orange {
  background-color: #FBBF4D;
  color: #ffffff;
}
.img_left_cross_block .textbox .inner.blue, .img_right_cross_block .textbox .inner.blue {
  background-color: #A2D6D4;
  color: #ffffff;
}
.img_left_cross_block .textbox .inner div .title, .img_right_cross_block .textbox .inner div .title {
  font-size: 2.375rem;
  margin-bottom: 3.5rem;
}
.img_left_cross_block .textbox .inner div .title span, .img_right_cross_block .textbox .inner div .title span {
  display: block;
  font-size: 1.25rem;
  color: #ffffff;
}
.img_left_cross_block .textbox .inner div .title + p, .img_right_cross_block .textbox .inner div .title + p {
  font-size: 1.25rem;
}
.img_left_cross_block .textbox .inner div .subtitle, .img_right_cross_block .textbox .inner div .subtitle {
  font-size: 1.625rem;
  margin-bottom: 2.375rem;
}
.img_left_cross_block .textbox .inner div .subtitle + p, .img_right_cross_block .textbox .inner div .subtitle + p {
  font-size: 0.875rem;
}
.img_left_cross_block .textbox .inner div a, .img_right_cross_block .textbox .inner div a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-size: 0.875rem;
  width: 90%;
  max-width: 350px;
  padding: 0.75rem;
  margin-top: 2.75rem;
}
.img_left_cross_block .textbox .inner div a:hover, .img_right_cross_block .textbox .inner div a:hover {
  background-color: #ffffff;
  color: #666666;
}

.img_left_cross_block .imagebox {
  margin-right: auto;
}
.img_left_cross_block .textbox .inner {
  margin-left: auto;
}

.img_right_cross_block .imagebox {
  margin-left: auto;
}
.img_right_cross_block .textbox .inner {
  margin-right: auto;
}

@media screen and (max-width: 991px) {
  .img_left_cross_block, .img_right_cross_block {
    padding-bottom: 0;
  }
  .img_left_cross_block .imagebox, .img_right_cross_block .imagebox {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
    right: auto;
    padding-bottom: 50%;
    min-height: auto;
  }
  .img_left_cross_block .textbox, .img_right_cross_block .textbox {
    position: relative;
    width: 100%;
    margin-bottom: 0;
  }
  .img_left_cross_block .textbox .inner, .img_right_cross_block .textbox .inner {
    margin-left: 0;
    margin-right: 0;
    padding: 3rem;
    width: 100%;
    display: block;
    max-width: none;
    min-height: auto;
  }
  .img_left_cross_block .textbox .inner div .title, .img_right_cross_block .textbox .inner div .title {
    font-size: 1.75rem;
  }
  .img_left_cross_block .textbox .inner div .title span, .img_right_cross_block .textbox .inner div .title span {
    display: block;
    font-size: 1rem;
  }
  .img_left_cross_block .textbox .inner div .title + p, .img_right_cross_block .textbox .inner div .title + p {
    font-size: 1rem;
  }
  .img_left_cross_block .textbox .inner div .subtitle, .img_right_cross_block .textbox .inner div .subtitle {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 991px) {
  .img_left_cross_block, .img_right_cross_block {
    margin-bottom: 4rem;
  }
  .img_left_cross_block .textbox .inner div .title, .img_right_cross_block .textbox .inner div .title {
    margin-bottom: 1.5rem;
  }
  .img_left_cross_block .textbox .inner div .subtitle, .img_right_cross_block .textbox .inner div .subtitle {
    margin-bottom: 1.5rem;
  }
  .img_left_cross_block .textbox .inner div a, .img_right_cross_block .textbox .inner div a {
    margin-top: 1.5rem;
  }
}
/***************************
セカンドページ移行のページ冒頭
***************************/
.second_catch {
  text-align: center;
  margin-bottom: 5rem;
}
.second_catch p.title {
  color: #442200;
  font-size: 2.25rem;
}
@media screen and (max-width: 575px) {
  .second_catch {
    margin-bottom: 3rem;
  }
  .second_catch p.title {
    font-size: 1.75rem;
  }
}

/***************************
建売一覧
***************************/
.sale_block + .sale_block {
  margin-top: 6rem;
}
.sale_block p {
  margin: 0;
}
.sale_block p.name {
  color: #402000;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 575px) {
  .sale_block p.name {
    font-size: 1.25rem;
  }
}
.sale_block p.body {
  margin-bottom: 1rem;
}
.sale_block::after {
  content: "";
  display: block;
  clear: both;
}
.sale_block [class^=sale_slide] {
  width: 46%;
  float: right;
}
@media screen and (max-width: 767px) {
  .sale_block [class^=sale_slide] {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.sale_block [class^=sale_slide] span.prevArrow,
.sale_block [class^=sale_slide] span.nextArrow {
  display: block;
  width: 1.5rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #bdb191;
  z-index: 100;
  cursor: pointer;
}
.sale_block [class^=sale_slide] span.prevArrow::before,
.sale_block [class^=sale_slide] span.nextArrow::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sale_block [class^=sale_slide] span.prevArrow {
  left: 0;
}
.sale_block [class^=sale_slide] span.prevArrow::before {
  content: "";
}
.sale_block [class^=sale_slide] span.nextArrow {
  right: 0;
}
.sale_block [class^=sale_slide] span.nextArrow::before {
  content: "";
}
.sale_block [class^=sale_slide] .slide_panel {
  position: relative;
  outline: none;
}
.sale_block [class^=sale_slide] .slide_panel img {
  max-width: 100%;
}
.sale_block [class^=sale_slide] .slide_panel p {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(189, 177, 145, 0.7);
  color: #ffffff;
}
.sale_block .sale_content {
  width: 49%;
  float: left;
}
.sale_block .sale_content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: 0.5em;
}
.sale_block .sale_content dl dt {
  font-weight: normal;
  width: 6em;
}
@media screen and (max-width: 767px) {
  .sale_block .sale_content {
    width: 100%;
  }
}
.sale_block p.url {
  padding-top: 2.5rem;
  clear: both;
  text-align: center;
}
.sale_block p.url a {
  display: inline-block;
  background-color: #BDB191;
  border: 1px solid #BDB191;
  text-decoration: none;
  color: #ffffff;
  width: 270px;
  padding: 0.675rem;
  font-weight: 100;
}
.sale_block p.url a:hover, .sale_block p.url a:active, .sale_block p.url a:focus {
  background-color: #ffffff;
  color: #BDB191;
}

/***************************
住まいの写真集
***************************/
body.example-page main div.page-title.example-title {
  overflow: hidden;
}
body.example-page main div.page-title.example-title::before {
  content: "";
  background: inherit;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  z-index: 0;
}
body.example-page .galary-list-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body.example-page .galary-list-area .galary-item {
  width: 33%;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  body.example-page .galary-list-area .galary-item {
    width: 50%;
  }
}
body.example-page .galary-list-area .galary-item a {
  display: block;
}
body.example-page .galary-list-area .galary-item a span {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
body.example-page .galary-list-area .galary-item a p.name {
  font-weight: 400;
  color: #333;
  padding: 0.5rem 0;
}
body.example-page .galary-list-area .galary-item a p.body {
  margin-bottom: 0;
}
body.example-page .galaly_slide {
  width: 100%;
  margin-bottom: 2rem;
}
body.example-page .galaly_slide span.prevArrow,
body.example-page .galaly_slide span.nextArrow {
  display: block;
  width: 1.5rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #bdb191;
  z-index: 5;
  cursor: pointer;
}
body.example-page .galaly_slide span.prevArrow::before,
body.example-page .galaly_slide span.nextArrow::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
body.example-page .galaly_slide span.prevArrow {
  left: 0;
}
body.example-page .galaly_slide span.prevArrow::before {
  content: "";
}
body.example-page .galaly_slide span.nextArrow {
  right: 0;
}
body.example-page .galaly_slide span.nextArrow::before {
  content: "";
}
body.example-page .galaly_slide .slide_panel {
  position: relative;
  outline: none;
}
body.example-page .galaly_slide .slide_panel img {
  max-width: 100%;
  max-height: 580px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  body.example-page .galaly_slide .slide_panel img {
    max-height: 300px;
  }
}
body.example-page .galaly_slide .slide_panel p {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(189, 177, 145, 0.7);
  color: #ffffff;
  padding: 0 10px;
}
body.example-page .galaly_slide + p {
  margin-bottom: 2rem;
}

/******************************************
テクノストラクチャーの家
******************************************/
div.concept_movie {
  text-align: center;
  font-weight: 600;
  margin-top: 4.75rem;
  margin-bottom: 9rem;
}
div.concept_movie a {
  display: inline-block;
  color: #ffffff;
  background-color: #0EA9BB;
  border: 2px solid #0EA9BB;
  border-radius: 10px;
  padding: 1rem;
  width: 100%;
  max-width: 480px;
  text-decoration: none;
}
div.concept_movie a:hover {
  color: #0EA9BB;
  background-color: #ffffff;
}

.feature {
  position: relative;
  margin-bottom: 0;
  padding: 4rem 15px;
}
.feature p {
  padding-left: 3rem;
}
.feature p span.number {
  content: "01";
  position: absolute;
  font-size: 5rem;
  right: 100%;
}
@media (max-width: 1380px) {
  .feature p span.number {
    position: relative;
    right: auto;
    line-height: 1.2;
  }
}
.feature p span.title {
  display: block;
  font-size: 1.4rem;
  color: #442200;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.feature img.float-right {
  margin-left: 4.75rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .feature p {
    padding-left: 0;
    padding-right: 0;
  }
  .feature p span.number {
    font-size: 2.5rem;
  }
  .feature p span.title {
    font-size: 1.25rem;
  }
  .feature img.float-right {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
}

/******************************************
フォルサーカ
******************************************/
.forcasa_catch {
  line-height: 2.625;
  text-align: center;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .forcasa_catch {
    margin-top: 3rem;
  }
}

section.extend.forcasa_formula {
  padding: 9.5rem 15px;
  margin-bottom: 7rem;
  margin-top: 7rem;
}
section.extend.forcasa_formula img {
  display: block;
  margin: 0 auto;
}
section.extend.forcasa_formula img[src$="pc.svg"] {
  display: block;
}
section.extend.forcasa_formula img[src$="sp.svg"] {
  display: none;
}
section.extend.forcasa_formula img[src$="answer.svg"] {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  section.extend.forcasa_formula {
    margin-bottom: 3rem;
    margin-top: 3rem;
    padding: 3.5rem 15px;
  }
  section.extend.forcasa_formula img[src$="pc.svg"] {
    display: none;
  }
  section.extend.forcasa_formula img[src$="sp.svg"] {
    display: block;
    max-width: 60%;
  }
}

.forcasa_recipe_text {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 6rem;
  font-weight: 500;
}

.forcasa_recipe_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7.5rem;
}
.forcasa_recipe_item div.contents {
  margin-left: 2rem;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.forcasa_recipe_item div.contents h4 {
  font-size: 1.375rem;
  font-weight: 600;
}
.forcasa_recipe_item div.contents p {
  margin-bottom: 3.75rem;
}
.forcasa_recipe_item div.contents figure {
  text-align: left;
  margin: 0;
}
.forcasa_recipe_item div.contents figure img {
  max-width: 100%;
}
.forcasa_recipe_item div.contents figure img[src$="pc.png"] {
  display: inline;
}
.forcasa_recipe_item div.contents figure img[src$="sp.png"] {
  display: none;
}
@media screen and (max-width: 767px) {
  .forcasa_recipe_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .forcasa_recipe_item div.number {
    margin-bottom: 1rem;
  }
  .forcasa_recipe_item div.number img {
    max-width: 120px;
  }
  .forcasa_recipe_item div.contents {
    margin-left: 0;
  }
  .forcasa_recipe_item div.contents h4 {
    font-size: 1.125rem;
  }
  .forcasa_recipe_item div.contents p {
    margin-bottom: 2rem;
  }
  .forcasa_recipe_item div.contents figure img[src$="pc.png"] {
    display: none;
  }
  .forcasa_recipe_item div.contents figure img[src$="sp.png"] {
    display: inline;
  }
}

/******************************************
TSUMUGIE
******************************************/
.tsumugie_catch {
  text-align: center;
  margin-bottom: 4.875rem;
}
.tsumugie_catch h3 {
  margin-bottom: 3rem;
}

.tsumugie_series div.title h3, section.extend.tsumugie_design h3, .tsumugie_build h3, section.extend.tsumugie_performance h3 {
  font-size: 3rem;
  text-align: center;
  position: relative;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-weight: 500;
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
}
.tsumugie_series div.title h3::after, section.extend.tsumugie_design h3::after, .tsumugie_build h3::after, section.extend.tsumugie_performance h3::after {
  content: "";
  display: block;
  width: 100px;
  border-top-width: 1px;
  border-top-style: solid;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.tsumugie_series div.title h3 + p, section.extend.tsumugie_design h3 + p, .tsumugie_build h3 + p, section.extend.tsumugie_performance h3 + p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.625rem;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
}
@media screen and (max-width: 767px) {
  .tsumugie_series div.title h3, section.extend.tsumugie_design h3, .tsumugie_build h3, section.extend.tsumugie_performance h3 {
    font-size: 2rem;
  }
  .tsumugie_series div.title h3 + p, section.extend.tsumugie_design h3 + p, .tsumugie_build h3 + p, section.extend.tsumugie_performance h3 + p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

section.extend.tsumugie_performance {
  padding-top: 4rem;
  padding-bottom: 7rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  section.extend.tsumugie_performance {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
  }
}
section.extend.tsumugie_performance h3 {
  color: #ffffff;
}
section.extend.tsumugie_performance h3::after {
  border-top-color: #ffffff;
}
section.extend.tsumugie_performance h3 + p {
  color: #ffffff;
}
section.extend.tsumugie_performance ul.performance_list {
  list-style: none;
  margin: 0 -20px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.extend.tsumugie_performance ul.performance_list li {
  width: 33%;
  padding: 10px;
}
section.extend.tsumugie_performance ul.performance_list li img {
  max-width: 100%;
  margin-bottom: 1rem;
}
section.extend.tsumugie_performance ul.performance_list li h4 {
  text-align: center;
  font-size: 1.375rem;
  color: #ffffff;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  margin-bottom: 1rem;
  letter-spacing: 0.15rem;
}
section.extend.tsumugie_performance ul.performance_list li h4 span {
  display: block;
  color: #E8D9B7;
  margin-bottom: 0.625rem;
}
section.extend.tsumugie_performance ul.performance_list li p {
  line-height: 1.68725;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  section.extend.tsumugie_performance ul.performance_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  section.extend.tsumugie_performance ul.performance_list li {
    width: 100%;
    margin-bottom: 3rem;
  }
  section.extend.tsumugie_performance ul.performance_list li:last-of-type {
    margin-bottom: 0;
  }
  section.extend.tsumugie_performance ul.performance_list li img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.tsumugie_build h3 {
  color: #6E6464;
}
.tsumugie_build h3::after {
  border-top-color: #6E6464;
}
.tsumugie_build h3 + p {
  color: #6E6464;
}
.tsumugie_build .photo-only {
  margin-bottom: 4.125rem;
}
.tsumugie_build h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tsumugie_build h4 span {
  display: block;
  font-size: 2rem;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  position: relative;
  padding-left: 2.5em;
  padding-right: 1rem;
  letter-spacing: 0.11em;
}
.tsumugie_build h4 span::before {
  font-family: Roboto;
  font-size: 1.625em;
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 1;
}
.tsumugie_build h4::after {
  content: "";
  display: block;
  border-top: 1px solid #CCCCCC;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.tsumugie_build h4.ttl01 {
  color: #F29DA6;
}
.tsumugie_build h4.ttl01 span::before {
  content: "01";
}
.tsumugie_build h4.ttl01::after {
  border-top-color: #F29DA6;
}
.tsumugie_build h4.ttl02 {
  color: #F6AC1D;
}
.tsumugie_build h4.ttl02 span::before {
  content: "02";
}
.tsumugie_build h4.ttl02::after {
  border-top-color: #F6AC1D;
}
.tsumugie_build h4.ttl03 {
  color: #85CCC9;
}
.tsumugie_build h4.ttl03 span::before {
  content: "03";
}
.tsumugie_build h4.ttl03::after {
  border-top-color: #85CCC9;
}
.tsumugie_build h4 + p {
  font-size: 1.25rem;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  margin-bottom: 2.625rem;
}
@media screen and (max-width: 767px) {
  .tsumugie_build h4 span {
    font-size: 1.5rem;
  }
  .tsumugie_build h4 + p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
.tsumugie_build .two-photo {
  margin-bottom: 11rem;
}
.tsumugie_build .two-photo:last-of-type {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .tsumugie_build .two-photo {
    margin-bottom: 5rem;
  }
  .tsumugie_build .two-photo:last-of-type {
    margin-bottom: 2rem;
  }
}

section.extend.tsumugie_design {
  padding-top: 6.5rem;
  padding-bottom: 9.5rem;
}
@media screen and (max-width: 767px) {
  section.extend.tsumugie_design {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
}
section.extend.tsumugie_design h3 {
  color: #6E6464;
}
section.extend.tsumugie_design h3::after {
  border-top-color: #E7D8B6;
}
section.extend.tsumugie_design h3 + p {
  color: #6E6464;
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  section.extend.tsumugie_design h3 + p {
    margin-bottom: 3rem;
  }
}

.tsumugie_series div.title {
  background-color: #CCB98F;
  text-align: center;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  margin-bottom: 4rem;
}
.tsumugie_series div.title h3 {
  color: #6E6464;
  padding-bottom: 0;
  margin-bottom: 0.875rem;
}
.tsumugie_series div.title h3::after {
  content: none;
}
.tsumugie_series div.title h3 + p {
  color: #6E6464;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .tsumugie_series div.title {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.tsumugie_series .series {
  margin-bottom: 7rem;
}
.tsumugie_series .series figure {
  width: 60%;
  margin-right: auto;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  background-size: cover;
}
.tsumugie_series .series figure img {
  max-width: 100%;
}
.tsumugie_series .series .explain {
  background-color: rgba(204, 204, 204, 0.9);
  padding: 2.6rem 2.3125rem 2.25rem 4.5rem;
  width: 57%;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-top: -24%;
  color: #6E6464;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
}
.tsumugie_series .series .explain h4 {
  font-size: 2.25rem;
}
.tsumugie_series .series .explain h4 + p {
  font-size: 1.25rem;
}
.tsumugie_series .series .explain ul {
  list-style: none;
  margin: 0 0;
  padding: 0;
  font-size: 0;
}
.tsumugie_series .series .explain ul li {
  font-size: 1.25rem;
}
.tsumugie_series .series .explain ul li::before {
  content: "・";
}
.tsumugie_series .series .explain p.price {
  margin-top: 1rem;
  text-align: right;
  font-size: 1.25rem;
  margin-bottom: 0;
}
.tsumugie_series .series.nomal .explain {
  background-color: rgba(187, 207, 227, 0.9);
}
.tsumugie_series .series.aqua .explain {
  background-color: rgba(227, 215, 187, 0.9);
}
.tsumugie_series .series.neo .explain {
  background-color: rgba(238, 221, 219, 0.9);
}
.tsumugie_series .series.neo .explain h4 {
  color: #813417;
}
@media screen and (max-width: 767px) {
  .tsumugie_series .series figure {
    width: 100%;
  }
  .tsumugie_series .series .explain {
    width: 100%;
    margin-top: 0;
    padding: 1.5rem;
  }
  .tsumugie_series .series .explain h4 {
    font-size: 1.5rem;
  }
  .tsumugie_series .series .explain h4 + p,
.tsumugie_series .series .explain ul li,
.tsumugie_series .series .explain p.price {
    font-size: 1rem;
  }
}

ul.seven_peace {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: number;
}
ul.seven_peace li {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 368px;
  padding-top: 110px;
}
ul.seven_peace li:nth-of-type(1), ul.seven_peace li:nth-of-type(4), ul.seven_peace li:nth-of-type(5) {
  background-color: #F7F6F2;
}
ul.seven_peace li div {
  max-width: 630px;
  width: 70%;
}
ul.seven_peace li div h3 {
  color: #442200;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
ul.seven_peace li div h3 p {
  margin-bottom: 0;
}
ul.seven_peace li::before {
  counter-increment: number;
  content: "0" counter(number);
  text-align: right;
  font-size: 3.75rem;
  color: #442200;
  line-height: 1;
  margin-right: 5%;
}
@media screen and (max-width: 991px) {
  ul.seven_peace li {
    width: 100%;
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  ul.seven_peace li:nth-of-type(1), ul.seven_peace li:nth-of-type(4), ul.seven_peace li:nth-of-type(5) {
    background-color: transparent;
  }
  ul.seven_peace li:nth-of-type(odd) {
    background-color: #F7F6F2;
  }
  ul.seven_peace li div {
    width: 80%;
  }
}
@media screen and (max-width: 575px) {
  ul.seven_peace li::before {
    font-size: 2.5rem;
    margin-right: 10px;
  }
  ul.seven_peace li div {
    width: 85%;
  }
  ul.seven_peace li div h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}/*# sourceMappingURL=style.css.map */