@charset "UTF-8";
/* **************************************************************************************

RESET

************************************************************************************** */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  color: #404040;
}

html {
  font-size: 16px;
}

body {
  font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
}

main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  font-weight: normal;
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

area {
  border: none;
  outline: none;
}

abbr, acronym {
  border: 0;
}

* {
  box-sizing: border-box;
}

input, textarea {
  /*appearance: none;
  border: 0;
  outline: none;*/
}

button {
  appearance: none;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}

input[type=submit], input[type=button] {
  cursor: pointer;
}

input, textarea {
  /*appearance: none;*/
}

figure {
  line-height: 0;
}

img {
  height: auto;
}

a {
  color: #404040;
  text-decoration: none;
}

.hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media print, screen and (min-width: 769px) {
  .sp {
    display: none;
  }

  body {
    min-width: 1200px;
  }
}
/* **************************************************************************************

project : header

************************************************************************************** */
.header {
  z-index: 100;
  width: 100%;
  background: #fff;
  transition: all 0.5s ease;
  position: fixed !important;
}

@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    background: #fff;
    height: 60px;
  }
  .header_heading {
    text-align: center;
  }
  .header-logo {
    transition: all 0.1s ease-out;
    position: absolute;
    bottom: 0;
    top: 18px;
    left: 15px;
    margin: auto;
    width: 80px;
  }
  .header-logo img {
    width: 100%;
  }
  .header-logo a {
    display: block;
  }
  .header_txt {
    transition: all 0.1s ease-out;
    position: absolute;
    font-weight: 500;
    letter-spacing: 4px;
    bottom: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  .header-sns {
    position: fixed;
    margin: 0;
    right: 60px;
    top: 22px;
    width: 160px;
  }
  .header-sns a {
    margin: 0;
    height: 20px;
    opacity: 0.4;
    width: 20px;
  }
  .header-sns a img {
    height: 100%;
    width: auto;
  }

  .gnavi-list {
    display: none;
  }

  .r-bnr {
    position: fixed;
    margin: auto;
    bottom: 0;
    z-index: 10;
    width: 100%;
    border-top: 1px solid #efefef;
    background: #fff;
    vertical-align: top;
  }
  .r-bnr ul {
    display: flex;
  }
  .r-bnr li {
    width: 50%;
    padding: 10px 0;
    text-align: center;
    vertical-align: top;
  }
  .r-bnr li a {
    font-size: 3vw;
    transition-duration: 0.3s;
  }
  .r-bnr li span {
    display: block;
  }
  .r-bnr li img {
    width: 40px;
  }
}
@media print, screen and (min-width: 769px) {
  .header {
    min-width: 1200px !important;
    width: 100%;
    top: 0;
    height: 80px;
    background: #fff;
    position: fixed;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
  }
  .header-gnavi {
    width: 840px;
    margin: 24px auto 0;
    flex-grow: 1;
  }
  .header-logo {
    transition: all 0.3s ease-out;
    z-index: 10;
    width: 120px;
    margin: 14px 0 0 14px;
  }
  .header-logo img {
    width: 100% !important;
    height: auto;
  }
  .header-logo a {
    transition: all 0.3s ease-out;
    display: block;
  }
  .header-sns {
    margin: 24px 16px 0 0;
  }
  .header-sns:last-of-type {
    margin-left: auto;
  }
  .header-sns a {
    transition: all 0.5s ease-out;
    margin: 0;
    opacity: 0.4;
  }
  .header-sns a img {
    height: 100%;
    width: auto;
  }
  .header-sns a:hover {
    opacity: 1;
  }

  .gnavi-list {
    margin: 0 auto;
    padding: 0;
    max-width: 840px;
    display: flex;
    justify-content: space-between;
  }
  .gnavi-item {
    margin: 0 16px;
    font-size: 15px;
  }
  .gnavi-item a {
    position: relative;
  }
  .gnavi-item a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #666;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }
  .gnavi-item a:hover::after {
    transform-origin: center top;
    transform: scale(1, 1);
  }

  .child {
    display: none;
    position: absolute;
    padding: 20px 20px 10px 10px;
    background: #fff;
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.2);
  }
  .child li {
    margin: 0 0 10px;
    text-align: left;
  }
}
/* **************************************************************************************

SP-NAVI

************************************************************************************** */
#nav-toggle, .close {
  display: none;
  position: fixed;
  right: 12px;
  top: 16px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}

