@charset "UTF-8";

/* =====================
  共通
===================== */
html,
body {
  font-size: 3.7333333333333334vw;
}

.inner {
  padding-inline: 4.666666666666667vw;
}

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

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

/* =====================
  ボタン
===================== */
.link-btn {
  width: 55.333333333333336vw;
  height: 13.866666666666667vw;
  background-color: #002a87;
}

.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_w_2x.png');
  width: 3.2vw;
  height: 3.2vw;
}

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

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

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

.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_2x.png');
  width: 3.2vw;
  height: 3.2vw;
}

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

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

.header .h-logo {
  position: absolute;
  top: 4.4vw;
  left: 4.6vw;
  z-index: 31;
}

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

.header .h-logo a picture img {
  width: 58.666666666666664vw;
  height: 8.36vw;
}

.header .h-nav {
  display: none;
}

/* =====================
  SPメニュー
===================== */
/* ==== ボタン ==== */
.sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/img/common/hamburger.png');
  width: 17.066666666666666vw;
  height: 17.066666666666666vw;
  z-index: 201;
}

/* ==== ナビ ==== */
.sp-nav {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 64.32vw;
  z-index: 202;
  transition: right 600ms var(--easeOutExpo) 0s;
  opacity: 0;
}

body.menu-on .sp-nav {
  opacity: 1;
  right: 0vw;
}

.sp-nav-inner {
  position: relative;
  background-color: #002a87;
  height: 100vh;
  overflow-y: scroll;
}

/* ==== ヘッド ==== */
.sp-nav-inner .head {
  position: relative;
  min-height: 16vw;
  background-color: #002a87;
  top: 0;
}

.sp-nav-inner .head::before {
  pointer-events: none;
  content: 'MENU';
  display: block;
  font-family: Taviraj;
  font-size: calc((100 / 750) * 200 * 1vw);
  font-weight: bold;
  line-height: 1;
  -webkit-text-stroke: 2px #fff;
  opacity: 0.12;
  color: transparent;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 5.52vw;
}

.sp-nav-inner .head .close-menu {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/img/common/close.png');
  width: 17.066666666666666vw;
  height: 17.066666666666666vw;
  top: 0;
  right: 0;
}

/* ==== 内容 ==== */
.sp-nav-inner .body {
  padding-top: 3.9vw;
  padding-bottom: 23vw;
  padding-inline: 9.733333333333333vw;
}

.sp-nav-inner .body .fnav {
  display: grid;
  justify-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.sp-nav-inner .body .fnav li {
  width: 100%;
}
.sp-nav-inner .body .fnav li a {
  display: block;
  width: 100%;
  height: inherit;
  padding-block: 4.5vw;
}

.sp-nav-inner .body .fnav li a > span {
  display: block;
  font-size: 3.7333333333333334vw;
  font-weight: bold;
  color: #fff;
  text-align: right;
}

.sp-nav-inner .body .fnav li a > img {
  text-align: right;
}

.sp-nav-inner .body .fnav .menu-sdgs a {
  padding-block: 6.2vw 8.5vw;
  text-align: right;
}
.sp-nav-inner .body .fnav .menu-sdgs a img {
  width: calc((100 / 750) * 256 * 1vw);
}

.contact-btn2 {
  width: 45.333333333333336vw;
  height: 13.866666666666667vw;
  border: solid 1px #fff;
  margin-top: 8.266666666666666vw;
}

.contact-btn2 .link-anchor {
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  padding-inline: 10.7vw;
}

.contact-btn2 .link-anchor::before {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/img/common/icon_mail_menu.png');
  width: 3.466666666666667vw;
  height: 2.533333333333333vw;
  margin-right: 3.3vw;
}

.contact-btn2 .link-anchor span {
  font-family: Taviraj;
  font-size: 3.7333333333333334vw;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.04em;
}

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

.aside .aside-wrap {
  gap: 7.2vw;
}

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

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

.aside .aside-wrap .aside-title h2 {
  width: 29.066667vw;
  height: 7.2vw;
  padding: 0.4vw 1.9vw;
  border: solid 1px #fff;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-top: 3.2vw;
}

/* ==== 真ん中 ==== */
.aside .aside-wrap .aside-p {
  margin-top: 12.8vw;
}

.aside .aside-wrap .aside-p .aside-tel {
  font-family: Taviraj;
  font-size: 10.666666666666666vw;
  font-weight: bold;
  line-height: 1;
  margin-top: 5.4vw;
}

.aside .aside-wrap .aside-p p {
  font-size: 3.466666666666667vw;
  font-weight: bold;
  margin-top: 2.9vw;
}

/* ==== 右側 ==== */
.aside .aside-wrap .aside-btn {
  margin-top: 11.6vw;
}

.aside .aside-wrap .aside-btn .aside-mail {
  width: 78.13333333333333vw;
  height: 18.133333333333333vw;
  border: solid 1px #fff;
  margin-top: 6.6vw;
}

.aside .aside-wrap .aside-btn .aside-mail a {
  display: block;
  padding: 5.6vw 5.333333333333333vw;
}

.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_2x.png');
  width: 4.133333333333333vw;
  height: 2.933333333333333vw;
  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_w_2x.png');
  width: 3.2vw;
  height: 3.2vw;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

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

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

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

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

.footer .f-menu ul li:nth-child(3):after,
.footer .f-menu ul li:nth-child(5):after,
.footer .f-menu ul li:nth-child(6):after {
  content: '';
  display: block;
  width: 1px;
  height: 2.933333333333333vw;
  background-color: #fff;
}

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

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

.footer .f-content .f-content-wrap {
  padding-bottom: 8.5vw;
  border-bottom: 1px solid #898c94;
}

.footer .f-content .f-content-wrap .logo picture img {
  width: 58.666666666666664vw;
  height: 8.426666666666668vw;
  margin-top: 8.6vw;
}

.footer .f-content .f-content-wrap p {
  font-size: 3.2vw;
  font-weight: 500;
  color: #131518;
  margin-top: 5vw;
}

.footer .f-content .f-content-wrap .sub-menu {
  font-size: 3.466666666666667vw;
  font-weight: 500;
  color: #131518;
  display: grid;
  grid-template-columns: repeat(2, 45.333333333333336vw);
  text-align: center;
}

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

.f-content-wrap {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-areas:
    'sub-menu'
    'logo'
    'p';
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
}

.f-content-wrap .sub-menu {
  grid-area: sub-menu;
}

.f-content-wrap .logo {
  grid-area: logo;
}

.f-content-wrap p {
  grid-area: p;
}

.link-btn2 button[type='submit'] span {
  font-family: var(--yugo);
}

.footer-instagram {
  margin-top: calc((100 / 750) * 40 * 1vw);
  width: 100%;
}
.footer-instagram a {
  display: grid;
  margin-inline: auto;
  place-content: center;
  width: fit-content;
}
.footer-instagram a::after {
  content: '';
  display: block;
  width: calc((100 / 750) * 59 * 1vw);
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/img/common/instagram.svg');
}
