@charset "UTF-8";
/*font*/
/**/
/**/
/*color*/
/*$c-base: #***;
$c-main: #***;
$c-accent: #***;
$c-primary: #***;
$c-secondary: #***;*/
/*******/
/**********/
/*breakpoints*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 54.6875%;
  }
}

body {
  background-color: #fff;
  color: #222;
  line-height: 1.75;
  font-size: 1.6rem;
  font-family: "kozuka-gothic-pr6n", sans-serif;
}

a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  color: #222;
}

img {
  vertical-align: bottom;
  width: 100%;
}

li {
  list-style-type: none;
}

/*********ここまでfoundation*********/
.l-header {
  position: fixed;
  height: 12rem;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /*===dropdown===*/
  /*===//dropdown===*/
  /*===ハンバーガーメニュー===*/
  /*PCスタイル解除*/
  /*//PCスタイル解除*/
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 7rem;
  }
}
.l-header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1840px;
  margin: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    margin: 0 20px;
  }
}
.l-header__logo {
  width: 50%;
  max-width: 66rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 90%;
    max-width: 400px;
  }
}
.l-header__nav {
  width: 55%;
  max-width: 80rem;
}
.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 999px;
  padding: 1.5rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.l-header__nav-item {
  font-weight: bold;
  height: 100%;
}
.l-header__nav-item > a {
  display: inline-block;
  height: 100%;
  font-size: 1.5rem;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.l-header__nav-item > a:hover {
  color: #0462c1;
}
.l-header__dropdown-list {
  background-color: #2f2725;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header__dropdown-list {
    background-color: #fff;
    display: block;
    width: 100%;
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
    opacity: 1;
    margin-top: -0.8em;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-item--development {
    padding-bottom: 1em;
  }
}
.l-header__nav-item--development:hover .l-header__dropdown-list {
  visibility: visible;
  opacity: 1;
}
.l-header__dropdown-item {
  font-size: 2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  padding: 4rem 0 3rem;
}
@media screen and (max-width: 767px) {
  .l-header__dropdown-item {
    font-size: 1.4rem;
    padding: 0 1.5em;
  }
}
.l-header__dropdown-item::after {
  border-right: 1px solid #ed1c24;
  border-top: 1px solid #ed1c24;
  content: "";
  display: block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 55%;
  right: -1.5rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .l-header__dropdown-item::after {
    right: 1.5em;
    width: 0.8rem;
    height: 0.8rem;
  }
}
.l-header__dropdown-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}
@media screen and (max-width: 767px) {
  .l-header__dropdown-item a {
    color: #222;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    color: #222;
  }
}
.l-header__dropdown-item:hover a {
  color: #ed1c24;
}
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    height: auto;
  }
  .l-header__nav-list {
    height: auto;
  }
  .l-header__nav-item {
    height: auto;
  }
  .l-header__nav-item > a {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    top: 7rem;
    right: -100%;
    bottom: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 3;
    opacity: 0;
    width: 100%;
    max-width: none;
    max-height: 100vh;
    overflow-y: auto;
  }
  .l-header__nav-list {
    display: block;
    background-color: #fff;
    border-radius: 0;
  }
  .l-header__nav-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .l-header__nav-item > a {
    color: #0462c1;
    display: block;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    padding: 1em;
    font-size: 2rem;
    position: relative;
  }
  .l-header__nav-item a:hover {
    background-color: #e4e4e4;
  }
  .l-header__nav-item > a::after {
    content: "";
    background-image: url(../img/component/arrow-blue.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    position: absolute;
    width: 20px;
    aspect-ratio: 1/1;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__hamburger {
    display: block;
    position: relative;
    width: 4rem;
    height: 4rem;
    z-index: 3;
  }
  .l-header__hamburger span {
    position: absolute;
    display: block;
    left: 0;
    height: 2px;
    z-index: 3;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .l-header__hamburger span:nth-of-type(1) {
    top: 20%;
    width: 100%;
  }
  .l-header__hamburger span:nth-of-type(2) {
    top: 50%;
    width: 80%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__hamburger span:nth-of-type(3) {
    bottom: 20%;
    width: 80%;
  }
}
.l-header__mask {
  display: none;
}

.open .l-header__nav {
  right: 0;
  top: 7rem;
  opacity: 1;
}
.open .l-header__hamburger span:nth-of-type(1) {
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
  top: 50%;
  width: 80%;
}
.open .l-header__hamburger span:nth-of-type(2) {
  opacity: 0;
}
.open .l-header__hamburger span:nth-of-type(3) {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  top: 50%;
}

/*===//ハンバーガーメニュー===*/
/*===//スクロールした時のヘッダーの色===*/
.change-color.l-header {
  background-color: #312F46;
}

.l-footer {
  background-color: #312F46;
  color: #fff;
  padding: 5rem;
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .l-footer {
    padding: 3rem 2rem;
  }
}
.l-footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .l-footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__company {
  width: 50%;
  max-width: 54rem;
}
@media screen and (max-width: 1023px) {
  .l-footer__company {
    margin-bottom: 4rem;
    width: 100%;
  }
}
.l-footer__flex + div {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .l-footer__flex + div {
    margin-top: 4rem;
  }
}
.l-footer__logo {
  margin-bottom: 2rem;
}
.l-footer__address {
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .l-footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-footer__info-list--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  gap: 2rem 3rem;
}
@media screen and (max-width: 1023px) {
  .l-footer__info-list--pc {
    display: none;
  }
}
.l-footer__info-list--sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-footer__info-list--sp {
    display: block;
  }
}
.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  gap: 0.5rem 3rem;
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
  }
}
.l-footer__nav-item a {
  color: #fff;
}
.l-footer__info-item a {
  color: #fff;
  font-size: 1.4rem;
}
.l-footer__copy {
  font-size: 1.4rem;
}
@media screen and (max-width: 1023px) {
  .l-footer__copy {
    text-align: center;
  }
}

