@charset "utf-8";

body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 13px;
  font-family: 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
}
h1, h2, h3, h4, p, dl {
  color: #333;
}
a {
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
#wrapper {
  max-width: 1920px;
  margin: auto;
  position: relative;
}
.sec-title {
  padding: 55px 0;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  text-indent: 1px;
}
.subtitle {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  text-indent: 2px;
}
.sp-only {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
  .sec-title {
    padding-bottom: 30px;
  }
  .subtitle {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
## ヘッダー
--------------------------------------------------------------*/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 80%;
  max-width: 1100px;
  margin: auto;
  padding: 15px 0;
}
#top header {
  width: 100%;
  max-width: 100%;
  padding: 0 5%;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 998;
  -webkit-transition: .6s ease;
  transition: .6s ease;
}
.header-logo {
  padding-top: 15px;
}
.globalNavi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.globalNavi li {
  margin-left: 25px;
  padding: 22px 0;
}
#top .globalNavi li {
  width: 110px;
  margin-left: 0;
  padding: 0;
  text-align: center;
}
.globalNavi a {
  display: block;
  font-size: 15px;
  letter-spacing: 2px;
  color: #000;
}
.globalNavi a:hover {
  color: #bbb;
}
#top .globalNavi a {
  padding: 22px 0;
  color: #fff;
  border-left: 1px solid #fff;
  position: relative;
}
#top .globalNavi a:hover {
  color: #555;
  border-left: 1px solid transparent;
}
#top .globalNavi a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #555;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
#top .globalNavi a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
/** === バーガーメニュー  === **/
.sp-items {
  display: none;
}
.sp-menu {
  display: none;
  width: 100%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 64px;
  left: 0;
  z-index: 998;
}
.sp-menu li {
  border-bottom: solid 1px #aaa;
}
.sp-menu ul li:last-child {
  border-bottom: 0;
}
.sp-menu a {
  display: block;
  padding: 20px 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-indent: 2px;
  color: #333;
}
@media screen and (max-width: 1050px) {
  /** === ボタン === **/
  .sp-items {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .nav-button, .nav-button span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .nav-button {
    position: relative;
    width: 40px;
    height: 26px;
    margin-left: 13px;
    cursor: pointer;
    z-index: 999;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #333;
    border-radius: 4px;
  }
  .nav-button span:nth-of-type(1) {
    top: 0;
  }
  .nav-button span:nth-of-type(2) {
    top: 11px;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }
  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
  }
  .nav-button.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-menu-bar02 .8s forwards;
    animation: active-menu-bar02 .8s forwards;
  }
  @-webkit-keyframes active-menu-bar02 {
    100% {
      height: 0;
    }
  }
  @keyframes active-menu-bar02 {
    100% {
      height: 0;
    }
  }
  .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }
  /** === その他の設定 === **/
  header {
    width: 100%;
    height: 64px;
    padding: 20px 0;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #top header {
    padding: 20px 0;
    position: absolute;
    top: 0;
  }
  .header-logo {
    margin-left: 20px;
    padding-top: 0;
  }
  .header-logo img {
    width: 120px;
    height: auto;
  }
  .sp-items i {
    font-size: 26px;
    color: #333;
    vertical-align: bottom;
  }
  #top .nav-button span {
    background: #fff;
  }
  #top .sp-items i {
    color: #fff;
  }
  .globalNavi {
    display: none;
  }
}
@media screen and (min-width: 1051px) {
  .sp-menu {
    display: none !important;
  }
}


