@charset "utf-8";
html {
	width: 100%;
	font-size: 62.5%;
}
body {
	background-color: #ffffff;
}
body,
input,
textarea {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.65;
	font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
		"游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
	color: #222222;
}

div {
	box-sizing: border-box;
}

input:hover,
input:focus,
textarea {
	outline: none;
}

input[type="radio"]:hover,
input[type="submit"]:hover {
	cursor: pointer;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea {
	box-sizing: border-box;
	box-shadow: none;
	border: 1px solid #EDEDED;
	background-color: #fff;
	width: 100%;
	padding: 10px;
}
input[type="date"] {
	box-sizing: border-box;
	box-shadow: none;
	border: 1px solid #EDEDED;
	background-color: #fff;
	padding: 8px 10px;
}
select {
	box-shadow: none;
	border: 1px solid #EDEDED;
	padding: 12px 12px 12px 5px;
}


input[type="radio"] {
	position: absolute;
	display: none;
	width: 100%;
	padding: 0;
}

input[type="radio"]+label {
	position: relative;
}

input[type="radio"]+label::before {
	content: "";
	position: absolute;
	top: calc(50% - 12px);
	left: -30px;
	display: block;
	width: 24px;
	height: 24px;
	background-color: #ffffff;
	border: 1px solid #EDEDED;
	border-radius: 50%;
	cursor: pointer;
}

input[type="radio"]:checked+label::after {
	content: "";
	position: absolute;
	top: 4px;
	left: -24px;
	display: block;
	width: 14px;
	height: 14px;
	background-color: #001B5D;
	border-radius: 50%;
	cursor: pointer;
}

input[type="checkbox"] {
	opacity: 0;
}

input[type="checkbox"]+span {
	position: relative;
	padding-left: 38px;
}

input[type="checkbox"]+span::before {
	content: "";
	position: absolute;
	top: calc(50% - 13px);
	left: 0;
	display: block;
	width: 26px;
	height: 26px;
	background-color: #ffffff;
	border: 1px solid #969696;
	border-radius: 4px;
	cursor: pointer;
}

input[type="checkbox"]:checked+span::after {
	content: "\2713";
	position: absolute;
	top: calc(50% - 20px);
	left: 1px;
	display: block;
	font-size: 2.4rem;
	color: #000000;
	cursor: pointer;
}

/*---------------------------------------------------
	for jqeuryValidation
---------------------------------------------------*/
form label.error {
	font-weight: bold;
	color: #f00;
	margin-top: 5px;
}
/*---------------------------------------------------
	a img setting
---------------------------------------------------*/
a {
	text-decoration: none;
	color: inherit;
}
a:hover {
	text-decoration: underline;
}
a:link, 
a:visited, 
a:active {}

img {
	display: inline-block;
	line-height: 1;
	max-width: 100%;
	-webkit-backface-visibility: hidden;
}

a.opacity:hover {
	text-decoration: none;
}

.underline {
	text-decoration: underline;

}

a img, 
a.more, 
.opacity {
	opacity: 1;
	transition: opacity 0.4s ease;
	text-decoration: none;
	cursor: pointer;
}
a:hover img,
a.more:hover,
.opacity:hover {
	opacity: .7;
}
.img-box {
	line-height: 0;
	text-align: center;
}
a.img-box {
	display: block;
	text-decoration: none;
}
/*---------------------------------------------------
	other common
---------------------------------------------------*/
.left { float: left; }
.right { float: right; }
.center { margin: 0 auto; }

.clear {
	clear: both;
}

.clearfix {
	position: relative;
	min-height: 1px;
}
.clearfix::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	font-size:0em;
}

#wrapper {
	position: relative;
	width: 100%;
	background-color: #fff;
	overflow: hidden;
}
.content-width {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}
.content-width-wide {
	max-width: 1200px;
}

.ttl-box {
	margin-bottom: 40px;
}
.txt-box p {
	line-height: 2;
}
.txt-box p + p {
	margin-top: 1.5em;
}

