@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
/*responsive.css上書き(bootstrap4)*/
.mx-auto {
  display: block;
}

/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
body {
  color: #222;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 1.4rem;
  }
}

.wrap {
  padding-top: 90px;
  background-color: #000;
}
@media screen and (max-width: 991.98px) {
  .wrap {
    padding-top: 60px;
  }
}
.wrap .contents-wrap {
  padding-top: 1rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 991.98px) {
  .wrap .contents-wrap {
    margin-bottom: 5rem;
  }
}
.wrap .contents-wrap:last-of-type {
  margin-bottom: 0;
}
.wrap .main-area {
  background-color: #F8F8F8;
}
.wrap .main-area p {
  line-height: 2;
  margin-bottom: 1em;
}
@media screen and (max-width: 767.98px) {
  .wrap .main-area p {
    line-height: 1.8;
  }
}

.container-inner {
  max-width: 100%;
  width: 950px;
  margin: 0 auto;
}

.contents-inner {
  background-color: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  padding: 5rem;
  border-radius: 0.2rem;
}
@media screen and (max-width: 991.98px) {
  .contents-inner {
    padding: 3rem;
  }
}
@media screen and (max-width: 767.98px) {
  .contents-inner {
    padding: 3rem 2rem;
  }
}
.contents-inner + .contents-inner {
  margin-top: 5rem;
}
@media screen and (max-width: 767.98px) {
  .contents-inner + .contents-inner {
    margin-top: 3rem;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
a:link {
  color: #245fbb;
  text-decoration: none;
}

a:visited {
  color: #245fbb;
  text-decoration: none;
}

a:hover {
  color: #E48E00;
  text-decoration: underline;
}

a:active {
  color: #E48E00;
  text-decoration: underline;
}

/* ボタン */
.button-area {
  text-align: center;
  margin-top: 3rem;
}

a.btn-normal {
  display: inline-block;
  border: 2px solid #FF7E2A;
  background-color: #fff;
  border-radius: 5rem;
  padding: 1.5rem 5rem;
  position: relative;
  color: #222;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  min-width: 20rem;
  transition: all 0.2s;
}
@media screen and (max-width: 767.98px) {
  a.btn-normal {
    padding: 1.2rem 4rem;
    min-width: 18rem;
  }
}
a.btn-normal::before, a.btn-normal::after {
  content: "";
  height: 2px;
  display: inline-block;
  background-color: #FF7E2A;
  position: absolute;
  top: 50%;
  right: 1.5rem;
}
a.btn-normal::before {
  width: 1.5em;
  margin-top: -1px;
  transition: all 0.13s;
}
a.btn-normal::after {
  content: "";
  width: 0.6em;
  transform: rotate(30deg);
  margin-top: -0.4rem;
  transition: all 0.2s;
}
a.btn-normal:hover {
  color: #FF7E2A;
}
a.btn-normal:hover::before, a.btn-normal:hover::after {
  right: 1.2rem;
}

/*----------------------------------------------------
  タイトル
----------------------------------------------------*/
.page-title-wrap {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  z-index: 0;
}
@media screen and (max-width: 991.98px) {
  .page-title-wrap {
    height: calc(90vh - 60px);
  }
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap {
    height: calc(80vh - 60px);
    flex-direction: column-reverse;
  }
}
.page-title-wrap .title-area {
  width: 460px;
  padding: 5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: self-start;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .title-area {
    width: 100%;
    padding: 0;
    height: 100%;
    background: none;
  }
}
.page-title-wrap .page-title {
  font-size: 6.4rem;
  line-height: 1.2;
  font-weight: 500;
  color: #FF7E2A;
  display: inline-block;
  margin-bottom: 5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .page-title {
    font-size: 4rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
    padding: 3rem;
  }
}
.page-title-wrap .page-title span.ja {
  position: relative;
  margin-top: 2rem;
  padding-top: 2.5rem;
  padding-left: 0.1em;
  display: block;
  font-size: 2.2rem;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .page-title span.ja {
    font-size: 1.6rem;
    margin-top: 1.5rem;
    padding-top: 2rem;
  }
}
.page-title-wrap .page-title span.ja::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 0.3rem;
  top: 0;
  right: 0;
  width: 100vw;
  background-color: #FF7E2A;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .page-title span.ja::before {
    height: 0.2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .text-area {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
  }
}
.page-title-wrap .text-area p {
  color: #fff;
  line-height: 1.8;
}

.main.page-title-wrap {
  height: calc(100vh - 90px);
  max-height: 80rem;
  min-height: 60rem;
}
@media screen and (max-width: 767.98px) {
  .main.page-title-wrap {
    min-height: auto;
    height: calc(100vh - 150px);
  }
}
.main.page-title-wrap video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}
.main.page-title-wrap .title-area {
  background-color: rgba(0, 0, 0, 0.4);
}

