@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
         -o-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

img {
  width: 100%;
}

.c-bottomNav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 1em;
  padding: 0;
}
.c-bottomNav li {
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-bottomNav li a {
  display: block;
  padding: 0 10px;
  border-right: solid 1px #CCC;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}
.c-bottomNav li a:hover {
  text-decoration: underline;
}
.c-bottomNav li:first-child a {
  border-left: solid 1px #CCC;
}

.c-groupLink a {
  display: block;
  background-color: #000D2A;
  color: #FFF;
  text-decoration: none;
  padding: 30px 10px;
  position: relative;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.c-groupLink a:hover {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: #102758;
}
.c-groupLink a::after {
  content: "";
  display: block;
  width: 50px;
  height: 25px;
  background: url(../img/common/footer_arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-groupLink a::after {
    width: 30px;
    height: 20px;
  }
}
.c-groupLink__ja {
  display: block;
  text-align: center;
  font-size: 22px;
}
@media screen and (max-width: 960px) {
  .c-groupLink__ja {
    font-size: 19px;
  }
}
@media screen and (max-width: 768px) {
  .c-groupLink__ja {
    font-size: 17px;
  }
}
.c-groupLink__en {
  display: block;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .c-groupLink__en {
    font-size: 13px;
  }
}

.c-boxTitle {
  width: 160px;
  height: 160px;
  border: solid 1px #000D2A;
  text-align: center;
  font-weight: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-boxTitle--white {
  border: solid 1px #FFF;
}
.c-boxTitle__main {
  display: block;
  font-size: 26px;
  line-height: 1.1em;
  margin-bottom: 10px;
}
.c-boxTitle__main--white {
  color: #FFF;
}
.c-boxTitle__sub {
  display: block;
  font-size: 14px;
}
.c-boxTitle__sub--white {
  color: #FFF;
}
.c-boxTitle__num {
  border-top: solid 2px #000D2A;
  margin: 10px 30px 0;
  line-height: 1em;
  padding-top: 10px;
}

.c-boxLink {
  display: block;
  border: solid 1px #000;
  padding: 5px;
  font-size: 14px;
  color: #000;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.c-boxLink:hover {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: #eeeeee;
}
.c-boxLink::after {
  position: absolute;
  content: "";
  display: block;
  width: 40px;
  height: 25px;
  background: url(../img/common/link_arrow_b.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: -10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-boxLink--reverse::after {
  right: auto;
  left: -10px;
  -webkit-transform: scaleX(-1) translateY(-50%);
      -ms-transform: scaleX(-1) translateY(-50%);
          transform: scaleX(-1) translateY(-50%);
}

.c-estateInfo h2 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
}
.c-estateInfo dl {
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.c-estateInfo dl dt {
  width: 5em;
  background-color: #000D2A;
  margin-right: 10px;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  padding: 5px;
}
.c-estateInfo dl dd {
  padding: 5px;
}
.c-estateInfo__new {
  position: relative;
}
.c-estateInfo__new::after {
  position: absolute;
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background: url(../img/top/new.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.c-estateInfo__link {
  margin-top: 30px;
}

.c-closeBtn {
  display: block;
  position: fixed;
  width: 50px;
  height: 50px;
  background: rgba(0, 13, 42, 0.8);
  top: 0;
  right: 0;
  cursor: pointer;
}
.c-closeBtn::before, .c-closeBtn::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 50%;
  width: 1px;
  height: 25px;
  background: #fff;
}
.c-closeBtn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-closeBtn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.c-closeBtn__text {
  position: absolute;
  font-size: 10px;
  bottom: 3px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #FFF;
}

.c-bottomLink {
  max-width: 250px;
  margin: 100px auto;
  padding: 0 10px;
}

.c-pageTitle {
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  .c-pageTitle {
    margin: 60px auto;
  }
}

.c-pageSubTitle {
  padding: 0 10px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 1.5em;
  letter-spacing: 0.3em;
}

.c-loading {
  width: 100vw;
  height: 100vh;
  background-color: #000D2A;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFF;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.c-loading img {
  width: 64px;
  margin: 0 auto;
}

.p-slide {
  position: relative;
  margin-bottom: 60px;
}
.p-slide__cap {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.p-slide__cap--animate {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
.p-slide__cap img {
  width: 100vw !important;
  max-width: none;
}
@-webkit-keyframes fadeInAnime {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes fadeInAnime {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.p-slide__slider {
  display: none;
}
.p-slide__slider--show {
  display: block;
}
.p-slide__sliderText {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFF;
  font-size: 30px;
  font-weight: bold;
  font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  width: 100%;
  max-width: 20em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-slide__sliderText {
    font-size: 18px;
  }
}
.p-slide__sliderMain {
  margin: 0;
  padding: 0;
}
.p-slide__sliderMain li {
  list-style: none;
}
.p-slide__imgWrap {
  height: calc(100vh - 64px);
}
@media screen and (max-width: 1280px) {
  .p-slide__imgWrap {
    height: calc(100vh - 200px);
  }
}
@media screen and (max-width: 960px) {
  .p-slide__imgWrap {
    height: calc(100vh - 360px);
  }
}
.p-slide__imgWrap img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: calc(100vh - 64px);
}
@media screen and (max-width: 1280px) {
  .p-slide__imgWrap img {
    height: calc(100vh - 200px);
  }
}
@media screen and (max-width: 960px) {
  .p-slide__imgWrap img {
    height: calc(100vh - 360px);
  }
}

.p-footer__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-footer__links {
    display: block;
    margin-bottom: 30px;
  }
}
.p-footer__groupLinks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-footer__groupLinks {
    display: block;
  }
}
.p-footer__groupLink {
  width: 100%;
  max-width: 500px;
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .p-footer__groupLink {
    padding: 0 10px;
    margin: 10px 0;
  }
}
.p-footer__logo {
  padding: 0 10px;
  width: 380px;
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    width: 100%;
  }
}
.p-footer__addr {
  padding: 0 10px;
  text-align: center;
  font-size: 14px;
}
.p-footer__tel {
  text-align: center;
  margin-bottom: 30px;
}
.p-footer__tel a {
  text-decoration: none;
  color: #000;
  font-size: 35px;
  cursor: text;
}
@media screen and (max-width: 768px) {
  .p-footer__pages {
    margin-bottom: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-footer__sns {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-footer__sns {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-footer__sns li {
  list-style-type: none;
  margin: 0 5px;
}
.p-footer__sns li img {
  width: 30px;
}
.p-footer__copy {
  background-color: #000D2A;
  color: #FFF;
  padding: 30px 10px;
  font-size: 13px;
  text-align: center;
}

.p-linkCard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-linkCard {
    display: block;
  }
}
.p-linkCard__card {
  width: 30%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-linkCard__card {
    width: 80%;
    margin: 10px auto;
  }
}
.p-linkCard__card a {
  color: #FFF;
}
.p-linkCard__card figure {
  position: relative;
}
.p-linkCard__card figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/link_overlay.png);
  background-repeat: repeat-y;
  background-position: -900px top;
  -webkit-transition: background-position 1s;
  -o-transition: background-position 1s;
  transition: background-position 1s;
}
.p-linkCard__card:hover figure::before {
  background-position: -400px top;
  -webkit-transition: background-position 1s;
  -o-transition: background-position 1s;
  transition: background-position 1s;
}
.p-linkCard__text {
  text-align: center;
  position: absolute;
  bottom: 58%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  font-size: 18px;
}
.p-linkCard__more {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFF;
  border: solid 1px #FFF;
  padding: 5px 20px;
}
.p-linkCard__more::after {
  position: absolute;
  content: "";
  display: block;
  width: 40px;
  height: 10px;
  background: url(../img/common/link_arrow_w.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 58%;
  right: -30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-basicText h3 {
  line-height: 1.8em;
  margin-bottom: 1em;
}
.p-basicText p {
  line-height: 1.8em;
}

.p-mainMovie {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-mainMovie {
    height: 70vh;
  }
}
.p-mainMovie video {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.u-br {
  /*
  PCのみ
  */
  /*
  タブレット・スマホ
  */
  /*
  スマホ
  */
}
.u-br__pc {
  display: none;
}
@media screen and (max-width: 960px) {
  .u-br__pc {
    display: inline;
  }
}
.u-br__tb {
  display: none;
}
@media screen and (max-width: 960px) {
  .u-br__tb {
    display: inline;
  }
}
.u-br__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-br__sp {
    display: inline;
  }
}
.u-br__nosp {
  display: inline;
}
@media screen and (max-width: 768px) {
  .u-br__nosp {
    display: none;
  }
}

.page-index__about {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page-index__about {
    display: block;
  }
}
.page-index__aboutVisual {
  max-width: 500px;
}
@media screen and (max-width: 1280px) {
  .page-index__aboutVisual {
    max-width: 450px;
  }
}
@media screen and (max-width: 960px) {
  .page-index__aboutVisual {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .page-index__aboutVisual {
    max-width: 200px;
    margin: 0 auto 60px;
  }
}
.page-index__aboutText {
  padding: 0 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .page-index__aboutText {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-index__aboutText {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .page-index__aboutText h1 {
    margin: 0 auto;
  }
}
.page-index__aboutText h2 {
  margin: 1.5em 0;
}
@media screen and (max-width: 960px) {
  .page-index__aboutText h2 {
    font-size: 20px;
    margin: 1em 0;
  }
}
@media screen and (max-width: 768px) {
  .page-index__aboutText h2 {
    text-align: center;
  }
}
.page-index__aboutText p {
  font-size: 16px;
  line-height: 2em;
}
@media screen and (max-width: 960px) {
  .page-index__aboutText p {
    font-size: 14px;
    line-height: 1.8em;
  }
}
.page-index__aboutText p br {
  display: none;
}
@media screen and (max-width: 1280px) {
  .page-index__aboutText p br {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .page-index__aboutText p br {
    display: none;
  }
}
.page-index__aboutLink {
  max-width: 13em;
  margin: 2em auto 0;
}
.page-index__quality {
  padding: 0 10px;
  margin-bottom: 80px;
}
.page-index__quality h1 {
  margin: 0 auto 40px;
}
.page-index__quality h2 {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page-index__quality h2 {
    font-size: 20px;
  }
}
.page-index__quality P {
  text-align: center;
  margin-bottom: 60px;
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  .page-index__quality P {
    font-size: 14px;
  }
}
.page-index__qualityCard {
  max-width: 900px;
  margin: 0 auto;
}
.page-index__news {
  padding: 0 10px;
  max-width: 800px;
  margin: 0 auto 60px;
}
.page-index__news h1 {
  font-size: 30px;
  margin-bottom: 20px;
}
.page-index__news h1 small {
  font-size: 16px;
}
.page-index__news dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-top: dotted 1px #000;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .page-index__news dl {
    display: block;
  }
}
.page-index__news dl:last-child {
  border-bottom: dotted 1px #000;
}
.page-index__news dl dt {
  font-weight: bold;
  width: 7em;
}
@media screen and (max-width: 768px) {
  .page-index__news dl dt {
    width: 100%;
  }
}
.page-index__news dl dd {
  width: calc(100% - 7em);
}
@media screen and (max-width: 768px) {
  .page-index__news dl dd {
    width: 100%;
    font-size: 14px;
  }
}
.page-index__news dl dd a {
  text-decoration: none;
  color: #000;
}
.page-index__news dl dd a:hover {
  text-decoration: underline;
}
.page-index__lineup {
  margin-bottom: 80px;
}
.page-index__lineupTitle {
  background-image: url(../img/top/newest_lineup_bg.jpg);
  background-size: cover;
  padding: 130px 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page-index__lineupTitle {
    padding: 50px 10px;
  }
}
.page-index__lineupTitle h1 {
  margin: 0 auto 40px;
}
.page-index__lineupTitle--none {
  background-image: none;
  background-color: #000;
  background: #bdbdbd;
  background: -webkit-gradient(linear, left bottom, left top, from(#bdbdbd), to(#838383));
  background: -webkit-linear-gradient(bottom, #bdbdbd 0%, #838383 100%);
  background: -o-linear-gradient(bottom, #bdbdbd 0%, #838383 100%);
  background: linear-gradient(0deg, #bdbdbd 0%, #838383 100%);
}
.page-index__lineupText {
  text-align: center;
  color: #FFF;
  font-weight: bold;
}
.page-index__comingSoon {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}
.page-index__comingSoon--white {
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .page-index__comingSoon {
    font-size: 24px;
  }
}
.page-index__lineupEstates {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .page-index__lineupEstates {
    display: block;
  }
}
.page-index__lineupEstate {
  width: 20%;
  padding: 0 10px;
}
@media screen and (max-width: 1280px) {
  .page-index__lineupEstate {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .page-index__lineupEstate {
    width: 80%;
    margin: 0 auto;
  }
}
.page-index__works {
  margin-bottom: 100px;
  padding: 0 10px;
}
.page-index__works h1 {
  margin: 0 auto 40px;
}
.page-index__worksBanner {
  max-width: 860px;
  margin: 0 auto;
}
.page-index__worksBanner a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-index__worksBanner a {
    display: block;
  }
}
.page-index__comingsoon {
  padding: 0 10px;
  text-align: center;
  font-size: 28px;
  margin: 80px 0;
}

.page-about__greeting {
  padding: 0 10px;
  max-width: 580px;
  margin: 0 auto 60px;
}
.page-about__greeting figure {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page-about__greeting figure {
    max-width: 250px;
    margin: 0 auto 30px;
  }
}
.page-about__greeting h2 {
  font-size: 22px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page-about__greeting h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.page-about__greeting p {
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  .page-about__greeting p {
    line-height: 1.6em;
  }
}
.page-about__president {
  margin-top: 2em;
  text-align: right;
}
.page-about__presidentName {
  font-size: 28px;
}
.page-about__images {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page-about__images {
    display: block;
  }
}
.page-about__images figure {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .page-about__images figure {
    width: 100%;
  }
}
.page-about__summary {
  max-width: 580px;
  padding: 0 10px;
  margin: 0 auto;
}
.page-about__summary h2 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 24px;
  letter-spacing: 0.3em;
}
.page-about__summary table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border-bottom: solid 1px #000;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page-about__summary table {
    font-size: 13px;
  }
}
.page-about__summary table th {
  padding: 10px 1em;
  border-top: solid 1px #000;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .page-about__summary table th {
    width: 9em;
  }
}
.page-about__summary table td {
  padding: 10px 1em;
  border-top: solid 1px #000;
}
.page-about__summary table td a {
  color: #000;
}
.page-about__map {
  max-width: 580px;
  padding: 0 10px;
  margin: 0 auto 60px;
}
.page-about__map iframe {
  width: 100%;
}

.page-brand__inner {
  max-width: 680px;
  margin: 0 auto;
}
.page-brand__mainph {
  position: relative;
  margin-bottom: 40px;
}
.page-brand__mainphText {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 40px;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .page-brand__mainphText {
    width: 100%;
    font-size: 30px;
    text-align: center;
  }
}
.page-brand__mainText {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page-brand__mainText {
    padding: 0 10px;
  }
}
.page-brand__qualityTitle {
  margin: 1.5em 0;
  text-align: center;
  font-size: 20px;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}
@media screen and (max-width: 768px) {
  .page-brand__qualityTitle {
    font-size: 18px;
  }
}
.page-brand__qualityTitle b {
  font-size: 150%;
}
.page-brand__quality {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page-brand__quality {
    padding: 0 10px;
    display: block;
  }
}
.page-brand__qualityEach {
  width: 48%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page-brand__qualityEach {
    width: 100%;
  }
}
.page-brand__qualityEach figure {
  margin-bottom: 20px;
}
.page-brand__qualityEach h4 {
  margin-bottom: 10px;
}
.page-brand__qualityEach p {
  font-size: 14px;
}
.page-brand__exciaCreiz {
  background-color: #EFEFEF;
  padding: 60px;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page-brand__exciaCreiz {
    padding: 30px 20px;
    margin-bottom: 0;
  }
}
.page-brand__exciaCreiz h3 {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .page-brand__exciaCreiz h3 {
    font-size: 18px;
  }
}
.page-brand__exciaCreiz h3 b {
  font-size: 150%;
}
.page-brand__exciaCreiz figure {
  margin-top: 40px;
}

.page-news {
  padding: 0 20px;
  margin-bottom: 80px;
}
.page-news h2 {
  margin-bottom: 1em;
}

.page-qualityMansion__inner {
  max-width: 680px;
  margin: 0 auto;
}
.page-qualityMansion__mainph {
  margin-bottom: 40px;
}
.page-qualityMansion__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page-qualityMansion__contents {
    display: block;
    margin-bottom: 0;
  }
}
.page-qualityMansion__contentsText {
  width: calc(100% - 250px);
}
@media screen and (max-width: 768px) {
  .page-qualityMansion__contentsText {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 40px;
  }
}
.page-qualityMansion__contentsImage {
  width: 230px;
}
@media screen and (max-width: 768px) {
  .page-qualityMansion__contentsImage {
    width: 100%;
  }
}
.page-qualityMansion__contentsImage figure {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .page-qualityMansion__contentsImage figure {
    margin-bottom: 0;
  }
}

.page-qualityLand__inner {
  max-width: 680px;
  margin: 0 auto;
}
.page-qualityLand__mainph {
  margin-bottom: 40px;
}
.page-qualityLand__mainCopy {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page-qualityLand__mainCopy {
    padding: 0 10px;
    font-size: 20px;
  }
}
.page-qualityLand__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page-qualityLand__contents {
    display: block;
    padding: 0 10px;
    margin-bottom: 10px;
  }
}
.page-qualityLand__contentsText {
  width: calc(100% - 270px);
}
@media screen and (max-width: 768px) {
  .page-qualityLand__contentsText {
    width: 100%;
    margin-bottom: 40px;
  }
}
.page-qualityLand__contentsText p {
  font-size: 15px;
  margin-bottom: 1em;
}
.page-qualityLand__contentsText h3 {
  font-size: 16px;
  color: #000D2A;
}
.page-qualityLand__contentsImages {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .page-qualityLand__contentsImages {
    width: 100%;
  }
}
.page-qualityLand__contentsImages figure {
  margin-bottom: 10px;
}
.page-qualityLand__contentsTextPoints {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-qualityLand__contentsTextPoint {
  background-color: #EFEFEF;
  width: 49%;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .page-qualityLand__contentsTextPoint {
    text-align: left;
  }
}

.page-works__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page-works__main {
    display: block;
  }
}
.page-works__main figure {
  width: 50%;
}
@media screen and (max-width: 1280px) {
  .page-works__main figure {
    width: 700px;
  }
}
@media screen and (max-width: 960px) {
  .page-works__main figure {
    width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .page-works__main figure {
    width: 100%;
    margin-bottom: 40px;
  }
}
.page-works__mainText {
  width: 50%;
  padding: 0 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .page-works__mainText {
    width: calc(100% - 700px);
  }
}
@media screen and (max-width: 960px) {
  .page-works__mainText {
    width: calc(100% - 500px);
  }
}
@media screen and (max-width: 768px) {
  .page-works__mainText {
    width: 100%;
  }
}
.page-works__mainText h1 {
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page-works__mainText h1 {
    margin: 0 auto 30px;
  }
}
.page-works__mainText h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: normal;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .page-works__mainText h2 {
    text-align: center;
  }
}
.page-works__mainText dl {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .page-works__mainText dl {
    text-align: center;
  }
}
.page-works__mainText dl dt {
  background-color: #000;
  display: inline-block;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 10px;
}
.page-works__mainTextName {
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .page-works__mainTextName {
    text-align: center;
  }
}
.page-works__contents {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
}
.page-works__intro {
  padding: 0 10px;
  margin-bottom: 40px;
}

.page-worksExiaGraise__images {
  margin: 0 -5px 100px;
}
@media screen and (max-width: 768px) {
  .page-worksExiaGraise__images {
    margin: 0 -1px 1px;
  }
}
.page-worksExiaGraise__images figure {
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .page-worksExiaGraise__images figure {
    padding: 1px;
  }
}
.page-worksExiaGraise__images1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-worksExiaGraise__images1 {
    display: block;
  }
}
.page-worksExiaGraise__images1Left {
  width: 35.92%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .page-worksExiaGraise__images1Left {
    width: 100%;
  }
}
.page-worksExiaGraise__images1Right {
  width: 65.08%;
}
@media screen and (max-width: 768px) {
  .page-worksExiaGraise__images1Right {
    width: 100%;
  }
}
.page-worksExiaGraise__imagesHalf {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-worksExiaGraise__imagesHalf {
    display: block;
  }
}
.page-worksExiaGraise__imagesHalfLeft {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page-worksExiaGraise__imagesHalfLeft {
    width: 100%;
  }
}
.page-worksExiaGraise__imagesHalfRight {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page-worksExiaGraise__imagesHalfRight {
    width: 100%;
  }
}
.page-worksExiaGraise__images2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-worksExiaGraise__images2 {
    display: block;
  }
}
.page-worksExiaGraise__images2Left {
  width: 39.4%;
}
@media screen and (max-width: 768px) {
  .page-worksExiaGraise__images2Left {
    width: 100%;
  }
}
.page-worksExiaGraise__images2Middle {
  width: 39.4%;
}
@media screen and (max-width: 768px) {
  .page-worksExiaGraise__images2Middle {
    width: 100%;
  }
}
.page-worksExiaGraise__images2Right {
  width: 21.2%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .page-worksExiaGraise__images2Right {
    width: 100%;
  }
}

.page-contact {
  margin-bottom: 80px;
}
.page-contact__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 10px;
}
.page-contact__telText {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .page-contact__telText {
    letter-spacing: normal;
  }
}
.page-contact__confirmText {
  text-align: center;
  margin: 60px 0;
  font-size: 20px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .page-contact__confirmText {
    letter-spacing: normal;
  }
}
.page-contact__telNum {
  font-size: 30px;
  text-align: center;
}
.page-contact__telNum a {
  color: #000;
  text-decoration: none;
  cursor: text;
}
.page-contact__telNum img {
  width: 25px;
  display: inline-block;
  margin-right: 10px;
}
.page-contact__telTime {
  font-size: 14px;
  margin-bottom: 40px;
  text-align: center;
}
.page-contact__form dl {
  margin-bottom: 30px;
}
.page-contact__form dt {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}
.page-contact__form dt b {
  color: #F00;
  font-size: 12px;
  font-weight: bold;
}
.page-contact__form input[type=text],
.page-contact__form textarea,
.page-contact__form select {
  width: 100%;
  font-size: 14px;
  padding: 10px;
  background-color: #EBEBEB;
  border: none;
}
.page-contact__buttons a,
.page-contact__buttons button[type=submit] {
  display: block;
  width: 100%;
  background-color: #898989;
  padding: 10px;
  color: #FFF;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
  text-align: center;
  margin: 5px 0;
}
.page-contact__buttons a:hover,
.page-contact__buttons button[type=submit]:hover {
  background-color: #000D2A;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.page-contact__buttons a {
  background-color: #B3424A;
}
.page-contact__buttons a:hover {
  background-color: #F00;
}
.page-contact__secondLabel {
  font-weight: bold;
  margin-bottom: 10px;
}
.page-contact__formSet {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page-contact__formSet {
    display: block;
  }
}
.page-contact__formSet dl {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .page-contact__formSet dl {
    width: 100%;
  }
}
.page-contact__note {
  font-size: 13px;
  text-align: center;
  margin-bottom: 30px;
}
.page-contact__note a {
  color: #000;
}
@media screen and (max-width: 768px) {
  .page-contact__note {
    text-align: left;
  }
}
.page-contact__check {
  text-align: center;
  margin-bottom: 30px;
}
.page-contact__alert {
  font-size: 13px;
  font-weight: bold;
  color: #F00;
}
.page-contact__completeMessage {
  text-align: center;
  padding: 10px;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .page-contact__completeMessage {
    text-align: left;
  }
}
.page-contact__completeMessage h3 {
  margin: 0 0 1em;
}
.page-contact__completeMessage dl {
  margin: 2em 0;
}
.page-contact__completeMessage dl dt {
  font-weight: bold;
}
.page-contact__completeMessage dl dd {
  color: #000;
  font-size: 24px;
}
.page-contact__completeMessage dl dd a {
  color: #000;
}
/*# sourceMappingURL=style.css.map */
