@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
}

@media (min-width: 897px) {
  body {
    font-size: 16px;
  }
}

@media (max-width: 896px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.wrap {
  max-width: 1920px;
  min-width: 320px;
  margin: 0 auto;
}

/*pcのみ表示する*/
@media (min-width: 897px) {
  .pc-only {
    display: block;
  }
}

@media (max-width: 896px) {
  .pc-only {
    display: none;
  }
}

/*sp/tabのみ表示する*/
@media (min-width: 897px) {
  .sp-only {
    display: none;
  }
}

@media (max-width: 896px) {
  .sp-only {
    display: block;
  }
}

/*テキスト折り返し*/
@media (max-width: 896px) {
  .t-br {
    display: inline-block;
  }
}

/*外部リンクアイコン*/
.external::after {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  vertical-align: baseline;
  margin-left: 0.1em;
  background: url(../img/gadget24.png) center no-repeat;
  background-size: contain;
  content: "";
}

/*::::::::header::::::::*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  background: #fff;
}

header a {
  color: inherit;
  text-decoration: none;
}

header a:hover {
  color: #ffb750;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1280px;
  padding: 0 5%;
  margin: 0 auto;
}

@media (min-width: 897px) {
  .header__container {
    height: 80px;
  }
}

@media (max-width: 896px) {
  .header__container {
    padding-top: 2.5%;
    padding-bottom: 2.5%;
  }
}

/* 企業ロゴ*/
@media (min-width: 897px) {
  .logo {
    max-width: 240px;
  }
}

@media (max-width: 896px) {
  .logo {
    max-width: 200px;
  }
}

/* ナビメニュー（pcのみ表示）*/
.pc-nav ul {
  list-style: none;
}

.pc-nav ul li {
  display: inline-block;
  margin-left: 48px;
  color: #004056;
  font-size: 16px;
  font-weight: 500;
}

/* ナビメニュー（spのみ表示）*/
/* hamburger--閉じている時のボタン */
.hamburger {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  top: 0;
  left: 6px;
  width: 30px;
  height: 2px;
  background: #004056;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* hamburger--開いてる時のボタン */
.hamburger-active span:nth-child(1), .hamburger-active span:nth-child(2), .hamburger-active span:nth-child(3) {
  top: 16px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hamburger-active span:nth-child(2), .hamburger-active span:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* hamburger--開いてる時のコンテンツ */
.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.sp-nav ul {
  list-style: none;
  width: 100%;
  padding: 80px 0;
  margin: 0 auto;
  background: rgba(0, 64, 86, 0.8);
}

.sp-nav ul li {
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

.sp-nav ul li:hover {
  background: #ddd;
}

.sp-nav ul li a {
  display: block;
  padding: 2em 0;
}

/* 表示切り替え・jQueryで制御（付与・削除）*/
.hamburger-active {
  opacity: 100;
  visibility: visible;
}

/*::::::::main::::::::*/
@media (min-width: 897px) {
  .main-visual {
    margin-bottom: 48px;
  }
}

@media (max-width: 896px) {
  .main-visual {
    margin-bottom: 32px;
  }
}

@media (max-width: 896px) {
  .main-visual img {
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 5% 0;
       object-position: 5% 0;
  }
}

.main {
  max-width: 1280px;
  padding: 0 5%;
  margin: 0 auto;
}

@media (min-width: 897px) {
  .main section {
    margin-bottom: 160px;
  }
}

@media (max-width: 896px) {
  .main section {
    margin-bottom: 104px;
  }
}

@media (min-width: 897px) {
  .main section:nth-last-of-type(1) {
    margin-bottom: 200px;
  }
}

@media (max-width: 896px) {
  .main section:nth-last-of-type(1) {
    margin-bottom: 120px;
  }
}

.main section h2 {
  color: #004056;
  font-weight: 700;
}

@media (min-width: 897px) {
  .main section h2 {
    margin-bottom: 64px;
    font-size: 34px;
  }
}

@media (max-width: 896px) {
  .main section h2 {
    margin-bottom: 48px;
    font-size: 24px;
  }
}

.main section h3 {
  padding-left: 6px;
  border-left: 6px solid #ffb750;
  font-weight: 700;
}

@media (min-width: 897px) {
  .main section h3 {
    font-size: 24px;
  }
}

@media (max-width: 896px) {
  .main section h3 {
    line-height: 1.5;
    font-size: 22px;
  }
}

/* 会社紹介　*/
.about__intro {
  line-height: 1.7;
  margin-bottom: 96px;
}

.about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  list-style: none;
}

.about__list li {
  width: 29.3859649%;
  margin: 0 1.97368421%;
  padding: 48px 24px;
  border: 3px dotted #004056;
  text-align: center;
}

@media (min-width: 897px) {
  .about__list li {
    min-width: 320px;
    margin-top: 80px;
  }
}

@media (max-width: 896px) {
  .about__list li {
    min-width: 300px;
    margin-top: 48px;
  }
}

.about__list li img {
  max-width: 160px;
}

.about__list li h4 {
  margin: 1.5em 0;
  font-weight: 700;
}

@media (min-width: 897px) {
  .about__list li h4 {
    font-size: 24px;
  }
}

@media (max-width: 896px) {
  .about__list li h4 {
    font-size: 22px;
  }
}

.about__list li p {
  line-height: 1.7;
  text-align: left;
}

/* ビル一覧　*/
@media (min-width: 897px) {
  .bill h3 {
    margin-bottom: 16px;
  }
}

@media (max-width: 896px) {
  .bill h3 {
    margin-bottom: 10px;
  }
}

.bill a {
  color: inherit;
  text-decoration: none;
}

.bill a:hover {
  color: #ffb750;
}

.bill__list {
  list-style: none;
}

@media (min-width: 897px) {
  .bill__list {
    margin-bottom: 96px;
  }
}

@media (max-width: 896px) {
  .bill__list {
    margin-bottom: 80px;
  }
}

.bill__list .add {
  margin-bottom: 32px;
}

@media (min-width: 897px) {
  .bill__list .add {
    font-size: 14px;
  }
}

@media (max-width: 896px) {
  .bill__list .add {
    font-size: 13px;
  }
}

.bill__list .add::before {
  display: inline-block;
  vertical-align: top;
  width: 1em;
  height: 1em;
  background: url(../img/pin.png) center top no-repeat;
  background-size: contain;
  content: "";
}

.bill__list .bi-img {
  max-width: 480px;
}

@media (min-width: 897px) {
  .bill__list .bi-img {
    margin-bottom: 48px;
  }
}

@media (max-width: 896px) {
  .bill__list .bi-img {
    margin-bottom: 32px;
  }
}

.bill__list .tenant h4 {
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 700;
}

.bill__list .tenant dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 896px) {
  .bill__list .tenant dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

@media (min-width: 897px) {
  .bill__list .tenant dl dt,
  .bill__list .tenant dl dd {
    padding: 24px 0;
    border-bottom: 1px solid #004056;
  }
}

@media (max-width: 896px) {
  .bill__list .tenant dl dt,
  .bill__list .tenant dl dd {
    padding: 16px 0 24px;
  }
}

.bill__list .tenant dl dt:first-of-type,
.bill__list .tenant dl dd:first-of-type {
  padding-top: 0;
}

.bill__list .tenant dl dt {
  max-width: 64px;
}

@media (min-width: 897px) {
  .bill__list .tenant dl dt {
    width: 10%;
  }
}

@media (max-width: 896px) {
  .bill__list .tenant dl dt {
    width: 100%;
  }
}

.bill__list .tenant dl dd {
  line-height: 1.7;
}

@media (min-width: 897px) {
  .bill__list .tenant dl dd {
    width: 90%;
    padding-left: 64px;
  }
}

@media (max-width: 896px) {
  .bill__list .tenant dl dd {
    width: 100%;
    border-bottom: 1px solid #004056;
  }
}

.bill__list .tenant dl dd p {
  margin-bottom: 1em;
}

.bill__list .tenant dl dd p a::before {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-right: 6px;
  vertical-align: middle;
  background: #74b8a1;
  content: "";
}

/* アクセス　*/
.access__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 896px) {
  .access__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.access img {
  max-width: 620px;
  border: 3px dotted #004056;
}

@media (min-width: 897px) {
  .access img {
    width: 60%;
  }
}

@media (max-width: 896px) {
  .access img {
    width: 100%;
    margin-bottom: 48px;
  }
}

.access dl {
  line-height: 1.5;
}

@media (min-width: 897px) {
  .access dl {
    width: 40%;
    margin-left: 24px;
  }
}

@media (max-width: 896px) {
  .access dl {
    width: 100%;
  }
}

.access dl dt {
  margin-bottom: 8px;
  color: #004056;
  font-size: 18px;
  font-weight: bold;
}

.access dl dd {
  padding-left: 1em;
  margin-bottom: 24px;
}

/* 会社概要　*/
.company a {
  color: inherit;
}

.company a:hover {
  color: #ffb750;
}

.company dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.7;
  border: 1px solid #004056;
}

.company dl dt,
.company dl dd {
  border-bottom: 1px solid #004056;
}

@media (min-width: 897px) {
  .company dl dt,
  .company dl dd {
    padding: 24px;
  }
}

@media (max-width: 896px) {
  .company dl dt,
  .company dl dd {
    padding: 24px 2.5%;
  }
}

.company dl dt {
  width: 30%;
  border-right: 1px solid #004056;
  font-weight: 500;
  background: rgba(178, 235, 215, 0.6);
}

.company dl dd {
  width: 70%;
}

.company dl dt:nth-last-of-type(1),
.company dl dd:nth-last-of-type(1) {
  border-bottom: 0;
}

.company__tel p {
  display: inline-block;
  margin-right: 8px;
}

.company__membership {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 896px) {
  .company__membership {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.company__membership ul {
  display: inline-block;
  list-style: none;
  width: 70%;
}

@media (max-width: 896px) {
  .company__membership ul {
    width: 100%;
  }
}

.company__membership ul li {
  margin-bottom: 1em;
}

.company .yokohama-mark {
  display: inline-block;
  width: 30%;
  max-width: 120px;
}

.company .push {
  background: #ffb750;
}

.company .push-text__lead {
  margin-bottom: 0.5em;
}

.company .push-text ul {
  list-style: none;
}

@media (min-width: 897px) {
  .company .push-text ul li {
    display: inline-block;
  }
  .company .push-text ul li:nth-of-type(n + 2)::before {
    display: inline-block;
    margin: 0 0.5em;
    content: "/";
  }
}

@media (max-width: 896px) {
  .company .push-text ul li {
    padding-left: 0.5em;
  }
}

/* リンク　*/
.link ul {
  list-style: none;
}

.link ul li {
  line-height: 1.7;
}

@media (min-width: 897px) {
  .link ul li {
    margin-bottom: 24px;
  }
}

@media (max-width: 896px) {
  .link ul li {
    margin-bottom: 16px;
  }
}

.link ul li a {
  color: inherit;
  text-decoration: none;
}

.link ul li a:hover {
  color: #ffb750;
}

.link ul li a::before {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-right: 6px;
  vertical-align: middle;
  background: #74b8a1;
  content: "";
}

/*::::::::footer::::::::*/
footer {
  background: #74b8a1;
}

.footer__container {
  max-width: 1280px;
  padding: 0 5%;
  margin: 0 auto;
}

@media (min-width: 897px) {
  .footer__container {
    height: 80px;
    line-height: 80px;
  }
}

@media (max-width: 896px) {
  .footer__container {
    max-height: 80px;
    padding-top: 5%;
    padding-bottom: 5%;
  }
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: #004056;
}
/*# sourceMappingURL=style.css.map */