.second.page-title-wrap {
  height: 490px;
}

.section-title {
  text-align: center;
  font-size: 3.2rem;
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 991.98px) {
  .section-title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 575.98px) {
  .section-title {
    font-size: 2.4rem;
  }
}
.section-title::after {
  content: "";
  width: 2em;
  height: 0.5rem;
  background-color: #FF7E2A;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.contents-title {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  border-left: 0.5rem solid #FF7E2A;
  padding: 0.5rem 0 0.5rem 1.7rem;
}
@media screen and (max-width: 991.98px) {
  .contents-title {
    font-size: 2.4rem;
    padding: 0.3rem 0 0.3rem 1.5rem;
  }
}
@media screen and (max-width: 575.98px) {
  .contents-title {
    font-size: 2.2rem;
    padding: 0.2rem 0 0.2rem 1.2rem;
    border-width: 0.4rem;
  }
}

/*----------------------------------------------------
  ローディング
----------------------------------------------------*/
.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
}

/*----------------------------------------------------
  アニメーション
----------------------------------------------------*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.3s;
  z-index: 100;
}
header .header-area {
  height: 90px;
  background-color: #000;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 991.98px) {
  header .header-area {
    height: 60px;
  }
}
header .header-area .header-left {
  display: flex;
  align-items: center;
}
header .header-area .header-left a.header-logo {
  display: inline-block;
  margin-left: 2rem;
}
@media screen and (max-width: 767.98px) {
  header .header-area .header-left a.header-logo {
    margin-left: 1.5rem;
  }
}
header .header-area .header-left a.header-logo img {
  width: 20vw;
  max-width: 280px;
  min-width: 200px;
  transition: all 0.3s;
}
@media screen and (max-width: 767.98px) {
  header .header-area .header-left a.header-logo img {
    min-width: 160px;
  }
}
header .header-area .header-right {
  padding-right: 2rem;
}
@media screen and (max-width: 991.98px) {
  header .header-area .header-right {
    display: none;
  }
}
header .header-area .header-right nav {
  height: 100%;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: right;
}
header a.btn-inquiry {
  display: inline-block;
  background-color: #FF7E2A;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 10rem;
  transition: all 0.2s;
  font-weight: 500;
}
header a.btn-inquiry:hover {
  background-color: #c96b2e !important;
}
@media screen and (max-width: 991.98px) {
  header a.btn-inquiry {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  header.scroll-nav .header-area {
    height: 60px;
  }
  header.scroll-nav .header-area a.header-logo img {
    width: 15vw;
    max-width: 200px;
    min-width: 150px;
  }
  header.scroll-nav a.btn-inquiry {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
}

/*----------------------------------------------------
  ナビゲーション
----------------------------------------------------*/
ul.global-nav {
  list-style: none;
  padding-left: 0;
  display: flex;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 2rem;
}
@media screen and (max-width: 1199.98px) {
  ul.global-nav {
    margin-right: 1vw;
  }
}
@media screen and (max-width: 767.98px) {
  ul.global-nav {
    display: none;
  }
}
ul.global-nav > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.5vw;
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
  font-weight: 500;
  position: relative;
  user-select: none;
}
@media screen and (max-width: 1199.98px) {
  ul.global-nav > li > a {
    padding: 0 1.2vw;
  }
}
ul.global-nav > li > a::before {
  content: "";
  background-color: transparent;
  width: 1.4em;
  height: 3px;
  display: inline-block;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  margin-left: -0.7em;
  transition: 0.2s;
  background-color: #FF7E2A;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
ul.global-nav > li > a:hover {
  color: #FF7E2A;
  cursor: pointer;
}
ul.global-nav > li > a:hover::before {
  transform: scale(1, 1);
}
ul.global-nav li.global-menu-parent:hover > .global-menu-child {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 992px) {
  header.scroll-nav ul.global-nav {
    margin-right: 1rem;
  }
  header.scroll-nav ul.global-nav > li > a {
    padding: 0 1vw;
  }
  header.scroll-nav ul.global-nav > li > a::before {
    bottom: 1rem;
  }
}
#about li.global-nav-about a::before,
#facility li.global-nav-facility a::before,
#products li.global-nav-products a::before,
#company li.global-nav-company a::before,
#sdgs li.global-nav-sdgs a::before,
#recruit li.global-nav-recruit a::before {
  transform: scale(1, 1);
}

