@charset "UTF-8";
/* 下層共通 */

.inner-wide {
  max-width: 1700px;
  margin: auto;
}

a.target-link:hover{
  text-decoration: none;
}
.page-header{
  height: 700px;
  position: relative;
  overflow: hidden;
}
/* .ttl-over{
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 830px solid #fc9556;
  border-right: 614px solid transparent;
  opacity: 0.9;
} */
.ttl-over:after {
    position: absolute;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-bottom: 780px solid #fc9556;
    border-right: 500px solid transparent;
    opacity: 0.8;
}
.ttl-over:before {
    position: absolute;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-top: 830px solid #ff7d2e;
    border-right: 614px solid transparent;
    opacity: 0.7;
}

.ttl-over img{
  height: 100%;
}
.ttl-wrap{
  position: relative;
  z-index: 1;
}

.page-ttl-wrap{
  position: absolute;
  bottom: 10%;
  height: 35%;
  width: 35%;
  padding: 40px;
  z-index: 4;
}

.page-ttl{
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.page-ttl-wrap h1{
  font-size: 22px;
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-ttl-wrap .ttlBar{
  width: 90px;
  margin: 0 0 0 1rem;
  height: 5px;
}
.page-ttl-wrap .ttlBar::before{
  background: #fff;
  height: 100%;
}

.ttl-bg{
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}

/********20190320itou************/

.ttl-over img {
    object-fit: cover;
}

@media (max-width: 1150px) {
    .page-ttl-wrap {
    width: 100%;
}

}
/*============ animation fade in ============*/
.animate01 {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.animate01.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
/*============ VOICE ============*/

.voice-wrap,
.staff-items{
  display: flex;
  flex-wrap: wrap;
}
.voice-item,
.staff-wrap {
    width: 25%;
    padding: 0 15px;
    margin-bottom: 40px;
}

.page-voice{
  position: relative;
  padding-top: 120px;
}

.page-voice::before{
  content: "";
  position: absolute;
  width: 34vw;
  left: -15%;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: #fd9059;
  background: -webkit-gradient(linear, left top, left bottom, from(#fd9059), color-stop(99%, #faa74b));
  background: linear-gradient(to bottom, #fd9059 0%, #faa74b 99%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd9059', endColorstr='#faa74b',GradientType=0 );
 -webkit-transform: skew(50deg);
  transform: skew(50deg);
  -webkit-transform-origin: 50% 48%;
  transform-origin: 50% 48%;
}

.voice-li-img{
  position: relative;
  padding-top: 75%;
}
.voice-li-img img{
  width: 100%;
  height: 100%;
  right: 0%;
  top: 0%;
  position: absolute;
}
.voice-li-txt{
  padding: 10px;
}
.voice-li-txt h1{
  font-size: 20px;
}
.voice-li-txt p{
  padding-top: 5px;
}

/*============ SERVICE ============*/

span.readmore {
  color: #fff;
  margin-left: auto;
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
  width: 200px;
  height: 36px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 34px;
  margin-top: 40px;
}
span.readmore span {
  position: relative;
  z-index: 3;
}
span.readmore::before {
  content: '';
  position: absolute;
  background: #dc5201;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 0;
}
span.readmore:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
span.readmore:hover::after {
  right: -10px;
}
span.readmore::after {
  z-index: 3;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 30px;
  height: 1px;
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.page-service{
  padding: 120px 0;
}

.service-items{
  display: flex;
  margin-bottom: 70px;
  position: relative;
  align-items: center;
}
.page-service .inner-wide a:nth-of-type(even) .service-items{
  flex-flow: row-reverse;
}

.service-img,
.service-cont{
  width: 50%;
  padding: 0 10px;
}

.img-wrap{
  position: relative;
  padding-top: 450px;
}

.img-wrap img{
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
}

.service-button-outer .title-top{
  font-size: 27px;
      margin-bottom: 30px;
}

.service-button-outer .service-txt p{
  font-size: 15px;
}

.page-service::before {
    content: "";
    position: absolute;
    width: 58vw;
    right: -17%;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: #fd9059;
    background: -webkit-gradient(linear, left top, left bottom, from(#fd9059), color-stop(99%, #faa74b));
    background: linear-gradient(to bottom, #fd9059 0%, #faa74b 99%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd9059', endColorstr='#faa74b',GradientType=0 );
    -webkit-transform: skew(-40deg);
    transform: skew(-40deg);
    -webkit-transform-origin: 50% 48%;
    transform-origin: 50% 48%;
}
.page-service .inner-wide a:last-child .service-items{
  margin-bottom: 0;
}

/*============ STAFF ============*/

.staff-name .name{
  font-size: 20px;
  color: black;
  margin-top: 10px;
  margin-bottom: 5px;
  position: relative;
  padding-left: 10px;
}
.staff-name .name:before {
    content: "";
    position: absolute;
    width: 5px;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: #fd9059;
    background: -webkit-gradient(linear, left top, left bottom, from(#fd9059), color-stop(99%, #faa74b));
    background: linear-gradient(to bottom, #fb5501 0%, #ff8805 99%);
    transform-origin: 50% 48%;
}

.staff-name .name .staff-posi{
  font-size: 14px;
}
.staff-img{
  position: relative;
  padding-top: 75%;
}
.staff-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
/*============ result ============*/
.page-service{
  position: relative;
  overflow: hidden;
}
.result-items {
  display: flex;
  margin-bottom: 130px;
}
.result-img{
  width: 50%;
  height: auto;
  position: relative;
}
.result-img::before{
  content: " ";
  display: block;
  padding-top: 75%;
}
.result-img-wrap{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.img-wrap-new{
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  height: 100%;
}
.img-wrap-new img{
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.result-items:nth-of-type(even){
  flex-flow: row-reverse;
}
.result-items:nth-of-type(even) .result-cont{
  margin-right: auto;
  margin-left: 0;
}
/* .result-img::before{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(-37deg, #595968 0%, #393944 100%);
} */
.result-cont {
  width: 43%;
  margin-left: auto;
  position: relative;
}

.result-cont-in{
  position: absolute;
  bottom: 10%;
}

.result-cont h2.service-button {
    position: relative;
}
.result-items:nth-of-type(even) h2.service-button{
  text-align: right;
}

.result-cont h2.service-button:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 5px;
  left: -65%;
  bottom: 25px;
  z-index: -1;
  background: linear-gradient(to right, #dadada 0%, #5d5d5d 99%);
  transform-origin: 50% 48%;
}
.result-items:nth-of-type(even) .result-cont h2.service-button:before{
  right: -65%;
  left: inherit;
}

/*============ store ============*/

.store-items{
  display: flex;
  margin-bottom: 120px;
}
.store-items:nth-of-type(even){
  flex-flow: row-reverse;
}
.store-items-in{
  width: 50%;
}
.store-img-wrap{
  width: 100%;
  height: auto;
  position: relative;
}
.store-img-wrap::before{
  content: " ";
  display: block;
  padding-top: 75%;
}
.store-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.img-wrap-new{
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  height: 100%;
}
.img-wrap-new img{
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.store-cont{
  width: 30%;
  margin-left: auto;
  margin-right: auto;
}
.store-txt {
    font-size: 16px;
}
.store-txt dl {
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #6d6d6d;
}

/*============ stock ============*/

a:hover .hasbg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.page-stock{
  padding: 120px 0;
}
.page-stock::before{
  content: "";
    position: absolute;
    width: 80vw;
    right: 0%;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: #fd9059;
    background: -webkit-gradient(linear, left top, left bottom, from(#fd9059), color-stop(99%, #faa74b));
    background: linear-gradient(to bottom, #fd9059 0%, #faa74b 99%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd9059', endColorstr='#faa74b',GradientType=0 );
    -webkit-transform: skew(-40deg);
    transform: skew(-29deg);
    -webkit-transform-origin: 50% 48%;
    transform-origin: 50% 48%;
}
.inner-page {
    width: 80%;
    margin: 0 auto;
}
ul.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
ul.pagination li a, ul.pagination li span {
    background-color: #ff8439;
    color: #fff;
    padding: 10px;
    min-width: 32px;
    display: block;
    line-height: 1;
    text-align: center;
    -webkit-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.store-txt dt {
    font-size: 14px;
    font-weight: bold;
}
.stock-wrap ul {
    display: flex;
    flex-wrap: wrap;

}
.stock-wrap ul li {
    width: 32%;
    margin-bottom: 20px;
    transition: all 0.3s;
    position: relative;
    background: #ffffffbf;
    box-shadow: -4px 4px 29px #00000045;
    margin: .66%;
}
.stock-wrap ul li a {
    overflow: hidden;
    display: flex;
    flex-flow: column;
    text-decoration: none;
}
.stock-img {
    position: relative;
    width: 100%;
    height: auto;
}
.ratio-43:before {
    content: "";
    display: block;
    padding-top: 75%;
}
.stock-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.stock-img-wrap .hasbg {
    height: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.stock-txt {
    color: #000;
    padding: 20px;
    flex: auto;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.stock-txt .stock-price {
    text-align: right;
}
.stock-txt .stock-price span {
    font-size: 32px;
    font-weight: bold;
    color: #ff3f3f;
    letter-spacing: 1px;
    padding-right: 4px;
}
.bold{
  font-weight: bold;
}

.inner-narrow-stock{
  text-align: center;
}
.stock-detail-wrap {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;;
}
.detail-stock-page-ttl{
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.detail-ttl-wrap{
  margin-bottom: 50px;
}
.stock-info {
    margin: 30px 0 0;
    padding: 15px;
    background: #ffffffbf;
    box-shadow: -1px 1px 43px #3c3c3c4f;
}
.info-wrap {
    display: flex;
    justify-content: space-between;
}
.info-name {
    font-size: 22px;
    font-weight: bold;
}
.info-price {
    font-size: 24px;
    color: #ff3f3f;
    font-weight: bold;
}
.stock-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 28px 0 10px;
    border-bottom: 2px solid;
}

.stock-table, .stock-option {
    width: 100%;
}
.stock-table th, .stock-table td, .stock-option th, .stock-option td {
    padding: 8px;
    border-bottom: solid 1px #1e1e1e;
}
.stock-table th, .stock-option th {
    font-weight: bold;
}
.swiper-slide img {
    width: 100%;
}
.swiper-my-pagination {
    display: flex;
    flex-wrap: wrap;
}
.swiper-container-horizontal > .swiper-my-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}
.swiper-my-pagination img {
    box-shadow: none;
    margin: 0;
    vertical-align: bottom;
}
.swiper-my-pagination .swiper-pagination-bullet {
    width: 10%;
    height: auto;
    border-radius: 0;
}
.swiper-my-pagination .swiper-pagination-bullet{
  opacity: .8;
}
.swiper-my-pagination .swiper-pagination-bullet-active{
  opacity: 1;
}

.stock-contact {
    background-color: #ffffffbf;
    padding: 40px;
    margin-top: 30px;
    box-shadow: -1px 1px 43px #3c3c3c4f;
}
.stock-contact h4 {
    text-align: center;
    color: #000;
    font-size: 18px;
    margin-bottom: 24px;
}
.cont-form {
    position: relative;
    width: 100%;
    max-width: 740px;
    margin: 10px auto;
}
.select-wrap {
    position: relative;
    margin-bottom: 18px;
}
.select-wrap:before {
    z-index: 1;
    position: absolute;
    right: 15px;
    top: 9px;
    font-family: "Font Awesome 5 Free";
    content: "\f0dd";
    line-height: 1;
    color: #000000;
    pointer-events: none;
    font-weight: 600;
}
.cont-form .select-wrap i {
    top: 4px;
}
.cont-form i {
    position: absolute;
    top: 12px;
    left: 6px;
    padding: 9px 8px;
    transition: 0.3s;
    color: #000000;
}
.select-wrap.select-stock > select {
    background: #ffffff;
    color: #757575;
    border-color: #0084B4;
    width: 100%;
    padding: 8px 8px 8px 40px;
    border-radius: 0;
    font: 15px/24px sans-serif;
    border: 1px solid #333;
    -webkit-appearance: none;
    -moz-appearance:none;
    appearance: none;
}
select option {
    background-color: #fff;
    color: #333;
}
.select-wrap {
    position: relative;
    margin-bottom: 18px;
}
.stock-contact input[type=text], .stock-contact textarea {
    background-color: #fff;
}
.cont-form input[type=text], .cont-form textarea {
    padding-left: 40px!important;
}
.cont-form input[type=text], .cont-form textarea {
    font: 15px/24px sans-serif;
    box-sizing: border-box;
    width: 100%;
    margin: 8px 0;
    padding: 0.5em;
    transition: 0.3s;
    border: 1px solid #333;
    outline: none;
}
select{
  outline: none;
    text-indent: 0.01px;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
}
.submit_button {
    font-size: 16px;
    text-align: center;
    width: 160px;
    height: 50px;
    border: 1px solid #333;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    line-height: 50px;
    margin: 30px auto 0;
    z-index: 10;
}
.submit_button::before {
    content: '';
    position: absolute;
    background: #000000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: -1;
}

.submit_button:hover{
  border: 1px solid #000;
  color: #fff;
}
.submit_button:hover::before{
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.submit_button:hover input{
  color: #fff;
}
.submit_button input[type=submit] {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
input[type=submit] {
    cursor: pointer;
}
.car-comment p{
  word-break: break-all;
}

#sort_box select{
	-webkit-appearance: none;
  -moz-appearance:none;
  appearance: none;
}
#sort_box {
    position:relative;
    margin-top:20px;
    margin-bottom: 18px;
    display: inline-block;
}
#sort_box:before {
    z-index: 1;
    position: absolute;
    right: 15px;
    top: 10px;
    font-family: "Font Awesome 5 Free";
    content: "\f0dd";
    line-height: 1;
    color: #fff;
    pointer-events: none;
    font-weight: 600;
}

#sort_box i {
    position: absolute;
    top: 12px;
    left: 6px;
    padding: 9px 8px;
    transition: 0.3s;
    color: #aaaaaa;
}
#sort_box select{
    background: #333;
    color: #fff;
    border: 1px solid;
    width: 100%;
    padding: 8px 16px;
    border-radius: 0;
    font: 15px/24px sans-serif;
}

/*============ service-detail ============*/

.service-d-item {
    display: flex;
    margin-bottom: 50px;
}

.service-d-txt {
    margin: 25px;
    color: #000;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.service-d-item > div{
  width: 50%;
}

.img-pos {
    margin: 50px;
}

.service-d-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-d-img-wrap .hasbg {
    height: 100%;
}

.service-d-img {
    position: relative;
    width: 100%;
    height: auto;
}

.service-d-txt h2 {
    font-size: 24px;
}

.service-d-txt-wrap{
  background: #ffffffbf;
  box-shadow: -1px 1px 43px #0000004f;
  padding: 50px;
}

.service-detail-ttl-wrap{
  width: 75%;
  margin: 0 auto 50px;
}

/*============ whats_new ============*/

.news-wrap{
  text-align: center;
}
hgroup.sectionttl h2::before {
    content: "news";
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.news-wrap .news-box article{
  border-bottom: 1px solid #000;
}
.news-wrap .news-box article:first-child{
  border-top: 1px solid #000;
}
.news-box {
    display: inline-block;
    width: 70%;
}
.news-box a {
    padding: 30px 20px;
    text-decoration: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}
.news-box a:hover{
  background: rgba(#ffad7a, 0.7);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.news-box a .pub-time {
    margin-right: 80px;
    font-weight: bold;
}

.news-d-wrap{
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
.news-d-wrap img{
  width: 100%;
}
.news-time{
  font-size: 22px;
  font-weight: bold;
  padding: 2px 7px;
}
.news-date{
  text-align: right;
}
.news-d-wrap h2{
  font-size: 25px;
    margin-bottom: 25px;
}
.news-d-txt-wrap{
  background-color: #ffffffbf;
  padding: 40px;
  margin-top: 30px;
  box-shadow: -1px 1px 43px #3c3c3c4f;
}



/*****Google map********/
.store-items,.store-items:nth-of-type(even) {
    flex-wrap: wrap;
}
.store-map-area {
    width: 100%;
    height: 350px;
    margin-top: 1em;
}
.store-map-area iframe {
    width: 100%;
    height: 100%;
}