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

/* common */

body {
    width: 100%;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

main {
    font-size: 15px;
    line-height: 1.8rem;
    overflow: hidden;
    margin-top: 120px;
}

img {
    width: 100%;
    transform-box: fill-box;
}

a {
    width: 100%;
    transition: .3s ease-in-out;
}

@media screen and (max-width: 768px){
	a:hover {
    opacity: 1;
}
}

@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.sp_none{ display: block;}
.pc_none { display: none;}

@media screen and (max-width: 768px){
    .sp_none{ display: none;}
    .pc_none { display: block;}
}

.flex {
    display: flex;
    flex-wrap: wrap;
	 align-items: stretch;
}

.barlow {
    font-family: 'Barlow', sans-serif;
}

.grid {
  background-image:
  repeating-linear-gradient(
    90deg,
    #EDEDED ,
    #EDEDED 1px,
    transparent 1px,
    transparent 32px
  ),
  repeating-linear-gradient(
    0deg,
    #EDEDED ,
    #EDEDED 1px,
    #F5F5F0 1px,
    #F5F5F0 32px
  );
}


/* ヘッダー */

#header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
    transition: .3s;
}

#header.scroll {
    background:rgba(255,255,255,0.95);
}

.header-inner {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
}

.header-logo {
    width: 10%;
    min-width: 60px;
    max-width: 150px;
    margin-left: 20px;
    z-index: 100;
}

#header .menu-top {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
}
#header .menu-top ul {
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
}

#header .menu-top ul .instagram {
    width: 35px;
    margin-top: 6px;
    margin-right: 50px;
}

#header .menu-top ul .tel {
    position: relative;
    font-size: 30px;
    margin-right: 20px;
}
#header .menu-top ul .tel::before {
    position: absolute;
    left: -35px;
    content: url(../images/common/icon-tel.svg);
    margin-right: 5px;
    height: 17px;
  }
#header .menu-top ul .businesshours {
    font-size: 17px;
    font-weight: bold;
    margin-right: 20px;
}
#header .menu-top ul .consultation , #header .menu-top ul .contact {
    font-size: 17px;
    text-align: center;
}
#header .menu-top ul .consultation {
	  display: flex;
	justify-content: center;
	align-items: center;
    background-color: #EDE8B6;
	transition: 0.3s all;
}
#header .menu-top ul .consultation:hover {
    background-color: #EFDE85;
	transition: 0.3s all;
}
#header .menu-top ul .consultation a {
	display: inline-block;
	padding: 20px;
}
#header .menu-top .consultation-text{
    position: relative;
    padding-left: 30px;
    font-weight: bold;
    display: inline-block;
}
#header .menu-top .consultation-text::before {
    position: absolute;
    left: 0;
    top: -5px;
    content: url(../images/common/icon-house.svg);
    width: 17px;
    height: 17px;
} 
#header .menu-top ul .contact {
	  display: flex;
	justify-content: center;
	align-items: center;
    background-color: #EB831B;
	transition: 0.3s all;
}
#header .menu-top ul .contact:hover{
    background-color: #E67300;
	transition: 0.3s all;
}
#header .menu-top .contact-text{
    position: relative;
    padding-left: 30px;
    font-weight: bold;
    display: inline-block;
}
#header .menu-top .contact-text::before {
    position: absolute;
    left: 0;
    top: -3px;
    content: url(../images/common/icon-mail-h.svg);
    width: 17px;
    height: 17px;
} 
#header .menu-top ul .contact a {
	display: inline-block;
    color: #fff;
	padding: 20px;
}

#header .menu-under {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    margin: 30px 0;
}
#header .menu-under ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#header .menu-under ul li{
    font-weight: bold;
    padding: 10px 20px;
}
#header .menu-under ul li a:hover{
	color: #EB831B;
}
#header .menu-under ul li:not(:last-child){
    border-right: 1px solid #BFBFBF;
}
#header .menu-under ul li .current {
  color: #EB831B;
}


@media screen and (max-width: 1300px) {

    #header .menu-under {
        width: calc(100% - 200px);
    }

    #header .menu-under ul {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #header .menu-top ul .consultation , #header .menu-top ul .contact {
        font-size: 17px;
        text-align: center;
    }
}