/*----------------------------------------------------
  スマホメニュー
----------------------------------------------------*/
.menu-button {
  position: absolute;
  top: 0.7rem;
  right: 1.5rem;
  display: none;
  z-index: 10;
  border-radius: 4px;
}
@media screen and (max-width: 991.98px) {
  .menu-button {
    display: block;
  }
}
.menu-button .menu-trigger {
  cursor: pointer;
  position: relative;
  width: 52px;
  height: 42px;
  padding: 5px;
  display: inline-block;
  transition: all 0.4s;
}
.menu-button .menu-trigger span:not(:last-child) {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background-color: #FF7E2A;
  border-radius: 4px;
  transition: 0.4s;
}
.menu-button .menu-trigger span:not(:last-child):nth-of-type(1) {
  top: 10px;
}
.menu-button .menu-trigger span:not(:last-child):nth-of-type(2) {
  top: 18px;
}
.menu-button .menu-trigger span:last-child {
  display: block;
  text-align: center;
  font-size: 1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  letter-spacing: 1px;
  font-weight: bold;
  color: #fff;
}

.open .menu-trigger span:nth-of-type(1) {
  top: 14px !important;
  transform: translateX(-50%) rotate(30deg);
  background-color: #FF7E2A;
}
.open .menu-trigger span:nth-of-type(2) {
  top: 14px !important;
  transform: translateX(-50%) rotate(-30deg);
  background-color: #FF7E2A;
}

.smp-menu {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  padding: 70px 2rem 3rem;
  display: none;
  overflow-y: scroll;
}
.smp-menu::-webkit-scrollbar {
  display: none;
}
.smp-menu ul {
  list-style: none;
  padding-left: 0;
}
.smp-menu ul li {
  border-bottom: 1px solid #ddd;
}
.smp-menu ul li span, .smp-menu ul li a {
  color: #222;
  font-weight: 700;
  display: block;
  padding: 1.5rem 1.5rem;
  position: relative;
  text-decoration: none;
  font-size: 1.4rem;
}
.smp-menu ul li span {
  padding-bottom: 0;
}
.smp-menu ul li span::before {
  width: 1em;
  height: 3px;
  right: 1.5rem;
}
.smp-menu ul li span::after {
  width: 3px;
  height: 1em;
  right: 2.15rem;
  transition: 0.2s;
}
.smp-menu ul li span.open::after {
  transform: translateY(-50%) rotate(90deg);
}
.smp-menu ul li span:hover {
  cursor: pointer;
}
.smp-menu ul li ul.smp-menu-child {
  margin-bottom: 1.5rem;
}
.smp-menu ul li ul.smp-menu-child li {
  border: none;
}
.smp-menu ul li ul.smp-menu-child li a {
  padding: 1rem 1rem 1rem 6rem;
  font-weight: normal;
}
.smp-menu ul li ul.smp-menu-child li a::before {
  content: "";
  width: 0.6em;
  height: 3px;
  background-color: #FF7E2A;
  position: absolute;
  top: 2rem;
  left: 3rem;
}
.smp-menu a.btn-inquiry {
  margin-top: 2rem;
  display: block;
  text-align: center;
}

