@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* 共通_全体 */
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
a:hover {
	color: #000;
	text-decoration: underline;
}
img {
	width: 100%;
	height: auto;
}
a:hover img {
	opacity: 0.5;
}
.bold {
	font-weight: bold;
}
.nomal {
	font-weight: normal;
}

body {
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	margin: 0;
	padding: 0;
}
main {
	width: 100%;
	min-width: 1200px;
	margin: 0 auto;
	padding: 85px 0 0 0;
}

/* ヘッダー */
header {
	display: flex;
	justify-content: space-between;
	width: 100%;
	min-width: 1200px;
	height: 85px;
    background-color: rgba(255, 255, 255, 0.95);
	padding: 30px max(2.5%, 30px) 0px max(5%, 60px);
	margin: 0;
    position: fixed;
	top: 0;
	z-index: 10;
}
header .logo {
	min-width: 176px;
	margin-right: 50px;
}
header .logo img {
	transition: 0.2s ease-out;
}

/* ヘッダーメニュー */
.nav-menu ul {
	list-style: none;
	font-size: 16px;
	line-height: 1;
	margin: 0;
	padding: 0;
}
.menu-list {
	display: flex;
}
.menu-item {
	position: relative;
	height: 30px;
	border-left: 1px solid #C8C9CA;
}
li.menu-item:last-of-type {
	border-right: 1px solid #C8C9CA;
}
.menu-item a {
	display: block;
	text-align: center;
	color: #657083;
	text-decoration: none;
	padding: 7px 20px;
}
.menu-item a:hover {
	color: #000;
	text-decoration: underline;
}
.drop-menu > a {
	padding-bottom: 32px;
}
.drop-menu > a, .menu-list li:last-of-type a {
	line-height: 1.2;
}
.drop-menu-list {
	position: absolute;
	left: 50%;
	top: 55px;
	min-width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}
.drop-menu-list ul {
	width: max-content;
	min-width: 100%;
	background-color: #fff;
	margin-left: -50%;
}
.drop-menu-list a {
	color: #005BAB;
	padding: 12px 25px;
}
.drop-menu:hover .drop-menu-list {
	opacity: 1;
	visibility: visible;
	transition: opacity .3s, visibility .3s;
}

/* bread */
#breadcrumbs  {
	width: 1200px;
	color: #000;
	margin: 0 auto;
	padding: 15px 20px 0;
}
#breadcrumbs a {
	color: #657083;
	text-decoration: none;
}
#breadcrumbs a:hover {
	color: #000;
	text-decoration: underline;
}
#breadcrumbs a:hover img {
	opacity: 0.5;
}

/* 共通_タイトル */
.title_top {
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	width: 1200px;
	color: #1D221D;
	margin: 30px auto 10px;
	padding: 0 20px;
}
.title_blue { /* 青丸ベタ＋白文字 */
	max-width: calc(100% - (50% - 600px));
	color: #fff;
	background: linear-gradient(-45deg, #00459D 20%, #005BAB 20%);
	border-radius: 0 300px 300px 0;
	padding: 20px 0 20px calc(50% - 580px);
}
.title_sub1 {
	font-family: "Noto Sans JP", sans-serif;
	color: #333333;
	font-size: 55px;
	font-weight: 900;
	letter-spacing: -0.05em;
}
.title_sub2 {
	font-family: "Roboto", sans-serif;
	color: #939393;
	font-size: 45px;
	font-weight: 900;
	margin-left: 1em;
}

/* 共通_本文 */
.explanation, .explanation2 {
	display: flex;
	margin-top: 25px;
	margin-left: 100px;
	margin-bottom: 40px;
	padding-right: 5%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	justify-content: center;
}
#movie .explanation, #catalog .explanation, #onestop .explanation, #package .explanation, #recruit .explanation, #systembooth .explanation, #surversys .explanation, #woodbooth .explanation {
	display: block;
	max-width: 1200px;
	margin: 25px auto 40px;
	padding: 0 20px;
}
.explain_left {
	margin: 30px 0 30px 345px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}