/*--------------------------------------------------------------
## フッター
--------------------------------------------------------------*/
footer {
  max-width: 1920px;
  margin: auto;
  padding: 40px 0 15px;
  text-align: center;
  background: #3e3a39;
  position: relative;
}
.sns-linkBtn {
  margin-bottom: 20px;
}
.sns-linkBtn a {
  display: inline-block;
}
.sns-linkBtn a:first-child {
  margin-right: 20px;
}
.sns-linkBtn a:hover {
  opacity: .5;
}
.sns-linkBtn a i {
  margin-bottom: 5px;
  font-size: 30px;
  color: #fff;
}
.sns-linkBtn a span {
  display: block;
  font-size: 10px;
  color: #fff;
}
.footer-logo {
  display: block;
  margin: auto;
}
.footer-info {
  margin: 15px 0 20px;
}
.footer-info p {
  display: inline-block;
  color: #fff;
}
footer small {
  font-size: 11px;
  color: #fff;
}
.back-to-top {
  display: inline-block;
  position: absolute;
  top: 25px;
  right: 12.5%;
}
.back-to-top:hover {
  opacity: .6;
}
/** === Google Map === **/
.googleMap {
  max-width: 1920px;
  margin: auto;
  position: relative;
}
.googleMap::after {
  content: "";
  display: block;
  padding-top: 30%;
}
.googleMap iframe {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1100px) {
  .googleMap::after {
    padding-top: 40%;
  }
}
@media screen and (max-width: 768px) {
  .footer-info p {
    display: block;
    margin-bottom: 10px;
  }
  .back-to-top {
    top: 15px;
    right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .googleMap::after {
    padding-top: 60%;
  }
}


/*--------------------------------------------------------------
## トップページ
--------------------------------------------------------------*/
.firstView {
  width: 100vw;
  height: 100vh;
  position: relative;
}
.catchphrase {
  position: absolute;
  left: 50%;
  bottom: 140px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
a.scrollDown {
  padding-top: 60px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
}
a.scrollDown:hover > span {
  background: rgba(255, 255, 255, 0.4);
}
a.scrollDown span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 46px;
  height: 46px;
  margin-left: -23px;
  border: 2px solid #fff;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
a.scrollDown span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 16px;
  height: 16px;
  margin: -12px 0 0 -8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a.scrollDown:hover span::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 44px;
  height: 44px;
  -webkit-box-shadow: 0 0 0 0 rgba(255,255,255,.1);
  box-shadow: 0 0 0 0 rgba(255,255,255,.1);
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    -webkit-box-shadow: 0 0 0 35px rgba(255,255,255,.1);
    box-shadow: 0 0 0 35px rgba(255,255,255,.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    -webkit-box-shadow: 0 0 0 35px rgba(255,255,255,.1);
    box-shadow: 0 0 0 35px rgba(255,255,255,.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/** === TOPICS === **/
#topics {
  padding-bottom: 55px;
}
.event_container {
  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;
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
.event_container::after {
  content: "";
  display: block;
  width: 30%;
}
.event_inner {
  width: 30%;
  padding-bottom: 30px;
  text-align: center;
  position: relative;
}
.event_linkImg:hover {
  opacity: .7;
}
.event_linkImg {
  display: block;
  position: relative;
}
.event_linkImg::after {
  content: "";
  display: block;
  padding-top: 50%; 
}
.event_linkImg img {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.event_inner h3, .event_inner h4 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  margin: 10px 0;
}
.event_inner p {
  width: 90%;
  margin: auto;
  text-align: left;
  line-height: 1.5;
}
.event_inner .readMore {
  display: inline-block;
  width: 106px;
  padding: 4px 6px;
  font-size: 11px;
  font-weight: bold;
  color: #999;
  border: solid 1px #999;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.event_inner .readMore:hover {
  color: #ccc;
  background: #eee;
  border: solid 1px #ccc;
}
/** === CONCEPT === **/
.concept {
  background: #f3f3f3;
  padding-bottom: 70px;
}
.concept .subtitle {
  margin-bottom: 30px;
}
.concept p {
  margin-bottom: 25px;
  text-align: center;
}
/** === 施工事例 === **/
.works {
  padding-bottom: 55px;
}
.works .sec-title {
  font-size: 21px;
  letter-spacing: 5px;
  text-indent: 5px;
}
.works_container {
  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;
  max-width: 1050px;
  margin: auto;
}
.works_container::after {
  content: "";
  display: block;
  width: 30%;
}
.works_inner {
  display: block;
  width: 30%;
  margin-bottom: 45px;
}
.works_thumbnail {
  position: relative;
}
.works_thumbnail::after {
  content: "";
  display: block;
  padding-top: 65%;
}
.works_thumbnail img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
#top .works_inner:hover .mask {
  opacity: 1;
}
.caption {
  width: 100%;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.works-more {
  text-align: center;
}
.works-more a {
  display: inline-block;
}
.works-more a:hover {
  opacity: .7;
}
.works-more p {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  text-indent: 2px;
}
/** === お客様の声 === **/
.customers-voice {
  padding-bottom: 20px;
  background: #f7f8f8;
}
.voice_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 80%;
  margin: 30px auto;
}
.voice, .voice-thumb {
  width: 49%;
}
.voice-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.voice-thumb .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.voice-thumb .slick-slide {
  width: 23% !important;
  cursor: pointer;
}
.voice li img, .voice-thumb li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .firstView {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  }
  .catchphrase {
    width: 240px;
    height: auto;
  }
  .topics-link.sp-only {
    width: 90%;
    margin: auto;
  }
  .topics-link li {
    padding: 12px 0 10px;
    border-top: solid 1px #ccc;
  }
  .topics-link li:last-child {
    border-bottom: solid 1px #ccc;
  }
  .topics-link li a {
    color: #1314f4;
  }
  .concept p {
    width: 90%;
    margin: auto;
    text-align: left;
    line-height: 1.8;
  }
  .works_container::after {
    width: 32%;
    width: calc(33.3% - 4px);
  }
  .works_thumbnail::after {
    padding-top: 100%;
  }
  .works_inner {
    width: 32%;
    width: calc(33.3% - 4px);
    margin-bottom: 6px;
  }
  .mask {
    background: transparent;
    opacity: 1;
  }
  .caption {
    font-size: 16px;
  }
  .works-more {
    margin-top: 30px;
  }
  .works-more p {
    margin-bottom: 15px;
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
## concept(concept.html)
--------------------------------------------------------------*/
#concept main {
  width: 80%;
  max-width: 1100px;
  margin: auto;
}
.concept-img {
  margin-top: -80px;
  position: relative;
  z-index: -1;
}
.concept-img img {
  width: 100%;
  height: auto;
}
#concept .concept {
  width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
/** === コンセプト詳細 === **/
.conceptLink_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
  padding: 80px 0 100px;
}
.conceptLink_inner a:hover {
  opacity: 0.6;
} 
.concept-box {
  width: 100vw;
  padding: 40px 0;
  background: #f3f3f3;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.concept-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 45px;
  padding-top: 45px;
}
.detail-heading {
  width: 200px;
}
.detail-heading img {
  display: block;
  margin-left: auto;
}
.detail-heading img:first-child {
  margin-bottom: 20px;
}
.detail-heading img:nth-child(2) {
  margin-bottom: 8px;
}
.detail-heading p {
  font-size: 15px;
  font-weight: bold;
  text-align: right;
  letter-spacing: 2px;
}
.detail-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 40px;
}
.detail-text .subtitle {
  text-align: left;
  margin-bottom: 10px;
}
.detail-text p {
  line-height: 1.8;
}
.detail-text .space {
  line-height: 45px;
}
.form-block {
  padding: 100px 0;
}
.form-block h2.subtitle {
  margin-bottom: 75px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 950px) {
  .conceptLink_inner a img {
    width: 175px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #concept main {
    width: 90%;
  }
  #concept header {
    position: absolute;
    top: 0;
  }
  #concept .nav-button span {
    background: #fff;
  }
  #concept .sp-items i {
    color: #fff;
  }
  .concept-img {
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    margin-top: 0;
    background: url(../img/concept_sp.jpg) center center no-repeat;
    background-size: cover;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #concept .concept {
    padding-bottom: 0;
  }
  .concept-detail {
    display: block;
    margin-bottom: 0;
  }
  .detail-heading {
    height: 130px;
    margin: 0 auto 10px;
    position: relative;
  }
  .detail-heading img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .detail-text {
    margin-left: 0;
  }
  .form-block {
    padding: 50px 0;
  }
  .form-block h2.subtitle {
    margin-bottom: 40px;
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
## 施工事例(example.html) & 外観写真(facade.html)
--------------------------------------------------------------*/
#example .mask {
  background: transparent;
  opacity: 1;
}
#example .works_inner:hover {
  opacity: .7;
}
.example-post main, .facade-post main {
  width: 80%;
  max-width: 1100px;
  margin: auto;
}
.moveBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px 0 40px;
}
.moveBtn a {
  display: inline-block;
}
.latest.moveBtn .prev-btn, .oldest.moveBtn .next-btn {
  width: 0;
  height: 0;
}
.latest.moveBtn .prev-btn img, .oldest.moveBtn .next-btn img {
  width: 0;
  height: 0;
}
/** === スライダー === **/
.slider {
  margin-bottom: 8px;
}
.slider li {
  position: relative;
  width: 100%;
}
.slider li:before {
  content: "";
  display: block;
  padding-top: 56.6%;
}
.slider li.vertical img {
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.thumb .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.example-post .thumb .slick-slide {
  width: 19.2% !important;
}
.facade-post .thumb.col1 .slick-slide {
  width: 100% !important;
}
.facade-post .thumb.col2 .slick-slide {
  width: 48.5% !important;
}
.facade-post .thumb.col3 .slick-slide {
  width: 32% !important;
}
.facade-post .thumb.col4 .slick-slide {
  width: 24.2% !important;
}
.thumb li {
  position: relative;
  width: 100%;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.thumb li:before {
  content: "";
  display: block;
  padding-top: 65%;
}
.thumb li:hover {
  cursor: pointer;
  opacity: .7;
}
.slider li img, .thumb li img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.slick-track:before, .slick-track:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .example-post main, .facade-post main {
    width: 95%;
    margin: 20px auto 0;
  }
}


/*--------------------------------------------------------------
## 流れ(flow.html)
--------------------------------------------------------------*/
.flow {
  padding-bottom: 55px;
  background: #f3f3f3;
}
.flow h2 {
  margin-bottom: 50px;
}
.flow ol {
  width: 80%;
  max-width: 750px;
  margin: auto;
}
.flow ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.flow ol li:last-child {
  margin-bottom: 0;
}
.flow ol li img {
  display: block;
}
.flow ol li div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 25px 0 0 40px;
}
.flow ol li div h3 {
  margin-bottom: 15px;
}
.flow ol li div p {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .flow ol {
    width: 90%;
  }
  .flow ol li {
    display: block;
    margin-bottom: 40px;
    text-align: center;
  }
  .flow ol li img {
    margin: auto;
  }
  .flow ol li div {
    padding: 0;
  }
  .flow ol li div p {
    text-align: left;
  }
}