.iframe-wrap {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}
.iframe-wrap iframe {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

/*---------------------------------------------------
	main
---------------------------------------------------*/
#mv {
	position: relative;
	width: 100%;
	height: 700px;
	padding: 40px;
	background: transparent no-repeat center center;
	background-image: url("./images/bg_mv_01.jpg");
	background-size: 100% auto;
	z-index: 0;
}
#mv::after {
	content: '';
	background: inherit;
	-webkit-filter: brightness(40%) blur(5px);
	-moz-filter: brightness(40%) blur(5px);
	-o-filter: brightness(40%) blur(5px);
	-ms-filter: brightness(40%) blur(5px);
	filter: brightness(40%) blur(5px);
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	z-index: -1;
	width: 105%;
}
@media screen and (max-width: 1400px) {
	#mv {
		background-size: cover;
	}
}
#mv .mv-inner {
	position: relative;
	max-width: 1000px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
#mv-head-content {
	display: flex;
}
#h-logo {
	width: 181px;
}
#h-logo .img-box {}

#mv .catchphrase-box {
	padding-top: 20px;
	padding-left: 50px;
}
#mv .catchphrase-box .txt-primary {
	position: relative;
	display: inline-block;
	padding-bottom: 8px;
	border-bottom: 6px solid;
	font-size: 5.2rem;
	font-weight: bold;
	letter-spacing: -0.03em;
	line-height: 1;
	color: #fff;
	z-index: 3;
}
#mv .catchphrase-box .txt-primary::before {
	position: absolute;
	content: "";
	bottom: -15px;
	left: 0rem;
	right: 0rem;
	border-bottom: 2px solid;
}
#mv .catchphrase-box .txt-secondary {
	position: relative;
	padding-top: 34px;
	font-size: 3.2rem;
	font-weight: bold;
	letter-spacing: -0.03em;
	line-height: 1.38;
	color: #fff;
	z-index: 3;
}
#mv .corporate-group-menu {
	position: relative;
	border-radius: 6px;
	top: 50px;
	background: #f4f4f0;
	padding: 20px 0 9px;
}
#mv .corporate-group-menu .ttl {
	text-align: center;
	font-size: 2.2rem;
	font-weight: bold;
	padding-bottom: 20px;
}
#mv .corporate-group-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	background: #fff;
}
#mv .corporate-group-list .corprate-group-item {
	width: 219px;
	padding: 15px;
	border-top: 1px solid #f4f4f0;
	border-right: 1px solid #f4f4f0;
}
#mv .corporate-group-list .corprate-group-item:nth-child(-n+4) {
	border-top: none;
}
#mv .corporate-group-list .corprate-group-item:nth-child(4n) {
	border-right: none;
}
#mv .corporate-group-list .corprate-group-item .img-box {
	position: relative;
	width: 220px;
	height: 140px;
}
#mv .corporate-group-list .corprate-group-item .builder-meta {
	position: absolute;
	top: 8px;
	left: 8px;
	display: flex;
	gap: 5px;
}
#mv .corporate-group-list .corprate-group-item .builder-meta .city {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 20px;
	background-color: #fff;
	color: #023893;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1;
}
#mv .corporate-group-list .corprate-group-item .builder-name {
	position: relative;
	margin-top: 10px;
	font-size: 1.3rem;
	font-weight: bold;
}
#mv .corporate-group-list .corprate-group-item .builder-name::after {
	content: "";
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	background-image: url(./images/c_arrow_right_circle_white_.svg);
	background-size: contain;
	background-repeat: no-repeat;
	top: 0;
	right: 0;
}
#mv .corporate-group-list .corprate-group-item .builder-name .txt {
	width: 85%;
	text-decoration: underline;
}

#band {
	width: 100%;
	height: 350px;
	background: #001b5d;
}

