@charset "utf-8";
@font-face {
    font-family: "ZenKakuGothicNew";
    src: url("../../assets/fonts/ZenKakuGothicNew-Medium.woff2") format("woff2");
    font-display: swap;
    font-weight: 500;
}

@font-face {
    font-family: "ZenKakuGothicNew";
    src: url("../../assets/fonts/ZenKakuGothicNew-Bold.woff2") format("woff2");
    font-display: swap;
    font-weight: 700;
}

@font-face {
    font-family: "Roboto";
    src: url("../../assets/fonts/Roboto-Medium.woff2") format("woff2");
    font-display: swap;
    font-weight: 500;
}

@font-face {
    font-family: "Roboto";
    src: url("../../assets/fonts/Roboto-Black.woff2") format("woff2");
    font-display: swap;
    font-weight: 900;
}

:root {
    --font-zen-medium: "ZenKakuGothicNew", sans-serif;
    --font-zen-bold: "ZenKakuGothicNew", sans-serif;
    --font-roboto-medium: "Roboto", sans-serif;
    --font-roboto-black: "Roboto", sans-serif;
}


/******************************/
/*common */
/******************************/
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-zen-medium);
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.8;
	letter-spacing: .01em;
}
pre {
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: break-word;
}

.l-container {
    max-width: 1000px;
    width: 100%;
    margin: auto;
}
.l-container--1280 {
    max-width: 1280px;
    width: auto;
    margin: auto;
}
.l-container--1920 {
    max-width: 1920px;
    width: auto;
    margin: auto;
}
.u-rel {
	position: relative;
}
.bg-yellow {
    background: #FFE002;
}
.bg-gray {
    background: #F5F5F5;
}
.font-18 {
    font-size: 1.8rem;
}
.font-16 {
    font-size: 1.6rem;
}
.font-14 {
    font-size: 1.4rem;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.c-title {
    font-family: var(--font-roboto-black);
	font-weight: 900;
    font-size: 10rem;
    color: #FFE002;
	line-height: 1;
	letter-spacing: 0.04em;
}
.c-title span {
	font-family: var(--font-zen-medium);
	font-weight: 500;
	font-size: 1.8rem;
	color: #000;
	display:block;
	padding-top: 20px;
}
.img-fluid {
    width: 100%;
    height: auto;
}

.btn-cta__wrap {
	display: inline-block;
}
.btn-cta__wrap.btn-contact {
	width: 375px;
}
.btn-cta {
	font-family: var(--font-zen-bold);
	font-weight: 700;
    font-size: 1.6rem;
	letter-spacing: 0.05em;
    background: #FFE002;
    border-radius: 30px;
    margin: 0 auto;
    padding: 10px 35px 10px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease;
    position: relative;
}
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0px 2px 6px rgb(211, 180, 0);
    opacity: 1;
}
.btn-arrow {
	position: absolute;
	right: 20px;
	display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-arrow img {
	width: 12px;
}

.link-cta__wrap {
	position: relative;
	width: 100%;
	height: 50px;
}
.link-cta {
    font-family: var(--font-roboto-medium);
	font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    right: 0px;
	bottom: 0;
	width: fit-content;
}
.link-cta:hover {
    opacity: 1;
}
.link-cta .link-text {
    position: relative;
    z-index: 1;
}
.link-cta .link-arrow {
    width: 50px;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.link-cta .link-circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    display: block;
    left: unset;
    width: 50px;
    height: 50px;
    z-index: 0;
    background: #FFE002;
    border-radius: 3.625rem;
    right: 0;
}
.link-cta:hover .link-circle {
    width: 113%;
}

@media only screen and (max-width: 1280px) {
	.l-container--1280 {
	    padding: 0 20px;
	}
}
@media only screen and (max-width: 1000px) {
	body {
		font-size: 1.6rem;
	}
	.l-container {
	    padding: 0 20px;
	}
	.font-18 {
	    font-size: 1.6rem;
	}
	.btn-cta__wrap.btn-contact {
		width: 100%;
		max-width: 375px;
	}
}

/******************************/
/*header */
/******************************/
header {
    position: fixed;
    top: 0;
    width: 100%;
	height: 90px;
	box-sizing: border-box;
    background: #fff;
	padding: 20px 30px;
    z-index: 9999;
}
.header-wrap {
    max-width: 1920px;
    padding-right: 30px;
	margin: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-logo {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 50px 20px 35px;
    background: #fff;
    border-radius: 0 0 50px 0;
}
.header-nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-nav__list a {
	font-family: var(--font-zen-bold);
	font-weight: 700;
    font-size: 1.6rem;
}
.header-nav__contact a {
	display: block;
	text-align: center;
    background: #FFE002;
    border-radius: 30px;
    width: 155px;
    margin: 0 auto;
    padding: 10px 20px;
    transition: 0.2s 
ease;
}
.header-nav__contact a:hover {
	transform: translateY(-3px);
    box-shadow: 0px 2px 6px rgb(211, 180, 0);
    opacity: 1;
}
/*header-MENU*/
@media only screen and (max-width: 1100px) {
	header {
		padding: 20px;
	}
	.header-nav {
		display: none;
		position: fixed;
		top: 0;
		z-index: 999;
		right: 0;
		width: 100%;
		height: 100vh;
		padding: 60px 25px;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: 0.4s;
		transition: 0.4s;
		background: #fff;
	}
	.header-nav.open {
		display: flex;
		transform: translateX(0);
	}
	.header-nav.open .header-nav__list {
		margin: auto;
	    flex-direction: column;
	    gap: 20px;
	}
	.header-nav li {
		padding: 20px 0;
	}
	.header-nav.open {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.menu {
		position: fixed;
		width: 40px;
		height: 40px;
		top: 20px;
		right: 20px;
		z-index: 999;
		-webkit-transition-duration: 0.5s;
		transition-duration: 0.5s;
		background: #fff;
		border-radius: 4px;
	}
	.menu:hover {
		cursor: pointer;
	}
	.menu .icon {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 32px;
		height: 2px;
	}
	.menu .icon::before, 
	.menu .icon::after {
		content: "";
		position: absolute;
		left: 0;
		width: 32px;
		height: 2px;
		background-color: #000;
		border-radius: 5px;
		transition: 0.4s ease;
		transform-origin: center;
	}	
	.menu .icon::before {
		top: -6px;
	}
	.menu .icon::after {
		top: 6px;
	}
	.menu.open .icon::before, 
	.menu.open .icon::after {
		top: 0;
	}
	.menu.open .icon::before {
		transform: rotate(45deg);
	}
	.menu.open .icon::after {
		transform: rotate(-45deg);
	}
}

@media only screen and (max-width: 767px) {
	header {
		height: 50px;
	}
	.header-logo {
		padding: 15px 20px;
	    border-radius: 0 0 30px 0;
	}
	.header-logo img {
		width: 180px;
	}
	.menu {
		top: 5px;
	}
}

/******************************/
/*footer */
/******************************/
.footer-contact {
	padding: 100px 0;
}
.footer-contact__wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px 0;
    text-align: center;
    display: flex;
}
.footer-contact__left {
	padding: 0 70px;
}
.footer-contact__ttl {
    font-size: 3rem;
}
.footer-contact__ttl span {
    font-family: var(--font-roboto-medium);
	font-weight: 500;
    display: block;
    margin: 15px auto 35px;
}
.footer-contact__right {
	padding: 15px 70px 0;
	border-left: 1px solid #000;
}
.footer-contact__tel {
	margin-bottom: 15px;
}
.footer-contact__tel a {
    font-family: var(--font-roboto-medium);
	font-weight: 500;
	font-size: 4.3rem;
	line-height: normal;
	letter-spacing: .06em;
	color: #000;
    display: flex;
	justify-content: center;
    align-items: center;
	margin-bottom: 5px;
}
.footer-contact__tel img {
    width: 43px;
	margin-right: 15px;
}
.footer-contact__fax {
    font-family: var(--font-roboto-medium);
	font-weight: 500;
	font-size: 2.8rem;
	letter-spacing: .06em;
	margin-bottom: 20px;
}

.footer-bottom {
    max-width: 1920px;
    margin: 15px auto 50px;
	padding: 0 35px;
	position: relative;
}
.footer-bottom__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-nav__list {
    display: flex;
	align-items: center;
    gap: 30px;
}
.footer-nav__list a {
	font-family: var(--font-zen-bold);
	font-weight: 700;
    font-size: 1.6rem;
}
#copyright {
	font-family: var(--font-zen-bold);
	font-weight: 700;
	font-size: 1.4rem;
    position: absolute;
    right: 20px;
    bottom: -10px
}
.recaptcha-wrap {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.1;
	position: absolute;
	right: 20px;
	bottom: -30px;
}
.grecaptcha-badge { 
	visibility: hidden;
}
@media only screen and (max-width: 1000px) {
	.footer-contact__wrap {
		border-radius: 10px;
		padding: 30px 20px;
		flex-direction: column;
	}
	.footer-contact__left {
	    padding: 0;
	    max-width: 600px;
	    margin: auto;
	}
	.footer-contact__right {
	    padding: 35px 0 0;
	    margin-top: 35px;
	    border-left: none;
	    border-top: 1px solid #000;
	}
	.footer-contact__tel a {
		font-size: 3rem;
	}
	.footer-contact__tel img {
		width: 30px;
		margin-right: 10px;
	}
	.footer-contact__fax {
		font-size: 2.5rem;
	}
	.footer-bottom {
		margin: 15px auto;
	}
	.footer-bottom__wrap {
		display: none;
	}
	#copyright {
		position: initial;
		text-align: center;
	}
	.recaptcha-wrap {
        position: initial;
		margin-top: 10px;
	}
}

