@charset "UTF-8";

/* =====================================================
1.0 - Foundation
===================================================== */

/*
1.1 - Reset
-----------------------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/*
1.2 - Base
-----------------------------------------------------*/

*,
:before,
:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  height: 100%;
  color: #1a1b1f;
  text-rendering: optimizeLegibility;
  font-family: YuGothic,'Yu Gothic','Yu Gothic UI','ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo,sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

.link-tel a {
  color: #1a1b1f;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.spbr { display: none; }
.pcbr { display: inline; }

/* =====================================================
2.0 - Layout
===================================================== */

/*
2.1 - header
-----------------------------------------------------*/
/*
.l-header {
  position: relative;
  z-index: 1;
}
*/
/*header fixed*/
.l-header{
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
}

.l-header-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

.l-header-wrap.l-container {
  width: 100%;
  padding: 0 15px;
}

.l-header__logo {
  width: 230px;
  padding-top: 32px;
  padding-bottom: 32px;
}

/* glonav */

.globalnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.globalnav-list li:not(:last-of-type) {
  margin-right: 32px;
}

.globalnav-list li:last-of-type {
  margin-right: 4px;
}

.globalnav__link {
  color: #000000;
  font-weight: bold;
}

.original_bland {
  position: relative;
}
.original_bland:hover {
  cursor: pointer;
}
.original_bland ul.submenu {
  display: none;
}
.original_bland:hover ul.submenu {
  display: block;
  position: absolute;
  top: 1.5em;
  left: 0;
  width: 100%;
  background: #fff;
  border: solid 1px #eee;
}
.original_bland:hover ul.submenu li a {
  display: inline-block;
  padding: 0.5em 1.0em;
  box-sizing: border-box;
}


/* Button */

.button-hamburger {
  position: absolute;
  top: 0;
  right: 2.5%;
  bottom: 0;
  z-index: 1;
  width: 30px;
  height: 30px;
  margin: auto 0;
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  /* Chrome, Safari, Opera, Android */
  -moz-appearance: none;
  /* Firefox */
  appearance: none;
  /* IE非対応 */
}

.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 25px;
  height: 3px;
  margin: auto;
  border-radius: 4px;
  background-color: #263238;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.hamburger::after,
.hamburger::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: inherit;
  content: '';
}

.hamburger::before {
  top: -10px;
}

.hamburger::after {
  top: 10px;
}

