@charset "UTF-8";
/*====================================================
//// webフォント読み込み
====================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100..900&family=Oswald:wght@200..700&display=swap");
/* font-family
----------------------------------------------------*/
/* 画面サイズ
----------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 768px) and (max-width: 1190px) {
  html {
    font-size: 0.8403361345vw;
  }
}
/*====================================================
//// カラーコード
====================================================*/
:root {
  --main-color01: #A02A24;
  --main-color02: #721D18;
  --txt-color: #2B2E34;
}

/*====================================================
////アニメーション設定
====================================================*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
}
.fadeIn.active {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

/*====================================================
//// bg
====================================================*/
/*======================= PC =======================*/
/*====================================================
////common
====================================================*/
/* ---------- 基本設定 ----------*/
body {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 400;
  color: var(--txt-color);
  max-width: 100vw;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    font-weight: 400;
    letter-spacing: 0.03em;
  }
}

img, video, canvas {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
}

.inner {
  width: 86.4%;
  margin: auto;
  position: relative;
  max-width: 120rem;
}
.inner.sp-wide {
  width: 91.7333333333%;
}
.inner.narrow {
  max-width: 99.6rem;
}
@media screen and (min-width: 768px) {
  .inner {
    width: 100%;
  }
}

a {
  display: block;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

/* ---------- レスポンシブ切り替え ----------*/
.only-sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
}

.only-pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .only-pc {
    display: block !important;
  }
}

/*====================================================
//// header
====================================================*/
.header {
  padding: 1.1rem 0 0.88rem 0;
  background-color: #fff;
  box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.05);
  height: 6.6rem;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  transition: transform 0.3s;
}
.header.close {
  transform: translateY(-6.6rem);
}
.header .inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 11.4rem;
}
.header__logo a:hover {
  opacity: 1;
}
.header__btn {
  position: relative;
  aspect-ratio: 64.52/20.02;
  width: 6.452rem;
}
.header__btn span {
  background-color: var(--txt-color);
  width: 2.002rem;
  height: 2px;
  position: absolute;
  left: 0;
  transition: transform 0.5s, opacity 0.5s, top 0.5s;
}
.header__btn span:first-child {
  top: 0;
}
.header__btn span:nth-child(2) {
  top: 50%;
}
.header__btn span:last-child {
  top: 100%;
}
.header__btn::before, .header__btn::after {
  font-size: 1.2rem;
  line-height: 2.3333333333;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s;
}
.header__btn::before {
  content: "MENU";
}
.header__btn::after {
  content: "CLOSE";
  opacity: 0;
}
.header__btn.active span {
  top: 1rem;
  width: 2.5rem;
}
.header__btn.active span:first-child {
  transform: rotate(45deg);
}
.header__btn.active span:nth-child(2) {
  opacity: 0;
}
.header__btn.active span:last-child {
  transform: rotate(-45deg);
}
.header__btn.active::before {
  opacity: 0;
}
.header__btn.active::after {
  opacity: 1;
}
.header__btn:hover {
  cursor: pointer;
  opacity: 0.8;
}
.header__pc-menu {
  display: none;
}
.header__sp-menu {
  position: absolute;
  left: 0;
  top: 6.6rem;
  background-color: #EFEFEF;
  width: 100%;
  padding: 3.05rem 0;
  min-height: 100svh;
  transition: transform 0.5s;
  transform: translateX(100vw);
}
.header__sp-menu.active {
  transform: translateX(0);
}
.header__sp-menu--list {
  width: 80%;
  margin: auto;
}
.header__sp-menu--list li {
  padding: 1.1rem 0 1.1rem 0;
  text-align: center;
  border-bottom: 1px solid #C3C3C3;
}
.header__sp-menu--list li a {
  font-size: 1.8rem;
  line-height: 1.6111111111;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.header__sp-menu--list li:first-child {
  padding-top: 0.9rem;
  border-top: 1px solid #C3C3C3;
}
.header__sp-menu--list li:first-child span {
  display: block;
  font-size: 1.2rem;
  line-height: 2.3333333333;
  font-weight: 700;
  color: #747474;
}
.header__sp-menu--list .child {
  width: 73.8766666667%;
  margin: auto;
}
.header__sp-menu--list .child li {
  padding: 1.1rem 0 1rem 0;
}
.header__sp-menu--list .child li:first-child {
  padding-top: 0;
  border-top: none;
}
.header__sp-menu--list .child li:last-child {
  border: none;
  padding-bottom: 0;
}
.header__sp-menu--sub {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 92.8%;
  margin: 2.25rem auto 0 auto;
}
.header__sp-menu--sub li a {
  font-size: 1.6rem;
  line-height: 1.3125;
  letter-spacing: 0.03em;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .header {
    padding: 1.59rem 0;
    height: 10rem;
  }
  .header.close {
    transform: translateY(-10rem);
  }
  .header .inner {
    width: 100%;
    max-width: initial;
  }
  .header__logo {
    width: 16.8rem;
    margin-left: 7.7rem;
  }
  .header__btn {
    display: none;
  }
  .header__sp-menu {
    display: none;
  }
  .header__pc-menu {
    display: block;
  }
  .header__pc-menu--list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 4.8rem;
  }
  .header__pc-menu--list li {
    position: relative;
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: 700;
    letter-spacing: 0.03em;
  }
  .header__pc-menu--list li a {
    transition: color 0.3s;
    position: relative;
  }
  .header__pc-menu--list li a:before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--main-color01);
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .header__pc-menu--list li a:hover {
    color: var(--main-color01);
  }
  .header__pc-menu--list li a:hover:before {
    transform: scaleX(1);
  }
  .header__pc-menu--list li.contact {
    position: relative;
    width: 16.5rem;
  }
  .header__pc-menu--list li.contact a {
    background-color: var(--main-color01);
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
    width: 16.5rem;
    aspect-ratio: 165/100;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: -3.6rem;
  }
  .header__pc-menu--list li.contact a::before {
    content: "";
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220.213%22%20height%3D%2214.6%22%20viewBox%3D%220%200%2020.213%2014.6%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_604%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20604%22%20transform%3D%22translate(1.106%200.8)%22%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1308%22%20data-name%3D%22%E3%83%91%E3%82%B9%201308%22%20d%3D%22M4%2C22H22V9H4V22Z%22%20transform%3D%22translate(-4%20-9)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1309%22%20data-name%3D%22%E3%83%91%E3%82%B9%201309%22%20d%3D%22M4%2C9l9%2C5.832L22%2C9%22%20transform%3D%22translate(-4%20-8.124)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
    background-size: cover;
    width: 1.8rem;
    height: 1.3rem;
    display: inline-block;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-right: 0.7rem;
  }
  .header__pc-menu--list li.contact a:hover {
    background-color: var(--main-color02);
    opacity: 1;
    color: #fff;
  }
  .header__pc-menu--list li.contact a:hover::before {
    transform: none;
  }
  .header__pc-menu--list li.parent span {
    padding-right: 1.5rem;
  }
  .header__pc-menu--list li.parent span::after {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    border-top: solid 2px var(--txt-color);
    border-right: solid 2px var(--txt-color);
    position: absolute;
    right: 0;
    top: 1rem;
    transform: rotate(135deg);
    transition: border-color 0.3s;
  }
  .header__pc-menu--list li.parent span.active, .header__pc-menu--list li.parent span:hover {
    cursor: pointer;
    color: var(--main-color01);
  }
  .header__pc-menu--list li.parent span.active::after, .header__pc-menu--list li.parent span:hover::after {
    border-color: var(--main-color01);
  }
  .header__pc-menu--list li.parent .child {
    position: absolute;
    left: 0;
    top: 4rem;
    width: 18.7rem;
    background-color: #fff;
    padding: 0.6rem 1.1rem 0.9rem 1.1rem;
    opacity: 0;
    max-height: 0;
    transition: 0.3s;
    visibility: hidden;
  }
  .header__pc-menu--list li.parent .child li {
    margin-bottom: 1.9rem;
  }
  .header__pc-menu--list li.parent .child li a {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.03em;
    width: fit-content;
    color: #000000;
  }
  .header__pc-menu--list li.parent .child li a:hover {
    color: var(--main-color01);
  }
  .header__pc-menu--list li.parent .child li:last-child {
    margin-bottom: 0;
  }
  .header__pc-menu--list li.parent .child.active {
    transform: scaleY(1);
    opacity: 1;
    max-height: 50rem;
    visibility: visible;
  }
}
/*====================================================
//// footer
====================================================*/
.footer {
  background-color: #DADCE0;
  padding: 5rem 0 10.8rem 0;
}
.footer__logo {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  font-family: arial, sans-serif;
}
.footer__logo span {
  font-family: times-new-roman, sans-serif;
  font-size: 3rem;
  line-height: 0.8666666667;
  font-weight: 700;
  display: inline-block;
  margin-right: 1.2rem;
}
.footer .txt {
  margin-top: 1.8rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
.footer .information {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 0;
  justify-content: space-between;
}
.footer .information div {
  position: relative;
  padding-left: 4rem;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.footer .information div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  aspect-ratio: 24/24;
}
.footer .information .address {
  flex-basis: 100%;
}
.footer .information .address::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_669%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20669%22%20transform%3D%22translate(-22)%22%3E%0A%20%20%20%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_141%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20141%22%20width%3D%2224%22%20height%3D%2224%22%20transform%3D%22translate(22)%22%20fill%3D%22none%22%2F%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_602%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20602%22%20transform%3D%22translate(22.93%200.877)%22%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1304%22%20data-name%3D%22%E3%83%91%E3%82%B9%201304%22%20d%3D%22M20.78%2C13.56A4.78%2C4.78%2C0%2C1%2C0%2C16%2C8.78%2C4.78%2C4.78%2C0%2C0%2C0%2C20.78%2C13.56Z%22%20transform%3D%22translate(-9.684%20-4)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1305%22%20data-name%3D%22%E3%83%91%E3%82%B9%201305%22%20d%3D%22M24%2C20v9.048%22%20transform%3D%22translate(-12.904%20-10.44)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1306%22%20data-name%3D%22%E3%83%91%E3%82%B9%201306%22%20d%3D%22M10.658%2C32H8.439L4%2C39.17H26.193L21.754%2C32H19.535%22%20transform%3D%22translate(-4%20-16.977)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
}
.footer .information .tel::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_667%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20667%22%20transform%3D%22translate(-24%20-4974)%22%3E%0A%20%20%20%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_142%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20142%22%20width%3D%2224%22%20height%3D%2224%22%20transform%3D%22translate(24%204974)%22%20fill%3D%22none%22%2F%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1307%22%20data-name%3D%22%E3%83%91%E3%82%B9%201307%22%20d%3D%22M13.542%2C7.686a1.223%2C1.223%2C0%2C0%2C1%2C1.07.63l1.5%2C2.7a1.223%2C1.223%2C0%2C0%2C1%2C.025%2C1.141l-1.442%2C2.883a8.1%2C8.1%2C0%2C0%2C0%2C6.055%2C6.055l2.883-1.441a1.223%2C1.223%2C0%2C0%2C1%2C1.142.025l2.7%2C1.5a1.223%2C1.223%2C0%2C0%2C1%2C.629%2C1.069v3.1a2.261%2C2.261%2C0%2C0%2C1-2.965%2C2.216c-3.075-1.038-7.849-3.013-10.875-6.039s-5-7.8-6.039-10.875a2.261%2C2.261%2C0%2C0%2C1%2C2.216-2.965Z%22%20transform%3D%22translate(18.398%204967.814)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
}
.footer .information .mail::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.125%22%20height%3D%2224%22%20viewBox%3D%220%200%2024.125%2024%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_668%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20668%22%20transform%3D%22translate(-9.875%20-4903)%22%3E%0A%20%20%20%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_140%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20140%22%20width%3D%2224%22%20height%3D%2224%22%20transform%3D%22translate(10%204903)%22%20fill%3D%22none%22%2F%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_603%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20603%22%20transform%3D%22translate(11%204907)%22%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1308%22%20data-name%3D%22%E3%83%91%E3%82%B9%201308%22%20d%3D%22M4%2C25.4H25.864V9H4V25.4Z%22%20transform%3D%22translate(-4%20-9)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1309%22%20data-name%3D%22%E3%83%91%E3%82%B9%201309%22%20d%3D%22M4%2C9l10.932%2C8.83L25.864%2C9%22%20transform%3D%22translate(-4%20-9)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1310%22%20data-name%3D%22%E3%83%91%E3%82%B9%201310%22%20d%3D%22M15.773%2C9H4v8.83%22%20transform%3D%22translate(-4%20-9)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1311%22%20data-name%3D%22%E3%83%91%E3%82%B9%201311%22%20d%3D%22M35.773%2C17.83V9H24%22%20transform%3D%22translate(-13.909%20-9)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .footer {
    padding: 4.6rem 0 4rem 0;
  }
  .footer .inner {
    display: flex;
    justify-content: space-between;
  }
  .footer .block {
    width: 50%;
  }
  .footer .txt {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.8571428571;
    letter-spacing: 0.03em;
  }
  .footer .information {
    margin-top: 2.4rem;
    display: block;
  }
  .footer .information .tel {
    margin-top: 2rem;
  }
  .footer .information .tel a {
    pointer-events: none;
  }
  .footer .information .mail {
    margin-top: 1.4rem;
  }
  .footer__link {
    display: flex;
    gap: 3.8rem;
    margin-top: 5rem;
  }
  .footer__link--list li {
    font-size: 1rem;
    line-height: 2.1;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
  }
  .footer__link--list li a {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding-bottom: 0.7rem;
    width: fit-content;
  }
  .footer__link--list li a:hover {
    color: var(--main-color01);
  }
  .footer__link--list:nth-of-type(2), .footer__link--list:last-of-type {
    transform: translateY(2rem);
  }
  .footer__link--list:last-of-type li a {
    font-weight: 400;
  }
}
/*====================================================
//// Fixed contents
====================================================*/
.sp-fix {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 99999;
}
.sp-fix ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  width: 100%;
}
.sp-fix ul li {
  width: 50%;
}
.sp-fix ul li a {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  line-height: 3.75;
  font-weight: 700;
  letter-spacing: 0.03em;
  width: 100%;
  text-align: center;
  position: relative;
}
.sp-fix ul li a::before {
  content: "";
  background-size: cover;
  display: inline-block;
  margin-right: 0.8rem;
}
.sp-fix ul li:first-child a {
  background-color: var(--main-color01);
}
.sp-fix ul li:first-child a::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220.213%22%20height%3D%2214.6%22%20viewBox%3D%220%200%2020.213%2014.6%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_604%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20604%22%20transform%3D%22translate(1.106%200.8)%22%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1308%22%20data-name%3D%22%E3%83%91%E3%82%B9%201308%22%20d%3D%22M4%2C22H22V9H4V22Z%22%20transform%3D%22translate(-4%20-9)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1309%22%20data-name%3D%22%E3%83%91%E3%82%B9%201309%22%20d%3D%22M4%2C9l9%2C5.832L22%2C9%22%20transform%3D%22translate(-4%20-8.124)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  width: 1.8rem;
  aspect-ratio: 18/13;
  transform: translateY(0.1rem);
}
.sp-fix ul li:last-child a {
  background-color: var(--main-color02);
}
.sp-fix ul li:last-child a::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219%22%20height%3D%2219%22%20viewBox%3D%220%200%2019%2019%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_32607%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2032607%22%20transform%3D%22translate(-24%20-4973.816)%22%3E%0A%20%20%20%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_142%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20142%22%20width%3D%2219%22%20height%3D%2219%22%20transform%3D%22translate(24%204973.816)%22%20fill%3D%22none%22%2F%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1307%22%20data-name%3D%22%E3%83%91%E3%82%B9%201307%22%20d%3D%22M12.367%2C7.686a.959.959%2C0%2C0%2C1%2C.839.494l1.173%2C2.113a.959.959%2C0%2C0%2C1%2C.019.894l-1.13%2C2.26a6.354%2C6.354%2C0%2C0%2C0%2C4.747%2C4.747l2.26-1.13a.959.959%2C0%2C0%2C1%2C.895.02l2.119%2C1.178a.959.959%2C0%2C0%2C1%2C.493.838v2.433a1.773%2C1.773%2C0%2C0%2C1-2.325%2C1.738c-2.411-.814-6.154-2.363-8.526-4.735S9.01%2C12.422%2C8.2%2C10.011A1.773%2C1.773%2C0%2C0%2C1%2C9.934%2C7.686Z%22%20transform%3D%22translate(17.858%204967.49)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  width: 1.9rem;
  aspect-ratio: 19/19;
  transform: translateY(0.5rem);
}
@media screen and (min-width: 768px) {
  .sp-fix {
    display: none;
  }
}

