﻿@import "default.css";
@import "standard.css";

html,body {
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000 none;
	color: #ACACAC;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: normal;
	letter-spacing: 0;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
#p_top {
	background-color: #000000;
}
body:not(#p_top) {
	padding-top: 110px;
}
* {
	box-sizing: border-box;
}
a:hover {
	opacity: .7;
}
.sp_only {
	display: none;
}
img{
	max-width:100%;
	vertical-align: bottom;
}
br.sp {
	display: none;
}
.pc_none {
	display: none;
}
p {
	line-height: 1.8;
	letter-spacing: 0.18rem;
}
/*--author_area--*/
footer {
	width: 100%;
	padding: 4%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #000;
	position: relative;
}
footer h2 {
	text-align: center;
}
footer h2:after {
	content: "";
	width: 1px;
	height: 30px;
	margin: 20px auto;
	margin-bottom: 15px;
	background: #707070;
	display: block;
}
p.copyright {
	text-align: center;
}
/*--header--*/
header{
	width: 100%;
	padding: 20px;
	background: #000;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#p_top header {
	background: transparent;
}
header h1 a {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	}
header .r_wrap {
	display: flex;
	gap: 60px;
}
header .r_wrap .icon{
	margin-top: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
}
/* パンくずリスト
------------------------------------------------ */
#rootlist {
	max-width: 1820px;
	min-width: 900px;
	width: 96%;
	margin: 0 auto;
	margin-bottom: 60px;
	font-size: 14px;
}
#rootlist span {
	margin: 0 5px;
	color: #fff;
}
#rootlist p {
	color: #fff;
}
#rootlist a {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
}
/* ナビ部分
------------------------------------------------ */
/* チェックボックスは隠す */
#menu-btn-check {
	display: none;
}
/* ハンバーガーボタンの見た目 */
.menu-btn {
	position: relative;
	display: flex;
	height: 40px;
	width: 40px;
	justify-content: center;
	align-items: center;
	z-index: 1100;
	cursor: pointer;
}
.menu-btn span {
	display: block;
	height: 2px; /* ここが線の太さになります */
	width: 40px; /* 線の長さ */
	background-color: #fff;
	transition: all 0.4s;
	position: relative;
}
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 2px;
	width: 40px;
	background-color: #ffffff;
	transition: all 0.5s;
	position: absolute;
}
/* チェックが入ったとき（メニュー開閉時）の線の色を黒にする */
#menu-btn-check:checked ~ .menu-btn span {
	background-color: #000;
}
#menu-btn-check:checked ~ .menu-btn span:before,
#menu-btn-check:checked ~ .menu-btn span:after {
	background-color: #000;
}
.menu-btn span:before {
	bottom: -14px;
}
.menu-btn span:after {
	top: -14px;
}
.menu-content {
	width: 500px;
	height: 100%;
	position: fixed;
	top: 0;
	right: -500px;
	z-index: 1050;
	background-color: #F5F5F5;
	transition: all 0.5s;
	padding-top: 80px;
}
#menu-btn-check:checked ~ .menu-content {
	right: 0;
}
.menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1040;
}
#menu-btn-check:checked ~ .menu-overlay {
	display: block;
}
.nav {
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav li a {
	display: inline-block;
	padding: 20px 30px;
	text-decoration: none;
	color: #333;
	font-weight: bold;
	text-transform: uppercase;
}
/* Hタグ
------------------------------------------------ */
.h2_wrap {
	width: 96%;
	max-width: 1600px;
	height: 500px;
	margin: 0 auto;
	margin-bottom: 50px;
	padding: 120px 40px;
	background: url(/image/common/h2_bg.webp) center no-repeat;
	background-size: 1600px;
}
h2.title {
	margin-bottom: 8px;
	font-family: "Kaisei Opti", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 50px;
	color: #C2C2C2;
	letter-spacing: 0.5rem;
	text-transform: uppercase;
}
h2.post {
	margin-bottom: 80px;
	font-size: 26px;
	font-weight: bold;
}
.h2_wrap dl {
	height: 120px;
	margin-left: 5px;
	padding: 0 25px;
	border-left: 1px #C2C2C2 solid;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.h2_wrap dt {
	margin-bottom: 10px;
	font-family: "Kaisei Opti", serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.12rem;
}
h3.title {
	margin-bottom: 60px;
	font-family: "Kaisei Opti", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 24px;
	color: #C2C2C2;
	letter-spacing: 0.3rem;
	text-transform: uppercase;
	display: block;
}
h3.title:after {
	content: "";
	width: 1px;
	height: 30px;
	margin-top: 15px;
	margin-left: 5px;
	background: #C2C2C2;
	display: block;
}
.h3_wrap {
	width: 92%;
	max-width: 900px;
	margin: 0 auto;
	margin-bottom: 30px;
}
h3.post_works {
	font-size: 20px;
	font-weight: bold;
	color: #C2C2C2;
}
h4.title {
	margin-bottom: 20px !important;
	font-size: 40px;
	font-weight: bold !important;
}
h4.sub_text {
	margin-bottom: 50px;
	font-size: 40px;
	font-family: "Libre Caslon Text", serif;
	font-weight: 400;
	font-style: normal;
	color: #C2C2C2;
	letter-spacing: 0.075rem;
}
/* 共通
------------------------------------------------ */
#contents p {
	margin-bottom: 20px;
	line-height: 1.6em;
}
#contents p:last-child {
	margin-bottom: 0;
}
.cbox {
	max-width: 1140px;
	min-width: 960px;
	width: 96%;
	margin: 0 auto 160px;
	box-sizing: border-box;
}
.cbox_m0 {
	max-width: 1140px;
	min-width: 960px;
	width: 96%;
	margin: 0 auto;
	box-sizing: border-box;
}
.cbox_m {
	max-width: 1060px;
	min-width: 960px;
	width: 95%;
	margin: 0 auto 160px;
	box-sizing: border-box;
}
.cbox_s {
	max-width: 1020px;
	min-width: 900px;
	width: 94%;
	margin: 0 auto 140px;
	box-sizing: border-box;
}
.cbox_s_m0 {
	max-width: 1020px;
	min-width: 900px;
	width: 94%;
	margin: 0 auto;
	box-sizing: border-box;
}
.cbox_ss {
	max-width: 900px;
	min-width: 860px;
	width: 90%;
	margin: 0 auto 140px;
	box-sizing: border-box;
}
.inbox {
	margin: 0 auto 80px;
	padding: 0 10px;
	box-sizing: border-box;
}
.wp-pagenavi {
	max-width: 980px;
	min-width: 880px;
	margin: 60px auto;
	color: #BFBFBF;
}
.wp-pagenavi a, 
.wp-pagenavi span {
	border: 1px #707070 solid !important;
	padding: 5px 10px;
	margin: 0 2px;
}
.wp-pagenavi span.current {
	border: none !important;
}
.wp-pagenavi a {
	color: #BFBFBF;
}
br.sp {
	display: none;
}
.pc_none {
	display: none !important;
}
#main-area {
	width: calc(100% - 150px);
	min-width: 940px;
	position: relative;
	left: 150px;
}
.cd-fixed-bg {
	position: relative;
	min-height: 100%;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 2;
}
/* 投稿
------------------------------------------------ */
#p_post #contents {
	padding: 20px;
	background: url(/image/single_bg.webp);
	background-size: 100%;
}
#p_post p.day {
	margin-bottom: 10px;
}
/* トップページ
------------------------------------------------ */
.image-container {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.image-container picture,
.image-container #imageNews {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	will-change: opacity;
}
.image-container picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
#imageNews {
	object-fit: cover;
}
.text-section {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
}
.stagger-item {
	opacity: 0;
	filter: blur(20px);
	transform: translateY(30px);
	transition: none;
}
.text-section .wrap {
	width: 96%;
	max-width: 1680px;
	margin: 0 auto;
}