/******************************/
/*TOP */
/******************************/
/*メインスライダー*/
.mv-wrap {
    padding-top: 90px;
}
.mv-slider-wrap {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
    white-space: nowrap;
}
.mv-track {
  display: inline-flex;
  will-change: transform;
  transform: translate3d(0,0,0);
  animation: slide-loop 40s linear infinite;
}
.mv-slide {
    display: inline-flex;
    flex-shrink: 0;
	gap: 16px; 
}
.mv-slide--origin {
  padding-right: 16px;
}
.mv-slide__image {
    height: 700px;
    overflow: hidden;
}
.mv-slide__image img {
    height: 100%;
    width: auto;
	display: block;
	object-fit: cover;
	object-position: center;
	transform: translate3d(0,0,0);
}
@keyframes slide-loop {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}


/**/
.sec-top1 {
    margin-bottom: 275px;
    position: relative;
}
.top-title {
    font-size: min(11vw, 100px);
	line-height: 1.4;
	position: absolute;
	bottom: -115px;
}
.top-title span {
	display: block;
    font-family: var(--font-roboto-medium);
	font-weight: 500;
	font-size: min(3.5vw, 30px);
	letter-spacing: .06em;
}

/*MESSAGE*/
.top-message {
    margin: 165px auto 0;
	overflow: hidden;
}
.top-message:before {
    content: '';
    width: 50%;
    height: calc(100% - 150px);
    background: #FFE000;
	position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.top-message .top-content__wrap {
	padding-bottom: 110px;
}
.top-message .top-content__wrap:before {
    content: '';
    max-width: 1280px;
    width: 100%;
    height: calc(100% - 150px);
    background: #FFE000;
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	bottom: 0;
    z-index: -1;
    border-radius: 0 0 0 50px;
}
.top-content__wrap {
    display: flex;
    justify-content: space-between;
}
.top-content-txt {
	line-height: 2.4;
    margin-top: 80px;
}
.top-content-lead {
    font-size: 5rem;
	line-height: 1.4;
	margin-bottom: 20px;
}
.top-message .top-content__left {
    max-width: 1000px;
}
.top-message .top-content__right {
	padding-top: 70px;
    padding-right: max(calc(50% - 640px));
	padding-left: 100px;
}

/*WORKS*/
.top-works {
    padding: 150px 0 505px;
	background: url("../../assets/img/top/bg-works.jpg") center bottom no-repeat;
    background-size: contain;
}
.top-works .top-content__left {
    width: 465px;
}
.top-works .top-content__right {
    width: calc(100% - 565px);
}

/* worksスライダー全体 */
.top-works-slider {
	position: relative;
	width: 100%;
	max-width: 700px;
	height: 528px; /* お好みで高さ調整 */
	overflow: hidden;
	padding-left: 20px !important;
    box-sizing: content-box;
}
/* スライド画像 */
.top-works-slide__image {
	display: flex;
	align-items: center;
	justify-content: center;
}
.top-works-slide__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* ページネーション（ドット） */
.top-works-pagination {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-left: 0.5rem;
	z-index: 10;
	left: 0 !important;
	top: 0 !important;
    transform: none !important;
}

/* Swiper のデフォルトドットのカスタマイズ */
.top-works-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #707070;
	opacity: 1;
	margin: 4px 0 !important;
}
.top-works-pagination .swiper-pagination-bullet-active {
	background: #707070;
}

