@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP&subset=japanese");
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: #565656;
  border: none;
  text-decoration: none;
}

a:hover {
  color: #0099FF;
  text-decoration: underline;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

th, td {
  padding: 0;
  vertical-align: middle;
  text-align: left;
}

ol, ul {
  list-style: none;
}

img, video, iframe {
  max-width: 100%;
}

img {
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 500;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

hr {
  display: block;
  height: 0;
  margin: 0 0 1em;
  padding: 0;
  font-size: 1em;
  line-height: 0;
  border: 0;
  -webkit-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

a, area, button, [role="button"], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通見出し（h2相当）*/
.main-heading,
.news-heading {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 1rem;
  padding: 0 0 1rem;
  line-height: 1.3;
  font-size: 1.5em;
  font-weight: bold;
  border-bottom: 4px solid #ddd;
}
@media screen and (min-width: 768px), print {
  .main-heading,
  .news-heading {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 2em;
  }
}

/* 共通見出し（h3相当）*/
.main-subheading {
  margin-bottom: 1rem;
  font-size: 1.3em;
  line-height: 1.2;
}
@media screen and (min-width: 640px), print {
  .main-subheading {
    font-size: 1.5em;
  }
}

/* 共通リスト */
.main ul > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.5;
  list-style-type: none;
}
.main ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: .6em;
  left: .6em;
  width: .4em;
  height: .4em;
  border-radius: 100%;
  background: #333;
}

.main ol > li {
  margin-left: 1.5em;
  line-height: 1.5;
  list-style-type: decimal;
}

/* 共通リスト（リストマーカー非表示用）*/
ul.list-style-none > li {
  padding-left: 0;
  list-style-type: none;
}
ul.list-style-none > li:before {
  display: none;
}

ol.list-style-none > li {
  margin-left: 0;
  list-style-type: none;
}

/* 共通リスト（注釈用）*/
ul.list-style-note > li {
  padding-left: 1em;
}
ul.list-style-note > li:before {
  content: "※";
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

/* 注釈（※）用インデント */
.note {
  margin-left: 1em;
  text-indent: -1em;
}

/* 共通リンクボタン */
.more {
  margin-top: 1.5em;
  text-align: center;
}

.link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: .7em 2em .7em 3em;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  background-color: #565656;
  border-radius: 10em;
  -webkit-transition: .2s;
  transition: .2s;
}
.link-button:before {
  position: absolute;
  display: block;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e903";
  font-size: 14px;
  font-size: 1rem;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0099FF;
}

/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.inner:after {
  content: "";
  display: table;
  clear: both;
}

/* コンテンツ隙間・間隔用 */
.gutter:not(:last-child) {
  margin-bottom: 5em;
}
.gutter > .inner {
  padding-right: 21px;
  padding-right: 1.5rem;
  padding-left: 21px;
  padding-left: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 767.98px) {
  .gutter > .inner {
    padding-right: 0;
    padding-left: 0;
    line-height: 1.6;
  }
}
.gutter > .inner .inner {
  overflow: hidden;
}
.gutter .inner:not(:last-child) {
  margin-bottom: 42px;
  margin-bottom: 3rem;
}
.gutter.dmy.wide {
  margin-right: -22%;
  margin-left: -22%;
}
@media screen and (min-width: 1100px), print {
  .gutter.dmy.wide {
    margin-right: -230px;
    margin-left: -230px;
  }
}
.gutter.dmy.wide > .inner {
  max-width: none;
  padding: 0;
  text-align: center;
}
.gutter.dmy.wide > .inner:not(:last-child) {
  margin-bottom: 5em;
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}
.anchor-point:before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  margin-top: -80px;
  padding-top: 80px;
  z-index: -1;
}
@media screen and (min-width: 1100px), print {
  .anchor-point:before {
    margin-top: -100px;
    padding-top: 100px;
  }
}

/* サブセクション */
.subsection:not(:last-child) {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px dotted #eee;
}

/* CSS カウンターの利用 | https://developer.mozilla.org/ja/docs/Web/Guide/CSS/Counters */
.css-counter {
  counter-reset: section;
}
.css-counter .counter:before {
  counter-increment: section;
  content: counter(section) ". ";
}

/* 下線マーカー */
.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, rgba(0, 0, 0, 0)), color-stop(0%, black));
  background: linear-gradient(rgba(0, 0, 0, 0) 85%, black 0%);
}

/* クリック範囲を拡大（テキスト）*/
.widelink {
  display: inline-block;
  position: relative;
  margin: -10px;
  padding: 10px;
}

/* クリック範囲を拡大（カード）*/
.card {
  position: relative;
}
.card a:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}

/* 共通お問い合わせ */
.global-contact .tel-link {
  display: inline-block;
  vertical-align: top;
  color: #fff;
}
.global-contact a.tel-link {
  color: #fff;
}
.global-contact a.tel-link:hover {
  color: #0099FF;
  text-decoration: none;
}
.global-contact .tel-text {
  display: block;
  font-size: .9em;
}
.global-contact .tel-num {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.1;
  margin-left: .5rem;
}
@media screen and (min-width: 1100px), print {
  .global-contact .tel-num {
    font-size: 1.5em;
  }
}
.global-contact .icon-tel:before {
  font-size: 18.2px;
  font-size: 1.3rem;
}
@media screen and (min-width: 1100px), print {
  .global-contact .icon-tel:before {
    font-size: 25.2px;
    font-size: 1.8rem;
  }
}