#top h2 {
	font-weight: 300;
	font-size: 50px;
	color: #C2C2C2;
	letter-spacing: 0.15rem;
}
#top h2 span {
	font-size: 36px;
}
.section h2,
.section2 h2 {
	font-size: 60px;
}
#p_top .text-section .flex {
	display: flex;
	align-items: center;
	gap: 120px;
}
#p_top .text-section .flex .flex_l {
	width: 450px;
}
#p_top .text-section .flex .flex_r {
	flex: 1;
}
#p_top .correspondence {
	margin-top: 30px;
}
#p_top .correspondence dt,
#p_top .correspondence dd{
	font-size: 18px;
}
.scrolldown2 {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	z-index: 10;
	opacity: 1;
	visibility: visible;
	transition: opacity 1.0s ease, visibility 1.0s ease;
}
.scrolldown2 span {
	display: block;
	color: #fff;
	font-size: 10px;
	font-family: "Noto Sans JP", "sans-Serif";
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: 15px; /* 線との距離 */
}
.scrolldown2::before {
	content: "";
	width: 1px;
	height: 36px; /* 線の長さ（お好みで） */
	background: rgba(255, 255, 255, 0.4);
}
.scrolldown2::after {
	content: "";
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	animation: scroll-dot 2s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}
.scrolldown2.is-hidden {
	opacity: 0;
	visibility: hidden;
}
@keyframes scroll-dot {
	0% {
		top: 35px;
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	100% {
		top: 68px;
		opacity: 0;
	}
}
/* ABOUT */
#p_top #about {
	margin-bottom: 140px;
}
#p_top #about p {
	margin-bottom: 10px;
}
#p_top #about p:last-of-type {
	margin-bottom: 0;
}
#p_top #service.service-section {
	height: auto;
	min-height: 100vh;
	margin-bottom: 180px;
	align-items: flex-start;
	justify-content: flex-start;
}
#p_top #service .title {
	margin-bottom: 80px;
}
#p_top #service .service-item {
	opacity: 0;
	filter: blur(20px);
	transform: translateY(30px);
}
.service-item {
	margin-bottom: 140px;
}
.service-item:last-child {
	margin-bottom: 0;
}
.service-item__img {
	margin: 0 0 36px;
}
.service-item__img img {
	display: block;
	width: 100%;
	max-width: 1600px;
}
.service-item__body {
	display: flex;
	align-items: flex-start;
	gap: 48px;
	padding-left: 48px;
}
.service-item__num-col {
	flex-shrink: 0;
	text-align: center;
}
.service-item__num {
	padding-left: 3px;
	display: block;
	font-family: "Kaisei Opti", serif;
	font-size: 24px;
	font-weight: 400;
	color: #C2C2C2;
	letter-spacing: 0.2rem;
}
.service-item__line {
	display: block;
	width: 40px;
	height: 1px;
	margin-top: 16px;
	background: #C2C2C2;
}
.service-item__content {
	flex: 1;
	min-width: 0;
}
.service-item__heading {
	margin: 0 0 24px !important;
	padding: 0 !important;
	font-family: "Kaisei Opti", serif;
	font-size: 30px;
	font-weight: 400;
	color: #C2C2C2;
	letter-spacing: 0.05rem;
	line-height: 1.4;
}
.service-item__desc {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.12rem;
	line-height: 1.8;
}
/* WORKS */
#p_top #works.works-section {
	height: auto;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 140px 0;
	padding-bottom: 0;
}
#p_top #works .title {
	margin-bottom: 80px;
}
.works-list {
	width: 100%;
	padding: 0 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 120px 3%;
	margin-bottom: 170px;
}
.works-item {
	width: calc( 94% / 3);
	max-width: 500px;
}
.works-item a {
	text-decoration: none;
}
.works-item__media {
	position: relative;
	line-height: 0;
}
.works-item__media:before {
	content: "";
	width: 100%;
	aspect-ratio: 50 / 33;
	background: url(/image/grd_black_wkthum.png) center no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.works-item__media img {
	display: block;
	width: 100%;
	aspect-ratio: 50 / 33;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.works-item__overlay {
	position: relative;
	padding: 120px 18px 20px;
	z-index: 2;
}
.works-item__num {
	width: 28px;
	margin: 0 0 10px;
	padding-left: 2px;
	font-family: "Kaisei Opti", serif;
	font-size: 18px;
	font-weight: 400;
	color: #C2C2C2;
	letter-spacing: 0.15rem;
	text-align: center;
	position: relative;
}
.works-item__num:after {
	content: "";
	width: 28px;
	height: 1px;
	background: #707070;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
}
.works-item__title {
	margin: 0 !important;
	padding: 0 !important;
	font-family: "Kaisei Opti", serif;
	font-size: 20px;
	font-weight: 400;
	color: #C2C2C2;
	letter-spacing: 0.05rem;
	line-height: 1.4;
}
.works-item__divider {
	display: block;
	width: 100%;
	height: 1px;
	margin: 14px 0 14px;
	background: rgba(255, 255, 255, 0.45);
}
.works-item__details {
	margin: 0;
	color: #ACACAC;
}
.works-item__row {
	display: flex;
	gap: 0 5px;
	margin-bottom: 8px;
	font-size: 12px;
	line-height: 1.65;
	letter-spacing: 0.06rem;
}
.works-item__row:last-child {
	margin-bottom: 0;
}
.works-item__row dt {
	width: 76px;
	display: flex;
	justify-content: space-between;
}
.works-item__row dt::after {
	content: "：";
}
.works-item__row dd {
	margin: 0;
	flex: 1;
}
.works-more {
	margin: 0;
	text-align: center;
}
.works-more a {
	font-family: "Kaisei Opti", serif;
	font-size: 18px;
	font-weight: 400;
	color: #C2C2C2;
	letter-spacing: 0.2rem;
	text-decoration: none;
	text-transform: uppercase;
}
/* COMPANY */
#p_top #company.company-section {
	position: relative;
	height: 100vh;
	overflow: hidden;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.company-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	width: 100%;
	max-width: 1600px;
	height: 900px;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.company-bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
#p_top #company .company-wrap {
	position: relative;
	z-index: 1;
	width: 92%;
	max-width: 1580px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.company-title {
	margin: 0 0 60px !important;
	padding: 0 !important;
	font-family: "Kaisei Opti", serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.3rem;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 25px;
}
#p_top .company-title:before {
	content: "";
	width: 1px;
	height: 40px;
	background: #C2C2C2;
	display: block;
}
.company-title__bar {
	font-weight: 300;
}
.company-block {
	max-width: 500px;
	margin-left: 50px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(194, 194, 194, 0.35);
}
.company-block:first-of-type {
	border-bottom: none;
	padding-top: 0;
	padding-bottom: 10px;
}
.company-block__label {
	margin-bottom: 10px;
	font-size: 16px;
	color: #C2C2C2;
	letter-spacing: 0.1rem;
}
.company-block__name {
	font-size: 26px;
	letter-spacing: 0.12rem;
}
.company-block__name-sub {
	margin: 0;
	font-size: 16px;
	color: #C2C2C2;
}
.company-block__place {
	margin-bottom: 28px;
}
.company-block__place:last-child {
	margin-bottom: 0;
}
.company-block__place-name {
	margin: 0 0 10px;
	font-family: "Kaisei Opti", serif;
	font-size: 16px;
	letter-spacing: 0.2rem;
}
p.company-block__place-name {
	font-size: 12px;
}
.company-block__address {
	margin: 0;
	line-height: 1.8;
	letter-spacing: 0.08rem;
}
.company-block__tel,
.company-block__business {
	margin: 0;
	font-size: 18px;
	letter-spacing: 0.1rem;
	line-height: 1.8;
}
.company-block__tel a {
	color: #C2C2C2;
	text-decoration: none;
}
.company-sns {
	width: 100%;
	margin-top: 20px;
	text-align: center;
}
.company-sns a {
	display: inline-block;
}
.company-sns img {
	width: 40px;
	height: auto;
}
/* NEWS */
#p_top #news {
	position: relative;
	overflow: hidden;
}
.news-bg {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 1600px;
	z-index: 0;
	pointer-events: none;
}
.news-bg img {
	display: block;
	width: 100%;
	height: auto;
}
.news_wrap {
	position: relative;
	z-index: 1;
}
#p_top #news.news-section {
	height: 100vh;
	margin-bottom: 160px;
	align-items: center;
	justify-content: flex-start;
}
#p_top #news .bg_wrap {
	width: 92%;
	max-width: 1580px;
	margin: 0 auto;
}
#p_top #news .wrap {
	width: 100%;
	max-width: 640px;
	margin-left: 0;
}
.news-title {
	margin: 0 0 48px !important;
	padding: 0 !important;
	font-family: "Kaisei Opti", serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.3rem;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 25px;
}
#p_top .news-title:before {
	content: "";
	width: 1px;
	height: 40px;
	background: #C2C2C2;
	display: block;
}
#p_top #news .news_wrap {
	margin-left: 50px;
	margin-bottom: 50px;
}
#news .news_wrap dl {
	margin: 0 0 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid #707070;
}
#news .news_wrap dt {
	display: block;
	margin-bottom: 10px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	letter-spacing: 0.1rem;
}
#news .news_wrap dd {
	display: block;
	margin: 0;
	font-size: 18px;
	line-height: 1.7;
	letter-spacing: 0.1rem;
}
#news .news_wrap dd a {
	width: 100%;
	padding-right: 30px;
	color: #C2C2C2;
	text-decoration: none;
	display: block;
	position: relative;
}
#news .news_wrap dd a:hover {
	opacity: 0.7;
}
#news .news_wrap dd a i {
	width: 12px;
	height: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