/*----------------------------------------------------
  パンクズメニュー
----------------------------------------------------*/
.breadcrumb {
  padding: 0.5rem 0;
}
.breadcrumb ul {
  padding-left: 0;
  list-style: none;
}
.breadcrumb ul li {
  font-size: 1.2rem;
  display: inline-block;
}
@media screen and (max-width: 767.98px) {
  .breadcrumb ul li {
    font-size: 1rem;
  }
}
.breadcrumb ul li::after {
  content: "";
  width: 0.4em;
  height: 0.4em;
  display: inline-block;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(45deg);
  margin-left: 0.8rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.breadcrumb ul li:last-child::after {
  display: none;
}

/*----------------------------------------------------
  フッター
----------------------------------------------------*/
.contact-wrap {
  padding: 8rem 0;
  background-color: #2a2a2a;
}
.contact-wrap .container {
  display: flex;
  position: relative;
  justify-content: center;
}
@media screen and (max-width: 991.98px) {
  .contact-wrap .container {
    display: block;
    text-align: center;
  }
}
.contact-wrap .container > p.title {
  width: 240px;
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: -1rem;
  color: #FF7E2A;
  display: inline-block;
  position: relative;
  padding-bottom: 1rem;
}
@media screen and (max-width: 991.98px) {
  .contact-wrap .container > p.title {
    font-size: 4.8rem;
    position: relative;
    left: auto;
    margin-bottom: 3rem;
  }
}
.contact-wrap .container > p.title span {
  position: relative;
  display: block;
  font-size: 1.8rem;
  padding-left: 0.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  color: #FF7E2A;
  padding-top: 1.5rem;
  border-top: 3px solid #FF7E2A;
}
@media screen and (max-width: 991.98px) {
  .contact-wrap .container > p.title span {
    font-size: 1.4rem;
  }
}
.contact-wrap .container > div {
  flex: 1;
  color: #fff;
  text-align: center;
  padding-left: 5rem;
}
@media screen and (max-width: 1199.98px) {
  .contact-wrap .container > div {
    padding-left: 3rem;
  }
}
@media screen and (max-width: 991.98px) {
  .contact-wrap .container > div {
    padding-left: 0;
  }
}
.contact-wrap .container > div p:first-child {
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .contact-wrap .container > div p:first-child {
    font-size: 1.4rem;
  }
}
.contact-wrap .container > div .tel-area {
  display: flex;
  margin: 3rem 0 4rem;
}
@media screen and (max-width: 767.98px) {
  .contact-wrap .container > div .tel-area {
    display: block;
  }
}
.contact-wrap .container > div .tel-area .inq-block {
  border: 1px solid #fff;
  padding: 2rem 1.2rem;
  margin: 0 1.5rem;
  width: calc(50% - 3rem);
}
@media screen and (max-width: 767.98px) {
  .contact-wrap .container > div .tel-area .inq-block {
    width: auto;
    margin: 3rem 0;
  }
}
.contact-wrap .container > div .tel-area .inq-block > p.title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767.98px) {
  .contact-wrap .container > div .tel-area .inq-block > p.title {
    font-size: 1.8rem;
  }
}
.contact-wrap .container > div .tel-area .inq-block > p.title + span {
  display: inline-block;
  padding: 0 1.5em;
  position: relative;
}
.contact-wrap .container > div .tel-area .inq-block > p.title + span::before, .contact-wrap .container > div .tel-area .inq-block > p.title + span::after {
  content: "";
  width: 0.8em;
  height: 1px;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  top: 50%;
}
.contact-wrap .container > div .tel-area .inq-block > p.title + span::before {
  left: 0;
}
.contact-wrap .container > div .tel-area .inq-block > p.title + span::after {
  right: 0;
}
.contact-wrap .container > div .tel-area .inq-block p.tel {
  font-size: 4.2rem;
  font-weight: 500;
}
.contact-wrap .container > div .tel-area .inq-block p.tel a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 991.98px) {
  .contact-wrap .container > div .tel-area .inq-block p.tel {
    font-size: 3.4rem;
  }
}
.contact-wrap .container > div a.btn-inquiry {
  display: inline-block;
  font-size: 2rem;
  text-align: center;
  background-color: #FF7E2A;
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem 1.2rem;
  border-radius: 10rem;
  transition: all 0.2s;
  font-weight: 500;
}
@media screen and (max-width: 991.98px) {
  .contact-wrap .container > div a.btn-inquiry {
    font-size: 1.6rem;
  }
}
.contact-wrap .container > div a.btn-inquiry:hover {
  background-color: #c96b2e;
}