/*--------------------------------------------------------------
## event(event.html)
--------------------------------------------------------------*/
#event main {
  width: 80%;
  max-width: 1100px;
  margin: 30px auto 0;
}
#event h1 img {
  width: 100%;
  height: auto;
}
#event h2.subtitle {
  margin: 35px 0 25px;
  line-height: 1.5;
}
.event-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
}
.event-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: 66%;
}
.event-info > div {
  width: 48.5%;
}
.event-info dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  line-height: 1.5;
}
.event-info dl dt {
  width: 100px;
}
.event-info dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.attention {
  margin: 15px 0;
  font-size: 11px;
  line-height: 1.9;
}
.reservation {
  color: #1314ef;
  border-bottom: solid 1px transparent;
}
.reservation:hover {
  border-bottom: solid 1px #1314ef;
}
.description {
  line-height: 1.6;
}
/** === イベントマップ === **/
.event-map {
  width: 32%;
  position: relative;
}
.event-map::after {
  content: "";
  display: block;
  padding-top: 55%;
}
.event-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/** === 過去のイベントリンク === **/
#event .event_container {
  margin-bottom: 40px;
}
.past-eventInfo {
  padding: 55px 0;
}
.past-eventInfo h3 {
  margin-bottom: 35px;
}
.past-eventLink {
  text-align: right;
}
.past-eventLink a {
  color: #3e3a39;
  border-bottom: solid 1px #3e3a39;
}
.past-eventLink a:hover {
  color: #aaa;
  border-bottom: solid 1px #aaa;
}
/** === 終了イベント用 === **/
#event.finished h2.subtitle {
  margin-bottom: 5px;
}
#event.finished h2.subtitle + p {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
  color: #ff0000;
}
.event-map.dummy-map {
  background: #aaa;
}
.event-map.dummy-map div {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.event-map.dummy-map div img {
  display: inline-block;
  width: 60px;
  height: auto;
  margin-bottom: 15px;
}
.event-map.dummy-map div p {
  color: #fff;
}
/** === 過去のイベント一覧(all-events.html) === **/
#all-events .event_inner {
  margin-bottom: 50px;
}
@media screen and (max-width: 1100px) {
  #event main {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #event main {
    width: 90%;
  }
  .event-contents, .event-info {
    display: block;
    width: 100%;
  }
  .event-contents {
    margin-bottom: 30px;
  }
  .event-info > div, .event-map {
    width: 100%;
  }
  .event-info > div {
    margin-bottom: 20px;
  }
  .attention {
    margin: 10px 0;
  }
  .past-eventInfo {
    padding: 30px 0;
  }
  #event .event_container, #all-events .event_container {
    display: block;
  }
  #event .event_inner, #all-events .event_inner {
    width: 100%;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