#news .news_wrap dd > i {
	margin-left: 8px;
	font-size: 12px;
	font-style: normal;
}
.news-more {
	margin: 0;
	margin-left: 50px;
}
.news-more a {
	font-family: "Kaisei Opti", serif;
	font-size: 10px;
	font-weight: 400;
	color: #C2C2C2;
	letter-spacing: 0.2rem;
	text-decoration: none;
	text-transform: uppercase;
}
.news-more a:hover {
	opacity: 0.7;
}
/* 施工事例
------------------------------------------------ */
#p_works h3.title {
	width: 96%;
	max-width: 1680px;
	margin: 80px auto 60px;
}
#p_works .number {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
#p_works .number h3 a {
	padding-left: 60px;
	font-size: 16px;
	color: #fff;
	gap: 20px;
	position: relative;
}
#p_works .number h3 a::before {
	content: "";
	width: 40px;
	height: 1px;
	background: #fff;
	display: block;
	position: absolute;
	top: 12px;
}
#works .wrap {
	width: 96%;
	max-width: 1680px;
	margin: 0 auto;
}
#works .swiper {
	margin-bottom: 40px;
}
#works .swiper .swiper-slide ul.photo {
	width: 100%;
	aspect-ratio: 1400 / 800;
	max-height: 800px;
	margin-bottom: 10px !important;
	display: block;
}
#works .swiper .swiper-slide li {
	width: 100%;
	height: 100%;
}
#works .swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: block;
	object-fit: contain;
}
#works .swiper .swiper-slide p.comment {
	max-width: 1200px;
	margin:  0 auto;
	color: #fff;
	text-align: center;
}
.swiper-button-next, .swiper-button-prev {
	color: #fff !important;
}
.swiper-pagination {
	top: auto !important;
	bottom: 60px !important;
}
.swiper-pagination-bullet {
	background: #C8C8C8 !important;
	border: 1px #707070 solid !important;
	opacity: 1 !important;
}
.swiper-pagination-bullet-active {
	background: #fff !important;
	border: 1px #707070 solid !important;
}
#p_post #works p.no_post {
	margin: 120px;
	color: #fff;
	text-align: center;
}
#p_post .h3_wrap .works-item__num {
	margin-bottom: 5px;
}
#p_post #works .works-item__details {
	margin-bottom: 60px;
}
/* お問い合わせ
------------------------------------------------ */
#p_contact #mail .inwrap {
	width: 94%;
	max-width: 800px;
	margin: 0 auto 140px;
}
#p_contact #mail .bg_wrap {
	margin-bottom: 70px;
}
#p_contact #mail .form dl {
	margin-bottom: 40px;
}
#p_contact #mail .form dl.textarea {
	margin-bottom: 60px;
	align-items: flex-start;
}
#p_contact #mail .form dt {
	padding: 10px 0;
	font-size: 16px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