#nav-toggle div {
  position: relative;
  top: 5px;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #404040;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 11px;
}

#nav-toggle span:nth-child(3) {
  top: 22px;
}

@media screen and (max-width: 768px) {
  #sp_navi, header nav, header .sns {
    display: none;
  }

  #menu .child {
    display: none;
    overflow: hidden;
  }

  #menu .child.open {
    display: block;
  }

  #menu a::after {
    display: block;
    content: "";
    /*background-image:url("../images/i_arr.png");*/
    background-image: none;
    background-repeat: no-repeat;
    background-size: auto 14px;
    width: 15px;
    height: 15px;
    float: right;
    margin-top: 0;
    margin-right: 10px;
  }

  #menu a.has-child::after {
    background-image: url("../images/i_arr.png");
    background-repeat: no-repeat;
    background-size: auto 15px;
    background-position: top 0 right 0;
    transform: rotate(90deg);
    transform-origin: center;
  }

  #menu a.open::after {
    background-image: url("../images/i_arr.png");
    background-repeat: no-repeat;
    background-size: auto 15px;
    background-position: top 0 right 4px;
    transform: rotate(-90deg);
    transform-origin: center;
  }

  #sp_navi {
    position: fixed;
    z-index: 1000;
    display: none;
    width: 100%;
    top: 60px;
    left: 0;
    height: 100%;
    padding-bottom: 80px;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  #sp_navi > ul {
    border-top: 1px solid #dfdfdf;
  }

  #sp_navi ul li {
    text-align: left;
    width: 100%;
    color: #666;
  }

  #sp_navi > ul li a,
  #sp_navi > ul li span {
    border-bottom: 1px solid #dfdfdf;
    color: #666;
    display: block;
    padding: 15px 0 15px 10px;
    width: 100%;
    text-align: left;
  }

  .child li a {
    padding-left: 20px !important;
  }

  .child li a:before {
    content: "└ ";
  }

  #nav-toggle {
    display: block;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }

  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }

  .open #global-nav {
    -moz-transform: translateY(556px);
    -webkit-transform: translateY(556px);
    transform: translateY(556px);
  }

  .overlay {
    display: none;
    /* 初期状態では非表示 */
    position: fixed;
    /* 画面に固定 */
    top: 0;
    left: 0;
    width: 100%;
    /* 画面全体の幅 */
    height: 100%;
    /* 画面全体の高さ */
    background: white;
    /* 半透明の黒 */
    z-index: 10;
    /* ナビゲーションメニューよりも低い値に設定 */
  }
}
@media print, screen and (min-width: 769px) {
  /*PC*/
}
/* **************************************************************************************

SITE CONTENT

************************************************************************************** */
@media screen and (max-width: 768px) {
  .pagetitle {
    margin: 0 auto !important;
    padding: 100px 0 60px !important;
    background: none !important;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-size: 7vw;
    letter-spacing: 1vw;
    line-height: 12vw;
  }

  .pagetitle .sub {
    display: block;
    font-size: 5vw;
  }

  #contents img {
    width: 100% !important;
    height: auto;
  }
}
@media print, screen and (min-width: 769px) {
  .content {
    zoom: 1;
  }

  .content:after {
    display: block;
    content: "";
    clear: both;
  }

  section {
    zoom: 1;
  }

  section:after {
    display: block;
    content: "";
    clear: both;
  }

  section .box {
    zoom: 1;
  }

  section .box:after {
    display: block;
    content: "";
    clear: both;
  }

  #contents img {
    width: auto;
    height: auto;
  }

  .pagetitle {
    margin: 60px auto 120px !important;
    background: none !important;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-size: 38px !important;
    letter-spacing: 12px !important;
  }

  .pagetitle .sub {
    display: block;
    font-size: 20px;
  }
}
/* **************************************************************************************

SITE HEADER

************************************************************************************** */
@media screen and (max-width: 768px) {
  .openhouseBox {
    position: fixed;
    display: flex;
    flex-wrap: nowrap;
    bottom: 80px;
    right: 15px;
    z-index: 100;
  }

  .openhouse-area {
    margin: 0 8px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    font-size: 12px;
    color: #fff;
    background-color: #666;
    text-align: center;
  }

  .openhouse-area a {
    display: block;
    color: #fff;
    padding: 36px 0 0;
    height: 120px;
  }
}
@media print, screen and (min-width: 769px) {
  .openhouseBox {
    position: fixed;
    display: flex;
    top: 100px;
    right: 100px;
    z-index: 2;
  }

  .openhouse-area {
    margin: 0 10px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    font-size: 14px;
    color: #fff;
    background-color: #666;
    text-align: center;
  }

  .openhouse-area a {
    display: block;
    color: #fff;
    padding: 38px 0 0;
    height: 120px;
  }
}
/* **************************************************************************************

SITE HEADER

************************************************************************************** */
@media screen and (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
}
@media print, screen and (min-width: 769px) {
  .breadcrumbs {
    margin: 100px 0 0 30px;
  }

  .breadcrumbs li {
    display: inline-block;
    font-size: 12px;
  }

  .breadcrumbs li:first-child:before {
    content: "";
  }

  .breadcrumbs li:before {
    content: " > ";
  }
}
/* **************************************************************************************

SNS

************************************************************************************** */
@media screen and (max-width: 768px) {
  .sns-title {
    margin-bottom: 10px;
  }
  .sns-list {
    margin: 0 auto !important;
    width: 120px;
    display: flex;
    justify-content: space-between;
  }
  .sns-item {
    margin: 0;
    width: 20px;
  }
  .sns-item a {
    display: block;
    width: 20px;
  }
  .sns-item img {
    width: 100% !important;
    height: auto !important;
  }
}
@media print, screen and (min-width: 769px) {
  .sns-title {
    margin-bottom: 10px;
  }
  .sns-list {
    margin: 0 auto !important;
    width: 160px;
    display: flex;
    justify-content: space-between;
  }
  .sns-item {
    margin: 0;
    width: 26px;
  }
  .sns-item a {
    display: block;
    width: 26px;
  }
  .sns-item img {
    width: 100% !important;
    height: auto !important;
  }
}
/* **************************************************************************************

project : inview

************************************************************************************** */
.ef-fade01 {
  transition: 2s;
  opacity: 0;
  transform: translate(0, 5%);
}