/*==========container==========*/
.l-container {
  background-color: #f2f3f4;
  padding: 15rem 0;
}
@media screen and (max-width: 1279px) {
  .l-container {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    padding: 4rem 0;
  }
}

/*==========//container==========*/
/*==========main==========*/
.l-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.5rem 4rem;
}
@media screen and (max-width: 1279px) {
  .l-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*==========//main==========*/
/*==========sidebar==========*/
.l-sidebar__list {
  margin-top: 2rem;
  min-width: 22rem;
  max-width: 36rem;
  position: sticky;
  top: 13rem;
  left: 0;
}
@media screen and (max-width: 1279px) {
  .l-sidebar__list {
    margin: 0 auto;
  }
}
.l-sidebar__item + li {
  margin-top: 2rem;
}
@media screen and (max-width: 1279px) {
  .l-sidebar__item + li {
    margin-top: 0.9rem;
  }
}
.l-sidebar__item a {
  background-color: #3293F5;
  border-radius: 8px;
  color: #fff;
  display: block;
  padding: 1.6rem 1rem;
  text-align: center;
  width: 100%;
}

/*==========//sidebar==========*/
/*==========content==========*/
.l-content__section {
  background-color: #fff;
  border-radius: 10px;
  padding: 6rem;
  max-width: 94rem;
  scroll-margin-top: 12rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-content__section {
    padding: 3.8rem 1.6rem;
  }
}
.l-content__section:not(:last-of-type) {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .l-content__section:not(:last-of-type) {
    margin-bottom: 4.6rem;
  }
}
.l-content__title {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .l-content__title {
    font-size: 2.3rem;
    margin-bottom: 1.7rem;
  }
}
.l-content__subtitle {
  display: block;
  font-size: 1.4rem;
  text-align: center;
}
.l-content img {
  display: block;
  max-width: 44rem;
  margin: 0 auto 7rem;
}
@media screen and (max-width: 767px) {
  .l-content img {
    font-size: 2.3rem;
    margin: 0 auto 2.3rem;
  }
}

/*==========//main==========*/
/*==========button==========*/
.c-btn-more {
  border-radius: 9999px;
  background-color: #1d1d1d;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 1em;
  position: relative;
  text-align: center;
  width: 90%;
  max-width: 32rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn-more {
    max-width: 36rem;
  }
}
.c-btn-more::after {
  background-color: #fff;
  background-image: url(../img/component/arrow-white.svg);
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn-more:hover::after {
  right: 1.5rem;
}

.c-sec__title {
  font-size: 3.2rem;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-sec__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 575px) {
  .c-sec__title {
    font-size: 2.5rem;
  }
}
.c-sec__title--ja {
  display: block;
  line-height: 1.2;
  color: #222;
}
.c-sec__title--en {
  display: block;
  font-size: 43.75%;
  color: #0462c1;
  margin-bottom: 0.3rem;
}
.c-sec__title--white {
  color: #fff;
}

.c-pagetitle {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(49, 47, 70)), color-stop(21%, rgb(242, 243, 244)));
  background-image: linear-gradient(180deg, rgb(49, 47, 70) 0% 21%, rgb(242, 243, 244) 21% 100%);
}
.c-pagetitle__title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: linear-gradient(170deg, rgb(50, 147, 245), rgb(54, 206, 226));
  border-radius: 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 5.6rem;
  height: 30rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 12rem 4rem 0;
  padding: 0.6rem 2rem 2rem 6rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .c-pagetitle__title {
    font-size: 4rem;
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-pagetitle__title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-radius: 10px;
    font-size: 2.7rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
    height: 18rem;
    margin: 7rem auto 0;
    width: 92%;
  }
}
.c-pagetitle__title--ja {
  display: block;
}
.c-pagetitle__title--en {
  display: block;
  font-size: 173.2142857143%;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .c-pagetitle__title--en {
    margin-top: 0;
    width: 100%;
  }
}