/*CASE STUDIES*/
.top-case {
	padding: 150px 0;
}
.top-case .top-content__left {
    width: 435px;
}
.top-case .top-content-txt {
	margin-bottom: 60px;
}
.top-case .top-content__right {
    width: calc(100% - 480px);
}
.top-case-post__item {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
}
.top-case-post__image-wrap {
    width: 280px;
}
.top-case-post__image {
	aspect-ratio: 4 / 3;
    height: auto;
    width: 100%;
}
.top-case-post__image img {
	aspect-ratio: 4 / 3;
    height: auto;
    width: 100%;
    object-fit: cover;
}
.top-case-post__box {
    width: calc(100% - 310px);
	display: flex;
	flex-direction: column;
    justify-content: space-between;
}
.top-case-post__date {
    font-family: var(--font-roboto-medium);
	font-weight: 500;
	font-size: 3rem;
	letter-spacing: .06em;
	text-align: right;
}

/*COMPANY OVERVIEW*/
.top-company {
	padding: 150px 0;
}
.top-company .top-content__left {
	width: 530px;
}
.top-company .top-content__right {
	width: calc(100% - 575px);
	max-width: 595px;
}

.top-company__list {
    display: flex;
    gap: 40px;
}
.top-company__list:nth-child(:last-child) {
	margin-bottom: 10px;
}
.top-company__list dt {
    width: 155px;
}
.top-company__list dd {
    width: calc(100% - 155px)
}
.top-company__sub-list {
    display: flex;
}
.top-company__sub-ttl {
    width: 105px;
}
.top-company__sub-txt {
    width: calc(100% - 105px);
}
.top-company__map {
    text-align: right;
}