input {
	height: 40px;
	padding: 5px 10px;
	background: transparent;
	border: 1px #ACACAC solid;
	color: #C2C2C2;
}
select {
	height: 40px;
	padding: 5px 10px;
	background: transparent;
	border: 1px #ACACAC solid;
	color: #C2C2C2;
}
select.wl option {
	background: #000;
}
textarea {
	height: 300px;
	padding: 10px;
	background: transparent;
	border: 1px #ACACAC solid;
	color: #C2C2C2;
}
#p_contact #mail h4.plcy {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
}
#p_contact #mail .policy {
	width: 100%;
	max-width: 800px;
	height: 190px;
	margin: 0 auto;
	padding: 10px;
	border: 1px #C2C2C2 solid;
	overflow-y: scroll;
}
#p_contact #mail .policy dl {
	margin-bottom: 10px;
	font-size: 14px;
}
#p_contact #mail .policy dl:last-of-type {
	margin-bottom: 0;
}
input[type="submit"] {
	width: 500px;
	height: 60px;
	margin: 0 auto;
	margin-bottom: 20px;
	background: #000;
	border: 1px #707070 solid;
	font-family: "Noto Serif JP", serif;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
input[type="submit"]:hover {
	opacity: .7;
	cursor: pointer
}
ul.note {
	width: 500px;
	margin: 0 auto;
}
/* フォーム幅
------------------------------------------------ */
form .wl {
	width: 100% !important;
}
form .wm {
	width: 50% !important;
}
form .ws {
	width: 25% !important;
}
form .wss {
	width: 10% !important;
}

@media print {

  /* ==================================================
     印刷基本
  ================================================== */
  @page {
    size: A4 portrait;
    margin: 0;
  }

  html,
  body,
  #p_top {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #000 !important;
    color: #ACACAC !important;
    overflow: visible !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body:not(#p_top) {
    padding-top: 0 !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }


  /* ==================================================
     固定背景は印刷では使わない
     image-container は消して、各sectionに背景を直接指定
  ================================================== */
  #p_top .image-container {
    display: none !important;
  }


  /* ==================================================
     ヘッダー・ロゴ
  ================================================== */
  header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: transparent !important;
    z-index: 1000 !important;
  }

  .menu-btn,
  .menu-content,
  .menu-overlay,
  .scrolldown2 {
    display: none !important;
  }


  /* ==================================================
     TOP
     メイン画像は #top の背景として直接表示
  ================================================== */
  #p_top #top {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;

    background-color: #000 !important;
    background-image: url("/image/top/top_bg.webp") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;

    page-break-after: always;
    break-after: page;
  }

  #p_top #top .wrap {
    position: relative !important;
    z-index: 2 !important;
  }

  #p_top #top h2 {
    color: #C2C2C2 !important;
  }


  /* ==================================================
     ABOUT
     ABOUT背景画像を直接表示
  ================================================== */
  #p_top #about {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;

    background-color: #000 !important;
    background-image: url("/image/top/about_bg.webp") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;

    page-break-after: always;
    break-after: page;
  }

  #p_top #about .wrap {
    position: relative !important;
    z-index: 2 !important;
  }


  /* ==================================================
     SERVICE / WORKS
     背景は黒。背景画像は使わない
  ================================================== */
  #p_top #service,
  #p_top #works {
    position: relative !important;
    z-index: 10 !important;
    background-color: #000 !important;
  }

  #p_top #service.service-section,
  #p_top #works.works-section {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    margin: 0 0 80px !important;
    padding: 80px 0 !important;
  }


  /* ==================================================
     NEWS
     背景画像を印刷でも表示
  ================================================== */
  #p_top #news {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background-color: #000 !important;

    page-break-before: always;
    break-before: page;
    page-break-after: always;
    break-after: page;
  }

  #p_top #news .news-bg {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    z-index: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
  }

  #p_top #news .news-bg img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  #p_top #news .bg_wrap,
  #p_top #news .wrap,
  #p_top #news .news_wrap {
    position: relative !important;
    z-index: 2 !important;
  }


  /* ==================================================
     COMPANY
     背景画像を印刷でも表示
  ================================================== */
  #p_top #company {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background-color: #000 !important;

    page-break-before: always;
    break-before: page;
  }

  #p_top #company .company-bg {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    z-index: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
  }

  #p_top #company .company-bg img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  #p_top #company .company-wrap {
    position: relative !important;
    z-index: 2 !important;
  }


  /* ==================================================
     幅調整
  ================================================== */
  #p_top .text-section .wrap,
  #p_top #works .wrap,
  #p_top #news .bg_wrap,
  #p_top #company .company-wrap {
    width: 92% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }


  /* ==================================================
     GSAPアニメーション対策
     opacity:0 のまま印刷されるのを防ぐ
  ================================================== */
  .stagger-item,
  #p_top #about *,
  #p_top #service *,
  #p_top #works *,
  #p_top #news *,
  #p_top #company *,
  .service-item,
  .works-item,
  .news_wrap,
  .news_wrap dl,
  .company-block {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
  }


  /* ==================================================
     SERVICE
  ================================================== */
  #p_top #service .service-item {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
    margin-bottom: 80px !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .service-item__img img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }


  /* ==================================================
     WORKS
  ================================================== */
  .works-list {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  .works-item {
    page-break-inside: avoid;
    break-inside: avoid;
  }


  /* ==================================================
     フッター
  ================================================== */
  footer {
    position: relative !important;
    z-index: 10 !important;
    background-color: #000 !important;
    padding: 60px 0 !important;
  }

}