@charset "utf-8";
html { scroll-behavior: smooth;}
body {
  color: #333;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;

  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 画面の高さ100%を最低保証 */
}
a {
  color: #333;
  text-decoration: none;
  outline: 0;
}
a:hover {
  color: #2b65e5;
  text-decoration: none;
}
h1,h2,h3 {
  font-weight: 700;
  color: #222;
}
p {
  font-size: 1.2rem;
  line-height: 2;
}
/*header*/
#top-head {
  top: 0;
  position: fixed;
  margin-top: 0;
  width: 100%;
  padding: 0;
  line-height: 1;
  z-index: 999;
  transition: 0.5s;
}
#top-head,
.head-inner {
  width: 100%;
  padding: 0;
}
#top-head a,
#top-head {
  text-decoration: none;
}
.head-inner {
  position: relative;
}
.mobile-head {
  background: #fff;
  width: 100%;
  height: 75px;
  position: relative;
  display: flex;
  align-items: center;
  padding-inline: 1rem;
}
#menu {
  position: absolute;
  display: block;
  right: 12px;
  top: 16px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}
#menu .btn-gnav {
  position: fixed;
  top: 25px;
  right: 20px;
  width: 30px;
  height: 24px;
  z-index: 3;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms;
}
#menu .btn-gnav span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #575554;
  left: 0;
  transition: .35s ease-in-out;
}
#menu .btn-gnav span:nth-child(1) {
  top:0;
}
#menu .btn-gnav span:nth-child(2) {
  top:10px;
}
#menu .btn-gnav span:nth-child(3) {
  top:20px;
}
#menu .btn-gnav.open span:nth-child(1){
  background: #222;
  top: 6px;
  transform: rotate(-45deg);
}
#menu .btn-gnav.open span:nth-child(2),
#menu .btn-gnav.open span:nth-child(3){
  top: 6px;
  background :#222;
  transform : rotate(45deg);
}
#gnav {
  position: fixed;
  top: 0px;
  right: -100%;
  width: 100%;
  height: auto;
  background: #fff;
  font-size: 16rem;
  box-sizing: border-box;
  z-index: 2;
  padding-top: 0px;
  transition: .2s;
  overflow: auto;
}
#gnav.open {
  right: 0px;
}
#gnav .gnav-menu{
  height:100%;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