/*====================================================
//// layout
====================================================*/
main {
  padding-top: 6.6rem;
}
@media screen and (min-width: 768px) {
  main {
    padding-top: 10rem;
  }
}

.bg-gray {
  background-color: #E6E8EB;
}

.page-head {
  width: 100%;
  height: 15rem;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.page-head__title {
  color: #fff;
  font-size: 3rem;
  line-height: 1.1666666667;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
}
.page-head__title span {
  display: block;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 500;
}
.page-head::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-head {
    height: 30rem;
  }
  .page-head .inner {
    width: 95%;
  }
  .page-head__title {
    font-size: 5rem;
    line-height: 1;
    letter-spacing: 0em;
    transform: translateX(1rem);
  }
  .page-head__title span {
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: 0em;
  }
}

/*====================================================
//// CTA
====================================================*/
.cta {
  padding: 6.4rem 0;
  position: relative;
}
.cta a {
  display: block;
  width: 100%;
  height: 100%;
}
.cta .inner {
  background-image: url(../img/common/sp/cta_bg.jpg);
  background-size: cover;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  box-shadow: 0 0.3rem 2rem rgba(0, 0, 0, 0.33);
  position: relative;
  overflow: hidden;
}
.cta .inner::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: background-color 0.3s;
}
.cta .inner .block {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 3.2rem 2.4rem;
}
.cta .inner .block p {
  text-align: center;
}
.cta .inner .block p.txt {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.cta .inner .block p.contact {
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-right: 1.2rem;
  position: relative;
  width: fit-content;
  margin: 0.8rem auto 0 auto;
}
.cta .inner .block p.contact::before, .cta .inner .block p.contact::after {
  content: "";
  position: absolute;
  transition: 0.3s;
}
.cta .inner .block p.contact::before {
  width: 100%;
  background-color: #fff;
  height: 2px;
  left: 0;
  bottom: -0.2rem;
}
.cta .inner .block p.contact::after {
  width: 2rem;
  aspect-ratio: 10.45/5.61;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.333%22%20height%3D%2211.623%22%20viewBox%3D%220%200%207.333%2011.623%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1298%22%20data-name%3D%22%E3%83%91%E3%82%B9%201298%22%20d%3D%22M0%2C0%2C5.226%2C5.614%2C10.452%2C0%22%20transform%3D%22translate(0.545%2011.037)%20rotate(-90)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.6%22%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  right: -1.3rem;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .cta {
    padding: 10rem 0;
  }
  .cta .inner {
    background-image: url(../img/common/cta_bg.jpg);
    max-width: 99.6rem;
    width: 100%;
  }
  .cta .inner .block {
    padding: 6.8rem 8.65rem 7.2rem 7.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cta .inner .block p {
    text-align: left;
  }
  .cta .inner .block p.txt {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    letter-spacing: 0.03em;
    width: 60%;
  }
  .cta .inner .block p.contact {
    font-size: 3rem;
    line-height: 1.1666666667;
    letter-spacing: 0.02em;
    padding-right: 3rem;
    padding-bottom: 1rem;
    margin: 3rem 0 0 auto;
    transform: translateX(1rem);
  }
  .cta .inner .block p.contact::after {
    width: 3rem;
    aspect-ratio: 10.45/5.61;
    right: -1.3rem;
    top: 2rem;
  }
  .cta a {
    max-width: 99.6rem;
    margin: auto;
  }
  .cta a:hover {
    opacity: 1;
  }
  .cta a:hover .inner::after {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .cta a:hover .inner .block p::before {
    width: calc(100% + 1.5rem);
  }
  .cta a:hover .inner .block p::after {
    right: -2rem;
  }
}
/*====================================================
//// button
====================================================*/
.btn a {
  text-align: center;
  border: 1px solid var(--main-color01);
  transition: background-color 0.3s, color 0.3s;
  border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -ms-border-radius: 0.4rem;
  -o-border-radius: 0.4rem;
  font-size: 1.6rem;
  line-height: 3.75;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn a:hover {
  opacity: 1;
}
.btn.color a {
  background-color: var(--main-color01);
  color: #fff;
}
.btn.color a:hover {
  background-color: #fff;
  color: var(--main-color01);
}
.btn.white a {
  background-color: #fff;
  color: var(--main-color01);
}
.btn.white a:hover {
  background-color: var(--main-color01);
  color: #fff;
}

.top .btn a {
  margin: 3.8rem auto 0 auto;
}

/*======================= PC =======================*/
/*====================================================
//// title
====================================================*/
.sec_title {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-family: "Oswald", sans-serif;
  color: var(--txt-color);
  position: relative;
}
.sec_title::after {
  content: "";
  width: 4rem;
  height: 0.5rem;
  position: absolute;
  top: -0.6rem;
  left: 0;
  background-color: var(--main-color01);
}
.sec_title.white {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .sec_title {
    font-size: 5rem;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0em;
  }
  .sec_title::after {
    top: -1.4rem;
  }
}
/*====================================================
//// Top
====================================================*/
.top-block01 {
  margin-top: 3.8rem;
}
.top-block01 figure {
  margin-top: 2.1rem;
  aspect-ratio: 324/208.36;
  overflow: hidden;
}
.top-block01 figure img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .top-block01 {
    margin-top: 4.7rem;
    display: flex;
    gap: 2.38rem;
  }
  .top-block01 .txt {
    width: 48.7951807229%;
  }
  .top-block01 figure {
    width: 48.8172690763%;
    margin-top: 0;
    aspect-ratio: 486.22/324;
    animation-delay: 0.5s;
  }
}
/*====================================================
//// FV
====================================================*/
.fv {
  width: 100%;
  height: 64.3rem;
  position: relative;
}
.fv::before, .fv::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.fv::before {
  background-image: url(../img/top/sp/fv_bg.jpg);
  background-size: cover;
  background-position: 50% 50%;
  z-index: -2;
}
.fv::after {
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.fv .inner {
  z-index: 1;
}
.fv__txt {
  color: #fff;
  padding-top: 11.8rem;
}
.fv__txt--block01, .fv__txt--block02, .fv__txt--block03 {
  display: block;
}
.fv__txt--block01, .fv__txt--block02 {
  font-family: "Oswald", sans-serif;
}
.fv__txt--block01 {
  font-size: 2rem;
  line-height: 2.8;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.fv__txt--block02 {
  font-size: 3.3rem;
  line-height: 1.2121212121;
  font-weight: 500;
  letter-spacing: -0.001em;
  transform: translateY(-0.7rem);
}
.fv__txt--block03 {
  font-size: 1.7rem;
  line-height: 1.3529411765;
  font-weight: 500;
  letter-spacing: 0em;
  transform: translateY(-0.4rem);
}
.fv__btn {
  margin-top: 1.6rem;
}
.fv__btn .btn {
  width: 18rem;
  margin-bottom: 1.2rem;
}
.fv__btn .btn:first-of-type {
  animation-delay: 0.5s;
}
.fv__btn .btn:last-of-type {
  animation-delay: 1s;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .fv {
    height: 76.4rem;
  }
  .fv::before {
    background-image: url(../img/top/fv_bg.jpg);
  }
  .fv__txt {
    padding-top: 24.9rem;
  }
  .fv__txt--block01 {
    font-size: 2.3rem;
    line-height: 1.3913043478;
    letter-spacing: 0.03em;
  }
  .fv__txt--block02 {
    font-size: 4rem;
    line-height: 1.55;
    letter-spacing: -0.001em;
    transform: translateY(0);
  }
  .fv__txt--block03 {
    font-size: 2rem;
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.01em;
    transform: translateY(0.6rem);
  }
  .fv__btn {
    margin-top: 1rem;
    display: flex;
    gap: 2.2rem;
  }
  .fv__btn .btn {
    margin-top: 0;
  }
  .fv__btn .btn a {
    font-size: 1.6rem;
    line-height: 3.125;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
}
/*====================================================
//// Count
====================================================*/
.top-count {
  padding: 6.5rem 0 6.85rem 0;
}
.top-count__list {
  width: 89.5705521472%;
  margin: auto;
}
.top-count__list li {
  text-align: center;
  border-bottom: 1px solid #C3C3C3;
  padding: 2.4rem 0 1.45rem 0;
}
.top-count__list li div,
.top-count__list li h2 {
  transform: translateX(-0.2rem);
}
.top-count__list--num {
  color: var(--main-color01);
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  font-variant-numeric: tabular-nums;
}
.top-count__list--num.active {
  opacity: 1;
  transform: translateY(0);
}
.top-count__list--unit {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  margin-top: 0.4rem;
}
.top-count__list--title {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  margin-top: 0.6rem;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .top-count {
    padding: 3.5rem 0 4.85rem 0;
  }
  .top-count__list {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    align-items: center;
  }
  .top-count__list li {
    border-bottom: none;
    border-right: 1px solid #C3C3C3;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .top-count__list li div,
  .top-count__list li h2 {
    transform: translateX(0);
    text-align: center;
  }
  .top-count__list li:first-child {
    width: 13.1666666667%;
  }
  .top-count__list li:first-child .top-count__list--num,
  .top-count__list li:first-child .top-count__list--unit,
  .top-count__list li:first-child .top-count__list--title {
    transform: translateX(-2.2rem);
  }
  .top-count__list li:nth-child(2) {
    width: 14.4166666667%;
  }
  .top-count__list li:nth-child(3) {
    width: 25%;
  }
  .top-count__list li:nth-child(4) {
    width: 14.1666666667%;
  }
  .top-count__list li:nth-child(5) {
    width: 20%;
  }
  .top-count__list li:last-child {
    width: 13.25%;
    border-right: none;
  }
  .top-count__list li:last-child .top-count__list--num {
    transform: translate(2.4rem, 1rem);
  }
  .top-count__list li:last-child .top-count__list--unit {
    transform: translate(2.2rem, 1rem);
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
  .top-count__list li:last-child .top-count__list--unit span {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .top-count__list li:last-child .top-count__list--title {
    transform: translate(2.6rem, 0.2rem);
  }
  .top-count__list--num {
    font-size: 4rem;
    line-height: 1;
  }
  .top-count__list--unit {
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 1rem;
  }
  .top-count__list--title {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 1.6rem;
  }
}
/*====================================================
//// certifications
====================================================*/
.top-certifications {
  background-color: #A02A24;
  color: #fff;
  padding: 6.4rem 0;
}
.top-certifications h2 {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #fff;
  text-align: center;
}
.top-certifications h2::after {
  content: none;
}
.top-certifications__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1rem;
  justify-content: flex-start;
  align-items: stretch;
  margin: 2.1rem auto 0 auto;
  width: 96.6049382716%;
}
.top-certifications__list--item {
  border: 1px solid #fff;
  width: calc((100% - 1rem) / 2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1.2rem 0 1.5rem 0;
}
.top-certifications__list--item .head {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.top-certifications__list--item .body {
  font-family: "Oswald", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 500;
  margin-top: 0.2rem;
}
.top-certifications__list--item:nth-of-type(even) {
  animation-delay: 0.3s;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .top-certifications {
    padding: 5rem 0;
  }
  .top-certifications .inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 5.8rem;
    justify-content: flex-start;
    align-items: center;
  }
  .top-certifications h2 {
    font-size: 5rem;
    line-height: 1.12;
    font-weight: 400;
    text-align: left;
  }
  .top-certifications__list {
    max-width: 86.5rem;
    justify-content: space-between;
    gap: 0;
    margin: 0 auto 0 0;
  }
  .top-certifications__list--item {
    width: 15rem;
    padding: 1.4rem 0 1.6rem 0;
    border-radius: 0.4rem;
    -webkit-border-radius: 0.4rem;
    -moz-border-radius: 0.4rem;
    -ms-border-radius: 0.4rem;
    -o-border-radius: 0.4rem;
  }
  .top-certifications__list--item .head {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.03em;
  }
  .top-certifications__list--item .body {
    font-size: 3rem;
    line-height: 1;
    font-weight: 500;
    margin-top: 0.4rem;
  }
  .top-certifications__list--item:nth-of-type(2) {
    animation-delay: 0.3s;
  }
  .top-certifications__list--item:nth-of-type(3) {
    animation-delay: 0.6s;
  }
  .top-certifications__list--item:nth-of-type(4) {
    animation-delay: 0.9s;
  }
  .top-certifications__list--item:last-of-type {
    animation-delay: 1.2s;
  }
}
/*====================================================
//// Services
====================================================*/
.top-services {
  padding: 7.2rem 0 5.56rem 0;
}
.top-services .btn a {
  width: 19rem;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .top-services {
    padding: 11.7rem 0 10.5rem 0;
  }
  .top-services .inner {
    max-width: 99.6rem;
  }
  .top-services .btn a {
    width: 18rem;
    margin: 3.8rem auto 0 0;
    font-size: 1.6rem;
    line-height: 3.125;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
}
/*====================================================
//// Projects
====================================================*/
.top-projects {
  padding: 7rem 0 6.4rem 0;
  background-image: url(../img/top/sp/projects_bg.jpg);
  background-size: cover;
  position: relative;
}
.top-projects::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px) brightness(63%);
  -webkit-backdrop-filter: blur(4px) brightness(63%);
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 0;
}
.top-projects .inner {
  position: relative;
  z-index: 1;
}
.top-projects__list {
  background-color: #fff;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  margin-top: 4.2rem;
  padding: 3.6rem 1.6rem;
}
.top-projects__list--item {
  position: relative;
  margin-bottom: 3.8rem;
  padding: 0.5rem 0 0 1.5rem;
}
.top-projects__list--item h3 {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.top-projects__list--item .status {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.03em;
  color: var(--main-color01);
  border: 1px solid var(--main-color01);
  padding: 0 0.5rem;
  width: fit-content;
  border-radius: 0.2rem;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
  margin-top: 0.5rem;
}
.top-projects__list--item .txt {
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 400;
}
.top-projects__list--item .txt span {
  font-weight: 700;
}
.top-projects__list--item:last-of-type {
  margin-bottom: 0;
}
.top-projects__list--item::before {
  content: "";
  width: 0.8rem;
  height: calc(100% - 0.8rem);
  position: absolute;
  left: 0;
  top: 0.5rem;
  background-color: var(--main-color01);
}
.top-projects .btn a {
  width: 19rem;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .top-projects {
    padding: 9rem 0 10rem 0;
    background-image: url(../img/top/projects_bg.jpg);
  }
  .top-projects .block {
    max-width: 110.7rem;
    display: flex;
    justify-content: space-between;
    margin: 0 0 0 auto;
    transform: translateX(0.8rem);
  }
  .top-projects .title {
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .top-projects__list {
    margin-top: 0;
    padding: 3.6rem;
    width: 72.2673893406%;
  }
  .top-projects__list--item {
    margin-bottom: 3.7rem;
    padding: 0.4rem 0 0 2.5rem;
  }
  .top-projects__list--item h3 {
    font-size: 2.2rem;
    line-height: 1.1818181818;
    letter-spacing: 0.03em;
    display: inline-block;
    margin-right: 0.8rem;
  }
  .top-projects__list--item .status {
    margin-top: 0;
    display: inline-block;
    transform: translateY(-0.6rem);
    padding: 0 0.4rem;
  }
  .top-projects__list--item .txt {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-top: 0.2rem;
  }
  .top-projects__list--item:last-of-type {
    margin-bottom: 0;
  }
  .top-projects__list--item::before {
    content: "";
    width: 0.8rem;
    height: calc(100% - 0.8rem);
    position: absolute;
    left: 0;
    top: 0.5rem;
    background-color: var(--main-color01);
  }
  .top-projects .btn a {
    width: 18rem;
    font-size: 1.6rem;
    line-height: 3.125;
    font-weight: 700;
    letter-spacing: 0.02em;
    transform: translateY(-1rem);
  }
}
/*====================================================
//// Company overview
====================================================*/
.top-company {
  padding: 7rem 0 6.4rem 0;
}
.top-company .sec_title {
  letter-spacing: 0;
}
.top-company a.inline {
  display: inline;
  text-decoration: underline;
  position: relative;
  padding-right: 2.2rem;
  color: #4A6FA5;
}
.top-company a.inline::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22%231f1f1f%22%3E%3Cpath%20d%3D%22M200-120q-33%200-56.5-23.5T120-200v-560q0-33%2023.5-56.5T200-840h280v80H200v560h560v-280h80v280q0%2033-23.5%2056.5T760-120H200Zm188-212-56-56%20372-372H560v-80h280v280h-80v-144L388-332Z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-company a.inline:hover {
  text-decoration: none;
}
.top-company .top-block01 figure {
  margin-top: 2.4rem;
  aspect-ratio: 324/216;
}
.top-company .btn a {
  width: 23rem;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .top-company {
    padding: 8rem 0 10rem 0;
  }
  .top-company .inner {
    max-width: 99.6rem;
  }
  .top-company span {
    white-space: nowrap;
  }
  .top-company .sec_title {
    font-size: 5rem;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  .top-company .top-block01 .txt {
    margin-top: 0.2rem;
  }
  .top-company .top-block01 figure {
    margin-top: 1.5rem;
    aspect-ratio: auto;
    width: 48.6rem;
    height: 32.4rem;
  }
  .top-company .btn a {
    width: 23rem;
    font-size: 1.6rem;
    line-height: 3.125;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-left: 0;
    margin-right: auto;
  }
}
/*====================================================
//// News
====================================================*/
.top-news {
  padding: 6.7rem 0;
  background-color: #E6E8EB;
}
.top-news__list {
  margin-top: 2.4rem;
}
.top-news__list--item {
  position: relative;
  padding: 1.5rem 0;
}
.top-news__list--item::before, .top-news__list--item::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.top-news__list--item::before {
  background-color: #707070;
}
.top-news__list--item::after {
  background-color: var(--main-color01);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.5s;
}
.top-news__list--item time {
  display: block;
}
.top-news__list--item p {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 400;
  padding-right: 2rem;
}
.top-news__list--item:first-of-type {
  padding-top: 0;
}
.top-news__list--item a.pdf p {
  position: relative;
}
.top-news__list--item a.pdf p::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220.44%22%20height%3D%2223.887%22%20viewBox%3D%220%200%2020.44%2023.887%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B3%E3%83%B3%E3%83%9D%E3%83%BC%E3%83%8D%E3%83%B3%E3%83%88_32_1%22%20data-name%3D%22%E3%82%B3%E3%83%B3%E3%83%9D%E3%83%BC%E3%83%8D%E3%83%B3%E3%83%88%2032%20%E2%80%93%201%22%20transform%3D%22translate(0%200.8)%22%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1315%22%20data-name%3D%22%E3%83%91%E3%82%B9%201315%22%20d%3D%22M1158.733%2C3246.6v8.739h16.739v-22.287h-16.739v8.179%22%20transform%3D%22translate(-1155.832%20-3233.053)%22%20fill%3D%22none%22%20stroke%3D%22%232b2e34%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_672%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20672%22%20transform%3D%22translate(-1205.733%20-3265.873)%22%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1308%22%20data-name%3D%22%E3%83%91%E3%82%B9%201308%22%20d%3D%22M0%2C15.815H7.325V0H0V15.815Z%22%20transform%3D%22translate(1205.733%203280.539)%20rotate(-90)%22%20fill%3D%22%23a02a24%22%2F%3E%0A%20%20%20%20%20%20%3Ctext%20id%3D%22PDF%22%20transform%3D%22translate(1207.147%203279.373)%22%20fill%3D%22%23fff%22%20font-size%3D%227%22%20font-family%3D%22NotoSans-Bold%2C%20Noto%20Sans%22%20font-weight%3D%22700%22%3E%3Ctspan%20x%3D%220%22%20y%3D%220%22%3EPDF%3C%2Ftspan%3E%3C%2Ftext%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  aspect-ratio: 19.64/22.29;
  width: 2rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}
.top-news__list--item {
  /*&:hover{
      color: var(--main-color01);
      border-color: var(--main-color01);
      &::after{
          transform: scaleX(1);
      }
  }*/
}
.top-news__more {
  margin-top: 3.8rem;
}
.top-news__more a {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--main-color01);
  text-align: center;
  position: relative;
  padding-right: 1.5rem;
  width: fit-content;
  margin: auto;
}
.top-news__more a::before {
  content: "";
  height: 2px;
  width: 100%;
  background-color: var(--main-color01);
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  transition: width 0.3s;
}
.top-news__more a::after {
  content: "";
  width: 0.978rem;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  top: 1rem;
  transform: rotate(45deg);
  border-top: solid 2px var(--main-color01);
  border-right: solid 2px var(--main-color01);
  transition: right 0.3s;
}
.top-news__more a:hover {
  opacity: 1;
}
.top-news__more a:hover::before {
  width: calc(100% + 1.5rem);
}
.top-news__more a:hover::after {
  right: -1rem;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .top-news {
    padding: 9.4rem 0 9.8rem 0;
  }
  .top-news .inner {
    max-width: 99.6rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .top-news .title {
    margin-top: 1.5rem;
  }
  .top-news__list {
    width: 69.2269076305%;
    margin-top: 3.8rem;
  }
  .top-news__list--item {
    padding: 2.1rem 0;
  }
  .top-news__list--item time {
    display: inline-block;
    margin-right: 3.2rem;
  }
  .top-news__list--item p {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    letter-spacing: 0.03em;
    padding-right: 4.4rem;
    display: inline-block;
  }
  .top-news__list--item:first-of-type {
    padding-top: 0;
  }
  .top-news__more {
    margin-top: 6.4rem;
  }
  .top-news__more a {
    padding-right: 1.2rem;
  }
}
/*====================================================
//// careers
====================================================*/
.top-careers {
  padding: 6.7rem 0 6.2rem 0;
}
.top-careers p:first-of-type {
  margin-top: 4.2rem;
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 400;
}
.top-careers p:last-of-type {
  margin-top: 2.2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.top-careers__btn {
  width: 23rem;
  margin: 2rem auto 0 auto;
}
.top-careers__btn .btn a {
  margin-top: 0;
  margin-bottom: 2.2rem;
}
.top-careers__btn .btn:last-of-type a {
  margin-bottom: 0;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .top-careers {
    padding: 11.7rem 0 10rem 0;
  }
  .top-careers .inner {
    max-width: 99.6rem;
  }
  .top-careers p:first-of-type {
    margin-top: 5rem;
    font-size: 1.7rem;
    line-height: 1.6470588235;
  }
  .top-careers p:last-of-type {
    margin-top: 3.8rem;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.03em;
  }
  .top-careers__btn {
    width: 50rem;
    margin: 3.7rem auto 0 0;
    display: flex;
    gap: 4rem;
  }
  .top-careers__btn .btn a {
    width: 23rem;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 3.125;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .top-careers__btn .btn:last-of-type a {
    margin-bottom: 0;
  }
}
/*====================================================
//// Company overview
====================================================*/
.company .page-head {
  background-image: url(../img/company/sp/page-head_bg.jpg);
}
.company .sec_title {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-weight: 500;
  letter-spacing: 0.005em;
  margin-bottom: 4rem;
}
.company__sec01 {
  padding: 7rem 0 6.4rem 0;
}
.company__sec01 .txt p {
  font-size: 1.6rem;
  line-height: 1.6875;
  margin-top: 4rem;
}
.company__sec01 .img {
  margin-top: 2rem;
}
.company__sec01 .block03 {
  margin-top: 4rem;
}
.company__sec01 .block03 p:last-child {
  margin-top: 2.6rem;
}
.company__sec01 .block05 p:first-child {
  margin-top: 2.4rem;
}
.company__sec01 .block05 p:last-child {
  margin-top: 2.8rem;
}
.company__sec02 {
  padding: 7rem 0 7.2rem 0;
}
.company__sec02 .block {
  margin-bottom: 5.4rem;
}
.company__sec02 .block__txt--title {
  font-size: 2rem;
  line-height: 1.35;
  font-weight: 700;
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: flex-start;
}
.company__sec02 .block__txt--title span {
  display: block;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  font-variant-numeric: tabular-nums;
  transform: translateY(-0.4rem);
}
.company__sec02 .block__txt p {
  margin-top: 0.7rem;
}
.company__sec02 .block__img {
  margin-top: 2rem;
}
.company__sec02 .block:last-of-type {
  margin-bottom: 0;
}
.company__sec02 .block:last-of-type .block__img {
  transform: scale(1.0679012346);
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .company .page-head {
    background-image: url(../img/company/page-head_bg.jpg);
  }
  .company .sec_title {
    font-size: 3.2rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0em;
    margin-bottom: 0;
  }
  .company__sec01 {
    padding: 9rem 0 11.4rem 0;
  }
  .company__sec01--wrap {
    display: flex;
    gap: 2.4rem;
  }
  .company__sec01 .txt {
    width: 59.0361445783%;
  }
  .company__sec01 .txt p {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    margin-top: 3rem;
  }
  .company__sec01 .txt p:nth-child(4) {
    margin-top: 0;
  }
  .company__sec01 .img {
    width: 38.5542168675%;
  }
  .company__sec01 .img img {
    display: block;
    margin-top: 2rem;
  }
  .company__sec02 {
    padding: 11rem 0 9.2rem 0;
  }
  .company__sec02 .block {
    margin-bottom: 9rem;
  }
  .company__sec02 .block .f-box {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.4rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .company__sec02 .block__txt {
    width: 59.0361445783%;
  }
  .company__sec02 .block__txt--title {
    font-size: 5rem;
    line-height: 1.32;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    font-variant-numeric: tabular-nums;
    gap: 2.4rem;
    align-items: center;
  }
  .company__sec02 .block__txt--title span {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-family: "Noto Sans", sans-serif;
    transform: translateY(0);
  }
  .company__sec02 .block__txt p {
    margin-top: 2.4rem;
    font-size: 1.7rem;
    line-height: 1.6470588235;
    font-weight: 400;
    letter-spacing: 0.03em;
  }
  .company__sec02 .block__img {
    margin-top: 2.6rem;
    width: calc(40.9638554217% - 2.4rem);
  }
  .company__sec02 .block:first-of-type {
    margin-top: 4.2rem;
  }
  .company__sec02 .block:last-of-type {
    margin-bottom: 0;
  }
  .company__sec02 .block:last-of-type .block__img {
    transform: scale(1.0679012346);
    margin-top: 3rem;
  }
}
/*====================================================
//// Message & Leadership
====================================================*/
.massage .page-head {
  background-image: url(../img/massage/sp/page-head_bg.jpg);
}
.massage .page-head::after {
  content: none;
}
.massage .sec_title {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-weight: 500;
  letter-spacing: 0.005em;
  margin-bottom: 4rem;
}
.massage section {
  padding: 7.2rem 0 6.4rem 0;
}
.massage__sec01 .txt, .massage__sec02 .txt {
  margin-top: 4rem;
}
.massage__sec01 .txt p, .massage__sec02 .txt p {
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 400;
  color: #2B2E34;
  margin-top: 2.6rem;
}
.massage__sec01 .txt p:first-of-type, .massage__sec02 .txt p:first-of-type {
  margin-top: 0;
}
.massage__sec01 .txt p.name, .massage__sec02 .txt p.name {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: right;
  margin-top: 1.3rem;
}
.massage__sec03 {
  overflow-x: hidden;
}
.massage__sec03--left {
  position: relative;
}
.massage__sec03--left figure {
  width: 31.3rem;
  transform: translateX(0.5rem);
  padding: 2.4rem 0 1rem 0;
}
.massage__sec03--left figure::after {
  content: "";
  background-color: var(--main-color01);
  width: 200vw;
  height: 100%;
  position: absolute;
  left: -10vw;
  top: 0;
  opacity: 0.05;
  z-index: 0;
}
.massage__sec03--right h3 {
  color: var(--main-color01);
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  font-variant-numeric: tabular-nums;
  margin-top: 3.6rem;
}
.massage__sec03--right h3:first-child {
  margin-top: 2rem;
}
.massage__sec03--right p {
  font-size: 1.6rem;
  line-height: 1.6875;
  margin-top: 1rem;
}
.massage__sec03--right dl dt {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 1rem;
}
.massage__sec03--right dl dt:first-of-type {
  margin-top: 0;
}
.massage__sec04 {
  overflow: hidden;
  height: 100%;
}
.massage__sec04--block01 {
  background: linear-gradient(0deg, rgba(43, 46, 52, 0.16) 0%, transparent 100%);
  background-color: #E6E8EB;
  background-size: 100% 16.35rem;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 1.3%;
}
.massage__sec04--block01 figure {
  position: relative;
  padding-top: 2.5rem;
}
.massage__sec04--block01 figure figcaption {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  font-variant-numeric: tabular-nums;
  color: var(--main-color01);
  position: absolute;
  top: -1rem;
  left: 6.2%;
}
.massage__sec04--block01 figure img {
  transform: scale(1.05) translateX(1%);
}
.massage__sec04--block02 {
  width: 86.4%;
  margin: auto;
  position: relative;
  max-width: 120rem;
  padding-top: 4rem;
}
.massage__sec04--block02 h3 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  font-variant-numeric: tabular-nums;
  color: var(--main-color01);
}
.massage__sec04--block02 ul {
  margin-top: 1.6rem;
  margin-bottom: 3.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
}
.massage__sec04--block02 ul:last-of-type {
  margin-bottom: 6.4rem;
}
.massage__sec04--block02 ul li {
  background-color: #fff;
  padding: 2.4rem;
}
.massage__sec04--block02 ul li .head h4 {
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.massage__sec04--block02 ul li .head p {
  font-size: 1.6rem;
  line-height: 1.3125;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
}
.massage__sec04--block02 ul li .txt {
  margin-top: 1.6rem;
}
.massage__sec04--block02 ul li .txt p {
  font-size: 1.6rem;
  line-height: 1.6875;
}
.massage__sec04--block02 ul li .txt p strong {
  font-weight: 600;
}
.massage__sec04 .management__block {
  background-color: #fff;
  margin-top: 1.6rem;
  padding: 1.4rem;
}

@media screen and (min-width: 768px) {
  .massage .page-head {
    background-image: url(../img/massage/page-head_bg.jpg);
    background-position: 50% 50%;
  }
  .massage .sec_title {
    font-size: 3.2rem;
    line-height: 1.5;
    margin-bottom: 4.7rem;
  }
  .massage section {
    padding: 10rem 0 5.4rem 0;
  }
  .massage__sec01 .inner, .massage__sec02 .inner {
    max-width: 89.4rem;
  }
  .massage__sec01 figure, .massage__sec02 figure {
    max-width: 58.8rem;
    margin: auto;
  }
  .massage__sec01 .txt, .massage__sec02 .txt {
    max-width: 79.2rem;
    margin: 4rem auto 0 auto;
  }
  .massage__sec01 .txt p, .massage__sec02 .txt p {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    margin-top: 2.6rem;
  }
  .massage__sec01 .txt p.name, .massage__sec02 .txt p.name {
    font-size: 2.2rem;
    line-height: 1.2727272727;
    letter-spacing: 0.03em;
    margin-top: 1.6rem;
  }
  .massage__sec03 {
    position: relative;
    padding-top: 6.5rem !important;
  }
  .massage__sec03 .inner {
    display: flex;
    max-width: 99.6rem;
    gap: 4.5rem;
  }
  .massage__sec03--left {
    padding-top: 3rem;
  }
  .massage__sec03--left figure {
    width: 47.5rem;
    transform: translateX(-1.5rem);
    padding: 10rem 0 1rem 0;
    position: relative;
  }
  .massage__sec03--left figure::after {
    width: 100vw;
    left: auto;
    right: 7rem;
    top: 3.5rem;
  }
  .massage__sec03--right {
    width: 48.6rem;
  }
  .massage__sec03--right h3 {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-top: 3.4rem;
  }
  .massage__sec03--right p {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    margin-top: 1rem;
  }
  .massage__sec03--right dl dt {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    letter-spacing: 0.03em;
    margin-top: 1.5rem;
  }
  .massage__sec04 {
    padding: 11rem 0 10rem 0 !important;
  }
  .massage__sec04 .sec_title {
    margin-bottom: 3.5rem;
  }
  .massage__sec04--block01 {
    background-size: 100% 25.1rem;
    background-position: 0 100%;
    padding-bottom: 0;
  }
  .massage__sec04--block01 figure {
    padding-top: 0;
    max-width: 77.7rem;
    margin: auto;
  }
  .massage__sec04--block01 figure figcaption {
    font-size: 2.4rem;
    line-height: 1.5;
    top: 0;
    left: -10rem;
  }
  .massage__sec04--block01 figure img {
    transform: scale(1) translateX(1%);
  }
  .massage__sec04--block02 {
    max-width: 99.6rem;
    padding-top: 7rem;
  }
  .massage__sec04--block02 h3 {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .massage__sec04--block02 ul {
    margin-top: 2.2rem;
    margin-bottom: 6.4rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .massage__sec04--block02 ul:last-of-type {
    margin-bottom: 6.4rem;
  }
  .massage__sec04--block02 ul li {
    padding: 2.4rem;
    width: calc((100% - 2.4rem) / 2);
  }
  .massage__sec04--block02 ul li .head h4 {
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0.03em;
  }
  .massage__sec04--block02 ul li .head p {
    font-size: 1.6rem;
    line-height: 1.3125;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-top: 0.5rem;
  }
  .massage__sec04--block02 ul li .txt {
    margin-top: 1.6rem;
  }
  .massage__sec04--block02 ul li .txt p {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    letter-spacing: 0.03em;
  }
  .massage__sec04 .management__block {
    margin-top: 1.6rem;
    padding: 4.8rem;
  }
}
/*====================================================
//// History
====================================================*/
.history .page-head {
  background-image: url(../img/history/sp/page-head_bg.jpg);
}
.history__list {
  padding: 6.2rem 0 6.39rem 0;
}
.history__list dl dt {
  color: var(--main-color01);
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-style: italic;
  position: relative;
  border-top: 1px solid #C3C3C3;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  cursor: pointer;
}
.history__list dl dt::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.653%22%20height%3D%228.958%22%20viewBox%3D%220%200%2015.653%208.958%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1339%22%20data-name%3D%22%E3%83%91%E3%82%B9%201339%22%20d%3D%22M622.3-121.378l7.261%2C7.261%2C7.261-7.261%22%20transform%3D%22translate(-621.733%20121.944)%22%20fill%3D%22none%22%20stroke%3D%22%232b2e34%22%20stroke-width%3D%221.6%22%2F%3E%0A%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.452rem;
  aspect-ratio: 14.52/7.26;
  display: inline-block;
  margin-left: 2rem;
  transform: translateY(-0.5rem);
  transition: 0.3s;
}
.history__list dl dt:first-of-type {
  border-top: none;
}
.history__list dl dt.active::after {
  transform: rotate(-180deg) translateY(0.8rem);
}
.history__list dl dd {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.history__list dl dd p {
  font-size: 1.6rem;
  line-height: 1.6875;
}
.history__list dl dd p + p {
  margin-top: 2rem;
}
.history__list dl dd.active {
  visibility: visible;
  opacity: 1;
  max-height: 50rem;
  padding-bottom: 2.4rem;
}

@media screen and (min-width: 768px) {
  .history .page-head {
    background-image: url(../img/history/page-head_bg.jpg);
    background-position: 50% 50%;
  }
  .history__list {
    padding: 8rem 0 0 0;
  }
  .history__list dl {
    max-width: 79.2rem;
    margin: auto;
  }
  .history__list dl dt {
    font-size: 4rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
    cursor: pointer;
  }
  .history__list dl dt::after {
    margin-left: 2rem;
    transform: translateY(-1rem);
  }
  .history__list dl dt:first-of-type {
    border-top: none;
  }
  .history__list dl dt:hover {
    opacity: 0.8;
  }
  .history__list dl dd {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .history__list dl dd p {
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .history__list dl dd p + p {
    margin-top: 2rem;
  }
  .history__list dl dd.active {
    visibility: visible;
    opacity: 1;
    max-height: 50rem;
    padding-bottom: 3.6rem;
  }
}
/*====================================================
//// Locations
====================================================*/
.locations .page-head {
  background-image: url(../img/locations/sp/page-head_bg.jpg);
}
.locations__list {
  padding-top: 6.9rem;
}
.locations__list ul {
  margin-top: 4rem;
}
.locations__list ul li {
  border-bottom: 1px solid #C3C3C3;
  padding: 4.8rem 0;
}
.locations__list ul li:first-child {
  padding-top: 0;
}
.locations__list ul li:last-child {
  border-bottom: none;
}
.locations__list ul li .txt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.9rem;
}
.locations__list ul li .txt h3 {
  font-family: "Oswald", sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
}
.locations__list ul li .txt p {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  padding-left: 3rem;
  background-repeat: no-repeat;
  background-size: 2.4rem auto;
  background-position: top left;
  min-height: 2.4rem;
}
.locations__list ul li .txt p.address {
  padding-left: 4rem;
  flex-basis: 100%;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224.159%22%20viewBox%3D%220%200%2024%2024.159%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_32797%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2032797%22%20transform%3D%22translate(-22%20-4947.2)%22%3E%0A%20%20%20%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_141%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20141%22%20width%3D%2224%22%20height%3D%2224%22%20transform%3D%22translate(22%204947.359)%22%20fill%3D%22none%22%2F%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_602%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20602%22%20transform%3D%22translate(22.931%204948)%22%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1304%22%20data-name%3D%22%E3%83%91%E3%82%B9%201304%22%20d%3D%22M20.787%2C13.574A4.787%2C4.787%2C0%2C1%2C0%2C16%2C8.787%2C4.787%2C4.787%2C0%2C0%2C0%2C20.787%2C13.574Z%22%20transform%3D%22translate(-9.675%20-4)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1305%22%20data-name%3D%22%E3%83%91%E3%82%B9%201305%22%20d%3D%22M24%2C20v9.061%22%20transform%3D%22translate(-12.888%20-10.426)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1306%22%20data-name%3D%22%E3%83%91%E3%82%B9%201306%22%20d%3D%22M10.667%2C32H8.445L4%2C39.18H26.224L21.78%2C32H19.557%22%20transform%3D%22translate(-4%20-16.956)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
}
.locations__list ul li .txt p.tel {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_667%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20667%22%20transform%3D%22translate(-24%20-4974)%22%3E%0A%20%20%20%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_142%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20142%22%20width%3D%2224%22%20height%3D%2224%22%20transform%3D%22translate(24%204974)%22%20fill%3D%22none%22%2F%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1307%22%20data-name%3D%22%E3%83%91%E3%82%B9%201307%22%20d%3D%22M13.542%2C7.686a1.223%2C1.223%2C0%2C0%2C1%2C1.07.63l1.5%2C2.7a1.223%2C1.223%2C0%2C0%2C1%2C.025%2C1.141l-1.442%2C2.883a8.1%2C8.1%2C0%2C0%2C0%2C6.055%2C6.055l2.883-1.441a1.223%2C1.223%2C0%2C0%2C1%2C1.142.025l2.7%2C1.5a1.223%2C1.223%2C0%2C0%2C1%2C.629%2C1.069v3.1a2.261%2C2.261%2C0%2C0%2C1-2.965%2C2.216c-3.075-1.038-7.849-3.013-10.875-6.039s-5-7.8-6.039-10.875a2.261%2C2.261%2C0%2C0%2C1%2C2.216-2.965Z%22%20transform%3D%22translate(18.398%204967.814)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
}
.locations__list ul li .txt p.fax {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cpattern%20id%3D%22pattern%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2096%2096%22%3E%0A%20%20%20%20%20%20%3Cimage%20width%3D%2296%22%20height%3D%2296%22%20xlink%3Ahref%3D%22data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAYKADAAQAAAABAAAAYAAAAACpM19OAAAFj0lEQVR4Ae1dy45VRRRtiUKMxDijQeMHmKAT5aXBHqLx7cw%2FMPoTKhCGwCc0fgGCTjQyUUh8dMJAowM7aZWxiolOFNZK2En1vqfq1tlVdetc7t7JSp06Z79q7XPqPG66em3NxRlwBpwBZ8AZcAacAWfAGXAGnAFnwBlwBqbJwF6k9T5wA%2FgbuNMYjHEdeA9g7JWWQxj990Br0mP%2Bv0Psg6taAZ59PcmXonyLPB5axSJw2hESerfvrmIBOOeHxF9Gn1NSa3kcAT4Bwthftw46Rf%2B3FQkkZlHyBAKFBfirduAHajts4I8EhLLonJvG3xOOzLcXz8CDhpBPwuZl4DhwGOCU8ChA%2BRO4BdwE%2BAz9KfAr4FLIAC%2F7t4BrQDgnztv%2BH%2FpfAm8C1qlDx4CrhUrv%2BGsvYLj6SUQnldPnFUFfY0X7Hmtfqt8tPl86zgE8i3USJf1N%2BHsYyBUdK9eull63%2BCRKB5f%2BFo59AJwEDgB8WyXWgRcBHqOO6Oe029B%2FCdCibfXx1v158Xk%2FZO58XP4R%2BBh4Gyh%2Ba%2F4HTnRwvpg8C%2BTKc1CkjfYT6w%2FdsLVubuxaevPi%2FxYZ38%2FY%2F1pJEjrw6wXOaKv9DfWXsQDMeWgs3Mfp%2ByxgetzXTuGnSLQ%2F3f8F3k8NRNB6AypNd82Lz2mTuWu9sH%2FGkmHogNulYvVntSvNV%2Bxz4z8CgyPAeeBfILTjlfAqMEpCB9wuFas%2Fq11pvmJvif80jHeA0PYn9EfdmENjbpeK1Z%2FVrjRfsbfGZxH0lcCno2yxBo4FsPqz2sXyGLu%2FJP4FBAvt%2BWifLaEht0vF6s9qV5qv2JfEPwonoT3fE7IlNOR2qVj9We1K8xX7kvj74SS0H%2FV7QmjI7VKx%2BttGYLHl496ipTS%2B5C5tdv5iIG22YURR%2FEgbUZvZzedsvuwQQ%2B8JMwaVd5TGl%2FFKuyu91CdiGoSS0g31Ytu1%2FcXiTG1%2FctymV%2BSpjXCZ8%2FECdK6eF8AL0JmBzuH9CvACdGagc3i%2FArwA2QzIb6%2FyQiPtNjwM%2FZbcWj87cauiDFBaqx%2BxEz%2FSyv7cdgeKYqtb%2Fi6rpbW%2Bjhfr61x36fkUtIuOaXWSlTOkWuov9ttr7Lfk1vq5FCTHnfq%2BQ8NQUrqhXmy7tr9YnKntT47bp6DO5fICeAE6M9A5vF8BXoDODHQO71eAF6AzA53DL9MV0Prbzlj%2FzUuXfIMzRC%2F1t4OY2of0%2FVuQoSBuMocBObuknaM%2B97D4kXaugVJo%2FW1nrH%2BVXrQr45V2l2Lq%2Bw4NQknphnqx7dr%2BYnGmtj857mW6CU%2BN2Cr5eAGq0Gh34gWwc1fF0gtQhUa7Ey%2BAnbsqll6AKjTanXgB7NxVsVymAoz9VtNav0oBUk7kzU3alG7OMfEjbY5NqLODjtjq1r8FhUz5dh0G9FlW6rXU39hvNa31c%2FlIjjv1fYeGoaR0Q73Ydm1%2FsThT258c9zLdhKdGbJV8vABVaIw6kdUkRWHmD7W9AEJNm%2FYp5faW6ttWctJOvB9l4B115BvVT3aTd%2B%2Bk5fDB2v6Go0xn7zNIRS9Xw7VXs6U2YbX9ZQ%2BkgyLJ12vJLe2CTR34M4XkyijHgIuAPvO5ZNkrwCipfcZqf6vUPz2K%2BXvKmqCSZSs592l%2Fq9DnmU%2FyTS%2BxQwu3XoEzLsaaK1wx6jNgFcjWY%2BScP3raCYm9lCBuC8c%2BBDaAdYDLFu8DDgIbwEfATUAndT%2F3b2O8PwCbAK%2F4USskQn9GSCgX7%2F4PqEUcL0kuZEffLpkMPA89Lj1fWoSv4ONEZkxXUwzwJsJ%2FwvAFwLM4txjU%2FRx4AzDdiGB3X4uFFP4LKd5c%2BMzLxUn5L0weAyh%2FAL8DnP951VwFZr5%2FYJ%2BLM%2BAMOAPOgDPgDDgDzoAz4Aw4A86AM%2BAMrCQDdwHzaYgu%2FNTSPgAAAABJRU5ErkJggg%3D%3D%22%2F%3E%0A%20%20%20%20%3C%2Fpattern%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Crect%20id%3D%22_3237f25ed19a9cdb0b1cc834ecfaa01d%22%20data-name%3D%223237f25ed19a9cdb0b1cc834ecfaa01d%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22url(%23pattern)%22%2F%3E%0A%3C%2Fsvg%3E");
}
.locations__list ul li .txt p.mail {
  flex-basis: 100%;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cimage%20id%3D%22%E7%94%BB%E5%83%8F_6%22%20data-name%3D%22%E7%94%BB%E5%83%8F%206%22%20width%3D%2224%22%20height%3D%2224%22%20xlink%3Ahref%3D%22data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAZKADAAQAAAABAAAAZAAAAAAvu95BAAAGAklEQVR4Ae2aWcxdUxTHD6rGKoqaZylRMTXGEDHEkJoihNQQMSSePPbVY%2BPNg4cSIUQQYoohKhKl0oYgbc2CVkvNrVlR%2FNb13fR%2B%2F73PyTn3O%2Ffcfe63VvL%2F7j3rrL3Wf%2F333fecu8%2BXZW6ugCvgCrgCroAr4Aq4Aq6AK%2BAKuAKugCvgCrgCroAr4Aq4Au1XYAta%2BLf9bYxOB1uOTiuj0YlPSGLz6BOS2IRMifCx64pbcwqMu4b7CmlO%2BFKVfEJKydRckE9Ic1qXquQTUkqm5oJiE3I75bdqjsKkrWQam9aB2VVesRjfzCDSHXUpMINEi4Dq3rnjijnNtwacCNzqVeBY0n0K8nTPPWED%2FgA3Ard6FLiaNL%2BCvMkwf%2BHJ7sCFxE21YLe%2BFLAf4AtAV8%2Bi1yDozpyBr%2BHfG7hVU8A0M%2B1ikxDTOgi0cvNAbGl9g%2F9MC3ArpcCpRH0JdDJ%2Bx3fDWAY9FwSPxWXH8CZ28fkL%2F%2FxukL%2FmKnAzZzYCFfxzfCf0jNLzwYCe2Mxuz14AOsiOHwTbA7fxCmzL4T0gptnL%2BPcAvaZxwcDeYHtvP2BuA5uADn4b38HA7X8F9uPldaA6%2FYPvDhDbXdfYYDDjonYh3g1AE3yP79zoiMnlPIN2vwaqz8%2F4Lgd5pvFBgryB5p8F3gWaxD4BdlsX24rBPdJmz4%2Fsmvo3UF0%2BwjcbFJmOCZIUDbZz08BjQBPZ8dNgOpgstiONPgpiWjyDf%2BcSQujYIFmJHFnRp%2BJDEhxZJknLYw6D%2FztABa36baHjg4RVdDqPYLuGaNKf8F1WJVHLYufCdz3Qvn%2FEd3HFXjRHkLRivmx%2FBrwBNHH3k2J3aaNi3W%2BG2B3ncpo8pI9GVbdAyD5yZnbvfS%2FQ5Hb8PNgVtN12ooEnQazHh%2FDv0GeDmi8o0GfezjD7dfon0CKr8c3pRLTzz9HQ%2FgRoX3XsWmjOoMhEJTuNBOsi5G3%2F5vqJJh%2FC%2BKuo%2BQtQ4b7Fd1YNfDRvUKiGGtk%2BJFkKtJgdLwRbg9StaMv8TcgfUFMDqlEgWk11sm1IZNsFWtCOXwV7glRtN4i9BGLc78e%2FXY3EtUZQtMZanVTX8Pc3oIXX4ju5E5HWn%2BOhswooX3t6ehOo27ROULjugpbvOPAZ0OLW5K0gFbsWInkfnpMGRFI1CUQaUN3MvgZeBErAjuv%2BGqjag3293pXD7RX8g%2Fx6VT0Cgao2UyXefiTaJqT9aFQidqE8EDRtw74BUR0CYZoQ5EqK5N1Knt0EgbEap%2FO6Dqgodot%2B3VjMoF%2B0dkBm0AS6%2BQ%2FnzftACdk29nxg2xSDtLwfsR9T9KhBFpbc2n8giMQP9NC2I54ASsqOHwb9bkcwNNdsm%2Bc%2BEKv5HP5dQJOmPAJiTZKxWrYSbEVsAkrOVpCtpLrsUBKtAFqnuxE6jAdsyiUgV1fzVfNcwID1EbFsS%2FuSqski8efj%2BwGoAPao4NJIfFMu5RMQbIpIrI59glcCJTmRT3DRCvyAWkfEiDTo016D5hvkEi1lj0UfAUrUjp8FZR6LEtaxafx9HMRyPYV%2FeidquH%2BUW0B2uPQ2Vy%2B6C5q9OSz33SzOvAe04abu4nKJyQnlFxCW%2BKEe2u%2BEr4CStn%2BtuaKA2UWc2xAZ9x2%2BcwrGDeOU9hY0OwxSRTX35eQyoMTtWLfyi3YC3iL%2BIJCaaV9Bo6kRNj6213Q3UPJ2vBjMBDPAIhCLeQB%2Fqv%2F2qnyDBuCerN0Cs41Am1iFz6B%2Bi7UxKZtyDppImbxxmwNWA21Ej78g5hSQuinvoLHUGzB%2Bu4O8J3rW4BKwF2iDjcSEmNBTwAKgDdmFfipoiyn%2FoKG2NNLlOY83a8EaYO%2FbZuMmxLYVzNFr5nNrToFx%2Bg9jd7O5VltYyScksUnzCfEJSUyBxOj4CvEJSUyBxOj4CvEJSUyBxOj4CvEJSUyBxOj4CvEJSUyBxOj4CvEJSUyBxOj4CvEJSUyBxOj4CklsQmJPDBOjOLno%2BApJbL59QnxCElPA6bgCroAr4Aq4Aq6AK%2BAKuAKugCvgCrgCroAr4Aq4Aq6AK%2BAKuAK1K%2FAfcvwYmLlgL9wAAAAASUVORK5CYII%3D%22%2F%3E%0A%3C%2Fsvg%3E");
}
.locations__list ul li .map {
  margin: 1.6rem auto 2.4rem auto;
  aspect-ratio: 323.91/203.82;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .locations .page-head {
    background-image: url(../img/locations/sp/page-head_bg.jpg);
  }
  .locations .sec_title {
    font-size: 3.2rem;
    line-height: 1.5;
    font-weight: 500;
  }
  .locations__list {
    padding-top: 8.8rem 0 10rem 0;
  }
  .locations__list ul li {
    padding: 4.8rem 0;
    display: flex;
    justify-content: space-between;
  }
  .locations__list ul li:first-child {
    padding-top: 0;
  }
  .locations__list ul li:first-child .txt {
    order: 1;
  }
  .locations__list ul li:first-child .map {
    order: 2;
  }
  .locations__list ul li .txt {
    display: block;
  }
  .locations__list ul li .txt h3 {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 2.66rem;
  }
  .locations__list ul li .txt p {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    font-weight: 400;
    padding-left: 6.5rem;
    background-size: 3.6rem auto;
    min-height: 3.6rem;
    margin-bottom: 2.4rem;
    display: flex;
    align-items: center;
  }
  .locations__list ul li .txt p.address {
    padding-left: 6.5rem;
    flex-basis: 100%;
    align-items: flex-start;
  }
  .locations__list ul li .map {
    margin: 0;
    aspect-ratio: 588/370;
    width: 58.8rem;
  }
  .locations__sec02 {
    padding-top: 10rem;
  }
}
/*====================================================
//// Services
====================================================*/
.services .page-head {
  background-image: url(../img/services/sp/page-head_bg.jpg);
}
.services .page-head::after {
  content: none;
}
.services .sec_title {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.services .sec_title + .txt p {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 400;
}
.services .sec_title + .txt p:first-child {
  margin-top: 4rem;
}
.services__sec01 {
  padding: 6.4rem 0;
}
.services__sec01 ul {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 4rem;
}
.services__sec01 ul li h3 {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 500;
}
.services__sec01 ul li h3 span {
  color: var(--main-color01);
  font-family: "Oswald", sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 500;
  display: inline-block;
  margin-right: 1.5rem;
}
.services__sec01 ul li figure {
  margin-top: 0.8rem;
}
.services__sec02 {
  padding: 6.4rem 0;
}

@media screen and (min-width: 768px) {
  .services .page-head {
    background-image: url(../img/services/page-head_bg.jpg);
    background-position: 50% 100%;
  }
  .services .sec_title {
    font-size: 3.2rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0em;
  }
  .services .sec_title + .txt p {
    margin-top: 2.4rem;
    font-size: 1.7rem;
    line-height: 1.6470588235;
    font-weight: 400;
    letter-spacing: 0.03em;
  }
  .services .sec_title + .txt p:first-child {
    margin-top: 4rem;
  }
  .services__sec01 {
    padding: 8.6rem 0 10rem 0;
  }
  .services__sec01 ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6rem 2.4rem;
    margin-top: 8rem;
  }
  .services__sec01 ul li {
    width: calc((100% - 2.4rem) / 2);
  }
  .services__sec01 ul li h3 {
    display: flex;
    align-items: center;
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
  }
  .services__sec01 ul li h3 span {
    font-size: 4rem;
    line-height: 1;
    font-weight: 500;
    margin-right: 2.1rem;
  }
  .services__sec01 ul li figure {
    margin-top: 1.5rem;
  }
  .services__sec02 {
    padding: 11rem 0 9.5rem 0;
  }
}
/*====================================================
//// Projects
====================================================*/
.projects .page-head {
  background-image: url(../img/projects/sp/page-head_bg.jpg);
}
.projects .page-head::after {
  content: none;
}
.projects__list {
  padding: 3.6rem 0 6.2rem 0;
}
.projects__list .block {
  border-bottom: 1px solid #C3C3C3;
  padding: 2.8rem 0 1.5rem 0;
}
.projects__list .block:last-of-type {
  border-bottom: none;
}
.projects__list .block__title {
  font-size: 3rem;
  line-height: 0.9333333333;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-style: italic;
  color: var(--main-color01);
}
.projects__list .block__title::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.653%22%20height%3D%228.958%22%20viewBox%3D%220%200%2015.653%208.958%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1335%22%20data-name%3D%22%E3%83%91%E3%82%B9%201335%22%20d%3D%22M622.3-121.378l7.261%2C7.261%2C7.261-7.261%22%20transform%3D%22translate(-621.733%20121.944)%22%20fill%3D%22none%22%20stroke%3D%22%232b2e34%22%20stroke-width%3D%221.6%22%2F%3E%0A%3C%2Fsvg%3E");
  width: 1.452rem;
  aspect-ratio: 14.52/7.26;
  background-size: cover;
  display: inline-block;
  margin-left: 2rem;
  transform: translateY(-0.5rem);
  transition: 0.3s;
}
.projects__list .block__title.active::after {
  transform: rotate(180deg) translateY(0.8rem);
}
.projects__list .block__list {
  margin-top: 1.6rem;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.projects__list .block__list li {
  position: relative;
  margin-bottom: 1.6rem;
  padding-left: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 400;
  letter-spacing: 0em;
}
.projects__list .block__list li::before {
  content: "";
  width: 0.8rem;
  height: 100%;
  background-color: var(--main-color01);
  position: absolute;
  left: 0;
  top: 0;
}
.projects__list .block__list li span {
  display: inline-block;
}
.projects__list .block__list li span.bold {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-right: 1rem;
}
.projects__list .block__list li span.icon {
  border: 1px solid var(--main-color01);
  color: var(--main-color01);
  font-size: 1.4rem;
  line-height: 1.5714285714;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 0 0.5rem;
  border-radius: 0.2rem;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
  margin-right: 1rem;
}
.projects__list .block__list li:last-child {
  margin-bottom: 0;
}
.projects__list .block__list.active {
  opacity: 1;
  max-height: 100rem;
  visibility: visible;
  padding-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .projects .page-head {
    background-image: url(../img/projects/page-head_bg.jpg);
  }
  .projects__list {
    padding: 6rem 0 1.4rem 0;
  }
  .projects__list .block {
    padding: 2.9rem 0 5.7rem 0;
  }
  .projects__list .block__title {
    font-size: 4rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.03em;
  }
  .projects__list .block__title::after {
    content: none;
  }
  .projects__list .block__list {
    margin-top: 5.5rem;
    max-height: initial;
    opacity: 1;
    visibility: visible;
  }
  .projects__list .block__list li {
    margin-bottom: 3rem;
    padding-left: 2.4rem;
    font-size: 1.7rem;
    line-height: 1.6470588235;
    font-weight: 400;
    letter-spacing: 0em;
  }
  .projects__list .block__list li::before {
    height: 3.6rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .projects__list .block__list li span {
    display: inline-block;
  }
  .projects__list .block__list li span.bold {
    font-size: 2.2rem;
    line-height: 1.1818181818;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-right: 1.6rem;
  }
  .projects__list .block__list li span.icon {
    margin-right: 1.6rem;
  }
}
/*====================================================
//// News
====================================================*/
.page-news .page-head {
  background-image: url(../img/news/sp/page-head_bg.jpg);
}
.page-news__wrap {
  padding: 6.4rem 0;
}

@media screen and (min-width: 768px) {
  .page-news .page-head {
    background-image: url(../img/news/page-head_bg.jpg);
  }
  .page-news__wrap {
    padding: 11.5rem 0 3.9rem 0;
  }
  .page-news__wrap .top-news__list {
    margin: auto;
    max-width: 68.95rem;
    width: 100%;
  }
}
/*====================================================
//// Contact
====================================================*/
.contact .page-head {
  background-image: url(../img/contact/sp/page-head_bg.jpg);
}
.contact__sec {
  padding: 7rem 0;
}
.contact__sec .sec_title {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.contact__sec .sec_title span {
  display: block;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 500;
  letter-spacing: 0em;
  margin-top: 1.2rem;
}
.contact__sec--date {
  margin: 3.6rem auto 0 auto;
  width: 84.2592592593%;
}
.contact__sec--date .tel,
.contact__sec--date .fax,
.contact__sec--date .mail {
  border-bottom: 1px solid #707070;
  padding: 1.6rem 0 1.6rem 5rem;
  background-size: 4rem auto;
  background-repeat: no-repeat;
  background-position: 0 50%;
  min-height: 4rem;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.contact__sec--date .tel {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_667%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20667%22%20transform%3D%22translate(-24%20-4974)%22%3E%0A%20%20%20%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_142%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20142%22%20width%3D%2224%22%20height%3D%2224%22%20transform%3D%22translate(24%204974)%22%20fill%3D%22none%22%2F%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1307%22%20data-name%3D%22%E3%83%91%E3%82%B9%201307%22%20d%3D%22M13.542%2C7.686a1.223%2C1.223%2C0%2C0%2C1%2C1.07.63l1.5%2C2.7a1.223%2C1.223%2C0%2C0%2C1%2C.025%2C1.141l-1.442%2C2.883a8.1%2C8.1%2C0%2C0%2C0%2C6.055%2C6.055l2.883-1.441a1.223%2C1.223%2C0%2C0%2C1%2C1.142.025l2.7%2C1.5a1.223%2C1.223%2C0%2C0%2C1%2C.629%2C1.069v3.1a2.261%2C2.261%2C0%2C0%2C1-2.965%2C2.216c-3.075-1.038-7.849-3.013-10.875-6.039s-5-7.8-6.039-10.875a2.261%2C2.261%2C0%2C0%2C1%2C2.216-2.965Z%22%20transform%3D%22translate(18.398%204967.814)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
}
.contact__sec--date .fax {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cpattern%20id%3D%22pattern%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2096%2096%22%3E%0A%20%20%20%20%20%20%3Cimage%20width%3D%2296%22%20height%3D%2296%22%20xlink%3Ahref%3D%22data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAYKADAAQAAAABAAAAYAAAAACpM19OAAAFj0lEQVR4Ae1dy45VRRRtiUKMxDijQeMHmKAT5aXBHqLx7cw%2FMPoTKhCGwCc0fgGCTjQyUUh8dMJAowM7aZWxiolOFNZK2En1vqfq1tlVdetc7t7JSp06Z79q7XPqPG66em3NxRlwBpwBZ8AZcAacAWfAGXAGnAFnwBlwBqbJwF6k9T5wA%2FgbuNMYjHEdeA9g7JWWQxj990Br0mP%2Bv0Psg6taAZ59PcmXonyLPB5axSJw2hESerfvrmIBOOeHxF9Gn1NSa3kcAT4Bwthftw46Rf%2B3FQkkZlHyBAKFBfirduAHajts4I8EhLLonJvG3xOOzLcXz8CDhpBPwuZl4DhwGOCU8ChA%2BRO4BdwE%2BAz9KfAr4FLIAC%2F7t4BrQDgnztv%2BH%2FpfAm8C1qlDx4CrhUrv%2BGsvYLj6SUQnldPnFUFfY0X7Hmtfqt8tPl86zgE8i3USJf1N%2BHsYyBUdK9eull63%2BCRKB5f%2BFo59AJwEDgB8WyXWgRcBHqOO6Oe029B%2FCdCibfXx1v158Xk%2FZO58XP4R%2BBh4Gyh%2Ba%2F4HTnRwvpg8C%2BTKc1CkjfYT6w%2FdsLVubuxaevPi%2FxYZ38%2FY%2F1pJEjrw6wXOaKv9DfWXsQDMeWgs3Mfp%2ByxgetzXTuGnSLQ%2F3f8F3k8NRNB6AypNd82Lz2mTuWu9sH%2FGkmHogNulYvVntSvNV%2Bxz4z8CgyPAeeBfILTjlfAqMEpCB9wuFas%2Fq11pvmJvif80jHeA0PYn9EfdmENjbpeK1Z%2FVrjRfsbfGZxH0lcCno2yxBo4FsPqz2sXyGLu%2FJP4FBAvt%2BWifLaEht0vF6s9qV5qv2JfEPwonoT3fE7IlNOR2qVj9We1K8xX7kvj74SS0H%2FV7QmjI7VKx%2BttGYLHl496ipTS%2B5C5tdv5iIG22YURR%2FEgbUZvZzedsvuwQQ%2B8JMwaVd5TGl%2FFKuyu91CdiGoSS0g31Ytu1%2FcXiTG1%2FctymV%2BSpjXCZ8%2FECdK6eF8AL0JmBzuH9CvACdGagc3i%2FArwA2QzIb6%2FyQiPtNjwM%2FZbcWj87cauiDFBaqx%2BxEz%2FSyv7cdgeKYqtb%2Fi6rpbW%2Bjhfr61x36fkUtIuOaXWSlTOkWuov9ttr7Lfk1vq5FCTHnfq%2BQ8NQUrqhXmy7tr9YnKntT47bp6DO5fICeAE6M9A5vF8BXoDODHQO71eAF6AzA53DL9MV0Prbzlj%2FzUuXfIMzRC%2F1t4OY2of0%2FVuQoSBuMocBObuknaM%2B97D4kXaugVJo%2FW1nrH%2BVXrQr45V2l2Lq%2Bw4NQknphnqx7dr%2BYnGmtj857mW6CU%2BN2Cr5eAGq0Gh34gWwc1fF0gtQhUa7Ey%2BAnbsqll6AKjTanXgB7NxVsVymAoz9VtNav0oBUk7kzU3alG7OMfEjbY5NqLODjtjq1r8FhUz5dh0G9FlW6rXU39hvNa31c%2FlIjjv1fYeGoaR0Q73Ydm1%2FsThT258c9zLdhKdGbJV8vABVaIw6kdUkRWHmD7W9AEJNm%2FYp5faW6ttWctJOvB9l4B115BvVT3aTd%2B%2Bk5fDB2v6Go0xn7zNIRS9Xw7VXs6U2YbX9ZQ%2BkgyLJ12vJLe2CTR34M4XkyijHgIuAPvO5ZNkrwCipfcZqf6vUPz2K%2BXvKmqCSZSs592l%2Fq9DnmU%2FyTS%2BxQwu3XoEzLsaaK1wx6jNgFcjWY%2BScP3raCYm9lCBuC8c%2BBDaAdYDLFu8DDgIbwEfATUAndT%2F3b2O8PwCbAK%2F4USskQn9GSCgX7%2F4PqEUcL0kuZEffLpkMPA89Lj1fWoSv4ONEZkxXUwzwJsJ%2FwvAFwLM4txjU%2FRx4AzDdiGB3X4uFFP4LKd5c%2BMzLxUn5L0weAyh%2FAL8DnP951VwFZr5%2FYJ%2BLM%2BAMOAPOgDPgDDgDzoAz4Aw4A86AM%2BAMrCQDdwHzaYgu%2FNTSPgAAAABJRU5ErkJggg%3D%3D%22%2F%3E%0A%20%20%20%20%3C%2Fpattern%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Crect%20id%3D%22_3237f25ed19a9cdb0b1cc834ecfaa01d%22%20data-name%3D%223237f25ed19a9cdb0b1cc834ecfaa01d%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22url(%23pattern)%22%2F%3E%0A%3C%2Fsvg%3E");
}
.contact__sec--date .mail {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cimage%20id%3D%22%E7%94%BB%E5%83%8F_6%22%20data-name%3D%22%E7%94%BB%E5%83%8F%206%22%20width%3D%2224%22%20height%3D%2224%22%20xlink%3Ahref%3D%22data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAZKADAAQAAAABAAAAZAAAAAAvu95BAAAGAklEQVR4Ae2aWcxdUxTHD6rGKoqaZylRMTXGEDHEkJoihNQQMSSePPbVY%2BPNg4cSIUQQYoohKhKl0oYgbc2CVkvNrVlR%2FNb13fR%2B%2F73PyTn3O%2Ffcfe63VvL%2F7j3rrL3Wf%2F333fecu8%2BXZW6ugCvgCrgCroAr4Aq4Aq6AK%2BAKuAKugCvgCrgCroAr4Aq4Au1XYAta%2BLf9bYxOB1uOTiuj0YlPSGLz6BOS2IRMifCx64pbcwqMu4b7CmlO%2BFKVfEJKydRckE9Ic1qXquQTUkqm5oJiE3I75bdqjsKkrWQam9aB2VVesRjfzCDSHXUpMINEi4Dq3rnjijnNtwacCNzqVeBY0n0K8nTPPWED%2FgA3Ard6FLiaNL%2BCvMkwf%2BHJ7sCFxE21YLe%2BFLAf4AtAV8%2Bi1yDozpyBr%2BHfG7hVU8A0M%2B1ikxDTOgi0cvNAbGl9g%2F9MC3ArpcCpRH0JdDJ%2Bx3fDWAY9FwSPxWXH8CZ28fkL%2F%2FxukL%2FmKnAzZzYCFfxzfCf0jNLzwYCe2Mxuz14AOsiOHwTbA7fxCmzL4T0gptnL%2BPcAvaZxwcDeYHtvP2BuA5uADn4b38HA7X8F9uPldaA6%2FYPvDhDbXdfYYDDjonYh3g1AE3yP79zoiMnlPIN2vwaqz8%2F4Lgd5pvFBgryB5p8F3gWaxD4BdlsX24rBPdJmz4%2Fsmvo3UF0%2BwjcbFJmOCZIUDbZz08BjQBPZ8dNgOpgstiONPgpiWjyDf%2BcSQujYIFmJHFnRp%2BJDEhxZJknLYw6D%2FztABa36baHjg4RVdDqPYLuGaNKf8F1WJVHLYufCdz3Qvn%2FEd3HFXjRHkLRivmx%2FBrwBNHH3k2J3aaNi3W%2BG2B3ncpo8pI9GVbdAyD5yZnbvfS%2FQ5Hb8PNgVtN12ooEnQazHh%2FDv0GeDmi8o0GfezjD7dfon0CKr8c3pRLTzz9HQ%2FgRoX3XsWmjOoMhEJTuNBOsi5G3%2F5vqJJh%2FC%2BKuo%2BQtQ4b7Fd1YNfDRvUKiGGtk%2BJFkKtJgdLwRbg9StaMv8TcgfUFMDqlEgWk11sm1IZNsFWtCOXwV7glRtN4i9BGLc78e%2FXY3EtUZQtMZanVTX8Pc3oIXX4ju5E5HWn%2BOhswooX3t6ehOo27ROULjugpbvOPAZ0OLW5K0gFbsWInkfnpMGRFI1CUQaUN3MvgZeBErAjuv%2BGqjag3293pXD7RX8g%2Fx6VT0Cgao2UyXefiTaJqT9aFQidqE8EDRtw74BUR0CYZoQ5EqK5N1Knt0EgbEap%2FO6Dqgodot%2B3VjMoF%2B0dkBm0AS6%2BQ%2FnzftACdk29nxg2xSDtLwfsR9T9KhBFpbc2n8giMQP9NC2I54ASsqOHwb9bkcwNNdsm%2Bc%2BEKv5HP5dQJOmPAJiTZKxWrYSbEVsAkrOVpCtpLrsUBKtAFqnuxE6jAdsyiUgV1fzVfNcwID1EbFsS%2FuSqski8efj%2BwGoAPao4NJIfFMu5RMQbIpIrI59glcCJTmRT3DRCvyAWkfEiDTo016D5hvkEi1lj0UfAUrUjp8FZR6LEtaxafx9HMRyPYV%2FeidquH%2BUW0B2uPQ2Vy%2B6C5q9OSz33SzOvAe04abu4nKJyQnlFxCW%2BKEe2u%2BEr4CStn%2BtuaKA2UWc2xAZ9x2%2BcwrGDeOU9hY0OwxSRTX35eQyoMTtWLfyi3YC3iL%2BIJCaaV9Bo6kRNj6213Q3UPJ2vBjMBDPAIhCLeQB%2Fqv%2F2qnyDBuCerN0Cs41Am1iFz6B%2Bi7UxKZtyDppImbxxmwNWA21Ej78g5hSQuinvoLHUGzB%2Bu4O8J3rW4BKwF2iDjcSEmNBTwAKgDdmFfipoiyn%2FoKG2NNLlOY83a8EaYO%2FbZuMmxLYVzNFr5nNrToFx%2Bg9jd7O5VltYyScksUnzCfEJSUyBxOj4CvEJSUyBxOj4CvEJSUyBxOj4CvEJSUyBxOj4CvEJSUyBxOj4CvEJSUyBxOj4CvEJSUyBxOj4CklsQmJPDBOjOLno%2BApJbL59QnxCElPA6bgCroAr4Aq4Aq6AK%2BAKuAKugCvgCrgCroAr4Aq4Aq6AK%2BAKuAK1K%2FAfcvwYmLlgL9wAAAAASUVORK5CYII%3D%22%2F%3E%0A%3C%2Fsvg%3E");
}
.contact__sec .address {
  margin-top: 3.6rem;
  padding-left: 4rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224.159%22%20viewBox%3D%220%200%2024%2024.159%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_32797%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2032797%22%20transform%3D%22translate(-22%20-4947.2)%22%3E%0A%20%20%20%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_141%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20141%22%20width%3D%2224%22%20height%3D%2224%22%20transform%3D%22translate(22%204947.359)%22%20fill%3D%22none%22%2F%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_602%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20602%22%20transform%3D%22translate(22.931%204948)%22%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1304%22%20data-name%3D%22%E3%83%91%E3%82%B9%201304%22%20d%3D%22M20.787%2C13.574A4.787%2C4.787%2C0%2C1%2C0%2C16%2C8.787%2C4.787%2C4.787%2C0%2C0%2C0%2C20.787%2C13.574Z%22%20transform%3D%22translate(-9.675%20-4)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1305%22%20data-name%3D%22%E3%83%91%E3%82%B9%201305%22%20d%3D%22M24%2C20v9.061%22%20transform%3D%22translate(-12.888%20-10.426)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1306%22%20data-name%3D%22%E3%83%91%E3%82%B9%201306%22%20d%3D%22M10.667%2C32H8.445L4%2C39.18H26.224L21.78%2C32H19.557%22%20transform%3D%22translate(-4%20-16.956)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 2.4rem auto;
  background-position: top left;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.contact__sec .map {
  margin-top: 1.6rem;
  aspect-ratio: 323.91/203.82;
}

@media screen and (min-width: 768px) {
  .contact .page-head {
    background-image: url(../img/contact/page-head_bg.jpg);
  }
  .contact__sec {
    padding: 10rem 0;
  }
  .contact__sec .sec_title {
    font-size: 3.2rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0em;
  }
  .contact__sec .sec_title span {
    display: block;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0em;
    margin-top: 1.2rem;
  }
  .contact__sec--date {
    margin: 6.4rem auto 0 auto;
    max-width: 79.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .contact__sec--date .tel,
  .contact__sec--date .fax,
  .contact__sec--date .mail {
    border: none;
    background-size: 5.5rem auto;
    background-repeat: no-repeat;
    background-position: 0 50%;
    min-height: 4rem;
    font-size: 2.6rem;
    line-height: 1.1538461538;
    font-weight: 500;
    letter-spacing: 0.03em;
  }
  .contact__sec--date .tel,
  .contact__sec--date .fax {
    width: 50%;
    min-height: 7.3rem;
    margin-bottom: 3.4rem;
  }
  .contact__sec--date .tel {
    border-right: 1px solid #707070;
    padding-left: 8rem;
  }
  .contact__sec--date .fax {
    background-position: 5rem 50%;
    padding-left: 13rem;
  }
  .contact__sec--date .mail {
    width: 100%;
    border-bottom: 1px solid #707070;
    border-top: 1px solid #707070;
    padding: 4.5rem 0 4.2rem 8rem;
  }
  .contact__sec .address {
    max-width: 79.2rem;
    margin: 3.6rem auto 0 auto;
    padding: 1rem 0 1rem 8rem;
    background-size: 4.7rem auto;
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.03em;
    min-height: 5rem;
  }
  .contact__sec .map {
    max-width: 79.2rem;
    margin: 1.6rem auto 0 auto;
    aspect-ratio: 792/333;
  }
}
/*====================================================
//// Contact
====================================================*/
.another .page-head {
  background-color: #E6E8EB;
  background-image: none;
}
.another .page-head .page-head__title {
  color: var(--txt-color);
}
.another .page-head::after {
  content: none;
}
.another__txt {
  padding: 6.4rem 0 0 0;
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 400;
}
.another__txt p {
  margin-bottom: 2.4rem;
}
.another__txt p:last-child {
  margin-bottom: 0;
}
.another__txt p a {
  color: #4A6FA5;
  display: inline;
  text-decoration: underline;
}
.another__txt p a:hover {
  text-decoration: none;
}
.another__list {
  padding: 5.8rem 0 0 0;
}
.another__list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.3rem;
  justify-content: center;
  max-width: 21rem;
  margin: auto;
}
.another__list ul li {
  text-align: center;
  width: fit-content;
}
.another__list ul li a {
  color: #4A6FA5;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #4A6FA5;
  width: fit-content;
  margin: auto;
}
.another__list ul li:first-child, .another__list ul li:nth-child(3) {
  width: 100%;
}
.another__list ul li:nth-child(4) {
  margin-right: 3rem;
}
.another__list ul li:nth-child(6) {
  margin-right: 0.3rem;
}
.another__list ul li:nth-child(8) {
  margin-right: 1.6rem;
}
.another__list ul.sub {
  max-width: 28.75rem;
  margin: 3rem auto;
}
.another__list ul.sub li {
  width: fit-content;
  margin: 0;
}
.another__list ul.sub li a {
  font-size: 1.4rem;
  line-height: 2.2857142857;
  font-weight: 500;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 768px) {
  .another__txt {
    padding: 6.6rem 0 0 0;
    font-size: 1.7rem;
    line-height: 1.6470588235;
    font-weight: 400;
    letter-spacing: 0.03em;
  }
  .another__list {
    padding: 7.3rem 0 0 0;
  }
  .another__list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 4.83rem;
    justify-content: flex-start;
    max-width: initial;
    margin: auto;
  }
  .another__list ul li {
    text-align: center;
    width: fit-content;
  }
  .another__list ul li a {
    color: #4A6FA5;
    font-size: 2.1rem;
    line-height: 1.5238095238;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-bottom: 1px solid #4A6FA5;
    width: fit-content;
    margin: auto;
  }
  .another__list ul li a:hover {
    border-bottom: none;
  }
  .another__list ul li:first-child, .another__list ul li:nth-child(3) {
    width: fit-content;
  }
  .another__list ul li:nth-child(4) {
    margin-right: 0;
  }
  .another__list ul li:nth-child(6) {
    margin-right: 0;
  }
  .another__list ul li:nth-child(8) {
    margin-right: 0;
  }
  .another__list ul:nth-child(2) {
    margin-top: 4rem;
  }
  .another__list ul.sub {
    max-width: initial;
    margin: 0;
  }
  .another__list ul.sub li {
    width: fit-content;
    margin: 0;
  }
  .another__list ul.sub li a {
    font-size: 1.7rem;
    line-height: 1.8823529412;
    font-weight: 500;
    letter-spacing: 0.03em;
  }
}
.not-found {
  padding: 15rem 0 20rem 0;
}
.not-found .inner {
  width: 60.2666666667%;
}
.not-found h1 {
  font-size: 11.1rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: "Oswald", sans-serif;
  font-variant-numeric: tabular-nums;
  color: var(--main-color01);
  text-align: center;
}
.not-found h1 span {
  display: block;
  font-size: 4.4rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0em;
}
.not-found h1 + p {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.875;
  text-align: center;
}
.not-found .btn {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .not-found {
    padding: 17.2rem 0 7.2rem 0;
  }
  .not-found h1 {
    font-size: 15rem;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .not-found h1 span {
    font-size: 6rem;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0em;
  }
  .not-found h1 + p {
    margin-top: 5rem;
    font-size: 1.8rem;
    line-height: 2;
  }
  .not-found .btn {
    margin: 6.5rem auto 0 auto;
    max-width: 18rem;
  }
}/*# sourceMappingURL=style.css.map */