.is-open .hamburger {
  background-color: transparent;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.is-open .hamburger::before {
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}

.is-open .hamburger::after {
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
}

/*
2.2 -footer
-----------------------------------------------------*/

.l-footer {
  padding-top: 60px;
  padding-bottom: 120px;
}

.l-footer-fixed {
  position: fixed;
  background: #fff;
  padding: 15px 0;
  height: 92px;
  width: 100vw;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #cbcbcb;
}

.l-footer-fixed .footer-fix__list {
  width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* .l-footer-fixed .footer-fix__list li:nth-of-type(4) {
  margin-right: 25px;
  margin-left: -45px;
} */

.l-footer-fixed .footer-fix__list__link {
  display: block;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #000000;
}

.l-footer-fixed .footer-fix__list__link.-contact:before {
  content: "";
  display: inline-block;
  background: url("../img/ico-mail.svg") no-repeat;
  background-size: contain;
  width: 23px;
  height: 17px;
  margin-right: 19px;
}

.l-footer-fixed .footer-fix__list__link.-izumiya {
  position: relative;
}

.l-footer-fixed .footer-fix__list__link.-izumiya::after {
  content: "";
  display: block;
  background: url("../img/ico-linkblank.png") no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l-footer-fixed .footer-fix__list .btn-blue {
  background: #0068b7;
  padding: 1em 0;
  border-radius: 5px;
  width: 270px;
}

.l-footer-fixed .footer-fix__list .btn-blue a {
  color: #fff;
  text-align: center;
}

.l-footer__logo {
  display: block;
  width: 230px;
  margin-bottom: 16px;
}

.l-footer__address {
  color: #122b3e;
  font-size: 14px;
  margin-bottom: 20px;
}

.l-footer__address__office {
  font-weight: bold;
  margin-bottom: 10px;
}

.l-footer__address__address {
  display: inline-block;
}

.l-footer__address .map-link {
  color: #0068b7;
  display: inline-block;
}

.l-footer__address .-mb {
  margin-bottom: 10px;
}

.l-footer .footer-nav__list {
  margin-bottom: 80px;
  width: 620px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 20px;
  padding-left: 80px;
  padding-right: 27px;
}

.l-footer .footer-nav__list li {
  margin-bottom: 8px;
}

.l-footer .footer-nav__list__link {
  font-weight: bold;
  color: #000;
  font-size: 14px;
}

.l-footer .footer-nav__child {
  padding-left: 1em;
}

.l-footer .footer-nav__child__link {
  color: #000;
  font-size: 14px;
}

.copyright {
  font-size: 14px;
  text-align: right;
}

/*
2.3 - main
-----------------------------------------------------*/

.l-container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.l-container.-narrow {
  max-width: 960px;
}

.l-container.-wide {
  padding-top: 96px;
  max-width: 1400px;
}

/* =====================================================
3.0 - Object
===================================================== */

/*
3.1 - component
-----------------------------------------------------*/

.c-heading-primary {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #2e2241;
}

.c-heading-primary .-subheading {
  display: block;
  font-family: 'Crimson Text', serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #0068b7;
  letter-spacing: .2em;
}

.c-heading-primary.-white {
  color: #fff;
}

.c-heading-primary.-white .-subheading {
  color: #fff;
}

.c-heading-primary.-white .-subheading.-op_5 {
  opacity: 0.5;
}

.c-heading-primary.-small {
  font-size: 30px;
}

.c-heading-secondary {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 12px;
}

.c-heading-secondary .-subheading {
  display: block;
  font-family: 'Crimson Text', serif;
  text-transform: uppercase;
  font-size: 16px;
  opacity: .5;
  margin-top: 8px;
}

.c-btn-readmore {
  background-color: #0068b7;
  max-width: 280px;
}

.c-btn-readmore.-nobg {
  background-color: transparent;
  max-width: 175px;
}

.c-btn-readmore.-border-w {
  border: 1px solid #fff;
  background-color: transparent;
}

.c-btn-readmore__link {
  display: block;
  position: relative;
  font-family: 'Crimson Text', serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  padding: 20px;
  text-align: center;
  color: #fff;
}

.-nobg .c-btn-readmore__link {
  text-align: left;
  padding: 0;
}

.c-btn-readmore__link::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/icon-link-arrow.svg") no-repeat;
  background-size: contain;
  width: 40px;
  height: 6px;
  top: 50%;
  right: 1.7em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-btn-readmore.-contact {
  background: #fff;
  width: 388px;
  max-width: 388px;
}

.c-btn-readmore.-contact .c-btn-readmore__link {
  color: #122b3e;
}

.c-btn-readmore.-contact .c-btn-readmore__link::after {
  background: url("../img/icon-link-arrow-n.svg") no-repeat;
  background-size: contain;
  right: 0.7em;
}

.c-btn-link {
  background: #f5f3f1;
  color: #0068b7;
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.c-btn-link::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/icon-link-arrow-b.svg") no-repeat;
  background-size: contain;
  width: 40px;
  height: 6px;
  top: 50%;
  right: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 4px;
  margin-bottom: 32px;
}

.c-breadcrumbs li:not(:last-of-type) {
  margin-right: 10px;
}

.c-breadcrumbs li:not(:first-of-type):before {
  content: "-";
}

.c-breadcrumbs__link {
  color: #000;
  font-size: 14px;
}

.c-low-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.c-low-menu li:not(:first-of-type)::before {
  content: "/";
  margin-right: 1em;
  margin-left: 1em;
}

.c-low-menu__link {
  color: #2e2241;
  font-weight: bold;
}

.c-iznav {
  font-family: "Impact", sans-serif;
}

.c-pagenation {
  text-align: center;
}

.c-pagenation li {
  display: inline-block;
  margin-right: 8px;
}

.c-pagenation__link {
  display: block;
  background: #0068b7;
  border: 1px solid transparent;
  width: 40px;
  height: 40px;
  color: #fff;
  padding: 8px;
  font-size: 18px;
}

.c-pagenation__link:hover {
  background: #fff;
  border: 1px solid #0068b7;
  color: #0068b7;
}

.c-pagenation .active.c-pagenation__link {
  background: #fff;
  border: 1px solid #0068b7;
  color: #0068b7;
}

.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi a {
  display: inline-block;
  background: #0068b7;
  border: 1px solid transparent;
  width: 40px;
  height: 40px;
  color: #fff;
  padding: 8px;
  font-size: 18px;
  vertical-align: middle;
}
.wp-pagenavi a:hover {
  background: #fff;
  border: 1px solid #0068b7;
  color: #0068b7;
}
.wp-pagenavi span.current,
.wp-pagenavi span.extend {
  display: inline-block;
  background: #fff;
  border: 1px solid #0068b7;
  width: 40px;
  height: 40px;
  color: #0068b7;
  padding: 8px;
  font-size: 18px;
  vertical-align: middle;
}
.wp-pagenavi span.extend {
  border: none;
}
.wp-pagenavi a, .wp-pagenavi span {
  padding: 6px !important;
}





/*
3.2 - project
-----------------------------------------------------*/

/* common */

.p-iznav {
  background: url("../img/bg-iznav.png") no-repeat;
  background-size: cover;
  padding: 110px 0;
}

.p-iznav .c-heading-secondary {
  font-size: 28px;
  margin-bottom: 18px;
  letter-spacing: normal;
}

.p-iznav .c-iznav {
  font-size: 57px;
  margin-right: 20px;
}

.p-iznav__text {
  color: #fff;
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 50px;
}

.p-iznav .c-btn-readmore {
  margin: 0 auto;
  max-width: 320px;
}

.p-iznav .c-btn-readmore__link {
  text-transform: none;
  letter-spacing: 0;
}

.p-originbland {
  padding-top: 100px;
}

.p-originbland__heading {
  color: #0068b7;
  font-family: 'Crimson Text', serif;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 64px;
  text-align: center;
}

.p-originbland__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 120px;
}

.p-originbland__list li {
  width: calc(100%/3 - 30px);
}

/* p-footer-contact */

.p-footer-contact {
  background: #122b3e;
  padding: 72px 0 128px;
}

.p-footer-contact .c-heading-primary {
  margin-bottom: 22px;
}

.p-footer-contact__text {
  color: #fff;
  margin-bottom: 38px;
}

.p-footer-contact__text.time {
  margin-bottom: 0;
}

.p-footer-contact__contact {
  font-size: 0;
  text-align: center;
}

.p-footer-contact__contact .-box {
  display: inline-block;
  width: 380px;
  font-size: medium;
  vertical-align: middle;
}

.p-footer-contact .c-btn-readmore {
  display: inline-block;
  vertical-align: middle;
}

.p-footer-contact .c-btn-readmore__link {
  font-size: 20px;
  letter-spacing: normal;
}

.p-footer-contact .link-tel {
  color: #fff;
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 44px;
  font-weight: 500;
}

.p-footer-contact .link-tel:before {
  content: "";
  display: inline-block;
  background: url("../img/ico-tel.svg") no-repeat;
  background-size: contain;
  width: 31px;
  height: 31px;
}

.p-footer-contact .link-tel a {
  color: #fff;
}

/* top */

.p-top-mv {
  margin-bottom: 170px;
}

.p-top-sec1 {
  margin-bottom: 132px;
}

.p-top-sec1 > p {
  color: #2e2241;
}

.p-top-sec1 .c-heading-primary {
  margin-bottom: 32px;
}

.p-top-sec1 .c-heading-primary .-subheading {
  letter-spacing: 0.2em;
}

.p-top-sec1 .bg-half {
  position: relative;
}

.p-top-sec1 .bg-half.-mb-wide {
  margin-bottom: 280px;
}

.p-top-sec1 .bg-half:after {
  content: "";
  display: block;
  position: absolute;
  width: 86.5vw;
  min-height: 300px;
  height: calc(100% + 30px);
  z-index: -1;
  top: 30px;
  right: 0;
  background: url("../img/top/bg-top-section1.png");
}

.p-top-sec1__textbox {
  position: relative;
  padding-left: 4.16667vw;
}

.p-top-sec1__imgbox {
  position: relative;
  margin-top: -14px;
  width: 83%;
}

.p-top-sec1__img.-second {
  position: absolute;
  width: 300px;
  width: 15.625vw;
  left: 100%;
  top: 26.66667vw;
  -webkit-transform: translate(-85%, -50%);
  transform: translate(-85%, -50%);
}

.p-top-sec1__message {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 32px;
}

.p-top-sec1__text {
  width: 65%;
  line-height: 2.25;
  margin-bottom: 60px;
}

.p-top-sec1__article {
  position: relative;
  color: #fff;
  margin-bottom: 82px;
}

.p-top-sec1__article.-efut {
  margin-bottom: 100px;
}

.p-top-sec1__article__textbox {
  position: absolute;
  background: #2e2241;
  width: 530px;
  min-height: 340px;
  top: 50%;
  left: 51%;
  padding: 35px 55px;
  -webkit-transform: translateY(-10%);
  transform: translateY(-10%);
}

.-reverse .p-top-sec1__article__textbox {
  left: auto;
  right: 51%;
}

.p-top-sec1__article__textbox.-bg-bl {
  background: #0068b7;
}

.p-top-sec1__article__textbox.-forsale {
  padding: 42px 46px;
}

.p-top-sec1__article__imgbox {
  width: 66.66667vw;
  margin-right: auto;
  margin-left: 0;
}

.-reverse .p-top-sec1__article__imgbox {
  margin-right: 0;
  margin-left: auto;
}

.p-top-sec1__article__message {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 26px;
}

.p-top-sec1__article__text {
  line-height: 1.75;
  margin-bottom: 32px;
}

.p-top-works {
  text-align: center;
  margin-bottom: 110px;
}

.p-top-works .c-heading-primary {
  margin-bottom: 32px;
}

.p-top-works .c-btn-readmore {
  margin: 0 auto;
}

.p-top-works .c-btn-readmore__link {
  font-size: 18px;
}

.p-top-works .c-btn-link {
  width: 180px;
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: .5em;
  padding-left: 1.5em;
  text-align: left;
  letter-spacing: 0.2em;
}

.p-top-works__text {
  margin-bottom: 50px;
}

.p-top-works__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto 88px;
}
.p-top-works__list li {
  width: 23.34%;
}
.p-top-works__list li img {
  width: 100%;
}

.p-top-works__list-inner {
  /* width: 280px; */
  width: 100%;
  position: relative;
}

/* low  common */

.p-low-mv {
  position: relative;
  min-height: 240px;
}

.p-low-mv .c-low-heading {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.p-low-mv .c-low-heading .-subheading {
  display: block;
  font-family: 'Crimson Text', serif;
  font-size: 20px;
  text-transform: uppercase;
  opacity: .5;
}

.p-low-mv .c-low-heading.-white {
  color: #fff;
}

.p-low-mv.-company {
  background: url("../img/company/bg-company-mv.jpg") no-repeat;
  background-size: cover;
}

.p-low-mv.-housebuilding {
  background: url("../img/housebuilding/bg-housebuilding-mv.png") no-repeat;
  background-size: cover;
}

.p-low-mv.-worksdetail {
  background: url("../img/works/bg-worksdetail-mv.jpg") no-repeat;
  background-size: cover;
}

.p-low-mv.-recruit {
  background: url("../img/recruit/bg-recruit-mv.jpg") no-repeat;
  background-size: cover;
}

.p-low-mv.-contact {
  background: url("../img/contact/bg-contact-mv.jpg") no-repeat;
  background-size: cover;
}

.p-low-mv.-genecon {
  background: url("../img/genecon/mv01.jpg") no-repeat;
  background-size: cover;
}

/* company */

.p-company__text {
  color: #2e2241;
  line-height: 2.25;
}

.p-company-message .bg-half::after {
  height: calc(100% + 200px);
}

.p-company-message .u-grid-2 {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 150px;
}

.p-company-message__textbox {
  /* width: 37.91667vw;
  max-width: 520px; */
  width: 80%;
  max-width: 100%;
}

.p-company-message__textbox .c-heading-primary {
  margin-bottom: 20px;
}

.p-company-message__imgbox {
  width: 30.25vw;
  padding-right: 100px;
}

.p-company-message__name {
  height: 26px;
  width: auto;
}

.p-company-phil {
  margin-bottom: 180px;
}

.p-company-phil .c-heading-primary {
  margin-bottom: 12px;
}

.p-company-phil__textbox {
  background: #2e2241;
  min-width: 600px;
  width: 31.25vw;
  padding: 53px 80px 86px 96px;
  margin-top: -50px;
  margin-right: 100px;
}

.p-company-phil__text {
  color: #fff;
  line-height: 2.25;
}

.p-company-phil__text.-ffmin {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.p-company-phil__text.-mbwide {
  margin-bottom: 36px;
}

.p-company-phil__want {
  padding-top: 100px;
}

.p-company-phil__want .p-company-phil__text {
  margin-bottom: 48px;
}

.p-company-phil__want .p-company-phil__text.-ffmin {
  margin-bottom: 12px;
}

.p-company-phil__bg {
  position: relative;
}

.p-company-phil__bg::after {
  content: "";
  position: absolute;
  display: block;
  background: url("../img/company/bg-company-phil.png") no-repeat;
  width: 81.25vw;
  max-width: 1560px;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}

.p-company-outline .c-heading-primary {
  margin-bottom: 20px;
}

.p-company-outline .maptitle {
  letter-spacing: 0.2em;
}

.p-company-outline__img {
  width: 610px;
  max-width: 95%;
  margin: 0 auto;
  margin-bottom: 40px;
}

.p-company-outline__list {
  margin-bottom: 64px;
}

.p-company-outline__list dt,
.p-company-outline__list dd {
  padding: 28px 0;
}

.p-company-outline__list dt {
  width: 30.20833%;
  font-weight: bold;
  color: #0068b7;
  padding-left: 122px;
}

.p-company-outline__list dd {
  width: 69.79167%;
  padding-left: 52px;
}

.p-company-outline__list dd .-mb {
  margin-bottom: 20px;
}

.p-company-outline__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e5e5e5;
}

.p-company-outline__list__item.-bottom {
  border-top: 1px solid #e5e5e5;
}

.p-company-outline__map {
  position: relative;
  padding-bottom: 30.25%;
  padding-top: 30px;
  margin-bottom: 112px;
  height: 0;
  overflow: hidden;
}

.p-company-outline__map iframe,
.p-company-outline__map object,
.p-company-outline__map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-company-outline__map:last-of-type {
  margin-bottom: 60px;
}

.p-company-privacy {
  margin-bottom: 120px;
}

.p-company-privacy .c-heading-primary {
  margin-bottom: 30px;
}

.p-company-privacy .c-heading-primary .-subheading {
  letter-spacing: 0.1em;
}

.p-company-privacy .p-company__text {
  margin-bottom: 32px;
}

.p-company-privacy__title {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #0068b7;
  border-left: 5px solid #0068b7;
  padding: 0px 17px;
  margin-bottom: 30px;
  margin-left: 6px;
}

.p-company-privacy__list dt {
  font-weight: bold;
  color: #0068b7;
  font-size: 18px;
}

.p-company-privacy__list dd {
  margin-bottom: 42px;
}

.p-company-privacy__text {
  margin-bottom: 20px;
}

/* housebuilding */

.p-house .c-low-menu {
  margin-bottom: 110px;
}

.p-house__message {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0068b7;
  line-height: 1.7;
}

.p-house-step .p-house__message {
  margin-bottom: 16px;
}

.p-house__message.-fzlg {
  font-size: 22px;
  /* font-size: 5.75vw; */
}

.p-house__text {
  font-size: 14px;
  line-height: 1.71429;
  color: #2e2241;
}

.p-house__text.-mbmid {
  margin-bottom: 12px;
}

.p-house-free .l-container.-narrow {
  width: 930px;
}

.p-house-free__bg {
  background: url("../img/bg-boximage.png") repeat;
}

.p-house-free__contents {
  padding-bottom: 50px;
  margin-bottom: 60px;
}

.p-house-free__heading {
  position: relative;
  margin: 0 auto 0;
  width: 230px;
  top: -88px;
}

.p-house-free__message {
  margin-top: -98px;
  margin-bottom: 20px;
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.61538;
  text-align: center;
  color: #2e2241;
}

.p-house-free__text {
  letter-spacing: 0.05em;
  line-height: 2.125;
  color: #2e2241;
}

.p-house-free__text.-mb {
  margin-bottom: 40px;
}

.p-house-free__text-wrap {
  max-width: 700px;
  position: absolute;
}

.-bigdream .p-house-free__text-wrap {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.-dream .p-house-free__text-wrap {
  top: 80px;
}

.-bigdream .p-house-free__picture {
  max-width: 50%;
  min-width: 850px;
  position: relative;
  top: 0;
  right: 30%;
  width: 100%;
}

.p-house-free__picture.-dream {
  width: 100vw;
}

.p-house-free__article .c-heading-primary {
  font-size: 35px;
}

.p-house-free__article .l-container {
  position: relative;
}

.p-house-step {
  margin-bottom: 120px;
  margin-top: -67px;
}

.p-house-step .l-container {
  padding: 40px;
}

.p-house-step .c-heading-primary {
  margin-top: -65px;
  margin-bottom: 12px;
}

.p-house-step__textbox {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
  color: #2e2241;
}

.p-house-step__imgbox {
  -ms-flex-preferred-size: 35%;
  flex-basis: 35%;
  margin-right: 30px;
  width: 100%;
}

.p-house-step__list {
  counter-reset: num-counter;
}

.p-house-step__list > li {
  margin-bottom: 60px;
}

.p-house-step__list > li.-mbnarrow {
  margin-bottom: 46px;
}

.p-house-step__title {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.61538;
  margin-bottom: 8px;
}

.p-house-step__title::before {
  content: counter(num-counter, decimal-leading-zero) ".";
  counter-increment: num-counter;
  font-size: 30px;
}

.p-house-step__text {
  font-size: 14px;
  line-height: 1.71429;
}

.p-house-step__text.-mbnarrow {
  margin-bottom: 16px;
}

.p-house-step5__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-house-step5__list li {
  position: relative;
  background: #fff;
  padding: 20px 10px;
  width: 240px;
  margin-bottom: 50px;
}

.p-house-step5__list li:not(:last-of-type):after {
  content: "";
  display: block;
  background: url("../img/icon-link-arrow-b.svg") no-repeat;
  background-size: contain;
  width: 51px;
  height: 13px;
  position: absolute;
  left: 98%;
  bottom: 25px;
}

.p-house-step5__list.-precut {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
}

.p-house-step5__list.-precut li {
  font-weight: bold;
  padding: 10px;
  text-align: center;
  margin-bottom: 36px;
  color: #2e2241;
}

.p-house-step5__list.-precut li:not(:nth-of-type(4n)) {
  margin-right: 50px;
}

.p-house-step5__list__title {
  color: #0068b7;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.3em;
  margin-bottom: 4px;
}

.p-house-step5__list__title + p {
  color: #2e2241;
  line-height: 1.75;
}

.p-house-quality {
  margin-bottom: 150px;
}

.p-house-quality .bg-gray {
  background: #eeeeee;
}

.p-house-quality__article {
  margin-bottom: 60px;
}

.p-house-quality__inner {
  padding: 0 40px;
  height: 100%;
}

.p-house-quality__textbox {
  width: 132%;
  margin-right: 40px;
}

.p-house-quality__heading {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  background: #0068b7;
  padding: 0 40px;
  margin-bottom: 36px;
}

.p-house-quality__title {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #2e2241;
  border-bottom: 1px solid #2e2241;
  margin-bottom: 22px;
}

.p-house-quality__title.-secondary {
  background: #dad9dc;
  padding: 4px 0 4px 1em;
  font-size: 18px;
  font-family: YuGothic,'Yu Gothic','Yu Gothic UI',sans-serif;
  border: none;
}

.p-house-quality__message {
  margin-bottom: 12px;
}

.p-house-quality .-bg-lightblue {
  letter-spacing: normal;
  background: #d7dfe7;
  padding: 10px 5px;
}

.p-house-quality .borderbox {
  border: 1px solid #0068b7;
  padding: 20px;
}

.p-house-quality .c-heading-primary {
  position: relative;
  top: -30px;
  left: 33px;
  margin-bottom: 16px;
}

.p-house-precut__table {
  border: 1px solid #2e2241;
  width: 100%;
  margin-top: 20px;
}

.p-house-precut__table td {
  border: 1px solid #2e2241;
  font-weight: bold;
  text-align: center;
  background: #fff;
  padding: 7px;
}

.p-house-precut__table td.w-mid {
  width: 210px;
}

.p-house-precut__table .table-title {
  background: #2e2241;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 16px;
}

.p-house-precut__table .sub-title {
  background: #c8c5cb;
  width: 220px;
  vertical-align: middle;
}

.p-house__imglist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

.p-house__imglist li {
  width: calc(25% - 12px);
}

.p-house__imglist .p-house__text {
  margin-top: 8px;
  font-size: 12px;
}

.p-house-facilityimg {
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 30px;
}

.p-house-facilityimg.-mblast {
  margin-bottom: 60px;
}

.p-house-facilityimg__textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 370px;
}

.p-house-facilityimg__textbox  div{
  width: 100%;
}

.p-house-facilityimg__imgbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 750px;
  max-width: 100%;
}

.p-house-facilityimg__imgbox li {
  width: calc(50% - 10px);
}
.p-house-facilityimg__imgbox .img {
  width: 100%;
  height: auto;
}

.p-house-facilityimg__imgbox .img.-wide {
  width: 100%;
}

.p-house-facilityimg .title {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #0068b7;
  letter-spacing: 0.1em;
}

.p-house-facilityimg .text {
  color: #2e2241;
  font-size: 14px;
  line-height: 1.71429;
  padding-right: 20px;
}

.p-house-qualitylist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 32px;
  margin-top: 20px;
}