/*==========非表示==========*/
.c-hidden--xl {
  display: block;
}
@media screen and (max-width: 1279px) {
  .c-hidden--xl {
    display: none;
  }
}

.c-hidden--lg {
  display: block;
}
@media screen and (max-width: 1023px) {
  .c-hidden--lg {
    display: none;
  }
}

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

.c-hidden--sm {
  display: block;
}
@media screen and (max-width: 575px) {
  .c-hidden--sm {
    display: none;
  }
}

.c-hidden--xs {
  display: block;
}
@media screen and (max-width: 320px) {
  .c-hidden--xs {
    display: none;
  }
}

/*==========//非表示==========*/
/*==========表示==========*/
.c-visible--xl {
  display: none;
}
@media screen and (max-width: 1279px) {
  .c-visible--xl {
    display: block;
  }
}

.c-visible--lg {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-visible--lg {
    display: block;
  }
}

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

.c-visible--sm {
  display: none;
}
@media screen and (max-width: 575px) {
  .c-visible--sm {
    display: block;
  }
}

.c-visible--xs {
  display: none;
}
@media screen and (max-width: 320px) {
  .c-visible--xs {
    display: block;
  }
}

/*==========//表示==========*/
/*==========img==========*/
.c-imgwrap {
  border-radius: 10px;
  overflow: hidden;
  width: 90%;
}

/*==========//img==========*/
/*==========definition-list==========*/
.c-definition-list {
  max-width: 100rem;
  margin: 0 auto;
}
.c-definition-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-definition-list__title {
  border-bottom: 1px solid #ed1c24;
  padding: 2rem 1rem 2rem 2.8rem;
  width: 16%;
}
@media screen and (max-width: 575px) {
  .c-definition-list__title {
    padding: 1rem 1rem 1rem 1rem;
    width: 30%;
  }
}
.c-definition-list__text {
  border-bottom: 1px solid #e6e6e6;
  line-height: 2;
  padding: 2rem 1rem 2rem 5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 575px) {
  .c-definition-list__text {
    padding: 1rem 1rem 1rem 1.5rem;
  }
}

/*==========//outline==========*/
/*==========wrapper==========*/
.c-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/*==========//wrapper==========*/
/*==========pager==========*/
.nav-links {
  text-align: center;
}

.page-numbers {
  padding: 10px 15px;
  background-color: #fff;
  margin-left: -2px;
  border-left: 1px solid #fff;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
  font-weight: bold;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .page-numbers {
    margin-bottom: 5px;
  }
}