@media screen and (max-width: 1100px) {

    #header .menu-top ul .instagram {
        margin-right: 42px;
    }

    #header .menu-top ul .tel {
        font-size: 26px;
        margin-right: 10px;
    }

    #header .menu-top ul .businesshours {
        font-size: 15px;
        margin-right: 15px;
    }

    #header .menu-top ul .consultation , #header .menu-top ul .contact {
        font-size: 15px;
    }
    #header .menu-top .contact-text::before {
        top: -5px;
    }

    #header .menu-under {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translate(130px,-50%);
        width: calc(100% - 130px);
        margin: 30px 0;
        text-align: left;
    }

    #header .menu-under ul li{
        font-size: 15px;
        padding: 10px 15px;
    }
	#header .menu-under ul li a:hover{
		opacity: 1;
		color: #EB831B;
    }

}

@media screen and (max-width: 900px) {

    .header-inner {
        height: auto;
    }

    .header-logo {
      margin-top: 7px;
      max-width: 70px;
    }
    
    #header.scroll {
        padding: 0;
        background:rgba(255,255,255,0.95);
    }
    .nav-menu {
        display: none;
    }

    main {
        margin-top: 60px;
    }

}


/* お問い合わせ */

 .contact-sec {
    width: 100%;
    text-align: center;
    margin: 100px 0 50px;
 }
 .contact-sec__title {
    display: flex;
    justify-content: center;
  }
  .contact-sec__title:before,
  .contact-sec__title:after {
    border-top: 1px solid black;
    content: "";
    width: 100%; 
  }
  .contact-sec__title:before {
    margin-right: 30px; 
  }
  .contact-sec__title:after {
    margin-left: 30px; 
  }

  .contact-sec__title .sec-title {
    margin-top: -40px;
  }

  .contact-sec__contents {
    width: 800px;
    max-width: 90%;
    margin: 0 auto;;
    justify-content: space-between;
  }

  .contact-sec__contents a {
    width: calc(100% / 2 - 10px);
    padding: 25px 0;
    align-items: center;
  }

  .contact-sec__contents p {
    font-weight: bold;
  }

  .contact-sec__tel {
    background-color: #F4F1D3;
  }
  .contact-sec__tel-num {
    position: relative;
    display: inline-block;
    font-size: 35px;
    padding-left: 30px;
    margin-bottom: 10px;
  }
  .contact-sec__tel-num::before {
    position: absolute;
    left: 0;
    content: url(../images/common/icon-tel.svg);
    margin-right: 5px;
    height: 17px;
  }
  .contact-sec__form {
    background-color: #333;
  }
  .contact-sec__form::before {
    content: url(../images/common/icon-mail.svg);
    height: 17px;
  }
  .contact-sec__form:hover {
    background-color: #EB831B;
  }
  .contact-sec__form-text {
    font-size: 18px;
    margin-top: 7px;
  }
  .contact-sec__form p{
    color: #fff;
  }


  @media screen and (max-width: 800px) {

    .contact-sec {
        width: 100%;
        text-align: center;
        margin: 60px 0 20px;
     }

    .contact-sec__contents a {
        width: 100%;
        margin-bottom: 20px;
      }

  }



/* フッター */

#footer {
    width: 100%;
    background-color: #F5F5F0;
}
#footer .footer__inner {
    max-width: 90%;
    width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

#footer .footer__company-information {
    width: 35%;
    line-height: 1.5rem;
}

#footer .footer-logo {
    width: 150px;
    margin-bottom: 25px;
    display: inline-block;
}

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

#footer .footer__company-address {
    margin-bottom: 10px;
}

.footer__company-tel {
    margin-bottom: 15px;
}

#footer .footer_instagram-logo {
    width: 35px;
}

#footer .footer-nav {
    width: 65%;
}

#footer .footer-nav ul{
    width: calc(100% / 3 - 20px);
    margin: 10px;
}
.footer-nav__title {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1rem;
    margin-bottom: 20px;
}

#footer .footer-nav ul li{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}
#footer .footer-nav ul li a:hover{
	color: #EB831B;
}

#footer .copyright {
    text-align: center;
    font-size: 14px;
    line-height: 1.5rem;
    padding: 15px;
    color: #fff;
    background-color: #333333;
}