.notes { /* 注釈 */
	text-align: right;
	margin-right: 10%;
}
.blue { /* 注釈 */
	color: #005BAB;
}
.explain_light-blue { /* 水色背景 */
	background: #E0EFF7;
}
.explain_highlight_red { /* 下線文字 */
	text-align: center;
	color: #C30D23;
	margin: 50px 0 30px;
}
.explain_highlight_blue { /* 下線文字 */
	text-align: center;
	margin-top: 20px;
	margin-bottom: 30px;
	color: #002A6F;
	font-size: 50px;
	font-weight: bolder;
}
.ul_yellow { /* 黄色強調線 */
	background: linear-gradient(transparent 70%, #ffff7f 0%);
	margin-bottom: 0;
}
#package .explain_highlight_red, #movie .explain_highlight_red, #catalog .explain_highlight_red {
	font-size: 2.0em;
	font-weight: bold;
}

/* 共通_リンクボタン */
.button_vertical { /* タテ並び */
	margin: 10px auto; /* 四方余白 */
}
.button_vertical div {
	margin-top: 20px; 
	margin-bottom: 20px; 
}
.button_side { /* ヨコ並び */
	display: flex;
	justify-content: center;
	margin: 20px auto 80px; /* 四方余白 */
}
.button_side div {
	margin: 20px;
}
.button_single { /* 1個だけ */
	width: 20%;
	margin: 40px auto 80px;
}
.button_blue { /* 青ベタ */
	text-align: center;
	margin-bottom: 40px;
	border-radius: 100px;
	background: #00459D;
	color: #FFF;
	padding: 15px;
}
.button_blue a { /* 青ベタ */
	text-decoration: none;
	font-size: 22px;
	padding: 40px;
	color: #FFFFFF;
}
.button_white { /* 白ベタ */
	text-align: center;
	margin-bottom: 40px;
	border-radius: 100px;
	border: 1.5px solid #002A6F;
	background: #FFF;
	color: #002A6F;
	padding: 10px;
}
.button_white a { /* 白ベタ */
	text-decoration: none;
	font-size: 22px;
	padding: 50px;
	color: #002A6F;
}
.button_blue a:hover , .button_white a:hover {
	opacity: 0.5;
	text-decoration: underline;
}
.btn_side, .btn_single {
	display: flex;
	justify-content: center;
	min-width: 1200px;
	padding: 40px 0 80px;
}
.btn_side div:first-of-type {
	margin-right: 40px;
}
.wrap_btn_bl, .wrap_btn_wh {
	border-radius: 32px;
}
.wrap_btn_bl {
	background-color: #00459D;
}
.wrap_btn_wh {
	background-color: #fff;
	border: 1.5px solid #002A6F;
}
a.btn_bl, a.btn_wh {
	display: block;
	min-width: 380px;
	text-align: center;
	font-size: 22px;
	line-height: 1;
	text-decoration: none;
	border-radius: 32px;
	padding: 20px;
}
a.btn_bl {
	color: #fff;
}
a.btn_wh {
	color: #002A6F;
}
a.btn_bl:hover, a.btn_wh:hover {
	opacity: 0.5;
	text-decoration: underline;
}

.btn_link {
	display: flex;
	justify-content: center;
	margin: 40px 0 80px;
}
.btn_link a:nth-of-type(2) {
	margin-left: max(2.08vw, 40px);
}
a.btn_bl2, a.btn_wh2 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: max(20%, 380px);
	height: 62px;
	font-size: 22px;
	text-decoration: none;
	border-radius: 31px;
	transition: 0.2s ease-out;
}
a.btn_bl2 {
	color: #FFFFFF;
	background-color: #00459D;
}
a.btn_wh2 {
	color: #002A6F;
	background-color: #FFFFFF;
	border: 1px solid #002A6F;
}
a.btn_bl2:hover {
	text-decoration: underline;
	opacity: 0.7;
}
a.btn_wh2:hover {
	text-decoration: underline;
	background-color: rgba(0,69,157,0.1);
	opacity: 0.5;
}

