@charset "UTF-8";


/* -------------------------------------------

kv

------------------------------------------- */
.top-kv {
	position: relative;
	background-color: #fff;
	padding-bottom: 10rem;
}
.top-kv::before {
	content: "";
	width: 85%;
	height: 90%;
	background: var(--bg-grd);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
}
.top-kv::after {
	content: "Paint Reform KOH";
	position: absolute;
	left: 2rem;
	bottom: 1.5rem;
	line-height: 1;
	font-weight: bold;
	opacity: 0.1;
	z-index: 1;
	font-size: 8rem;
}
.top-kv .wrap {
	position: absolute;
	left: 12.5rem;
	bottom: 15rem;
	z-index: 3;
	color: #fff;
	font-weight: bold;
	font-size: 3.7rem;
}
@media screen and (max-width: 768px) {
	.top-kv {
		position: relative;
		background-color: #fff;
		padding-bottom: 6rem;
	}
	.top-kv::before {
		width: 90%;
		height: 100%;
	}
	.top-kv::after {
		left: 1.8rem;
		bottom: 1.5rem;
		font-size: 3.3rem;
		opacity: 0.2;
	}
	.top-kv .wrap {
		left: 2.5rem;
		bottom: auto;
		top: 3rem;
		font-size: 1.8rem;
	}
}
/* slider */
#main {
	position: relative;
	overflow: hidden;
	width: 75%;
	margin-left: auto;
}
#main,
.CMS-NOT-EDITABLE-AREA {
	height: 56rem;
}
@media screen and (max-width: 768px) {
	#main {
		width: 100%;
	}
	#main,
	.CMS-NOT-EDITABLE-AREA {
		height: 40rem;
	}
}



/* -------------------------------------------

service

------------------------------------------- */
.top-wrap {
	background: url(../img/texture-1.jpg) center top;
	background-size: 100% auto;
}
.top-service {
	position: relative;
	padding: 10rem 0;
}
.top-service::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,#fff,transparent);
	position: absolute;
	left: 0;
	top: 0;
}
.top-service > * {
	position: relative;
	z-index: 10;
}
.top-service .wrap {
	display: flex;
}
.top-service h2 {
	margin-bottom: 2rem;
}
.top-service p {
	margin-bottom: 8rem;
}
.top-service .more-wrap {
	margin-left: 6rem;
	margin-top: -0.6rem;
}
.top-service ul {
	display: flex;
	gap: 4.5rem;
}
.top-service ul li {
	flex: 1;
	overflow: hidden;
}
.top-service ul li a {
	display: flex;
	position: relative;
	height: 28rem;
	color: #fff;
	padding: 6rem 3.5rem 0 3.5rem;
}
.top-service ul li a::after {
	content: "";
	width: 4rem;
	height: 4rem;
	position: absolute;
	right: 2.5rem;
	bottom: 2.5rem;
	background: url(../img/arrow-wh.png) no-repeat center / contain;
}
.top-service ul li a::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: all .3s;
	z-index: -1;
}
.top-service ul li a:hover::before {
	transform: scale(1.1);
}
.top-service ul li:nth-child(1) a::before {
	background: url(../img/top-bg-1.jpg) no-repeat center / cover;
}
.top-service ul li:nth-child(2) a::before {
	background: url(../img/top-bg-2.jpg) no-repeat center / cover;
}
.top-service ul li:nth-child(3) a::before {
	background: url(../img/top-bg-3.jpg) no-repeat center / cover;
}
.top-service ul dt {
	font-size: 1.7rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	white-space: nowrap;
}
.top-service ul dd {
	font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
	.top-service {
		padding: 8rem 3rem;
	}
	.top-service .wrap {
		display: flex;
		justify-content: space-between;
	}
	.top-service p {
		margin-bottom: 4rem;
	}
	.top-service .more-wrap {
		margin-left: 0;
		margin-top: 0;
	}
	.top-service ul {
		flex-direction: column;
		gap: 2rem;
	}
	.top-service ul li {
		flex: none;
		width: 100%;
	}
	.top-service ul li a {
		height: 28rem;
	}
	.top-service ul dt {
		font-size: 2.2rem;
	}
	.top-service ul dd {
		font-size: 1.4rem;
	}	
}