@media screen and (max-width: 900px) {

    #footer .footer__inner {
        padding: 30px 0;
    }

    #footer .footer__company-information {
        width: 100%;
        text-align: center;
    }

    .footer__company-tel span {
        display: none;
    }

    #footer .footer-nav {
        display: none;
    }

    #footer .footer-nav__sp {
        width: 100%;
    }
    #footer .footer-nav__sp ul{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    #footer .footer-nav__sp ul li{
        width: calc(100% / 2 - 2px);
        border-bottom: 4px solid #fff;
		  display: flex;
		  justify-content: space-between;
		  align-items: center;
    }
    #footer .footer-nav__sp ul li a{
        font-weight: bold;
        text-align: center;
        padding: 25px 0;
		  display: inline-block;
	}
    #footer .footer-nav__sp ul li:nth-child(2n) {
        border-left: 4px solid #fff;
    }

}


/* タイトル */

.sec-title {
    text-align: center;
    margin-bottom: 50px;
}
.sec-title__en {
    font-size: 45px;
    font-weight: bold;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0.2rem;
    display: block;
    margin-bottom: 15px;
}
.sec-title__jp {
    font-size: 16px;
    font-weight: bold;
}


@media screen and (max-width: 800px) {

    .sec-title {
        text-align: center;
        margin-bottom: 30px;
    }
    .sec-title__en {
      font-size: 35px;
      margin-bottom: 10px;
  }
  .sec-title__jp {
      font-size: 15px;
      font-weight: bold;
  }

}


/* ボタン */

.more-btn__or {
    position: relative;
    font-weight: bold;
    padding: 15px 60px;
    color: #fff;
    background-color: #EB831B;
}
.more-btn__or::after {
    position: absolute;
    right: 0;
    top: 22px;
    background-color: #fff; /* 横線の色 */
    content: "";
    height: 2px; /* 横線の高さ */
    width: 30px; /* 横線の長さ */
    transition: .3s ease-in-out;
  }
  .more-btn__or:hover {
    opacity: 100;
    background-color: #000;
  }
  .more-btn__or:hover::after {
    position: absolute;
    right: 0;
    top: 22px;
    background-color: #fff; /* 横線の色 */
    content: "";
    height: 2px; /* 横線の高さ */
    width: 0px; /* 横線の長さ */
    transition: .3s ease-in-out;
  }


/* form */

input, select {
  -webkit-appearance: none;
  appearance: none;
}

.select-container {
  position: relative;
  width: 100px;
}
select {
  -webkit-appearance: none;
  appearance: none; /* デフォルトの矢印を非表示 */
  border-radius: 0;
  height: 34px;
  padding-left: 10px;
}
select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
/* セレクトボックスの矢印デザイン変更 */
.select-container::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid #333;
  content: "";
  position: absolute;
  right: 9px;
  top: 7px;
  width: 0;
}
.select-container::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid #fff;
  content: "";
  position: absolute;
  right: 9px;
  top: 6px;
  width: 0;
}