/*Instagram*/
.top-insta {
    padding: 100px 0;
}
.top-insta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin-bottom: 40px;
}
.top-insta-title {
    font-family: var(--font-roboto-black);
	font-weight: 900;
    font-size: 3.8rem;
	display: flex;
    align-items: center;
}
.top-insta-title span {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

@media only screen and (max-width: 1100px) {
	.top-content__wrap {
		flex-wrap: wrap;
	}
	.top-content__left {
		margin-bottom: 50px;
		width: 100%;
	}
	.top-content__right, 
	.top-works .top-content__left, 
	.top-works .top-content__right, 
	.top-case .top-content__left, 
	.top-case .top-content__right {
	    width: 100%;
	}
	.top-message:before, 
	.top-message .top-content__wrap:before {
		content: none;
	}
	.top-message .top-content__right {
		padding: 0 25px 70px 50px;
		position: relative;
	}
	.top-message .top-content__right:before {
	    content: '';
	    width: 100%;
	    height: calc(100% - 80px);
	    background: #FFE000;
	    position: absolute;
	    left: 20px;
	    bottom: 0;
	    z-index: -1;
	    border-radius: 0 0 0 50px;
	}
	.top-message .top-content__right .c-title {
		transform: translate(-35px, 0px);
	}
	.top-message .top-content__right .c-title span {
		padding-left: 35px;
	}
	.top-works {
	    padding: 150px 0 300px;
	}
	.top-works-slider {
	    padding-left: initial !important;
	    padding-bottom: 35px !important;
		height: auto;
	}
	.top-works-slide__image img {
		height: auto;
	}
	.top-works-pagination {
		left: 50%!important;
		bottom: 0px;
		top: auto!important;
		flex-direction: row;
		justify-content: center;
		transform: translateX(-50%)!important;
		padding-left: 0;
	}
	#page-top .top-case-post__list {
	    max-width: 700px;
	    margin: auto;
	}
	#page-top .top-case-post__image-wrap, 
	#page-top .top-case-post__box {
	    width: 100%;
	}
	.top-case-post__image-wrap {
		margin-bottom: 10px;
	}
	.top-company .top-content__left {
		width: 100%;
	}
	.top-company .top-content__right {
	    width: 100%;
	    max-width: 700px;
		margin: 0 auto;
	}
	.top-company__list {
	    gap: 10px;
	    flex-wrap: wrap;
	}
	.top-company__list:not(:last-child) {
		margin-bottom: 30px;
	}
	.top-company__list dt {
	    width: 100%;
	}
	.top-company__list dd {
	    padding-left: 30px;
	}
	.top-company__list dd .top-company__sub-list:not(:last-child) {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px) {
	/*common*/
	.c-title {
		font-size: 6rem;
	}
	.top-content-lead {
	    font-size: 4rem;
	}
	.top-content-txt {
		margin-top: 50px;
	}
	/**/
	.sec-top1 {
	    margin-bottom: 235px;
	}
	.mv-wrap {
	    padding-top: 50px;
	}
	.mv-slide__image {
		max-height: 700px;
        height: calc(100vh - 260px);
	}
	.top-title {
		font-size: 6rem;
	    line-height: 1.2;
	    bottom: -145px;
	}
	.top-title span {
		font-size: 2.1rem;
		padding-top: 10px;
	}
	.top-message .top-content__left {
		margin-bottom: 0;
	}
	.top-message:before, 
	.top-message .top-content__wrap:before {
		content: none;
	}
	.top-message .top-content__wrap {
	    padding-bottom: 0;
	}
	.top-message__image {
	    padding-right: 20px;
	}
	.top-message .top-content__right {
	    padding: 40px 20px 70px 45px;
	}
	.top-message .top-content__right:before {
	    content: '';
	    width: 100%;
	    height: calc(100% - 85px);
	    background: #FFE000;
	    position: absolute;
	    left: 20px;
	    bottom: 0;
	    z-index: -1;
	    border-radius: 0 0 0 50px;
	}
    .top-message .top-content__right .c-title {
        transform: translate(-28px, 0px);
    }
	.top-message .top-content__right .c-title span {
		padding-top: 25px;
        padding-left: 25px;
    }
	.top-message .top-content-txt {
		margin-top: 50px;
	}
    .top-works {
        padding: 110px 0 255px;
		background-size: 170%;
    }
	.top-case .top-content-txt {
	    margin-bottom: 0;
	}
	.top-case {
	    padding: 150px 0 100px;
	}
	.top-case-post__item {
	    padding: 15px;
	    margin-bottom: 30px;
	}
	.top-case-post__date {
		font-size: 2rem;
		margin-bottom: 10px;
	}
	.top-case-post__ttl {
	    margin-bottom: 20px;
	}
	.top-case .btn-cta__wrap {
	    display: flex;
	}
	.top-company {
	    padding: 100px 0;
	}
	.top-company__list dd {
		width: 100%;
	}
	.top-company__sub-list:not(:last-child) {
		margin-bottom: 15px;
	}
	.top-insta, 
	.footer-contact {
	    padding: 60px 0;
	}
	.top-insta-wrap {
		display: block;
		margin-bottom: 20px;
	}
	.top-insta-title {
		font-size: 3.1rem;
		margin-bottom: 30px;
	}
	.top-insta-title span img {
	    width: 30px;
	}
}