#page-nav {
	padding: 20px 0;
	background-color: #F4F4F4;
}
#page-nav .page-links {
	display: flex;
	justify-content: center;
	align-items: center;
}
#page-nav .page-links .link-item {
	position: relative;
	padding: 0 10px;
}
#page-nav .page-links .link-item-nav {
}
#page-nav .page-links .link-item-btn {
}
#page-nav .page-links .link-item::before {
	content: "";
	position: absolute;
	display: none;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 1px;
	height: 20px;
	background-color: #707070;
}
#page-nav .page-links .link-item + .link-item::before {
	display: block;
}
#page-nav .page-links .link-item a {
	position: relative;
	display: block;
	white-space: nowrap;
	font-size: 1.6rem;
	font-weight: bold;
}
#page-nav .page-links .link-item a:hover {
	text-decoration: none;
}
#page-nav .page-links .link-item a::after {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto 0;
}
#page-nav .page-links .link-item a.nav-link {
	padding: 0 50px 0 20px;
}
#page-nav .page-links .link-item a.nav-link::after {
	width: 12px;
	height: 12px;
	background: transparent no-repeat top right;
	background-image: url("./images/c_arrow_blue_01.svg");
	background-size: contain;
}
#page-nav .page-links .link-item a.nav-btn {
	border-radius: 6px;
	padding: 10px 50px 10px 20px;
	background-color: #023893;
	color: #fff;
}
#page-nav .page-links .link-item a.nav-btn::after {
	width: 20px;
	height: 20px;
	background: transparent no-repeat top right;
	background-image: url("./images/c_arrow_circle_blue_01.svg");
	background-size: contain;
}


.content-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sec-ttl {
	font-size: 3.6rem;
	font-weight: bold;
}

#sec-thanks {
	padding: 80px 0 100px;
	text-align: center;
}
#sec-thanks .ttl {
	font-size: 2.6rem;
	font-weight: bold;
}
#sec-about {
	padding: 60px 0;
}
#sec-about-affliation-store {
	margin-top: 50px;
	padding: 40px 100px 50px;
	background-color: #F4F4F0;
}
#sec-about-affliation-store .ttl-square {
	position: relative;
	font-size: 1.6rem;
	font-weight: bold;
	color: #023893;
	padding-bottom: 5px;
	border-bottom: 1px solid #D0D0D0;
}
#sec-about-affliation-store .ttl-square > span {
	display: inline-block;
	vertical-align: middle;
}
#sec-about-affliation-store .ttl-square::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #023893;
	margin-right: 4px;
	vertical-align: middle;
}

#sec-about-affliation-store .store-list {
	display: flex;
	margin-top: 40px;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#sec-about-affliation-store .store-list li {
	width: 240px;
	height: 96px;
	margin-bottom: 15px;
}
#sec-about-affliation-store .store-list li .img-base {
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	box-shadow: 0 0 5px rgba(30,30,30,0.1);
}
#sec-about-affliation-store .store-list li .img-base a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: inherit;
	height: inherit;
	background: transparent no-repeat right 5px bottom 5px;
	background-image: url("./images/c_arrow_white_01.svg");
	background-size: auto;
}
#sec-about .content-row .img-col img {
	width: 220px;
}

#sec-strengths {
	padding: 80px 0;
}
#sec-strengths .sec-ttl {
	text-align: center;
}

#sec-strengths .content-row + .content-row {
	margin-top: 50px;
}
#sec-strengths .content-row .txt-col {
	width: 720px;
	padding-right: 30px;
}
#sec-strengths .num-ttl-box {
	margin-bottom: 30px;
}
#sec-strengths .num-ttl {
	color: #023893;
}
#sec-strengths .num-ttl .num {
	display: inline-block;
	font-size: 50px;
	line-height: 1;
	margin-right: 15px;
	vertical-align: middle;
}
#sec-strengths .num-ttl .ttl-txt {
	display: inline-block;
	padding-left: 15px;
	border-left: 1px solid #D0D0D0;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 50px;
	vertical-align: middle;
}
#sec-strengths .content-row .img-col {
	width: 280px;
}

#sec-technostructure {
	margin-top: 80px;
}
#sec-technostructure .sec-inner {
	position: relative;
	background-color: #001B5D;
	color: #fff;
}
#sec-technostructure .sec-inner .first-img {
	position: absolute;
	top: -50px;
	left: 0;
	max-width: 45%;
	width: 100%;
	height: 0;
	text-align: left;
	z-index: 2;
}
@media screen and (min-width: 1401px) {
	#sec-technostructure .sec-inner .first-img {
		max-width: 640px;
	}
}
#sec-technostructure .sec-inner .first-img .inner {
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	background: transparent no-repeat left top;
	background-image: url("./images/c_technostructure_img_01.png");
	background-size: contain;
}
#sec-technostructure .sec-first-content .right-col {
	width: 580px;
	margin-left: auto;
	padding-top: 100px;
	padding-left: 40px;
	padding-bottom: 100px;
}