/* 施工事例 */
.work {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 15px;
	width: 1200px;
	margin: 0 auto;
	padding-bottom: 15px;
}
.work img {
	transition: opacity 0.2s ease-out;
}
.block_work {
	border-radius: 24px;
	overflow: hidden;
}
#woodbooth .explanation, #systembooth .explanation {
	margin: 30px auto 30px;
}
#systembooth .explanation p:first-of-type, #woodbooth .explanation p:nth-of-type(2) {
	margin-bottom: 1.5em;
}

/* ワンストップの社内体制 */
.onestop_diagram {
	position: relative;
	width: 1200px;
	height: 800px;
	background: url("../images/onestop/onestop2.jpg") no-repeat top center;
	margin: 0 auto;
}
.features {
	display: flex;
	position: absolute;
}
.features dd {
	color: #3d3a39;
	font-size: 17px;
	line-height: 1;
	margin: 18px 0 0 5px;
}
.features.f03 dd {
	margin-left: 3px;
}
.f01 {
	right: 11.2%;
	top: 16%;
}
.f02 {
	left: 0.8%;
	top: 46.2%;
}
.f03 {
	right: 3.3%;
	bottom: 6%;
}
.features_sub {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: max-content;
	text-align: right;
	color: #3d3a39;
}
.features_sub dt {
	font-size: 18px;
	line-height: 1.3
}
.features_sub dd {
	width: auto;
	font-size: 13px;
	margin-top: 0.3em;
}
.fs01 {
	max-width: 450px;
	right: 12.2%;
	bottom: 86%;
}
.fs02 {
	max-width: 290px;
	left: 1%;
	bottom: 55.7%;
}
.fs03 {
	max-width: 420px;
	right: 4.5%;
	bottom: 14.6%;
}
.department {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 170px;
	height: 77px;
}
.d01 {
	color: #d2413f;
	left: 30.1%;
	bottom: 80%;
}
.d02 {
	color: #26a4a3;
	left: 19.3%;
	bottom: 26%;
}
.d03 {
	color: #327abe;
	left: 61.7%;
	bottom: 51%;
}
.department p {
	text-align: center;
	font-weight: bold;
}
.role {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 120px;
	position: absolute;
}
.role p {
	text-align: center;
	color: #3d3a39;
	font-size: 13px;
	line-height: 1.7;
}
.r01 {
	left: 29.8%;
	top: 20.5%;
}
.r02 {
	left: 18.9%;
	top: 74.5%;
}
.r03 {
	left: 61.4%;
	top: 49.5%;
}
.catch {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 470px;
	height: 68px;
	background-color: #005BAB;
	border-radius: 34px;
	padding: 0 36px;
	position: absolute;
	right: 1%;
	top: 69.5%;
}
.catch p {
	color: #fff;
	font-size: 15px;
	line-height: 1.4;
}
.sdgs_diagram {
	text-align: right;
	color: #fff;
	font-weight: bold;
	line-height: 1.2;
	text-shadow: -3px -3px 3px #d84d59, 3px -3px 3px #d84d59, 3px 3px 3px #d84d59, -3px 3px 3px #d84d59, 0 -3px 3px #d84d59, 0 3px 3px #d84d59, -3px 0 3px #d84d59, 3px 0 3px #d84d59;
	position: absolute;
}
.sdgs_diagram span {
	font-size: 12px;
}
.s01 {
	text-align: left;
	left: 82%;
	top: 54%;
}
.s02 {
	right: 13%;
	top: 61%;
}
.s03 {
	right: 2%;
	top: 63%;
}
.explain_gray {
	max-width: calc(100% - (50% - 600px));
	background-color: #f6f6f6;
	border-radius: 0 200px 200px 0;
	margin-bottom: 40px;
	padding: 30px 0 30px calc(50% - 580px);
}
.explain_gray .inner {
	display: grid;
	grid-template-columns: repeat(2, auto);
	width: max-content;
	column-gap: 1em;
	margin-bottom: 1.5em;
}
.explain_gray dl {
	grid-column: 2 span;
	display: grid;
	grid-template-columns: subgrid;
}
.explain_gray dd {
	max-width: 760px;

}
.explain_light-blue .btn_side {
	padding: 20px 0;
	margin-bottom: 80px;
}
.explain_frame_blue {
	border: solid #005BAB;
	border-width: 2px 0 2px 2px;
	border-radius: 200px 0 0 200px;
	margin: 0 0 40px calc(50% - 720px);
	padding-left: 120px;
}
.explain_frame_blue .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	padding: 40px 20px;
}
.frame_blue_text {
	display: flex;
	flex-direction: column;
	max-width: 880px;
	margin-top: -5px;
}
.title_top_blue {
	display: flex;
	align-items: center;
	color: #00459D;
	margin-bottom: 25px;
}
.title_sub1_blue {
	font-family: Tahoma, Geneva, "sans-serif";
	font-size: 70px;
	font-weight: bold;
	line-height: 1;
	margin-right: 45px;
}
.title_sub2_blue {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.2;
	padding-top: 10px;
}
.explanation3 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}
#onestop .btn_link, #recruit .btn_link {
	margin-top: 80px;
}
#onestop .explain_light-blue {
	margin-bottom: 80px;
	padding: 30px 0 20px;
}
#onestop .explain_light-blue h2 {
	margin-top: 0;
}
#onestop .explain_light-blue .btn_link {
	margin-top: 60px;
	margin-bottom: 0;
}

 /* アンケートシステム */
