@charset "utf-8";

@media screen and (max-width: 767px) {
  #header #headerWrap {
      padding: 3vw;
  }
}

#header .logo a{
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  #header .logo a{
    width: 8em;
    margin-right: 0.8em;
  }
}

@media screen and (max-width: 767px) {
  #header .logo span {
    display: block;
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  #header .logo span br{
    display: none;
  }
}

.sp .p-product{
  max-width: 80vw;
  margin-right: 50px;
}

.p-product-category{
  margin-bottom: 50px;
}

.p-product-category ul{
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: calc(-15px/2);
}

.p-product-category ul > li{
  width: 100%;
  padding: calc(15px/2);
  box-sizing: border-box;
}
@media screen and (min-width : 768px) {
	.p-product-category ul > li{
    width: 33.333%;
  }
}

.p-product-category ul > li > a{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 15px;
  background: #595959;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  transition: 0.3s;
}
@media screen and (min-width : 768px) {
	.p-product-category ul > li > a{
    font-size: 2rem;
  }
}

.p-product-category ul > li > a::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: calc(100% + 1px);
	z-index: -1;
	content: '';
	background: #000;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}

.p-product-category ul > li > a:hover::before,
.p-product-category ul > li > a:focus::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

.p-product-wrap{

}

.p-product-wrap > ul{
  display: flex;
  flex-wrap: wrap;
  margin: -20px -10px;
}
@media screen and (min-width : 768px) {
	.p-product-wrap > ul{
    margin: -20px calc(-15px/2);
  }
}

.p-product-wrap > ul > li{
  width: 100%;
  padding: 20px 10px;
  box-sizing: border-box;
}
@media screen and (min-width : 768px) {
	.p-product-wrap > ul > li{
    width: 33.33%;
    padding: 20px calc(15px/2);
  }
}

.p-product{

}

.p-product__thumb{
  
}

.p-product__thumb img{
  width: 100%;
  height: auto;
}

.p-product__title{
  margin: 1em 0 0;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}

.p-product__category{
  font-size: 0;
}

.p-product__category > li{
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.2em 0.7em;
  margin: 0.5em 0.5em 0 0;
}

.p-overview{
  margin-top: 7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-overview__table{
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width : 768px) {
	.p-overview__table{
    width: calc(505/1030*100%);
    margin-right: 3rem;
  }
}

.p-overview__table table {
  display: block;
  width: 100%;
}

.p-overview__table table tbody {
  display: table;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.p-overview__table table tr {
  display: block;
  width: 100%;
  border-top: .1rem solid #cfcfcf;
}

.p-overview__table table tr:last-of-type {
  border-bottom: .1rem solid #cfcfcf;
}

.p-overview__table table td,
.p-overview__table table th {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  line-height: 1.75;
}

.p-overview__table table th {
  width: 8.5rem;
  -moz-text-align-last: justify;
  text-align-last: justify;
  font-weight: 400;
}

.p-overview__table table td {
  padding-left: 4.5rem;
}

.p-overview__images{
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width : 768px) {
	.p-overview__images{
    width: calc(400/1030*100%);
  }
}

.p-overview__images .image{
  display: block;
  margin: 0;
  font-size: 0;
}

.p-overview__images .image img{
  width: 100%;
  height: auto;
}

.p-overview__images .image + .image{
  margin-top: 3.9rem;
}

.p-overview__images .image .caption{
  margin-top: 0.5rem;
  font-size: 1.3rem;
  line-height: 1.75;
}

.p-overview__map{
  width: 100%;
  margin-top: 7.5rem;
}

.p-product__link {
  position: relative;
}

.p-product__link .img {
  position: relative;
}

.p-product__link .img::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: calc(100% - 2px);
  z-index: 1;
  content: '';
  background: rgba(0, 0, 0, 0.5);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

.p-product__link .img::after {
  content: 'MORE';
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
  transition: 0.3s;
}

.p-product__link:hover .img::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.p-product__link:hover .img::after {
  opacity: 1;
}

#contact input[type="radio"]{
  margin-right: 3px;
}

#service .five ul li > .icon {
  position: relative;
  width: 4.1em;
  height: 3.8em;
}