#sec-technostructure-movie {
	margin-top: 50px;
}
#sec-technostructure-movie .ttl-square {
	position: relative;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	padding-bottom: 5px;
	border-bottom: 1px solid #fff;
}
#sec-technostructure-movie .ttl-square > span {
	display: inline-block;
	vertical-align: middle;
}
#sec-technostructure-movie .ttl-square::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #fff;
	margin-right: 4px;
	vertical-align: middle;
}
#sec-technostructure-movie .content-row {
	justify-content: space-between;
	align-items: flex-start;
}
#sec-technostructure-movie .content-row .col-half {
	width: 48%;
}
#sec-technostructure-movie .content-row .col .ttl-box {
}
#sec-technostructure-movie .content-row .col .ttl {
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
}

.cta-box {
	position: relative;
	top: 100px;
	margin-bottom: 100px;
	border: 6px solid #E6EAF0;
	background: #fff no-repeat left top;
	background-image: url("./images/bg_cta_01.png");
	background-size: cover;
}
.cta-box .box-inner {
	padding: 45px 50px 50px;
}
.cta-box .ttl-box {
	margin-bottom: 30px;
}
.cta-box .ttl {
	font-size: 2.2rem;
	font-weight: bold;
	color: #023893;
}
.cta-box p {
	font-size: 1.4rem;
	color: #222222;
}
.cta-box .btn {
	position: relative;
	padding: 15px 80px 15px 20px;
	font-size: 2rem;
	color: #fff;
	background-color: #023893;
	border-radius: 50px;
}
.cta-box .btn:hover {
	text-decoration: none;
}
.cta-box .btn::after {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto 0;
	width: 40px;
	height: 40px;
	background: transparent no-repeat top right;
	background-image: url("./images/c_arrow_circle_blue_02.svg");
	background-size: contain;
}

#sec-builders {
	margin-top: 100px;
	padding: 100px 0;
}
#sec-builders .sec-ttl {
	text-align: center;
}
#builders-map-wrap {
	margin-bottom: 20px;
}
#builders-map {
	position: relative;
	width: 100%;
	height: 500px;
	background: transparent no-repeat center top;
	background-image: url("./images/builders_map_01_pc.png");
	background-size: auto;
}
#builders-map .pin {
	position: absolute;
	text-decoration: none;
	z-index: 1;
}
#builders-map .pin-taikei-j {
	top: 266px;
	left: 792px;
}
#builders-map .pin-hirotaka-plushouse {
	top: 282px;
	left: 712px;
}
#builders-map .pin-aoyamahome {
	top: 318px;
	left: 660px;
}
#builders-map .pin-kurita {
	top: 322px;
	left: 762px;
}
#builders-map .pin-home-daiei {
	top: 362px;
	left: 698px;
}
#builders-map .pin-mohara-kensetsu {
	top: 50px;
	left: 598px;
}
#builders-map .pin-guran {
	top: 200px;
	left: 165px;
}
#builders-map .pin-yamazaki-k {
	top: 200px;
	left: 195px;
}
#builders-map .pin-hasimotogroup {
	top: 198px;
	left: 484px;
}
#builders-map .pin-arceight {
	top: 228px;
	left: 470px;
}
#builders-map .pin-katayama-koumuten {
	top: 250px;
	left: 420px;
}
#builders-map .pin-izawa-group {
	top: 292px;
	left: 350px;
}
#builders-map .pin .map-info-box {
	display: none;
	position: absolute;
	top: -55px;
	left: -35px;
	padding: 8px 30px 8px 10px;
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 0 5px rgba(30,30,30,0.3);
	z-index: 2;
}
#builders-map .pin:hover {
	z-index: 5;
}
#builders-map .pin:hover .map-info-box {
	display: block;
}
#builders-map .pin:hover::before {
	content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top: 10px solid #fff;
	opacity: 1;
	z-index: 3;
}

