@charset "UTF-8";
::-moz-selection {
  background-color: #000000;
  color: #ffffff;
}
::selection {
  background-color: #000000;
  color: #ffffff;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-size: 100%;
}

html,
body {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background-color: #000000;
}
body.admin-bar {
  min-height: calc(100vh - 32px);
}

.modal-wait {
  overflow-y: hidden;
  height: 100vh;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

a:link,
a:visited {
  text-decoration: none;
  color: #ffffff;
  transition-duration: 0.33s;
}

a:hover {
  color: white;
}

.br,
.nosp {
  display: block;
}
@media screen and (max-width: 767px) {
  .br,
  .nosp {
    display: none;
  }
}

.brnosp-inline {
  display: inline;
}
@media screen and (max-width: 767px) {
  .brnosp-inline {
    display: none;
  }
}

.brsp,
.for-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .brsp,
  .for-sp {
    display: block;
  }
}

.d-none {
  display: none !important;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.bolder,
.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.light {
  font-weight: 300;
}

.larger {
  font-size: 1.15em;
}

.smaller {
  font-size: 0.85em;
}

.kakko {
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.kakko-l {
  margin-left: -0.5em;
}

.kakko2 {
  margin-left: -0.2em;
  margin-right: -0.2em;
}

img {
  display: block;
  width: 100%;
}

label#menu {
  display: none;
}

#nav {
  display: none;
}

.js-loading *,
.js-loading *:before,
.js-loading *:after {
  animation-play-state: paused !important;
}

.loading-text {
  margin-bottom: 4rem;
}