#gnav .gnav-menu li{
  display: block;
  font-size: 1.1rem;
  padding : 16px 30px;
  border-top: 1px solid #999;
}
#gnav .gnav-menu li a {
  text-decoration: none;
  color: #222;
}
#gnav .mega-menu li {
  padding: 16px;
}
#gnav .gnav-menu .c-button__contact {
  display: flex;
  padding: 0 72px;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: #2b65e5;
  color: #fff;
  height: 56px;
  font-size: 18px;
  position: relative;
  border-radius: 50vh;
}
#gnav .gnav-menu li.c-btn_contact {
  padding: 24px 0;
  display: flex;
  justify-content: center;
}
#gnav .gnav-menu li.c-btn_contact:last-child::after {
  display: none;
}
#gnav .gnav-menu .c-button__contact:hover,
.l-footer__inner .c-button__contact:hover {
  color: #fff;
  background: #194198;
  text-decoration: none;
  border: none;
  transition: all .5s;
}
#top-head .logo {
  width: 200px;
}
#top-head .logo-img_sp {
  width: 220px;
  margin: 16px auto;
}
.logo-wrap {
  display: flex;
}
#global-nav ul li a.contact {
  display: block;
  padding: 16px 32px;
  background: #91c342;
  color: #575554;
  font-size: 1.6rem;
  font-weight: 700;
}
#p-wrap_keyvisual {
  margin-top: 75px;
}
@media only screen and (min-width: 767px) {
  #top-head .logo {
    width: 240px;
    z-index: 100;
  }
}
@media only screen and (min-width: 1240px) {
  .btn-gnav{
    display: none;
    }
  .mobile-head {
    background: none;
    padding-inline: 4rem;
  }
  #gnav{
    position: fixed;
    top: 0;
    right: 0;
    height: 75px;
    background: #fff;
  }
  #gnav .gnav-menu{
    display: flex;
    flex-direction: row;
    position: fixed;
    top: 0;
    right: 4rem;
    height: 75px;
    align-items: center;
    margin-top: 0;
  }
  #gnav .gnav-menu li {
    padding: 16px 8px;
    font-weight: 700;
    font-size: 14px;
  }
  #gnav .gnav-menu .mega-menu li::before {
    display: inline-block;
    content: '';
  }
  #gnav .gnav-menu li.c-btn_contact {
    margin-left: 24px;
  }
  #gnav .c-uline {
    padding-bottom: 8px;
    position: relative;
  }
  #gnav .c-uline::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #2b65e5;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0,1);
    transition: .3s;
    transform-origin: left top;
  }
  #gnav .c-uline:hover::after,
  #gnav .c-uline.active::after {
    transform: scale(1,1);
  }
  .logo-wrap {
    display: flex;
  }
  #global-nav ul li a.contact {
    display: block;
    padding: 16px 32px;
    background: #91c342;
    color: #575554;
    font-size: 16px;
    font-weight: 700;
  }
  #top-head.scroll-nav {
      background: rgba(255, 255, 255, 0.8);
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }
  #top-head scroll-nav #gnav .gnav-menu li a {
      color: #575554;
  }
  #top-head scroll-nav #gnav .gnav-menu li a:hover {
      background: #fff;
  }
  #gnav .gnav-menu li,
  #gnav .gnav-menu li a {
    color: #575554;
    border-top: none;
  }
  .logo-img_sp {
    display: none;
  }
}
@media only screen and (min-width: 1400px) {
  #gnav .gnav-menu li {
    display: block;
    margin: 0;
    padding: 16px 24px;
    font-weight: 700;
    font-size: 15px;
    position: relative;
  }
}
/*button*/
.l-btn__box {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
}
.c-button {
  position: relative;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50vh;
  padding: 8px 0;
  width: 60%;
  margin: 32px auto 0;
  color: #fff;
  font-size: clamp(1.063rem, 0.994rem + 0.34vw, 1.25rem);
  letter-spacing: .013em;
  box-shadow: 1px 3px 2px 0px rgba(0, 0, 0, 0.3);
}
.c-button::before,
.c-button::after{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.c-button::before{
  width: 22px;
  height: 22px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #7af48b;
}
.c-button::after{
  right: 24px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-button:hover {
  background: #2b65e5;
  color: #fff;
  transition: all .5s;
}
.c-button:hover::before {
  right: 12px;
  transition: all .5s;
}
.c-button:hover::after {
  right: 20px;
  transition: all .5s;
}
@media only screen and (min-width: 767px) {
  .c-button {
    max-width: 300px;
    margin: 40px auto 0;
  }
}
/*Footer*/
.l-footer {
  background: #ebebec;
  width: 100%;
  margin-top: auto;
}
.p-company__sitemap {
  font-size: 14px;
}
.p-copyright {
  margin: 16px 0 0;
  padding: 8px 0 16px;
  font-size: 12px;
  text-align: right;
  border-top: 1px solid #999;
}
.p-company__nav {
  display: block;
}
.l-footer__inner {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  padding: 56px 0 0;
}
.l-footer__inner .c-button__contact {
  display: flex;
  padding: 0 72px;
  margin-bottom: 32px;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: #2b65e5;
  color: #fff;
  width: 100%;
  height: 64px;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  position: relative;
  border-radius: 50vh;
  box-shadow: 1px 3px 2px 0px rgba(0, 0, 0, 0.3);
}
.l-footer__inner .c-button__staffonly {
  display: flex;
  padding: 0 24px;
  margin-bottom: 16px;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: #8cb5f4;
  color: #222;
  width: 100%;
  height: 48px;
  font-size: clamp(0.938rem, 0.869rem + 0.34vw, 1.125rem);
  position: relative;
  border-radius: 50vh;
}
.l-footer__inner .c-button__staffonly:hover {
  background: #6786b5;
  color: #fff;
  transition: all .5s;
}
.l-footer__btn {
  position: absolute;
  top: -24px;
  right: 0;
}
.p-company__sitemap .logo {
  width: 260px;
}
.p-company__list li {
  padding-top: 16px;
}
@media only screen and (min-width: 767px) {
  .l-footer__btn {
    position: absolute;
    top: -24px;
    right: 0;
  }
  .l-footer__inner .c-button__contact {
    width: 400px;
    height: 64px;
  }
  .l-footer__inner .c-button__staffonly {
    width: 360px;
  }
}
@media only screen and (min-width: 1025px) {
  .l-footer__inner {
    max-width: 980px;
    padding: 56px 0 0;
  }
  .l-footer__inner .c-button__contact {
    margin-bottom: 0;
  }
  .p-com-name {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .p-group {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .p-company__sitemap {
    display: flex;
    align-items: center;
    padding: 32px 0 16px;
  }
  .p-company__sitemap .logo {
    width: 260px;
  }
  .p-company__list li a {
    font-size: 15px;
    margin-left: 40px;
  }
  .p-company__nav {
    display: block;
  }
}
@media only screen and (min-width: 1240px) {
  .l-footer__inner {
    max-width: 1200px;
    margin: 0px auto;
  }
}
@media screen and (min-width:767px) and ( max-width: 1024px) {
  #gnav {
    position: fixed;
    top: 0px;
    right: -40%;
    width: 40%;
    height: 100%;
  }
}
/*contents*/
.l-main {
  flex: 1;
}
.c-breadcrumbs {
  width: 100%;
  display: none;
}
.l-content_inner {
  position: relative;
  width: 90%;
  margin: 0 auto 120px;
}
.l-content_inner .c-copy {
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
}
.l-content_inner .c-copy span {
    padding-bottom: 3px;
    border-bottom: 2px solid #2b65e5;
}
.l-content_inner .c-hd {
  font-size: clamp(1.5rem, 1.142rem + 1.59vw, 2.375rem);
  line-height: 1.6;
  margin: 8px 0 24px;
}
.l-content_inner .c-title {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  line-height: 1.8;
  margin-bottom: 8px;
}
.l-content_inner .c-text {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
/*living*/
.p-living {
  margin: 40px 0;
}
.p-living .c-img {
  width: 90%;
  margin: 0 auto 24px;
}
.p-living__list li {
  padding: 32px 24px 16px;
  border-top: 1px solid #aaa;
  position: relative;
}
.p-living__list li:last-child {
  border-bottom: 1px solid #aaa;  
}
.p-living__list li .num {
  font-size: clamp(2.5rem, 2.045rem + 2.27vw, 3.75rem);
  color: #dce9f4;
  position: absolute;
  left: 0;
  font-weight: 400;
  top: -12px;
  z-index: -1;
}
/*network*/
.p-network {
  margin-bottom: 70px;
}
.p-network .c-title {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 16px;
}
.p-network .c-title::before {
  position: absolute;
  content: "●";
  color: #2b65e5;
  font-size: 1rem;
  left: 10px;
  line-height: 2.6;
}
.p-network .c-content {
  flex: 1;
}
.p-network .c-img {
  width: 70%;
  margin: 0 auto 40px;
}
.p-network__list li {
  background: #f9f9f9;
  font-size: 1rem;
  width: 100%;
  margin: 8px;
  padding: 8px 16px;
  border-radius: 16px;
}
.p-network__list li .c-name,
.p-network__list li .c-name a {
  font-size: 1rem;
}
.p-network__list li .c-name a {
  text-decoration: underline;
}
.p-network__list li .c-name a:hover {
  color: #2b65e5;
  transition: all .5s;
}
.p-network__list li .c-text {
  font-size: 0.9375rem;
}
/*circulation*/
.p-circulation .c-title {
  text-align: center;
  background: #f1f1f1;
}
.p-circulation__inner {
    width: 100%;
}
.p-circulation__list table {
    border-top: 1px solid #4f4d47;
    border-right: 1px solid #4f4d47;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 32px;
}
.p-circulation__list tr td:nth-child(2) {
  text-align: right;
  padding-right: 22%;
}
.p-circulation__list th, 
.p-circulation__list td {
    border-bottom: 1px solid #4f4d47;
    border-left: 1px solid #4f4d47;
    text-align: center;
    padding: 4px;
    font-size: clamp(0.938rem, 0.915rem + 0.11vw, 1rem);
}
.p-circulation__list th { 
  width: 50%;
  background-color: #54bcb2;
  color: #fff;
}
.p-circulation__list .cation {
  position: relative;
  font-size: clamp(0.813rem, 0.767rem + 0.23vw, 0.938rem);
  right: -20px;
}
.p-circulation__list .icon-note {
  position: relative;
}
.p-circulation__list .icon-note::before {
  position: absolute;
  content: '※';
  font-size: 1.125rem;
  line-height: 1.125rem;
  height: 1.125rem;
  right: -24px;
  top: 0;
  bottom: 0;
  margin: auto;
}
/*privacy*/
.p-privacy__inner {
  padding: 80px 0;
}
.p-privacy__inner a {
  text-decoration: underline;
}
/*404*/
.p-404 .p-copy {
  margin-top: 180px;
  font-size: 4rem;
  color: #8cb6f4;
}

@media only screen and (min-width: 767px) {
  .c-breadcrumbs {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 30px;
    display: flex;
    justify-content: flex-end;
  }
  .c-breadcrumbs ul {
    display: flex;
    align-items: center;
    margin: 8px 0px;
  }
  .c-breadcrumbs ul li {
    position: relative;
    font-size: 12px;
    padding: 0 0 0 18px;
  }
  .c-breadcrumbs li + li:before {
    position: absolute;
    content: ">";
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    top: 0;
    bottom: 0;
    left: 4px;
    font-weight: 100;
    margin: auto;
  }
  /*network*/
  .p-network__list {
    display: flex;
    flex-wrap: wrap;
  }
  .p-network__list li {
    width: calc((100% / 2) - 16px);
    padding: 16px 24px 0px;
  }
  .p-network .c-img {
    width: 50%;
  }
  /*circulation*/
  .p-circulation__inner {
    width: 80%;
    margin: 0 auto;
  }
  .p-company__list {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }
  .p-living__list li .num {
    top: -20px;
  }
}
@media only screen and (min-width: 1025px) {
  .c-breadcrumbs {
    padding: 24px 0;
  }
  .c-breadcrumbs ul li {
    font-size: 14px;
    padding: 0 0 0 24px;
  }
  .c-breadcrumbs li + li:before {
    font-size: 18px;
    line-height: 1.2;
  }
  .l-content_inner {
    max-width: 980px;
    padding: 0;
    margin: 0 auto 160px;
  }
  .l-content_inner .c-title {
    margin-bottom: 24px;
  }
  /*living*/
  .p-living .c-img {
    width: 80%;
    margin: 0 auto 24px;
  }
  /*network*/
  .p-network__list li {
    width: calc((100% / 3) - 16px);
    padding: 16px 24px 0px;
  }
  .p-network .c-img {
    width: 36%;
    margin: 0 0 0 40px;
  }
}
@media only screen and (min-width: 1240px) {
  .c-breadcrumbs {
    max-width: 1200px;
  }
  .l-content_inner {
    max-width: 1200px;
  }
  /*living*/
  .p-living__list li {
    padding: 40px 40px 24px;
  }
  .p-living__list li .num {
    top: -20px;
  }
  .l-btn-box {
    display: flex;
    justify-content: center;
  }
}
/*area*/
.p-area .c-title {
  font-size: clamp(1.063rem, 0.994rem + 0.34vw, 1.25rem);
  position: relative;
  padding: 16px 0;
  margin-bottom: 0;
}
.p-area .c-title::before {
  position: absolute;
  content: '';
  background: #222;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}
.p-area .c-title span {
  background: #fff;
  position: relative;
  z-index: 1;
  padding-right: 16px;
}
.p-area__list {
  display: flex;
  flex-wrap: wrap;
}
.p-area__list li {
  width: calc((100% / 4) - 12px);
  margin: 8px 6px;
}
.p-area__list li a {
  width: 100%;
  padding: 16px 0;
  background: #fff;
  display: block;
  border: 3px solid #2b65e5;
  color: #2b65e5;
  border-radius: 50vh;
  font-size: clamp(0.938rem, 0.892rem + 0.23vw, 1.063rem);
  text-align: center;
  font-weight: 700;
}
.p-area__list li a:hover {
  background: #2b65e5;
  color: #fff;
  transition: all .5s;
}
@media only screen and (max-width: 768px) {
  .c-section__box .c-img {
    width: 100%;
  }
  .p-area__list li {
    width: 100%;
    padding: 0;
    margin: 0 0 16px;
  }
  .p-area__list li a {
    padding: 8px 0;
  }
  .c-break {
    display: block;
  }
  .p-circulation__list tr td:nth-child(2) {
    padding-right: 18%;
  }
}
/* Utility*/
.en {
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.inline-block {
  display: inline-block;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.fw-bold {
  font-weight: 700;
}
.c-primary {
  color: #2b65e5;
}
.c-secondary {
  color: #fff;
}
.c-text {
  margin-bottom: 16px;
}
.c-link {
  color: #254aa5;
  border-bottom: 1px solid #254aa5;
}
.ank {
  margin-top: -70px;
  padding-top: 70px;
  scroll-behavior: smooth;
}
.fs-small {
  font-size: clamp(0.813rem, 0.767rem + 0.23vw, 0.938rem)!important;
}
.fs-medium {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem)!important;
}
.fs-large {
  font-size: clamp(1.375rem, 1.193rem + 0.91vw, 1.875rem)!important;
}
.mt-large {
  margin-top: 80px;
}
.mb-medium {
  margin-bottom: 50px;
}
.mb-large {
  margin-bottom: 80px;
}
.mb-0 {
  margin-bottom: 0px;
}
@media only screen and (min-width: 1025px) {
  .l-flx {
    display: flex;
  }
  .l-flx-aic {
    align-items: center;
  }
  .l-flx-rev {
    flex-direction: row-reverse;
  }  .pc-none {
    display: none!important;
  }
  .p-large  {
    padding: 40px;
  }
  .mt-large {
    margin-top: 70px;
  }
  .mb-medium {
    margin-bottom: 30px;
  }
  .mb-large {
    margin-bottom: 70px;
  }
  .ank {
    margin-top: -90px;
    padding-top: 90px;
  }
}
/*news*/
.p-news__list {
  padding-bottom: 16px;
}
.p-news__list .data {
  display: block;
  line-height: 1.6;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
.p-news__list li dd {
  display: flex;
  align-items: center;
}
.p-news__list .icon-new {
  display: inline-block;
  padding: 0px 8px;
  margin-right: 8px;
  color: #2b65e5;
  background: #fcff28;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}
.p-news__list li {
  border-bottom: 1px solid #222;
  padding: 12px;
  font-size: 14px;
  line-height: 2;
}
.p-news__list li dl {
  display: block;
}
.p-news__list li dt {
  width: 100%;
}
.p-news__list li dd {
  width: 100%;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  line-height: 1.7;
}
/*news post-link*/
.l-postlink {
  display: flex;
  justify-content: space-around;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-arrow_prev,
.c-arrow_next,
.nav-links .prev {
  position: relative;
  line-height: 1.8;
}
.l-postlink-prev,
.l-postlink-list,
.l-postlink-next,
.nav-links .prev,
.nav-links .next {
  padding: 2rem 0rem;
}
/*newslist prev*/
.p-news_wrap .navigation {
  position: relative;
  width: 90%;
  margin: 0 auto 80px;
}
.page-numbers {
  display: none;
}
.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
  text-align: center;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  display: block;
  position: relative;
  border: none;
  width: 80px;
  margin: 0 24px;
  line-height: 0;
}
.nav-links .page-numbers.current {
  background: #bddbf4;
  border: none;
}
.nav-links .page-numbers.prev::before {
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 0px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-top: 2px solid #2b65e5;
  border-left: 2px solid #2b65e5;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .5s;
}
.nav-links .page-numbers.next::before {
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 0px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-top: 2px solid #2b65e5;
  border-right: 2px solid #2b65e5;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .5s;
}
.nav-links .page-numbers.prev:hover::before {
  left: -10px;
}
.nav-links .page-numbers.next:hover::before {
  right: -10px;
}
@media only screen and (min-width: 767px) {
  /*news*/
  .p-news .c-detail {
    width: 100%;
  }
  .p-news__list li dl {
    display: flex;
    align-items: center;
  }
  .p-news__list li dt {
    width: 16%;
  }
  .p-news__list li dd {
    width: 82%;
  }
  .p-news__list .icon-new {
    line-height: 1.8;
  }
  .c-detail {
    padding-top: 48px;
  }
  .l-postlink {
    justify-content: center;
  }
  .l-postlink-prev,
  .l-postlink-list,
  .l-postlink-next {
    padding: 2rem 3rem;
  }
  .page-numbers {
    line-height: 2.5;
  }
  .nav-links .page-numbers.prev,
  .nav-links .page-numbers.next {
    line-height: 0;
  }
}
@media only screen and (min-width: 1025px) {
  /*news*/
  .p-news .c-detail {
    width: 70%;
  }
  .p-news__list .data {
    display: inline-block;
  }
  .p-news_wrap .navigation {
    max-width: 980px;
  }
}
@media only screen and (min-width: 1240px) {
  .p-news_wrap .navigation {
    max-width: 1200px;
  }
}
@media only screen and (max-width: 1239px) {
  .p-404 .p-copy {
    margin-top: 80px;
    font-size: 3.125rem;
    color: #8cb6f4;
  }
}
@media only screen and (max-width: 768px) {
  .p-404 .p-copy {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #8cb6f4;
  }
  .p-copyright {
      text-align: left;
      font-size: .7rem;
  }
}