@charset "UTF-8";

/* ==========================================================

  BLD Group Common PC Styles

========================================================== */
body {
  font-family: "RyoTextPlusN-Regular", serif;
  font-weight: 400;
  min-width: 1260px;
}
h1, h2, h3, h4, h5, h6 { font-weight: 400 !important; }
.l-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section {
  position: relative;
  width: 100%;
}
.totop {
  position: fixed;
  z-index: 5;
  bottom: 30px;
  right: 30px;
}
.sp { display: none; }

/* Breadcrumb
--------------------------------------------------------- */
.breadcrumb {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: right;
  letter-spacing: 0.15em;
  margin: 0 0 20px;
}
.breadcrumb a {
  color: #000000;
  text-decoration: none;
}
.breadcrumb span {
  transform: scale(0.5,1.0);
  display: inline-block;
}

/* Link Button
--------------------------------------------------------- */
a.link-next {
  position: relative;
  font-size: 17px;
  font-size: 1.7rem;
  color: #2754a4;
  letter-spacing: 0.2em;
  text-decoration: none;
  padding: 0 0 18px;
  display: inline-block;
  transition: all 0.3s;
}
a.link-next::before, a.link-next::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: solid 2px #2754a4;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease 0.3s;
}
a.link-next::before {
  transform-origin: 0 0;
  width: 100%;
  transform: scale(1, 1);
}
a.link-next::after {
  transform-origin: 100% 0;
  width: 0;
  transform: scale(0, 0);
}
a.link-next:hover::before {
  width: 0;
  transform: scale(0, 0);
}
a.link-next:hover::after {
  width: 100%;
  transform: scale(1, 1);
}
a.link-next span::after {
  content: url(../images/arrow.png);
  display: inline-block;
  padding: 7.5px 0 0 50px;
}

/* Link Bunner
--------------------------------------------------------- */
.link-bnr img {
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
.link-bnr:hover img { opacity: 0.7; }

/* ---------------------------------------------------------

  Header Styles

--------------------------------------------------------- */
.l-header {
  position: relative;
  width: 100%;
  margin: 0 0 80px;
}
.l-header > div {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.l-header > div h1 { padding: 20px 0 0 45px; }
.header-inq {
  width: 240px;
  height: 80px;
  display: block;
  line-height: 80px;
  text-align: center;
  text-decoration: none;
  background-color: #464646;
  transition: all 0.3s;
}
.header-inq:hover {
  background: rgba(70,70,70,0.7);
}
.header-inq i {
  width: 18px;
  display: inline-block;
}
.header-inq span {
  font-size: 16px;
  font-size: 1.6rem;
  color: #ffffff;
  letter-spacing: 0.2em;
}
.header-inq span::before {
  content: '';
  position: relative;
  top: 1.5px;
  width: 18px;
  height: 15px;
  display: inline-block;
  background: url(../images/icon_mail.png) no-repeat 50% 50%;
  background-size: cover;
  margin: 0 10px 0 0;
}
.menu-trigger { display: none; }

/* Global Navi
--------------------------------------------------------- */
.l-header nav { padding: 80px 0 0; }
.l-header nav ul {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.l-header nav ul li {
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  margin: 0 24px;
}
.l-header nav ul li a {
  position: relative;
  z-index: 4;
  color: #000000;
  text-decoration: none;
  padding: 0 0 10px;
}
.l-header nav ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000000;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.l-header nav ul li a:hover::before {
  transform: scale(1, 1);
}
.l-header nav ul li .subnav {
  display: none;
  position: absolute;
  z-index: 3;
  top: 0;
  width: 600px;
  background: rgba(255,255,255,0.95);
  padding: 80px 30px 30px;
  box-sizing: border-box;
}
.l-header nav ul li:nth-of-type(3) .subnav { left: -160px; }
.l-header nav ul li:nth-of-type(7) .subnav { left: -290px; }
.l-header nav ul li .subnav ul {
  display: block;
}
.l-header nav ul li .subnav ul li {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  margin: 0 0 20px;
}
.l-header nav ul li:hover .subnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
/*
.l-header nav ul li:nth-of-type(3) ul {
  position: absolute;
  top: 0;
  left: 0;
  padding: 35px 0 0;
  display: none;
}
.l-header nav ul li:nth-of-type(3) ul li {
  font-size: 0.9em;
  margin: 0 0 5px;
}
.l-header nav ul li:nth-of-type(3):hover ul {
  width: 200%;
  display: block;
}
*/

.nav-inq { display: none; }

/* ---------------------------------------------------------

  Footer Styles

--------------------------------------------------------- */
.l-footer {}
.l-footer .inner { padding: 0 60px; }

/* お問合せ
--------------------------------------------------------- */
.inquiry-unit {
  background-color: #464646;
  text-align: center;
  padding: 80px 0 85px;
}
.inquiry-unit h2 {
  font-size: 36px;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin: 0 0 25px;
}
.inquiry-unit h2 small {
  font-size: 0.41666666em;
  color: #656565;
  display: block;
}
.inquiry-unit p {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  margin: 0 0 50px;
}
.inquiry-unit ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.inquiry-unit ul li {
  width: 480px;
  height: 68px;
  line-height: 68px;
  text-align: center;
  margin: 0 20px;
}
.inquiry-unit ul li a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(44,44,44);
  border: solid 1px #818181;
  transition: all 0.3s;
}
.inquiry-unit ul li a:hover {
  color: #656565;
  background: rgba(255,255,255);
}
.inquiry-unit ul li a img {
  margin: 0 10px 0 0;
}
.inquiry-unit ul li:first-of-type a span {
  position: relative;
  font-size: 36px;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
}
.inquiry-unit ul li:last-of-type a span {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}

/* Footer Navi
--------------------------------------------------------- */
.foot-items {
  padding: 70px 0 80px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.foot-items > div {
  display: flex;
  align-items: stretch;
  margin: 0;
}
.foot-items dl dd {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  line-height: 1.875;
  margin: 55px 0 0;
}
.tel-number {
  color: #000000 !important;
  text-decoration: none !important;
  pointer-events: none;
}
.foot-items dl dd:last-of-type {
  margin: 100px 0 0;
}
.foot-items dl dd:last-of-type a {
  display: inline-block;
  border: solid 1px #e7e7e7;
  padding: 10px 40px;
  transition: all 0.3s;
}
.foot-items dl dd:last-of-type a:hover { opacity: 0.5; }
.foot-items ul {
  padding: 0 0 0 30px;
  border-left: solid 1px #d8d8d8;
}
.foot-items ul:not(:first-of-type) { margin: 0 0 0 90px; }
.foot-items ul li {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin: 0 0 35px;
}
.foot-items ul li a {
  color: #000000;
  text-decoration: none;
}
.copy {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.15em;
  margin: 0 0 45px;
}

/* ---------------------------------------------------------

  Page Header Styles

--------------------------------------------------------- */
.page-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.page-header .heading { padding: 0 0 0 14%; }
.page-header > div:last-of-type { width: 74.666666%; }
.page-header > div:last-of-type figure { overflow: hidden; }
.page-header > div:last-of-type figure img {
  width: 100%;
  height: auto;
}