.material-symbols-sharp {
  font-size: 1.875vw;
}
@media screen and (max-width: 767px) {
  .material-symbols-sharp {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .material-symbols-sharp {
    font-size: 1.2rem;
  }
}

ul,
li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul.list {
  margin-top: 1.5625vw;
  text-indent: -1.05em;
}
@media screen and (max-width: 767px) {
  ul.list {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  ul.list {
    margin-top: 1rem;
  }
}
ul.list li {
  margin-top: 0.25rem;
  margin-left: 1.05em;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5625vw;
  text-transform: capitalize;
  opacity: 1;
  color: #000000;
  letter-spacing: 0.2em;
  z-index: 99;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .loading {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .loading {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width: 1024px) {
  .loading {
    font-size: 1rem;
  }
}

.blink {
  animation: blinker 1s ease-in-out alternate infinite;
  animation-play-state: running !important;
}

@keyframes blinker {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes starblinker {
  0% {
    opacity: 0.3;
    transform: perspective(500px) translateZ(-200px);
  }
  100% {
    opacity: 1;
    transform: perspective(500px) translateZ(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes off {
  0% {
    opacity: 1;
  }
  0%, 100% {
    opacity: 0;
  }
}
@keyframes blink {
  0%, 50% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 1;
  }
}
@keyframes glow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.15) blur(1px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blurIn {
  0% {
    filter: blur(8px);
  }
  100% {
    filter: blur();
  }
}
@keyframes hopper {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-16px);
  }
}
@keyframes hopper-s {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}
.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.noto-serif {
  font-family: "Noto Serif JP", serif;
}

.kiwi {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.shippori {
  font-family: "Shippori Mincho", serif;
}

.yantra {
  font-family: "Yantramanav", sans-serif;
}

.d-none {
  display: none;
}

.d-md-none {
  display: block;
}
@media screen and (max-width: 767px) {
  .d-md-none {
    display: none;
  }
}

.d-block {
  display: block !important;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw700 {
  font-weight: 700;
}

.strong,
strong {
  font-weight: 700;
}

.break-all {
  word-break: break-all;
}

.material-icons-outlined {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

.fade-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: 100vw auto;
  background-color: #efefef;
  padding: 0;
  margin: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fade-bg .logo {
  width: 100%;
  padding: 0 min(3.125vw, 2rem);
  max-width: 1024px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .fade-bg .logo {
    padding: 0;
  }
}
.fade-bg .logo .image {
  width: 25%;
  margin: 0 auto;
  height: auto;
  animation: fadeOutBg 0.3s reverse 1;
}
@media screen and (max-width: 767px) {
  .fade-bg .logo .image {
    width: 50%;
  }
}

@keyframes fadeOutBg {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.header {
  width: 100%;
  text-transform: uppercase;
  background-color: #000000;
  height: min(7.81248vw, 80px);
  display: flex;
  font-weight: 700;
  font-size: min(1.40625vw, 0.9rem);
  position: fixed;
  letter-spacing: 0.2em;
  left: 0;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .header {
    height: 50px;
  }
}
.header .bar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .header .bar {
    position: absolute;
    height: 100%;
    justify-content: flex-start;
  }
}
.header .bar .logo {
  height: 80px;
  margin-left: 2.625rem;
}
@media screen and (max-width: 767px) {
  .header .bar .logo {
    height: 50px;
    margin-left: 1rem;
  }
}
.header .bar .logo .image {
  height: 100%;
}
.header .bar .bar-list {
  margin-right: 2.625rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: auto;
  width: 100%;
  max-width: 552.96px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .header .bar .bar-list {
    transition: 0.33s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    position: fixed;
    padding-top: 4rem;
    padding-bottom: 18rem;
    height: 100vh;
    margin-top: -100vh;
    opacity: 0;
    position: fixed;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .header .bar .bar-list.bar-open {
    opacity: 1;
    height: 100vh;
    margin-top: 0;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .header .bar .bar-list.bar-open a {
    position: relative;
    z-index: 1;
  }
}
.header .bar .bar-list::before {
  position: absolute;
  content: "";
  opacity: 0;
  top: 0;
  right: 0;
  bottom: 100%;
  left: 0;
  z-index: 1;
  transition: 0.33s;
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 767px) {
  .header .bar .bar-list::before {
    opacity: 1;
    top: 2.5rem;
    bottom: 0;
  }
}
.header .bar .bar-list a {
  color: #ffffff;
  transition: 0.33s;
  position: relative;
}
.header .bar .bar-list a:hover {
  color: #ffffff;
}
.header .bar .bar-list a.current::after {
  border-bottom: 4px solid #b50000;
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: -7px;
  clip-path: polygon(0 0, calc(100% - 2px) 0, calc(100% - 2px) 100%, 0 100%);
}
.header .bar .hamburger {
  opacity: 0;
  transition: 0.33s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 24;
  width: 3rem;
  height: 3rem;
}
.header .bar .hamburger:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header .bar .hamburger {
    opacity: 1;
    left: unset;
    right: 0;
    top: 12px;
    z-index: 3;
  }
}
.header .bar .hamburger .material-symbols-sharp {
  font-size: 2rem;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 32;
}
.header .bar .hamburger-button {
  transition: 0.33s;
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  padding-left: 0.375rem;
  margin-top: -0.65rem;
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.45rem;
}
.header .bar .hamburger-button.ham-close {
  background-color: transparent;
}

.header-spacer {
  content: "";
  height: min(7.81248vw, 80px);
  position: relative;
  background-color: #000000;
}
@media screen and (max-width: 767px) {
  .header-spacer {
    height: 50px;
    min-height: 50px;
    padding-top: 50px;
  }
}

.top-box {
  background: url(../img/polepole_bg.jpg) repeat;
  background-size: 1024px auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .top-box {
    background-size: 640px auto;
  }
}
.top-box .copy-box {
  width: 35%;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  padding: min(3rem, 3 * 1.5625vw) min(4rem, 4 * 1.5625vw) min(3rem, 3 * 1.5625vw) min(5rem, 5 * 1.5625vw);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-box .copy-box {
    width: 64%;
    justify-content: center;
    padding: 2rem 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-box .copy-box {
    width: calc(50vw - 153.6px);
    padding-left: calc(50vw - 512px + 5rem);
  }
}
.top-box .copy-box .inner .line {
  padding-block: min(0.4rem, 0.625vw);
}
.top-box .copy-box .inner .line.no-line {
  margin-top: min(1.5rem, 2.34375vw);
}
.top-box .copy-box .inner .line.no-line .text {
  text-decoration: none;
}
.top-box .copy-box .inner .line .text {
  text-decoration: underline;
  text-decoration-color: #b50000;
  text-underline-offset: 10px;
  color: #ffffff;
  font-size: min(0.95rem, 1.484375vw);
  letter-spacing: 0.25em;
}
@media screen and (max-width: 767px) {
  .top-box .copy-box .inner .line .text {
    font-size: 0.8rem;
    text-underline-offset: 7px;
  }
}
.top-box .right-box {
  width: 65%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-box .right-box {
    width: 36%;
  }
}
@media screen and (min-width: 1024px) {
  .top-box .right-box {
    width: calc(50vw + 153.6px);
  }
}
.top-box .right-box .inner {
  margin-left: calc(50% - 18px);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-box .right-box .inner {
    margin-left: 0;
    flex-direction: column;
    width: 100%;
  }
}
.top-box .right-box .inner .circle {
  width: 37px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top-box .right-box .inner .circle {
    width: 28px;
    margin-block: 0.5rem;
  }
}
.top-box .right-box .inner .text-box {
  margin-left: 1.25rem;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .top-box .right-box .inner .text-box {
    margin-inline: auto;
    display: flex;
    align-items: center;
  }
}
.top-box .right-box .inner .text-box .text {
  font-size: min(0.8rem, 0.8 * 1.5625vw);
  color: #ffffff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-box .right-box .inner .text-box .text {
    font-size: 0.7rem;
  }
}

.top-bottom-box {
  width: 100%;
  height: 90px;
  content: "";
  background: linear-gradient(to bottom, transparent calc(100% - 30px), #999999 calc(100% - 30px)), url("../img/polepole_bg.jpg") repeat center center/cover;
  background-size: 1024px auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-bottom-box {
    height: 75px;
    background: linear-gradient(to bottom, transparent calc(100% - 24px), #999999 calc(100% - 24px)), url("../img/polepole_bg.jpg") repeat center center/cover;
    background-size: 640px auto;
  }
}
.top-bottom-box .left {
  width: 35%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .top-bottom-box .left {
    width: 64%;
  }
}
@media screen and (min-width: 1024px) {
  .top-bottom-box .left {
    width: calc(50vw - 153.6px);
  }
}
.top-bottom-box .right {
  width: 65%;
  height: 100%;
  background-color: rgba(181, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .top-bottom-box .right {
    width: 36%;
  }
}
@media screen and (min-width: 1024px) {
  .top-bottom-box .right {
    width: calc(50vw + 153.6px);
  }
}

.box {
  position: absolute;
  width: 1024px;
  height: 200%;
  background-color: rgba(51, 51, 51, 0.2);
  top: 0;
  left: calc(50vw - 512px);
  pointer-events: none;
  opacity: 0;
}

.upcoming,
.suehara,
.about,
.company-profile,
.past-project {
  background-color: #ffffff;
  padding-top: 30px;
}
.upcoming .border,
.suehara .border,
.about .border,
.company-profile .border,
.past-project .border {
  display: flex;
  align-items: flex-start;
}
.upcoming .border .left-border,
.suehara .border .left-border,
.about .border .left-border,
.company-profile .border .left-border,
.past-project .border .left-border {
  background-color: #b50000;
  width: 78px;
  height: 10px;
}
@media screen and (max-width: 767px) {
  .upcoming .border .left-border,
  .suehara .border .left-border,
  .about .border .left-border,
  .company-profile .border .left-border,
  .past-project .border .left-border {
    width: 1.5rem;
    height: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .upcoming .border .left-border,
  .suehara .border .left-border,
  .about .border .left-border,
  .company-profile .border .left-border,
  .past-project .border .left-border {
    width: calc(78px + 50vw - 512px);
  }
}
.upcoming .border .section-title,
.suehara .border .section-title,
.about .border .section-title,
.company-profile .border .section-title,
.past-project .border .section-title {
  text-transform: uppercase;
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-left: 0.75rem;
  margin-top: -5px;
  width: 208px;
}
@media screen and (max-width: 767px) {
  .upcoming .border .section-title,
  .suehara .border .section-title,
  .about .border .section-title,
  .company-profile .border .section-title,
  .past-project .border .section-title {
    font-size: 0.8em;
    margin-top: -4px;
    width: 185px;
  }
}
.upcoming .border .right-border,
.suehara .border .right-border,
.about .border .right-border,
.company-profile .border .right-border,
.past-project .border .right-border {
  width: calc(100% - 286px);
  height: 10px;
  background: linear-gradient(to right, #999999 1px, transparent 1px) repeat-x 0 0/4px 10px;
}
@media screen and (max-width: 767px) {
  .upcoming .border .right-border,
  .suehara .border .right-border,
  .about .border .right-border,
  .company-profile .border .right-border,
  .past-project .border .right-border {
    width: calc(100% - 11.5rem - 25px);
    height: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .upcoming .border .right-border,
  .suehara .border .right-border,
  .about .border .right-border,
  .company-profile .border .right-border,
  .past-project .border .right-border {
    width: calc(100% - 286px - 50vw + 512px);
  }
}

.suehara,
.about,
.company-profile {
  background-color: #efefef;
}
.suehara .border .left-border,
.about .border .left-border,
.company-profile .border .left-border {
  background-color: #000000;
}

.suehara .padding-box .visual-profile,
.suehara .padding-box .contact-works {
  display: flex;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile,
  .suehara .padding-box .contact-works {
    flex-direction: column;
  }
}
.suehara .padding-box .visual-profile .visual,
.suehara .padding-box .visual-profile .contact,
.suehara .padding-box .contact-works .visual,
.suehara .padding-box .contact-works .contact {
  width: 42%;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .visual,
  .suehara .padding-box .visual-profile .contact,
  .suehara .padding-box .contact-works .visual,
  .suehara .padding-box .contact-works .contact {
    width: 100%;
  }
}
.suehara .padding-box .visual-profile .visual img,
.suehara .padding-box .visual-profile .contact .inner,
.suehara .padding-box .contact-works .visual img,
.suehara .padding-box .contact-works .contact .inner {
  max-width: 430.08px;
}
.suehara .padding-box .visual-profile .profile,
.suehara .padding-box .visual-profile .works,
.suehara .padding-box .contact-works .profile,
.suehara .padding-box .contact-works .works {
  width: 58%;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .profile,
  .suehara .padding-box .visual-profile .works,
  .suehara .padding-box .contact-works .profile,
  .suehara .padding-box .contact-works .works {
    width: 100%;
  }
}
.suehara .padding-box .visual-profile .profile .inner,
.suehara .padding-box .visual-profile .works .inner,
.suehara .padding-box .contact-works .profile .inner,
.suehara .padding-box .contact-works .works .inner {
  max-width: 593.92px;
}
.suehara .padding-box .visual-profile .visual {
  background-color: #000000;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
.suehara .padding-box .visual-profile .visual img.pc {
  padding-top: 2.5rem;
  padding-left: 6rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .visual img.pc {
    display: none;
  }
}
.suehara .padding-box .visual-profile .visual img.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .visual img.sp {
    display: block;
    padding-inline: 3rem;
  }
}
.suehara .padding-box .visual-profile .profile .inner {
  padding-top: 2.5rem;
  padding-inline: 2.625rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .profile .inner {
    padding-top: 1.5rem;
    padding-inline: 1.5rem;
  }
}
.suehara .padding-box .visual-profile .profile .inner .title {
  font-size: 0.85rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .profile .inner .title {
    font-size: 0.7rem;
  }
}
.suehara .padding-box .visual-profile .name {
  display: flex;
  margin-top: 1.5rem;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .name {
    margin-top: 1rem;
  }
}
.suehara .padding-box .visual-profile .name .kanji {
  font-size: 1.75rem;
  letter-spacing: 0.25em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .name .kanji {
    font-size: 1.3rem;
  }
}
.suehara .padding-box .visual-profile .name .yomi {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .name .yomi {
    font-size: 0.6rem;
  }
}
.suehara .padding-box .visual-profile .text {
  margin-top: 1rem;
  border-block: 1px solid black;
  padding: 2rem 2.625rem;
  line-height: 2;
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .text {
    font-size: 0.9rem;
    padding: 1.5rem 1.5rem;
  }
}
.suehara .padding-box .visual-profile .links {
  padding: 2.5rem 2.625rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .links {
    padding: 2rem 1.5rem 0.5rem;
  }
}
.suehara .padding-box .visual-profile .links .line {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.suehara .padding-box .visual-profile .links .line:hover {
  color: #999999;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .links .line {
    font-size: 0.8rem;
  }
}
.suehara .padding-box .visual-profile .links .line .tri {
  color: #b50000;
  margin-right: 0.2em;
}
.suehara .padding-box .visual-profile .sns {
  display: flex;
  justify-content: flex-start;
  padding-left: 2.625rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .visual-profile .sns {
    margin-bottom: 3rem;
    padding-left: 1.5rem;
  }
}
.suehara .padding-box .visual-profile .sns .icon {
  fill: #000000;
  width: 36px;
  height: 36px;
  transition: 0.33s;
}
.suehara .padding-box .visual-profile .sns .icon:hover {
  fill: #999999;
}
.suehara .padding-box .visual-profile .sns .icon.x {
  margin-left: 1rem;
}
.suehara .padding-box .contact-works .contact {
  background-color: #711515;
  padding-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .contact-works .contact {
    padding-bottom: 0;
    order: 2;
  }
}
.suehara .padding-box .contact-works .contact .inner {
  padding-top: 2.5rem;
  padding-inline: 2.625rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .contact-works .contact .inner {
    padding-top: 1.5rem;
    padding-inline: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .suehara .padding-box .contact-works .contact .inner {
    margin-left: calc(50vw - 512px);
  }
}
.suehara .padding-box .contact-works .contact .inner .title {
  display: flex;
  align-items: center;
}
.suehara .padding-box .contact-works .contact .inner .title .circle {
  width: 37px;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .contact-works .contact .inner .title .circle {
    width: 28px;
  }
}
.suehara .padding-box .contact-works .contact .inner .title .text {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1rem;
  color: #ffffff;
  margin-left: 0.75rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .contact-works .contact .inner .title .text {
    font-size: 0.8rem;
  }
}
.suehara .padding-box .contact-works .contact .inner .lead {
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  line-height: 2.2;
  padding-left: 3.2rem;
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .contact-works .contact .inner .lead {
    font-size: 0.8rem;
    padding-left: 0;
    margin-inline: auto;
    text-align: center;
  }
}
.suehara .padding-box .contact-works .contact .inner .button {
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  display: block;
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .contact-works .contact .inner .button {
    margin-bottom: 4.5rem;
  }
}
.suehara .padding-box .contact-works .contact .inner .button .text {
  background-color: #000000;
  padding: 1rem 2.75rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .contact-works .contact .inner .button .text {
    font-size: 0.8rem;
    padding: 1rem 1.5rem;
    letter-spacing: 0.1em;
  }
}
.suehara .padding-box .contact-works .works {
  background-color: #7d7d7d;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .contact-works .works {
    padding-bottom: 5.5rem;
  }
}
.suehara .padding-box .contact-works .works .inner {
  padding-top: 2.5rem;
  padding-inline: 2.625rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .contact-works .works .inner {
    padding-top: 3.5rem;
    padding-inline: 1.5rem;
  }
}
.suehara .padding-box .contact-works .works .inner .title {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.suehara .padding-box .contact-works .works .inner .under {
  border-block: 1px solid #ffffff;
  padding: 4rem 2.625rem;
  margin-top: 1.5rem;
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .suehara .padding-box .contact-works .works .inner .under {
    padding: 1rem 1.5rem;
  }
}

.about .border .section-title {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .about .border .section-title {
    width: 95px;
  }
}
.about .border .right-border {
  width: calc(100% - 198px);
}
@media screen and (max-width: 767px) {
  .about .border .right-border {
    width: calc(100% - 95px - 1.5rem);
  }
}
@media screen and (min-width: 1024px) {
  .about .border .right-border {
    width: calc(100% - 198px - 50vw + 512px);
  }
}
.about .padding-box .logo-lead {
  display: flex;
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead {
    flex-direction: column;
  }
}
.about .padding-box .logo-lead .logo-profile {
  width: 42%;
  background-color: #b50000;
  position: relative;
  height: min(680px, 66.40608vw);
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .logo-profile {
    width: 100%;
    height: unset;
    order: 2;
  }
}
.about .padding-box .logo-lead .logo-profile .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(375px, 36.621vw);
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .logo-profile .logo {
    height: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .about .padding-box .logo-lead .logo-profile .logo {
    margin-left: calc(50vw - 512px);
  }
}
.about .padding-box .logo-lead .logo-profile .logo .image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .logo-profile .logo .image {
    width: 45%;
  }
}
.about .padding-box .logo-lead .logo-profile .profile {
  width: 238.0952380952%;
  height: min(305px, 29.78508vw);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .logo-profile .profile {
    width: 100%;
    position: relative;
    flex-direction: column;
    height: unset;
    background-color: #000000;
  }
}
.about .padding-box .logo-lead .logo-profile .profile .left {
  width: 50%;
  padding: min(2rem, 2 * 1.5625vw) 0 min(2rem, 2 * 1.5625vw) min(5.25rem, 5.25 * 1.5625vw);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .logo-profile .profile .left {
    width: 100%;
    order: 2;
    padding: 1rem 3rem 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .about .padding-box .logo-lead .logo-profile .profile .left {
    margin-left: calc(50vw - 512px);
  }
}
.about .padding-box .logo-lead .logo-profile .profile .left .title {
  font-size: min(0.85rem, 0.85 * 1.5625vw);
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .logo-profile .profile .left .title {
    font-size: 0.7rem;
  }
}
.about .padding-box .logo-lead .logo-profile .profile .left .name {
  display: flex;
  margin-top: min(1rem, 1 * 1.5625vw);
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .logo-profile .profile .left .name {
    margin-top: 0.5rem;
  }
}
.about .padding-box .logo-lead .logo-profile .profile .left .name .kanji {
  font-size: min(1.4rem, 1.4 * 1.5625vw);
  letter-spacing: 0.25em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .logo-profile .profile .left .name .kanji {
    font-size: 1.2rem;
  }
}
.about .padding-box .logo-lead .logo-profile .profile .left .name .yomi {
  font-size: min(0.75rem, 0.75 * 1.5625vw);
  margin-bottom: min(0.25rem, 0.25 * 1.5625vw);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .logo-profile .profile .left .name .yomi {
    font-size: 0.6rem;
  }
}
.about .padding-box .logo-lead .logo-profile .profile .left .text {
  font-size: min(0.9rem, 0.9 * 1.5625vw);
  line-height: 2.2;
  margin-top: min(2rem, 2 * 1.5625vw);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .logo-profile .profile .left .text {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
.about .padding-box .logo-lead .logo-profile .profile .right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(1rem, 1 * 1.5625vw) min(5rem, 5 * 1.5625vw) min(1rem, 1 * 1.5625vw) min(1rem, 1 * 1.5625vw);
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .logo-profile .profile .right {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .about .padding-box .logo-lead .logo-profile .profile .right {
    margin-right: calc(50vw - 512px);
  }
}
.about .padding-box .logo-lead .logo-profile .profile .right .image {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .logo-profile .profile .right .image {
    width: 100%;
  }
}
.about .padding-box .logo-lead .lead {
  width: 58%;
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .lead {
    width: 100%;
  }
}
.about .padding-box .logo-lead .lead .inner {
  max-width: 593.92px;
  padding: min(6rem, 6 * 1.5625vw);
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .lead .inner {
    padding: 2rem 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .about .padding-box .logo-lead .lead .inner {
    margin-right: calc(50vw - 512px);
  }
}
.about .padding-box .logo-lead .lead .inner .text {
  line-height: 2;
  font-size: min(0.9rem, 0.9 * 1.5625vw);
}
@media screen and (max-width: 767px) {
  .about .padding-box .logo-lead .lead .inner .text {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}

.upcoming.to-events .padding-box .items {
  width: 120%;
  justify-content: flex-start;
}
@media screen and (min-width: 1228px) {
  .upcoming.to-events .padding-box .items {
    width: 100%;
    justify-content: center;
  }
}
.upcoming.to-events .padding-box .items .item {
  max-width: 298px;
  width: 25%;
}

.upcoming .padding-box,
.past-project .padding-box {
  padding: 3rem 0;
  overflow: hidden;
}
.upcoming .padding-box .items,
.past-project .padding-box .items {
  display: flex;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .upcoming .padding-box .items,
  .past-project .padding-box .items {
    padding-inline: 0.75rem;
  }
}
.upcoming .padding-box .items .item,
.past-project .padding-box .items .item {
  width: 33%;
  max-width: 298px;
  padding-inline: min(1.5rem, 2.34375vw);
}
@media screen and (max-width: 767px) {
  .upcoming .padding-box .items .item,
  .past-project .padding-box .items .item {
    width: 50%;
    padding-inline: 0.75rem;
  }
  .upcoming .padding-box .items .item:nth-child(n+3),
  .past-project .padding-box .items .item:nth-child(n+3) {
    display: none;
  }
}
.upcoming .padding-box .items .item.is-blank .image-box,
.past-project .padding-box .items .item.is-blank .image-box {
  background: url(../img/blank.svg) no-repeat;
  background-size: 100% auto;
  background-color: #efefef;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.upcoming .padding-box .items .item.is-blank .image-box .image,
.past-project .padding-box .items .item.is-blank .image-box .image {
  width: 4.5rem;
  height: 4.5rem;
}
@media screen and (max-width: 767px) {
  .upcoming .padding-box .items .item.is-blank .image-box .image,
  .past-project .padding-box .items .item.is-blank .image-box .image {
    width: 3rem;
    height: 3rem;
  }
}
.upcoming .padding-box .items .item.is-blank .data .other .title,
.past-project .padding-box .items .item.is-blank .data .other .title {
  position: relative;
}
@media screen and (max-width: 767px) {
  .upcoming .padding-box .items .item.is-blank .data .other .title,
  .past-project .padding-box .items .item.is-blank .data .other .title {
    margin-top: 1.5rem;
  }
}
.upcoming .padding-box .items .item .image-box .image,
.past-project .padding-box .items .item .image-box .image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  aspect-ratio: 1/1;
}
.upcoming .padding-box .items .data .other .title,
.past-project .padding-box .items .data .other .title {
  font-size: min(0.9rem, 1.40625vw);
  color: #000000;
  margin-top: min(1.5rem, 2.34375vw);
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .upcoming .padding-box .items .data .other .title,
  .past-project .padding-box .items .data .other .title {
    margin-top: 1.5rem;
    font-size: 0.8rem;
  }
}

.past-project {
  background-color: #efefef;
}
.past-project .border .left-border {
  background-color: #000000;
}
.past-project .border .section-title {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .past-project .border .section-title {
    width: 85px;
  }
}
.past-project .border .right-border {
  width: calc(100% - 178px);
}
@media screen and (max-width: 767px) {
  .past-project .border .right-border {
    width: calc(100% - 109px);
  }
}
@media screen and (min-width: 1024px) {
  .past-project .border .right-border {
    width: calc(100% - 178px - 50vw + 512px);
  }
}
.past-project .padding-box .items .item.is-blank .image-box {
  background-color: #ffffff;
}

.bottom-border {
  display: flex;
  padding-bottom: 1.5rem;
  background-color: #ffffff;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .bottom-border {
    padding-bottom: 1rem;
  }
}
.bottom-border .left-border {
  width: calc(100% - 286px);
  height: 10px;
  background: linear-gradient(to right, #999999 1px, transparent 1px) repeat-x 0 0/4px 10px;
}
@media screen and (max-width: 767px) {
  .bottom-border .left-border {
    width: calc(100% - 11.5rem);
    height: 8px;
    background: linear-gradient(to right, #999999 1px, transparent 1px) repeat-x 0 0/4px 8px;
  }
}
@media screen and (min-width: 1024px) {
  .bottom-border .left-border {
    width: calc(100% - 286px - 50vw + 512px);
  }
}
.bottom-border .more {
  width: 208px;
  color: #b50000;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-left: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .bottom-border .more {
    font-size: 0.8rem;
    width: 160px;
  }
}
.bottom-border .more:hover {
  color: #999999;
}
.bottom-border .more:hover .tri {
  color: #999999 !important;
}
.bottom-border .more .tri {
  color: #000000;
  margin-left: 0.2em;
  font-size: 0.8em;
  transition: 0.33s;
}
.bottom-border .right-border {
  width: 78px;
  height: 10px;
  background: linear-gradient(to right, #999999 1px, transparent 1px) repeat-x 0 0/4px 10px;
}
@media screen and (max-width: 767px) {
  .bottom-border .right-border {
    width: 1.5rem;
    height: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .bottom-border .right-border {
    width: calc(78px + 50vw - 512px);
  }
}

.news-top .section-title {
  display: flex;
  align-items: center;
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: 2.625rem;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .news-top .section-title {
    padding-inline: 1.5rem;
    padding-top: 2.5rem;
  }
}
.news-top .section-title .circle {
  width: 37px;
}
@media screen and (max-width: 767px) {
  .news-top .section-title .circle {
    width: 28px;
  }
}
.news-top .section-title .en {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .news-top .section-title .en {
    font-size: 0.8rem;
    margin-left: 0.5rem;
  }
}

.news-archive .inner .tags {
  display: flex;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .news-archive .inner .tags {
    margin-bottom: 4.5rem;
  }
}
.news-archive .inner .tags a .item {
  width: 70px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1;
  padding: 0.15rem 0 1px;
  margin-right: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .news-archive .inner .tags a .item {
    width: 65px;
    font-size: 0.75rem;
    padding: 0.2rem 0.35rem 2px;
    margin-right: 0.25rem;
  }
}
.news-archive .inner .tags a .item.genre-all {
  background-color: #999999;
}
.news-archive .inner .tags a .item.genre-event, .news-archive .inner .tags a .item.genre-stage {
  background-color: #b50000;
}
.news-archive .inner .tags a .item.genre-info {
  background-color: #000000;
}
.news-archive .inner .tags a .item.genre-other {
  background-color: #843131;
}
.news-archive .inner .tags a .item .genre-date-box {
  display: flex;
}
.news-archive .inner .tags a .item .genre-date-box .genre {
  padding: 0.25rem 1rem 0.1rem;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1;
  width: 80px;
  text-align: center;
}
.news-archive .inner .tags a .item .genre-date-box .date {
  margin-left: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.news-top,
.news-archive,
.project-archive {
  background-color: #efefef;
}
.news-top .inner,
.news-archive .inner,
.project-archive .inner {
  padding: 2rem 5.25rem;
  max-width: 1024px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .news-top .inner,
  .news-archive .inner,
  .project-archive .inner {
    padding: 1rem 1.5rem;
  }
}
.news-top .inner .items .item,
.news-archive .inner .items .item,
.project-archive .inner .items .item {
  margin-top: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #999999;
  position: relative;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .news-top .inner .items .item,
  .news-archive .inner .items .item,
  .project-archive .inner .items .item {
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
.news-top .inner .items .item:not(.no-link):hover .other,
.news-top .inner .items .item:not(.no-link):hover .genre-date-box .date,
.news-top .inner .items .item:not(.no-link):hover a,
.news-archive .inner .items .item:not(.no-link):hover .other,
.news-archive .inner .items .item:not(.no-link):hover .genre-date-box .date,
.news-archive .inner .items .item:not(.no-link):hover a,
.project-archive .inner .items .item:not(.no-link):hover .other,
.project-archive .inner .items .item:not(.no-link):hover .genre-date-box .date,
.project-archive .inner .items .item:not(.no-link):hover a {
  color: #999999;
}
.news-top .inner .items .item:not(.no-link):hover::after,
.news-archive .inner .items .item:not(.no-link):hover::after,
.project-archive .inner .items .item:not(.no-link):hover::after {
  border-color: #b50000;
}
.news-top .inner .items .item::after,
.news-archive .inner .items .item::after,
.project-archive .inner .items .item::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: calc(50% - 0.75rem);
  right: 0;
  border-right: 1px solid #999999;
  border-bottom: 1px solid #999999;
  transform: rotate(-45deg);
  transition: 0.33s;
}
@media screen and (max-width: 767px) {
  .news-top .inner .items .item::after,
  .news-archive .inner .items .item::after,
  .project-archive .inner .items .item::after {
    width: 1rem;
    height: 1rem;
    right: -5px;
    top: calc(50% - 1rem);
  }
}
.news-top .inner .items .item.no-link::after,
.news-archive .inner .items .item.no-link::after,
.project-archive .inner .items .item.no-link::after {
  display: none;
}
.news-top .inner .items .item.genre-EVENT .genre, .news-top .inner .items .item.genre-STAGE .genre,
.news-archive .inner .items .item.genre-EVENT .genre,
.news-archive .inner .items .item.genre-STAGE .genre,
.project-archive .inner .items .item.genre-EVENT .genre,
.project-archive .inner .items .item.genre-STAGE .genre {
  background-color: #b50000;
}
.news-top .inner .items .item.genre-INFO .genre,
.news-archive .inner .items .item.genre-INFO .genre,
.project-archive .inner .items .item.genre-INFO .genre {
  background-color: #000000;
}
.news-top .inner .items .item.genre-OTHER .genre,
.news-archive .inner .items .item.genre-OTHER .genre,
.project-archive .inner .items .item.genre-OTHER .genre {
  background-color: #843131;
}
.news-top .inner .items .item .genre-date-box,
.news-archive .inner .items .item .genre-date-box,
.project-archive .inner .items .item .genre-date-box {
  display: flex;
}
.news-top .inner .items .item .genre-date-box .genre,
.news-archive .inner .items .item .genre-date-box .genre,
.project-archive .inner .items .item .genre-date-box .genre {
  padding: 0.1rem 0 1px;
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1;
  width: 70px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .news-top .inner .items .item .genre-date-box .genre,
  .news-archive .inner .items .item .genre-date-box .genre,
  .project-archive .inner .items .item .genre-date-box .genre {
    padding: 0.2rem 0.35rem 2px;
    font-size: 0.75rem;
    width: 65px;
  }
}
.news-top .inner .items .item .genre-date-box .date,
.news-archive .inner .items .item .genre-date-box .date,
.project-archive .inner .items .item .genre-date-box .date {
  margin-left: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #000000;
  transition: color 0.33s;
}
@media screen and (max-width: 767px) {
  .news-top .inner .items .item .genre-date-box .date,
  .news-archive .inner .items .item .genre-date-box .date,
  .project-archive .inner .items .item .genre-date-box .date {
    font-size: 0.7rem;
  }
}
.news-top .inner .items .item .other,
.news-archive .inner .items .item .other,
.project-archive .inner .items .item .other {
  color: #000000;
  transition: color 0.33s;
}
.news-top .inner .items .item .other .title,
.news-archive .inner .items .item .other .title,
.project-archive .inner .items .item .other .title {
  margin-top: 1rem;
  margin-left: 104px;
  font-size: 0.9rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .news-top .inner .items .item .other .title,
  .news-archive .inner .items .item .other .title,
  .project-archive .inner .items .item .other .title {
    margin-left: 0;
    font-size: 0.8rem;
    line-height: 1.6;
  }
}
.news-top .inner .link-index,
.news-archive .inner .link-index,
.project-archive .inner .link-index {
  text-align: right;
  margin-top: 3.5rem;
  letter-spacing: 0.2rem;
  font-size: 1rem;
  margin-right: -5.25rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .news-top .inner .link-index,
  .news-archive .inner .link-index,
  .project-archive .inner .link-index {
    margin-top: 2.5rem;
    font-size: 0.8rem;
    margin-right: -1.5rem;
    margin-bottom: 6rem;
    overflow: hidden;
  }
}
.news-top .inner .link-index a:hover .text .view,
.news-top .inner .link-index a:hover .text .circles,
.news-archive .inner .link-index a:hover .text .view,
.news-archive .inner .link-index a:hover .text .circles,
.project-archive .inner .link-index a:hover .text .view,
.project-archive .inner .link-index a:hover .text .circles {
  color: #999999;
}
.news-top .inner .link-index .view,
.news-archive .inner .link-index .view,
.project-archive .inner .link-index .view {
  color: #b50000;
  margin-right: 1rem;
  transition: 0.33s;
}
.news-top .inner .link-index .circles,
.news-archive .inner .link-index .circles,
.project-archive .inner .link-index .circles {
  color: #000000;
  letter-spacing: 0.4em;
  font-size: 0.95em;
  transition: 0.33s;
}

.footer {
  background: url(../img/polepole_bg.jpg) repeat;
  background-size: 1024px auto;
  padding-top: 1.75rem;
}
.footer .base {
  background-color: #000000;
}
.footer .inner {
  display: flex;
  justify-content: space-around;
  max-width: 1024px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .inner {
    justify-content: flex-start;
  }
}
.footer .inner .copy {
  font-size: 0.6rem;
  color: #ffffff;
  padding: 0.5rem;
  padding-left: 2.5rem;
  width: calc(100% - 263px);
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .footer .inner .copy {
    padding-left: 1.5rem;
    width: 100%;
    font-size: 0.5rem;
  }
}
.footer .inner .copy .yantra {
  font-size: 1.1em;
}
.footer .inner .logo {
  height: 80px;
  text-align: right;
  margin-right: 2.625rem;
}
@media screen and (max-width: 767px) {
  .footer .inner .logo {
    display: none;
  }
}
.footer .inner .logo .image {
  height: 100%;
}

.news-single > .section-title,
.news-archive > .section-title,
.project-single > .section-title,
.project-archive > .section-title,
.management > .section-title,
.company > .section-title,
.privacy > .section-title,
.contact > .section-title {
  background: url(../img/polepole_bg.jpg) repeat;
  background-size: 1024px auto;
}
.news-single > .section-title a,
.news-archive > .section-title a,
.project-single > .section-title a,
.project-archive > .section-title a,
.management > .section-title a,
.company > .section-title a,
.privacy > .section-title a,
.contact > .section-title a {
  display: flex;
}
.news-single > .section-title a .left,
.news-archive > .section-title a .left,
.project-single > .section-title a .left,
.project-archive > .section-title a .left,
.management > .section-title a .left,
.company > .section-title a .left,
.privacy > .section-title a .left,
.contact > .section-title a .left {
  width: 35%;
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 1024px) {
  .news-single > .section-title a .left,
  .news-archive > .section-title a .left,
  .project-single > .section-title a .left,
  .project-archive > .section-title a .left,
  .management > .section-title a .left,
  .company > .section-title a .left,
  .privacy > .section-title a .left,
  .contact > .section-title a .left {
    width: calc(50vw - 153.6px);
    padding-left: calc(50vw - 512px);
  }
}
.news-single > .section-title a .left .jp,
.news-archive > .section-title a .left .jp,
.project-single > .section-title a .left .jp,
.project-archive > .section-title a .left .jp,
.management > .section-title a .left .jp,
.company > .section-title a .left .jp,
.privacy > .section-title a .left .jp,
.contact > .section-title a .left .jp {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  padding: 1.5rem 2.625rem;
}
@media screen and (max-width: 767px) {
  .news-single > .section-title a .left .jp,
  .news-archive > .section-title a .left .jp,
  .project-single > .section-title a .left .jp,
  .project-archive > .section-title a .left .jp,
  .management > .section-title a .left .jp,
  .company > .section-title a .left .jp,
  .privacy > .section-title a .left .jp,
  .contact > .section-title a .left .jp {
    font-size: 0.6rem;
    padding: 1rem;
  }
}
.news-single > .section-title a .right,
.news-archive > .section-title a .right,
.project-single > .section-title a .right,
.project-archive > .section-title a .right,
.management > .section-title a .right,
.company > .section-title a .right,
.privacy > .section-title a .right,
.contact > .section-title a .right {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .news-single > .section-title a .right,
  .news-archive > .section-title a .right,
  .project-single > .section-title a .right,
  .project-archive > .section-title a .right,
  .management > .section-title a .right,
  .company > .section-title a .right,
  .privacy > .section-title a .right,
  .contact > .section-title a .right {
    width: calc(50vw + 153.6px);
    padding-right: calc(50vw - 512px);
  }
}
.news-single > .section-title a .right .en,
.news-archive > .section-title a .right .en,
.project-single > .section-title a .right .en,
.project-archive > .section-title a .right .en,
.management > .section-title a .right .en,
.company > .section-title a .right .en,
.privacy > .section-title a .right .en,
.contact > .section-title a .right .en {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 2.625rem;
}
@media screen and (max-width: 767px) {
  .news-single > .section-title a .right .en,
  .news-archive > .section-title a .right .en,
  .project-single > .section-title a .right .en,
  .project-archive > .section-title a .right .en,
  .management > .section-title a .right .en,
  .company > .section-title a .right .en,
  .privacy > .section-title a .right .en,
  .contact > .section-title a .right .en {
    padding-right: 1.5rem;
  }
}
.news-single > .section-title a .right .en .text,
.news-archive > .section-title a .right .en .text,
.project-single > .section-title a .right .en .text,
.project-archive > .section-title a .right .en .text,
.management > .section-title a .right .en .text,
.company > .section-title a .right .en .text,
.privacy > .section-title a .right .en .text,
.contact > .section-title a .right .en .text {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.4em;
  margin-right: 0.75rem;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .news-single > .section-title a .right .en .text,
  .news-archive > .section-title a .right .en .text,
  .project-single > .section-title a .right .en .text,
  .project-archive > .section-title a .right .en .text,
  .management > .section-title a .right .en .text,
  .company > .section-title a .right .en .text,
  .privacy > .section-title a .right .en .text,
  .contact > .section-title a .right .en .text {
    font-size: 0.7rem;
    margin-right: 0.5rem;
  }
}
.news-single > .section-title a .right .en .circle,
.news-archive > .section-title a .right .en .circle,
.project-single > .section-title a .right .en .circle,
.project-archive > .section-title a .right .en .circle,
.management > .section-title a .right .en .circle,
.company > .section-title a .right .en .circle,
.privacy > .section-title a .right .en .circle,
.contact > .section-title a .right .en .circle {
  width: 37px;
  height: 37px;
}
@media screen and (max-width: 767px) {
  .news-single > .section-title a .right .en .circle,
  .news-archive > .section-title a .right .en .circle,
  .project-single > .section-title a .right .en .circle,
  .project-archive > .section-title a .right .en .circle,
  .management > .section-title a .right .en .circle,
  .company > .section-title a .right .en .circle,
  .privacy > .section-title a .right .en .circle,
  .contact > .section-title a .right .en .circle {
    width: 28px;
    height: 28px;
  }
}

.news-archive,
.project-archive {
  flex: 1;
}

.news-single,
.project-single {
  background-color: #efefef;
  flex: 1;
}
.news-single .inner,
.project-single .inner {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: 2.625rem;
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .news-single .inner,
  .project-single .inner {
    padding-inline: 1rem;
    padding-top: 2rem;
  }
}
.news-single .inner .news-box,
.project-single .inner .news-box {
  padding: 1.25rem 2.625rem;
  border: 1px solid #000000;
  background-color: #ffffff;
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  .news-single .inner .news-box,
  .project-single .inner .news-box {
    padding-inline: 1.5rem;
    padding-top: 0.5rem;
  }
}
.news-single .inner .news-box .item.genre-EVENT .genre-date-box .genre::before, .news-single .inner .news-box .item.genre-STAGE .genre-date-box .genre::before,
.project-single .inner .news-box .item.genre-EVENT .genre-date-box .genre::before,
.project-single .inner .news-box .item.genre-STAGE .genre-date-box .genre::before {
  background-color: #b50000;
}
.news-single .inner .news-box .item.genre-OTHER .genre-date-box .genre::before,
.project-single .inner .news-box .item.genre-OTHER .genre-date-box .genre::before {
  background-color: #843131;
}
.news-single .inner .news-box .item .genre,
.project-single .inner .news-box .item .genre {
  font-size: 1rem;
  letter-spacing: 0.4em;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news-single .inner .news-box .item .genre,
  .project-single .inner .news-box .item .genre {
    width: 60px;
    font-size: 0.8rem;
    margin-bottom: 0;
  }
}
.news-single .inner .news-box .item .genre::before,
.project-single .inner .news-box .item .genre::before {
  position: absolute;
  content: "";
  right: calc(100% + 10px);
  top: 8px;
  width: calc(5.25rem - 9px);
  height: 10px;
  background-color: #000000;
}
@media screen and (max-width: 767px) {
  .news-single .inner .news-box .item .genre::before,
  .project-single .inner .news-box .item .genre::before {
    width: 3rem;
    height: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .news-single .inner .news-box .item .genre::before,
  .project-single .inner .news-box .item .genre::before {
    width: calc(5.25rem - 9px + 50vw - 512px);
  }
}
.news-single .inner .news-box .item .genre::after,
.project-single .inner .news-box .item .genre::after {
  position: absolute;
  content: "";
  left: calc(100% + 10px);
  top: 7px;
  width: calc(100vw - 100px - 5.25rem - 12px);
  height: 10px;
  background: linear-gradient(to right, #000000 1px, transparent 1px) repeat-x 0 0/4px 10px;
}
@media screen and (max-width: 767px) {
  .news-single .inner .news-box .item .genre::after,
  .project-single .inner .news-box .item .genre::after {
    width: calc(100vw - 60px - 2.5rem - 12px);
    height: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .news-single .inner .news-box .item .genre::after,
  .project-single .inner .news-box .item .genre::after {
    width: calc(50vw - 100px - 5.25rem - 12px + 512px);
  }
}
.news-single .inner .news-box .item .title,
.project-single .inner .news-box .item .title {
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .news-single .inner .news-box .item .title,
  .project-single .inner .news-box .item .title {
    font-size: 1rem;
    margin-top: 1rem;
  }
}
.news-single .inner .news-box .item .divider,
.project-single .inner .news-box .item .divider {
  margin-block: 1rem;
  border: 0;
  border-top: 1px solid #999999;
  opacity: 1;
}
.news-single .inner .news-box .item .divider-lite,
.news-single .inner .news-box .item .wp-block-separator.has-alpha-channel-opacity,
.project-single .inner .news-box .item .divider-lite,
.project-single .inner .news-box .item .wp-block-separator.has-alpha-channel-opacity {
  margin-block: 1.5rem;
  border: 0;
  border-top: 6px solid #efefef;
  opacity: 1;
}
.news-single .inner .news-box .item .lead,
.project-single .inner .news-box .item .lead {
  line-height: 1.9;
  font-size: 0.9rem;
}
.news-single .inner .news-box .item .text,
.project-single .inner .news-box .item .text {
  font-size: 0.9rem;
  line-height: 1.9;
}
.news-single .inner .news-box .item .text a,
.project-single .inner .news-box .item .text a {
  color: #b50000;
}
.news-single .inner .news-box .item .text a:hover,
.project-single .inner .news-box .item .text a:hover {
  color: #999999;
}
.news-single .inner .news-box .item .content,
.project-single .inner .news-box .item .content {
  /* 大見出し */
  /* 中見出し */
  /* 小見出し */
}
.news-single .inner .news-box .item .content .wp-block-image,
.project-single .inner .news-box .item .content .wp-block-image {
  margin-block: 1rem;
}
.news-single .inner .news-box .item .content a,
.project-single .inner .news-box .item .content a {
  color: #b50000;
  transition: 0.33s;
}
.news-single .inner .news-box .item .content a:hover,
.project-single .inner .news-box .item .content a:hover {
  color: #efefef;
}
.news-single .inner .news-box .item .content h2,
.project-single .inner .news-box .item .content h2 {
  font-size: 1rem;
  font-weight: 600;
}
.news-single .inner .news-box .item .content h2::first-letter,
.project-single .inner .news-box .item .content h2::first-letter {
  color: #b50000;
  margin-right: 0.2em;
}
.news-single .inner .news-box .item .content h3,
.project-single .inner .news-box .item .content h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.news-single .inner .news-box .item .content h3::first-letter,
.project-single .inner .news-box .item .content h3::first-letter {
  color: #c95452;
  margin-right: 0.2em;
}
.news-single .inner .news-box .item .content h4,
.project-single .inner .news-box .item .content h4 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.news-single .inner .news-box .item .content p,
.project-single .inner .news-box .item .content p {
  margin-block: 0.25rem;
}
.news-single .inner .link-index,
.project-single .inner .link-index {
  margin-block: 4rem 3rem;
  text-align: right;
  margin-right: -5.25rem;
}
@media screen and (max-width: 767px) {
  .news-single .inner .link-index,
  .project-single .inner .link-index {
    margin-right: -1rem;
    font-size: 0.8rem;
  }
}
.news-single .inner .link-index a,
.project-single .inner .link-index a {
  color: #b50000;
  transition: 0.33s;
}
.news-single .inner .link-index a:hover, .news-single .inner .link-index a:hover .circle,
.project-single .inner .link-index a:hover,
.project-single .inner .link-index a:hover .circle {
  color: #999999;
}
.news-single .inner .link-index a .text,
.project-single .inner .link-index a .text {
  margin-right: 1rem;
  letter-spacing: 0.2em;
}
.news-single .inner .link-index a .circle,
.project-single .inner .link-index a .circle {
  color: #000000;
  letter-spacing: 0.4em;
  transition: 0.33s;
}

.link-more {
  width: 100%;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 7rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .link-more {
    justify-content: space-between;
    margin-top: 5rem;
  }
}
.link-more.single {
  justify-content: flex-end;
}
.link-more.wide {
  margin-right: 0;
  margin-left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .link-more.wide {
    width: 100%;
  }
}
.link-more .next-button {
  justify-self: flex-end;
}
.link-more a:link, .link-more a:visited {
  color: #000000;
}
.link-more a:hover .text,
.link-more a:hover .num {
  background-color: #b50000 !important;
}
.link-more a.arrow:hover {
  color: #b50000 !important;
}
.link-more .empty {
  width: calc(1.25rem + 26px);
}
.link-more .text {
  background-color: #ffffff;
  padding-left: 0.75rem;
  padding-right: 1.25rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  height: 100%;
  clip-path: polygon(0 0, calc(100% - 0.75rem) 0, 100% 50%, calc(100% - 0.75rem) 100%, 0 100%);
  transition: 0.33s;
  width: 60px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .link-more .text {
    width: 55px;
  }
}
.link-more .text.index {
  background: none;
  clip-path: none;
  color: #ffffff;
  text-align: center;
}
.link-more .text.prev-button {
  clip-path: polygon(0.75rem 0, 0 50%, 0.75rem 100%, 100% 100%, 100% 0);
  text-align: right;
  padding-left: 1.25rem;
  padding-right: 0.75rem;
}
.link-more .pages .dots {
  color: #000000;
}
.link-more .pages .page-numbers {
  margin: 0 0.25rem;
}
.link-more .pages .page-numbers:hover .num {
  color: white;
}
.link-more .pages .page-numbers:hover .num.now {
  background-color: #000000;
  border-color: #000000;
}
.link-more .pages .page-numbers .num {
  color: #ffffff;
  height: 100%;
  padding: 3.8px 0;
  text-align: center;
  transition: 0.33s;
  background-color: #999999;
  z-index: 2;
  width: 26px;
  display: inline-block;
}
.link-more .pages .page-numbers .num.now {
  background-color: #000000;
  color: white;
}
.link-more .arrow {
  height: 26px;
  width: 26px;
  background-color: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.33s;
  margin-left: 1.5rem;
}
.link-more .arrow-prev {
  margin-left: 0;
  margin-right: 1.5rem;
}
.link-more .arrow-prev .image {
  transform: scaleX(-1);
}
.link-more .arrow .image {
  height: 1.2rem;
  width: 1.2rem;
}

.project-single .item .visual-box {
  display: flex;
}
@media screen and (max-width: 767px) {
  .project-single .item .visual-box {
    flex-direction: column;
  }
}
.project-single .item .visual-box .left {
  width: 50%;
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  .project-single .item .visual-box .left {
    width: 100%;
    padding-right: 0;
    order: 2;
  }
}
.project-single .item .visual-box .left .date {
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .project-single .item .visual-box .left .date {
    font-size: 1rem;
  }
}
.project-single .item .visual-box .left .text {
  font-weight: 400;
  font-size: 1rem;
}
.project-single .item .visual-box .left .text .place {
  color: #b50000;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .project-single .item .visual-box .left .text .place {
    font-size: 1rem;
  }
}
.project-single .item .visual-box .right {
  width: 50%;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .project-single .item .visual-box .right {
    padding-left: 0;
    width: 100%;
    margin-top: 1rem;
  }
}
.project-single .item .visual-box .right .visual.is-blank {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  background-color: #efefef;
  aspect-ratio: 4/3;
}
.project-single .item .visual-box .right .visual.is-blank .image {
  width: 4.5rem;
  height: 4.5rem;
}
.project-single .item .content {
  font-size: 0.9rem;
}
.project-single .item .content img {
  width: 100%;
}
.project-single .item .content .wp-block-image.is-style-is-portrait img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .project-single .item .content .wp-block-image.is-style-is-portrait img {
    width: 100%;
  }
}
.project-single .item .content .wp-block-image.is-style-is-half-width img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .project-single .item .content .wp-block-image.is-style-is-half-width img {
    width: 100%;
  }
}
.project-single .item .content .wp-block-image.is-style-is-full-width img {
  width: 100%;
}

.company-profile {
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .company-profile {
    padding-top: 1.5rem;
  }
}
.company-profile .padding-box {
  padding: 6rem 5.25rem 5rem;
  font-size: 0.9rem;
  color: #000000;
  max-width: 1024px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .company-profile .padding-box {
    padding: 2.5rem 1.5rem 5rem;
    font-size: 0.9rem;
  }
}
.company-profile .padding-box .title {
  font-weight: 600;
  letter-spacing: 0.2em;
}
.company-profile .padding-box .company-table {
  margin-top: 1.5rem;
  border-collapse: collapse;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #999999;
}
@media screen and (max-width: 767px) {
  .company-profile .padding-box .company-table {
    font-size: 0.8rem;
    width: 100%;
  }
}
.company-profile .padding-box .company-table .row {
  border-top: 1px solid #999999;
}
.company-profile .padding-box .company-table .row .head,
.company-profile .padding-box .company-table .row .data {
  padding-block: 1rem;
}
@media screen and (max-width: 767px) {
  .company-profile .padding-box .company-table .row .head,
  .company-profile .padding-box .company-table .row .data {
    padding-block: 0.75rem;
  }
}
.company-profile .padding-box .company-table .row .head {
  text-align: left;
  width: 185px;
  font-weight: 400;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .company-profile .padding-box .company-table .row .head {
    width: 125px;
  }
}

.open-new {
  position: absolute;
  right: -2px;
  bottom: -3px;
  color: #b50000;
}
.open-new .material-symbols-sharp {
  font-size: 0.9rem;
  transition: 0.33s;
}

.privacy {
  color: #000000;
  background-color: #ffffff;
  font-size: 0.85rem;
}
.privacy .padding-box {
  max-width: 1024px;
  margin-inline: auto;
  padding: 4rem 5.25rem;
  line-height: 1.9;
}
.privacy .padding-box .head0 {
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  font-size: 1.1em;
}
.privacy .padding-box .head {
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
}
.privacy .padding-box .head2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.privacy .padding-box ul {
  margin-left: 1em;
  text-indent: -1em;
}
.privacy .padding-box .date {
  margin-top: 1rem;
  margin-bottom: 4rem;
}
.privacy .padding-box .head3 {
  font-weight: 600;
}

.contact {
  background-color: #efefef;
}
.contact .contact-form {
  padding: 4rem 5.25rem;
  max-width: 1024px;
  margin-inline: auto;
  font-size: 0.8rem;
  width: 100%;
  /* フォーム内のすべての入力要素にフォント設定を強制する */
  /* お問い合わせフォームの入力欄を横幅いっぱいにする */
}
@media screen and (max-width: 767px) {
  .contact .contact-form {
    padding: 1.5rem 1.5rem;
    font-size: 0.9rem;
  }
}
.contact .contact-form .wpcf7 {
  width: 100%;
}
.contact .contact-form .wpcf7 input,
.contact .contact-form .wpcf7 textarea,
.contact .contact-form .wpcf7 select,
.contact .contact-form .wpcf7 button {
  font-family: inherit; /* 親要素（bodyなど）のフォントを引き継ぐ */
  font-size: 100%; /* サイズも親に合わせる */
}
.contact .contact-form .wpcf7 input[type=text],
.contact .contact-form .wpcf7 input[type=email],
.contact .contact-form .wpcf7 input[type=tel],
.contact .contact-form .wpcf7 textarea {
  width: 100%; /* 横幅を100%に */
  box-sizing: border-box; /* 枠線や余白を含めて100%にする（超重要） */
}
.contact .contact-form .padding-box {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact .contact-form .padding-box {
    flex-direction: column;
  }
}
.contact .contact-form .padding-box .left {
  width: 55%;
  padding-right: min(5rem, 5 * 1.5625vw);
  margin-top: 1.8rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .contact .contact-form .padding-box .left {
    width: 100%;
    padding-right: 0;
  }
}
.contact .contact-form .padding-box .left a {
  color: #b50000;
  transition: 0.33s;
}
.contact .contact-form .padding-box .left a:hover {
  color: #999999;
}
.contact .contact-form .padding-box .left .text {
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
}
.contact .contact-form .padding-box .left ul {
  margin-left: 1em;
  text-indent: -1em;
}
.contact .contact-form .padding-box .left p {
  margin-top: 0.25rem;
}
.contact .contact-form .padding-box .right {
  width: 45%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .contact .contact-form .padding-box .right {
    width: 100%;
  }
}
.contact .contact-form .item {
  margin-top: 2rem;
}
.contact .contact-form .radio {
  display: flex;
  flex-direction: column;
}
.contact .contact-form .radio .wpcf7-list-item {
  margin-left: 0.5rem;
  margin-bottom: 0.5rem;
}
.contact .contact-form .submit {
  background-color: #000000;
  color: #ffffff;
  border: 0;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
}/*# sourceMappingURL=polepole.css.map */