@charset "UTF-8";

/* =====================
  共通
===================== */
.inner {
  width: 1300px;
  margin-inline: auto;
  padding-inline: 50px;
}

/* ==== 背景色変更 ==== */
.bg {
  background-color: #f1f3f8;
}

.bg-reset {
  background-color: #fff;
}

/* =====================
  ボタン
===================== */
.link-btn {
  width: 300px;
  height: 81px;
  background-color: #002a87;
}
@media (any-hover: hover) {
  .link-btn {
    transition: all 250ms ease 0s;
  }
  .link-btn:hover {
    border: 1px solid #002a87;
    background-color: #fff;
  }
  .link-btn:hover a span {
    color: #002a87;
    transition: inherit;
  }
  .link-btn:hover a::after {
    transition: inherit;
    background-image: url('/assets/img/common/arrow_b.png');
  }
}

.link-btn .link-anchor {
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 40px;
}

.link-btn .link-anchor::after {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/img/common/arrow.png');
  width: 16px;
  height: 16px;
}

.link-btn .link-anchor span {
  font-family: Taviraj;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

/* =====================
  ボタン　白抜き
===================== */
.link-btn2 {
  width: 244px;
  height: 60px;
  border: solid 1px #002a87;
}

.link-btn2 .link-anchor {
  width: 100%;
  font-family: inherit;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 18px;
}
@media (any-hover: hover) {
  .link-btn2 {
    transition: all 250ms ease 0s;
  }
  .link-btn2:hover {
    background: #002a87;
  }
  .link-btn2 :where(button, a, span) {
    transition: inherit;
  }
  .link-btn2:hover :where(button, a, span) {
    opacity: 1;
  }
  .link-btn2:hover :where(button, a)::after {
    filter: brightness(0) invert(1);
  }
  .link-btn2:hover :where(button, a) span {
    color: white !important;
  }
}

.link-btn2 .link-anchor::after {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/img/common/arrow_b.png');
  width: 16px;
  height: 16px;
}

.link-btn2 .link-anchor span {
  font-family: Taviraj;
  font-size: 16px;
  font-weight: bold;
  color: #002a87;
}

.more-btn {
  width: 237px;
}

/* =====================
  header
===================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1300px;
  z-index: 30;
  color: #fff;
}
.scrolled main {
  padding-top: 100px;
}
.scrolled .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  min-width: 1300px;
  z-index: 30;
  color: #fff;
  background: rgba(29, 33, 44, 0.7);
}

.header .h-logo {
  position: absolute;
  top: 27.5px;
  left: 24px;
  z-index: 31;
}

.header .h-logo a {
  display: block;
  width: inherit;
  height: inherit;
}

.header .h-nav {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  font-weight: bold;
  height: 100px;
}

.header ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: inherit;
  min-width: 1300px;
  margin-inline: auto 0;
}

.header ul li {
  height: inherit;
  flex-shrink: 0;
}

.header ul li a {
  width: 100%;
  height: inherit;
}

.header .h-nav .t-menu {
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 32px;
  line-height: 1;
  color: #fff;
  position: relative;
}

.header .h-nav li:nth-child(4) a {
  padding-right: 64px;
}

/* ==== SDGsのボタン ==== */
.header .sdgs-btn {
  width: 160px;
  height: 100px;
  background-color: #fff;
  position: relative;
}

.header .sdgs-btn a {
  display: grid;
  justify-items: center;
  align-items: center;
}

/* ==== コンタクトのボタン ==== */
.header .contact-btn {
  width: 128px;
  height: 100px;
  background-color: #002a87;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  position: relative;
}

.header .contact-btn a {
  width: 100%;
  height: inherit;
  display: grid;
  justify-items: center;
  align-items: center;
}

.header .contact-btn span {
  position: relative;
  font-family: Taviraj;
  font-size: 18px;
  font-weight: bold;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 12px;
}

.header .contact-btn span::before {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/img/common/icon_mail.png');
  width: 20px;
  height: 13px;
}

/* =====================
  aside
===================== */
.aside {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url('/assets/img/common/aside_bg.png');
  width: 100%;
  height: 388px;
  color: #fff;
  padding-top: 120px;
}

.aside .aside-wrap {
  display: flex;
  gap: 54px;
}

.aside .aside-wrap h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.03em;
}

/* ==== 左端 ==== */
.aside .aside-wrap .aside-title span {
  font-family: Taviraj;
  font-size: 88px;
  font-weight: bold;
  line-height: 0.8;
}

.aside .aside-wrap .aside-title h2 {
  width: 119px;
  height: 28px;
  padding: 0px 6px;
  border: solid 1px #fff;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-top: 13px;
}

/* ==== 真ん中 ==== */
.aside .aside-wrap .aside-p {
  margin-left: 14px;
}

.aside .aside-wrap .aside-p .aside-tel {
  font-family: Taviraj;
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
  margin-top: 24px;
}

.aside .aside-wrap .aside-p p {
  font-size: 14px;
  font-weight: bold;
  margin-top: 6px;
}

/* ==== 右側 ==== */
.aside .aside-wrap .aside-btn .aside-mail {
  width: 311px;
  height: 69px;
  border: solid 1px #fff;
  margin-top: 20px;
}

.aside .aside-wrap .aside-btn .aside-mail a {
  display: block;
  padding: 19px 23px;
}

.aside .aside-wrap .aside-btn .aside-mail a span {
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
}

.aside .aside-wrap .aside-btn .aside-mail a span::before {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/img/common/icon_mail.png');
  width: 20px;
  height: 13px;
  margin-right: 0.7em;
}

.aside .aside-wrap .aside-btn .aside-mail a span::after {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/img/common/arrow.png');
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* =====================
  footer
===================== */
/* ==== 上側・メニュー ==== */
.footer .f-menu {
  background-color: #2e323a;
  padding-block: 34px;
}

.footer .f-menu ul {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .f-menu ul li {
  position: relative;
  display: flex;
  align-items: center;
}

.footer .f-menu ul li::before {
  content: '';
  display: block;
  width: 1px;
  height: 12px;
  background-color: #fff;
}

.footer .f-menu ul li:last-child::after {
  content: '';
  display: block;
  width: 1px;
  height: 12px;
  background-color: #fff;
}

.footer .f-menu ul li a span {
  padding-inline: 44px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* ==== 下部 ==== */
.footer .f-content {
  padding-top: 40px;
}

.footer .f-content .f-content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid #898c94;
}

.footer .f-content .f-content-wrap .logo {
  flex-shrink: 0;
}

.footer .f-content .f-content-wrap p {
  font-size: 13px;
  font-weight: 500;
  color: #131518;
  margin-left: 40px;
}

.footer .f-content .f-content-wrap .sub-menu {
  font-size: 13px;
  font-weight: 500;
  color: #131518;
  margin-left: 304px;
  display: flex;
  gap: 80px;
}

.footer .f-content .foot {
  font-family: Taviraj;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #5d5f64;
  opacity: 0.5;
  padding-block: 26px;
}

.link-btn2 button[type='submit'] span {
  font-family: var(--yugo);
}
.footer-instagram {
  margin-top: 24px;
  width: 100%;
}
.footer-instagram a {
  display: grid;
  place-content: center;
  width: fit-content;
  margin-left: auto;
}
.footer-instagram a::after {
  content: '';
  display: block;
  width: 28px;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/img/common/instagram.svg');
}