.p-house-qualitylist li {
  position: relative;
  background: #fff;
  padding: 20px 10px;
  width: calc(100%/3 - 4px);
  margin-bottom: 8px;
}

.p-house-qualitylist li.col-6 {
  width: calc(50% - 4px);
}

.p-house-qualitylist li.col-8 {
  width: calc(66.66667% - 4px);
}

.p-house-qualitylist li.col-12 {
  width: 100%;
}

.p-house-qualitylist__title {
  color: #0068b7;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.3em;
  margin-bottom: 4px;
}

.p-house-qualitylist__title + p {
  color: #2e2241;
  line-height: 1.75;
}

.p-house-researchlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-house-researchlist li {
  width: calc(25% - 40px);
  position: relative;
  background: #fff;
  padding: 10px 10px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #2e2241;
  text-align: center;
}

.p-house-researchlist li .float-num {
  position: absolute;
  display: block;
  font-size: 12px;
  color: #fff;
  background: #0068b7;
  padding: 6px;
  top: -10px;
  left: -5px;
  letter-spacing: 0.2em;
}

.p-house-researchlist li.-maincolor {
  color: #0068b7;
}

.p-house-researchlist li:not(:last-of-type):after {
  content: "";
  display: block;
  background: url("../img/icon-link-arrow-b.svg") no-repeat;
  background-size: contain;
  width: 50px;
  height: 10px;
  position: absolute;
  left: 98%;
  bottom: 10px;
}

.p-house-researchlist li:nth-of-type(5):before {
  content: "";
  display: block;
  background: url("../img/icon-link-arrow-b.svg") no-repeat;
  background-size: contain;
  width: 50px;
  height: 10px;
  position: absolute;
  right: 90%;
  bottom: 10px;
}

/* work */