/* -------------------------------------------

works

------------------------------------------- */
.top-works {
	padding-bottom: 10rem;
}
.top-works ul {
	display: flex;
	flex-wrap: wrap;
	column-gap: 6rem;
	row-gap: 7rem;
}
.top-works ul li {
	width: calc((100% - 6rem) / 2);
	display: flex;
	gap: 1rem;
}
.top-works ul li > * {
	flex: 1;
	position: relative;
}
.top-works figcaption {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 55%;
}
@media screen and (max-width: 768px) {
	.top-works {
		padding: 0 3rem 8rem 3rem;
	}
	.top-works ul {
		flex-direction: column;
		column-gap: 0;
		row-gap: 3rem;
	}
	.top-works ul li {
		width: 100%;
	}
	.top-works ul li > * {
		flex: 1;
		position: relative;
	}
}



/* -------------------------------------------

parallax

------------------------------------------- */
.bg-parallax {
    height: 30rem;
}
.bg-parallax::before {
    content: "";
    background: url(../img/bg-pa.jpg) no-repeat center / cover;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}



/* -------------------------------------------

blog

------------------------------------------- */
.top-blog {
	background: linear-gradient(to bottom,#dddddd 50%,#000 50%);
	padding: 10rem 0;
}
.top-blog .wrap-1 {
	display: flex;
}
.top-blog .more-wrap {
	margin-left: 6rem;
	margin-top: -0.6rem;
}
.top-blog .wrap a {
	color: #fff;
}
@media screen and (max-width: 768px) {
	.top-blog {
		background: linear-gradient(to bottom,#dddddd 20%,#000 20%);
		padding: 8rem 3rem;
	}
	.top-blog .wrap-1 {
		justify-content: space-between;
	}
	.top-blog .more-wrap {
		margin-left: 0;
		margin-top: 0;
	}
}



/* -------------------------------------------

faq

------------------------------------------- */
.top-faq {
	padding: 8rem 0;
	background: var(--bg-grd);
	color: #fff;
}
.top-faq .wrap {
	display: flex;
	justify-content: space-between;
}
.top-faq .wrap > div {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.top-faq .wrap p {
	margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
	.top-faq {
		padding: 6rem 3rem;
	}
	.top-faq .wrap {
		flex-direction: column;
	}
}



/* -------------------------------------------

company

------------------------------------------- */
.top-company {
	background: url(../img/texture-1.jpg) center top;
	background-size: 100% auto;
	padding: 10rem 0;
}
.top-company .wrap {
	display: flex;
	gap: 6rem;
}
.top-company .wrap > * {
	flex: 1;
}
.top-company .more-wrap {
	margin-top: 3rem;
}
@media screen and (max-width: 768px) {
	.top-company {
		padding: 8rem 3rem;
	}
	.top-company .wrap {
		flex-direction: column;
		gap: 1rem;
	}
	.top-company .wrap > * {
		flex: none;
		width: 100%;
	}
	.top-company .more-wrap {
		display: flex;
		justify-content: center;
	}	
}



/* -------------------------------------------

contact

------------------------------------------- */
.top-contact {
	background: url(../img/texture-2.jpg) center top;
	background-size: 100% auto;
	color: #fff;
	padding: 8rem 0;
}
.top-contact .wrap {
	display: flex;
	justify-content: space-between;
}
.top-contact .wrap > div {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.top-contact .wrap p {
	margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
	.top-contact {
		padding: 6rem 3rem;
	}
	.top-contact .wrap {
		flex-direction: column;
	}
}



/* -------------------------------------------

ブリッジブックス

------------------------------------------- */
.topNews_list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    list-style: none;
}
.topNews_item {
    flex-basis: calc((100% / 3) - 6rem / 3);
}
.topNews_image {
    position: relative;
    aspect-ratio: 1/1;
}
.topNews_image img,
.topNews_image video {
    width: 100%;
    height: 100%;
}
.topNews_content {
    margin-top: 1rem; 
    line-height: 1;
}
.topNews_date {
    color: #fff;
	background: var(--prime);
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
	display: inline-block;
	padding: 0.2rem 1rem;
}
.topNews_caption {
    line-height: 1.6;
    font-size: 1.3rem;
}
.topNews_caption strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.5rem;
}
.topNews_btn {
    display: flex;
    justify-content: center;
    margin: auto;
}
@media screen and (max-width: 768px) {
    .topNews_list {
        flex-direction: column;
        gap: 4rem;
    }
    .topNews_item {
        width: 100%;
    }
    .topNews_caption {
        font-size: 1.4rem;
    }
    .topNews_caption strong {
        font-size: 1.7rem;
    }   
}
/* news index */
.news_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
  }
.news_item {
    display: flex;
    gap: 1.5rem;
    cursor: pointer;
    transition: all .3s;
}
.news_item:hover {
    opacity: 0.5;
}
.news_image {
    position: relative;
    width: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
}
.news_image img,
.news_image video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    transition: .3s;
    object-fit: cover;
}
.news_item:hover img {
    transform: translate(-50%, -50%) scale(1.1);
}
.news_content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.2rem;
}
.news_caption {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}
.news_caption strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    line-height: 1.4;
}
.news_date {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.2;
    padding-top: 0;
    padding-bottom: 0;
    align-self: flex-end;
}
.news_day {
    font-size: 2rem;
    text-align: right;
}
.news_month {
    font-size: 1.2rem;
    color: var(--prime);
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 3rem;
}
.pagination-number,
.pagination-arrow {
    font-size: 1.6rem;
    padding: 8px 12px;
}
.pagination-number.active {
    background-color: orange;
    color: white;
    cursor: default;
}
.pagination-no-number {
    align-self: center;
}
@media screen and (max-width: 768px) {
    .news_container {
        grid-template-columns: 1fr;
    }
    .news_item {
        flex-direction: column;
    }
    .news_image {
        width: 100%;
    }
    .news_content {
        width: 100%;
        padding: 0;
    }
    .news_caption {
        font-size: 1.4rem;
    }
    .news_caption strong {
        font-size: 1.8rem;
    }
}
/* blog detail */
.blogdetail_image {
    display: flex;
    justify-content: center;
}
.blogdetail_image img,
.blogdetail_image video {
    width: 70%;
    height: auto;
}
.blogdetail_content {
    margin-top: 3rem;
    font-size: 1.6rem;
}
.newsDetail_back-link {
    margin-top: 4rem;
    text-align: center;
}
.newsDetail_back-link a {
    color: var(--prime);
    position: relative;
    padding: 3rem 0;
    display: block;
}
.blogdetail_caption {
    white-space: pre-wrap; 
}
@media screen and (max-width: 768px) {
    .blogdetail_image img,
    .blogdetail_image video {
        width: 100%;
    }
}