#builders-map .pin .map-info-box::after {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	right: 8px;
	margin: auto 0;
	width: 12px;
	height: 12px;
	background: transparent no-repeat center center;
	background-image: url("./images/c_arrow_blue_02.svg");
	background-size: contain;
}

#builders-map .pin .map-info-box .builder-name {
	display: inline-block;
	white-space: nowrap;
}


.builders-list .list-item {
	padding: 20px;
	background-color: #F4F4F0;
}
.builders-list .list-item + .list-item {
	margin-top: 30px;
}
.builders-list .list-item .img-col {
	width: 300px;
}
.builders-list .list-item .txt-col {
	width: 640px;
}
.builders-list .list-item .serv-col {
	display: none;
	width: 100%;
}
.builders-list .list-item .txt-col .builder-meta {
	margin-bottom: 10px;
}
.builders-list .list-item .txt-col .builder-meta .city {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 20px;
	background-color: #fff;
	color: #023893;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1; 
}
.builders-list .list-item .txt-col .builder-name .ttl {
	margin-bottom: 10px;
	font-size: 2.2rem;
	font-weight: bold;
}
.builder-serv-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #D0D0D0;
	margin-top: 10px;
	padding-top: 10px;
}
.builder-serv-container .serv-list {
	width: 450px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.builder-serv-container .to-builder {
	width: 175px;
}
.builder-serv-container .to-builder a {
	box-sizing: border-box;
	position: relative;
	display: block;
	height: 90px;
	padding-top: 26px;
	padding-left: 15px;
	background-color: #fff;
	font-weight: bold;
	line-height: 1.25;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
}
.builder-serv-container .to-builder .arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 100%;
	background: #023893 no-repeat right 10px center;
	background-image: url("./images/c_arrow_right_white_01.svg");
	background-size: auto;
	z-index: 2;
}


#sec-contact .ttl-band {
	padding: 90px 0 120px;
	background-color: #001B5D;
	color: #fff;
}
#sec-contact .sec-ttl {
	text-align: center!important;
}

#sec-contact .form-wrap {
	position: relative;
	top: -80px;
	margin-bottom: 40px;
	padding: 40px; 
	background-color: #fff;
	border: 6px solid #E6EAF0;
	z-index: 2;
}

#sec-contact .form-wrap .form-part {
	padding: 15px 20px 20px;
	background-color: #F8F8F8;
	border-radius: 10px;
}
#sec-contact .form-wrap .form-part + .form-part {
	margin-top: 20px;
}
#sec-contact .form-wrap .form-part .form-ttl {
	margin-bottom: 10px;
}

#sec-contact .form-wrap .form-part-a .input-part {
	display: inline-block;
	margin: 10px 5px;
	padding-left: 35px;
	vertical-align: middle;
}
#sec-contact .form-wrap .form-part-b .input-part {
	display: block;
	margin: 10px 5px;
	padding-left: 35px;
}

.form-ttl .txt {
	display: inline-block;
	font-weight: bold;
	vertical-align: middle;
}
.form-ttl .is-required {
	display: inline-block;
	margin-right: 5px;
	padding: 2px 10px;
	font-size: 1.2rem;
	line-height: 1.5;
	font-weight: bold;
	color: #fff;
	background-color: #F57373;
	border-radius: 20px;
	vertical-align: middle;
}

#sec-contact .form-item {
	margin-top: 30px;
	text-align: center;
}
#sec-contact .btn-box {
	margin-top: 40px;
}
#sec-contact .btn-box input[type="submit"] {
	display: block;
	width: 420px;
	padding: 20px 0;
	margin: 0 auto;
	font-size: 2.2rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
	border: 0;
	border-radius: 50px;
	background-color: #023893;
}

#footer {
	display: block;
	padding: 50px 0;
	color: #fff;
	background-color: #001B5D;
}

#footer .content-width {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

#f-left {
	text-align: left;
}
#f-left .f-link {
	margin-top: 10px;
	font-size: 1.4rem;
}
#f-right {
	margin-top: 30px;
	text-align: right;
}

#copyright {
	font-size: 1.2rem;
	line-height: 1.5;
}