.fade01 {
  opacity: 1.0;
  transform: translate(0, 0);
}

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

SITE FOOTER

************************************************************************************** */
.hokkaido_wood {
  margin: 80px auto 0;
  text-align: center;
  width: 120px;
}
.hokkaido_wood img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .footer {
    text-align: center;
    padding: 0 15px 150px;
  }

  .footer-logo {
    margin: 0 auto 20px;
    width: 30%;
  }

  .footer-logo img {
    width: 100%;
  }

  .footer .sns {
    margin: 40px 0;
  }

  .footer .sns a {
    transition-duration: 0.3s;
  }

  .footer .sns a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha(opacity=60)";
  }

  /*
.footer .sns-title {
  margin: 0 0 20px;
  font-family: "Noto Serif JP", serif;
}
.footer .sns-list {
  margin-bottom: 40px;
}
.footer .sns-item {
  display: inline-block;
  margin: 0 6%;
  width: 12%;
}
.footer .sns-item img {
  width: 100%;
}
  */
  .footer .copyright {
    margin: 40px 0 0;
    font-size: 12px;
  }

  /*
    .r-bnr {
      position: fixed;
      margin: auto;
      bottom: 0;
      z-index: 10;
      width: 100%;
      border-top: 1px solid #efefef;
      background: #fff;
      vertical-align: top;
    }
      .r-bnr ul{
          
      }
    .r-bnr li {
      width: 50%;
      padding: 10px 0;
      text-align: center;
      vertical-align: top;
    }
    .r-bnr li a {
      font-size: 3vw;
      transition-duration: 0.3s;
    }
    .r-bnr li a:hover {
      opacity: 0.6;
      filter: alpha(opacity=60);
      -ms-filter: "alpha(opacity=60)";
    }
    .r-bnr li span {
      display: block;
    }
    .r-bnr li img {
      width: 40px;
    }
    .r-bnr li._youtube{
  		margin-top: 3px;
    }
    .r-bnr li._youtube img {
  		width: 34px;
  		  padding-bottom: 5px;
    }
    .r-bnr li._mail {
  		margin-top: 10px;
  	}
    .r-bnr li._mail img {
      padding-bottom: 4px;
    }
    .r-bnr ._line {
      display: none;
    }
    .r-bnr ._material{
  	display: none;
    }
  */
  .pagetop {
    display: none !important;
  }

  .line-content {
    text-align: center;
  }

  .line-content h2 {
    font-size: 20px;
    text-align: center;
    margin: 0 0 20px;
  }

  .line-content p {
    margin: 0 0 20px;
    font-size: 13px;
  }

  .line-content dl {
    margin: 0 0 20px;
  }

  .line-content dl dt {
    margin: 0 0 10px;
  }

  .line-content dl dd {
    text-align: center;
  }

  .line-content dl dd img {
    width: 40vw;
  }
}
@media print, screen and (min-width: 769px) {
  .footer {
    padding: 40px 0 40px;
    text-align: center;
  }

  .footer-logo {
    width: 120px;
    margin: 0 auto 20px;
  }

  .footer-logo img {
    width: 100%;
  }

  .footer .sns {
    margin: 40px 0;
  }

  .footer .sns a {
    transition-duration: 0.3s;
  }

  .footer .sns a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha(opacity=60)";
  }

  /*
.footer .sns-title {
  margin: 0 0 20px;
  font-family: "Noto Serif JP", serif;
}
.footer .sns-list {
  margin-bottom: 40px;
}
.footer .sns-item {
  display: inline-block;
  margin: 0 15px;
  width: 40px;
}
.footer .sns-item img {
  width: 100%;
}
  */
  .footer .copyright {
    margin: 40px 0 0;
    font-size: 12px;
  }

  .r-bnr {
    position: fixed;
    margin: auto;
    top: 18vh;
    right: 20px;
    bottom: 0;
    width: 87px;
    z-index: 0;
  }

  .r-bnr li {
    margin: 0 0 20px;
    text-align: center;
  }

  .r-bnr li a {
    font-size: 12px;
    transition-duration: 0.3s;
  }

  .r-bnr li a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha(opacity=60)";
  }

  .r-bnr li span {
    display: block;
  }

  .r-bnr li img {
    width: 40px;
  }

  .pagetop {
    width: 48px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 2;
  }

  .line-content {
    text-align: center;
  }

  .line-content h2 {
    font-size: 24px;
    text-align: center;
    margin: 0 0 20px;
  }

  .line-content p {
    margin: 0 0 20px;
  }

  .line-content dl {
    display: inline-block;
    margin: 0 20px;
  }

  .line-content dl img {
    width: 160px;
  }
}
/* **************************************************************************************

project : input

************************************************************************************** */
form .center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  input[type="checkbox"] {
    width: 24px;
    height: 24px;
    vertical-align: bottom;
    border: 1px solid #666;
  }
  input[type="text"], input[type="email"], input[type="tel"], input[type="date"] {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #666;
  }
  input[type="date"] {
    width: auto;
  }

  textarea {
    display: block;
    border: 1px solid #666;
    width: 100%;
    min-height: 80px;
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
  }

  form strong {
    display: inline-block;
    margin: 10px;
    padding: 5px 10px 6px;
    background-color: red;
    color: #fff;
    font-size: 13px;
    line-height: 1;
  }

  select {
    border: 1px solid #666;
    background-color: #fff;
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    appearance: auto;
  }
}
@media print, screen and (min-width: 769px) {
  input {
    margin-top: 5px;
    font-size: 16px;
  }
  input[type="radio"] {
    position: relative;
    width: 26px;
    vertical-align: top;
    cursor: pointer;
    border: 1px solid #666;
  }
  input[type="checkbox"] {
    vertical-align: middle;
    border: 1px solid #666;
    background-color: #fff;
    width: 26px;
    height: 26px;
    cursor: pointer;
    position: relative;
  }
  input[type="text"], input[type="email"], input[type="tel"], input[type="date"] {
    display: block;
    border: 1px solid #666;
    background-color: #fff !important;
    width: 100%;
    height: 26px !important;
    padding: 10px;
    font-size: 16px;
  }

  textarea {
    display: block;
    border: 1px solid #666;
    background-color: #fff !important;
    width: 100%;
    min-height: 120px;
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
  }

  form strong {
    display: inline-block;
    margin: 10px;
    padding: 5px 10px 6px;
    background-color: red;
    color: #fff;
    font-size: 13px;
    line-height: 1;
  }

  select {
    border: 1px solid #666;
    background-color: #fff;
    width: auto;
    padding: 10px 20px;
    font-size: 16px;
    appearance: auto;
  }
}