.frametitle {
	display: flex;
	justify-content: flex-start;
	min-width: 1200px;
	margin: 40px auto;
}
.frametitle .inner {
	border: 1px solid #005BAB;
	border-left-width: 0;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	padding-left: calc(50% - 580px);
}
.frametitle p {
	min-width: 280px;
	color: #002A6F;
	font-size: 22px;
	font-weight: bold;
	padding-right: 3em;
}
.wrap_price {
	background-color: #f6f6f6;
}
.price {
	display: flex;
	align-items: center;
	position: relative;
	width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	margin-bottom: 64px;
}
.circle_price {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	min-width: 170px;
	height: 170px;
	background-color: #005BAB;
	border-radius: 50%;
}
.circle_price p {
	text-align: center;
	color: #fff;
	font-size: 28px;
	line-height: 1.25;
}
.price_blue {
	font-family: "Roboto", sans-serif;
	color: #002A6F;
	font-size: 100px;
	font-weight: 900;
	letter-spacing: -0.025em;
	margin-left: 0.75em;
}
.price_black {
	color: #1D221D;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.2;
	padding-top: 0.5em;
	margin-left: 1em;
}
.notes_price {
	position: absolute;
	font-size: 14px;
	right: 0;
	bottom: -1.5em;
}
.img_frametitle { /* アンケートシステム */
	margin: 80px 0 30px 0;
}
.img_system { /* アンケートシステム */
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 1200px;
	color: #005BAB;
	margin: 20px auto;
	padding: 0 10px;
}
.process { /* アンケートシステム手順アイコン */
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 280px;
}
.process p {
	font-size: 15px;
	padding: 10px 12px 25px;
}
.explain_system {
	background: linear-gradient(to bottom, #f6f6f6 33.33%, #fff 33.33%, #fff 66.67%, #f6f6f6 66.67%);
}
.explain_system .inner{
	display: flex;
	justify-content: space-between;
	width: 1200px;
	margin: 0 auto;
	padding: 20px;
}
.img_number, .title_point, .explain_point {
	display: flex;
	flex-direction: column;
}
.img_number {
	padding-left: 20px;
}
.title_point {
	max-width: 200px;
}
.explain_point {
	max-width: 800px;
	padding-right: 20px;
}
.title_point li, .explain_point li {
	display: flex;
	align-items: center;
	height: 100px;
}
.title_point li {
	line-height: 1.3;
}
.img_number li, .title_point li, .explain_point li {
	margin-bottom: 40px;
}
.img_number li:last-of-type, .title_point li:last-of-type, .explain_point li:last-of-type {
	margin-bottom: 0;
}
.img_number li {
	min-width: 100px;
}
.title_point span {
	color: #002A6F;
	font-size: 30px;
	background: linear-gradient(transparent 70%, #ffff7f 0%);
}

/* パッケージブース */
#package .explanation p:first-of-type {
	margin-bottom: 1.5em;
}
.container_price_pack {
	background-color: #f6f6f6;
}
.container_price_pack .inner {
	display: flex;
	justify-content: space-around;
	width: 1200px;
	margin: 0 auto;
}
.sub_price_pack {
	display: flex;
	align-items: center;
	max-width: 45%;
}
.circle_price_orange, .circle_price_red {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 140px;
	min-width: 140px;
	height: 140px;
	border-radius: 50%;
}
.circle_price_orange p, .circle_price_red p {
	text-align: center;
	color: #fff;
	font-size: 18px;
}
.circle_price_orange {
	background-color: #cf5933;
}
.circle_price_red {
	background-color: #c30d23;
}
.price_package {
	display: flex;
	align-items: center;
}
.price_blue_pack {
	font-family: "Roboto", sans-serif;
	color: #002A6F;
	font-size: 80px;
	font-weight: 900;
	letter-spacing: -0.025em;
	margin: 0 5px 0 20px;
}
.price_black_pack {
	text-align: center;
	color: #1D221D;
	font-size: 20px;
	line-height: 1.2;
}
ul.block_pack {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 1200px;
	margin: 0 auto;
}
.block_pack li {
	width: 40%;
	padding: 25px 0;
}
.block_pack li img {
	border-radius: 30px;
}
ul.include_pack {
	list-style: disc;
	padding: 0 0 1.5em 1em;
}
#package .explanation2 {
	margin-bottom: 0;
}