## 過去のイベント一覧(all-events.html)
--------------------------------------------------------------*/
#all-events h1.sec-title {
  font-size: 20px;
  letter-spacing: 4px;
  text-indent: 4px;
}


/*--------------------------------------------------------------
## 会社概要
--------------------------------------------------------------*/
#about h1 {
  padding: 100px 0 50px;
  text-align: center;
}
#about h1 img {
  max-width: 100%;
}
#about .concept p {
  line-height: 1.8;
}
.aboutUs {
  padding-bottom: 60px;
}
.aboutUs dl {
  width: 600px;
  margin: auto;
}
.aboutUs dl div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  padding: 0 0 12.5px 20px;
  font-size: 14px;
  border-bottom: solid 1px #333;
}
.aboutUs dl div:last-child {
  margin-bottom: 0;
}
.aboutUs dl dt {
  width: 150px;
}
.aboutUs dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .aboutUs dl {
    width: 90%;
  }
  .aboutUs dl dt {
    width: 90px;
  }
  .aboutUs dl dd {
    line-height: 1.3;
  }
}


/*--------------------------------------------------------------
## お問い合わせ(contact.html)
--------------------------------------------------------------*/
.contact-img {
  width: 90%;
  max-width: 790px;
  margin: 100px auto 0;
}
.contact-img img {
  width: 100%;
  height: auto;
}
#contact h1 {
  padding: 85px 0;
}
form {
  max-width: 550px;
  margin: auto;
}
#contact form {
  margin-bottom: 50px;
}
form > div {
  margin-bottom: 10px;
}
form > div p {
  margin: 0 0 5px 30px;
}
form > div input[type="text"], form > div textarea {
  display: block;
  width: 100%;
  padding: 5px 35px;
  font-size: 14px;
  color: #333;
  border: none;
  border-bottom: solid 1px #333;
}
form > div textarea {
  height: 170px;
  resize: none;
}
form > div input:focus, form > div textarea:focus {
  outline: none;
}
form .submit-btn {
  margin-top: 35px;
  text-align: center;
}
form input[type="submit"] {
  display: inline-block;
  width: 130px;
  padding: 7px 0;
  font-size: 15px;
  color: #fff;
  background: #29abe2;
  border: none;
  border-radius: 3px;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  cursor: pointer;
}
form input[type="submit"]:hover {
  background: #ccc;
}
@media screen and (max-width: 768px) {
  #contact main {
    width: 90%;
    margin: auto;
  }
  .contact-img {
    width: 100%;
    margin-top: 40px;
  }
  #contact h1 {
    padding: 55px 0;
  }
  form > div p {
    margin-left: 0;
  }
  form > div input[type="text"], form > div textarea {
    padding: 5px 8px;
    border: solid 1px #ccc;
  }
  form > div input:focus, form > div textarea:focus {
    border: solid 1px #333;
  }
}
/** === メール送信完了画面 === **/
#mailto main {
  width: 90%;
  margin: 0 auto 60px;
  text-align: center;
}
#mailto .sec-title {
  padding-bottom: 20px;
}
#mailto .sec-title + p {
  margin-bottom: 30px;
}
.note {
  display: inline-block;
  margin-bottom: 60px;
  text-align: left;
  line-height: 1.5;
}
.back-home a {
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  color: #333;
  border: solid 2px #333;
}
.errmsg {
  margin: 50px 0;
}