a.page-numbers:hover {
  color: #0462c1;
  opacity: 0.8;
}

.page-numbers.current {
  background-color: #1d1d1d;
  color: #fff;
}

.page-numbers.next {
  padding-right: 30px;
  border-radius: 0 9999px 9999px 0;
}

.page-numbers.prev {
  padding-left: 30px;
  border-radius: 9999px 0 0 9999px;
  border: none;
}

/*==========//pager==========*/
/*==========contents==========*/
.p-magazine-contents__textwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 9rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-magazine-contents__textwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 2.3rem;
  }
}
.p-magazine-contents__title {
  font-size: 3.6rem;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-magazine-contents__title {
    font-size: 2.3rem;
  }
}
.p-magazine-contents__text {
  line-height: 1.8;
}
.p-magazine-contents__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .p-magazine-contents__list {
    gap: 1rem 0;
  }
}
.p-magazine-contents__item {
  display: block;
  width: 22.5%;
}
@media screen and (max-width: 575px) {
  .p-magazine-contents__item {
    width: 48%;
  }
}
.p-magazine-contents__img {
  margin-bottom: 1rem;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
@media screen and (max-width: 575px) {
  .p-magazine-contents__img {
    margin-bottom: 0.5rem;
  }
}
.p-magazine-contents__img:hover {
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}
.p-magazine-contents__number {
  background-color: #fff;
  border: 1px solid #ccc;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  padding: 0.6rem 0;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.p-magazine-contents__number:hover {
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}

/*==========//contents==========*/
/*==========modal==========*/
.p-magazine-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.p-magazine-modal__content {
  background: #fff;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 1000px;
  height: 90%;
  position: relative;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 575px) {
  .p-magazine-modal__content {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
  }
}
.p-magazine-modal__close {
  position: absolute;
  top: 60px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  z-index: 10000;
  background: #333;
  width: 40px;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-magazine-modal__close {
    top: 50px;
    right: 10px;
  }
}
.p-magazine-modal__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/*==========//modal==========*/
/*================activities================*/
/*==========contents==========*/
.p-information__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-information__list {
    margin-bottom: 2.3rem;
  }
}
.p-information__item a {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  position: relative;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.p-information__item a:hover {
  color: #999;
}
.p-information__item a::after {
  content: "";
  background-image: url(../img/component/arrow-blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-information__time {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
}
.p-information__text {
  font-weight: bold;
}
.p-information__btnwrap {
  text-align: center;
  margin-top: 5rem;
}

/*==========//contents==========*/
/*================//activities================*/
/*==========kv==========*/
.p-top-kv {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100svh;
}
@media screen and (max-width: 1023px) {
  .p-top-kv {
    height: 80vh;
    background-position: 45% 50%;
  }
}
@media screen and (max-width: 575px) {
  .p-top-kv {
    height: 80vh;
    background-position: 60% 50%;
  }
}
.p-top-kv__inner {
  position: relative;
  height: 100%;
}
.p-top-kv__title {
  position: absolute;
  bottom: 0;
}

/*==========//kv==========*/
/*==========lead==========*/
.p-top-lead {
  background-image: url(../img/page/top/lead_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 12rem 0 33rem;
}
@media screen and (max-width: 767px) {
  .p-top-lead {
    padding: 6rem 0 16rem;
  }
}
.p-top-lead__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 2.3rem 18rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-top-lead__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-lead__title {
  font-weight: bold;
  font-size: 2.8rem;
  /*
  @include mq(sm) {
    font-size: 6.5vw;
  }*/
}
@media screen and (max-width: 767px) {
  .p-top-lead__title {
    font-size: 2.3rem;
    text-align: center;
  }
}
.p-top-lead__img {
  border-radius: 10px;
  max-width: 60rem;
  width: 100%;
}

/*==========//lead==========*/
/*==========overview==========*/
.p-top-overview {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 243, 244, 0)), color-stop(21%, rgb(242, 243, 244)));
  background-image: linear-gradient(180deg, rgba(242, 243, 244, 0) 0% 21%, rgb(242, 243, 244) 21% 100%);
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-overview {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 243, 244, 0)), color-stop(9%, rgb(242, 243, 244)));
    background-image: linear-gradient(180deg, rgba(242, 243, 244, 0) 0% 9%, rgb(242, 243, 244) 9% 100%);
    padding-bottom: 3.4rem;
  }
}
.p-top-overview__bg {
  background-image: linear-gradient(135deg, rgb(50, 147, 245), rgb(54, 206, 226));
  border-radius: 20px;
  padding: 2.7rem 0;
  margin: -21rem 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-overview__bg {
    margin: -10rem 1.7rem 0;
  }
}
.p-top-overview__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.3rem 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-overview__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-overview__textwrap {
  -ms-flex-preferred-size: 40rem;
      flex-basis: 40rem;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-overview__textwrap {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    margin-right: 0;
  }
}
.p-top-overview__text {
  color: #fff;
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-overview__text {
    margin: 2rem 0 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-overview__btnwrap {
    text-align: center;
  }
}
.p-top-overview__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  max-width: 490px;
}
@media screen and (max-width: 767px) {
  .p-top-overview__list {
    gap: 0.5rem;
  }
}
.p-top-overview__item {
  width: calc((100% - 1rem) / 2);
  aspect-ratio: 1/1;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.p-top-overview__item:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.p-top-overview__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.p-top-overview__img {
  width: 50%;
}
.p-top-overview__item-name {
  font-size: 1.8rem;
  font-weight: 500;
}

/*==========//overview==========*/
/*==========Social activity==========*/
.p-top-activity {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-activity {
    padding: 4.6rem 0;
  }
}
.p-top-activity__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-activity__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 2.3rem;
  }
}
.p-top-activity__slider {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-activity__slider {
    margin-bottom: 2.3rem;
  }
}
.p-top-activity__imgwrap {
  border-radius: 10px;
  overflow: hidden;
  margin: 0 1rem;
}
.p-top-activity__btnwrap {
  text-align: center;
}