/*　リンクボタン　*/
.img_pack {
	display: flex;
	justify-content: center;
}
.img_pack img{
	margin: 50px 80px 30px 80px;
}

/* 会社概要 */
.company_prof {
	position: relative;
	width: 100%;
	margin-top: 30px;
	padding-top: 26px;
}
.container {
	display: grid;
	grid-template-columns: repeat(2, auto);
	column-gap: 100px;
	width: max-content;
	line-height: 1.6;
	margin: 0 auto;
}
.sub_container {
	grid-column: 2 span;
	display: grid;
	grid-template-columns: subgrid;
}
.sub_container .box:last-of-type {
	max-width: 620px;
}
.sub_container .box:first-of-type {
}
.container .sub_container:nth-of-type(-n+9) {
	color: #fff;
}
.container .sub_container:nth-of-type(9) {
	margin-bottom: 68px;
}
.container .sub_container:nth-of-type(n+10) .box {
	border-bottom: 1px solid #C8C9CA;
	margin-bottom: 8px;
	padding-bottom: 30px;
}
.content li::before {
	content: "■";
	display: inline-block;
	margin-right: 0.25em;
}
.sub_container dd {
	padding-left: 1em;
	margin-bottom: 1.6em;
}
.sub_container dd:last-of-type {
	margin-bottom: 0;
}
.bg_company {
	width: calc(100% - (50% - 600px));
	height: 280px;
	background: linear-gradient(-45deg, #00459D 72%, #005BAB 72%);
	border-radius: 0 140px 140px 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -10;
}
.container a {
	color: #005BAB;
	text-decoration: none;
}
.container a:hover {
	color: #000;
	text-decoration: underline;
}

/* 採用情報 */
#recruit .explanation {
	margin: 30px auto 60px;
}
.img_recruit {
	width: 1200px;
	margin: 0 auto;
}
.img_recruit a {
	display: flex;
	align-items: center;
	width: 1160px;
	height: 216px;
	color: #fff;
	text-decoration: none;
	border-radius: 150px;
	margin: 0 auto 60px;
}
.img_recruit a:last-of-type {
	margin-bottom: 40px;
}
.img_recruit a .inner {
	display: flex;
	flex-direction: column;
	max-width: 920px;
	font-size: 24px;
	margin-left: 95px;
	padding-bottom: 20px;
}
.recruit_title {
	display: flex;
	align-items: baseline;
}
.recruit_title p:first-of-type {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 55px;
	font-weight: 800;
}
.recruit_title p:last-of-type {
	font-family: "Roboto", sans-serif;
	font-size: 32px;
	font-weight: 600;
	margin-left: 1em;
}
.img_recruit01, .img_recruit02, .img_recruit03 {
	background: no-repeat top center/cover;
}
.img_recruit01 { /* 背景画像 */
	background-image: url("../images/recruit/recruit_04.jpg");
}
.img_recruit02 { /* 背景画像 */
	background-image: url("../images/recruit/recruit_05.jpg");
}
.img_recruit03 { /* 背景画像 */
	background-image: url("../images/recruit/recruit_06.jpg");
}
.img_recruit a, .img_recruit p {
	transition: opacity 0.2s ease-out;
}
.img_recruit a:hover {
	opacity: 0.7;
}
.img_recruit a:hover p {
	opacity: 0.5;
}