@media screen and (min-width: 768px) {
	a.tel,
	.tel a {
		pointer-events: none;
	}
}

@media screen and (min-width: 1001px) {
	br.pc-only {
		display: inline!important;
	}
	br.sp-only {
		display: none!important;
	}
}

@media screen and (max-width: 1096px) {
#mv .corporate-group-list .corprate-group-item {
	padding: 15px 13px ;
}
}

@media screen and (max-width: 1079px) {
	#mv .corporate-group-menu {
		top: 40px;
	}
	#mv .corporate-group-list {
		justify-content: center;
	}
	#mv .corporate-group-list .corprate-group-item {
		padding: 10px 10px;
		width: 179px;
	}
	#mv .corporate-group-list .corprate-group-item .img-box {
		width: auto;
		height: auto;
	}
	#band {
		height: 260px;
	}
}

@media screen and (max-width: 1000px) {
	#band {
		height: 410px;
	}
}

@media screen and (max-width: 859px) {
	#mv .corporate-group-list .corprate-group-item {
		height: 188px;
	}
	#mv .corporate-group-list .corprate-group-item:nth-child(4) {
		border-top: 1px solid #f4f4f0;
	}
	#mv .corporate-group-list .corprate-group-item:nth-child(4n) {
		border-right: 1px solid #f4f4f0;
	}
	#mv .corporate-group-list .corprate-group-item:nth-child(3n) {
		border-right: none;
	}
	#mv .corporate-group-list .corprate-group-item .builder-meta {
		flex-direction: column;
	}
		#mv .corporate-group-list .corprate-group-item:nth-child(11) .builder-meta {
			flex-direction: unset;
		}
	}

	@media screen and (max-width: 855px) {
		#band {
			height: 680px;
		}
	}