/******************************/
/*PAGE 施工事例 */
/******************************/
/*一覧*/
.second-page-head {
    padding: 215px 0 105px;
}
.second-page-title {
	font-family: var(--font-roboto-black);
    font-weight: 900;
    font-size: 10rem;
	line-height: 1;
	letter-spacing: 0.04em;
    color: #fff;
}
.second-page-title span {
    font-family: var(--font-zen-medium);
    font-weight: 500;
    font-size: 3rem;
    color: #000;
    display: block;
	padding-top: 20px;
}
.breadcrumb {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    padding: 10px 0 140px;
}
.sec-case {
    padding-bottom: 130px;
}

@media only screen and (max-width: 767px) {
	.second-page-head {
	    padding: 125px 0 55px;
	}
	.second-page-title {
	    font-size: 6rem;
	}
	.second-page-title span {
	    font-size: 1.8rem;
	}
	.breadcrumb {
		font-size: 1.4rem;
	    padding: 10px 0 60px;
	}
	#page-case .top-case-post__image-wrap, 
	#page-case .top-case-post__box {
	    width: 100%;
	}
}

/*ページネーション*/
.pagination {
    font-family: var(--font-roboto-medium);
	font-weight: 500;
	font-size: 1.4rem;
	margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.pagination a, 
.pagination .page-numbers.current {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    background: #fff;
}
.pagination .prev.page-numbers, 
.pagination .next.page-numbers {
	border: none;
	background: none;
}
.pagination .page-numbers.current {
    background: #000;
	color: #fff;	
}

/*詳細*/
.article-case {
    padding-bottom: 130px;
}
.case-single__wrap {
    overflow: auto;
    background: #fff;
    padding: 15px 50px 80px;
	margin-bottom: 40px;
}
.case-single-post__date {
	font-family: var(--font-roboto-medium);
    font-weight: 500;
    font-size: 3rem;
    letter-spacing: .06em;
    text-align: right;
	margin-bottom: 40px;
}
.case-single-post__ttl {
	font-size: 2.8rem;
	margin-bottom: 40px;
}
.case-single-content p {
    margin-bottom: 15px;
}
.case-single__nav {
	font-size: 1.6rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.article-case .btn-cta__wrap {
    display: flex;
}

@media only screen and (max-width: 767px) {
	.case-single__wrap {
	    padding: 15px 20px 40px;
	    margin-bottom: 40px;
	}
	.case-single-post__date {
	    font-size: 2rem;
	    margin-bottom: 20px;
	}
	.case-single-post__ttl {
	    font-size: 2rem;
	    margin-bottom: 30px;
	}
}

/******************************/
/*PAGE お問合せ */
/******************************/
.contact-wrap {
    padding-bottom: 255px;
}
.contact-head {
    margin-bottom: 165px;
}
.contact-txt {
    margin-bottom: 35px;
}
.contact-info {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
}
.contact-info__tel a {
    font-family: var(--font-roboto-medium);
    font-weight: 500;
    font-size: 4.3rem;
    line-height: normal;
    letter-spacing: .06em;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}
.contact-info__tel img {
    width: 43px;
    margin-right: 15px;
}
.contact-form__item {
	margin-bottom: 30px;
}
.contact-form__item dl {
    display: flex;
    flex-wrap: wrap;
}
.contact-form__item dt {
	font-family: var(--font-zen-bold);
	font-weight: 700;
	width: 200px;
	padding-right: 20px;
    box-sizing: content-box;
}
.contact-form__item dd {
    width: calc(100% - 220px);
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    border: 1px solid #D0D0D0;
    padding: 5px 10px;
    font-size: 2rem;
}
.contact-form input {
    min-height: 52px;
}
#confirm-list dd {
    background: #fff;
    padding: 5px 10px;
}
/*ボタン*/
.contact-form-btn__wrap {
    display: flex;
    flex-direction: row-reverse;
	justify-content: space-between;
}
.contact-form .btn-cta__wrap {
    width: 270px;
}
.contact-form #to-confirm {
    border: none;
    width: 100%;
	cursor: pointer;
	color: #000;
}
#confirm-area .confirm-btn__wrap {
    display: flex;
	justify-content: space-between;
	margin-top: 50px;
}
#confirm-area #back {
    border: 3px solid #FFE002;
    width: 270px;
    background: #fff;
	cursor: pointer;
	color: #000;
}
#confirm-area .wpcf7-form-control.wpcf7-submit.has-spinner {
    border: none;
    width: 270px;
	cursor: pointer;
	color: #000;
}
/*送信完了*/
/* CF7 成功メッセージだけ非表示（エラーは表示） */
.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}
#page-contact-thanks .contact-info {
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.contact-wrap {
	    padding-bottom: 100px;
	}
	.contact-head {
	    margin-bottom: 65px;
	}
	.contact-info__tel a {
        font-size: 3rem;
    }
	.contact-info__tel img {
        width: 30px;
        margin-right: 10px;
    }
	.contact-form__item dt {
		width: 100%;
		padding-right: 0;
		margin-bottom: 5px;
	}
	.contact-form__item dd {
	    width: 100%;
	}
	.contact-form-btn__wrap, 
	#confirm-area .confirm-btn__wrap {
		flex-direction: column;
	    align-items: center;
	}
	#confirm-area #back {
		margin-bottom: 30px;
	}
	#page-contact-thanks .contact-info {
		text-align: left;
	}
}