/*--------------------------------------------------------------
## 404エラーページ(404.html)
--------------------------------------------------------------*/
#error404 main {
  text-align: center;
  margin-bottom: 50px;
}
#error404 .sec-title {
  padding-bottom: 20px;
}
#error404 .subtitle {
  margin-bottom: 50px;
}
#error404 .subtitle + p {
  line-height: 1.5;
}
#error404 main .homeLink {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  border: solid 2px #333;
}
#error404 main .homeLink:hover {
  color: #aaa;
  background: #eee;
  border-color: #aaa;
}
#error404 main ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 350px;
  margin: 30px auto;
}
#error404 main ul li {
  width: 25%;
  margin-bottom: 15px;
}
#error404 main ul li a {
  color: #333;
}
#error404 main ul li a:hover {
  color: #aaa;
}


/** === バナー追加 === **/
.bnr {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 20px 0;
  text-align: center;
  background: #333;
  color: #fff;
}
.bnr p {
  font-size: 22px;
  text-align: center;
  letter-spacing: 4px;
  text-indent: 4px;
  color: #fff;
}
.bnr span {
  margin-right: 20px;
}
.model-house-bnr {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 35px;
  position: relative;
}
.model-house-bnr img {
  width: 100%;
  height: auto;
}
.model-house-bnr h3, .model-house-bnr p, .reserve a {
  color: #fff;
}
.model-info {
  position: absolute;
  top: 60px;
  left: 60px;
}
.model-info h3 {
  margin-bottom: 20px;
  border-bottom: solid 2px #fff;
  font-size: 55px;
  font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',serif;
  letter-spacing: 1px;
}
.date {
  font-family: serif;
  font-size: 20px;
}
.model-info .date:nth-of-type(1) {
  margin-bottom: 8px;
}
.date span {
  display: inline-block;
  margin: 0 6px;
  padding: 2px 10px;
  color: #203436;
  font-size: 13px;
  vertical-align: 3px;
  background: #fff;
  border-radius: 3px;
}
.reserve {
  position: absolute;
  bottom: 70px;
  left: 60px;
}
.reserve p {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}
.reserve a {
  display: inline-block;
  padding: 10px 35px;
  font-size: 18px;
  text-indent: 3px;
  letter-spacing: 3px;
  border: solid 1px #fff;
  border-radius: 5px;
}
.reserve a:hover {
  background: rgba(255, 255, 255, .5);
}
@media screen and (max-width: 1050px) {
  .model-info {
    top: 40px;
    left: 40px;
  }
  .model-info h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .date {
    font-size: 16px;
  }
  .reserve {
    bottom: 40px;
    left: 40px;
  }
}