/* 動画制作 *//* カタログ制作 */
.img_catalog_top { /* カタログ */
	display: flex;
	justify-content: center;
	padding-top: 50px;
}
.textbox {
	background-color: #E0EFF7;
}
.triangle_bg::after { /* 背景_カタログ・動画 */
	content: '';
	display: block;
	background-color: #E0EFF7;
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
	width: 100%;
	height: 150px;
}
.textbox ul {
	display: flex;
	justify-content: space-around;
	align-items: stretch;
	width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}
.textbox li {
	text-align: center;
	color: #002A6F;
}
#movie .textbox li {
	width: 264px;
}
#catalog .textbox li {
	width: 352px;
}
ul.textbox_title {
	padding-top: 20px;
	padding-bottom: 5px;
}
.textbox_title li span {
	font-size: 32px;
	font-weight: bold;
}
.textbox_top li, .textbox_bottom li {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	line-height: 1.7;
	background-color: #fff;
	border: 2px solid #002A6F;
	border-radius: 30px;
	padding: 15px;
}
.textbox_top li {
	font-size: 18px;
}
#movie .textbox_top li:first-of-type {
	line-height: 1.5;
	padding: 30px 15px;
}
#catalog .textbox_top li, #catalog .textbox_bottom li {
	padding: 30px 40px;
}
#catalog .textbox_top li {
	line-height: 1.5;
}
.textbox_bottom li {
	font-size: 26px;
}
.box_thin {
	font-size: 15px;
	font-weight: normal;
	line-height: 1.2;
	margin-bottom: 15px;
}
#movie .vertical_line li, #catalog .vertical_line li {
	width: 2px;
	height: 80px;
	background-color: #002A6F;
}
.img_movie_bottom { /* 動画 */
	display: flex;
	justify-content: center;
	background: linear-gradient(-45deg, #EEEEEF 20%, #F6F6F6 20%);
	padding: 30px 0;
}
.frame_mov {
	width: 440px;
}
.img_movie_bottom .frame_mov:first-of-type {
	margin-right: 50px;
}
.frame_mov .wrap {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	position: relative;
}
.frame_mov iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
ul.cat_mov {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 15px;
}
.cat_mov li {
	color: #FFFFFF;
	font-size: 15px;
	line-height: 1;
	background-color: #63B5D5;
	border-radius: 8px;
	margin-left: 5px;
	padding: 10px 12px;
}
.cat_mov li:first-of-type {
	margin-left: 0;
}
.notes_02 { /* 注釈 */
	text-align: center;
	background-color: #E0EFF7;
	padding-top: 15px;
}

/* Google広告ページ */
.title_blue2 {
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(-45deg, #00459D 20%, #005BAB 20%);
	border-top-right-radius: 300px;
	border-bottom-right-radius: 300px;
	border-bottom-left-radius: 300px;
	border-top-left-radius: 300px;
    width: 50%;
	padding: 20px;
	text-align: center;
	font-size: 30px;
	font-weight: bolder;
	color: #FFFFFF;
}
.title_blue_cm {
	padding-top: 50px;
    background: linear-gradient(-45deg, #00459D 20%, #005BAB 20%);
	border-top-right-radius: 300px;
	border-bottom-right-radius: 300px;
    width: 90%;
	height: 110px;
	color: #FFFFFF;
    text-align: left;
}
.title_blue_cm h1 {
	display: flex;
	justify-content: flex-end;
	margin-top: -26px;
	margin-right: 18%;
	font-size: 260%;
	font-weight: lighter
}
.title_sub_cm {
	margin-left: 100px;
	margin-top: 20px;
	font-family: Tahoma, Geneva, "sans-serif";
	font-size: 30px;
}
.explain_cm_blue { /* cm */
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
	color: #002A6F;
	font-size: 40px;
}
.explain_highlight_red_02 {
	font-size: 40px;
	text-align: center;
	margin-top: 30px;
	margin-bottom: -20px;
	color: #C30D23;
}

.mainplace_cm { /* 主な施工会場 */
	display: flex;
	justify-content: space-around;
	padding: 3% 16% 0 5%;
}
.mainplace_text {
	padding-top: 2%;
}

.mainplace_cm b {
	color: #002A6F;
}
.mainplace_cm hr {
	height: 2px;
	width: 100%;
	color: #002A6F;
	margin-top: 2%; 
	margin-bottom: 3%;
}

.surveysystem_cm { /* リンクボタン_アンケートシステム */
	margin-top: 50px;
	margin-bottom: 50px;
	padding-bottom: 15px;
	background: url("../images/cm/cm_09.png") top center no-repeat;
	border-top-right-radius: 250px;
	border-bottom-right-radius: 250px;
    width: 67%;
}
.surveysystem_cm p {
	margin-left: 27%;
	margin-bottom: 30px;
	font-size: 22px;
	color: #FFF;
}
.surveysystem_cm a {
	color: #FFFFFF;
	text-decoration: none;
	padding: 3px;
}
.surveysystem_cm a:hover {
	opacity: 0.5;
}
.title_sub1_white { /* リンクボタン_アンケートシステム */
	margin-left: 340px;
	margin-top: 15px;
	font-family: Tahoma, Geneva, "sans-serif";
	font-size: 70px;
	font-weight: bold;
	color: #FFF;
}
.title_sub2_white { /* 和文（小） */
	margin-left: 45px;
	margin-top: 55px;
	color: #FFF;
}
.here h2 {
	margin-left: 27%;
	margin-top: 55px;
	color: #FFF;
}

.button_single_cm { /* リンクボタン_問合せ */
	width: 30%;
	margin: 30px auto 70px;
}
.button_blue_cm { /* リンクボタン_問合せ */
	text-align: center;
	margin-bottom: 40px;
	border-radius: 100px;
	background: #00459D;
	color: #FFF;
	padding: 30px;
}
.button_blue_cm a { /* リンクボタン_問合せ */
	text-decoration: none;
	font-size: 25px;
	color: #FFFFFF;
}
.button_blue_cm a:hover { /* リンクボタン_問合せ */
	opacity: 0.3;
}
.button_blue_cm b {
	font-size: 35px;
}
.button_orange_cm , .button_blueframe_cm { /* リンクボタン_木工事例 */
	width: 60%;
	margin: 40px auto 80px;
	border-radius: 200px;
	text-align: center;
	padding: 1.5%;
}
.button_orange_cm a:hover , .button_blueframe_cm a:hover {
	opacity: 0.3;
	text-decoration: none;
}
.button_orange_cm { /* リンクボタン_木工事例 */
	border: 2px solid #E95513;
	border-radius: 30px 30px;
	background: #FFF;
	font-size: 25px;
}
.button_orange_cm a { /* リンクボタン_木工事例 */
	color: #E95513;
	text-decoration: none;
}
.button_blueframe_cm { /* リンクボタン_システム事例 */
	border: 2px solid #002A6F;
	border-radius: 30px 30px;
	background: #FFF;
	font-size: 25px;
}
.button_blueframe_cm a { /* リンクボタン_システム事例 */
	color: #002A6F;
	text-decoration: none;
}

.img_work_cm { /* 施工事例 */
	background-color: #E0EFF7;
	padding-top: 30px;
	padding-bottom: 20px;
}
.img_pack_cm img { /* cm */
	margin-top: 10px; 
}
.img_step_cm { /* cm */
	padding-bottom:50px; 
}
.img_onestop { /* cm */
	display: flex;
	justify-content: center;
}

/* privacy */
#privacy #content {
	width: 1200px;
	font-size: 14px;
	margin: 0 auto;
	padding: 15px 20px 0;
}
#privacy #content section {
	margin-bottom: 5em;
}
#privacy #content ul {
	padding-left: 3em;
}
ul.privacy01 li, #privacy #content ul.privacy03-2 {
	margin: 1em 0;
}
#privacy #content dt {
	font-weight: bold;
	margin-top: 1em;
}
.date {
	text-align: right;
	margin-bottom: 1em;
}
ul.privacy01 {
	list-style: decimal;
}
#privacy #content ul.privacy02, .info2 li, .org dd {
	padding-left: 1em;
}
ul.privacy02 > li {
	margin-top: 1em;
}
ul.privacy02-2, ul.privacy03-1, ul.privacy03-3 {
	list-style: disc;
}
#privacy #content ul.privacy03, #privacy #content ul.privacy03-2, .org, .ml2em {
	padding-left: 2em;
}
#privacy #content ul.privacy03-3, .mb1em {
	margin-bottom: 1em;
}
section.privacy02 dl:first-of-type dt:first-of-type, section.privacy03 > dl:first-of-type dt:first-of-type {
	text-align: center;
	font-size: 18px;
	margin-bottom: 0.75em;
}
.info {
	display: flex;
	justify-content: center;
	width: 900px;
	border: 1px solid #000;
	margin: 2em auto;
	padding: 1em;
}
.info dt {
	text-align: center;
	margin-bottom: 1em;
}
.privacy03-3 p {
	position: relative;
	padding-left: 1.5em;
}
.privacy03-3 p::before {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1px;
	background-color: #000;
	position: absolute;
	top: 50%;
	left: 0;
}
#privacy #content .right {
	text-align: right;
}

