@charset "UTF-8";
:root {
  --padding-x: 15px;
  --padding-y: 0;
}

.container,
.container-fluid {
  max-width: 100%;
  padding-right: calc(var(--padding-x) * 1);
  padding-left: calc(var(--padding-x) * 1);
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px), print {
  .container {
    max-width: 992px;
  }
  .container-sm {
    max-width: 992px;
  }
  .container-md {
    max-width: 992px;
  }
  .container-lg {
    max-width: 992px;
  }
}
@media screen and (min-width: 1200px), print {
  .container {
    max-width: 1230px;
  }
  .container-sm {
    max-width: 1230px;
  }
  .container-md {
    max-width: 1230px;
  }
  .container-lg {
    max-width: 1230px;
  }
  .container-xl {
    max-width: 1230px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
.small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
.figure-caption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
.mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
.figure-caption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
  margin-top: 1rem;
}
p:first-child {
  margin-top: 0;
}
p strong {
  font-weight: var(--body-weight);
  color: #ff0000;
}
p strong.blue {
  color: #002de2;
}

abbr[title],
dfn[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-top: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  list-style: none;
}

ol,
ul,
dl {
  margin: 0;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-top: 1rem;
}

dt {
  font-weight: 600;
}

dd {
  margin-top: 0.5rem;
  margin-left: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

b,
strong {
  font-weight: 600;
}

small, .small {
  font-size: 0.875em;
  color: #666;
}

mark, .mark {
  padding: 0.1875em;
  background-color: #e3b740;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.15em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--body-color);
  text-decoration: none;
}
a:hover {
  color: #2672a4;
  text-decoration: none;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--body-family);
  font-size: var(--body-size);
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: var(--body-size);
  color: var(--body-color);
}
pre code {
  color: inherit;
  word-break: normal;
}

code {
  font-size: var(--body-size);
  color: var(--body-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

figure {
  margin: 0;
}

figcaption, .figure-caption {
  color: var(--body-color);
  font-size: calc(var(--body-size) - 0.2rem);
  margin-top: 1rem;
  line-height: 1.4;
}

img {
  max-width: 100%;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

/*...<table>
  <caption style="text-align:right">My savings</caption>
  <tr> ...*/
caption {
  padding-top: 1rem;
  padding-bottom: 0;
  color: var(--body-color);
  text-align: left;
}

th {
  font-weight: 600;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: inherit;
  background: none;
  border-radius: 0;
  outline: none;
}
@media screen and (min-width: 768px), print {
  input,
button,
select,
optgroup,
textarea {
    font-size: var(--body-size);
  }
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
  outline: none;
  background: none transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
select:disabled {
  opacity: 1;
  background: none;
  color: var(--body-color);
}
select:disabled::-ms-value {
  background: none;
  color: var(--body-color);
}
select::-ms-expand {
  display: none;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

input::-ms-clear {
  visibility: hidden;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: var(--body-size);
  line-height: inherit;
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  border: none;
}
@media screen and (max-width: 767.98px) {
  img {
    width: 100%;
    height: auto;
  }
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

:root {
  --html-font-size: 62.5%;
  --body-size: 1.8rem;
  --body-line-height: calc(var(--body-size) * 1.5);
  --body-letter-spacing: 0.05em;
  --body-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
  --body-weight: 400;
  --body-color: #333;
  --body-bg: #fff;
  --menu-family: var(--body-family);
  --button-family: var(--body-family);
}

html {
  font-size: var(--html-font-size);
  text-size-adjust: 100%; /* iOS 8+ */
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--body-family);
  font-size: 1.6rem;
  font-weight: var(--body-weight);
  line-height: var(--body-line-height);
  color: var(--body-color);
  letter-spacing: var(--body-letter-spacing);
  background-color: var(--body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: var(--body-size);
  }
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

.link {
  color: #2672a4;
  text-decoration: underline;
  transition: all 0.5s ease 0.2s;
}
.link:hover {
  color: #004498;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
  user-select: none;
}
a span.link {
  color: var(--body-color);
}

:root {
  --logo-width: 19rem;
  --header-padding-y: 1.5rem;
  --header-padding-x: 4rem;
  --header-bkg: ;
}

.header {
  padding: var(--header-padding-y) 0;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s ease 0.2s;
}
@media screen and (min-width: 1024px), print {
  .header > .container {
    display: flex;
    gap: 0 4rem;
    align-items: center;
  }
}
.header .header__logo {
  max-width: var(--logo-width);
}
.header .header__logo > h1 {
  margin-top: 0;
}
@media screen and (max-width: 575.98px) {
  .header .header__logo {
    max-width: 150px;
  }
}
.header .header__nav {
  width: calc(100% - var(--logo-width));
}
.header .menu-btn {
  right: 0;
}
@media screen and (max-width: 575.98px) {
  .header {
    padding: 1rem 0;
  }
}
.header.--sticky {
  background: #fff !important;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.homepage .header {
  background: url(../img/header_bg.png) top left repeat;
}
.homepage > main {
  padding-top: 0 !important;
}

:root {
  --nav-link-padding-y: 1.5rem;
  --nav-link-padding-x: 3rem;
  --nav-link-weight: 500;
  --nav-link-size: 1.6rem;
  --nav-link-color: #3b3b3b;
  --nav-link-color-hover: #004498;
  --dropdown-menu-width: 25rem;
  --dropdown-menu-bg: #333;
  --dropdown-item-color: #fff;
  --dropdown-item-color-hover: #ff0000;
  --dropdown-menu-padding-y: 0.7rem;
  --dropdown-menu-padding-x: 1.5rem;
}

.menu-btn {
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: none;
}
.menu-btn > span, .menu-btn::before, .menu-btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 30%;
  width: 40%;
  border-bottom: 3px solid var(--nav-link-color);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu-btn::before {
  transform: translateY(-8px);
}
.menu-btn::after {
  transform: translateY(8px);
}
.menu-btn.close::before {
  transform: rotate(45deg);
}
.menu-btn.close::after {
  transform: rotate(-45deg);
}
.menu-btn.close > span {
  transform: scaleX(0);
}

.nav {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1024px), print {
  .nav__lists {
    display: flex;
    gap: 0 6rem;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199.98px) {
  .nav__lists {
    column-gap: 3rem;
  }
}
.nav__lists.--top {
  column-gap: 1rem;
}
.nav__lists.--top > * {
  font-size: calc(var(--body-size) - 0.2rem);
}
.nav__lists.--top .nav--link {
  padding: 0.5rem 1rem;
  font-weight: 400;
}
.nav--link {
  display: block;
  font-weight: 700;
  color: var(--nav-link-color);
  font-size: 1.6rem;
  padding: 1rem 0;
}
@media screen and (min-width: 1024px), print {
  .nav--link {
    position: relative;
    overflow: hidden;
  }
  .nav--link > span {
    display: inline-block;
    transition: transform 0.3s;
  }
  .nav--link::after {
    content: attr(data-replace);
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    transform-origin: 100% 50%;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.6s;
    display: flex;
    align-items: center;
  }
  .nav--link:hover span {
    transform: rotateX(90deg);
  }
  .nav--link:hover::after {
    transform: translate3d(0, 0, 0);
  }
}
.nav--link:hover, .nav--link.--active {
  color: var(--nav-link-color-hover);
}
.nav-item {
  position: relative;
}
@media screen and (min-width: 1024px), print {
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.nav-item .bubble-text {
  display: none;
  position: absolute;
  top: -18px;
  left: 50%;
  opacity: 0;
}
@media screen and (min-width: 1024px), print {
  .nav-item:nth-child(1) {
    min-width: 12rem;
  }
  .nav-item:nth-child(2) {
    min-width: 8rem;
  }
  .nav-item:nth-child(5) {
    min-width: 11rem;
  }
  .nav-item .bubble-text {
    font-size: 13px;
    line-height: 1.5em;
    visibility: hidden;
    width: auto;
    white-space: nowrap;
    background-color: #004498;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 3px 5px;
    z-index: 1;
    transition: 0.3s;
    transform: translate3d(0px, 0px, 0px);
    display: block;
  }
  .nav-item .bubble-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #004498 transparent transparent transparent;
  }
  .nav-item:hover .bubble-text {
    visibility: visible;
    opacity: 1;
    transform: translate3d(-50%, 0px, 0px);
  }
}

@media screen and (min-width: 1024px), print {
  .arrow {
    display: none;
  }
  .dropdown-menu {
    width: var(--dropdown-menu-width);
    background: var(--dropdown-menu-bg);
    z-index: 100;
    margin: 0;
    padding: 1rem 0;
    transition: all 0.5s ease 0.2s;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px), print {
  .dropdown-menu {
    position: absolute;
    left: 0;
    top: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
  }
}
@media screen and (min-width: 1024px), print {
  .dropdown-menu li a {
    padding: var(--dropdown-menu-padding-y) var(--dropdown-menu-padding-x);
    display: block;
    color: var(--dropdown-item-color);
    font-size: 1.3rem;
    font-weight: 700;
  }
  .dropdown-menu li a:hover {
    color: var(--dropdown-item-color-hover);
  }
}
@media screen and (max-width: 1023.98px) {
  .menu-btn {
    display: block;
  }
  .header__nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    max-width: 80%;
    min-width: 28rem;
    width: 100% !important;
    right: -100%;
    padding: 93px 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    overflow: auto;
    height: 100vh;
    background: #333;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.62) 93px, #333 93px, #333 100%);
  }
  .header .nav__lists {
    padding: 4rem 4rem 0;
  }
  .header .nav--link {
    color: #fff;
    font-size: 1.5rem;
  }
  .header .nav .dropdown-menu {
    display: none;
    margin: 0;
    padding-bottom: 3rem;
  }
  .header .nav .dropdown-menu li a {
    display: flex;
    padding: 0.3rem 0;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
    padding-left: 2.5rem;
  }
  .header .nav .dropdown-menu li a::before {
    position: absolute;
    left: 0;
    top: 1rem;
    content: "";
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    height: 10px;
    width: 10px;
    display: block;
    rotate: 45deg;
  }
  .header .nav .arrow {
    display: block;
    position: absolute;
    right: 0;
    top: 0.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.5s ease 0.2s;
  }
  .header .nav .arrow::before {
    content: "";
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    height: 10px;
    width: 10px;
    display: block;
    rotate: -45deg;
    transition: all 0.5s ease 0.2s;
  }
  .header .nav .arrow.is-open {
    top: 0;
  }
  .header .nav .arrow.is-open::before {
    rotate: 45deg;
  }
  .mn-open .header__nav {
    right: 0;
  }
  .mn-open .overlay-mn {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #000;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0.2;
    overflow: hidden;
  }
  .mn-open .menu-btn {
    z-index: 999;
  }
  .mn-open .menu-btn > span {
    display: none;
  }
  .mn-open .menu-btn::before {
    transform: rotate(45deg);
  }
  .mn-open .menu-btn::after {
    transform: rotate(-45deg);
  }
  .mn-open body {
    position: relative;
  }
  .mn-open body::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199.98px) {
  .navbar .nav--link {
    padding: 1.25vw 2.5vw;
  }
}
@media screen and (max-width: 575.98px) {
  .header__nav {
    padding-top: 70px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.62) 70px, #333 70px, #333 100%);
  }
  .header .nav__lists {
    padding: 2rem 2rem 0;
  }
  .header .nav--link {
    font-size: 1.4rem;
  }
}
.about-us .nav-item:nth-child(1) .nav--link {
  color: var(--nav-link-color-hover);
}

.works .nav-item:nth-child(2) .nav--link {
  color: var(--nav-link-color-hover);
}

.import-house .nav-item:nth-child(3) .nav--link {
  color: var(--nav-link-color-hover);
}

.after-support .nav-item:nth-child(4) .nav--link {
  color: var(--nav-link-color-hover);
}

.contact .nav-item:nth-child(5) .nav--link {
  color: var(--nav-link-color-hover);
}

:root {
  --footer-bg: #040404;
  --footer-color: #d3d3d3;
  --footer-padding-y: 6rem;
  --footer-heading-size: 1.6rem;
}

.footer {
  background-color: #fff;
  color: var(--footer-color);
  margin-top: 12rem;
}
.footer-heading {
  font-size: var(--footer-heading-size);
  line-height: calc(var(--footer-heading-size) * 1.5);
}
.footer .back__top {
  text-align: center;
  background-color: #004498;
  border: 1px solid #fff;
  cursor: pointer;
  z-index: 60;
  transition: all 0.5s ease 0.2s;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  color: #fff;
  font-size: 0;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .back__top::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  position: relative;
  margin-top: 1rem;
}
.footer .back__top:hover {
  opacity: 0.7;
}
.footer__contact {
  background-color: #fff;
  color: var(--body-color);
  padding-top: 8rem;
}
.footer__contact .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px), print {
  .footer__contact .inner {
    margin-bottom: 9rem;
  }
}
.footer__contact .inner__item {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 33.33333%;
}
.footer__contact .inner__item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #707070;
}
.footer__contact .inner__item:last-child::after {
  display: none;
}
.footer__contact .inner__item:nth-child(1) {
  padding-left: 0;
}
.footer__contact .inner__item:nth-child(1) .txt {
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 576px), print {
  .footer__contact .inner__item:nth-child(1) .txt {
    font-size: 1.8rem;
  }
}
.footer__contact .inner__item:nth-child(3) {
  padding-right: 0;
}
.footer__contact .inner__item.--tell .txt, .footer__contact .inner__item.--email .txt {
  font-weight: 700;
  margin-top: 2rem;
}
@media screen and (min-width: 576px), print {
  .footer__contact .inner__item.--tell .txt, .footer__contact .inner__item.--email .txt {
    font-size: 1.6rem;
  }
}
.footer__contact .inner__item.--tell .note, .footer__contact .inner__item.--email .note {
  font-weight: 500;
  margin-top: 0;
}
.footer__contact .inner__item .number {
  font-family: "Yu Mincho";
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767.98px) {
  .footer__contact .inner__item .number {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1200px), print {
  .footer__contact .inner__item {
    padding: 0 2rem;
    width: 30%;
  }
  .footer__contact .inner__item:nth-child(1) {
    width: 40%;
  }
}
@media screen and (min-width: 1400px) {
  .footer__contact .inner__item {
    padding: 0 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .footer__contact .inner__item {
    width: 50%;
    padding: 0;
  }
  .footer__contact .inner__item:nth-child(1) {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
  .footer__contact .inner__item:nth-child(1)::after {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .footer__contact .inner__item {
    width: 100%;
    padding: 0;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 500;
  }
  .footer__contact .inner__item .txt {
    font-weight: 500 !important;
  }
  .footer__contact .inner__item:last-child {
    margin-bottom: 0;
  }
  .footer__contact .inner__item::after {
    display: none;
  }
}
.footer__contact .contact__logo {
  padding-bottom: 3rem;
  text-align: center;
}
.footer__contact .contact__logo > a {
  display: inline-block;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .footer__contact .contact__logo img {
    width: 80%;
  }
}
.footer .--tell img {
  max-width: 29px;
  margin: 0 auto;
}
.footer .--email img {
  max-width: 49px;
  margin: 0 auto;
}
.footer .--email .btn {
  min-width: 25rem;
  padding-right: 1.5rem;
  margin-top: 0.5rem;
  border-radius: 10px;
}
.footer .--email .btn::before {
  border-radius: 7px;
}
.footer .--email .btn::after {
  display: none;
}
.footer__main {
  background-color: var(--footer-bg);
  padding: var(--footer-padding-y) 0;
}
.footer__main > .container {
  display: flex;
  gap: 4rem 6rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .footer__main > .container {
    gap: 3rem;
  }
  .footer__main > .container > * {
    max-width: calc((100% - 3rem) / 2);
    flex: 1 0 calc((100% - 3rem) / 2);
  }
}
.footer-nav .list {
  padding-left: 1.5rem;
  margin-top: 0;
}
.footer-nav .list li a {
  font-size: 1.2rem;
}
.footer__copyright {
  text-align: center;
  color: #fff;
  background-color: #000;
  padding: 2rem 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 767.98px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
  .footer__copyright .container {
    padding: 0;
  }
}
@media screen and (min-width: 375px) and (max-width: 480px) {
  .footer__copyright {
    font-size: 1rem;
  }
}
@media screen and (max-width: 374px) {
  .footer__copyright {
    font-size: 0.8rem;
  }
}
.footer__sp {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333333;
  height: 6rem;
  z-index: 50;
}
.footer__sp > * {
  width: 50%;
  text-align: center;
  padding: 1.5rem;
}
.footer__sp > * img {
  max-height: 2.5rem;
}
.footer__sp > *:first-child {
  border-right: 1px solid #fff;
}
@media screen and (min-width: 768px), print {
  .footer__sp {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .footer {
    margin-top: 4rem;
    padding-bottom: 5.8rem;
  }
  .footer__main {
    display: none;
  }
  .footer .back__top {
    right: 5px;
    width: 5rem;
    height: 5rem;
  }
  .footer .back__top::before {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.homepage .footer {
  margin-top: 0;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.hiden-pc {
  display: none !important;
}

.hiden-sp {
  display: none !important;
}

.--col2 {
  display: flex;
  gap: 4rem;
}

.--green {
  color: #188d00;
}

.--red2 {
  color: #7e3b3b;
}

.--yellow {
  color: #af8215;
}

.--blue1 {
  color: #218181;
}

.--pink {
  color: #d13761;
}

a .img img {
  transition: all 0.5s ease 0.2s;
}
a:hover .img img {
  opacity: 0.6;
}

.txt {
  line-height: calc(var(--body-size) * 2.2);
}
.txt strong,
.txt .strong {
  color: #ff0000;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .txt {
    line-height: 1.7;
  }
}
@media screen and (max-width: 767.98px) {
  .txt {
    line-height: 1.5;
  }
  .txt.align-center {
    text-align: left;
  }
}
.txt em {
  font-style: normal;
  font-weight: 700;
}

main {
  position: relative;
}

.page-other__ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem 3rem;
}
.page-other__ttl > span {
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 1.3;
}
.page-other__ttl > span.--spec {
  background: #004498;
  color: #ffffff;
  padding: 1.1rem 1rem;
  min-width: 16rem;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .page-other__ttl {
    margin-bottom: 2rem;
  }
  .page-other__ttl > span {
    font-size: 2.4rem;
  }
  .page-other__ttl > span.--spec {
    padding: 0.7rem 1rem;
  }
}
.page-other .txt {
  font-weight: 500;
}

.scroll {
  position: absolute;
  right: 5%;
  z-index: 10;
  color: #fff;
}
.scroll span {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 400;
}
.scroll span::before, .scroll span::after {
  content: "";
  position: absolute;
  top: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}
.scroll span::before {
  height: 80px;
  width: 1px;
}
.scroll span::after {
  height: 40px;
  width: 3px;
  animation: 1.25s lightrun ease-in-out infinite alternate;
}
@media screen and (max-width: 767.98px) {
  .scroll {
    margin-top: 100px;
  }
  .scroll span::before {
    height: 4rem;
  }
  .scroll span::after {
    height: 2rem;
    animation: 1.25s lightrun_sp ease-in-out infinite alternate;
  }
}
@media screen and (max-width: 575.98px) {
  .scroll {
    display: none;
  }
}

@keyframes lightrun {
  0% {
    top: 3.5rem;
  }
  100% {
    top: 8rem;
  }
}
@keyframes lightrun_sp {
  0% {
    top: 3.5rem;
  }
  100% {
    top: 5.5rem;
  }
}
@font-face {
  font-family: "Yu Mincho";
  src: url("../fonts/YuMincho-Demibold.eot");
  src: url("../fonts/YuMincho-Demibold.eot?#iefix") format("embedded-opentype"), url("../fonts/YuMincho-Demibold.woff2") format("woff2"), url("../fonts/YuMincho-Demibold.woff") format("woff"), url("../fonts/YuMincho-Demibold.ttf") format("truetype"), url("../fonts/YuMincho-Demibold.svg#YuMincho-Demibold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "oriya_sangam_mnbold";
  src: url("../fonts/oriyasangammn-bold-02-webfont.woff2") format("woff2"), url("../fonts/oriyasangammn-bold-02-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  background-color: rgba(251, 246, 199, 0.21);
}

.link {
  color: #2672a4;
}
.link:hover {
  color: #004498;
}

.area-mv {
  padding: 0;
}
.area-mv .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3rem;
  display: flex;
  gap: 0 1.5rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023.98px) {
  .area-mv .slick-dots {
    bottom: 2rem;
  }
}
.area-mv .slick-dots li {
  width: 10px;
  height: 10px;
  display: inline-flex;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.5s ease 0.2s;
  cursor: pointer;
}
.area-mv .slick-dots li button {
  border: none;
  font-size: 0;
  width: 100%;
  display: none;
}
.area-mv .slick-dots li.slick-active {
  background-color: #ff0000;
}
@media screen and (max-width: 575.98px) {
  .area-mv .slick-dots {
    column-gap: 0.7rem;
  }
  .area-mv .slick-dots li {
    width: 8px;
    height: 8px;
  }
}
.area-mv .slide__item {
  position: relative;
}
.area-mv .slide__item .ttl {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Yu Mincho";
  margin-bottom: 2rem;
}
.area-mv .slide__item .txt {
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: "Yu Mincho";
  font-weight: 400;
}
.area-mv .slide__item strong {
  font-weight: 700;
  color: #ff0000;
}
.area-mv .slide__item .txt--other {
  font-size: 3rem;
  font-weight: 700;
}
.area-mv .slide__item.--right .slide__txt > * {
  display: flex;
  justify-content: flex-end;
}
.area-mv .slide__item.--right .content {
  text-orientation: mixed;
  writing-mode: vertical-rl;
  font-family: "Yu Mincho";
  font-weight: 400;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) and (max-width: 1199.98px) {
  .area-mv .slide__item.--right .content {
    padding-right: 10%;
  }
}
.area-mv .slide__item.--right .ttl {
  letter-spacing: 0.2em;
  line-height: inherit;
  margin: 0 0 0 1.5rem;
}
.area-mv .slide__item.--right .ttl::before, .area-mv .slide__item.--right .ttl::after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
@media screen and (min-width: 1024px), print {
  .area-mv .slide__item.--right .ttl {
    margin-left: 5rem;
  }
}
.area-mv .slide__item.--right .txt {
  letter-spacing: 0.2em;
  margin-left: 1rem;
}
.area-mv .slide__item.--center .slide__txt {
  text-align: center;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 10%;
}
.area-mv .slide__item.--center .ttl,
.area-mv .slide__item.--center .txt {
  font-family: var(--body-family);
}
.area-mv .slide__item.--center .ttl {
  font-weight: 700;
}
.area-mv .slide__item.--center .txt--other {
  margin-top: 5rem;
}
@media screen and (min-width: 1024px), print {
  .area-mv .slide__item.--center .ttl {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1024px), print {
  .area-mv .slide__item .ttl {
    font-size: 7rem;
    margin-bottom: 4rem;
  }
  .area-mv .slide__item .txt {
    font-size: 3rem;
    line-height: 1.6;
  }
  .area-mv .slide__item .txt--other {
    margin-top: 10rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .area-mv .slide__item .ttl {
    font-size: 5rem;
  }
  .area-mv .slide__item .txt {
    font-size: 2.2rem;
  }
  .area-mv .slide__item .txt--other {
    font-size: 2.2rem;
    margin-top: 5rem;
  }
  .area-mv .slide__item.--right .ttl {
    margin-left: 2.5rem;
  }
  .area-mv .slide__item.--right .txt {
    margin-left: 1.5rem;
  }
  .area-mv .slide__item.--center .ttl {
    font-size: 3.5rem;
  }
  .area-mv .slide__item.--center .txt--other {
    margin-top: 3.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .area-mv .slide__item .txt--other {
    font-size: 1.5rem;
  }
  .area-mv .slide__item:not(.--right, .--center) .slide__txt > .container {
    min-height: 65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .area-mv .slide__item.--center .ttl {
    font-size: 2.4rem;
  }
  .area-mv .slide__item.--center .txt--other {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .area-mv .slide__item .ttl {
    font-size: 4rem;
  }
  .area-mv .slide__item .txt {
    font-size: 1.8rem;
  }
  .area-mv .slide__item:not(.--right, .--center) .slide__txt > .container {
    min-height: 25%;
  }
}
.area-mv .slide__txt {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  left: 0;
  right: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.area-mv .slide__txt > * {
  width: 100%;
}
.area-mv__carousel .slide__item {
  min-height: 50vh;
  background-color: #f9f9f9;
}
.area-mv__carousel .slide__item img {
  width: 100%;
}
.area-mv__carousel .slide__item .slide__txt {
  opacity: 0;
}
.area-mv__carousel .slick-track {
  transform: none;
}
.area-mv__carousel .slick-track .slick-slide {
  display: block;
}
.area-mv__carousel .slick-track .slick-slide .slide__item {
  min-height: auto;
  background: none;
}
.area-mv__carousel .slick-track .slick-slide .slide__item .slide__txt {
  opacity: 1;
}

section {
  padding: 8rem 0 8rem;
}
@media screen and (max-width: 767.98px) {
  section {
    padding: 5rem 0;
  }
}
section .inner {
  position: relative;
}
section .inner__img img {
  width: 100%;
}
section .inner__txt {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--body-color);
  font-weight: 500;
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  section .inner__txt {
    font-size: 1.6rem;
  }
}
section .inner__txt .ttl {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  section .inner__txt .ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  section .inner__txt .ttl {
    font-size: 2.3rem;
  }
}
section.concept .ttl {
  color: #fff;
}
@media screen and (max-width: 1023.98px) {
  section.concept .ttl {
    margin-bottom: 1.5rem;
  }
}
section.concept .txt {
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1024px), print {
  section.concept .txt {
    max-width: 71%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  section.concept .txt {
    max-width: 85%;
  }
}
@media screen and (max-width: 767.98px) {
  section.concept .txt {
    text-align: left;
  }
}
section.concept .btn {
  display: inline-flex;
  margin-top: 5rem;
  background-color: rgba(255, 255, 255, 0.74);
  color: var(--body-color);
}
section.concept .btn::after {
  border-right-color: var(--body-color);
  border-bottom-color: var(--body-color);
}
section.concept .btn:hover {
  color: #fff;
}
section.concept .btn:hover::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}
@media screen and (min-width: 1024px) and (max-width: 1199.98px) {
  section.concept .txt {
    line-height: 1.6;
  }
  section.concept .btn {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767.98px) {
  section.concept .inner__txt > .container {
    padding: 0 20px;
  }
  section.concept .btn {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 375px) and (max-width: 480px) {
  section.concept .txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 374px) {
  section.concept .txt {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.category-ttl {
  text-align: center;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 6rem;
  margin-bottom: 3rem;
  position: relative;
  color: #333;
  text-transform: uppercase;
  font-family: "oriya_sangam_mnbold", "Source Han Sans JP", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
  letter-spacing: 0.05em;
}
.category-ttl::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 3px;
  height: 4rem;
  background-color: #ff0000;
}
@media screen and (max-width: 767.98px) {
  .category-ttl {
    padding-bottom: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
  }
  .category-ttl::before {
    height: 2rem;
  }
}
@media screen and (max-width: 575.98px) {
  .category-ttl::before {
    width: 2px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .category-ttl {
    font-size: 3.5rem;
  }
}

.category-ttl02 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  position: relative;
  color: #333;
}
.category-ttl02::before {
  content: "";
  width: 22.2rem;
  height: 8px;
  background-color: #303030;
  position: absolute;
  left: 0;
  transform: translateX(0);
  bottom: 0;
}
@media screen and (max-width: 767.98px) {
  .category-ttl02 {
    font-size: 2.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
  }
  .category-ttl02::before {
    height: 4px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .category-ttl02 {
    font-size: 3.5rem;
  }
}

.sub-ttl {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767.98px) {
  .sub-ttl {
    font-size: 1.8rem;
    margin-bottom: 2.7rem;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .sub-ttl {
    font-size: 2.3rem;
  }
}

.works .--col2 {
  gap: 0;
}
.works .inner > * {
  margin-bottom: 3rem;
}
.works .inner > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  .works .inner > * {
    display: flex;
    gap: 0;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .works .inner > *:nth-child(2n+1) {
    flex-direction: column-reverse;
  }
}
.works .inner__item.--txt > a {
  display: block;
  position: relative;
}
.works .inner__item.--txt > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.75);
}
@media screen and (min-width: 768px), print {
  .works .inner__item:nth-child(2n).--txt {
    position: relative;
    z-index: 2;
  }
  .works .inner__item:nth-child(2n).--txt > a::after {
    left: -20px;
    border-right: 20px solid #fff;
  }
  .works .inner__item:nth-child(2n+1).--txt {
    position: relative;
    z-index: 1;
  }
  .works .inner__item:nth-child(2n+1).--txt > a::after {
    right: -20px;
    border-left: 20px solid #fff;
  }
}
.works .inner__item--txt {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.works .inner__item--txt .ttl {
  text-transform: uppercase;
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  padding-bottom: 1.5rem;
  position: relative;
  text-align: center;
  font-family: "oriya_sangam_mnbold", "Source Han Sans JP", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
}
.works .inner__item--txt .ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #ff0000;
}
.works .inner__item--txt .txt {
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 0.5rem;
  line-height: 1.5;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 1024px), print {
  .works .inner__item--txt .txt {
    line-height: 2;
  }
}
@media screen and (max-width: 1023.98px) {
  .works .inner__item--txt .ttl {
    font-size: 3rem;
  }
  .works .inner__item--txt .txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 575.98px) {
  .works .inner__item--txt .ttl {
    font-size: 2.5rem;
  }
  .works .inner__item--txt .txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .works .inner__item.--txt > a::after {
    left: 50%;
    transform: translateX(-50%);
    rotate: 90deg;
  }
  .works .inner__item:nth-child(2n).--txt > a::after {
    top: auto;
    bottom: -20px;
    border-right: 20px solid #fff;
    rotate: 270deg;
    display: none;
  }
  .works .inner__item:nth-child(2n+1).--txt {
    position: relative;
    z-index: 1;
  }
  .works .inner__item:nth-child(2n+1).--txt > a::after {
    top: auto;
    bottom: -40px;
    border-left: 20px solid #fff;
    display: none;
  }
}
.works .inner .btn-action {
  margin-top: 4rem;
}

.import-housing .inner__txt .txt {
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}
@media screen and (min-width: 1200px), print {
  .import-housing .inner__txt .txt {
    max-width: 72%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199.98px) {
  .import-housing .inner__txt .txt {
    max-width: 85%;
  }
}
@media screen and (max-width: 767.98px) {
  .import-housing .inner__txt .txt {
    text-align: left;
  }
}
@media screen and (max-width: 575.98px) {
  .import-housing .inner__txt > .container {
    padding: 0 20px;
  }
  .import-housing .inner__txt .ttl {
    margin-bottom: 1.5rem;
  }
  .import-housing .inner__txt .txt {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 474px) {
  .import-housing .inner__img {
    display: none;
  }
  .import-housing .inner__txt {
    position: relative;
    top: 0;
    transform: none;
  }
  .import-housing .inner__txt .txt {
    font-weight: 500;
    font-size: 1.4rem;
  }
}
.import-housing__style {
  padding-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.import-housing__style--img {
  padding-top: 5rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.import-housing__style--img > * {
  width: calc((100% - 6rem) / 3);
}
.import-housing__style .ttl {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  font-family: "oriya_sangam_mnbold", "Source Han Sans JP", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
}
@media screen and (max-width: 1023.98px) {
  .import-housing__style--img {
    gap: 3rem 2rem;
  }
  .import-housing__style--img > * {
    width: calc((100% - 2rem) / 2);
  }
  .import-housing__style--img .style__item:nth-child(1) {
    order: 1;
  }
  .import-housing__style--img .style__item:nth-child(2) {
    order: 3;
  }
  .import-housing__style--img .style__item:nth-child(3) {
    order: 2;
  }
}
.import-housing__style--ttl {
  display: flex;
  gap: 2rem 3rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 5rem;
}
.import-housing__style--ttl > * {
  width: calc((100% - 6rem) / 3);
}
.import-housing__style--sp {
  display: none;
  padding-top: 5rem;
}
@media screen and (max-width: 767.98px) {
  .import-housing__style--img {
    padding-top: 0;
  }
  .import-housing__style .ttl {
    font-size: 2rem;
  }
  .import-housing__style--sp {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .import-housing__style--ttl {
    gap: 2rem;
  }
  .import-housing__style--ttl > * {
    width: calc((100% - 4rem) / 3);
  }
}
@media screen and (max-width: 575.98px) {
  .import-housing__style--ttl {
    gap: 1rem;
  }
  .import-housing__style--ttl > * {
    width: calc((100% - 2rem) / 3);
  }
  .import-housing__style .ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 375px) {
  .import-housing__style .ttl {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 1024px), print {
  .support {
    padding: 16rem 0;
  }
  .support .btn-action {
    margin-top: 6rem;
  }
}
.support .figure-box {
  background: none !important;
}
@media screen and (min-width: 1200px), print {
  .support .figure-box {
    max-width: 76%;
    margin: 0 auto;
  }
  .support .figure-box.__txt .figure-box--txt {
    padding: 0 !important;
  }
  .support .figure-box--img {
    width: 40.2rem;
    max-width: 402px;
  }
}
.support .figure-box--txt::before {
  display: none;
}
.support .figure-box::after {
  display: none;
}

.news {
  background-color: #fff;
}
@media screen and (min-width: 1024px), print {
  .news {
    padding: 10rem 0 8rem;
  }
}
.news .sub-ttl {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1200px), print {
  .news .category-ttl02 {
    padding-left: 3rem;
  }
  .news .sub-ttl {
    padding-left: 6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .news .sub-ttl {
    text-align: center;
    font-weight: 500;
  }
}
.news__list {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 1200px), print {
  .news__list {
    padding-left: calc((100% - 12rem) / 5);
  }
}
.news__list .list-item {
  font-size: calc(var(--body-size) - 0.2rem);
  max-width: calc((100% - 12rem) / 4);
}
.news__list .list-item .img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.news__list .list-item .img img {
  border-radius: 5px;
}
.news__list .list-item .date {
  display: block;
  font-weight: 700;
}
.news__list .list-item .ttl {
  margin-top: 1.2rem;
  display: block;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .news__list {
    gap: 4rem 2rem;
  }
  .news__list .list-item {
    max-width: calc((100% - 6rem) / 4);
    flex: 1 0 calc((100% - 6rem) / 4);
  }
}
@media screen and (max-width: 767.98px) {
  .news__list {
    gap: 4rem 3rem;
  }
  .news__list .list-item {
    max-width: calc((100% - 3rem) / 2);
    flex: 1 0 calc((100% - 3rem) / 2);
  }
  .news__list .list-item .img {
    margin-bottom: 1rem;
  }
  .news__list .list-item .ttl {
    margin-top: 0.5rem;
  }
}

.page-title {
  position: relative;
  margin-bottom: 8rem;
}
.page-title__txt {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .page-title__txt {
    font-size: 1.6rem;
  }
}
.page-title__txt .ttl {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .page-title__txt .ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .page-title__txt .ttl {
    font-size: 2.4rem;
  }
}
.page-title__txt .txt {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px), print {
  .page-title__txt .txt {
    max-width: 71%;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title__txt > .container {
    padding: 0 20px;
  }
  .page-title__txt .ttl {
    margin-bottom: 1rem;
  }
  .page-title__txt .txt {
    margin-top: 1rem;
    font-size: 1.4rem;
    text-align: left;
  }
}
.page-title.--no-title {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  margin-bottom: 0;
}
.page-title.--no-title + .container {
  padding-top: 9%;
}
.page-title.--no-title + .container .category-ttl {
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .page-title.--no-title + .container {
    padding-top: 10%;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title.--no-title + .container {
    padding-top: 6%;
  }
}
.page-title img {
  width: 100%;
}

@media screen and (max-width: 1023.98px) {
  .hidden-sp {
    display: none;
  }
}

:root {
  --lv1-size: 2.8rem;
  --lv1-line-height: calc(var(--lv1-size) * 1.4);
  --lv2-size: 2.4rem;
  --lv2-line-height: calc(var(--lv2-size) * 1.4);
  --lv3-size: 2rem;
  --lv3-line-height: calc(var(--lv3-size) * 1.5);
  --lv4-size: 1.8rem;
  --lv4-line-height: calc(var(--lv4-size) * 1.5);
  --lv5-size: 1.6rem;
  --lv5-line-height: calc(var(--lv5-size) * 1.5);
}

.mvArea {
  position: relative;
  margin-bottom: 1.5rem;
}
.mvArea-ttl {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
}
.mvArea-ttl > * {
  flex: 1;
}
.mvArea-ttl .ttl {
  text-align: center;
  font-size: 3.2rem;
  color: #fff;
  font-weight: 600;
}

.ttl {
  font-weight: 500;
}

.mvArea + .nav-breadcrumb {
  margin-top: 1.5rem;
}

.nav-breadcrumb + * {
  margin-top: 3rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb-item {
  padding: 0 1.5rem;
  position: relative;
}
.breadcrumb-item > a {
  color: #2672a4;
}
.breadcrumb-item > a:hover {
  color: #004498;
}
.breadcrumb-item:first-child {
  padding-left: 0;
}
.breadcrumb-item:last-child {
  padding-right: 0;
}
.breadcrumb-item:last-child::after {
  display: none;
}
.breadcrumb-item::after {
  display: inline-block;
  width: 5px;
  height: 5px;
  content: "";
  border-right: 1px solid #363636;
  border-bottom: 1px solid #363636;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.--lang ul {
  display: none;
}

.img-thumbnail {
  padding: 0.5rem;
  background: #fff;
  border: 1px solid #fff;
}

.img-box .img {
  position: relative;
  display: block;
  overflow: hidden;
}
.img-box .img::before {
  display: block;
  width: 100%;
  padding-top: 75%;
  content: "";
}
.img-box .img > img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  text-align: center;
  transform: translate(-50%, -50%);
}
.img-box .border-inner {
  border: 1px solid #707070;
  text-align: center;
}

.figure-box {
  list-style: none;
  margin: 0;
  padding: 0;
}
.figure-box--img {
  flex-shrink: 0;
  width: 55.4rem;
  max-width: 554px;
  margin-right: 3rem;
  float: left;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1200px), print {
  .figure-box--img {
    margin-right: 6rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199.98px) {
  .figure-box--img {
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .figure-box--img {
    max-width: 350px;
  }
}
@media screen and (max-width: 767.98px) {
  .figure-box--img {
    float: none !important;
    margin: 3rem 0 0 !important;
    max-width: 100%;
    width: 100%;
  }
}
.figure-box.__txt {
  overflow: hidden;
  position: relative;
  padding: 5rem 0;
}
.figure-box.__txt.--right .figure-box--img {
  float: right;
  margin-left: 3rem;
  margin-right: 0;
}
@media screen and (min-width: 1200px), print {
  .figure-box.__txt.--right .figure-box--img {
    margin-left: 6rem;
  }
}
.figure-box.__txt.--small .figure-box--img {
  max-width: 272px;
  width: 27.2rem;
}
.figure-box.__txt.--small .figure-box--img .img::before {
  padding-top: 66.66666%;
}
.figure-box.__txt .ttl {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767.98px) {
  .figure-box.__txt .ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .figure-box.__txt .ttl {
    font-size: 2.2rem;
  }
}
.figure-box.__txt .txt {
  line-height: 2;
  font-weight: 500;
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .figure-box.__txt .txt {
    font-size: 1.6rem;
  }
}
.figure-box.__txt .btn {
  min-width: 25rem;
  border-radius: 10px;
}
.figure-box.__txt .btn::before {
  border-radius: 7px;
}
@media screen and (max-width: 767.98px) {
  .figure-box.__txt {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 1200px), print {
  .figure-box .figure-box--txt {
    padding-right: 9rem;
    padding-top: 9rem;
  }
  .figure-box.--right .figure-box--txt {
    padding-right: 0;
    padding-left: 9rem;
  }
}
.figure-box--sp {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .figure-box {
    padding: 4rem 0;
  }
  .figure-box--sp {
    display: block;
  }
  .figure-box--sp .sub-ttl {
    text-align: center;
  }
}

.figure {
  display: block;
  width: 100%;
  position: relative;
}

.figure-img {
  line-height: 1;
}

:root {
  --table-color: var(--body-color);
  --table-bg: transparent;
  --table-border-color: #707070;
}

.table__wrap {
  margin-top: 2rem;
}
.table__wrap .table.--scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  word-break: break-all;
}
.table__wrap .table.--scroll table {
  min-width: 80rem;
}
.table__wrap .table.--fixed table tr th:first-child {
  width: 25%;
  max-width: 250px;
}

table {
  width: 100%;
  color: var(--table-color);
  vertical-align: middle;
  border: 1px solid var(--table-border-color);
}
table > :not(caption) > * > * {
  padding: 1rem 1rem;
  background-color: var(--table-bg);
  border-bottom-width: 1px;
}
table > tbody {
  vertical-align: inherit;
}
table > thead {
  vertical-align: bottom;
}
table tr th {
  background-color: #ebf2f6;
  border-right: 1px solid var(--table-border-color);
}
table tr td {
  border-right: 1px solid var(--table-border-color);
}

.table__caption {
  margin-top: 1rem;
}

@media screen and (max-width: 767.98px) {
  .table.--fixed table th,
.table.--fixed table td {
    width: 100%;
    display: block;
  }
}
.list {
  margin-top: 2rem;
}
.list__item {
  margin-top: 1rem;
  position: relative;
}
.list__item:first-child {
  margin-top: 0;
}
.list__item .list {
  margin-top: 0;
}
.list__item .list:not(.--disc) {
  margin-left: 2rem;
}
.list.--disc > li {
  padding-left: 14px;
}
.list.--disc > li::before {
  width: 4px;
  height: 4px;
  background: var(--body-color);
  border-radius: 20px;
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  content: "";
}
.list.--decimal {
  counter-reset: list-cnt;
}
.list.--decimal > li {
  padding-left: 30px;
}
.list.--decimal > li::before {
  width: 2.4rem;
  content: counter(list-cnt) ".";
  counter-increment: list-cnt;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.accordion {
  margin-top: 2.8rem;
}
.accordion__item {
  margin-top: 2rem;
}
.accordion__item:first-child {
  margin-top: 0;
}
.accordion--title {
  padding: 1.5rem 1.5rem;
  background: #2672a4;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: calc(1.8rem * 1.5);
  position: relative;
  padding-right: calc((1.5rem + 1.5rem) * 2);
  cursor: pointer;
  border: 2px solid #2672a4;
}
.accordion--title::after {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 2.25rem;
  top: 46%;
  transform: translateY(-46%) rotate(45deg);
  transition: all 0.5s ease 0.2s;
  cursor: pointer;
}
.accordion--collapse {
  border: 2px solid #2672a4;
  padding: 1.5rem 1.5rem;
  display: none;
}

.--faq .accordion--title {
  border-color: #ccc;
  border-left: 5px solid #004498;
  color: #333;
  background: #fff;
  position: relative;
  padding-left: calc((20px + 1.5rem) * 1.5);
}
.--faq .accordion--title::after {
  border-right-color: #333;
  border-bottom-color: #333;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.--faq .accordion--title::before {
  display: block;
  width: 20px;
  height: 29px;
  content: "";
  background: url(../img/Q.png) no-repeat 0 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.5rem;
}
.--faq .accordion--collapse {
  border-color: #ccc;
  border-top: none;
}

.btn-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.btn {
  background-color: rgba(51, 51, 51, 0.74);
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-right: calc((1.5rem + 1rem) * 1.5);
  text-transform: uppercase;
  color: #fff;
  transition: all 0.5s ease 0.2s;
  min-height: 5rem;
  min-width: 25rem;
  border: none;
}
@media screen and (min-width: 1024px), print {
  .btn {
    min-height: 7rem;
    min-width: 31.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .btn {
    min-height: 6rem;
    min-width: 28rem;
  }
}
@media screen and (max-width: 575.98px) {
  .btn {
    min-height: 4rem;
    font-size: 1.3rem;
    width: 100%;
  }
}
.btn > span {
  position: relative;
  z-index: 1;
}
.btn::after {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.5s ease 0.2s;
  cursor: pointer;
  z-index: 5;
}
.btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #004498;
  transition: all 0.5s ease 0.2s;
  width: 0;
  z-index: 0;
}
.btn:hover {
  color: #fff;
}
.btn:hover::before {
  width: 100%;
}
.btn:hover::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.btn.--primary {
  background-color: #2672a4;
}

input.btn {
  transition: all 0.5s ease 0.2s;
  padding-right: 1.5rem;
}
input.btn::before, input.btn::after {
  display: none;
}
input.btn:not(:disabled):hover {
  background-color: #004498;
}
input:disabled {
  cursor: default;
  opacity: 0.7;
}

.iframe-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.iframe-inner > iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
}

.iframe-caption {
  font-size: calc(var(--body-size) - 0.2rem);
  margin-top: 0;
}

.anchor-box {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2rem;
}
.anchor-box--item {
  position: relative;
}
.anchor-box--item::after {
  width: 0.9rem;
  height: 0.9rem;
  content: "";
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.fieldset-row {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}
@media screen and (min-width: 1024px), print {
  .fieldset-row {
    margin-top: 6rem;
  }
}
.fieldset label {
  font-weight: 500;
  margin: 0 0 1rem;
  display: flex;
  gap: 0.5rem 1rem;
  align-items: center;
  color: #707070;
}
.fieldset label sub {
  font-weight: 500;
  color: #ff3232;
  font-size: 1.4rem;
}
.fieldset .--checkbox label {
  position: relative;
}
.fieldset .--checkbox label input {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  min-height: auto;
}
@media screen and (min-width: 768px), print {
  .fieldset .--checkbox label {
    font-size: 2rem;
  }
  .fieldset .--checkbox label input {
    width: 26px;
    height: 26px;
  }
}
.fieldset .--textarea textarea {
  min-height: 14rem;
}
.fieldset .field-control {
  border: 1px solid #707070;
  background: #fff;
  min-height: 4rem;
  border-radius: 10px;
  padding: 0.7rem 1.5rem;
}
.fieldset .field-control::placeholder, .fieldset .field-control:-moz-placeholder, .fieldset .field-control::-ms-input-placeholder {
  color: #b3b3b3;
}
@media screen and (min-width: 768px), print {
  .fieldset label {
    font-size: 2.6rem;
    gap: 0.5rem 2rem;
  }
  .fieldset label sub {
    font-size: 1.8rem;
  }
  .fieldset .field-control {
    min-height: 6rem;
    font-size: 2rem;
    padding: 1rem 2rem;
  }
}

.concept .figure-box {
  padding: 4rem 0;
}
.concept .figure-box.__txt {
  counter-increment: section;
}
@media screen and (min-width: 768px), print {
  .concept .figure-box.__txt .ttl {
    font-size: 3.2rem;
  }
  .concept .figure-box.__txt .txt {
    font-size: 1.6rem;
  }
}
.concept .figure-box--txt {
  position: relative;
  z-index: 2;
  padding-top: 5%;
}
.concept .figure-box--txt::before {
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -20px;
  z-index: 1;
  content: counter(section);
  font-family: "Adobe Ming Std", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28rem;
  line-height: 1;
  opacity: 0.1;
  font-weight: lighter;
}
@media screen and (min-width: 768px), print {
  .concept .figure-box {
    padding: 8rem 0;
  }
  .concept .figure-box:nth-child(odd) .figure-box--txt::before {
    left: 20%;
    transform: translateX(-20%);
  }
  .concept .figure-box:nth-child(even) .figure-box--txt::before {
    left: auto;
    right: 9%;
    transform: translateX(-9%);
  }
}
@media screen and (max-width: 767.98px) {
  .concept .figure-box--txt {
    padding-top: 18%;
  }
  .concept .figure-box::after {
    background-size: contain !important;
    width: 100% !important;
    left: 0 !important;
    right: auto;
  }
  .concept .figure-box:nth-child(1)::after, .concept .figure-box:nth-child(2)::after, .concept .figure-box:nth-child(4)::after {
    bottom: 15%;
  }
}
@media screen and (max-width: 575.98px) {
  .concept .figure-box--txt::before {
    font-size: 16rem;
    top: 0;
  }
}

.company__info {
  margin-top: 3rem;
}
.company__info dl {
  border-top: 1px solid #707070;
  display: flex;
  gap: 0 4rem;
  line-height: 2;
  font-weight: 500;
}
.company__info dl:last-child {
  border-bottom: 1px solid #707070;
}
.company__info dl > * {
  padding: 1rem 0;
  margin: 0;
}
.company__info dl dt {
  min-width: 15%;
  max-width: 150px;
  font-weight: 500;
}
@media screen and (max-width: 575.98px) {
  .company__info dl {
    display: block;
    padding: 1rem 0;
  }
  .company__info dl > * {
    padding: 0.5rem 0;
  }
  .company__info dl dt {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .company__info {
    max-width: calc(100% - 32rem);
    flex: 1 0 calc(100% - 32rem);
    margin-top: 0;
  }
  .company__info dl {
    font-size: calc(var(--body-size) - 0.2rem);
  }
  .company__info dl > * {
    padding: 1.8rem 0;
  }
  .company__info dl dt {
    min-width: 22%;
  }
}
.company__img {
  text-align: center;
}
.company__img img {
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  .company__inner {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
  }
  .company__img {
    max-width: 300px;
    width: 30rem;
  }
}

.works__inner {
  padding-bottom: 8rem;
}

.renovation {
  padding-top: 8rem;
}

.pickup__list {
  display: flex;
  gap: 7rem 3rem;
  flex-wrap: wrap;
  margin-top: 7rem;
}
.pickup__list:first-child {
  margin-top: 0 !important;
}
.pickup__list--item {
  width: calc((100% - 6rem) / 3);
  display: inline-flex;
  justify-content: space-between;
  flex-direction: column;
}
.pickup__list .img {
  display: flex;
  margin-bottom: 2.4rem;
}
.pickup__list .img img {
  border-radius: 10px;
}
.pickup__list .ttl {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pickup__list .label {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .pickup__list .ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .pickup__list {
    gap: 3rem;
    margin-top: 6rem;
  }
  .pickup__list > * {
    width: calc((100% - 3rem) / 2);
  }
  .pickup__list .ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 575.98px) {
  .pickup__list .img {
    margin-bottom: 1.4rem;
  }
  .pickup__list .label {
    margin-top: 0.7rem;
  }
}
.pickup__detail {
  background-color: #3c3c3c;
}
.pickup__detail--img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.pickup__detail--txt {
  padding: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 5rem;
}
@media screen and (min-width: 1200px), print {
  .pickup__detail--txt {
    padding: 8rem 10%;
  }
}
.pickup__detail--txt .ttl {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  flex: 1;
}
@media screen and (max-width: 767.98px) {
  .pickup__detail--txt .ttl {
    font-size: 1.8rem;
  }
}
.pickup__detail--txt .url {
  display: flex;
  align-items: flex-end;
  max-width: 34rem;
}
.pickup__detail--txt .url a {
  color: #949393;
}
.pickup__detail--txt .url a:hover {
  color: #fff;
}
@media screen and (max-width: 1023.98px) {
  .pickup__detail--txt .url a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .pickup__detail--txt {
    column-gap: 3rem;
  }
  .pickup__detail--txt .url {
    max-width: 26rem;
  }
}
@media screen and (max-width: 767.98px) {
  .pickup__detail--txt {
    flex-direction: column;
  }
}
@media screen and (max-width: 575.98px) {
  .pickup__detail--txt {
    padding: 3rem 2rem;
    row-gap: 1.5rem;
  }
}
.pickup__thumb {
  margin-top: 8rem;
  padding-bottom: 12rem;
}
.pickup__thumb .img {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}
@media screen and (max-width: 767.98px) {
  .pickup__thumb .img {
    margin-top: 4rem;
  }
}
.pickup__related {
  background-color: #fff;
  padding: 10rem 0;
  position: relative;
}
.pickup__related--item {
  padding: 0 1rem;
}
.pickup__related .img {
  margin-bottom: 1.5rem;
}
.pickup__related .img img {
  border-radius: 10px;
}
.pickup__related .ttl {
  font-weight: 700;
  font-size: calc(var(--body-size) - 0.2rem);
  line-height: 1.3;
}
.pickup__related .label {
  margin-top: 1rem;
}
.pickup__related .label > span {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}
.pickup__related .slick-list {
  overflow: visible;
}
.pickup__related .slick-slide {
  position: relative;
  opacity: 0.7;
  transition: all 0.5s ease 0.2s;
}
.pickup__related .slick-slide::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.5s ease 0.2s;
}
.pickup__related .slick-slide.slick-active {
  opacity: 1;
}
.pickup__related .slick-slide.slick-active::before {
  background-color: transparent;
}
.pickup__related .slick-slide.slick-active > div {
  position: relative;
  z-index: 1;
}
.pickup__related .slick-arrow {
  font-size: 0;
  width: 6rem;
  height: 6rem;
  padding: 0;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 38%;
  transform: translateY(-38%);
  z-index: 10;
}
.pickup__related .slick-arrow::before {
  content: "";
  width: 4rem;
  height: 4rem;
  border-top: 7px solid #000;
  border-right: 7px solid #000;
}
.pickup__related .slick-arrow.slick-prev {
  left: 0;
}
.pickup__related .slick-arrow.slick-prev::before {
  rotate: -135deg;
}
.pickup__related .slick-arrow.slick-next {
  right: 0;
}
.pickup__related .slick-arrow.slick-next::before {
  rotate: 45deg;
}
@media screen and (min-width: 1500px) {
  .pickup__related .slick-arrow.slick-prev {
    left: -10%;
  }
  .pickup__related .slick-arrow.slick-next {
    right: -10%;
  }
}
@media screen and (min-width: 1320px) and (max-width: 1499px) {
  .pickup__related .slick-arrow {
    top: 35%;
    transform: translateY(-35%);
  }
  .pickup__related .slick-arrow.slick-prev {
    left: -4%;
  }
  .pickup__related .slick-arrow.slick-next {
    right: -4%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1319px) {
  .pickup__related .slick-arrow {
    top: 35%;
    transform: translateY(-35%);
  }
  .pickup__related .slick-arrow::before {
    width: 3rem;
    height: 3rem;
  }
  .pickup__related .slick-arrow.slick-prev {
    left: -20px;
  }
  .pickup__related .slick-arrow.slick-next {
    right: -20px;
  }
}
@media screen and (max-width: 1199.98px) {
  .pickup__related .slick-arrow {
    width: 4rem;
    height: 4rem;
    top: 35%;
    transform: translateY(-35%);
  }
  .pickup__related .slick-arrow::before {
    width: 2.5rem;
    height: 2.5rem;
    border-top-width: 4px;
    border-right-width: 4px;
  }
}

.label > span {
  display: inline-flex;
  background-color: #fff;
  border: 1px solid transparent;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.7rem 1.5rem;
}

.--jutaku .label > span {
  color: #188d00;
  border-color: #188d00;
}

.--iryo-shisetsu .label > span {
  color: #218181;
  border-color: #218181;
}

.--kokyo-shisetsu .label > span {
  color: #af8215;
  border-color: #af8215;
}

.--yunyu-jutaku .label > span {
  color: #d13761;
  border-color: #d13761;
}

.works .footer {
  margin-top: 0;
}

.import-house__inner .figure-box {
  padding: 4rem 0;
  margin: 0;
  border-bottom: 2px dotted #707070;
}
@media screen and (min-width: 1200px), print {
  .import-house__inner .figure-box--img {
    width: 66rem;
    max-width: 660px;
  }
}
.import-house__inner .figure-box--img .--col2 {
  gap: 0;
}
.import-house__inner .figure-box--img .--col2 > * {
  max-width: 50%;
}
.import-house__inner .figure-box--img .--col3 {
  gap: 0;
}
.import-house__inner .figure-box--img .--col3 > * {
  max-width: 33.33333%;
}
.import-house__inner .figure-box:nth-child(odd) .figure-box--img .ttl {
  color: #7e3b3b;
}
.import-house__inner .figure-box:nth-child(even) .figure-box--img .ttl {
  color: #188d00;
}
.import-house__inner .figure-box .ttl {
  font-family: "oriya_sangam_mnbold", "Source Han Sans JP", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
  line-height: 1;
}
.import-house__inner .figure-box .sub-ttl {
  font-size: 1.8rem;
}
.import-house__inner .figure-box .txt {
  color: #707070;
}
@media screen and (min-width: 1024px), print {
  .import-house__inner .figure-box {
    padding: 8rem 0;
  }
  .import-house__inner .figure-box .ttl {
    font-size: 5rem;
  }
  .import-house__inner .figure-box .sub-ttl {
    font-size: 2.6rem;
  }
  .import-house__inner .figure-box .txt {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .import-house__inner .figure-box .ttl {
    margin-bottom: 2rem;
  }
  .import-house__inner .figure-box .sub-ttl {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 768px), print {
  .import-house__inner .figure-box:first-child {
    padding-top: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .import-house__inner .figure-box {
    display: block;
    border-top: 2px dotted #707070;
  }
  .import-house__inner .figure-box .figure-box--img {
    margin: 0 0 3rem !important;
  }
  .import-house__inner .figure-box .ttl {
    font-size: 2.2rem;
  }
  .import-house__inner .figure-box--txt .ttl,
.import-house__inner .figure-box--txt .sub-ttl {
    display: none;
  }
}

.other {
  padding-top: 8rem;
}
.other .category-ttl {
  font-size: 3.5rem;
  line-height: 1.3;
  padding-bottom: 0;
}
.other .category-ttl::before {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .other .category-ttl {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1024px), print {
  .contact-form {
    max-width: 80%;
    margin: 6rem auto 0;
  }
}
.contact-form .fieldset .termsAndConditions {
  padding: 3rem 2rem 3rem 3rem;
  max-height: 30rem;
  overflow-y: scroll;
  font-size: calc(var(--body-size) - 0.2rem);
  border-radius: 10px;
}
.contact-form .fieldset .termsAndConditions .ttl {
  font-weight: 700;
  line-height: 1.7;
  font-size: calc(var(--body-size) - 0.2rem);
  margin-top: 3.5rem;
}
.contact-form .fieldset .termsAndConditions .ttl:first-child {
  margin-top: 0;
}
.contact-form .fieldset .termsAndConditions .ttl + .txt {
  margin-top: 0;
}
.contact-form .fieldset .termsAndConditions .txt {
  line-height: 1.7;
  margin-top: 3.5rem;
}
.contact-form .fieldset .termsAndConditions .list {
  margin-top: 3.5rem;
}
.contact-form .fieldset .termsAndConditions::-webkit-scrollbar, .contact-form .fieldset .termsAndConditions::-webkit-scrollbar-thumb {
  width: 40px;
  height: 20rem;
  border-radius: 30px;
  background-clip: padding-box;
  border: 10px solid transparent;
}
.contact-form .fieldset .termsAndConditions::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0 10px #d6d6d6;
}
@media screen and (max-width: 767.98px) {
  .contact-form .fieldset .termsAndConditions {
    padding: 2rem 1rem 2rem 2rem;
    font-size: 1.4rem;
  }
  .contact-form .fieldset .termsAndConditions::-webkit-scrollbar, .contact-form .fieldset .termsAndConditions::-webkit-scrollbar-thumb {
    width: 30px;
    height: 15rem;
  }
  .contact-form .fieldset .termsAndConditions .ttl {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 2rem;
  }
  .contact-form .fieldset .termsAndConditions .txt {
    margin-top: 2rem;
    line-height: 1.5;
  }
  .contact-form .fieldset .termsAndConditions .list {
    margin-top: 2rem;
  }
}
.contact-form .fieldset .--checkbox > label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact .footer__contact .category-ttl02 {
  display: none;
}
.contact .footer__contact .inner__item {
  width: 100%;
  padding: 0;
}
.contact .footer__contact .inner__item:not(.--tell) {
  display: none;
}
.contact .footer__contact .inner__item::after {
  display: none;
}

.confirm-form {
  margin-top: 2rem;
}
@media screen and (min-width: 1024px), print {
  .confirm-form {
    max-width: 80%;
    margin: 6rem auto 0;
  }
}
.confirm-form .fieldset-row {
  display: flex;
  gap: 1rem 5rem;
  flex-direction: row;
  margin: 0;
  border-bottom: 1px solid #ccc;
  padding: 1.5rem 0;
}
.confirm-form .fieldset-row > * {
  margin: 0;
}
.confirm-form .fieldset-row label {
  color: var(--body-color);
  font-size: 2rem;
  min-width: 20%;
  max-width: 200px;
}
.confirm-form .fieldset-row .txt {
  color: #707070;
}
.confirm-form .btn-action {
  margin-top: 4rem;
  column-gap: 4rem;
}
@media screen and (max-width: 575.98px) {
  .confirm-form .btn-action {
    justify-content: space-between;
  }
  .confirm-form .btn-action .btn {
    width: auto;
    min-width: calc((100% - 4rem) / 2);
  }
}
@media screen and (max-width: 767.98px) {
  .confirm-form .fieldset-row {
    flex-direction: column;
    padding: 1rem 0;
    gap: 0.5rem 0;
  }
  .confirm-form .fieldset-row label {
    font-size: 1.8rem;
  }
  .confirm-form .btn-action {
    margin-top: 2rem;
  }
}

@media print {
  *,
*::before,
*::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  .header {
    display: none !important;
  }
  .footer {
    display: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  tr,
img {
    page-break-inside: avoid;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
h3 {
    page-break-after: avoid;
  }
  body {
    min-width: 992px !important;
    -webkit-print-color-adjust: exact;
    size: A4 portrait;
    top: 0 !important;
    left: 0 !important;
    page-break-before: auto;
    page-break-after: auto;
    margin: 0px;
  }
  .container {
    min-width: 992px !important;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
.table th {
    background-color: #fff !important;
  }
  .table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .concept .inner,
.import-housing .inner,
.page-title,
.works .inner__item:not(.--txt),
.figure-box--img,
.works .inner__item.--txt,
.figure-box--txt,
.import-housing__style .inner__item img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .figure-box {
    max-width: 100% !important;
  }
  .figure-box--img {
    max-width: 50% !important;
  }
  .works .inner__item--txt .ttl {
    font-size: 4rem;
  }
  @page {
    size: a4;
    margin: 12.7mm 9.7mm;
    margin: 0px;
  }
}

/*# sourceMappingURL=styles.css.map */