@media screen and (max-width: 768px) {
  .bnr {
    padding: 15px;
  }
  .bnr p {
    font-size: 18px;
  }
  .bnr span {
    display: block;
    margin: 0 0 10px;
  }
  .model-info h3 {
    font-size: 20px;
  }
  .date {
    font-size: 13px;
  }
  .date span {
    font-size: 10px;
    vertical-align: 1px;
  }
  .reserve p {
    font-size: 13px;
  }
  .reserve a {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .model-house-bnr {
    width: 100%;
  }
  .model-info {
    top: 20px;
    left: 20px;
  }
  .reserve {
    bottom: 20px;
    left: 20px;
  }
  .reserve p {
    display: none;
  }
  .reserve a {
    padding: 5px 35px;
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
## モデルハウス イベントページ
--------------------------------------------------------------*/
#model main {
  padding-bottom: 65px;
}
.model-img {
  margin-bottom: 55px;
}
.model-img img {
  width: 100%;
  height: auto;
}
.model-title {
  margin-bottom: 60px;
  text-align: center;
}
.model-title h1 {
  margin-bottom: 15px;
  font-size: 45px;
  font-family: serif;
}
.model-title p {
  font-size: 20px;
  font-family: serif;
}
.model-title p:nth-of-type(1) {
  margin-bottom: 10px;
}
.model-title p span {
  display: inline-block;
  margin: 0 5px;
  font-size: 18px;
}
.model-text {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto 50px;
}
.model-text h2, .access-info p {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}
.access-info p:nth-of-type(3), .access-info p:nth-of-type(4) {
  margin-left: 10px;
}
.model-text p {
  color: #555;
  line-height: 2;
  letter-spacing: 1px;
}
.access-info {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto 70px;
}
.reserve-form h2 {
  margin-bottom: 70px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  text-indent: 1px;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .model-img {
    margin-bottom: 30px;
  }
  .model-title {
    margin-bottom: 30px;
  }
  .model-title h1 {
    font-size: 22px;
  }
  .model-title p {
    font-size: 14px;
  }
  .model-title p span {
    font-size: 13px;
  }
  .model-text h2, .access-info p {
    font-size: 14px;
    line-height: 1.5;
  }
  .access-info {
    margin-bottom: 45px;
  }
  .reserve-form h2 {
    margin-bottom: 40px;
    font-size: 18px;
  }
  #model form {
    width: 90%;
  }
}