/* --------------------------------

  Webフォント

-------------------------------- */
/*
 * https://icomoon.io/
 */
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?rq6ka8");
  src: url("../fonts/icomoon.eot?rq6ka8#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?rq6ka8") format("truetype"), url("../fonts/icomoon.woff?rq6ka8") format("woff"), url("../fonts/icomoon.svg?rq6ka8#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-home:before {
  content: "\e900";
}

.icon-arrowright:before {
  content: "\e901";
}

.icon-tel:before {
  content: "\e902";
}

.icon-arrows:before {
  content: "\e903";
}

.icon-arrowup:before {
  content: "\e904";
}

/*
 * "Noto Sans JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSansJP-Thin.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Light.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Regular.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Medium.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Bold.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Black.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Noto Serif JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSerifJP-ExtraLight.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Light.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Regular.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Medium.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-SemiBold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Bold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Black.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 320px;
  min-height: 480px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  background-color: #fff;
}

/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  width: 100%;
  margin: auto;
  overflow: hidden;
}

/* スクロール時固定用（トップページのみ）*/
#top .wrapper:before {
  content: "";
  display: block;
  position: fixed;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff url(../img/base/logo.png) center no-repeat;
  background-size: auto 36px;
  z-index: 990;
  -webkit-transition: margin-top .2s;
  transition: margin-top .2s;
}
@media screen and (min-width: 1100px), print {
  #top .wrapper:before {
    display: none;
  }
}
#top .wrapper.header-fixed:before {
  margin-top: 60px;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}

/* --------------------------------

  header

-------------------------------- */
.header .inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  z-index: 999;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 1100px), print {
  .header .inner {
    position: absolute;
    right: 0;
    height: auto;
    background: none;
    z-index: 1001;
    max-width: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
#top .header .inner {
  position: relative;
  height: auto;
  padding: 4em 1em 1em;
  background: none;
  z-index: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media screen and (min-width: 768px), print {
  #top .header .inner {
    padding: 4em 1em 2em;
  }
}
@media screen and (min-width: 1100px), print {
  #top .header .inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 0;
    z-index: 1001;
  }
}
.header-logo {
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .header-logo {
    text-align: left;
  }
}
.header-link {
  display: inline-block;
  width: 150px;
  padding-top: 12px;
}
@media screen and (min-width: 1100px), print {
  .header-link {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 237px;
    padding-top: 0;
  }
}
@media screen and (min-width: 1600px), print {
  .header-link {
    top: 29px;
  }
}
#top .header-link {
  display: inline-block;
  width: 237px;
  /*padding-top: 4px;*/
}
.header-text {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .header-text {
    position: absolute;
    display: block;
    top: 70px;
    left: 10px;
  }
}
@media screen and (min-width: 1600px), print {
  .header-text {
    top: 45px;
    left: 265px;
  }
}
.header-text span {
  display: block;
  font-size: 1.1rem;
  color: #A0A0A0;
}
#top .header-text {
  display: block;
}
.header-contact {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .header-contact {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 200px;
    height: 115px;
    background-color: #333;
    color: #fff;
  }
}
#top .header-contact {
  display: none;
}
@media screen and (min-width: 1100px), print {
  #top .header-contact {
    display: block;
  }
}
@media screen and (min-width: 1100px), print {
  .header-contact-item.tel {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/* スクロール時固定用 */
/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
}
@media screen and (max-width: 1099.98px) {
  .nav {
    position: fixed;
    top: 0;
    left: -240px;
    width: 250px;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    will-change: transform;
    z-index: 1001;
  }
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  #top .nav {
    top: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .nav:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav .inner {
    position: relative;
    width: 240px;
    height: 100%;
    margin: 0;
    background-color: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (min-width: 1100px), print {
  .nav .inner {
    position: static;
    max-width: 820px;
    margin: 0 0 0 auto;
    padding: 17.5px 220px 17.5px 0;
  }
}
@media screen and (min-width: 1280px), print {
  .nav .inner {
    max-width: 950px;
  }
}

/* メインナビ */
@media screen and (max-width: 1099.98px) {
  .main-nav {
    padding: 70px 10px 10px;
    background-color: #fff;
    opacity: 0;
  }
  .nav-open .main-nav, .slideout-open .main-nav {
    opacity: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    position: relative;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link {
    display: block;
    position: relative;
    height: 4em;
    padding: 1.2em 0 0 1em;
    color: #333 !important;
    border-bottom: 1px solid #eee;
  }
  .main-nav .nav-link:hover {
    color: #0099FF;
    text-decoration: none;
  }
  .main-nav .nav-link span {
    display: block;
    position: relative;
  }
  .main-nav .nav-link span:after {
    content: "";
    display: block;
    font-size: 1rem;
    color: #A0A0A0;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 80px;
    text-align: center;
    color: #333 !important;
  }
  .main-nav .nav-link:hover {
    color: #0099FF !important;
    text-decoration: none;
  }
  .main-nav .nav-link span {
    display: block;
    font-size: 1em;
    font-weight: bold;
  }
  .main-nav .nav-link span:before {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    content: "";
    display: block;
    font-size: 30.8px;
    font-size: 2.2rem;
    line-height: 40px;
  }
  .main-nav .nav-link span:after {
    content: "";
    display: block;
    font-size: 1rem;
    font-weight: normal;
    color: #A0A0A0;
    letter-spacing: .1em;
  }
}
.main-nav .nav-home .nav-link span:after {
  content: "HOME";
}
.main-nav .nav-newhouse .nav-link span:after {
  content: "New House";
}
.main-nav .nav-reform .nav-link span:after {
  content: "Reform";
}
.main-nav .nav-flow .nav-link span:after {
  content: "Flow";
}
.main-nav .nav-works .nav-link span:after {
  content: "Works";
}
.main-nav .nav-about .nav-link span:after {
  content: "About";
}
.main-nav .nav-contact .nav-link span:after {
  content: "Contact";
}
/* ドロップダウンナビ */
.sub-nav {
  display: block;
  height: 0;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .sub-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1em;
    background: rgba(0, 0, 0, 0.8);
  }
}
.sub-nav-active .sub-nav {
  height: auto;
  pointer-events: auto;
  overflow: visible;
  opacity: 1;
}
@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav {
    top: 100%;
    max-height: 25em;
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-inner {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 0 10px;
  }
}
.sub-nav ul {
  margin: 0;
}
@media screen and (min-width: 1100px), print {
  .sub-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: 0 -10px -10px 0;
  }
}
.sub-nav li {
  padding: 0;
}
@media screen and (min-width: 1100px), print {
  .sub-nav li {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 0 10px 10px 0;
  }
}
.sub-nav a {
  display: block;
  position: relative;
  font-size: 1.1em;
  background-color: #333;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 5px;
}
@media screen and (min-width: 1100px), print {
  .sub-nav a {
    padding: 0;
  }
}
.sub-nav a:hover {
  color: #fff;
  text-decoration: none;
}
.sub-nav a:hover .nav-img span {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.sub-nav a:hover .nav-title {
  background-color: #0099FF;
}
.sub-nav .nav-img {
  position: relative;
  display: block;
  overflow: hidden;
}
.sub-nav .nav-img:before {
  content: "";
  display: block;
  padding-top: 142px;
}
.sub-nav .nav-img span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
}
.sub-nav .nav-title {
  position: absolute;
  bottom: 5px;
  right: 0;
  background-color: #333;
  width: 150px;
  padding: 10px 0;
}
@media screen and (min-width: 1100px), print {
  .sub-nav .nav-title {
    bottom: 0;
    width: 200px;
  }
}
.sub-nav .nav-wnewhouse .nav-img span {
  background-image: url(../img/menu/menu1.jpg);
}
.sub-nav .nav-wreform .nav-img span {
  background-image: url(../img/menu/menu2.jpg);
}
.sub-nav .nav-wother .nav-img span {
  background-image: url(../img/menu/menu3.jpg);
}

/* ドロップダウンナビボタン */
.sub-nav-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button:after {
    top: auto;
    right: 0;
    bottom: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-width: 1px;
    border-color: #565656;
  }
}
.sub-nav-active .sub-nav-button:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 1099.98px) {
  .sub-nav-active .sub-nav-button:after {
    bottom: -.5em;
    border-color: #565656;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav-button:after {
    bottom: 5px;
    border-color: #565656;
  }
}