#service .five ul li > .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: auto;
}

#header .tel{
  margin-left: auto;
  padding: 0 5rem 0 2rem;
}

#header .tel .tel-text,
#header .tel .tel-text > a{
  color: #fff;
  transition: 0.3s;
}

#header .tel .tel-text{
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
}

#header .tel .tel-text > a{
  
}

#header .tel .tel-text > span{
  display: block;
  font-size: 1.6rem;
  text-align: right;
}

#header.scroll .tel .tel-text,
#header.scroll .tel .tel-text > a{
  color: #000;
}

@media screen and (max-width : 1070px) {
	#header .tel-pc{
    display: none;
  }
}

#header .tel-menu{
  width: 100%;
  margin-top: 3rem;
  padding: 0;
}

#header .tel-menu .tel-text,
#header .tel-menu .tel-text > a{
  color: #000;
}

#header .tel-menu .tel-text,
#header .tel-menu .tel-text > span{
  text-align: center;
}

.pagination{

}

.pagination .screen-reader-text{
  display: none;
}

.pagination .nav-links{
  border-top: 1px solid #ccc;
  padding-top: 3.3em;
  margin-top: 3.3em;
}

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

.pagination .nav-links ul li{
  
}

.pagination .nav-links ul li span,
.pagination .nav-links ul li a{
  display: block;
  padding: 0.5em 0;
  margin: 0 1em;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.0;
  text-align: center;
}

.pagination .nav-links ul li .current{
  border-bottom: 1px solid #000;
}

#news .btnWrap .arrow.prev a i,
#news .btnWrap .arrow.prev span i{
  font-size: 1.2rem;
  margin: 0 1.5em 0 0;
}

.checkbox > p{
  text-align: center;
}

.wpcf7-spinner{
  display: none;
}

.c-page-thanks__main {
  font-size: 1.6rem;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100% - 4rem);
  padding-bottom: 5rem;
  padding-top: 5rem;
  width: 77rem
}

.c-page-thanks__heading {
  --tw-text-opacity: 1;
  color: #000;
  font-size: clamp(2rem, 3.125vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center
}

.c-page-thanks__textarea {
  font-size: 1.4rem;
  padding-bottom: 3rem;
  padding-top: 3rem
}

.c-page-thanks__textarea>:not(:last-child) {
  margin-bottom: 1.5em
}

.c-page-thanks__list {
  list-style-type: none;
  padding-left: 0
}

.c-page-thanks__list li {
  padding-left: 1.2em;
  position: relative
}

.c-page-thanks__list li:before {
  --tw-translate-y: calc(-50% - -0.1rem);
  --tw-translate-x: 0px;
  --tw-bg-opacity: 1;
  --tw-content: "";
  background-color: #000;
  border-radius: 50vh;
  content: var(--tw-content);
  height: 1.4rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  width: 1.4rem
}

.c-page-thanks__btn {
  margin-bottom: 2rem;
  margin-top: 2rem
}

.c-page-thanks__btn-link {
  --tw-border-opacity: 1;
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  align-items: center;
  background-color: #000;
  border-color: #000;
  border-style: solid;
  border-width: .2rem;
  color: #000;
  display: flex;
  height: 6rem;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  transition: color .4s var(--cb), background-color .4s var(--cb);
  width: 33rem
}

.c-page-thanks__btn-label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center
}

.c-map{
  position: relative;
  width: 100%;
  height: 30rem;
  padding-top: 0;
}
@media screen and (min-width : 768px) {
	.c-map{
    height: 0;
    padding-top: calc(370/1030*100%);
  }
}

.c-map > iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-product__thumb .thumb{
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(272/393*100%);
}

.p-product__thumb .thumb img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}