.p-works__text {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.p-works__textwrap {
  margin-bottom: 50px;
}

.p-works__category {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: -1em;
}
.p-works__category li {
  margin: 0 1em 1em 0;
}
.p-works__category li a {
  display: inline-block;
  background: #f5f3f1;
  color: #333;
  font-weight: 500;
  padding: .8em 1em;
  border-radius: 5px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.p-works__category li a:before{
  content: "";
  background-image: url(../img/building_icon_blue.png);
  position: relative;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
}

.p-works__category li a.active {
  background: #0068b7;
  color: #fff;
  box-shadow: 2px 2px 8px #1d346d;
}

.p-works__category li a.active:before{
  content: "";
  background-image: url(../img/building_icon_white.png);
}

.p-works__morebtn {
  width: 320px;
  max-width: none;
  display: none; /*20191122 仮*/
}

.p-works__morebtn .c-btn-readmore__link {
  letter-spacing: 0;
  padding: 10px;
}

.p-works__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 130px;
}

.p-works__list li {
  width: calc(20% - 25px);
  margin-bottom: 30px;
}

.p-works__list li:not(:nth-of-type(5n)) {
  margin-right: 25px;
}

.p-works__list .c-btn-link {
  width: max-content; /*120px;*/
  text-align: center;
  padding: 12px;
  letter-spacing: 0.2em;
}

.p-works__list .c-btn-link + img {
  margin-bottom: 8px;
}

.p-works__list .c-btn-link:after {
  content: none;
}

.p-works__list .c-btn-readmore {
  width: 128px;
  margin-right: 0;
  margin-left: auto;
}

.p-works__list .c-btn-readmore__link {
  font-size: 11px;
  padding: 7px;
}

.p-works__list .brand-icon {
  width: 65px;
}

.p-works .c-pagenation {
  margin-bottom: 150px;
}

/* work detail */

.p-worksdetail {
  color: #2e2241;
}

.p-worksdetail .l-container.-narrow {
  width: 800px;
  max-width: 95%;
}

.p-worksdetail .c-heading-secondary {
  color: #0068b7;
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0px;
  letter-spacing: 0.2em;
}

.p-worksdetail .c-btn-link {
  width: 120px;
  text-align: center;
  padding: 12px;
  letter-spacing: 0.2em;
  margin: 0 auto 20px;
}

.p-worksdetail .c-btn-link + img {
  margin-bottom: 8px;
}

.p-worksdetail .c-btn-link:after {
  content: none;
}

.p-worksdetail-main {
  position: relative;
  margin-bottom: 70px;
}

.p-worksdetail-main .blandlogo {
  position: absolute;
  bottom: .5em;
  left: 1em;
  width: 41px;
}

.p-worksdetail-main__text {
  padding: 30px 0 25px;
}

.p-worksdetail__mainimage {
  max-width: 100%;
}

.p-worksdetail-photo {
  margin-bottom: 80px;
}

.p-worksdetail-room {
  margin-bottom: 120px;
}

.p-worksdetail__detail {
  color: #122b3e;
}

.p-worksdetail .photolist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-worksdetail .photolist li {
  width: calc(100%/9 - 8px);
}

.p-worksdetail .photolist li:not(:last-of-type) {
  margin-right: 8px;
}

/* contact */

.p-contact .c-breadcrumbs {
  margin-bottom: 20px;
}

.p-contact .c-low-menu {
  margin-bottom: 43px;
}

.p-contact .c-heading-primary {
  font-size: 32px;
  margin-bottom: 23px;
}

.p-contact-tel .p-contact .c-heading-primary {
  color: #122b3e;
}

.p-contact-tel {
  color: #122b3e;
  margin-bottom: 50px;
}

.p-contact-tel__text {
  text-align: center;
  margin-bottom: 16px;
}

.p-contact-tel__text-mincho {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.p-contact-tel .link-tel {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 49px;
  font-weight: 400;
  text-align: center;
}

.p-contact-tel .link-tel::before {
  content: "";
  display: inline-block;
  background: url("../img/ico-tel-b.svg") no-repeat;
  background-size: contain;
  width: 41px;
  height: 41px;
  margin-right: 12px;
}

.p-contact-mail {
  background: #f2f7fb;
  margin-bottom: 55px;
  padding-top: 55px;
}

.p-contact-mail p {
  width: 496px;
  margin: 0 auto 35px;
}
.p-contact-mail form p input[type="submit"]{
  display: block;
  margin: 0 auto;
  width: 280px;
  background-color: #0068b7;
  max-width: 280px;
  position: relative;
}
.p-contact-mail form div.btn_box {
  text-align: center;
}
.p-contact-mail .mw_wp_form_confirm form p.btn {
  display: inline-block;
}
.p-contact-mail .mw_wp_form_confirm form .p-contact-form__list dd {
  padding-top: 26px;
}
.p-contact-mail form input[type="submit"] {
  display: block;
  width: 100%;
  font-family: 'Crimson Text', serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  padding: 5px;
  text-align: center;
  color: #fff;
  background-color: #0068b7;
}
.p-contact-mail form input[type="submit"]:hover {
  cursor: pointer;
}
.p-contact-mail form p:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/icon-link-arrow.svg) no-repeat;
  background-size: contain;
  width: 40px;
  height: 6px;
  top: 50%;
  right: 1.7em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}


.p-contact-form,
.mw_wp_form {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}

.p-contact-form .c-btn-readmore {
  display: block;
  margin: 0 auto;
  width: 280px;
}

.p-contact-form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.p-contact-form__list dt {
  width: 35%;
  text-align: right;
  padding-right: 50px;
  font-weight: bold;
  color: #0068b7;
  padding-top: 26px;
}

.p-contact-form__list dt .required {
  position: relative;
}

.p-contact-form__list dt .required:after {
  content: "*";
  display: block;
  position: absolute;
  color: #ff0000;
  font-size: 12px;
  top: -5px;
  left: 100%;
}

.p-contact-form__list dd {
  width: 65%;
}

.p-contact-form__list dd input {
  height: 40px;
  border: 1px solid #eeeeee;
  width: 220px;
  max-width: 100%;
  margin-top: 14px;
}

.p-contact-form__list dd input.-mid,
.p-contact-form__list dd input#company {
  width: 300px;
}

.p-contact-form__list dd input.-long,
.p-contact-form__list dd input#address,
.p-contact-form__list dd input#phonenumber,
.p-contact-form__list dd input#email {
  width: 400px;
}

.p-contact-form__list dd textarea {
  width: 444px;
  height: 205px;
  resize: vertical;
  max-width: 100%;
  margin-top: 14px;
}

.p-faq {
  margin-bottom: 110px;
}

.p-faq__list {
  text-align: center;
  border-bottom: 1px solid #0068b7;
}

.p-faq__list-item {
  display: inline-block;
  background-color: #dcdcdc;
  width: 222px;
}

.p-faq__list-item.active {
  background-color: #0068b7;
}

.p-faq__list__link {
  display: block;
  color: #2e2241;
  padding: 8px 0;
  font-weight: bold;
  cursor: pointer;
}

.active .p-faq__list__link {
  color: #fff;
}

.p-faq__qalist .-question,
.p-faq__qalist .-answer {
  position: relative;
  padding: 30px 0 30px 92px;
  border-bottom: 1px solid #e5e5e5;
}

