@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;
  letter-spacing: 0.12em;
  margin: 20px 0 110px;
}
.breadcrumb .inner { padding: 0 60px; }
.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%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 160px;
  padding: 0 0 0 40px;
}
.l-header h1 { padding: 55px 0 0; }
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.header-inq a {
  width: 300px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #464646;
  transition: all 0.3s;
}
.header-inq a:hover {
  background: rgba(70,70,70,0.7);
}
.header-inq a i {
  font-style: normal;
  color: #d8d8d8;
  display: inline-block;
  transform: scale(0.5,1.0);
  margin: 0 10px 0 0;
}
.header-inq a span {
  font-size: 16px;
  font-size: 1.6rem;
  color: #d8d8d8;
  letter-spacing: 0.2em;
}
.menu-trigger { display: none; }

/* Global Navi
--------------------------------------------------------- */
.l-header nav { padding: 55px 0 0; }
.l-header nav ul {
  position: relative;
  display: flex;
  align-items: center;
}
.l-header nav ul li {
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
  margin: 0 60px 0 0;
}
.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; }

@media screen and (max-width:1440px) {
  .l-header nav ul li:not(:nth-of-type(5)) { margin: 0 30px 0 0; }
}

/* お問合せ
--------------------------------------------------------- */
.inquiry-unit { padding: 110px 0; }
.inquiry-unit .inner {
  padding: 0 60px;
  display: flex;
  align-items: center;
}
.inquiry-unit dl { width: 50%; }
.inquiry-unit dl dt h2 {
  font-size: 36px;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  margin: 0 0 25px;
}
.inquiry-unit dl dt h2 small {
  font-size: 0.41666666em;
  color: #656565;
  display: block;
}
.inquiry-unit dl dd {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  line-height: 1.875;
  margin: 0 0 50px;
}
.inquiry-unit ul {
  width: 50%;
  padding: 0 2.6666666% 0 1.333333%;
}
.inquiry-unit ul li a {
  position: relative;
  color: #000000;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #eeeeee;
  transition: all 0.3s;
}
.inquiry-unit ul li a:hover { opacity: 0.35; }
.inquiry-unit ul li a img { margin: 0 10px 0 0; }
.inquiry-unit ul li:first-of-type {
  line-height: 1.5;
  margin: 0 0 10px;
}
.inquiry-unit ul li:first-of-type a { padding: 10px 0; }
.inquiry-unit ul li:first-of-type a img {
  position: relative;
  top: -7.5px;
}
.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:first-of-type a span::after {
  content: '受付時間 9:00〜18:00（土日･祝除く）';
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  white-space: nowrap;
  margin: 0.25em 0 0;
}
.inquiry-unit ul li:last-of-type {
  height: 68px;
  line-height: 68px;
}
.inquiry-unit ul li:last-of-type a span {
  position: relative;
  font-size: 20px;
  font-size: 2.0rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

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

  Footer Styles

--------------------------------------------------------- */
.l-footer {
  background-color: #464646;
  padding: 70px 0 55px;
}
.l-footer .inner { padding: 0 60px; }

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

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

  Footer Inquiry Button

--------------------------------------------------------- */
.footer-inq { display: none; }