@charset "UTF-8";
/* =====================
  共通
===================== */
/* 1300🦑でスクロール */
body {
  min-width: 1300px;
}
.sp {
  display: none;
}
.sp-menu,
.sp-nav {
  display: none;
}

a[href^='tel'] {
  pointer-events: none;
}
/* =====================
  共通
===================== */
.inner {
  width: 1180px;
  margin-inline: auto;
}
/* =====================
  h2-title
===================== */
.h2-title {
  position: relative;
}
.h2-title::before {
  content: '';
  display: block;
  width: 2px;
  height: 100%;
  background-color: var(--blue);
  position: absolute;
  top: 0;
  left: -28px;
}
.h2-title h2 {
  line-height: 2;
  width: fit-content;
  position: relative;
}
.h2-title h2::before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  position: relative;
  top: 0;
  margin-inline: auto -19px;
}
.h2-title span {
  font-size: 52px;
  line-height: 1.5;
  display: inline-block;
}
.h2-title span::first-letter {
  color: var(--blue);
}
/* =====================
  h2-title 白
===================== */
.h2-title-w {
  position: relative;
  color: var(--white);
}
.h2-title-w::before {
  content: '';
  display: block;
  width: 2px;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: -28px;
}
.h2-title-w h2 {
  line-height: 2;
  width: fit-content;
  position: relative;
}
.h2-title-w h2::before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  position: relative;
  top: 0;
  margin-inline: auto -19px;
}
.h2-title-w span {
  font-size: 52px;
  line-height: 1.5;
  display: inline-block;
}
/* =====================
  リンクボタン　四角
===================== */
.link-btn {
  border: solid 1px var(--blue);
  width: fit-content;
}
.link-btn a {
  display: block;
  padding-block: 10px;
  padding-inline: 60px;
}
.link-btn a span {
  font-size: 13px;
  line-height: 2.46;
}
/* =====================
  リンクボタン　四角 白
===================== */
.link-btn-w {
  border: solid 1px var(--white);
  width: fit-content;
}
.link-btn-w a {
  display: block;
  padding-block: 10px;
  padding-inline: 60px;
}
.link-btn-w a span {
  font-size: 13px;
  line-height: 2.46;
}
/* =====================
  ヘッダー
===================== */
.header {
  position: absolute;
  width: 100%;
  min-width: 1300px;
  height: 100px;
  top: 30px;
  z-index: 8;
}
.header .logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}
.header .hnav {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  height: 100px;
}
.header ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: inherit;
}
.header ul li {
  height: inherit;
}
.header ul li a {
  display: grid;
  width: 100%;
  place-content: center;
  height: inherit;
}
.header ul .now {
  display: grid;
  place-content: center;
  height: inherit;
  position: relative;
}
.header ul .now::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50rem;
  box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.25);
  background-color: #fff;
  position: absolute;
  bottom: 23px;
  left: 50%;
  transform: translateX(-50%);
}
.header .hnav .t-menu {
  font-size: 15px;
  text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.25);
  padding-inline: 30px;
}
.header .hnav .now .t-menu {
  padding-inline: 0;
}
/* ==== SDGsのボタン ==== */
.header .sdgs-btn {
  width: 200px;
  height: inherit;
  background-color: var(--white);
  box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.25);
  margin-left: 30px;
  position: relative;
  z-index: 9;
}
.header .sdgs-btn a {
  display: block;
  width: 100%;
  height: inherit;
}
.header .sdgs-btn a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* ==== コンタクトのボタン ==== */
.header .contact-btn {
  width: 100px;
  height: inherit;
  background-color: var(--black);
  box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.header .contact-btn a {
  display: block;
  width: 100%;
  height: inherit;
}
.header .contact-btn a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* =====================
  aside
===================== */
.f-contact {
  background-color: var(--blue);
  padding-block: 48px;
}
.f-contact .fc-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 92px;
}
.f-contact .fc-wrapper .fc-tel {
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.f-contact .fc-wrapper .fc-tel::before {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/image/common/icon_tel_w.png');
  width: 21px;
  height: 21px;
}
.f-contact .fc-wrapper .fc-tel-t {
  padding-left: 37px;
}
.f-contact .fc-wrapper .link-btn-w {
  margin-top: 24px;
}
/* =====================
  footer
===================== */
.footer {
  padding-top: 48px;
  padding-bottom: 48px;
}
.footer .fnav-wrap {
  width: fit-content;
  margin-inline: auto;
}
.footer .fnav-wrap .fnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.footer .fnav-wrap .fnav2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 60px;
  font-size: 13px;
  line-height: 2.31;
  text-align: right;
  color: rgba(0, 0, 0, 0.3);
  margin-top: 16px;
}
.footer .foot {
  text-align: center;
  font-size: 10px;
  margin-top: 48px;
}