footer {
  background: #fff;
  padding: 1.5rem 2rem;
}
@media screen and (max-width: 767.98px) {
  footer {
    padding: 1.5rem;
    text-align: center;
  }
}
footer .footer-wrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  footer .footer-wrap {
    display: block;
  }
}
footer .footer-wrap .footer-main {
  display: flex;
  margin-right: 5rem;
}
@media screen and (max-width: 991.98px) {
  footer .footer-wrap .footer-main {
    display: block;
    margin-right: 0;
  }
}
footer .footer-wrap .footer-main .footer-logo a {
  display: inline-block;
}
footer .footer-wrap .footer-main .footer-logo a img {
  width: 200px;
  height: auto;
  display: inline-block;
}
footer .footer-wrap .footer-main address {
  margin-left: 3rem;
  font-style: normal;
  font-size: 1.4rem;
}
@media screen and (max-width: 991.98px) {
  footer .footer-wrap .footer-main address {
    margin-left: 0;
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
footer .footer-wrap .footer-sub ul.banner-list {
  list-style: none;
  padding-left: 0;
}
@media screen and (max-width: 767.98px) {
  footer .footer-wrap .footer-sub ul.banner-list {
    text-align: center;
    margin-top: 2rem;
  }
}
footer .footer-wrap .footer-sub ul.banner-list li {
  display: inline-block;
  margin: 0 0.5rem;
}
@media screen and (max-width: 767.98px) {
  footer .footer-wrap .footer-sub ul.banner-list li {
    margin: 0.5rem;
  }
}
footer .footer-wrap .footer-sub ul.banner-list li img {
  display: block;
  width: 120px;
  height: auto;
  border: 1px solid #ddd;
}
footer .footer-wrap .footer-sub ul.banner-list li a:hover {
  opacity: 0.7;
}
footer .copyright {
  text-align: right;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 991.98px) {
  footer .copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
  }
}

.page-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}

.page-top a {
  background: #FF7E2A;
  text-decoration: none;
  color: #fff;
  width: 6rem;
  height: 6rem;
  padding: 5px 0;
  border-radius: 50%;
  text-align: center;
  display: block;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  .page-top a {
    width: 4.2rem;
    height: 4.2rem;
  }
}
.page-top a::before, .page-top a::after {
  content: "";
  display: block;
  position: absolute;
}
.page-top a::before {
  width: 2px;
  height: 2.5rem;
  top: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}
@media screen and (max-width: 991.98px) {
  .page-top a::before {
    height: 2rem;
    top: 1.2rem;
  }
}
.page-top a::after {
  top: 1.6rem;
  left: 38%;
  border: 4px solid transparent;
  border-bottom: 6px solid #fff;
  border-right: 4px solid #fff;
}
@media screen and (max-width: 991.98px) {
  .page-top a::after {
    top: 1rem;
    left: 40%;
    border-width: 3px;
    border-bottom-width: 5px;
    border-right-width: 2px;
  }
}
.page-top a:hover {
  background: #FF8C00;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*----------------------------------------------------
  汎用コンテンツ
----------------------------------------------------*/
.section-wrap {
  padding: 7rem 0;
}
@media screen and (max-width: 767.98px) {
  .section-wrap {
    padding: 5rem 0;
  }
}
.section-wrap.bg-color {
  background-color: #fff;
}

.page-link-area {
  padding: 1rem 0;
  background-color: #fff;
}
.page-link-area ul.page-link {
  padding-left: 0;
  list-style: none;
}
.page-link-area ul.page-link li {
  display: inline-block;
}
.page-link-area ul.page-link li a {
  display: block;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  padding: 1.5rem 5rem 1.5rem 2.5rem;
  position: relative;
  transition: all 0.2s;
}
.page-link-area ul.page-link li a::after {
  content: "";
  width: 1.5rem;
  height: 0.8660254038rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #FF7E2A;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-38%);
}
.page-link-area ul.page-link li a:hover {
  color: #FF7E2A;
  opacity: 0.7;
}/*# sourceMappingURL=common.css.map */