/* sitemap */
#sitemap .title_blue {
	height: 76px;
}
#sitemap #content .wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 100px;
	grid-row-gap: 80px;
	width: 1200px;
	line-height: 1;
	margin: 0 auto;
	padding: 60px 20px 120px;
}
#sitemap .category {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#sitemap .category h3 {
	width: 100%;
	text-align: center;
	color: #002A6F;
	font-size: 18px;
	font-weight: normal;
	border: 1px solid #002A6F;
	border-radius: 19px;
	padding: 10px;
}
#sitemap .category li {
	font-size: 18px;
	margin-top: 2.0em;
}
#sitemap .category a {
	color: #000000;
	text-decoration: none;
}
#sitemap .category a:hover {
	color: #657083;
	text-decoration: underline;
}
#sitemap .category a::before {
	content: "＞";
	display: inline-block;
	margin-right: 0.75em;
}

/*　footer　*/
footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	min-width: 1200px;
	color: #FFFFFF;
	font-size: 14px;
	background: no-repeat top center/cover url("../images/08-2.jpg");
	padding: 30px max(3vw, 36px) 20px;
}
footer a {
	color: #FFFFFF;
	text-decoration: none;
}
footer a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.left_column {
	width: 360px;
}
.address img {
	width: 288px;
	height: 48px;
	margin-bottom: 1em;
}
ul.factory {
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	margin-top: 1em;
}
.factory li::after {
	content: "｜";
	display: inline-block;
	margin: 0 0.5em;
}
.factory li:last-of-type::after {
	content: "";
	margin: 0;
}
.right_column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 730px;
}
.footer_navi {
	display: flex;
	flex-wrap: wrap;
}
.footer_navi dl {
	margin: 0 50px 1.5em 0;
}
.footer_navi dl:last-of-type {
	margin-right: 0;
}
.right_column dt {
	font-weight: bold;
}
.footer_navi dd {
	margin: 0.5em 0;
}
.footer_navi dd::before {
	content: "―";
	display: inline-block;
	margin-right: 0.5em;
}
.footer_navi_chd {
	display: flex;
	justify-content: space-between;
	margin-bottom: 3em;
}
.footer_navi_chd dt {
	margin-left: 50px;
}
.footer_navi_chd dt:first-of-type {
	margin-left: 0;
}
.copy {
	width: 100%;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.075em;
}