.p-faq__qalist .-question::before,
.p-faq__qalist .-answer::before {
  content: "Q";
  position: absolute;
  top: .5em;
  left: 0;
  font-family: 'Crimson Text', serif;
  font-size: 30px;
  font-weight: bold;
  color: #0068b7;
  padding-right: 54px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.p-faq__qalist .-question {
  padding-right: 50px;
}

.p-faq__qalist .-question::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/contact/ico-list-arrow.svg") no-repeat;
  background-size: contain;
  width: 24px;
  height: 14px;
  top: 30px;
  right: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.p-faq__qalist .-question.active::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.p-faq__qalist .-answer {
  display: none;
  line-height: 1.625;
}
.p-faq__qalist .-answer::before {
  content: "A";
  color: #2e2241;
}
.p-faq__qalist .-answer dl dt {
  font-weight: bold;
  color: #0068b7;
}
.p-faq__qalist .-answer dl dd {
  padding-left: 2.0em;
}
.p-faq__qalist .-answer ul {
  list-style: disc;
  padding-left: 2.0em;
}
.p-faq__qalist .-answer ol {
  list-style: decimal;
  padding-left: 2.0em;
}
.p-faq__qalist .-answer table {
  width: 100%;
}
.p-faq__qalist .-answer table th {
  border: solid 1px #666;
  width: 20%;
  vertical-align: middle;
  background: #999;
  color: #fff;
  font-weight: bold;
  padding: 0.25em;
}
.p-faq__qalist .-answer table td {
  border: solid 1px #999;
  background: #fff;
  padding: 0.25em;
}

.p-faq__tab {
  padding: 0 30px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

/* recruit */

.p-recruit .c-low-menu {
  margin-bottom: 100px;
}

.p-recruit .bg-half::after {
  width: 81.40625vw;
  max-width: 80%;
  right: 0;
  height: calc(100% + 95px);
}

.p-recruit__message {
  color: #2e2241;
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.p-recruit__text {
  color: #2e2241;
  letter-spacing: 0.05em;
  line-height: 2.25;
}

.p-recruit__text.-widemb {
  margin-bottom: 88px;
}

.p-recruit__presname {
  height: 25px;
  margin-top: 40px;
  text-align: right;
}

.p-recruit__presname img {
  height: 100%;
  width: auto;
}

.p-recruit-message {
  padding-top: 88px;
}

.p-recruit-message:first-of-type {
  margin-bottom: 55px;
}

.p-recruit-message .l-container {
  position: relative;
}

.p-recruit-message-wrap {
  margin-bottom: 240px;
}

.p-recruit-message__titlebox {
  position: absolute;
  top: 0;
  left: 0;
  background: #0068b7;
  width: 504px;
  max-width: 100%;
  padding: 40px 90px;
}

.p-recruit-message__titlebox .c-heading-secondary {
  font-size: 26px;
  margin-bottom: 0;
}

.p-recruit-message__titlebox .c-heading-secondary .-subheading {
  margin-top: 0;
}

.p-recruit-message__titlebox.-president {
  background: #2e2241;
}

.p-recruit-message__box {
  width: 690px;
  max-width: 100%;
  margin-right: 0;
  margin-left: auto;
}

.p-recruit-works {
  margin-bottom: 250px;
}

.p-recruit-works .c-heading-primary {
  margin-bottom: 60px;
}

.p-recruit-works .p-recruit__text {
  max-width: 750px;
  width: 80%;
}

.p-recruit-works__title {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.p-recruit-works__list-item {
  position: relative;
  margin-bottom: 110px;
}

.p-recruit-works__textbox {
  background: #eeeeee;
  padding: 90px;
  width: 1035px;
  max-width: 100%;
}

.p-recruit-works__imgbox {
  position: absolute;
  width: 460px;
  top: 31px;
  left: 62%;
}

.p-recruit-chara {
  margin-bottom: 150px;
}

.p-recruit-chara__box {
  background: #0068b7;
  padding: 66px 0;
}

.p-recruit-chara__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  font-weight: bold;
  color: #fff;
  font-size: 22px;
}

.p-recruit-chara .c-heading-secondary {
  margin-bottom: 30px;
}

.p-require {
  margin-bottom: 230px;
}

.p-require .c-heading-primary {
  margin-bottom: 40px;
}

.p-require .c-low-menu {
  width: 746px;
  margin: 0 auto 60px;
}

.p-house-quality__imgbox {
  width: 100%;
}

.p-require .p-recruit-works__title {
  border-left: 5px solid #0068b7;
  padding-left: 20px;
  margin-bottom: 16px;
}

.p-require__contents {
  margin-bottom: 100px;
}

.p-require__contents .c-btn-readmore {
  margin: 0 auto;
}

.p-require__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.p-require__list dt,
.p-require__list dd {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.p-require__list dt:first-of-type,
.p-require__list dd:first-of-type {
  border-top: 1px solid #e5e5e5;
}

.p-require__list dt {
  font-weight: bold;
  color: #0068b7;
  width: 20%;
}

.p-require__list dd {
  width: 80%;
}

.p-require__list__text.-mb {
  margin-bottom: 20px;
}

/*
3.3 - utility
-----------------------------------------------------*/

.-uppercase {
  text-transform: uppercase;
}

.-tac {
  text-align: center;
}

.-tar {
  text-align: right;
}

.-fw-bold {
  font-weight: bold;
}

.br-sp,
.sp-disp {
  display: none;
}

.-color-bl {
  color: #0068b7;
}

.bg-half {
  position: relative;
}

.bg-half:after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  min-height: 300px;
  height: calc(100% + 30px);
  z-index: -1;
  top: 0;
  right: 0;
  background: url("../img/top/bg-top-section1.png");
}

.bg-half.-top-sec2:after {
  width: 81.5vw;
  min-height: 300px;
  height: 96%;
}

.bg-half.-left::after {
  left: 0;
  right: auto;
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.u-grid-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-grid-2.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.u-grid-2.-align__start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.u-grid-2.-spacebetween {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.u-grid-2.-alitem_flst {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.u-grid-2 .u-grid-item {
  max-width: 50%;
}

.-md-1 .u-grid-item {
  max-width: 100%;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-mb-30 {
  margin-bottom: 30px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-mb-50 {
  margin-bottom: 50px;
}

.u-mb-60 {
  margin-bottom: 60px;
}

.u-mb-70 {
  margin-bottom: 70px;
}

.u-mb-80 {
  margin-bottom: 80px;
}

.u-mb-90 {
  margin-bottom: 90px;
}

.u-mb-100 {
  margin-bottom: 100px;
}

.u-waveline {
  -webkit-text-decoration: underline wavy #c11920;
  text-decoration: underline wavy #c11920;
}

@media screen and (min-width: 1120px) {
  .button-hamburger {
    display: none;
  }

  .p-house-step5__list li:nth-of-type(5):before {
    content: "";
    display: block;
    background: url("../img/icon-link-arrow-b.svg") no-repeat;
    background-size: contain;
    width: 51px;
    height: 13px;
    position: absolute;
    right: 90%;
    bottom: 25px;
  }
}

@media screen and (min-width: 1024px) {
  .p-house-step5__list li:nth-of-type(5),
  .p-house-step5__list li:nth-of-type(6),
  .p-house-step5__list li:nth-of-type(7),
  .p-house-step5__list li:nth-of-type(8) {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1400px) {
  .p-recruit-works__imgbox {
    left: 66.5%;
  }

  .p-recruit-chara__list {
    padding: 0 108px;
  }
}

@media screen and (max-width: 1440px) {
  .l-container.-wide {
    max-width: 100%;
  }

  .p-top-sec1__article {
    margin-bottom: 200px;
  }

  .p-top-sec1__article.-efut {
    margin-bottom: 200px;
  }
}

@media screen and (max-width: 1120px) {
  .l-header-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }

  .l-globalnav {
    display: block;
    position: absolute;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    top: 0;
    right: 0;
    left: 0;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  }

  .is-open .l-globalnav {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .globalnav__link {
    display: block;
    color: #fff;
    padding: 1em 15px;
  }

  .globalnav-list {
    display: block;
    background-color: #2e2241;
    padding-top: 84px;
    padding: 20px 0;
    z-index: 100000;
  }

  .globalnav-list li {
    border-bottom: 1px dashed #fff;
  }

  .globalnav-list li:not(:last-of-type) {
    margin-right: 0;
  }

  .globalnav-list li:last-of-type {
    margin-right: 0;
  }

  .original_bland ul.submenu {
    display: block;
    position: static;
  }
}

@media screen and (max-width: 768px) {
  .spbr { display: inline; }
  .pcbr { display: none; }

  .l-header-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }

  .l-globalnav {
    display: block;
    position: absolute;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    top: 0;
    right: 0;
    left: 0;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  }

  .is-open .l-globalnav {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .globalnav__link {
    display: block;
    color: #fff;
    padding: 1em 15px;
  }

  .globalnav-list {
    display: block;
    background-color: #2e2241;
    padding-top: 84px;
    padding: 20px 0;
    z-index: 100000;
  }

  .globalnav-list li {
    border-bottom: 1px dashed #fff;
  }

  .globalnav-list li:not(:last-of-type) {
    margin-right: 0;
  }

  .globalnav-list li:last-of-type {
    margin-right: 0;
  }

  .original_bland ul.submenu {
    display: block;
    position: static;
  }

  .l-footer-fixed {
    padding: 0;
    height: 50px;
  }

  .l-footer-fixed .footer-fix__list li:nth-of-type(4) {
    margin: 0;
		border-left: 1px solid #fff;
		box-sizing: border-box;
  }

  .l-footer-fixed .footer-fix__list li {
    width: 20%;
    height: 100%;
    padding: 1.0em 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .l-footer-fixed .footer-fix__list li:last-of-type {
    border-left: 1px solid #fff;
		padding: 8px 0;
  }

  .l-footer-fixed .footer-fix__list__link.-contact:before {
    margin-right: 0;
    display: none;
  }

  .l-footer-fixed .footer-fix__list__link.-izumiya::after {
    content: none;
  }

  .l-footer-fixed .footer-fix__list__link {
    font-size: 12px;
  }

  .l-footer-fixed .footer-fix__list .btn-blue {
    /* width: 100%; */
    height: 100%;
    border-radius: 0;
    width: 20%;
  }
  .l-footer-fixed .footer-fix__list .btn-blue.contact {
		padding: 8px 0;
  }

  .l-footer-fixed .footer-fix__list .btn-blue .sp-hidden {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
  }

  .l-footer-fixed .footer-fix__list {
    width: 100%;
    max-width: 600px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .l-footer-fixed .footer-fix__list li:first-child {
    border-right: solid 1px #ccc;
  }

  .l-footer .footer-nav__list {
    display: block;
    padding-left: 0;
  }

  .l-main {
    overflow-x: hidden;
  }

  .c-heading-primary {
    /* font-size: 32px; */
    font-size: 7.5vw;
  }

  .c-heading-primary .-subheading {
    font-size: 16px;
  }

  .c-heading-primary.-small {
    font-size: 24px;
  }

  .c-btn-readmore.-contact .c-btn-readmore__link::after {
    width: 30px;
  }

  .c-heading-secondary {
    font-size: 8.5vw;
  }
  .p-iznav .c-heading-secondary {
    font-size: 22px;
  }

  .p-iznav .c-iznav {
    font-size: 30px;
    margin-right: 8px;
  }

  .p-originbland__heading {
    font-size: 24px;
  }

  .p-originbland__list {
    display: block;
  }

  .p-originbland__list li {
    width: 100%;
    margin-bottom: 16px;
  }

  .p-footer-contact__contact .-box {
    display: block;
    width: auto;
    margin-bottom: 20px;
  }

  .p-footer-contact .c-btn-readmore {
    max-width: 100%;
  }

  .p-footer-contact .c-btn-readmore__link {
    font-size: 16px;
  }

  .p-footer-contact .link-tel {
    font-size: 32px;
  }

  .p-top-mv {
    margin-bottom: 50px;
  }

  .p-top-sec1 .bg-half.-mb-wide {
    margin-bottom: 100px;
  }

  .p-top-sec1 .bg-half:after {
    width: 100vw;
  }

  .p-top-sec1__textbox {
    padding-left: 0;
    padding: 0 15px;
  }

  .p-top-sec1__imgbox {
    margin-top: 16px;
  }

  .p-top-sec1__img.-second {
    width: 31.25vw;
    top: 40vw;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .p-top-sec1__article {
    margin-bottom: 100px;
  }

  .p-top-sec1__article.-efut {
    margin-bottom: 100px;
  }

  .p-top-sec1__article__textbox {
    position: static;
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-top-sec1__article__textbox.-forsale {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-top-sec1__article__imgbox {
    width: 100%;
    margin-top: -40px;
  }

  .p-top-works__list {
    /* display: block; */
    flex-wrap: wrap;
  }

  .p-top-works__list li {
    margin-bottom: 32px;
    width: 48%;
  }
  .p-top-works .c-btn-link {
    width: 100%;
  }

  .p-company-message .bg-half::after {
    right: -9%;
  }

  .p-company-message__textbox {
    max-width: none;
    margin-bottom: 30px;
  }

  .p-company-message__imgbox {
    padding: 0;
    max-width: 320px;
    margin: 0 auto;
  }

  .p-company-phil {
    margin-bottom: 50px;
  }

  .p-company-phil__textbox {
    min-width: auto;
    width: 100%;
    padding: 0 15px;
  }

  .p-company-phil__want {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .p-company-phil__bg::after {
    width: 100%;
    background-size: cover;
  }

  .p-company-outline__list dt {
    padding-left: 10px;
  }

  .p-company-outline__list dd {
    padding-left: 0;
  }

  .p-company-privacy__title {
    font-size: 20px;
    margin-left: 0;
  }

  .p-house .l-container {
    width: 100%;
    padding: 96px 15px 0;
    max-width: 600px;
  }

  .p-house-step .p-house__message {
    /* font-size: 18px; */
    font-size: 4.25vw;
  }

  .p-house-free .l-container.-narrow {
    max-width: 100%;
    padding: 0 15px;
  }

  .p-house-free__text-wrap {
    position: static;
    max-width: 100%;
    padding: 0 15px;
  }

  .-bigdream .p-house-free__text-wrap {
    top: 0;
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  .-bigdream .p-house-free__picture {
    min-width: auto;
    max-width: 100%;
    right: 0;
    position: static;
  }

  .p-house-free__article .c-heading-primary {
    /* font-size: 30px; */
    font-size: 7.5vw;
  }

  .p-house-step {
    margin-top: 0;
  }

  .p-house-step .l-container {
    padding: 40px 15px;
  }

  .p-house-step__imgbox {
    width: 100%;
  }

  .p-house-step__imgbox img{
  	width: 100%;
  }

  .p-house-step__title {
    /* font-size: 23px; */
    font-size: 5.5vw;
  }

  .p-house-step__title::before {
    font-size: 24px;
  }

  .p-house-step__text {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .p-house-step5__list li:not(:last-of-type):after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    bottom: auto;
    top: 100%;
    left: calc(50% - 6px);
  }

  .p-house-step5__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-house-step5__list li {
    width: 100%;
    margin-bottom: 36px;
  }

  .p-house-quality .l-container {
    padding: 0;
  }

  .p-house-quality__inner {
    padding: 0 15px;
  }

  .p-house-quality__textbox {
    margin-bottom: 20px;
    margin-right: 0;
    width: 100%;
  }

  .p-house-quality__imgbox {
    margin-bottom: 20px;
  }

  .p-house-quality__heading {
    font-size: 26px;
    padding: 0 15px;
  }

  .p-house-quality__title {
    font-size: 24px;
  }

  .p-house-quality .c-heading-primary {
    left: 15px;
  }

  .p-house__imglist {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .p-house__imglist li {
    width: calc(50% - 8px);
    margin-bottom: 16px;
  }

  .p-house__imglist .p-house__text {
    margin-top: 4px;
  }

  .p-house-qualitylist {
    display: block;
  }

  .p-house-qualitylist li {
    width: 100%;
  }

  .p-house-qualitylist li.col-6,
  .p-house-qualitylist li.col-8 {
    width: 100%;
  }

  .p-house-researchlist li:not(:last-of-type):after {
    top: 100%;
    left: calc(50% - 8px);
    bottom: auto;
    width: 35px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .p-house-researchlist li:nth-of-type(5):before {
    display: none;
  }

  .p-house-researchlist {
    display: block;
  }

  .p-house-researchlist li {
    width: 100%;
  }

  .p-house-free__message {
    font-size: 6vw;
  }

  .p-house__message.-fzlg {
    font-size: 5.5vw;
  }


  .p-works__list {
    display: flex;
    margin: 0 auto;
    max-width: 560px;
    justify-content: space-between;
  }

  .p-works__list li {
    width: 48%;
    margin-right: 0;
    margin: 0 1% 30px;
  }
  .p-works__list li:not(:nth-of-type(5n)) {
    margin-right: 0;
  }

  .p-works__list .c-btn-readmore__link::after {
    width: 29px;
    height: 4px;
    top: 50%;
    right: 0;
  }

  .p-works__list .brand-icon {
    padding-right: 10px;
  }

  .p-worksdetail .c-heading-secondary {
    font-size: 24px;
  }

  .p-worksdetail-main .blandlogo {
    position: relative;
    width: 11.71429vw;
    top: .25em;
    left: 0;
  }

  .p-worksdetail-main__text {
    padding-top: 12px;
  }

  .p-worksdetail .photolist li {
    width: calc(100%/4 - 8px);
  }

  .p-contact-tel .link-tel {
    font-size: 40px;
  }

  .p-contact-form {
    display: block;
  }

  .p-contact-form dt {
    width: 100%;
    text-align: left;
  }

  .p-contact-form dd {
    width: 100%;
  }

  .p-faq__list-item {
    width: 100%;
    border-bottom: 1px solid #fff;
  }

  .p-faq__qalist .-question,
  .p-faq__qalist .-answer {
    padding-left: 24px;
  }

  .p-faq__qalist .-question {
    padding-right: 20px;
  }

  .p-faq__tab {
    padding: 0;
  }

  .p-recruit .bg-half::after {
    max-width: 100vw;
    width: 100vw;
  }

  .p-recruit-message {
    padding-top: 0;
  }

  .p-recruit-message__titlebox .c-heading-secondary {
    font-size: 20px;
  }

  .p-recruit-message__titlebox {
    position: static;
    margin-bottom: 50px;
    padding: 40px 20px;
  }

  .p-recruit-works .p-recruit__text {
    width: 100%;
  }

  .p-recruit-works__title {
    font-size: 22px;
  }

  .p-recruit-works__textbox {
    padding: 30px 20px 20px;
  }

  .p-recruit-works__imgbox {
    position: static;
    max-width: 100%;
  }

  .p-recruit-chara__list {
    display: block;
    padding: 0 15px;
    text-align: center;
    font-size: 16px;
  }

  .p-recruit-chara__list li {
    margin-bottom: 16px;
  }

  .p-require .c-low-menu {
    max-width: 100%;
  }

  .u-md-w100 {
    width: 100%;
  }

  .br-sp,
  .sp-disp {
    display: block;
  }

  .u-grid-2.-md-1 {
    display: block;
  }
}

/*20191223追記*/

/* 注文住宅 */
.l-container__custom {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background: url("../img/custom/bg_custom.png") no-repeat center top;
}
.p-low-mv.-custom {
  background: url("../img/custom/bg-custom-mv.jpg") no-repeat;
  background-size: cover;
}
.p-custom {}
.p-custom .-clblue { color: #0068b7;}
.p-custom .read-more {
	margin-top: 15px;
	width: 166px;
}
.p-custom .read-more a {
	display: block;
	color: #fff;
	font-size: 12px;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	line-height: 1;
	padding: 8px 13px 10px;
	background: #0068B7 url("../img/custom/arrow_read_more.png") no-repeat 90% center;
}
.p-custom .p-custom__anchor-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 60px;
}
.p-custom .p-custom__anchor-menu li {
	font-size: 16px;
}
.p-custom .p-custom__anchor-menu li a {
	color: #2e2241;
	font-weight: bold;
}
.p-custom .p-custom__anchor-menu li::after {
	content: "/";
	margin: 0 16px;
}
.p-custom .p-custom__anchor-menu li:last-of-type::after {
	content: "";
}
.p-custom .p-custom__mv {
	padding: 0 0 70px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.p-custom .p-custom__mv-img {
	width: 600px;
}
.p-custom .p-custom__mv-copy {
	padding: 50px 0 0;
	width: 546px;
	font-size: 16px;
	line-height: 34px;
	letter-spacing: 0.05em;
}
.p-custom .p-custom__mv-copy .main-copy {
	font-size: 35px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 59px;
	letter-spacing: 0.23em;
}
.p-custom .p-custom__mv-copy .main-copy-en {
    display: block;
	margin-bottom: 35px;
    font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	color: #0068b7;
    font-size: 20px;
	font-weight: bold;
    line-height: 42px;
    letter-spacing: 0.2em;
}
.p-custom .p-custom__mv-sub-img {
	padding: 0 0 120px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.p-custom .p-custom__mv-sub-img li {
	width: 350px;
}
.p-custom .p-custom__anchor-tit {
	margin-bottom: 30px;
	padding: 16px 20px;
	background: #E7EEF6;
	position: relative;
}
.p-custom .p-custom__anchor-tit .anchor-tit-jp {
	font-size: 28px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
    line-height: 36px;
    letter-spacing: 0.1em;
}
.p-custom .p-custom__anchor-tit .anchor-tit-en {
	font-size: 14px;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	font-weight: bold;
    line-height: 18px;
    letter-spacing: 0.2em;
}
.p-custom .p-custom__anchor-tit span {
	width: 197px;
	position: absolute;
	right: 0;
	bottom: 0;
}
.p-custom .p-custom__custom-contents {
	margin-bottom: 80px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.p-custom .p-custom__custom-contents.second {
	margin-bottom: 180px;
}
.p-custom .p-custom__custom-contents li {
	width: 550px;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.2em;
}
.p-custom .p-custom__custom-contents li .normal {
	letter-spacing: 0em;
}
.p-custom .p-custom__custom-contents li .custom-contents-copy {
	padding: 20px 0;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.2em;
}
.p-custom .p-custom__free-box {
	margin-bottom: 70px;
	padding: 175px 135px 10px;
	font-size: 16px;
	line-height: 34px;
	background: url("../img/custom/bg_free.jpg") repeat-y;
	position: relative;
}
.p-custom .p-custom__free-box p {
	margin-bottom: 30px;
}
.p-custom .p-custom__free-box .free-box-tit {
	margin: 0 auto;
	width: 226px;
	position: absolute;
	left: 0;
	right: 0;
	top: -88px;
}
.p-custom .p-custom__free-box .free-box-copy {
	margin-bottom: 25px;
	font-size: 26px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 42px;
	text-align: center;
	letter-spacing: 0.2em;
}
.p-custom .custom-inner {
	margin: 0 auto;
	padding: 0 0 420px;
	width: 1200px;
}
.p-custom .custom-inner .sp_deram_img {
	display: none;
}
.p-custom .custom-inner .inner-dream_01 {
	padding: 35px 0 0 506px;
	width: 1200px;
	font-size: 16px;
	line-height: 34px;
	box-sizing: border-box;
}
.p-custom .custom-inner .inner-dream_copy {
	margin-bottom: 5px;
	font-size: 35px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 42px;
	letter-spacing: 0.1em;
}
.p-custom .custom-inner .inner-dream_copy-en {
	margin-bottom: 35px;
	font-size: 20px;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	font-weight: bold;
    line-height: 1;
    letter-spacing: 0.2em;
}
.p-custom .custom-inner .inner-dream_02 {
	padding: 77px 590px 0 0;
	width: 1200px;
	font-size: 16px;
	line-height: 34px;
	box-sizing: border-box;
}
.p-custom .p-custom__anchor-tit_02 {
	padding: 24px 43px;
	background: #0F5DA5;
}
.p-custom .p-custom__anchor-tit_02 .anchor-tit-jp {
	color: #fff;
	font-size: 35px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
    line-height: 40px;
    letter-spacing: 0.2em;
}
.p-custom .p-custom__anchor-tit_02 .anchor-tit-en {
	color: #87AED2;
	font-size: 20px;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	font-weight: bold;
    line-height: 24px;
    letter-spacing: 0.2em;
}
.p-custom .p-custom__quality-box {
	margin-bottom: 70px;
	padding: 36px 43px;
	background: #EEEEEE;
}
.p-custom .p-custom__quality-box .quality-box-inner {
	padding: 0 0 40px;
}
.p-custom .p-custom__quality-box .quality-box-inner:last-of-type {
	padding: 0;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-tit {
	margin-bottom: 20px;
	padding: 0 0 13px;
	font-size: 30px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #2E2241;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-copy {
	margin-bottom: 15px;
	font-size: 22px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 34px;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-text {
	margin-bottom: 50px;
	font-size: 14px;
	line-height: 24px;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-img {
	float: right;
	margin-left: 25px;
	width: 336px;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-copy_02 {
	display: inline-block;
	margin-bottom: 15px;
	padding: 8px 10px;
	font-size: 20px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 34px;
	background: #D7DFE7;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-text_02 {
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 24px;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-list {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-list li {
	width: 270px;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-list li span {
	display: block;
	font-size: 12px;
	line-height: 34px;
}

@media screen and (max-width: 768px) {
.l-container__custom {
	width: 100%;
	max-width: inherit;
	margin: 0 auto;
	padding: 0 3vw;
	background: url("../img/custom/sp/bg_custom.png") no-repeat center top;
	box-sizing: border-box;
}
.p-low-mv.-custom {
  background: url("../img/custom/bg-custom-mv.jpg") no-repeat;
  background-size: cover;
}
.p-custom {}
.p-custom .-clblue { color: #0068b7;}
.p-custom .read-more {
	margin-top: 3vw;
	width: 166px;
}
.p-custom .read-more a {
	display: block;
	color: #fff;
	font-size: 12px;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	line-height: 1;
	padding: 8px 13px 10px;
	background: #0068B7 url("../img/custom/arrow_read_more.png") no-repeat 90% center;
}
.p-custom .p-custom__anchor-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 10vw;
}
.p-custom .p-custom__anchor-menu li {
	font-size: 16px;
}
.p-custom .p-custom__anchor-menu li a {
	color: #2e2241;
	font-weight: bold;
}
.p-custom .p-custom__anchor-menu li::after {
	content: "/";
	margin: 0 16px;
}
.p-custom .p-custom__anchor-menu li:last-of-type::after {
	content: "";
}
.p-custom .p-custom__mv {
	padding: 0 0 6vw;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.p-custom .p-custom__mv-img {
	width: 100%;
}
.p-custom .p-custom__mv-copy {
	padding: 5vw 0 0;
	width: 100%;
	font-size: 4vw;
	line-height: 7vw;
	letter-spacing: 0.05em;
}
.p-custom .p-custom__mv-copy .main-copy {
	margin-bottom: 3vw;
	font-size: 6.6vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 9vw;
	letter-spacing: 0.2em;
}
.p-custom .p-custom__mv-copy .main-copy-en {
    display: block;
	margin-bottom: 6vw;
    font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	color: #0068b7;
    font-size: 4.8vw;
	font-weight: bold;
    line-height: 5vw;
    letter-spacing: 0.2em;
}
.p-custom .p-custom__mv-sub-img {
	padding: 0 0 10vw;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.p-custom .p-custom__mv-sub-img li {
	width: 32%;
}
.p-custom .p-custom__anchor-tit {
	margin-bottom: 30px;
	padding: 4vw;
	background: #E7EEF6;
	position: relative;
}
.p-custom .p-custom__anchor-tit .anchor-tit-jp {
	font-size: 6vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
    line-height: 8vw;
    letter-spacing: 0.1em;
}
.p-custom .p-custom__anchor-tit .anchor-tit-en {
	font-size: 3vw;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	font-weight: bold;
    line-height: 5vw;
    letter-spacing: 0.2em;
}
.p-custom .p-custom__anchor-tit span {
	width: 20vw;
	position: absolute;
	right: 0;
	bottom: 2vw;
}
.p-custom .p-custom__custom-contents {
	margin-bottom: 4vw;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.p-custom .p-custom__custom-contents.second {
	margin-bottom: 25vw;
}
.p-custom .p-custom__custom-contents li {
	margin-bottom: 6vw;
	width: 100%;
	font-size: 4vw;
	line-height: 7vw;
	letter-spacing: 0.2em;
}
.p-custom .p-custom__custom-contents li .normal {
	letter-spacing: 0em;
}
.p-custom .p-custom__custom-contents li .custom-contents-copy {
	padding: 20px 0;
	font-size: 4.8vw;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.2em;
}
.p-custom .p-custom__free-box {
	margin-bottom: 10vw;
	padding: 25vw 4vw 4vw;
	font-size: 4vw;
	line-height: 7vw;
	background: url("../img/custom/bg_free.jpg") repeat-y;
	position: relative;
}
.p-custom .p-custom__free-box p {
	margin-bottom: 4vw;
}
.p-custom .p-custom__free-box .free-box-tit {
	margin: 0 auto;
	width: 40vw;
	position: absolute;
	left: 0;
	right: 0;
	top: -20vw;
}
.p-custom .p-custom__free-box .free-box-copy {
	margin-bottom: 25px;
	font-size: 5.5vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 42px;
	text-align: center;
	letter-spacing: 0.2em;
}
.p-custom .custom-inner {
	margin: 0 auto;
	padding: 0 0 10vw;
	width: 100%;
}
.p-custom .custom-inner .sp_deram_img {
	display: block;
	margin: 0 auto 5vw;
	width: 100%;
}
.p-custom .custom-inner .inner-dream_01 {
	padding: 0;
	width: 100%;
	font-size: 4vw;
	line-height: 7vw;
	box-sizing: border-box;
}
.p-custom .custom-inner .inner-dream_copy {
	margin-bottom: 5px;
	font-size: 6vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 8vw;
	letter-spacing: 0.1em;
}
.p-custom .custom-inner .inner-dream_copy-en {
	margin-bottom: 6vw;
	font-size: 4vw;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	font-weight: bold;
    line-height: 1;
    letter-spacing: 0.2em;
}
.p-custom .custom-inner .inner-dream_02 {
	padding: 10vw 0 0;
	width: 100%;
	font-size: 4vw;
	line-height: 7vw;
	box-sizing: border-box;
}
.p-custom .p-custom__anchor-tit_02 {
	padding: 4vw;
	background: #0F5DA5;
}
.p-custom .p-custom__anchor-tit_02 .anchor-tit-jp {
	color: #fff;
	font-size: 6vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
    line-height: 8vw;
    letter-spacing: 0.2em;
}
.p-custom .p-custom__anchor-tit_02 .anchor-tit-en {
	color: #87AED2;
	font-size: 3.5vw;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	font-weight: bold;
    line-height: 6vw;
    letter-spacing: 0.2em;
}
.p-custom .p-custom__quality-box {
	margin-bottom: 70px;
	padding: 8vw 4vw;
	background: #EEEEEE;
}
.p-custom .p-custom__quality-box .quality-box-inner {
	padding: 0 0 10vw;
}
.p-custom .p-custom__quality-box .quality-box-inner:last-of-type {
	padding: 0;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-tit {
	margin-bottom: 20px;
	padding: 0 0 13px;
	font-size: 6vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #2E2241;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-copy {
	margin-bottom: 15px;
	font-size: 22px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 34px;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-text {
	margin-bottom: 5vw;
	font-size: 14px;
	line-height: 24px;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-img {
	float: none;
	margin-left: 0;
	width: 100%;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-img img {
	margin-bottom: 5vw;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-copy_02 {
	display: inline-block;
	margin-bottom: 15px;
	padding: 8px 10px;
	font-size: 20px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 34px;
	background: #D7DFE7;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-text_02 {
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 24px;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-list {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-list li {
	margin-bottom: 3vw;
	width: 48%;
}
.p-custom .p-custom__quality-box .quality-box-inner .quality-box-list li span {
	display: block;
	font-size: 12px;
	line-height: 6vw;
}
}

/* 分譲住宅 */
.p-low-mv.-built {
  background: url("../img/built/bg-built-mv.jpg") no-repeat;
  background-size: cover;
}
.p-built {}
.p-built .table-pc { display: block;}
.p-built .table-sp { display: none;}
.p-built .-clblue { color: #0068b7;}
.p-built .p-built__anchor-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 60px;
}
.p-built .p-built__anchor-menu li {
	font-size: 16px;
}
.p-built .p-built__anchor-menu li a {
	color: #2e2241;
	font-weight: bold;
}
.p-built .p-built__anchor-menu li::after {
	content: "/";
	margin: 0 16px;
}
.p-built .p-built__anchor-menu li:last-of-type::after {
	content: "";
}
.p-built .p-built__mv {
	padding: 0 0 60px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.p-built .p-built__mv-copy {
	padding: 50px 0 0;
	width: 564px;
	font-size: 16px;
	line-height: 34px;
}
.p-built .p-built__mv-copy .main-copy {
	font-size: 35px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 59px;
	letter-spacing: 0.1em;
}
.p-built .p-built__mv-copy .main-copy-en {
    display: block;
	margin-bottom: 35px;
    font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	color: #0068b7;
    font-size: 20px;
	font-weight: bold;
    line-height: 42px;
    letter-spacing: 0.2em;
}
.p-built .p-built__mv-img {
	width: 600px;
}
.p-built .p-built__recommend {
	margin-bottom: 100px;
	padding: 25px 40px 10px;
	font-size: 16px;
	line-height: 32px;
	background: #E7EEF6;
}
.p-built .p-built__recommend p {
	margin-bottom: 30px;
	text-align: center;
}
.p-built .p-built__recommend .recommend-tit {
	margin-bottom: 5px;
	font-size: 28px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 1;
}
.p-built .p-built__recommend .recommend-tit-en {
	margin-bottom: 20px;
	color: #73ABD6;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.2em;
	line-height: 1;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
}
.p-built .p-built__recommend table,
.p-built .p-built__recommend table th,
.p-built .p-built__recommend table td {
	border:0;
	border-collapse:collapse;
}
.p-built .p-built__recommend table {
	margin: 0 0 40px;
	width:100%;
}
.p-built .p-built__recommend table th,
.p-built .p-built__recommend table td {
	padding: 15px 30px;
	font-size: 14px;
	vertical-align: middle;
	line-height: 20px;
	border: 1px solid #EEEEEE;
	background: #fff;
}
.p-built .p-built__recommend table th {
	background: #F8F8F8;
}
.p-built .p-built__recommend table td span {
	position: relative;
}
.p-built .p-built__recommend table td span::before {
	content: "NEW!";
	color: #c90002;
	font-size: 14px;
	font-weight: bold;
	position: absolute;
	left: -19px;
	top: -19px;
}
.p-built .p-built__recommend table td.-tar {
	text-align: center;
}
.p-built .p-built__recommend .btn-list {
	margin: 0 auto 30px;
	width: 526px;
}
.p-built .p-built__recommend .btn-list a {
	display: block;
	padding: 26px 0;
	color: #fff;
	font-size: 18px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
	background: #0168B7 url("../img/built/arrow_btn_list.png") no-repeat 96% center;
}
.p-built .p-built__recommend .btn-list a span {
	display: block;
	font-size: 24px;
	letter-spacing: 0.2em;
}
.p-built .p-built__concept {
	font-size: 16px;
	line-height: 34px;
	text-align: center;
}
.p-built .p-built__concept .concept-tit {
	margin-bottom: 25px;
	font-size: 35px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.23em;
}
.p-built .p-built__concept .concept-tit-en {
	margin-bottom: 25px;
	font-size: 20px;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.18em;
}
.p-built .p-built__concept .concept-copy {
	margin-bottom: 35px;
	font-size: 28px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.11em;
}
.p-built .p-built__concept .concept-inner {
	margin-top: 114px;
	padding: 0 60px;
	height: 620px;
	text-align: left;
	background: url("../img/built/bg_concept_inner.png") no-repeat center top;
}
.p-built .p-built__anchor-tit {
	padding: 24px 43px;
	background: #0F5DA5;
}
.p-built .p-built__anchor-tit .anchor-tit-jp {
	color: #fff;
	font-size: 35px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
    line-height: 42px;
    letter-spacing: 0.2em;
}
.p-built .p-built__anchor-tit .anchor-tit-en {
	color: #87AED2;
	font-size: 20px;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	font-weight: bold;
    line-height: 24px;
    letter-spacing: 0.2em;
}
.p-built .p-built__quality-box {
	margin-bottom: 70px;
	padding: 36px 43px 1px;
	font-size: 16px;
	line-height: 34px;
	background: #EEEEEE;
}
.p-built .p-built__quality-box p {
	margin-bottom: 30px;
}
.p-built .p-built__quality-box dl {
	margin-bottom: 40px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	align-items: center;
}
.p-built .p-built__quality-box dl dt {
	width: 336px;
}
.p-built .p-built__quality-box dl dd {
	width: 750px;
	font-size: 14px;
	line-height: 24px;
}
.p-built .p-built__quality-box dl dd .copy {
	margin-bottom: 10px;
	font-size: 28px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 34px;
}
.p-built .p-built__quality-box .tit {
	margin-bottom: 35px;
	padding: 14px 16px;
	font-size: 30px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 1;
	background: #BFD3E3;
}
.p-built .p-built__quality-box dl:last-of-type {
	align-items: flex-start;
}
.p-built .p-built__quality-box dl:last-of-type dd {
	font-size: 16px;
	line-height: 34px;
}
@media screen and (max-width: 768px) {
.p-low-mv.-built {
  background: url("../img/built/bg-built-mv.jpg") no-repeat;
  background-size: cover;
}
.p-built {}
.p-built .table-pc { display: none;}
.p-built .table-sp { display: block;}
.p-built .-clblue { color: #0068b7;}
.p-built .p-built__anchor-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 10vw;
}
.p-built .p-built__anchor-menu li {
	font-size: 16px;
}
.p-built .p-built__anchor-menu li a {
	color: #2e2241;
	font-weight: bold;
}
.p-built .p-built__anchor-menu li::after {
	content: "/";
	margin: 0 16px;
}
.p-built .p-built__anchor-menu li:last-of-type::after {
	content: "";
}
.p-built .p-built__mv {
	padding: 0 0 10vw;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.p-built .p-built__mv-copy {
	padding: 0;
	width: 100%;
	font-size: 4vw;
	line-height: 7vw;
}
.p-built .p-built__mv-copy .main-copy {
	margin-bottom: 3vw;
	font-size: 6.6vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 9vw;
	letter-spacing: 0.1em;
}
.p-built .p-built__mv-copy .main-copy-en {
    display: block;
	margin-bottom: 6vw;
    font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	color: #0068b7;
    font-size: 4.8vw;
	font-weight: bold;
    line-height: 5vw;
    letter-spacing: 0.2em;
}
.p-built .p-built__mv-img {
	margin: 10vw 0 0;
	width: 100%;
}
.p-built .p-built__recommend {
	margin-bottom: 100px;
	padding: 6vw 4vw;
	font-size: 4vw;
	line-height: 7vw;
	background: #E7EEF6;
}
.p-built .p-built__recommend p {
	margin-bottom: 4vw;
	text-align: left;
}
.p-built .p-built__recommend .recommend-tit {
	margin-bottom: 2vw;
	font-size: 6vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 1;
}
.p-built .p-built__recommend .recommend-tit-en {
	margin-bottom: 20px;
	color: #73ABD6;
	font-size: 3vw;
	font-weight: bold;
	letter-spacing: 0.2em;
	line-height: 1;
	text-align: left;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
}
.p-built .p-built__recommend table,
.p-built .p-built__recommend table th,
.p-built .p-built__recommend table td {
	border:0;
	border-collapse:collapse;
}
.p-built .p-built__recommend table {
	margin: 0 0 40px;
	width: 100%;
}
.p-built .p-built__recommend table th,
.p-built .p-built__recommend table td {
	padding: 4vw;
	font-size: 3.5vw;
	vertical-align: middle;
	line-height: 7vw;
	border: 1px solid #EEEEEE;
	background: #fff;
	box-sizing: border-box;
}
.p-built .p-built__recommend table th {
	background: #F8F8F8;
}
.p-built .p-built__recommend table td span {
	color: #c90002;
	font-weight: bold;
}
.p-built .p-built__recommend table td span::before {
	content: "";
}
.p-built .p-built__recommend table td.-tar {
	text-align: center;
}
.p-built .p-built__recommend .btn-list {
	margin: 0 auto 6vw;
	width: 100%;
}
.p-built .p-built__recommend .btn-list a {
	display: block;
	padding: 4vw 0;
	color: #fff;
	font-size: 3.2vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
	background: #0168B7 url("../img/built/arrow_btn_list.png") no-repeat 96% center;
	background-size: 8%;
}
.p-built .p-built__recommend .btn-list a span {
	display: block;
	font-size: 4.2vw;
	letter-spacing: 0.2em;
}
.p-built .p-built__concept {
	font-size: 4vw;
	line-height: 7vw;
	text-align: left;
}
.p-built .p-built__concept .concept-tit {
	margin-bottom: 4vw;
	font-size: 6vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.23em;
}
.p-built .p-built__concept .concept-tit-en {
	margin-bottom: 4vw;
	font-size: 5vw;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.18em;
}
.p-built .p-built__concept .concept-copy {
	margin-bottom: 6vw;
	font-size: 4.6vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.11em;
}
.p-built .p-built__concept .concept-inner {
	margin-top: 10vw;
	padding: 0 0 30vw;
	height: auto;
	text-align: left;
	background: url("../img/built/sp_bg_concept_inner.png") no-repeat center bottom;
	background-size: 100% auto;
}
.p-built .p-built__concept .concept-inner .concept-tit {
	text-align: center;
}
.p-built .p-built__anchor-tit {
	padding: 4vw;
	background: #0F5DA5;
}
.p-built .p-built__anchor-tit .anchor-tit-jp {
	color: #fff;
	font-size: 6vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
    line-height: 8vw;
    letter-spacing: 0.2em;
}
.p-built .p-built__anchor-tit .anchor-tit-en {
	color: #87AED2;
	font-size: 3.5vw;
	font-family: 'Crimson Text', serif;
    text-transform: uppercase;
	font-weight: bold;
    line-height: 6vw;
    letter-spacing: 0.2em;
}
.p-built .p-built__quality-box {
	margin-bottom: 70px;
	padding: 8vw 4vw;
	font-size: 4vw;
	line-height: 7vw;
	background: #EEEEEE;
}
.p-built .p-built__quality-box p {
	margin-bottom: 4vw;
}
.p-built .p-built__quality-box dl {
	margin-bottom: 6vw;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	align-items: center;
}
.p-built .p-built__quality-box dl dt {
	margin-bottom: 4vw;
	width: 100%;
}
.p-built .p-built__quality-box dl dd {
	width: 100%;
	font-size: 4vw;
	line-height: 7vw;
}
.p-built .p-built__quality-box dl dd .copy {
	margin-bottom: 10px;
	font-size: 6.6vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 9vw;
}
.p-built .p-built__quality-box .tit {
	margin-bottom: 35px;
	padding: 14px 16px;
	font-size: 6.6vw;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',sans-serif;
	font-weight: bold;
	line-height: 1;
	background: #BFD3E3;
}
.p-built .p-built__quality-box dl:last-of-type {
	align-items: flex-start;
}
.p-built .p-built__quality-box dl:last-of-type dd {
	font-size: 4vw;
	line-height: 7vw;
}
}


p-works__category ul{
	display: flex;
	flex-flow: row wrap;
}

p-works__category ul li{
	display: block;
	margin-right: 1em;
    margin-bottom: 10px;
    padding: 0.5em 0.75em;
    background: #f5f3f1;
    color: #0068b7;
}

.attention {
	color: #ff0000;
}