/* -------------------------------------------

form

------------------------------------------- */
.CMS-FORM-GROUP {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP {
        display: block;
    }
}
.CMS-FORM-GROUP:not(:last-of-type) {
    margin-bottom: 4rem;
}
.CMS-FORM-GROUP > label {
    width: 30%;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP label {
        width: 100%;
        display: block;
        margin-bottom: 1rem;
    }
}
.CMS-FORM-INPUT,
.CMS-FORM-EMAIL {
    -webkit-appearance: none;
    appearance: none;
    border: #ddd solid 1px;
    padding: 2rem;
    width: 70%;
}
.CMS-FORM-GROUP textarea {
    -webkit-appearance: none;
    appearance: none;
    border: #ddd solid 1px;
    width: 70%;
    height: 16rem;
    padding: 2rem;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-INPUT,
    .CMS-FORM-EMAIL,
    .CMS-FORM-GROUP textarea {
        width: 100%;
    }
}
/* ---- radio ---- */
.CMS-FORM-RADIO {
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
    white-space: nowrap;
    width: 70%;
}
.CMS-FORM-RADIO > div:not(:last-of-type) {
    margin-right: 2.5rem;
    margin-bottom: 1.2rem;
}
.CMS-FORM-RADIO > div {
    display: flex;
    align-items: center;
    width: calc(100% - 18px);
}
.CMS-FORM-RADIO > div label {
    margin-left: 0.5rem;
    margin-top: 0.3rem;
}
_::-webkit-full-page-media, _:future, :root .CMS-FORM-RADIO > div label {
    margin-top: 0;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-RADIO {
        display: block;
        width: 100%;
        white-space:unset;
    }
    .CMS-FORM-RADIO > div:not(:last-of-type) {
        margin-bottom: 1.2rem;
    }
    .CMS-FORM-RADIO > div label {
        width: calc(100% - 24px);
    }
    _::-webkit-full-page-media, _:future, :root .CMS-FORM-RADIO > div label {
        margin-top: 0.7rem;
    }   
}
input[type="radio"] {
    position: relative;
    width: 18px;
    height: 18px;
    background: rgba(245,245,245,1);
    border: solid 1px #ddd;
    border-radius: 50%;
    vertical-align: -2px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
input[type="radio"]:checked:before {
    content: "";
    background: var(--prime);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
}
@media screen and (max-width: 768px) {
    input[type="radio"] {
        width: 24px;
        height: 24px;
    }
    input[type="radio"]:checked:before {
        width: 12px;
        height: 12px;
    }
}
/* ---- submit ---- */
.CMS-FORM-GROUP input[type="submit"] {
    background: var(--bg-grd);
    color: #fff;
    display: block;
	font-weight: bold;
    /* font-family: 'Noto Serif JP', serif; */
    font-size: 1.6rem;
    margin: 0 auto;
    padding: 1.6rem 0 1.75rem 0;
    transition: all .3s;
    width: 24rem;
	border-radius: 0.3rem;
}
.CMS-FORM-GROUP input[type="submit"]:hover {
    cursor: pointer;
    opacity: 0.5;
}
input[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
    border: none;
    border-radius: 0;
}
input[type="submit"]::-webkit-search-decoration {
    display: none;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP input[type="submit"] {
        width: 100%;
        font-size: 1.7rem;
    }   
}
/* ---- calendar ---- */
input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    border: #ddd solid 1px;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 2rem;
    width: 70%;
}
@media screen and (max-width: 768px) {
    input[type="date"] {
        width: 100%;
    }
}
/* ---- select ---- */
.select-wrap {
    position: relative;
    width: 70%;
}
.select-wrap::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-right: solid 0.15rem #333;
    border-bottom: solid 0.15rem #333;
    transform: rotate(45deg);
    position: absolute;
    right: 1.2rem;
    top: calc(50% - 0.6rem);
    z-index: 10;
}
select {
    appearance: none;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 0;
    color: #000;
    font-size: 1.4rem;
    padding: 1.6rem 4rem 1.5rem 1.5rem;
    position: relative;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .select-wrap {
        width: 100%;
    }
}
/* ---- required ---- */
.required {
    background: rgba(220,0,0,1);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    margin-left: 1.0rem;
    padding: 0.2rem 0.7rem 0.35rem 0.7rem;
    vertical-align: 0.1rem;
	border-radius: 10rem;
}
/* <span class="required">必須</span> */
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP input:focus,
    .CMS-FORM-GROUP textarea:focus {
        font-size: 16px;
    }
}



/* -------------------------------------------

privacy

------------------------------------------- */
.privacy {
    background: #fff;
    border: 1px solid #ddd;
    font-size: 1.2rem;
    height: 20rem;
    overflow: auto;
    padding: 1.7rem 2rem;
}
.privacy-note {
    font-size: 1.2rem;
    margin: 5rem 0 2rem 0;
}



/* -------------------------------------------

thanx

------------------------------------------- */
.thanx {
    text-align: center;
}
@media screen and (max-width: 768px) {
    .thanx {
        text-align: left;
    }
}
.back {
    display: block;
    text-align: center;
}
.back a {
    color: var(--prime);
}

.coming {
    color: #fff;
}