/* ドロップダウンナビ（ hover + active ）*/
@media screen and (max-width: 1099.98px) {
  .sub-nav-button:hover + .nav-link, .sub-nav-active .nav-link, .sub-nav-active .sub-nav-button:hover + .nav-link {
    color: #0099FF;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button:hover + .nav-link, .sub-nav-active .nav-link, .sub-nav-active .sub-nav-button:hover + .nav-link {
    color: #0099FF;
  }
}

/* ナビゲーション開閉ボタン */
.nav-button {
  display: none;
}
@media screen and (max-width: 1099.98px) {
  .nav-button {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    z-index: 1002;
  }
  .nav-open .nav-button, .slideout-open .nav-button {
    background-color: #0099FF;
  }
  .nav-button-icon {
    display: block;
    position: absolute;
    top: -14px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    background-color: #565656;
  }
  .nav-open .nav-button-icon, .slideout-open .nav-button-icon {
    background: none;
  }
  .nav-button-icon:before, .nav-button-icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: #565656;
  }
  .nav-open .nav-button-icon:before, .slideout-open .nav-button-icon:before, .nav-open .nav-button-icon:after, .slideout-open .nav-button-icon:after {
    margin-top: 0;
    background-color: #fff;
  }
  .nav-button-icon:before {
    margin-top: -8px;
  }
  .nav-open .nav-button-icon:before, .slideout-open .nav-button-icon:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .nav-button-icon:after {
    margin-top: 8px;
  }
  .nav-open .nav-button-icon:after, .slideout-open .nav-button-icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .nav-button:after {
    content: "MENU";
    display: block;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    color: #565656;
    font-size: .7em;
    font-weight: 800;
    text-align: center;
  }
  .nav-open .nav-button:after, .slideout-open .nav-button:after {
    content: "CLOSE";
    color: #fff;
  }
}

/* ナビゲーション背景 */
.nav-screen {
  display: inline;
}
.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: auto;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
.nav-open .nav-screen-overlay, .slideout-open .nav-screen-overlay {
  opacity: .4;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .nav.fixed {
    position: fixed;
    top: -60px;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
  }
  #top .nav.fixed {
    top: -60px;
  }
  .nav.fixed .inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
  }
  .nav.fixed .main-nav {
    margin: 0 auto;
    padding: 0;
  }
}

/* --------------------------------

  main

-------------------------------- */
.main {
  display: block;
  position: relative;
  padding: 5em 1em;
  background: #fff;
  z-index: 100;
}
#top .main {
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .main {
    padding: 5em 2em;
  }
  #top .main {
    padding: 0 2em;
  }
}

.main > .inner {
  max-width: none;
}

/* サイドバー付レイアウト用 */
.main-container {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 992px), print {
  .main-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    word-wrap: break-word;
  }
}
.main-container .main-column {
  margin-bottom: 5em;
}
@media screen and (min-width: 992px), print {
  .main-container .main-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
    padding-right: 2em;
  }
}
@media screen and (min-width: 992px), print {
  .main-container .side-column {
    width: 280px;
  }
}
.main-container .side-column .inner {
  padding: 0;
  line-height: 1.5;
}