/*==========//Social activity==========*/
/*==========Sign Roadsign Guardrall共通==========*/
.p-top__bg {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top__bg {
    padding: 4.6rem 0;
  }
}
.p-top__bg::before {
  font-family: "Barlow", sans-serif;
  font-size: 30rem;
  font-weight: bold;
  display: inline-block;
  letter-spacing: -0.05em;
  line-height: 1;
  position: absolute;
  width: 100%;
  height: 1em;
  z-index: 1;
  bottom: -0.12em;
  left: 0;
}
@media screen and (max-width: 1023px) {
  .p-top__bg::before {
    font-size: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__bg::before {
    font-size: 26vw;
    text-align: right;
    top: -0.19em;
  }
}

/*==Sign==*/
.p-top__bg--sign {
  background-color: #f2f3f4;
}
.p-top__bg--sign::before {
  content: "Sign";
  color: #fff;
}

/*==Road sign==*/
.p-top__bg--roadsign::before {
  content: "Roadsign";
  color: #f2f3f4;
  text-align: right;
}

/*==Guardrail==*/
.p-top__bg--guardrail {
  background-color: #f2f3f4;
}
.p-top__bg--guardrail::before {
  content: "Guardrail";
  color: #fff;
}

/*==========Sign==========*/
.p-top-sign__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.3rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-sign__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-sign__textwrap {
  -ms-flex-preferred-size: 40rem;
      flex-basis: 40rem;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-sign__textwrap {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    margin-right: 0;
  }
}
.p-top-sign__text {
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-sign__text {
    margin: 2rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sign__btnwrap {
    text-align: center;
  }
}
.p-top-sign__imgwrap {
  max-width: 64rem;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-top-sign__imgwrap {
    width: 100%;
  }
}

/*==========//Sign==========*/
/*==========Road sign==========*/
.p-top-roadsign__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 2.3rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-roadsign__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-roadsign__textwrap {
  -ms-flex-preferred-size: 40rem;
      flex-basis: 40rem;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-roadsign__textwrap {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    margin-left: 0;
  }
}
.p-top-roadsign__text {
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-roadsign__text {
    margin: 2rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-roadsign__btnwrap {
    text-align: center;
  }
}
.p-top-roadsign__imgwrap {
  max-width: 58rem;
  height: 54rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-top-roadsign__imgwrap {
    height: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-roadsign__imgwrap {
    height: 50rem;
  }
}
@media screen and (max-width: 575px) {
  .p-top-roadsign__imgwrap {
    height: 75vw;
  }
}
.p-top-roadsign__img {
  border-radius: 10px;
  width: 72%;
  max-width: 42rem;
  position: absolute;
}
.p-top-roadsign__img--top {
  top: 0;
  left: 0;
}
.p-top-roadsign__img--bottom {
  bottom: 0;
  right: 0;
}

/*==========//Road sign==========*/
/*==========Guardrail==========*/
.p-top-guardrail {
  background-color: #f2f3f4;
}
.p-top-guardrail__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-guardrail__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-top-guardrail__btnwrap {
    text-align: center;
  }
}
.p-top-guardrail__textwrap {
  -ms-flex-preferred-size: 37rem;
      flex-basis: 37rem;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-guardrail__textwrap {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}
.p-top-guardrail__text {
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-guardrail__text {
    margin: 2rem 0;
  }
}
.p-top-guardrail__imgwrap {
  width: 55%;
  max-width: 66rem;
  height: 60rem;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .p-top-guardrail__imgwrap {
    height: 45vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-guardrail__imgwrap {
    height: 40vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-guardrail__imgwrap {
    width: 100%;
    height: 60rem;
  }
}
@media screen and (max-width: 575px) {
  .p-top-guardrail__imgwrap {
    height: 90vw;
  }
}
.p-top-guardrail__img {
  border-radius: 10px;
  position: absolute;
}
.p-top-guardrail__img--top {
  width: 60%;
  max-width: 40rem;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-top-guardrail__img--top {
    width: 66%;
  }
}
.p-top-guardrail__img--bottom {
  width: 83%;
  max-width: 55rem;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top-guardrail__img--bottom {
    width: 91%;
  }
}

/*==========//Guardrail==========*/
/*==========link==========*/
.p-top-link {
  background-color: #f2f3f4;
}
.p-top-link__list {
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-link__list {
    border-radius: 0;
    display: block;
  }
}
.p-top-link__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2rem;
  position: relative;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
  height: 32rem;
}
@media screen and (max-width: 767px) {
  .p-top-link__item {
    border-radius: 10px;
    height: 25rem;
  }
}
.p-top-link__item--magazine {
  background-color: #3293F5;
}
@media screen and (max-width: 767px) {
  .p-top-link__item--magazine {
    margin-bottom: 1.2rem;
  }
}
.p-top-link__item--materials {
  background-color: #36CEE2;
}
.p-top-link__item:hover {
  opacity: 0.7;
}
.p-top-link__item a {
  display: block;
  height: 100%;
}
.p-top-link__title {
  color: #fff;
  font-size: 5rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-top-link__title {
    font-size: 4.5rem;
  }
}
.p-top-link__title span {
  display: block;
}
.p-top-link__title--ja {
  font-size: 64%;
  margin-top: 1rem;
}
.p-top-link__imgwrap {
  width: 10rem;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

/*==========//link==========*/
/*==========Information==========*/
.p-top-information {
  background-color: #f2f3f4;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-information {
    padding: 4.6rem 0;
  }
}
.p-top-information__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.3rem 17rem;
}
@media screen and (max-width: 767px) {
  .p-top-information__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-information__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-information__list {
    margin-bottom: 2.3rem;
  }
}
.p-top-information__item a {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  position: relative;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.p-top-information__item a:hover {
  color: #999;
}
@media screen and (max-width: 767px) {
  .p-top-information__item a::after {
    content: "";
    background-image: url(../img/component/arrow-blue.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    position: absolute;
    width: 20px;
    aspect-ratio: 1/1;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-top-information__time {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
}
.p-top-information__text {
  font-weight: bold;
}
.p-top-information__btnwrap {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-top-information__btnwrap {
    text-align: center;
  }
}

/*==========//Information==========*/
/*==========contents==========*/
.p-overview-about__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f2f3f4;
  padding-bottom: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.3rem 0;
  width: 90%;
  max-width: 1630px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .p-overview-about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 4.6rem;
  }
}
.p-overview-about__purpose {
  width: 49rem;
  margin-right: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-overview-about__purpose {
    width: 100%;
    margin-right: 0;
  }
}
.p-overview-about__abbreviation {
  background-color: #fff;
  border-radius: 10px;
  width: 56%;
  max-width: 85rem;
  padding: 5rem;
}
@media screen and (max-width: 1023px) {
  .p-overview-about__abbreviation {
    width: 100%;
    max-width: initial;
  }
}
@media screen and (max-width: 767px) {
  .p-overview-about__abbreviation {
    padding: 2rem;
  }
}
.p-overview-about__title {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-overview-about__title {
    font-size: 2.8rem;
  }
}
.p-overview-about__img {
  margin-bottom: 1.4rem;
}

/*==========//contents==========*/
/*==========member==========*/
.p-overview-member__table {
  width: 100%;
}
.p-overview-member__table th,
.p-overview-member__table td {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  font-weight: 500;
  white-space: nowrap;
}
.p-overview-member__thead th {
  background-color: #e5eff7;
  padding: 2.1rem 0;
}
@media screen and (max-width: 767px) {
  .p-overview-member__thead th {
    padding: 1.4rem 0;
  }
}
.p-overview-member__tbody th,
.p-overview-member__tbody td {
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-overview-member__tbody th,
  .p-overview-member__tbody td {
    padding: 1.9rem 2rem;
  }
}
.p-overview-member__tbody tr:nth-of-type(odd) th,
.p-overview-member__tbody tr:nth-of-type(odd) td {
  background-color: #f8f8f8;
}
.p-overview-member__tbody tr:nth-of-type(even) th,
.p-overview-member__tbody tr:nth-of-type(even) td {
  background-color: #efeff0;
}
.p-overview-member__center {
  text-align: center;
}

/*==========//member==========*/
/*==========aoi==========*/
.p-overview-aoi__list li {
  margin-bottom: 1.6rem;
}

/*==========//aoi==========*/
/*==========map==========*/
.p-overview-map__img {
  border: 1px solid #ccc;
  display: block;
  max-width: 82rem;
  margin: 0 auto 4rem;
}
.p-overview-map__btnwrap {
  text-align: center;
}

/*==========//map==========*/
/*================activities================*/
/*==========contents==========*/
.p-activities__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-activities__list {
    margin-bottom: 2.3rem;
  }
}
.p-activities__item a {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  position: relative;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.p-activities__item a:hover {
  color: #999;
}
.p-activities__item a::after {
  content: "";
  background-image: url(../img/component/arrow-blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-activities__time {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
}
.p-activities__text {
  font-weight: bold;
}
.p-activities__btnwrap {
  text-align: center;
  margin-top: 5rem;
}

/*==========//contents==========*/
/*================//activities================*/
/*================history================*/
/*==========contents==========*/
.p-history-contents__textwrap {
  background-color: #fff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.8rem;
  padding: 6rem;
}
@media screen and (max-width: 767px) {
  .p-history-contents__textwrap {
    padding: 4.6rem 0;
  }
}
.p-history-contents__title {
  display: inline-block;
  width: 10rem;
  padding: 1rem 2rem;
}
.p-history-contents__text {
  display: inline-block;
  width: calc(100% - 10rem);
  border-left: 4px solid #e5eff7;
  position: relative;
  padding: 1rem 2rem;
}
.p-history-contents__text::before {
  display: inline-block;
  content: "";
  aspect-ratio: 1/1;
  background-color: #0462c1;
  position: absolute;
  border-radius: 50%;
  top: 2.5rem;
  left: -2px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
}

/*==========//contents==========*/
/*================//history================*/
/*================history================*/
/*==========contents==========*/
.p-notfound {
  text-align: center;
}
.p-notfound__title {
  font-size: 3rem;
  margin-bottom: 4rem;
}
.p-notfound__btnwrap {
  margin: 4rem auto 0;
}

/*==========//contents==========*/
/*================//history================*//*# sourceMappingURL=style.css.map */