@media screen and (max-width: 1000px) {
	.left,
	.right {
		float: none;
	}
	.content-width {
		box-sizing: border-box;
		max-width: 640px;
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
	.iframe-wrap, 
	.iframe-wrap iframe {
		width: 100%;
	}
	body {
		min-width: 640px;
		text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%; /* Safari */
	}
	body,
	input,
	textarea {
		font-size: 1.9rem;
	}
	br.pc-only {
		display: none!important;
	}
	br.sp-only {
		display: inline!important;
	}
	.sec-ttl {
		font-size: 3rem;
		text-align: left!important;
	}
	.ttl-box {
		margin-bottom: 30px;
	}

	#mv {
		height: 520px;
		background-position: top left -105px;
		padding: 40px 20px 20px;
	}
	#mv-head-content {
		justify-content: center;
	}
	#h-logo {
		width: 130px;
		height: 130px;
	}
	#h-logo img {
		width: 130px;
		height: 130px;
	}
	#mv .catchphrase-box {
		padding-top: 5px;
		padding-left: 30px;
	}
	#mv .catchphrase-box .txt-primary {
		font-size: 2.8rem;
	}
	#mv .catchphrase-box .txt-secondary {
		font-size: 2.2rem;
	}

	#page-nav .page-links {
		display: block;
	}
	#page-nav .page-links .link-item {
		margin: 15px 0;
	}
	#page-nav .page-links .link-item + .link-item::before {
		display: none;
	}
	#page-nav .page-links .link-item a {
		font-size: 2rem;
		padding-left: 0;
	}

	#sec-about {
		padding: 50px 0 30px;
	}

	#sec-about-affliation-store {
		margin-top: 40px;
		padding: 30px 40px 40px; 
	}
	#sec-about-affliation-store .ttl-square,
	#sec-technostructure-movie .ttl-square {
		font-size: 2rem;
	}
	#sec-about-affliation-store .store-list li {
		width: 250px;
	}

	#sec-strengths {
		padding-top: 40px; 
	}
	#sec-strengths .num-ttl .num {
		font-size: 40px;
	}
	#sec-strengths .num-ttl .ttl-txt {
		line-height: 40px;
	}

	#sec-technostructure .sec-inner .first-img {
		top: -100px;
		left: 5%;
		max-width: 90%;
	}
	#sec-technostructure .sec-inner .first-img .inner {
		width: 100%;
		height: 240px;
		padding-bottom: 0;
		background-size: 100% auto;
	}
	#sec-technostructure .sec-first-content .right-col {
		width: 100%;
		padding: 200px 0 0;
	}
	#sec-technostructure-movie {
		margin-top: 60px;
	}

	#sec-technostructure-movie .content-row {
		display: block;
	}
	#sec-technostructure-movie .content-row .col {
		width: 100%;
		margin-top: 60px;
	}
	#sec-technostructure-movie .content-row .col .ttl {
		font-size: 2.4rem;
	}

	.cta-box {
		top: 80px;
	}
	.cta-box .box-inner {
		padding: 25px;
	}

	#sec-builders {
		padding: 50px 0 80px;
	}
	#sec-builders .sec-ttl {
		font-size: 2.7rem;
	}

	#builders-map {
		height: 350px;
		background-size: contain;
	}
	#builders-map .pin {
		max-width: 24px;;
	}

	#builders-map .pin-taikei-j {
		top: 168px;
		left: 488px;
	}
	#builders-map .pin-hirotaka-plushouse {
		top: 180px;
		left: 440px;
	}
	#builders-map .pin-aoyamahome {
		top: 202px;
		left: 402px;
	}
	#builders-map .pin-kurita {
		top: 206px;
		left: 466px;
	}
	#builders-map .pin-home-daiei {
		top: 228px;
		left: 428px;
	}
	#builders-map .pin-mohara-kensetsu {
		top: 30px;
		left: 362px;
	}
	#builders-map .pin-guran {
		top: 126px;
		left: 84px;
	}
	#builders-map .pin-yamazaki-k {
		top: 126px;
		left: 102px;
	}
	#builders-map .pin-hasimotogroup {
		top: 130px;
		left: 292px;
	}
	#builders-map .pin-arceight {
		top: 144px;
		left: 280px;
	}
	#builders-map .pin-katayama-koumuten {
		top: 158px;
		left: 248px;
	}
	#builders-map .pin-izawa-group {
		top: 188px;
		left: 200px;
	}
	#builders-map .pin:hover::before, 
	#builders-map .pin:hover .map-info-box {
		display: none;
	}

	.builders-list .list-item {
		padding: 15px 10px;
	}
	.builders-list .list-item .content-row {
		display: block;
		overflow: hidden;
	}
	.builders-list .list-item .img-col {
		float: left;
		width: 200px;
	}
	.builders-list .list-item .txt-col {
		float: left;
		padding-left: 12px;
		width: 380px;
		font-size: 1.7rem;
	}
	.builders-list .list-item .txt-col .builder-name .ttl {
		font-size: 1.9rem;
	}
	.builders-list .list-item .txt-col .builder-serv-container {
		display: none;
	}

	.builders-list .list-item .serv-col {
		clear: both;
		display: block;
		padding-top: 12px;
	}
	.builder-serv-container-pc .serv-list {
		width: 100%;
	}
	.builder-serv-container-pc .serv-list li {
		width: 16%;
	}
	.builder-serv-container-pc .to-builder {
		margin-top: 5px;
		width: 100%;
	}
	.builder-serv-container-pc .to-builder a {
		height: auto;
		padding: 15px;
	}
	.builder-serv-container-pc .to-builder .txt br {
		display: none;
	}

	.builder-serv-container-sp {
		align-items: flex-start;
		font-size: 0;
		margin-top: 0;
		padding-top: 12px;
	}
	.builder-serv-container-sp .serv-list {
		width: 420px;
	}
	.builder-serv-container-sp .serv-list li {
		width: 15%;
	}
	.builder-serv-container-sp .to-builder {
		width: 150px;
	}
	.builder-serv-container-sp .to-builder a {
		padding-top: 20px;
		padding-left: 10px;
		padding-right: 10px;
		height: 81px;
		font-size: 1.6rem;
	}

	.builder-serv-container .to-builder .arrow {
		width: 20px;
		background-position: right 5px center;
	}

	#sec-contact .ttl-band {
		padding-top: 70px 0 120px;
	}

	#sec-contact .form-wrap {
		padding: 20px 20px 40px;
	}

	#footer .content-width {
		display: block;
	}
	#f-logo .img-box {
		text-align: left;
	}
}