/* --------------------------------

  footer

-------------------------------- */
.footer {
  display: block;
  position: relative;
  background-color: #fff;
  z-index: 100;
}
.footer .inner {
  max-width: none;
}
.footer-map .gmap-area:before {
  padding-top: 350px;
}
@media screen and (min-width: 768px), print {
  .footer-map .gmap-area:before {
    padding-top: 400px;
  }
}
.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 0 -1em 0;
  padding: 2em;
  background-color: #333;
}
@media screen and (min-width: 1100px), print {
  .footer-info {
    margin: 0 -1em 0 0;
  }
}
.footer-info-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 0 1em 0;
}
@media screen and (min-width: 1100px), print {
  .footer-info-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 1em 0 0;
  }
}
.footer-contents {
  display: table;
  margin: 0 auto;
  overflow: hidden;
}
.footer-logo {
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 1em;
  padding: 1em;
}
@media screen and (min-width: 640px), print {
  .footer-logo {
    float: left;
    width: 250px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 640px), print {
  .footer-detail {
    float: right;
    width: 100%;
    margin-left: -250px;
    padding-left: 270px;
  }
}
.footer-list {
  color: #fff;
}
.footer-list dt {
  font-size: .8em;
}
.footer-list dd {
  font-size: .75em;
}
.footer-list dd.tel {
  margin: .5rem 0;
}
.footer-list dd.tel .tel-link {
  position: relative;
  display: block;
  font-size: 1.9em;
  font-weight: bold;
  color: #fff;
  padding-left: 25px;
}
.footer-list dd.tel .tel-link:before {
  position: absolute;
  display: block;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e902";
  font-size: 28px;
  font-size: 2rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* フッターナビ */
.footer-nav {
  font-size: .9em;
  max-width: 480px;
  margin: 0 auto;
}
.footer-nav .nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.footer-nav .nav-item {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}
@media screen and (min-width: 640px), print {
  .footer-nav .nav-item {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.footer-nav a {
  display: block;
  position: relative;
  padding: 0.5em 0 0.5em calc(.5em + 20px);
  color: #fff;
  -webkit-transition: .2s;
  transition: .2s;
}
.footer-nav a:hover {
  text-decoration: none;
  background-color: #fff;
  color: #565656;
}
.footer-nav a:before {
  position: absolute;
  display: block;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e901";
  font-size: 14px;
  font-size: 1rem;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* ページトップ */
.pagetop {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  background-color: #0099FF;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
  }
}
@media screen and (min-width: 1100px) {
  .pagetop.fixed {
    opacity: 1;
    visibility: visible;
  }
}
.pagetop:hover {
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 1100px), print {
  .pagetop:hover {
    color: #fff;
    background-color: #40B3FF;
  }
}
.pagetop:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e904";
  display: block;
  color: #fff;
  font-size: 22.4px;
  font-size: 1.6rem;
  line-height: 60px;
}

/* コピーライト */
.copy {
  display: block;
  margin: 0 -1em;
  padding: 2em 0;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .copy {
    margin: 0 -2em;
  }
}
.copy small {
  display: block;
  color: #333;
  font-size: .8em;
  letter-spacing: .1em;
}
.copy span {
  display: none;
}
@media screen and (min-width: 768px), print {
  .copy span {
    display: inline;
  }
}

/* --------------------------------

  メインビジュアル

-------------------------------- */
.mainvisual {
  margin-bottom: 60px;
}
@media screen and (min-width: 1100px), print {
  .mainvisual {
    margin-top: 115px;
  }
}
.mainvisual .inner {
  width: 100%;
  height: 100%;
  max-width: none;
  background-color: #fff;
}
.mainvisual-img {
  display: block;
  padding-top: 36.25%;
  background-image: url(../img/base/bg.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1100px), print {
  .mainvisual-img {
    padding-top: 580px;
  }
}
.mainvisual-catch {
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mainvisual-catch .catch {
  color: #fff;
  text-align: center;
}
.mainvisual-catch .text1 {
  display: block;
  font-size: 1.5em;
  margin-bottom: 1rem;
}
@media screen and (min-width: 480px), print {
  .mainvisual-catch .text1 {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 640px), print {
  .mainvisual-catch .text1 {
    font-size: 2.5em;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .mainvisual-catch .text1 {
    font-size: 4em;
  }
}
.mainvisual-catch .text1 span {
  font-weight: bold;
  display: block;
  line-height: 1.2;
}
@media screen and (min-width: 480px), print {
  .mainvisual-catch .text1 span {
    display: inline;
  }
}
.mainvisual-catch .text2 {
  display: block;
  font-size: .9em;
}
@media screen and (min-width: 640px), print {
  .mainvisual-catch .text2 {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 1100px), print {
  .mainvisual-catch .text2 {
    font-size: 1.8em;
  }
}

/* --------------------------------

  上部固定用電話番号ボタン

-------------------------------- */
.tel-button {
  display: none;
}
@media screen and (max-width: 1099.98px) {
  .tel-button {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    outline: none;
    text-align: center;
    color: #565656;
    background-color: #fff;
    z-index: 999;
  }
  .tel-button:hover {
    color: #fff;
    text-decoration: none;
    background-color: #0099FF;
  }
  .tel-button .icon-tel {
    display: block;
    padding-top: 8px;
  }
  .tel-button .icon-tel:before {
    font-size: 39.2px;
    font-size: 2.8rem;
  }
  .tel-button:after {
    content: "TEL";
    display: block;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    font-size: .7em;
    font-weight: 800;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  display: block;
  position: relative;
  height: 150px;
  margin-top: 60px;
  background-color: #fff;
  background-image: url(../img/base/bg2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .page-title {
    height: 250px;
  }
}
@media screen and (min-width: 1100px), print {
  .page-title {
    height: 346px;
    margin-top: 115px;
  }
}
.page-title-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  line-height: 1.2;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.page-title-name {
  position: relative;
  display: block;
  max-width: 280px;
  margin: 0 auto;
  color: #fff;
  font-weight: 800;
  letter-spacing: 5px;
}
@media screen and (min-width: 768px), print {
  .page-title-name {
    max-width: 450px;
  }
}
.page-title-name .maintitle {
  position: relative;
  display: block;
  font-size: .7em;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  letter-spacing: 5px;
}
@media screen and (min-width: 768px), print {
  .page-title-name .maintitle {
    font-size: 1.4em;
  }
}
.page-title-name .maintitle span {
  font-size: .6em;
  font-weight: bold;
  margin-left: 1rem;
}
@media screen and (min-width: 768px), print {
  .page-title-name .maintitle span {
    font-size: .1em;
  }
}
.page-title-name .maintitle:after {
  position: absolute;
  display: block;
  content: "";
  background-color: #fff;
  max-width: 280px;
  height: 3px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 1em;
}
@media screen and (min-width: 768px), print {
  .page-title-name .maintitle:after {
    max-width: 450px;
    height: 4px;
  }
}
.page-title-name .subtitle {
  display: block;
  font-size: .5em;
  font-weight: bold;
}
@media screen and (min-width: 768px), print {
  .page-title-name .subtitle {
    font-size: .9em;
  }
}
.page-title-name .subtitle span {
  font-size: 1.1rem;
  font-weight: bold;
  margin-left: 1rem;
}
@media screen and (min-width: 768px), print {
  .page-title-name .subtitle span {
    font-size: 1.3rem;
  }
}

/* --------------------------------

  アコーディオン

-------------------------------- */
.accordion {
  position: relative;
}
@media screen and (max-width: 1099.98px) {
  .accordion-label {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}
.accordion-label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media screen and (min-width: 1100px), print {
  .accordion-label:after {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .4s ease-out;
    transition: max-height .4s ease-out;
  }
}
.accordion-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}
.accordion-input:checked + .accordion-label:after {
  bottom: -.5em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 1099.98px) {
  .accordion-input:checked ~ .accordion-content {
    max-height: 10em;
  }
}

/* --------------------------------

  アニメーション

-------------------------------- */
.section-anim-item {
  display: block !important;
  opacity: 0;
}
@media print {
  .section-anim-item {
    opacity: 1;
  }
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html,
  body {
    width: 1100px;
    background: none;
  }
}
/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
.section {
  position: relative;
  margin-right: -1em;
  margin-left: -1em;
}
@media screen and (min-width: 1100px), print {
  .section {
    margin-right: -2em;
    margin-left: -2em;
  }
}
.section-header {
  text-align: center;
}
.section-heading {
  margin-bottom: 2em;
}
.section-heading.reverse span {
  color: #fff;
}
.section-heading span {
  position: relative;
  display: block;
  max-width: 450px;
  margin: 0 auto 1rem;
  padding-bottom: 1rem;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 5px;
}
@media screen and (min-width: 768px), print {
  .section-heading span {
    font-size: 1.3em;
  }
}
.section-heading span:after {
  position: absolute;
  display: block;
  content: "";
  background: #ccc;
  max-width: 450px;
  height: 4px;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.section-heading:after {
  display: block;
  content: attr(data-subtitle);
  color: #ccc;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 5px;
}
@media screen and (min-width: 768px), print {
  .section-heading:after {
    font-size: 1.8rem;
  }
}

/* 鈴木建築の家づくり */
.top-service {
  overflow: hidden;
}
.top-service-section {
  margin-bottom: 5em;
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .top-service-section {
    padding: 0 2em;
  }
}
.top-service-section .inner {
  max-width: 1600px;
}
.top-service-side {
  margin-bottom: 1.5em;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .top-service-side {
    float: right;
    margin: 0 0 10px 30px;
  }
}
.top-service-text {
  line-height: 1.8;
}

/* 選ばれる理由 */
.top-point-section {
  margin-bottom: 5em;
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .top-point-section {
    padding: 0 2em;
  }
}
.top-point-section .inner {
  max-width: none;
  margin: 0 -1em;
}
@media screen and (min-width: 1100px), print {
  .top-point-section .inner {
    margin: 0 -2em;
  }
}
.top-point-section .section-header {
  background-image: url(../img/top/bg.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 -1em;
  padding: 2em 1em;
}
@media screen and (min-width: 1100px), print {
  .top-point-section .section-header {
    margin: 0 -2em;
    padding: 3em 2em;
  }
}
.top-point-caption {
  color: #fff;
  line-height: 1.8;
}
.top-point-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.top-point-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  border: 1px solid #E2E2E2;
}
@media screen and (min-width: 640px), print {
  .top-point-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 1100px), print {
  .top-point-item {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}
.top-point-item:nth-child(2n) {
  background-color: #f8f8f8;
}
.top-point-inner {
  padding: 1em;
}
.top-point-name {
  display: block;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}
.top-point-img {
  display: block;
}
.top-point-img:before {
  content: "";
  display: block;
  padding-top: 177px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.item1 .top-point-img:before {
  background-image: url(../img/top/img2.jpg);
}
.item2 .top-point-img:before {
  background-image: url(../img/top/img3.jpg);
}
.item3 .top-point-img:before {
  background-image: url(../img/top/img4.jpg);
}
.item4 .top-point-img:before {
  background-image: url(../img/top/img5.jpg);
}

/* 施工事例 */
.top-works-section {
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .top-works-section {
    padding: 0 2em;
  }
}
.top-works-section .inner {
  max-width: 1600px;
}
#top .top-works-section {
  margin-bottom: 5em;
}
.top-works-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -2em -2em 0;
}
.top-works-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 2em 2em 0;
}
@media screen and (min-width: 768px), print {
  .top-works-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 1100px), print {
  .top-works-item {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.top-works-link {
  position: relative;
  display: block;
  margin-bottom: 3rem;
}
.top-works-link:hover .top-works-name span {
  background-color: #0099FF;
}
.top-works-link:hover .top-works-img span {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.top-works-img {
  position: relative;
  display: block;
  overflow: hidden;
}
.top-works-img:before {
  content: "";
  display: block;
  padding-top: 142px;
}
.top-works-img span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
}
.item1 .top-works-img span {
  background-image: url(../img/menu/menu1.jpg);
}
.item2 .top-works-img span {
  background-image: url(../img/menu/menu2.jpg);
}
.item3 .top-works-img span {
  background-image: url(../img/menu/menu3.jpg);
}
.top-works-name {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.top-works-name span {
  display: inline-block;
  background-color: #333;
  color: #fff;
  text-align: center;
  font-size: 1.2em;
  padding: 10px 0;
  width: 200px;
}
.top-works-more {
  margin-top: 3em;
  text-align: center;
}

/* --------------------------------

  idxx　お知らせ

-------------------------------- */
.news-area {
  position: relative;
}
.news-area .inner {
  padding: 0;
  line-height: 1.5;
}
.news-area .inner:not(:last-child) {
  margin-bottom: 0;
}
.news-area .news-heading {
  margin-bottom: 0;
}
.news-area .news-list,
.news-area .news-thumb-list,
.news-area .news-img-list {
  padding-bottom: 1em;
}
.news-detail .inner {
  line-height: 1.5;
}
.news-detail .inner:not(:last-child) {
  margin-bottom: 0;
}
.news-detail .news-date {
  font-size: .9em;
}
.news-link {
  display: block;
  padding: 1em 0;
  border-bottom: 1px dotted #eee;
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body {
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
}
.news-text {
  margin-top: 1em;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
.news-text p,
.news-text div {
  word-break: break-all;
  word-wrap: break-word;
}
.news-back {
  clear: both;
  max-width: 1100px;
  margin: 2em auto 0;
  padding: 2em 0 0 0;
  text-align: center;
  border-top: 1px dotted #eee;
}

/* お知らせ一覧（テキストのみ）*/
.news-list .news-link {
  position: relative;
  padding: 1em 1.5em;
}
.news-list .news-link:hover .news-date {
  color: #565656;
}
.news-list .news-date {
  float: left;
  margin: 0;
  color: #333;
}
.news-list .news-title,
.news-list .news-body {
  clear: both;
  margin: 0;
}
@media screen and (min-width: 640px), print {
  .news-list .news-title,
  .news-list .news-body {
    clear: none;
    margin: 0 0 0 7em;
  }
}

/* お知らせ一覧（サムネイル縦並び）*/
.news-thumb-list .news-topics {
  position: relative;
  display: table;
  width: 100%;
  height: 80px;
}
.news-thumb-list .news-link {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 0 7em;
}
.news-thumb-list .news-link:hover .news-date {
  color: #565656;
}
.news-thumb-list .news-date {
  float: left;
  width: 100%;
  font-size: .9em;
  color: #333;
}
.news-thumb-list .news-img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 80px;
  margin: auto;
  background-color: #fff;
  overflow: hidden;
}
.news-thumb-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 144px;
  max-height: 144px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* お知らせ一覧（サムネイル・スライダー）*/
.news-img-list:not(.news-slider) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -10px -10px 0;
}
.news-img-list:not(.news-slider) .news-topics {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 10px 10px 0;
}
@media screen and (min-width: 360px), print {
  .news-img-list:not(.news-slider) .news-topics {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 640px), print {
  .news-img-list:not(.news-slider) .news-topics {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.news-img-list.news-slider .news-topics {
  width: 240px;
  padding: 10px 10px 0;
}
@media screen and (min-width: 640px), print {
  .news-img-list.news-slider .news-topics {
    width: 260px;
    padding: 10px 10px 0;
  }
}
.news-img-list .news-link {
  position: relative;
  height: 100%;
  padding: 75% 0 0;
  color: #333;
  text-align: center;
  line-height: 1.5;
  border: none;
}
.news-img-list .news-link:hover {
  color: #0099FF;
  text-decoration: none;
}
.news-img-list .news-date {
  color: #333;
}
.news-img-list .news-img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: auto;
  background-color: #fff;
  overflow: hidden;
}
.news-img-list .news-img:before {
  content: "";
  display: block;
  padding-top: 75%;
}
.news-img-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 150%;
  max-height: 150%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* お知らせスライダー用前後ボタン */
.news-arrow {
  display: block;
  margin-top: 1em;
  text-align: center;
}
@media screen and (min-width: 640px), print {
  .news-arrow {
    position: absolute;
    top: 105px;
    left: 0;
    width: 100%;
    max-width: 1100px;
    margin: auto;
  }
}
.news-arrow-prev, .news-arrow-next {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0 15px;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: #ccc;
  border: 1px solid #ccc;
  cursor: pointer;
}
@media screen and (min-width: 640px), print {
  .news-arrow-prev, .news-arrow-next {
    display: block;
    position: absolute;
    top: -24px;
    width: 48px;
    height: 48px;
    margin: 0;
  }
}
.news-arrow-prev:before, .news-arrow-next:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 40%;
  margin: auto;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
@media screen and (min-width: 640px), print {
  .news-arrow-prev:before, .news-arrow-next:before {
    border-width: 2px;
  }
}
@media screen and (min-width: 640px), print {
  .news-arrow-prev {
    left: 0;
  }
}
.news-arrow-prev:before {
  left: 20%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (min-width: 640px), print {
  .news-arrow-next {
    right: 0;
  }
}
.news-arrow-next:before {
  right: 20%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* WordPress お知らせ詳細用 */
.news-pagers {
  position: relative;
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px dotted #eee;
  overflow: hidden;
}

.news-pager {
  width: 70px;
  height: 40px;
  margin: auto;
  overflow: hidden;
}
@media screen and (min-width: 480px), print {
  .news-pager {
    width: 80px;
  }
}
.news-pager a {
  display: block;
  position: relative;
  color: #fff;
  line-height: 40px;
  text-align: center;
  border-radius: 0;
  background-color: #565656;
  -webkit-transition: .2s;
  transition: .2s;
}
.news-pager a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0099FF;
}
.news-pager a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.news-pager-prev {
  position: absolute;
  top: 2em;
  right: 0;
  left: -190px;
}
@media screen and (min-width: 480px), print {
  .news-pager-prev {
    left: -240px;
  }
}
.news-pager-prev a {
  padding-left: 10px;
}
.news-pager-prev a:before {
  display: none;
}
.news-pager-prev a:after {
  left: -40px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.news-pager-next {
  position: absolute;
  top: 2em;
  right: -190px;
  left: 0;
}
@media screen and (min-width: 480px), print {
  .news-pager-next {
    right: -240px;
  }
}
.news-pager-next a {
  padding-right: 10px;
}
.news-pager-next a:before {
  display: none;
}
.news-pager-next a:after {
  right: -40px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.news-pager-back {
  width: 90px;
  font-size: 13px;
}
@media screen and (min-width: 480px), print {
  .news-pager-back {
    width: 120px;
  }
}
.news-pager-back a:before, .news-pager-back a:after {
  display: none;
}

/* --------------------------------

  idと下層ページ名を入れる

-------------------------------- */
/* 注釈 */
/* --------------------------------

  修正・追加用

-------------------------------- */
/* --------------------------------

  パンくずリスト

-------------------------------- */
#topic-path {
  margin-bottom: 3em;
  z-index: 1;
}
#topic-path ul {
  max-width: 1100px;
  margin: auto;
  padding-bottom: .5em;
  border-bottom: 1px dotted #A0A0A0;
}
#topic-path ul:after {
  content: "";
  display: table;
  clear: both;
}
#topic-path li {
  float: left;
  position: relative;
  margin: 0;
  padding: 0;
  text-indent: 0;
  font-size: .9em;
}
#topic-path li:before {
  display: none;
}
#topic-path li.current {
  color: #333;
}
#topic-path li.home {
  padding-left: 35px;
}
#topic-path li.home:after {
  position: absolute;
  display: block;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e900";
  font-size: 35px;
  font-size: 2.5rem;
  color: #0099FF;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#topic-path a {
  display: block;
}
#topic-path a:after {
  content: "＞";
  display: inline-block;
  vertical-align: middle;
  margin: 0 .5em;
  font-size: .8em;
  color: #333;
}


/* ----------------------------------------------------------------------*/


.main-sec{
  padding: 4em 0em;
}
@media screen and (max-width: 1200px), print {
  .main-sec{
    padding: 4em 1em;
  }
}
.main-sec .section-page{
  margin: 3em 0;
  padding: 3em 0;
}
 .main-sec .section-page .inner{
  line-height: 1.6em;
}
.main-sec .section-page.row{
  text-align: left;
}
.main-sec .section-page p:not(:last-child){
  margin-bottom: 1em;
}

.main-sec .section-heading{
  font-size: 2.5rem;
}

.bg2{
  background-color: #f8f8f8;
  padding: 3em 0;
}
.bg1{
  background-color: #fff;
  padding: 3em 0;
}

.black-hedding{
  color: #fff;
  background: #333;
  font-weight: bold;
  padding: 12px 24px;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.mb-common{
  margin-bottom: 36px !important;
}

p strong{
  font-weight: bold;
  font-size: 18px;
}

.color-orange{
  color: #FF7F00;
}
.color-blue{
  color: #007FFF;
}

/*-----------------------------------------------------
reform
------------------------------------------------------*/
.reform-nav ul{
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(8,auto); /* 8列 */
  gap: 10px; /* 隙間 */
  margin-bottom: 60px;
}
.reform-nav ul li{
  margin: 0;
  padding: 0;

}
.reform-nav ul li::before{
  display: none;
  margin: 0;
  padding: 0;
}
.reform-nav ul li a{
  display: block;
  background: #333;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
}
.reform-nav ul li a:hover{
  background: #007FFF;
  text-decoration: none;
}
.reform-nav ul li a::after{
  content: "▼";
  margin-left: 10px;
  font-size: 10px;
}
@media screen and (max-width: 1200px), print {
  .reform-nav ul{
    grid-template-columns: repeat(2,auto); /* 8列 */
  }
}

.reform-items{
  margin-bottom: 20px;
  margin-left: 1em;
}
.inner .reform-items:last-child{
  margin-bottom: 0;
}
.reform-items p{
  font-size: 15px;
}
@media screen and (max-width: 1200px), print {
  .reform-items img{
    margin-bottom: 10px;
  }
}
.reform-items h4{
  color: #007FFF;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 12px;
  font-size: 18px;
}

.number p{
  margin: 1em 0 2em 0 !important;
}
.n1:before,.n2:before,.n3:before,.n4:before,
.n5:before,.n6:before,.n7:before,.n8:before{
  border-radius: 30px;
  padding: 10px 17px;
  margin-right: 10px;
  background-color: #40B3FF;
  color: #fff;
  font-size: 16px;
}
.n1:before{ content: "1";}
.n2:before{ content: "2";}
.n3:before{ content: "3";}
.n4:before{ content: "4";}
.n5:before{ content: "5";}
.n6:before{ content: "6";}
.n7:before{ content: "7";}
.n8:before{ content: "8";}

/*-----------------------------------------------------
flow
------------------------------------------------------*/

.flow-box{
  padding-left: 80px;
  min-height: 80px;
  padding-bottom: 30px;
  background: url(../flow/img/yajirusi.png) no-repeat 15px bottom;
}
.flow-box-end{
  background: none;
  padding-bottom: 0;
}
@media screen and (max-width: 1200px), print {
  .flow-box{
    padding-left: 50px;
    background: url(../flow/img/yajirusi.png) no-repeat 10px bottom;
    background-size: 15px;
  }
  .flow-box img{
    margin: 10px 0;
  }
  .flow-box-end{
    background: none;
    padding-bottom: 0;
  }
}

/*-----------------------------------------------------
about
------------------------------------------------------*/

.about-bg{
  min-height: 474px;
  background: url(../about/img/1.jpg) no-repeat right bottom;
}
.text-right{
  text-align: right !important;
}
.about-table th,
.about-table td{
  padding: 16px;
  border-bottom: 5px solid;
}
.about-table th { width: 150px; border-color:#333; font-weight: bold;}
.about-table td { border-color:#D6D6D6;}

@media screen and (max-width: 1200px), print {
  .about-bg{
    background: url(../about/img/1.jpg) no-repeat right bottom;
    padding-bottom: 200px;
  }

  .about-table,
  .about-table th,
  .about-table td{
    display: block;
    width: 100%;
    padding: 16px 0;
  }
  .about-table td{
    border:none;
  }
}

/*-----------------------
form
----------------------*/

:root {
  --myhp-grid: 1.6rem;
  --myhp-white: #fff;
  --myhp-black: #000;
  --myhp-blue: #527852;
  --myhp-red: #e6563b;
  --myhp-focus: #027a4c;
  --myhp-placeholder: #999;
  --myhp-error: #ffebee;
  --myhp-border: #999;
  --myhp-background: #fff;
  --myhp-transition: 0.3s;
  --myhp-color1: #ddd;
  --myhp-color2: #f1f1f1;
  --myhp-color3: #b0ccc6;
}

/* フォーム */
.myhp-form {
  font-size: 1.6rem;
}
.myhp-form__note {
  font-size: 1.4rem;
}
.myhp-form__textfield {
  height: 5rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  border-color: var(--myhp-color1);
}
.myhp-form__select-input {
  height: 5rem;
  padding: 0 5rem 0 1rem;
  border-radius: 0.5rem;
}
.myhp-form__select:before {
  display: block;
  top: -0.5rem;
  right: 2rem;
  bottom: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  border-bottom: none;
  border-left: none;
  background: none;
  transform: rotate(135deg);
}
.myhp-form__required {
  margin: 0 calc(var(--myhp-grid) * 1) 0 0;
  padding: calc(var(--myhp-grid) * 0.4) calc(var(--myhp-grid) * 0.6);
  font-size: 1rem;
  color: var(--myhp-white);
  border-radius: 0.2rem;
  background: var(--myhp-red);
}
.myhp-form__items {
  margin: 0 0 2rem;
  padding: 2rem 1.5rem;
  background-color: var(--myhp-color2);
}
.myhp-form__textfield:focus, .myhp-form__select-input:focus, .myhp-form__textarea:focus {
  background: var(--myhp-white);
  border-color: var(--myhp-focus);
}
.myhp-form__privacypolicy {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--myhp-color1);
}
.myhp-form__privacypolicy-link:hover {
  color: var(--myhp-focus);
  text-decoration: underline;
}
.myhp-form__privacypolicy-button:before {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 1rem 0 0;
  border-radius: 0;
}
.myhp-form__privacypolicy-text {
  flex-wrap: wrap;
}
.myhp-form__button-confirm {
  position: relative;
  width: 18rem;
  height: 6rem;
  padding: 0;
  font-size: 1.8rem;
  border-radius: 0;
  border-width: 3px;
  background-color: var(--myhp-color2);
}
.myhp-form__button-confirm::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  margin-right: 2rem;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: rotate(45deg);
  transition: border-color 0.3s;
}

.myhp-form__button li::before{
  display: none !important;
}

@media screen and (min-width: 768px), print {
  .myhp-form {
    font-size: 1.8rem;
  }
  .myhp-form__textfield {
    height: 6rem;
    padding: 0 1.5rem;
  }
  .myhp-form__select-input {
    height: 6rem;
    padding: 0 6.5rem 0 1.5rem;
  }
  .myhp-form__select:before {
    right: 2.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .myhp-form__required {
    font-size: 1.4rem;
  }
  .myhp-form__items {
    padding: 2.5rem;
  }
  .myhp-form__privacypolicy-button:before {
    width: 3rem;
    height: 3rem;
    margin-right: 1.5rem;
  }
  .myhp-form__button-confirm {
    height: 6.5rem;
    font-size: 2rem;
  }
}