.form-wrap table td input,
.form-wrap table td input[type="text"], .form-wrap table td input[type="email"], .form-wrap table td input[type="tel"],
.form-wrap table td select, .form-wrap table td option,
.form-wrap table td textarea {
  border: 1px solid #AFAFAF;}

.form-wrap{
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .form-wrap p{
    font-size: 16px;
    text-align: center;
  }

  .form-wrap table {
width: 100%;
table-layout: fixed;
word-break: break-all;
word-wrap: break-all;
	  box-sizing: border-box;
  }
  .form-wrap table th {
    padding: 30px 5px;
    width: 20%;
    text-align: left;
    vertical-align: top;
    font-weight: bold;
  }
  .form-wrap table tr.adder1 th {
    padding: 30px 5px 0;
  }
  .form-wrap table tr.adder2 th,
  .form-wrap table tr.adder3 th {
    padding: 20px 5px 0;
    border-top: none;
  }
  .form-wrap table tr.adder4 th {
    padding: 20px 5px 30px;
    border-top: none;
  }
  .form-wrap table th span {
    font-size: 13px;
    display: block;
    color: #EB831B;
  }
  .form-wrap table td {
    padding: 30px 5px;
    width: 80%;
    font-weight: bold;
    text-align: left;
  }
  .form-wrap table tr.adder1 td {
    padding: 30px 5px 0;
  }
  .form-wrap table tr.adder2 td,
  .form-wrap table tr.adder3 td {
    padding: 20px 5px 0;
    border-top: none;
  }
  .form-wrap table tr.adder4 td {
    padding: 20px 5px 30px;
    border-top: none;
  }
  
  .form-wrap table tr:first-child th,
  .form-wrap table tr:first-child td{
    padding-top: 0;
  }
  
  .form-wrap table td input[type="text"],
  .form-wrap table td input[type="email"],
  .form-wrap table td input[type="tel"] {
    padding: 8px 10px;
  }
  .form-wrap table td input.name1,
  .form-wrap table td input.kana1 {
    margin-right: 20px;
  }
  
  .form-wrap table td input.company,
  .form-wrap table td input.name1,
  .form-wrap table td input.name2,
  .form-wrap table td input.kana1,
  .form-wrap table td input.kana2,
  .form-wrap table td input.zip {
    width: 30%;
  }
  .form-wrap table td input.tel1,
  .form-wrap table td input.tel2,
  .form-wrap table td input.tel3 {
    width: 50%;
  }
  .form-wrap table td input.tel1{
    margin-right: 10px;
  }
  .form-wrap table td input.tel2{
    margin: 0 10px;
  }
  .form-wrap table td input.tel3{
    margin-left: 10px;
  }
  
  .form-wrap table td input.pref,
  .form-wrap table td input.address1,
  .form-wrap table td input.address2,
  .form-wrap table td input.mail_address {
    width: 80%;
  }
  .form-wrap table td input.pref,
  .form-wrap table td input.address1{
    margin-bottom: 60px;
  }
  .form-wrap table td select,
  .form-wrap table td option {
    padding: 5px 10px;
    border-radius: 1px !important;
    
  }
  .form-wrap table td textarea {
    padding: 8px 10px;
    width: 100%;
    height: auto;
    border-radius: 5px;
  }

  .mwform-radio-field input[type="checkbox"]{
    display: none;
  }
  .mwform-radio-field input[type="checkbox"] + span{
    display: inline-block;
    position: relative;
    margin-right: 20px;
    padding: 10px 25px;
    border-radius: 2px;
    text-align: center;
    line-height: 1;
    cursor: pointer;
  }
  .mwform-radio-field input[type="checkbox"] + span::before{
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    content: "";
    margin-top: -7px;
    border: 1px solid #000;
    background: #fff;
  }
  
  .mwform-radio-field input[type="checkbox"]:checked + span::after{
    position: absolute;
    content: "";
    top: 50%;
    left: 4px;
    width: 15px;
    height: 15px;
    margin-top: -3px;
    background: #000;
  }

  .mwform-radio-field input[type="radio"]{
    display: none;
  }
  .mwform-radio-field input[type="radio"] + span{
    display: inline-block;
    position: relative;
    margin-right: 20px;
    padding: 10px 25px;
    border-radius: 2px;
    text-align: center;
    line-height: 1;
    cursor: pointer;
  }
  .mwform-radio-field input[type="radio"] + span::before{
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 14px;
    content: "";
    margin-top: -7px;
    border: 1px solid #000;
    background: #fff;
    border-radius: 50%;
  }
  
  .mwform-radio-field input[type="radio"]:checked + span::after{
    position: absolute;
    content: "";
    top: 50%;
    left: 4px;
    width: 8px;
    height: 8px;
    margin-top: -3px;
    background: #000;
    border-radius: 50%;
  }
  
  .form-wrap .send_btn {
    margin-top: 30px;
    text-align: center;
  }
  
  .form-wrap .send_btn input {
    display: inline-block;
    margin: 10px 10px 0;
    padding: 20px 10px;
    width: 350px;
    text-align: center;
    background-color: #EB831B;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
    background-image: url(../images/common/arrow01.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .form-wrap .send_btn br {
    display: none;
  }
  
  .form-wrap .send_btn input:hover{
    opacity: 0.7;
  }
  
  .form-wrap .send_btn input[name="submitBack"]{
    background-color: #EEE;
    color: #333;
    background-image: url(../images/common/arrow02.png);
    background-position: left 15px center;
  }
  
  .mw_wp_form .error {
    color: #EB831B!important;
  }

  input[type="text"].hasDatepicker {
    border: 1px solid #333;
    margin-right: 10px;
  }

  .form-wrap table td select, .form-wrap table td option {
    padding: 7px 15px;
    background-color: #fff;
  }


  @media screen and (max-width: 768px) {
  
    .form-wrap{
      margin-bottom: 50px;
    }
    
    .form-wrap table {
		width: 95%;
    }
    .form-wrap table tbody,
    .form-wrap table tr {
      width: 100%;
    }
    .form-wrap table th {
      padding: 0px;
      width: 100%;
      border-bottom:none;
		display: block;
    }
    .form-wrap table tr.adder1 th {
      padding: 15px 0px;
    }
    .form-wrap table tr.adder2 th,
    .form-wrap table tr.adder3 th {
      padding: 15px 0px;
    }
    .form-wrap table tr.adder4 th {
      padding: 15px 0px;
    }
    .form-wrap table th span {
      display: inline-block;
      margin-left: 10px;
    }
    .form-wrap table td {
      padding: 5px 0 15px;
      width: 100%;
      border-top: none;
      box-sizing:border-box;
		display: block;
    }
    .form-wrap table td input[type="text"],
    .form-wrap table td input[type="email"] {
      width: 50%;
    }
    .form-wrap table td input.name,
    .form-wrap table td input.kana,
    .form-wrap table td input.zip {
      width: 80%;
    }
    .form-wrap table td input.name1,
    .form-wrap table td input.kana1 {
      margin-right: 10px;
    }
    .form-wrap table tr.adder1 td {
      padding: 0 0px 15px 0px;
    }
    .form-wrap table tr.adder2 td,
    .form-wrap table tr.adder3 td {
      padding: 0 0px 15px 0px;
      border-top: none;
    }
    .form-wrap table tr.adder4 td {
      padding: 0 0px 15px 0px;
      border-top: none;
    }
    .form-wrap table td input.pref,
    .form-wrap table td input.address1,
    .form-wrap table td input.address2 {
      width: 100%;
    }
    .form-wrap table td input.pref,
    .form-wrap table td input.address1{
      margin-bottom: 20px;
    }
    .form-wrap table td input.tel1,
    .form-wrap table td input.tel2,
    .form-wrap table td input.tel3,
    .form-wrap table td input.tel {
      width: 100%;
    }
    .form-wrap table td input.mail_address {
      width: 100%;
    }
    .form-wrap table td textarea {
      padding: 8px;
      width: 100%;
    }
    .form-wrap .send_btn {
      margin-top: 10px;
    }
    .form-wrap .send_btn input {
      width: 100%;
      max-width: 350px;
      margin: 10px auto 0;
    }
	  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0px !important;
}

  }  


/* 共通項目 */

.contactcontents-box {
    width: 90%;
    max-width: 600px;
    margin: 0 auto 80px;
    padding: 20px 0 15px;
    background-color: #fff;
    border: 3px solid #EB831B;
}
.contactcontents-box__text {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #EB831B;
    margin-bottom: 15px;
}
.contactcontents-box__number {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 0.1rem;
    color: #EB831B;
    margin: 0 0 15px;
}
.contactcontents-box__number::before {
    content: "";
    display: inline-block;
    height: 40px;
    width: calc(100vw * 65 / 1100);
    max-width: 40px;
    background-image: url(../images/consultation/icon-tel_or.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 10px;
  }
.contactcontents-box__hour {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #EB831B;
}

@media screen and (max-width: 800px) {
	
.contactcontents-box {
    padding: 18px 0 10px;
    margin: 0 auto 50px;
}
	
	.contactcontents-box a{
		color: #EB831B;
	}
	
	.contactcontents-box__hour {
    font-size: 16px;
}	

.contactcontents-box__text {
    display: block;
    text-align: center;
    font-size: 15px;
    line-height: 1.2rem;
    font-weight: bold;
    color: #EB831B;
    margin-bottom: 15px;
}
	
}


@media screen and (max-width: 500px) {
	
	.contactcontents-box {
    width: 100%;
	 margin: 0 20px 20px 0;
}
	.contactcontents-box__number {
	  font-size: calc(100vw * 45 / 500);
	  margin: 0;
}
	.contactcontents-box__number::before {
    content: "";
    height: 30px;
    width: calc(100vw * 35 / 500);
	background-image: url(../images/consultation/icon-tel_or.svg);
	background-size: contain;
	background-repeat: no-repeat;
  }
	
}

/* 事例ホバー */


.work-thumb {
	overflow:hidden !important; 
}

.works-item a ,
.orderhouse-sec__item a ,
.reform-sec__item a,
.orderhouse-sec__item-first a,
.works-sec__item a {
	display: block;
}

.work-thumb img{
 transition:0.6s all;
}

.works-item a:hover .work-thumb img ,
.orderhouse-sec__item a:hover .work-thumb img ,
.reform-sec__item a:hover .work-thumb img ,
.works-sec__item a:hover .work-thumb img ,
.orderhouse-sec__item-first a:hover .orderhouse-sec__item-first__right .orderhouse-sec__item-img img {
  transform:scale(1.1);
  transition:0.3s all;
}

.works-item-title,
.orderhouse-sec__item-title ,
.reform-sec__item-title,
.orderhouse-sec__item-title 
.works-sec__item-title{
	transition:0.3s all;
}
.works-item a:hover .works-item-title,
.orderhouse-sec__item a:hover .orderhouse-sec__item-title ,
.reform-sec__item a:hover .reform-sec__item-title,
.works-sec__item a:hover .works-sec__item-title,
.orderhouse-sec__item-first a:hover .orderhouse-sec__item-title,
.orderhouse-sec__item-first a:hover .more-btn__solid {
	color: #EB831B;
	transition:0.3s all;
}

.orderhouse-sec__item-first a:hover .more-btn__solid {
    border-bottom: 1px solid #EB831B;
}


/* スライダー */

.mainslider-sec {
    width: 100%;
}

.center-slider .slick-slide {
  margin: 0 10px;
}

.slick-dotted.slick-slider {
    margin-bottom: 65px;
}

.slick-dots {
    bottom: -35px;
}


@media screen and (max-width: 800px) {
	
.center-slider .slick-slide {
  margin: 0 auto;
}
	
}	
	

/* ナビゲーション */

.navigation.pagination {
	justify-content: center;
  margin-bottom: 40px;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 30px;
	height: 30px;
	background: #fff;
	border: solid 1px #3D1F1F;
	font-size: 15px;
	color: #3D1F1F;
	font-weight: 700;
	transition: all 0.15s linear;
	margin-left: 10px;
}

.Pagination-Item-Link-Icon {
	width: 10px;
	fill: #3D1F1F;
}

.page-numbers:hover .Pagination-Item-Link-Icon {
	fill: #fff;
}

#works_archive .page-numbers:hover .Pagination-Item-Link-Icon {
	fill: #3D1F1F;
}

.page-numbers.current {
	background: #3D1F1F;
	color: #fff;
	pointer-events: none;
}

.page-numbers:not(.current):hover {
	background: #3D1F1F;
	color: #fff;
}



/* orderhouse gallery */

.thumbnail { 
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 0;
}
.thumbnail img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}
.thumbnail-nav img{ 
    width: 100%;
}
.thumbnail-thumb { 
    max-width: 800px;
    height: 60px;
    margin: 0 auto 50px;
}
.thumbnail-thumb img{ 
    max-width: 800px;
    height: 60px;
    object-fit: cover;
}
.thumbnail-thumb li {
    margin: 5px;
}
.thumbnial-thumb .slick-next { 
    right: 20px;
    z-index: 100;
}
.thumbnail-thumb .slick-prev {
    left: 15px;
    z-index: 100;
}
.thumbnail-thumb .slick-current { 
	border: 3px solid #EB831B;
	margin: 2px;
}
.thumbnail-thumb div div div { 
    cursor: pointer;
}

.thumbnail-thumb .slick-initialized .slick-slide {
    margin-right: 10px;
}

.thumbnail-thumb .slick-prev {
    left: 15px;
    top: 58%;
    z-index: 100;
}
.thumbnail-thumb .slick-next {
    top: 58%;
    right: 15px;
}



@media screen and (max-width: 800px) {

.thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

}


/* スクロールアニメーション */

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
  }
  .scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
  }
  
  /*----------------------------
  scroll_left ｜左から出現
  ----------------------------*/
  .scroll_left {
      -webkit-transition: 0.8s ease-in-out;
      -moz-transition: 0.8s ease-in-out;
      -o-transition: 0.8s ease-in-out;
      transition: 0.8s ease-in-out;
      transform: translateX(-30px);
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-opacity: 0;
  }
  .scroll_left.on {
      opacity: 1.0;
      filter: alpha(opacity=100);
      -moz-opacity: 1.0;
      transform: translateX(0);
  }
  
  /*----------------------------
  scroll_right ｜右から出現
  ----------------------------*/
  .scroll_right {
      -webkit-transition: 0.8s ease-in-out;
      -moz-transition: 0.8s ease-in-out;
      -o-transition: 0.8s ease-in-out;
      transition: 0.8s ease-in-out;
      transform: translateX(30px);
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-opacity: 0;
  }
  .scroll_right.on {
      opacity: 1.0;
      filter: alpha(opacity=100);
      -moz-opacity: 1.0;
      transform: translateX(0);
  }
