@charset "UTF-8";

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}

:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  -webkit-box-shadow: 0 0 0 5px Canvas;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ブレイクポイント
================================================================================================= */
/* color
========================================================================== */
/* font
========================================================================== */
/* constract
========================================================================== */
html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  color: #333;
  background-color: #fff;
}

a {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
}

p {
  line-height: 1.6;
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

a:hover {
  opacity: 0.8;
}

input {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  background-color: #fff;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

.site {
  overflow: hidden;
  width: 100%;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}


/* ページネーション
========================================================================== */
.wp-pagenavi {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  padding: 0.6em 1em 0.4em;
  height: 40px;
  line-height: 20px;
  margin-left: 0.5em;
  margin-right: 0.5em;
  font-size: 1.6rem;
  border: none;
  border-radius: 50%;
}

.wp-pagenavi .current {
  color: #fff;
}

.wp-pagenavi a {
  background-color: #fff;
  text-decoration: none;
}

.spbr {
  display: none;
}

@media screen and (max-width: 640px) {
  .spbr {
    display: inline;
  }
}

.nowrap {
  white-space: nowrap;
}

/* header
========================================================================== */
.header {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff;
  padding: 15px 0;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .header {
    padding: 12px 0;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 640px) {
  .header {
    margin-bottom: 0px;
  }
}

.header__inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1280px) {
  .header__inner {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media screen and (max-width: 640px) {
  .header__inner {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (max-width: 1280px) {
  .header__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 640px) {
  .header__inner {
    padding-left: 3%;
    padding-right: 3%;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 1280px) {
  .header__logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 640px) {
  .header__logo {
    gap: 8px;
  }
}

.header__logo .exseli-logo {
  width: 200px;
}

@media screen and (max-width: 1024px) {
  .header__logo .exseli-logo {
    width: 160px;
  }
}

@media screen and (max-width: 768px) {
  .header__logo .exseli-logo {
    width: 140px;
  }
}

@media screen and (max-width: 640px) {
  .header__logo .exseli-logo {
    width: 120px;
  }
}

.header__logo .jpx-logo {
  width: 35px;
  height: auto;
}

@media screen and (max-width: 640px) {
  .header__logo .jpx-logo {
    width: 20px;
  }
}

.header__search {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 50px;
  margin-right: 20px;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

@media screen and (max-width: 1280px) {
  .header__search {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin: 10px 0 0;
    width: 100%;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}

.header__search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__search input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 7px 12px 8px;
  display: block;
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 1.8rem;
  line-height: 1;
}

.header__search input::-webkit-input-placeholder {
  color: #a6a6a6;
  font-size: 12px;
}

.header__search input::-moz-placeholder {
  color: #a6a6a6;
  font-size: 12px;
}

.header__search input::-ms-input-placeholder {
  color: #a6a6a6;
  font-size: 12px;
}

.header__search input::placeholder {
  color: #a6a6a6;
  font-size: 12px;
}

.header__search input:focus {
  outline: none;
  border: 1px solid #333;
  padding: 7px 12px 8px;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.header__search button {
  width: 60px;
  text-align: center;
  display: block;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  display: none;
}

.header__search button:hover {
  background-color: #555;
}

.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

@media screen and (max-width: 1280px) {
  .header__link {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: auto;
  }
}

@media screen and (max-width: 1024px) {
  .header__link {
    gap: 32px;
  }
}

@media screen and (max-width: 768px) {
  .header__link {
    gap: 10px;
  }
}

@media screen and (max-width: 640px) {
  .header__link {
    margin-left: auto;
    margin-right: 20px;
  }
}

.header__link a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 640px) {
  .header__link a {
    display: none;
  }

  .header__link a.contact {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
  }

  .header__link a.rental {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
  }
}

.header__link img {
  height: 32px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .header__link img {
    height: 25.6px;
  }
}

@media screen and (max-width: 640px) {
  .header__link img {
    height: 16px;
    margin-bottom: 2px;
  }
}

.header__link span {
  font-size: 1.3rem;
  line-height: 1.2;
  display: block;
  text-align: center;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1024px) {
  .header__link span {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

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

@media screen and (max-width: 640px) {
  .header .nav-icon {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.header .nav-icon span {
  width: 30px;
  height: 4px;
  background-color: #333;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header .nav-icon.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  transform: rotate(45deg) translate(7px, 7px);
}

.header .nav-icon.active span:nth-child(2) {
  opacity: 0;
}

.header .nav-icon.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
  transform: rotate(-45deg) translate(7px, -7px);
}

.gnavi {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: relative;
}

@media screen and (max-width: 1280px) {
  .gnavi {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media screen and (max-width: 640px) {
  .gnavi {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (max-width: 640px) {
  .gnavi {
    display: none;
  }
}

.gnavi:before {
  content: "";
  display: block;
  width: 1.5px;
  height: 100%;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1280px) {
  .gnavi:before {
    left: 3%;
  }
}

.gnavi a {
  width: 100%;
  padding: 2px 7px;
  text-decoration: none;
  position: relative;
  text-align: center;
  letter-spacing: 0.08em;
  font-size: 1.5rem;
}

@media screen and (max-width: 1280px) {
  .gnavi a {
    padding: 2px 8px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .gnavi a {
    font-size: 1.1rem;
    padding: 2px 8px;
  }
}

@media screen and (max-width: 1280px) {
  .gnavi a span {
    display: block;
  }
}

.gnavi a:after {
  content: "";
  display: block;
  width: 1.5px;
  height: 100%;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}


/* main
========================================================================== */
.page-main__header {
  padding: 60px 0;
  text-align: center;
}

.page-main__header h1 {
  font-size: 4rem;
}

.page-main__inner {
  max-width: 100%;
  width: 1280px;
  margin: 0 auto;
  padding: 100px 0;
}

@media screen and (max-width: 1280px) {
  .page-main__inner {
    padding-right: 3%;
    padding-left: 3%;
  }
}

@media screen and (max-width: 640px) {
  .page-main__inner {
    padding: 50px 0;
    padding-right: 5%;
    padding-left: 5%;
  }
}

/* 投稿系のページの汎用パーツ
========================================================================== */
:where(.post) {
  position: relative;
}

:where(.post) * {
  position: relative;
}

:where(.post) h2 {
  font-size: 3rem;
  margin-bottom: 1em;
}

@media screen and (max-width: 640px) {
  :where(.post) h2 {
    font-size: 2rem;
  }
}

:where(.post) h3 {
  font-size: 2.4rem;
  margin-bottom: 1em;
}

@media screen and (max-width: 640px) {
  :where(.post) h3 {
    font-size: 1.8rem;
  }
}

:where(.post) p {
  font-size: 1.6rem;
}

@media screen and (max-width: 640px) {
  :where(.post) p {
    font-size: 1.4rem;
  }
}

:where(.post) ul {
  padding: 20px;
  margin: 0 auto 1em;
}

:where(.post) *+h2 {
  margin-top: 12rem;
}

@media screen and (max-width: 640px) {
  :where(.post) *+h2 {
    margin-top: 6rem;
  }
}

:where(.post) *+h3 {
  margin-top: 8rem;
}

@media screen and (max-width: 640px) {
  :where(.post) *+h3 {
    margin-top: 4rem;
  }
}

:where(.post) table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid;
  margin-bottom: 1em;
}

:where(.post) table th,
:where(.post) table td {
  border: 1px solid;
  padding: 10px;
}

@media screen and (max-width: 640px) {

  :where(.post) table th,
  :where(.post) table td {
    font-size: 1.3rem;
  }
}

/* ham menu
========================================================================== */
.menu {
  display: block;
  min-height: 100vh;
  opacity: 1;
  position: absolute;
  width: 100%;
  z-index: 998;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  right: 0%;
  position: fixed;
  background-color: #333;
  color: #fff;
  display: none;
  top: calc(var(--headerHeight) + 24px);
}

@media screen and (max-width: 640px) {
  .menu {
    display: block;
  }
}

.menu.close {
  top: -100vh;
}

.menu a {
  text-decoration: none;
  color: #fff;
  padding: 1rem 2rem 1rem 4rem;
  border-bottom: 1px solid #fff;
  display: block;
  font-size: 1.4rem;
  position: relative;
}

@media screen and (max-width: 640px) {
  .menu a {
    padding: 0.7rem 2rem 0.7rem 4rem;
  }
}

.menu a::before {
  content: "";
  position: absolute;
  font-weight: bold;
  left: 2rem;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: #fff;
  width: 0.6rem;
  height: 0.84rem;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  top: 50%;
}

.menu__sub-list {
  margin-left: 4rem;
}

.menu__sub-list a {
  border-bottom: 1px solid #fff;
}

.menu-open {
  overflow: hidden;
}

.menu-open::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

[class*=js-fade] {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

[class*=inview-fade] {
  opacity: 1;
  visibility: visible;
}

.js-fade-up {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

.inview-fade-up {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.js-fade-down {
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

.inview-fade-down {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.js-fade-left {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
}

.inview-fade-left {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.js-fade-right {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}

.inview-fade-right {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.main-change {
  background-image: url("../img/spurious-bg.png.webp");
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}

.changeHeader {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media screen and (max-width: 1280px) {
  .changeHeader {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media screen and (max-width: 640px) {
  .changeHeader {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.changeHeader h1 {
  text-wrap: unset;
  font-weight: 900;
}

@media screen and (max-width: 640px) {
  .changeHeader h1 {
    font-size: 6vw;
    margin-bottom: 6vw;
  }
}

.changeIntroduction {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 100px;
}

@media screen and (max-width: 1280px) {
  .changeIntroduction {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media screen and (max-width: 640px) {
  .changeIntroduction {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (max-width: 640px) {
  .changeIntroduction {
    margin-bottom: 60px;
  }
}

.changeIntroduction__inner {
  border: 1px solid #1BA200;
  border-radius: 5px;
  overflow: clip;
}

.changeIntroduction__heading {
  background-color: #1BA200;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  font-weight: 900;
  font-size: 2.4rem;
}

@media screen and (max-width: 640px) {
  .changeIntroduction__heading {
    font-size: 1.8rem;
  }
}

.changeIntroduction__content {
  padding: 30px 40px 40px;
  background-color: #fff;
}

@media screen and (max-width: 640px) {
  .changeIntroduction__content {
    padding: 20px;
  }
}

.changeIntroduction__text {
  font-size: 1.6rem;
  margin-bottom: 0px;
}

.changeContact {
  margin-top: 80px;
  margin-bottom: 80px;
  background-color: #F0FFF0;
}

@media screen and (max-width: 640px) {
  .changeContact {
    margin-top: 60px;
    margin-bottom: 100px;
  }
}

.changeContact__inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  width: 1152px;
  padding-top: 80px;
  padding-bottom: 40px;
}

@media screen and (max-width: 1280px) {
  .changeContact__inner {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media screen and (max-width: 640px) {
  .changeContact__inner {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (max-width: 640px) {
  .changeContact__inner {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

.changeContact__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 56px;
  padding-left: 32px;
  padding-right: 32px;
  margin-bottom: 30px;
  padding-left: 0;
}

@media screen and (max-width: 640px) {
  .changeContact__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 640px) {
  .changeContact__heading h2 {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 5px;
  }
}

.changeContact__heading small {
  font-size: 1.8rem;
  color: #7BC4C4;
  display: block;
}

@media screen and (max-width: 640px) {
  .changeContact__heading small {
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 4px;
  }
}

.changeContact__heading span {
  font-size: 3.2rem;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .changeContact__heading span {
    font-size: 2rem;
    line-height: 1;
    display: block;
  }
}

.changeContact__heading a {
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 4px 30px;
  display: block;
  border-radius: 99px;
  font-size: 1.5rem;
  position: relative;
  border: 1px solid #333;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

@media screen and (max-width: 640px) {
  .changeContact__heading a {
    font-size: 1.2rem;
    padding: 4px 26px 4px 16px;
    line-height: 1;
  }

  .safari .changeContact__heading a {
    padding-bottom: 6px;
  }
}

.changeContact__heading a:hover {
  background-color: #fff;
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.changeContact__heading a:hover::after {
  border-color: #333;
}

@media screen and (max-width: 640px) {
  .changeContact__heading a {
    margin-left: auto;
    margin-right: 0;
  }
}

.changeContact__heading a::after {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  right: 14px;
  top: calc(50% + 0px);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.changeContact__heading h2 {
  text-wrap: unset;
}

.changeContact__content {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 640px) {
  .changeContact__content {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.changeContact__list {
  border: 1px solid #7F7F7F;
  padding: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

@media screen and (max-width: 640px) {
  .changeContact__list {
    width: 100%;
    padding: 10px;
  }
}

.changeContact__list li {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
  color: #7F7F7F;
}

@media screen and (max-width: 640px) {
  .changeContact__list li {
    text-indent: -1.3em;
    padding-left: 1.3em;
  }
}

.changeContact__list li:last-child {
  margin-bottom: 0;
}

.changeContact .topAppeal {
  padding-top: 0;
}

.changeContact .topAppeal__inner {
  width: 100%;
  padding-left: 0%;
  padding-right: 0%;
}

.changeContact .topAppeal a {
  background-color: #fff;
}