@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
:root {
  --common-green: #6D7F55;
  --common-sauja-yellow: #f6db51;
}

body {
  font-family: "IBM Plex Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin: 0;
	font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1 {
  font-size: 0;
  line-height: 0;
  margin: 0;
}

h2, h3, h4 {
  margin: 0;
}

p {
  margin: 0;
}

.-float-r {
  float: right;
}

.-relative {
  position: relative;
}

.-underline {
  position: relative;
}
.-underline::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #000;
  transition: all 0.5s ease;
}

.-hover .-underline::after {
  width: 100%;
}
.-hover .eventhover, .p-news__post-link:hover .eventhover {
  text-decoration: underline;
}

.-fz14 {
  font-size: 14px;
}

.-fz15 {
  font-size: 15px;
}

.-fz16 {
  font-size: 16px;
}

.-fz18 {
  font-size: 18px;
}

.-w100p {
  width: 100%;
}

.-gray {
  color: #7c7c7c;
}

.-mt0 { margin-top: 0px; }
.-mt10 { margin-top: 10px; }
.-mt20 { margin-top: 20px; }
.-mt30 { margin-top: 30px; }
.-mt40 { margin-top: 40px; }
.-mt50 { margin-top: 50px; }
.-mt60 { margin-top: 60px; }
.-mt70 { margin-top: 70px; }
.-mt80 { margin-top: 80px; }
.-mt90 { margin-top: 90px; }
.-mt100 { margin-top: 100px; }

.-mb0 { margin-bottom: 0px; }
.-mb10 { margin-bottom: 10px; }
.-mb20 { margin-bottom: 20px; }
.-mb30 { margin-bottom: 30px; }
.-mb40 { margin-bottom: 40px; }
.-mb50 { margin-bottom: 50px; }
.-mb60 { margin-bottom: 60px; }
.-mb70 { margin-bottom: 70px; }
.-mb80 { margin-bottom: 80px; }
.-mb90 { margin-bottom: 90px; }
.-mb100 { margin-bottom: 100px; }

.mask {
  display: inline-block;
  line-height: 1.05;
  position: relative;
  overflow: hidden;
  color: transparent;
}
.mask img {
  opacity: 0;
}
.mask.-active {
  -webkit-animation: fontColor 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: fontColor 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.mask.-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: translateX(-100%);
  -webkit-animation: maskSlide 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: maskSlide 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.mask.-active img {
  -webkit-animation: imgOpacity 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: imgOpacity 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}

@-webkit-keyframes maskSlide {
  0% {
    transform: translateX(-102%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(102%);
  }
}

@keyframes maskSlide {
  0% {
    transform: translateX(-102%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(102%);
  }
}
@-webkit-keyframes fontColor {
  0% {
    color: transparent;
  }
  50% {
    color: transparent;
  }
  51% {
    color: #000;
  }
  100% {
    color: #000;
  }
}
@keyframes fontColor {
  0% {
    color: transparent;
  }
  50% {
    color: transparent;
  }
  51% {
    color: #000;
  }
  100% {
    color: #000;
  }
}
@-webkit-keyframes imgOpacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes imgOpacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.btn, .prev.page-numbers, .next.page-numbers {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 400px;
  height: 80px;
  box-sizing: border-box;
  border: 3px solid #000;
  background: #000;
  color: #fff;
  transition: all 0.8s ease;
}
.btn.-small {
	width: 280px;
	height: 60px;
}
.btn.-hover {
  color: #000;
}
.btn::before, .prev.page-numbers::before, .next.page-numbers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  -webkit-animation: bgSlideOff 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: bgSlideOff 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.btn.-hover::before, .prev.page-numbers:hover::before, .next.page-numbers:hover::before {
  -webkit-animation: bgSlideOn 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: bgSlideOn 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.btn__txt {
  display: block;
  position: relative;
  padding: 20px;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0.06em;
  width: calc(100% - 80px);
}
.btn.-small .btn__txt {
	font-size: 16px;
}
.btn__right {
  display: block;
  position: relative;
  overflow: hidden;
  width: 80px;
  height: 52px;
  box-sizing: border-box;
  border-left: 3px solid #fff;
  -webkit-animation: chgBorderOff 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: chgBorderOff 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.-hover .btn__right {
  -webkit-animation: chgBorderOn 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: chgBorderOn 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.btn__ico {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: iconSlideOff 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: iconSlideOff 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.btn__ico polygon, .btn__ico path {
  -webkit-animation: chgFillOff 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: chgFillOff 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.btn__ico.-stop {
  -webkit-animation: none;
          animation: none;
}
.-hover .btn__ico {
  -webkit-animation: iconSlideOn 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: iconSlideOn 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.-hover .btn__ico polygon, .-hover .btn__ico path {
  -webkit-animation: chgFillOn 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: chgFillOn 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.-hover .btn__ico.-stop {
  -webkit-animation: none;
          animation: none;
}

.btn-h-readall, .prev.page-numbers, .next.page-numbers {
  border: 0;
  margin-left: auto;
  background: transparent;
  color: #000;
  width: 255px;
  transition: all 0.8s ease;
}
.btn-h-readall__right {
  border-color: #000;
  -webkit-animation: chgBorderOff2 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: chgBorderOff2 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.btn-h-readall__ico .st_readall {
  -webkit-animation: chgFillOff2 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: chgFillOff2 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.btn-h-readall::before, .prev.page-numbers::before, .next.page-numbers::before {
  background: #000;
}
.btn-h-readall.-hover, .l-container.-news-list .page-numbers a.next:hover, .l-container.-news-list .page-numbers a.prev:hover, .pagenav-pn a:hover {
  color: #fff;
}
.-hover .btn-h-readall__right, .prev.page-numbers:hover .btn-h-readall__right, .next.page-numbers:hover .btn-h-readall__right {
  -webkit-animation: chgBorderOn2 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: chgBorderOn2 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.-hover .btn-h-readall__ico .st_readall, .prev.page-numbers:hover .btn-h-readall__ico .st_readall, .next.page-numbers:hover .btn-h-readall__ico .st_readall {
  -webkit-animation: chgFillOn2 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: chgFillOn2 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}

@-webkit-keyframes bgSlideOff {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(102%);
  }
}

@keyframes bgSlideOff {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(102%);
  }
}
@-webkit-keyframes bgSlideOn {
  0% {
    transform: translateX(-102%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bgSlideOn {
  0% {
    transform: translateX(-102%);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes iconSlideOff {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  50% {
    transform: translateX(110%);
    opacity: 0;
  }
  70% {
    transform: translateX(-110%);
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes iconSlideOff {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  50% {
    transform: translateX(110%);
    opacity: 0;
  }
  70% {
    transform: translateX(-110%);
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes iconSlideOn {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  50% {
    transform: translateX(110%);
    opacity: 0;
  }
  70% {
    transform: translateX(-110%);
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes iconSlideOn {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  50% {
    transform: translateX(110%);
    opacity: 0;
  }
  70% {
    transform: translateX(-110%);
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes chgBorderOff {
  0% {
    border-color: #000;
  }
  40% {
    border-color: #000;
  }
  60% {
    border-color: #fff;
  }
  100% {
    border-color: #fff;
  }
}
@keyframes chgBorderOff {
  0% {
    border-color: #000;
  }
  40% {
    border-color: #000;
  }
  60% {
    border-color: #fff;
  }
  100% {
    border-color: #fff;
  }
}
@-webkit-keyframes chgBorderOn {
  0% {
    border-color: #fff;
  }
  40% {
    border-color: #fff;
  }
  60% {
    border-color: #000;
  }
  100% {
    border-color: #000;
  }
}
@keyframes chgBorderOn {
  0% {
    border-color: #fff;
  }
  40% {
    border-color: #fff;
  }
  60% {
    border-color: #000;
  }
  100% {
    border-color: #000;
  }
}
@-webkit-keyframes chgBorderOff2 {
  0% {
    border-color: #fff;
  }
  40% {
    border-color: #fff;
  }
  60% {
    border-color: #000;
  }
  100% {
    border-color: #000;
  }
}
@keyframes chgBorderOff2 {
  0% {
    border-color: #fff;
  }
  40% {
    border-color: #fff;
  }
  60% {
    border-color: #000;
  }
  100% {
    border-color: #000;
  }
}
@-webkit-keyframes chgBorderOn2 {
  0% {
    border-color: #000;
  }
  40% {
    border-color: #000;
  }
  60% {
    border-color: #fff;
  }
  100% {
    border-color: #fff;
  }
}
@keyframes chgBorderOn2 {
  0% {
    border-color: #000;
  }
  40% {
    border-color: #000;
  }
  60% {
    border-color: #fff;
  }
  100% {
    border-color: #fff;
  }
}
@-webkit-keyframes chgFillOff {
  0% {
    fill: #000;
  }
  51% {
    fill: #000;
  }
  52% {
    fill: #fff;
  }
  100% {
    fill: #fff;
  }
}
@keyframes chgFillOff {
  0% {
    fill: #000;
  }
  51% {
    fill: #000;
  }
  52% {
    fill: #fff;
  }
  100% {
    fill: #fff;
  }
}
@-webkit-keyframes chgFillOn {
  0% {
    fill: #fff;
  }
  51% {
    fill: #fff;
  }
  52% {
    fill: #000;
  }
  100% {
    fill: #000;
  }
}
@keyframes chgFillOn {
  0% {
    fill: #fff;
  }
  51% {
    fill: #fff;
  }
  52% {
    fill: #000;
  }
  100% {
    fill: #000;
  }
}
@-webkit-keyframes chgFillOff2 {
  0% {
    fill: #fff;
  }
  51% {
    fill: #fff;
  }
  52% {
    fill: #000;
  }
  100% {
    fill: #000;
  }
}
@keyframes chgFillOff2 {
  0% {
    fill: #fff;
  }
  51% {
    fill: #fff;
  }
  52% {
    fill: #000;
  }
  100% {
    fill: #000;
  }
}
@-webkit-keyframes chgFillOn2 {
  0% {
    fill: #000;
  }
  51% {
    fill: #000;
  }
  52% {
    fill: #fff;
  }
  100% {
    fill: #fff;
  }
}
@keyframes chgFillOn2 {
  0% {
    fill: #000;
  }
  51% {
    fill: #000;
  }
  52% {
    fill: #fff;
  }
  100% {
    fill: #fff;
  }
}
/*.parallax {
  transition: transform 1s ease;
}*/

@media screen and (max-width: 1200px) and (min-width: 768px) {
  .btn {
    width: 33.3vw;
    height: 6.6vw;
  }
  .btn__txt {
    font-size: 2.35vw;
    padding: 1.76vw;
  }
  .btn__right {
    width: 7.666vw;
    height: 4.334vw;
  }
}
.modal_open {
	cursor: pointer;
}
.l-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  transition: all 0.5s ease;
}
.l-header.-active {
  width: 710px;
}
.l-header__content {
  width: 710px;
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
  padding: 125px 100px 70px 80px;
  background: #fff;
  display: flex;
  align-items: flex-start;
}
.l-header__logo {
  width: 70px;
}
.l-header__right {
  margin-left: 85px;
}
.l-header a {
  color: #000;
  text-decoration: none;
}
.l-header__list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 80px;
}
.l-header__item {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 34px;
}
.l-header__item-link {
  display: inline-block;
}
.l-header__insta-ico {
  width: 32px;
  height: 32px;
}
.l-header__addr {
  padding-bottom: 35px;
  border-bottom: 2px solid #000;
}
.l-header__h2 {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 5px;
}
.l-header__company {
  padding-top: 35px;
}
.l-header__company-logo {
  display: block;
  margin-bottom: 25px;
}
.l-header__h3 {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 16px;
  line-height: 1.05;
  margin-bottom: 5px;
}
.l-header__p {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.l-header__logo_award {
  height: auto;
}
.l-header__gooddesign {
  width: 100%;
  margin: 20px 0 0;
}
.l-header__logo_kukandesign2023_silver {
  width: 61%;
  margin: 20px 0 0;
}
.l-header__logo_kukandesign2023_sustainable {
  width: 83%;
  margin: 10px 0 0;
}
.l-header__txt_chibatoshibunkasyou2023 {
  margin: 8px 0 0;
}
.l-header__txt_chibatoshibunkasyou2023.l-header__txt_chibatoshibunkasyou2023-first {
  margin: 10px 0 0;
}
.l-header__logo_column {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0 5px;
}
.l-header__logo_renovationoftheyear {
  width: 20%;
  /*margin: 20px 0 5px;*/
  margin: 0 20px 0 0;
}
.l-header__logo_frameawards {
  width: 47.4%;
  margin: 0 20px;
}
.l-header__logo_award img {
  width: 100%;
  height: auto;
}
.l-header__ico {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 8px;
}

.p-menu-btn {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 38px;
  right: 20px;
  width: 60px;
  height: 96px;
  cursor: pointer;
}
.p-menu-btn__line {
  display: block;
  width: 60px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.p-menu-btn__line:nth-of-type(1) {
  top: 0;
}
.p-menu-btn__line:nth-of-type(2) {
  top: 12px;
}
.p-menu-btn__line:nth-of-type(3) {
  top: 23px;
}
.-hover .p-menu-btn__line:nth-of-type(1), .-hover .p-menu-btn__line:nth-of-type(3) {
  top: 12px;
}
.-active .p-menu-btn__line:nth-of-type(1) {
  transform: rotate(45deg);
  top: 12px;
}
.-active .p-menu-btn__line:nth-of-type(2) {
  opacity: 0;
}
.-active .p-menu-btn__line:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 12px;
}
.p-menu-btn__txt::before {
  content: "MENU";
  font-weight: 600;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
.-active .p-menu-btn__txt::before {
  content: "CLOSE";
}

.p-menu-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
}
.p-menu-bg.-active {
  visibility: visible;
  opacity: 1;
}

.l-site-title {
  position: fixed;
  z-index: 9999;
  top: 26px;
  left: 13px;
}
.l-site-title__img {
  width: 300px;
}
.l-site-title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.5s, visibility 0.5s, transform 0.5s;
}
.is-fadeout {
  opacity: 0;
  visibility: hidden;
  transform: translateX(0);
}
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}


.l-footer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: url(../img/footer/bg_img.jpg) center center/cover no-repeat;
  padding: 160px 100px;
}
.l-footer a {
  color: #000;
  text-decoration: none;
}
.l-footer__logo-link {
  margin: 0 176px;
}
.l-footer__logo-link img {
  display: block;
}
.l-footer__list {
  list-style: none;
  padding-left: 0;
  margin: 0 320px 0 0;
}
.l-footer__item {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.l-footer__item-link {
  display: inline-block;
}
.l-footer__insta-ico {
  width: 32px;
  height: 32px;
}
.l-footer__other {
  width: 810px;
}
.l-footer__addr, .l-footer__company {
  border-bottom: 2px solid #000;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.l-footer__h2 {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 40px;
  line-height: 1.05;
  margin-bottom: 30px;
}
.l-footer__h3 {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 18px;
  line-height: 1.05;
  margin-bottom: 25px;
}
.l-footer__p {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.l-footer__logo_award {
  height: auto;
}
.l-footer__gooddesign {
  width: 360px;
  margin: 20px 0 0;
}
.l-footer__logo_kukandesign2023_silver {
  width: 220px;
  margin: 20px 0 0;
}
.l-footer__logo_kukandesign2023_sustainable {
  width: 300px;
  margin: 10px 0 0;
}
.l-footer__txt_chibatoshibunkasyou2023 {
  font-size: 13px;
  margin: 8px 0 0;
}
.l-footer__txt_chibatoshibunkasyou2023.l-footer__txt_chibatoshibunkasyou2023-first {
  margin: 10px 0 0;
}
.l-footer__logo_column {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0 5px;
}
.l-footer__logo_renovationoftheyear {
  width: 70px;
  /*margin: 20px 0 5px;*/
  margin: 0 20px 0 0;
}
.l-footer__logo_frameawards {
  width: 166px;
  margin: 0 20px;
}
.l-footer__logo_award img {
  width: 100%;
  height: auto;
}
.l-footer__company-logo {
  display: block;
  margin-bottom: 30px;
	width: 285px;
}
.l-footer__btn-area {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
.l-footer .btn {
  width: 280px;
  height: 60px;
  color: #fff;
  margin-right: 30px;
}
.l-footer .btn.-hover {
  color: #000;
}
.l-footer .btn__txt {
  font-size: 18px;
  padding: 10px;
}
.l-footer .btn__right {
  height: 40px;
}
.l-footer .btn__ico.-mail {
  width: 22px;
  height: 22px;
}
.l-footer .btn__ico.-company {
  width: 20px;
  height: 20px;
}
.l-footer__copyright {
  font-weight: 600;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 1800px) {
  .l-footer__logo-link {
    margin: 0 130px;
  }
  .l-footer__list {
    margin-right: 240px;
  }
}
@media screen and (max-width: 1800px) {
  .l-footer__logo-link {
    margin: 0 130px;
  }
  .l-footer__list {
    margin-right: 240px;
  }
}
@media screen and (max-width: 1530px) {
  .l-footer__logo-link {
    margin: 0 80px;
  }
  .l-footer__list {
    margin-right: 100px;
  }
}
@media screen and (max-width: 1300px) {
  .l-footer {
    padding: 160px 60px;
  }
}
@media screen and (max-width: 1200px) {
  .l-footer {
    padding: 160px 30px;
  }
  .l-footer__logo-link {
    margin: 0 6.65vw;
  }
  .l-footer__logo-link img {
    width: 5.8vw;
  }
  .l-footer__list {
    margin-right: 8.3vw;
  }
  .l-footer__item {
    font-size: 1.83vw;
    margin-bottom: 1.6vw;
  }
  .l-footer__other {
    width: 48vw;
  }
  .l-footer__addr, .l-footer__company {
    padding-bottom: 5vw;
    margin-bottom: 5vw;
  }
  .l-footer__h2 {
    margin-bottom: 2.5vw;
  }
  .l-footer__btn-area {
    display: block;
  }
  .l-footer .btn {
    margin: 0 0 2.5vw;
  }
}
.l-container.-top .p-hero {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}
.l-container.-top .p-hero .-left,
.l-container.-top .p-hero .-right {
  position: absolute;
  display: inline-block;
  line-height: 1.05;
  overflow: hidden;
  color: transparent;
	text-align: right;
}
.l-container.-top .p-hero .-left {
  top: 0;
  left: 0;
  width: 39.584vw;
	text-align: left;
}
.l-container.-top .p-hero .-right {
  bottom: 0;
  right: 0;
  width: 39.584vw;
}
.l-container.-top .p-hero img {
  opacity: 1;
	vertical-align: bottom;
}

.l-container.-top .p-imgarea img {
	position: relative;
  width: 100%;
	z-index: 2;
}
.l-container.-top .p-hero .mask {
  /*position: absolute;*/
  position: relative;
}
.l-container.-top .p-hero .mask.-left {
  top: 0;
  left: 0;
  width: 39.584vw;
}
.l-container.-top .p-hero .mask.-right {
  bottom: 0;
  right: 0;
  width: 39.584vw;
}
.l-container.-top .p-hero__img.-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.219vw;
}
.l-container.-top .p-concept {
  margin-top: 440px;
  display: flex;
}
.l-container.-top .p-concept__left {
  width: 50%;
  padding-left: 100px;
  box-sizing: border-box;
}
.l-container.-top .p-concept__right {
  width: 50%;
  position: relative;
  text-align: right;
}
.l-container.-top .p-concept__img {
  display: block;
  margin-left: auto;
}
.l-container.-top .p-concept__img.-front {
  position: absolute;
  right: 0;
  bottom: -60px;
}
.l-container.-top .p-concept__h2 {
  font-size: 80px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.l-container.-top .p-concept__h2::after {
  content: "";
  clear: both;
  display: block;
}
.l-container.-top .p-concept__h2 .mask {
	margin-bottom: 15px;
    display: block;
    float: left;
}
.l-container.-top .p-concept__h2 .mask.-small {
  font-size: 22px;
  margin-bottom: 25px;
}
.l-container.-top .p-concept__p {
  line-height: 35px;
  margin-top: 90px;
}
.l-container.-top .p-concept__h3 {
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 50px;
  margin-bottom: 90px;
}
.l-container.-top .p-concept__h3 .mask {
  font-size: 60px;
}
.l-container.-top .p-concept__h3 .mask.-small {
  font-size: 18px;
  margin-bottom: 15px;
}
.l-container.-top .p-concept__logo_award {
  height: auto;
}
.l-container.-top .p-concept__gooddesign {
  width: 400px;
  margin: 20px 0 0;
}
.l-container.-top .p-concept__logo_kukandesign2023_silver {
  width: 246px;
  margin: 20px 0 0;
}
.l-container.-top .p-concept__logo_kukandesign2023_sustainable {
  width: 332px;
  margin: 10px 0 0;
}
.l-container.-top .p-concept__txt_chibatoshibunkasyou2023 {
  font-size: 15px;
  margin: 8px 0 0;
}
.l-container.-top .p-concept__txt_chibatoshibunkasyou2023.p-concept__txt_chibatoshibunkasyou2023-first {
  margin: 10px 0 0;
}
.l-container.-top .p-concept__logo_column {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0 70px;
}
.l-container.-top .p-concept__logo_renovationoftheyear {
  width: 78px;
  /*margin: 20px 0 70px;*/
  margin: 0 20px 0 0;
}
.l-container.-top .p-concept__logo_frameawards {
  width: 185px;
  margin: 0 20px;
}
.l-container.-top .p-concept__logo_award img {
  width: 100%;
  height: auto;
}
.concept-img-right {
	display: block;
	width: 70%;
	aspect-ratio: 1;
	margin: 0 0 0 auto;
}
.l-container.-top .p-imgarea {
  margin-top: 440px;
}
.l-container.-top .p-floor {
  display: flex;
  justify-content: space-between;
  margin-top: -10px;
  padding: 0 100px 400px;
  position: relative;
}
.l-container.-top .p-floor__h2, .p-event__h2 {
  font-size: 80px;
  line-height: 0.5;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 90px;
}
.l-container.-top .p-floor__h2 .txt, .p-event__h2 .txt {
  display: inline-block;
}
.l-container.-top .p-floor__h2 .txt.-small, .p-event__h2 .txt.-small {
  font-size: 20px;
  margin-top: 15px;
}
.l-container.-top .p-floor__left {
  width: 50%;
  padding-top: 330px;
}
.l-container.-top .p-floor__p {
  line-height: 35px;
}
.l-container.-top .p-floor__right {
  width: 590px;
}
.l-container.-top .p-floor__right .soushoku {
  height: 500px;
	display: block;
	margin: 0 0 0 auto;
}
.l-container.-top .p-floor__h3 {
  margin-top: 50px;
}
.l-container.-top .p-floor__h3-logo {
  width: 295px;
}
.l-container.-top .p-floor__tbl {
  width: 100%;
  margin-top: 10px;
	font-weight: 600;
}
.l-container.-top .p-floor__tbl tr {
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}
.l-container.-top .p-floor__tbl th, .l-container.-top .p-floor__tbl td {
  text-align: left;
  font-size: 22px;
  vertical-align: top;
  box-sizing: border-box;
  padding: 0;
}
.l-container.-top .p-floor__tbl th {
  padding: 20px 0 0 12px;
  width: 50px;
}
.l-container.-top .p-floor__td-title {
  display: block;
  padding: 20px 10px;
}
.l-container.-top .p-floor__list {
  list-style: none;
  margin: 0;
  /*padding-left: 27px;*/
	padding-left: 0;
}
.l-container.-top .p-floor__td-title img.-float-r {
	width: 82px;
}
.l-container.-top .p-floor__list li {
  border-bottom: 2px solid #000;
}
.l-container.-top .p-floor__list li:last-child {
  border: 0;
}
.l-container.-top .p-floor__item {
  font-size: 18px;
}
.l-container.-top .p-floor__link {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 20px 10px;
  color: #000;
  transition: all 0.8s ease;
}
.l-container.-top .p-floor__link.-hover {
  color: #fff;
}
.l-container.-top .p-floor__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--common-green);
  transform: translateX(-100%);
  -webkit-animation: bgSlideOff 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: bgSlideOff 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.l-container.-top .p-floor__item:nth-child(4) .p-floor__link::before {
  background: var(--common-sauja-yellow);
}
.l-container.-top .p-floor__link.-hover::before {
  -webkit-animation: bgSlideOn 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
          animation: bgSlideOn 0.8s forwards cubic-bezier(0.8, 0, 0.5, 1);
}
.l-container.-top .p-floor__link-ico {
  position: absolute;
  top: 27px;
  right: 10px;
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
}
.l-container.-top .p-floor__link.-hover .st1 {
  fill: #fff;
}
.l-container.-top .p-floor__img {
  display: block;
}
.l-container.-top .p-floor__img.-front {
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-container.-top .p-1f {
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
}
.l-container.-top .p-1f.p-1f__reverse {
  margin-top: 130px;
}
.l-container.-top .p-1f-leaf {
  position: absolute;
  top: -350px;
  right: 0;
}
.l-container.-top .p-1f__h3 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 100px;
}
.l-container.-top .p-1f__h3::after {
  content: "";
  display: block;
  clear: both;
}
.l-container.-top .p-1f__h3 .txt {
  display: inline-block;
}
.l-container.-top .p-1f__h3 .txt.-small {
  font-size: 18px;
}
.l-container.-top .p-1f__h3 .txt.-flex {
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
  float: left;
}
.l-container.-top .p-1f__h3 .title-ico {
  margin: 14px 12px;
	width: 34px;
}
.l-container.-top .p-1f__logo {
  display: block;
  margin-bottom: 30px;
  max-width: 347px;
}
.l-container.-top .p-1f__p {
  line-height: 35px;
  font-weight: 500;
}
.l-container.-top .p-1f__p.-bottom {
  margin-top: 30px;
  font-size: 22px;
}
.l-container.-top .p-1f__p.-bottom.-gray {
  font-weight: 400;
}
.l-container.-top .p-1f__p.-notice {
  font-weight: 400;
  line-height: 2;
  margin-top: 10px;
}
.l-container.-top .p-1f__left {
  width: 50%;
}
.l-container.-top .p-1f__right {
  width: 810px;
  padding-top: 35px;
}
.l-container.-top .p-1f.p-1f__reverse .p-1f__left {
  width: 610px;
  padding-top: 35px;
}
.l-container.-top .p-1f.p-1f__reverse .p-1f__right {
  width: 50%;
}
.l-container.-top .p-1f-shop {
  background-color: var(--common-green);
  margin-top: 130px;
  padding: 140px 0;
  color: #fff;
}
.l-container.-top .p-1f-shop__h3 {
  padding-left: 100px;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
}
.l-container.-top .p-1f-shop__current {
  font-size: 60px;
  margin-left: 20px;
}
.l-container.-top .p-1f-shop__count {
  font-size: 40px;
}
.l-container.-top .p-1f-shop .slide-item {
  padding: 0 20px 0 100px;
}
.l-container.-top .p-1f-shop .slide-item__link {
  text-decoration: none;
  color: #fff;
}
.l-container.-top .p-1f-shop .slide-item__link.-hover, .l-container.-top .p-1f-shop .slide-item__link:hover {
  text-decoration: underline;
}
.l-container.-top .p-1f-shop .slide-item__link-ico {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(-45deg);
}
.l-container.-top .p-1f-shop .slide-item__title {
  margin-top: 40px;
  position: relative;
  line-height: 1.05;
}
.l-container.-top .p-1f-shop .slide-item__title-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 65px;
  height: 100%;
  border-left: 2px solid #fff;
}
.l-container.-top .p-1f-shop .slide-item__name {
  display: block;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.l-container.-top .p-1f-shop .slide-item__cat {
  display: block;
  margin-top: 15px;
  font-size: 16px;
}
.l-container.-top .p-2f {
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  margin-top: 300px;
}
.l-container.-top .p-2f__h3 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 100px;
}
.l-container.-top .p-2f__h3::after {
  content: "";
  display: block;
  clear: both;
}
.l-container.-top .p-2f__h3 .txt {
  display: inline-block;
}
.l-container.-top .p-2f__h3 .txt.-small {
  font-size: 18px;
}
.l-container.-top .p-2f__h3 .txt.-flex {
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
  float: left;
}
.l-container.-top .p-2f__h3 .title-ico {
  margin: 14px 12px;
	width: 34px;
}
.l-container.-top .p-2f__logo {
  display: block;
  margin-bottom: 30px;
}
.l-container.-top .p-2f__logo.-dinerlogo {
	margin-top: 80px;
}
.l-container.-top .p-2f__p, .rcb__p, .acs__p {
  line-height: 35px;
  font-weight: 500;
}
.l-container.-top .p-2f__p.-bottom {
  margin-top: 30px;
  font-size: 22px;
}
.l-container.-top .p-2f__p.-bottom.-gray {
  font-weight: 400;
}
.l-container.-top .p-2f__left {
  width: 50%;
}
.l-container.-top .p-2f__right {
  width: 810px;
  padding-top: 35px;
}
.l-container.-top .p-3f {
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  margin-top: 300px;
}
.l-container.-top .p-3f__h3 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 100px;
}
.l-container.-top .p-3f__h3::after {
  content: "";
  display: block;
  clear: both;
}
.l-container.-top .p-3f__h3 .txt {
  display: inline-block;
}
.l-container.-top .p-3f__h3 .txt.-small {
  font-size: 18px;
}
.l-container.-top .p-3f__h3 .txt.-flex {
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
  float: left;
}
.l-container.-top .p-3f__h3 .title-ico {
  margin: 14px 12px;
	width: 34px;
}
.l-container.-top .p-3f__logo {
  display: block;
  margin-bottom: 30px;
}
.l-container.-top .p-3f__logo img {
	min-width: 205px;
}
.l-container.-top .p-3f__p {
  line-height: 35px;
  font-weight: 500;
}
.l-container.-top .p-3f__p.-bottom {
  margin-top: 30px;
  font-size: 22px;
}
.l-container.-top .p-3f__p.-bottom.-gray {
  font-weight: 400;
}
.l-container.-top .p-3f__left {
  width: 50%;
}
.l-container.-top .p-3f__right {
  width: 810px;
  padding-top: 35px;
}
.l-container.-top .p-4f {
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  margin-top: 300px;
}
.l-container.-top .p-4f__h3 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 100px;
}
.l-container.-top .p-4f__h3::after {
  content: "";
  display: block;
  clear: both;
}
.l-container.-top .p-4f__h3 .txt {
  display: inline-block;
}
.l-container.-top .p-4f__h3 .txt.-small {
  font-size: 18px;
}
.l-container.-top .p-4f__h3 .txt.-flex {
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
  float: left;
}
.l-container.-top .p-4f__h3 .title-ico {
  margin: 14px 12px;
	width: 34px;
}
.l-container.-top .p-4f__logo {
  display: block;
  margin-bottom: 30px;
}
.l-container.-top .p-4f__p {
  line-height: 35px;
  font-weight: 500;
}
.l-container.-top .p-4f__p.-bottom {
  margin-top: 30px;
  font-size: 22px;
}
.l-container.-top .p-4f__p.-bottom.-gray {
  font-weight: 400;
}
.l-container.-top .p-4f__left {
  width: 50%;
}
.l-container.-top .p-4f__right {
  width: 810px;
  padding-top: 35px;
}
.l-container.-top .p-5f {
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  margin-top: 300px;
}
.l-container.-top .p-5f__h3 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 100px;
}
.l-container.-top .p-5f__h3::after {
  content: "";
  display: block;
  clear: both;
}
.l-container.-top .p-5f__h3 .txt {
  display: inline-block;
}
.l-container.-top .p-5f__h3 .txt.-small {
  font-size: 18px;
}
.l-container.-top .p-5f__h3 .txt.-flex {
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
  float: left;
}
.l-container.-top .p-5f__h3 .title-ico {
  margin: 14px 12px;
	width: 34px;
}
.l-container.-top .p-5f__logo {
  display: block;
  margin-bottom: 30px;
}
.l-container.-top .p-5f__p {
  line-height: 35px;
  font-weight: 500;
}
.l-container.-top .p-5f__p.-bottom {
  margin-top: 30px;
  font-size: 22px;
}
.l-container.-top .p-5f__p.-bottom.-gray {
  font-weight: 400;
}
.l-container.-top .p-5f__left {
  width: 50%;
}
.l-container.-top .p-5f__right {
  width: 810px;
  padding-top: 35px;
}
.l-container.-top .p-5f__other-ico {
  vertical-align: middle;
  margin-right: 20px;
}
.l-container.-top .p-news {
  background: url(../img/home/bg_img.jpg) center center/cover no-repeat;
  padding: 150px 100px;
  margin-top: 300px;
  position: relative;
}
.l-container.-top .p-news .-flex {
  display: flex;
  justify-content: space-between;
}
.l-container.-top .p-news__h2 {
  font-size: 80px;
  line-height: 0.5;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 90px;
}
.l-container.-top .p-news__h2 .txt {
  display: inline-block;
}
.l-container.-top .p-news__h2 .txt.-small {
  font-size: 20px;
  margin-top: 50px;
}
.l-container.-top .p-news__h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
.l-container.-top .p-news__h3.-cat {
  display: flex;
  align-items: center;
}
.l-container.-top .p-news__h3.-cat .txt {
  display: block;
  margin-right: 18px;
}
.l-container.-top .p-news__h3.-cat .line {
  display: block;
  width: 60px;
  height: 2px;
  background: #000;
}
.l-container.-top .p-news__cat-list {
  list-style: none;
  padding-left: 0;
}
.l-container.-top .p-news__cat-item {
  margin-bottom: 10px;
}
.l-container.-top .p-news__cat-link {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 6px 10px;
  line-height: 1.05;
}
.l-container.-top .p-news__post {
  border-bottom: 2px solid #000;
  margin-bottom: 40px;
}
.p-news__post span.objectfit {
	width: 180px;
	aspect-ratio: 3 / 2;
}
.l-container.-top .p-news__post-link {
  position: relative;
  text-decoration: none;
  color: #000;
  width: 1280px;
  display: flex;
  align-items: flex-start;
  padding-bottom: 40px;
}
.l-container.-top .p-news__post-link .st_post {
  transition: all 0.5s ease;
}
.l-container.-top .p-news__post-link.-hover .st_post {
  fill: #000;
}
.l-container.-top .p-news__post-thumb {
  display: block;
  width: 180px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
.objectfit img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	font-family: 'object-fit: cover;';
}
.l-container.-top .p-news__post-header {
  margin-bottom: 25px;
}
.l-container.-top .p-news__post-date {
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-block;
  font-size: 15px;
  line-height: 1.05;
}
.l-container.-top .p-news__post-cat {
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-block;
  font-size: 15px;
  line-height: 1.05;
  background: #000;
  color: #fff;
  padding: 5px 8px;
  margin-left: 16px;
}
.l-container.-top .p-news__post-title {
  display: inline-block;
  margin-right: 50px;
}
.l-container.-top .p-news__post-ico {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 60px;
  right: 26px;
}
.l-container.-top .p-news-leaf {
  position: absolute;
  top: -280px;
  left: 0;
}
.l-container.-top .p-access {
  display: flex;
  justify-content: space-between;
  margin-top: 115px;
  padding: 300px 0 400px;
  position: relative;
}
.l-container.-top .p-access__h2 {
  font-size: 80px;
  line-height: 0.5;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 90px;
}
.l-container.-top .p-access__h2 .txt {
  display: inline-block;
}
.l-container.-top .p-access__h2 .txt.-small {
  font-size: 20px;
  margin-top: 30px;
}
.l-container.-top .p-access__left {
  width: 50%;
  padding-left: 100px;
  box-sizing: border-box;
}
.l-container.-top .p-access__p {
  line-height: 35px;
}
.l-container.-top .p-access__p.-mb40, .-mb40 {
  margin-bottom: 40px;
}
.l-container.-top .p-access__p.-mb50 {
  margin-bottom: 50px;
}
.l-container.-top .p-access .btn__ico {
  width: 25px;
  height: 25px;
}
.l-container.-top .p-access__h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.l-container.-top .p-access__h3 .txt {
  display: block;
  margin-right: 26px;
}
.l-container.-top .p-access__h3 .line {
  display: block;
  width: 60px;
  height: 2px;
  background: #000;
}
.l-container.-top .p-access__details {
  margin-top: 100px;
}
.l-container.-top .p-access__details-list {
  list-style: none;
  padding-left: 0;
}
.l-container.-top .p-access__details-list.-list-style {
  list-style-type: disc;
  padding-left: 20px;
}
.l-container.-top .p-access__details-item {
  padding-left: 6px;
  margin-bottom: 10px;
}
.l-container.-top .p-access__details-link, .cnt__left .p-access__details-link {
  display: inline-block;
  color: #000;
  text-decoration: none;
}
.cnt__left .p-access__details-link {
	margin-top: 10px;
}
.l-container.-top .p-access__link-ico, .cnt__left .p-access__link-ico {
  width: 16px;
  height: 16px;
}
.l-container.-top .p-access__right {
  position: relative;
  width: 50%;
}
.l-container.-top .p-access__img {
  position: absolute;
}
.l-container.-top .p-access__img.-a {
  top: 110px;
  left: 50px;
}
.l-container.-top .p-access__img.-b {
  top: 0;
  right: 0;
}
.l-container.-top .p-access__img.-c {
  top: 500px;
  right: 69px;
}
.l-container.-top .p-access__img.-d {
  top: 420px;
  right: 0;
}


.pum-theme-default-theme .pum-title {
    display: none!important;
}
.pum-theme-default-theme .pum-content + .pum-close {
    position: relative;    
}
.pum-theme-default-theme .pum-content + .pum-close::before,
.pum-theme-default-theme .pum-content + .pum-close::after {
    position: absolute;
    content: "";
    top: 25px;
    right: 10px;
    width: 30px;
    height: 2px;
    background: #231815;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.pum-theme-default-theme .pum-content + .pum-close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}


.pum-theme-floating-bar .pum-container {
    position: absolute;
    left: 0;
    top: auto!important;
    bottom: 0;
    width: 580px;
    max-width: 580px;
    height: auto;
    transition: .3s cubic-bezier(0.420, 0.000, 0.580, 1.000);
	transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
    -webkit-transform: translateY(170px);
            transform: translateY(170px);
    opacity: 0;
    margin-bottom: 0;
}
.pum-theme-floating-bar .pum-container.fadeTop {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}
.pum-theme-floating-bar .pum-container.fadeBottom {
    -webkit-transform: translateY(170px);
            transform: translateY(170px);
    opacity: 0;
}
.floatbnr {
    height: auto;
    padding-bottom: 40px;
}
.floatbnr a {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    opacity: 0;
    transition: .3s linear;
    z-index: 2;
}
.floatbnr a:hover {
    opacity: .3;
}
.floatbnr .floatbnr__img img {
	width: 100%;	
}
.floatbnr__bar {
    position: absolute;
    width: 100%;
    height: 40px;
	padding-bottom: 5px;
    left: 0;
    bottom: 0;
    font-weight: bold;
    font-size: 16px;
    font-size: 1rem;
    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;
}
.floatbnr__bar::after {
    position: absolute;
    content: "";
    right: 15px;
    top: 13px;
    width: 11px;
    height: 11px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff; 
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);    
}
.pum-theme-floating-bar .pum-content + .pum-close::before,
.pum-theme-floating-bar .pum-content + .pum-close::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 8px;
    width: 14px;
    height: 1px;
    background: #231815;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);    
}
.pum-theme-floating-bar .pum-content + .pum-close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}


/* top-event */
#EVENT {
	margin-top: 440px;
    padding: 0 100px;
    position: relative;
}
#EVENT .btn {
	margin-top: 5%;
	width: 255px;
}
.p-event__list {
	margin-right: calc(50% - 50vw);
	overflow: hidden;
}
.p-event-list-box {
	width: 520px;
	margin-right: 60px;
}
.l-container.-top .p-event-list-box .p-news__post-link {
	width: 100%;
	display: block;
	padding-bottom: 0;
}
.event-list-box-date {
	font-size: 15px;
	margin-bottom: 15px;
	line-height: 1.4;
}
.event-list-box-date span {
	margin-left: .5em;
}
.p-event-list-box img {
	width: 100%;
}
.event-list-box img {
	vertical-align: bottom;
}
.event-box-cats {
	display:flex;
	line-height: 1.05;
	font-size: 14px;
	letter-spacing: .05em;
	margin: 20px 0 10px;
}
.event-box-cats span {
	display: inline-block;
	width: 80px;
	text-align: center;
	background: #000;
	color: #FFF;
	padding: 3px 0;
}
.event-box-cats p {
	padding: 3px 0;
	margin-left: .75em;
}
.p-event-list-box .p-news__post-title {
	margin-right: 0;
	padding-right: 0;
	font-size: 28px;
	font-weight: 700;
}



@media screen and (max-width: 1790px) {
  .l-container.-top .p-access__img.-c {
    right: 20px;
  }
}
@media screen and (max-width: 1710px) {
  .l-container.-top .p-news__post-link {
    width: 72vw;
  }
}
@media screen and (max-width: 1530px) {
  .l-container.-top .p-1f__right {
    width: 46%;
  }
  .l-container.-top .p-1f.p-1f__reverse .p-1f__left {
    width: 46%;
  }
  .l-container.-top .p-2f__right {
    width: 46%;
  }
  .l-container.-top .p-3f__right {
    width: 46%;
  }
  .l-container.-top .p-4f__right {
    width: 46%;
  }
  .l-container.-top .p-5f__right {
    width: 46%;
  }
  .l-container.-top .p-news__post-link {
    width: 65vw;
  }
}
@media screen and (max-width: 1300px) {
  .l-container.-top .p-floor__left {
    padding-right: 20px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .l-container.-top .p-concept__h2 {
    font-size: 6.65vw;
  }
  .l-container.-top .p-concept__h2 .mask.-small {
    font-size: 1.83vw;
  }
  .l-container.-top .p-concept__p {
    font-size: 1.25vw;
    line-height: 2.92vw;
  }
  .l-container.-top .p-concept__h3 .mask.-small {
    font-size: 1.5vw;
  }
  .l-container.-top .p-concept__h3 .mask {
    font-size: 5vw;
  }
  .l-container.-top .p-concept__gooddesign {
    width: 33.3vw;
  }
  .l-container.-top .p-concept__logo_kukandesign2023_silver {
    width: 20.4vw;
  }
  .l-container.-top .p-concept__logo_kukandesign2023_sustainable {
    width: 27.6vw;
  }
  .l-container.-top .p-concept__txt_chibatoshibunkasyou2023 {
    font-size: 1.2vw;
  }
  .l-container.-top .p-concept__logo_renovationoftheyear {
    width: 6.5vw;
  }
  .l-container.-top .p-concept__logo_frameawards {
    width: 15.4vw;
  }
  .l-container.-top .p-concept__left {
    padding-left: 8.35vw;
  }
  .l-container.-top .p-concept__img {
    width: 49vw;
  }
  .l-container.-top .p-concept__img.-front {
    width: 35vw;
  }
  .l-container.-top .p-floor {
    padding-left: 8.35vw;
    padding-right: 8.35vw;
  }
  .l-container.-top .p-floor__left {
    padding-top: 36vw;
  }
  .l-container.-top .p-floor__h2, .p-event__h2 {
    font-size: 6.65vw;
    margin-bottom: 7.5vw;
  }
  .l-container.-top .p-floor__h2 .txt.-small, .p-event__h2 .txt.-small {
    font-size: 1.67vw;
    margin-top: 4.2vw;
  }
  .l-container.-top .p-floor__p {
    font-size: 1.25vw;
    line-height: 2.92vw;
  }
  .l-container.-top .p-floor__right {
    width: 49vw;
  }
  .l-container.-top .p-floor__h3 {
    margin-top: 7.5vw;
  }
  .l-container.-top .p-floor__h3-logo {
    width: 24.584vw;
  }
  .l-container.-top .p-floor__tbl th, .l-container.-top .p-floor__tbl td {
    font-size: 1.83vw;
  }
  .l-container.-top .p-floor__item {
    font-size: 1.5vw;
  }
  .l-container.-top .p-floor__img.-front {
    width: 31vw;
  }
  .l-container.-top .p-1f {
    padding-left: 8.35vw;
    padding-right: 8.35vw;
  }
  .l-container.-top .p-1f.p-1f__reverse {
    margin-top: 10.8vw;
  }
  .l-container.-top .p-1f__h3 {
    font-size: 3.75vw;
  }
  .l-container.-top .p-1f__h3 .txt.-small {
    font-size: 1.5vw;
  }
  .l-container.-top .p-1f__h3 .title-ico {
    width: 2.8vw;
    margin: 1.1vw 1vw;
  }
  .l-container.-top .p-1f__p {
    font-size: 1.25vw;
    line-height: 2.92vw;
  }
  .l-container.-top .p-2f {
    padding-left: 8.35vw;
    padding-right: 8.35vw;
  }
  .l-container.-top .p-2f__h3 {
    font-size: 3.75vw;
  }
  .l-container.-top .p-2f__h3 .txt.-small {
    font-size: 1.5vw;
  }
  .l-container.-top .p-2f__h3 .title-ico {
    width: 2.8vw;
    margin: 1.1vw 1vw;
  }
  .l-container.-top .p-2f__p, .rcb__p, .acs__p {
    font-size: 1.25vw;
    line-height: 2.92vw;
  }
  .l-container.-top .p-3f {
    padding-left: 8.35vw;
    padding-right: 8.35vw;
  }
  .l-container.-top .p-3f__h3 {
    font-size: 3.75vw;
  }
  .l-container.-top .p-3f__h3 .txt.-small {
    font-size: 1.5vw;
  }
  .l-container.-top .p-3f__h3 .title-ico {
    width: 2.8vw;
    margin: 1.1vw 1vw;
  }
  .l-container.-top .p-3f__p {
    font-size: 1.25vw;
    line-height: 2.92vw;
  }
  .l-container.-top .p-4f {
    padding-left: 8.35vw;
    padding-right: 8.35vw;
  }
  .l-container.-top .p-4f__h3 {
    font-size: 3.75vw;
  }
  .l-container.-top .p-4f__h3 .txt.-small {
    font-size: 1.5vw;
  }
  .l-container.-top .p-4f__h3 .title-ico {
    width: 2.8vw;
    margin: 1.1vw 1vw;
  }
  .l-container.-top .p-4f__p {
    font-size: 1.25vw;
    line-height: 2.92vw;
  }
  .l-container.-top .p-5f {
    padding-left: 8.35vw;
    padding-right: 8.35vw;
  }
  .l-container.-top .p-5f__h3 {
    font-size: 3.75vw;
  }
  .l-container.-top .p-5f__h3 .txt.-small {
    font-size: 1.5vw;
  }
  .l-container.-top .p-5f__h3 .title-ico {
    width: 2.8vw;
    margin: 1.1vw 1vw;
  }
  .l-container.-top .p-5f__p {
    font-size: 1.25vw;
    line-height: 2.92vw;
  }
  .l-container.-top .p-1f__logo {
    width: 29vw;
    margin-bottom: 2.5vw;
  }
  .l-container.-top .p-2f__logo {
    width: 24.4vw;
    margin-bottom: 2.5vw;
  }
  .l-container.-top .p-1f__p.-bottom {
    font-size: 1.84vw;
  }
  .l-container.-top .p-1f__p.-bottom .-fz16 {
    font-size: 1.34vw;
  }
  .l-container.-top .p-1f__p.-bottom .-fz14 {
    font-size: 1.17vw;
  }
  .l-container.-top .p-1f-shop {
    margin-top: 10.8vw;
    padding: 11.6vw 0;
  }
  .l-container.-top .p-1f-shop__h3 {
    font-size: 1.83vw;
    margin-bottom: 2.5vw;
    padding-left: 8.35vw;
  }
  .l-container.-top .p-1f-shop__current {
    font-size: 5vw;
    margin-left: 1.7vw;
  }
  .l-container.-top .p-1f-shop__count {
    font-size: 3.3vw;
  }
  .l-container.-top .p-1f-shop .slide-item {
    padding: 0 2vw 0 8.35vw;
  }
  .l-container.-top .p-1f-shop .slider img {
    width: 28vw;
  }
  .l-container.-top .p-1f-shop .slide-item__title {
    margin-top: 4.1vw;
  }
  .l-container.-top .p-1f-shop .slide-item__name {
    font-size: 1.83vw;
  }
  .l-container.-top .p-1f-shop .slide-item__cat {
    margin-top: 1.5vw;
    font-size: 1.35vw;
  }
  .l-container.-top .p-1f-shop .slide-item__title-right {
    width: 4.8vw;
  }
  .l-container.-top .p-1f-leaf {
    width: 34vw;
    top: -30vw;
  }
  .l-container.-top .p-news {
    padding-left: 8.35vw;
    padding-right: 8.35vw;
    font-size: 1.33vw;
  }
  .l-container.-top .p-news__h2 {
    font-size: 6.65vw;
    margin-bottom: 7.5vw;
  }
  .l-container.-top .p-news__h2 .txt.-small {
    font-size: 1.67vw;
    margin-top: 4.2vw;
  }
  .l-container.-top .p-news__h3 {
    font-size: 1.83vw;
  }
  .l-container.-top .p-news__h3.-cat .txt {
    margin-right: 1.5vw;
  }
  .l-container.-top .p-news__h3.-cat .line {
    width: 5vw;
  }
  .l-container.-top .p-news__cat-item {
    margin-bottom: 0.8vw;
  }
  .l-container.-top .p-news__post-link {
    width: 62vw;
  }
  .l-container.-top .p-news__post-right {
    margin-left: 3.6vw;
	  padding-left: 0;
  }
  .l-container.-top .p-news__post-header {
    margin-bottom: 2.1vw;
  }
  .l-container.-top .p-news__post-date,
.l-container.-top .p-news__post-cat {
    font-size: 1.25vw;
  }
  .l-container.-top .p-news__post-title {
    padding-right: 5.1vw;
  }
  .l-container.-top .p-news__post-ico {
    right: 2.15vw;
  }
  .btn-h-readall {
    width: 26vw;
  }
  .l-container.-top .p-news-leaf {
    width: 31vw;
    top: -28vw;
  }
  .l-container.-top .p-access {
    padding-top: 37.5vw;
    padding-bottom: 33.3vw;
    font-size: 1.33vw;
  }
  .l-container.-top .p-access__left {
    padding-left: 8.35vw;
  }
  .l-container.-top .p-access__h2 {
    font-size: 6.65vw;
    margin-bottom: 7.5vw;
  }
  .l-container.-top .p-access__h2 .txt.-small {
    font-size: 1.67vw;
    margin-top: 4.2vw;
  }
  .l-container.-top .p-access__p {
    font-size: 1.25vw;
    line-height: 2.92vw;
  }
  .l-container.-top .p-access__p.-mb40, .-mb40 {
    margin-bottom: 3.34vw;
  }
  .l-container.-top .p-access__p.-mb50 {
    margin-bottom: 4.2vw;
  }
  .l-container.-top .p-access__details {
    margin-top: 8.3vw;
  }
  .l-container.-top .p-access__h3 {
    font-size: 1.83vw;
  }
  .l-container.-top .p-access__h3 .txt {
    margin-right: 2.2vw;
  }
  .l-container.-top .p-access__h3 .line {
    width: 5vw;
  }
  .l-container.-top .p-access__img.-a {
    width: 30vw;
    top: 13vw;
  }
  .l-container.-top .p-access__img.-b {
    width: 18vw;
  }
  .l-container.-top .p-access__img.-c {
    width: 20vw;
    top: 42vw;
  }
  .l-container.-top .p-access__img.-d {
    width: 31vw;
    top: 23vw;
  }
}
.l-container.-concept .p-hero {
  position: relative;
  height: 1280px;
  margin-top: 50px;
  margin-bottom: 250px;
}
.l-container.-concept .p-hero > * {
  position: absolute;
}
.l-container.-concept .p-hero__img-wrap.-a {
  width: 442px;
  top: 50px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.l-container.-concept .p-hero__img-wrap.-b {
  top: 187px;
  left: 54px;
}
.l-container.-concept .p-hero__img-wrap.-c {
  top: 332px;
  right: 278px;
}
.l-container.-concept .p-hero__img-wrap.-d {
  top: 610px;
  right: 0;
}
.l-container.-concept .p-hero__img-wrap.-e {
  top: 676px;
  left: 0;
}
.l-container.-concept .p-hero__img-wrap.-f {
  bottom: 0;
  right: 476px;
}
.l-container.-concept .p-hero__title {
  position: absolute;
  top: 540px;
  left: 50%;
  transform: translateX(-50%);
}
.l-container.-page.-concept .p-hero .mask.-active::after {
    background: #6D7F55;
}
.l-container.-page.-concept .p-story__right .mask.-active::after {
    background: #6D7F55;
}
.l-container.-concept .p-hero__title .txt {
  display: block;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 96px;
  text-align: center;
}
.l-container.-concept .p-hero__title .txt.-small {
  font-size: 24px;
  margin-bottom: 10px;
}
.l-container.-concept .p-message {
  margin: 0 auto 440px;
  width: 600px;
  text-align: center;
}
.l-container.-concept .p-message__p {
  line-height: 35px;
  margin-bottom: 30px;
  text-align: left;
}
.l-container.-concept .p-message__logo_award {
  height: auto;
}
.l-container.-concept .p-message__gooddesign {
  width: 400px;
  margin: 20px 0 0;
}
.l-container.-concept .p-message__logo_kukandesign2023_silver {
  width: 246px;
  margin: 20px 0 0;
}
.l-container.-concept .p-message__logo_kukandesign2023_sustainable {
  width: 332px;
  margin: 10px 0 0;
}
.l-container.-concept .p-message__txt_chibatoshibunkasyou2023 {
  font-size: 15px;
  text-align: left;
  margin: 8px 0 0;
}
.l-container.-concept .p-message__txt_chibatoshibunkasyou2023.p-message__txt_chibatoshibunkasyou2023-first {
  margin: 10px 0 0;
}
.l-container.-concept .p-message__logo_column {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0 70px;
}
.l-container.-concept .p-message__logo_renovationoftheyear {
  width: 78px;
  /*margin: 20px 0 70px;*/
  margin: 0 20px 0 0;
}
.l-container.-concept .p-message__logo_frameawards {
  width: 185px;
  margin: 0 20px;
}
.l-container.-concept .p-message__logo_award img {
  width: 100%;
  height: auto;
}
.l-container.-concept .p-message__h2 {
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 130px;
  margin-bottom: 100px;
  text-align: left;
}
.l-container.-concept .p-message__h2 .mask {
  font-size: 60px;
}
.l-container.-concept .p-message__h2 .mask.-small {
  font-size: 18px;
  margin-bottom: 15px;
}
.l-container.-concept .p-message-leaf {
  position: absolute;
  top: -450px;
  left: 0;
}
.l-container.-concept .p-story {
  margin-bottom: 440px;
  display: flex;
  position: relative;
}
.l-container.-concept .p-story__left {
  padding-left: 100px;
  width: 50%;
  box-sizing: border-box;
}
.l-container.-concept .p-story__right {
  width: 50%;
  position: relative;
}
.l-container.-concept .p-story__h2 {
  font-size: 80px;
  line-height: 0.5;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 90px;
}
.l-container.-concept .p-story__h2 .txt {
  display: inline-block;
}
.l-container.-concept .p-story__h2 .txt.-small {
  font-size: 20px;
  margin-top: 30px;
}
.l-container.-concept .p-story__p {
  line-height: 35px;
  margin-bottom: 30px;
}
.l-container.-concept .p-story__img-wrap {
  position: absolute;
}
.l-container.-concept .p-story__img-wrap.-a {
  top: 0;
  right: 0;
}
.l-container.-concept .p-story__img-wrap.-b {
  top: 100px;
  left: 50px;
}
.l-container.-concept .p-story__img-wrap.-c {
  top: 500px;
  right: 70px;
}
.l-container.-concept .p-story-leaf {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 1650px) {
  .l-container.-concept .p-story__img-wrap.-a {
    width: 18vw;
  }
  .l-container.-concept .p-story__img-wrap.-b {
    top: 6.1vw;
    left: 3vw;
    width: 29vw;
  }
  .l-container.-concept .p-story__img-wrap.-c {
    top: 30.35vw;
    right: 4.25vw;
    width: 18vw;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .l-container.-concept .p-hero__img-wrap.-a {
    top: 4.2vw;
    width: 37vw;
  }
  .l-container.-concept .p-hero__img-wrap.-b {
    top: 15.6vw;
    left: 4.5vw;
    width: 18vw;
  }
  .l-container.-concept .p-hero__img-wrap.-c {
    top: 27.7vw;
    right: 23.2vw;
    width: 19vw;
  }
  .l-container.-concept .p-hero__img-wrap.-d {
    top: 50.8vw;
    right: 0;
    width: 22vw;
  }
  .l-container.-concept .p-hero__img-wrap.-e {
    top: 56.3vw;
    left: 0;
    width: 46vw;
  }
  .l-container.-concept .p-hero__img-wrap.-f {
    bottom: 0;
    right: 39.7vw;
    width: 31.8vw;
  }
  .l-container.-concept .p-hero__title {
    top: 45vw;
  }
  .l-container.-concept .p-hero__title .txt {
    font-size: 8vw;
  }
  .l-container.-concept .p-hero__title .txt.-small {
    font-size: 2vw;
    margin-bottom: 0.9vw;
  }
  .l-container.-concept .p-message {
    width: 50%;
  }
  .l-container.-concept .p-message__img {
    width: 45.834vw;
  }
  .l-container.-concept .p-message__p,
  .l-container.-concept .p-story__p {
    font-size: 1.25vw;
    line-height: 2.92vw;
  }
  .l-container.-concept .p-message__gooddesign {
    width: 33.3vw;
  }
  .l-container.-concept .p-message__logo_kukandesign2023_silver {
    width: 20.4vw;
  }
  .l-container.-concept .p-message__logo_kukandesign2023_sustainable {
    width: 27.6vw;
  }
  .l-container.-concept .p-message__txt_chibatoshibunkasyou2023 {
    font-size: 1.2vw;
  }
  .l-container.-concept .p-message__logo_renovationoftheyear {
    width: 6.5vw;
  }
  .l-container.-concept .p-message__logo_frameawards {
    width: 15.5vw;
  }
  .l-container.-concept .p-message__h2 .mask.-small {
    font-size: 1.5vw;
  }
  .l-container.-concept .p-message__h2 .mask {
    font-size: 5vw;
  }
  .l-container.-concept .p-story__h2 {
    font-size: 6.65vw;
    margin-bottom: 7.5vw;
  }
  .l-container.-concept .p-story__h2 .txt.-small {
    font-size: 1.67vw;
    margin-top: 4.2vw;
  }
}
.l-container.-news-list .p-news {
  padding: 0 100px;
  margin-top: 300px;
  margin-bottom: 300px;
  position: relative;
}
.l-container.-news-list.-event .p-news {
	margin-top: 200px;
	margin-bottom: 440px;
}
.l-container.-news-list.-event .reserve-cnt .p-news {
	margin-bottom: 320px;
}
.l-container.-news-list .p-news-leaf {
  position: absolute;
  top: 0;
  right: 0;
}
.l-container.-news-list .p-news-leaf.-eventlist-leaf {
	top: -21vh;
}
.l-container.-news-list .p-news .-flex {
  display: flex;
  justify-content: space-between;
}
.l-container.-news-list .p-news__h2 {
  font-size: 80px;
  line-height: 0.5;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 200px;
}
.l-container.-news-list .p-news__h2.-event__h2 {
	margin-bottom: 0;
} 
.l-container.-news-list .p-news__h2 .txt {
  display: inline-block;
}
.l-container.-news-list .p-news__h2 .txt.-small {
  font-size: 20px;
  margin-top: 30px;
}
.event-list-search-box .searchandfilter ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 2px 0;
}
.event-list-search-box .searchandfilter ul li ul li label {
	cursor: pointer;
	transition: .3s linear;
	opacity: 1;
}
.event-list-search-box .searchandfilter ul li ul li label:hover {	
	opacity: .4;
}
.l-container.-news-list .p-news__h3, .event-list-search-box .searchandfilter ul h4 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
.l-container.-news-list .p-news__h3.-cat {
  display: flex;
  align-items: center;
}
.l-container.-news-list .p-news__h3.-cat .txt {
  display: block;
  margin-right: 18px;
}
.event-list-search-box .searchandfilter ul h4 {
	position: relative;
	display: inline-block;
	padding: 0;
	padding-right: 80px;
	margin-bottom: 10px;
}
.l-container.-news-list .p-news__h3.-cat .line, .event-list-search-box .searchandfilter ul h4::after {
content: '';
position: absolute;
		right: 0;
		top: 50%;
  display: block;
  width: 60px;
  height: 2px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  background: #000;
}
.event-list-search-box .searchandfilter label {
	display: block;
}
.l-container.-news-list .p-news__cat-list {
  list-style: none;
  padding-left: 0;
}
.l-container.-news-list .p-news__cat-item {
  margin-bottom: 10px;
}
.l-container.-news-list .p-news__cat-link {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 6px 10px;
  line-height: 1.05;
}
.l-container.-news-list .p-news__post {
  border-bottom: 2px solid #000;
  margin-bottom: 40px;
}
.l-container.-news-list .p-news__post-link {
  position: relative;
  text-decoration: none;
  color: #000;
  width: 1280px;
  display: flex;
  align-items: flex-start;
  padding-bottom: 40px;
}
.l-container.-news-list .p-news__post-link .st_post {
  transition: all 0.5s ease;
}
.l-container.-news-list .p-news__post-link.-hover .st_post {
  fill: #000;
}
.l-container.-news-list .p-news__post-thumb {
  display: block;
  width: 180px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news__post-right {
	width: calc(100% - 180px);
  padding-left: 43px;
}

.l-container.-news-list .p-news__post-header {
  margin-bottom: 25px;
}
.l-container.-news-list .p-news__post-date {
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-block;
  font-size: 15px;
  line-height: 1.05;
}
.l-container.-news-list .p-news__post-cat {
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-block;
  font-size: 15px;
  line-height: 1.05;
  background: #000;
  color: #fff;
  padding: 5px 8px;
  margin-left: 16px;
}
.l-container.-news-list .p-news__post-title {
  display: inline-block;
  margin-right: 50px;
}
.l-container.-news-list .p-news__post-ico {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 60px;
  right: 26px;
}
.l-container.-news-list .p-news__right-bottom, .pagination-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.pagination-wrap {
	margin-top: 48px;
}
.pagination-wrap a {
	cursor: pointer;
}
.l-container.-news-list .p-news__right-bottom::after {
  content: "";
  clear: both;
  display: block;
}
.l-container.-news-list .page-nav, .l-container.-news-list ul.page-numbers, .pagination, ul.pagenav-pn {
	position: relative;
  display: flex;
  list-style: none;
  font-size: 22px;
  padding-left: 0;
  margin: 0;
  width: 100%;
}
ul.pagenav-pn {
	justify-content: flex-end;
}
.pagination {
	padding-top: 12px;
	align-items: flex-start;
}
.l-container.-news-list ul.page-numbers li, ul.pagenav-pn li {
	list-style: none;
}
.l-container.-news-list ul.page-numbers li:first-child {
	position: absolute;
	right: 191px;
}
ul.pagenav-pn li:first-child {
	border-right: solid 3px #000;
	padding-right: 1px;
	margin-right: 1px;
}
.l-container.-news-list .firstnation ul.page-numbers li:first-child, ul.pagenav-pn li.firstpage {
	position: relative;
	right: auto;
	border-right: none;
}
.l-container.-news-list .lastnation ul.page-numbers li:first-child, ul.pagenav-pn li.lastpage {
	right: 0;
	border-right: none;
}
.l-container.-news-list ul.page-numbers li:first-child a {
	margin-right: 1px;
}
.l-container.-news-list ul.page-numbers li:last-child {
	position: absolute;
	right: 0;
}
.l-container.-news-list .lastnation ul.page-numbers li:last-child, ul.pagenav-pn li.lastpage {
	position: relative;
	right: auto;
}
.l-container.-news-list .page-nav__item, .l-container.-news-list a.page-numbers, .l-container.-news-list span.page-numbers, .pagination a.inactive, .pagination span.current {
  margin-right: 12px;
  line-height: 1;
}
.l-container.-news-list .page-nav a, .l-container.-news-list .page-numbers a, .l-container.-news-list .page-numbers span.page-numbers, .pagination a.inactive, .pagination span.current {
  display: block;
  text-decoration: none;
  color: #000;
}
.l-container.-news-list .page-numbers a.prev, .l-container.-news-list .page-numbers a.next, ul.pagenav-pn a {
	display: flex;
}
.l-container.-news-list .page-nav a.-hover, .l-container.-news-list .page-numbers a:hover, .pagination a.inactive:hover {
  opacity: 0.5;
}
.l-container.-news-list .page-numbers a.next:hover, .l-container.-news-list .page-numbers a.prev:hover  {
	opacity: 1;
}
.pagination span.current {
	padding-bottom: 5px;
	border-bottom: 2px solid #000;
}
.l-container.-news-list .page-nav-btn {
  width: 60%;
  position: relative;
}
.l-container.-news-list .page-nav-btn .line {
  width: 3px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  right: 191px;
}
.l-container.-news-list .btn-h-readall, .l-container.-news-list .next.page-numbers, .l-container.-news-list .prev.page-numbers, ul.pagenav-pn li {
	position: relative;
  	width: 190px;
  	height: 50px;
	margin-right: 0;
}
.l-container.-news-list .btn-h-readall.-mr0, .l-container.-news-list .prev.page-numbers {
  margin-right: 0;
}
.l-container.-news-list .btn-h-readall__right {
  border: 0;
}

@media screen and (max-width: 1710px) {
  .l-container.-news-list .p-news__post-link {
    width: 72vw;
  }
}
@media screen and (max-width: 1530px) {
  .l-container.-news-list .p-news__post-link {
    width: 65vw;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .l-container.-news-list .p-news {
    padding-left: 8.35vw;
    padding-right: 8.35vw;
    font-size: 1.33vw;
    margin-top: 25vw;
    margin-bottom: 36.7vw;
  }
  .l-container.-news-list .p-news__h2 {
    font-size: 6.65vw;
    margin-bottom: 7.5vw;
  }
  .l-container.-news-list .p-news__h2 .txt.-small {
    font-size: 1.67vw;
    margin-top: 2.5vw;
  }
  .l-container.-news-list .p-news__h3, .event-list-search-box .searchandfilter ul h4 {
    font-size: 1.83vw;
  }
  .l-container.-news-list .p-news__h3.-cat .txt {
    margin-right: 1.5vw;
  }
	.event-list-search-box .searchandfilter ul h4 {
		padding-right: 7vw;
	}
  .l-container.-news-list .p-news__h3.-cat .line{
    	width: 5vw;
  }
	.event-list-search-box .searchandfilter ul h4::after {
		width: 5vw;
		height: 2px;
		background: #000;
	}
  .l-container.-news-list .p-news__cat-item {
    margin-bottom: 0.8vw;
  }
  .l-container.-news-list .p-news__post-link {
    width: 62vw;
  }
  .l-container.-news-list .p-news__thumb {
    width: 15vw;
  }
  .l-container.-news-list .p-news__post-right {
    margin-left: 3.6vw;
    width: 39vw;
	  padding-left: 0;
  }
  .l-container.-news-list .p-news__post-header {
    margin-bottom: 2.1vw;
  }
  .l-container.-news-list .p-news__post-date,
.l-container.-news-list .p-news__post-cat {
    font-size: 1.25vw;
  }
  .l-container.-news-list .p-news__post-title {
    padding-right: 5.1vw;
  }
  .l-container.-news-list .p-news__post-ico {
    right: 2.15vw;
  }
  .btn-h-readall {
    width: 26vw;
  }
  .l-container.-news-list .p-news-leaf {
    width: 31vw;
    top: -10vw;
  }	
	.l-container.-news-list .p-news-leaf.-eventlist-leaf {
		top: -20vw;
	}
  .l-container.-news-list .page-nav__item, .l-container.-news-list ul.page-numbers li {
    margin-right: 1vw;
  }
  .l-container.-news-list .page-nav a, .l-container.-news-list ul.page-numbers li a, .l-container.-news-list ul.page-numbers li span.page-numbers {
    font-size: 1.85vw;
	  margin-right: 0;
  }
  .l-container.-news-list .btn-h-readall, .l-container.-news-list .next.page-numbers, .l-container.-news-list .prev.page-numbers, ul.pagenav-pn li {
    width: 15.8vw;
    height: 4vw;
	  font-size: 2.35vw;
  }
  .l-container.-news-list .page-nav-btn .line {
    right: 15.9vw;
  }

	.l-container.-news-list ul.page-numbers li:first-child {
		right: 15.9vw;
	}
}
@media screen and (max-width: 1089px) {
  .l-container.-news-list .page-nav-btn .line {
    right: 15.9vw;
  }
}
.l-container.-news .p-news {
  padding: 0 100px;
  margin-top: 300px;
  margin-bottom: 440px;
  position: relative;
}
.l-container.-news .p-news-leaf {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.l-container.-news .p-news__h2 {
  font-size: 80px;
  line-height: 0.5;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 200px;
}
.l-container.-news .p-news__h2 .txt {
  display: inline-block;
}
.l-container.-news .p-news__h2 .txt.-small {
  font-size: 20px;
  margin-top: 30px;
}
.l-container.-news .p-news__top-img {
  display: block;
  margin: 0 auto;
}
.l-container.-news .p-news__h3 {
  font-size: 40px;
  line-height: 88px;
  margin-bottom: 92px;
}
.l-container.-news .p-news__p {
  line-height: 35px;
}
.l-container.-news .p-news__contents {
  max-width: 1024px;
  margin: 120px auto 60px;
  padding-bottom: 120px;
  border-bottom: 2px solid #000;
}
.l-container.-news .p-news__contents-header {
  margin-bottom: 25px;
}
.l-container.-news .p-news__contents-date {
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-block;
  font-size: 15px;
  line-height: 1.05;
}
.l-container.-news .p-news__contents-cat {
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-block;
  font-size: 15px;
  line-height: 1.05;
  background: #000;
  color: #fff;
  padding: 8px;
  margin-left: 16px;
}
.l-container.-news .p-news__bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1024px;
  margin: 60px auto 0;
}
.l-container.-news .osusume {
  margin-top: 80px;
}
.l-container.-news .osusume__h4 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 30px;
}
.l-container.-news .osusume__thumb {
  margin-bottom: 70px;
}
.l-container.-news .osusume__thumb-img {
  display: block;
  margin: 0 auto;
}
.l-container.-news .introduction {
  margin-top: 70px;
}
.l-container.-news .introduction__h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 30px;
}
.l-container.-news .introduction__p {
  line-height: 1;
  margin-bottom: 18px;
}
.l-container.-news .introduction__p.-mb0 {
  margin-bottom: 0;
}
.l-container.-news .page-nav {
  display: flex;
  list-style: none;
  font-size: 22px;
  padding-left: 0;
  margin: 0;
  width: 40%;
}
.l-container.-news .page-nav__item {
  margin-right: 12px;
  line-height: 1;
}
.l-container.-news .page-nav a {
  display: block;
  text-decoration: none;
  color: #000;
}
.l-container.-news .page-nav a.-hover {
  opacity: 0.5;
}
.l-container.-news .page-nav-btn {
  width: 60%;
  position: relative;
}
.l-container.-news .page-nav-btn::after {
  content: "";
  clear: both;
  display: block;
}
.l-container.-news .page-nav-btn .btn {
  float: right;
}
.l-container.-news .page-nav-btn .line {
  width: 3px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  right: 191px;
}
.l-container.-news .btn-h-readall {
  width: 190px;
  height: 50px;
  margin-right: 5px;
}
.l-container.-news .btn-h-readall.-mr0 {
  margin-right: 0;
}
.l-container.-news .btn-h-readall__right {
  border: 0;
}

@media screen and (max-width: 1710px) {
  .l-container.-news .p-news__post-link {
    width: 72vw;
  }
}
@media screen and (max-width: 1530px) {
  .l-container.-news .p-news__post-link {
    width: 65vw;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .l-container.-news .p-news {
    padding-left: 8.35vw;
    padding-right: 8.35vw;
    font-size: 1.33vw;
    margin-top: 25vw;
    margin-bottom: 36.7vw;
  }
	.l-container.-news-list.-event .reserve-cnt .p-news {
		margin-bottom: 25vw;
	}
  .l-container.-news .p-news__h2 {
    font-size: 6.65vw;
    margin-bottom: 16.7vw;
  }
  .l-container.-news .p-news__h2 .txt.-small {
    font-size: 1.67vw;
    margin-top: 2.5vw;
  }
  .l-container.-news .p-news__h3 {
    font-size: 3.33vw;
    line-height: 7.35vw;
    margin-bottom: 7.7vw;
  }
  .l-container.-news .p-news__h3.-cat .txt {
    margin-right: 1.5vw;
  }
  .l-container.-news .p-news__h3.-cat .line {
    width: 5vw;
  }
  .l-container.-news .p-news__cat-item {
    margin-bottom: 0.8vw;
  }
  .l-container.-news .p-news__thumb {
    width: 15vw;
  }
  .l-container.-news .p-news__contents {
    margin-top: 10vw;
    margin-bottom: 5vw;
  }
  .l-container.-news .p-news__contents-header {
    margin-bottom: 2.1vw;
  }
  .l-container.-news .p-news__p {
    line-height: 2.9vw;
  }
  .l-container.-news .osusume {
    margin-top: 6.65vw;
  }
  .l-container.-news .osusume__h4 {
    font-size: 2.5vw;
    margin-bottom: 2.5vw;
  }
  .l-container.-news .osusume__thumb {
    margin-bottom: 5.8vw;
  }
  .l-container.-news .introduction {
    margin-top: 5.8vw;
  }
  .l-container.-news .introduction__h4 {
    font-size: 1.995vw;
    margin-bottom: 2.5vw;
  }
  .l-container.-news .introduction__p {
    margin-bottom: 1.5vw;
  }
  .btn-h-readall {
    width: 26vw;
  }
  .l-container.-news .p-news-leaf {
    width: 31vw;
    top: -10vw;
  }
  .p-news__bottom-index .btn-h-readall {
    width: 17vw;
  }
  .l-container.-news .p-news__bottom-index .btn-h-readall__right {
    border-right: 3px solid #000;
    height: 3.3vw;
  }
  .l-container.-news .btn-h-readall {
    width: 15.8vw;
    height: 4vw;
  }
  .l-container.-news .page-nav-btn .line {
    right: 15.9vw;
  }
	
	/* top-event */	
	#EVENT {
		padding-left: 8.35vw;
    	padding-right: 8.35vw;
	}
	.event-list-box-date, 
	.event-box-cats {
		font-size: 1.25vw;		
	}
	.p-event-list-box .p-news__post-title {
		font-size: 2vw;
	}
	
}
@media screen and (max-width: 1089px) {
  .l-container.-news .page-nav-btn .line {
    right: 15.9vw;
  }
}
.-sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
  .btn {
    width: 94%;
    height: 17.38vw;
  }
  .btn.-sp {
    display: flex !important;
  }
  .btn.-sp-w68p {
    width: 68%;
  }
  .btn__txt {
    /* font-size: 5.3vw; */
	  font-size: 20px;
    padding: 5vw;
  }
  .btn__right {
    width: 14.2vw;
    height: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .l-site-title__img {
    width: 48vw;
  }
  .l-header.-active {
    width: 100%;
  }
  .l-header__content {
    width: 100%;
    padding: 75px 0 40px 40px;
    flex-wrap: wrap;
  }
  .l-header__logo {
    width: 50px;
  }
  .l-header__right {
    margin-left: 50px;
	  margin-bottom: 40px;
  }
  .l-header__item {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .l-header__other.-sp {
    width: 100%;
  }
  .l-header__logo_award {
    height: auto;
  }
  .l-header__gooddesign {
    width: 90%;
  }
  .l-header__logo_kukandesign2023_silver {
    width: 55%;
  }
  .l-header__logo_kukandesign2023_sustainable {
    width: 75%;
  }
  .l-header__txt_chibatoshibunkasyou2023 {
    font-size: 11px;
  }
  .l-header__logo_renovationoftheyear {
    width: 18%;
  }
  .l-header__logo_frameawards {
    width: 42.7%;
  }
  .p-menu-btn {
    width: 36px;
	  top: 29px;
  }
  .p-menu-btn__line {
    width: 36px;
  }
  .p-menu-btn__txt::before {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 100px 0 100px 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .l-footer__logo-link {
    margin-left: 0;
    margin-right: 12.5vw;
  }
  .l-footer__logo-link img {
    width: 13.5vw;
  }
  .l-footer__item {
    font-size: 18px;
    /*font-size: 4.8vw;*/
    margin-bottom: 20px;
    margin-bottom: 5.2vw;
  }
  .l-footer__other {
    margin-top: 80px;
    width: auto;
  }
  .l-footer__h2 {
    font-size: 24px;
    margin-bottom: 7vw;
  }
  .l-footer__p {
    /*font-size: 3.75vw;*/
	  font-size: 15px;
    letter-spacing: 0.001em;
  }
  .l-footer__p .-fz14, .l-footer__p .-fz18 {
    /*font-size: 3.75vw;*/
	  font-size: 15px;
  }
  .l-footer__p.-gray {
    /*font-size: 3.3vw;*/
	  font-size: 13px;
  }
  .l-footer__logo_award {
    height: auto;
  }
  .l-footer__gooddesign {
    width: 90%;
  }
  .l-footer__logo_kukandesign2023_silver {
    width: 55%;
  }
  .l-footer__logo_kukandesign2023_sustainable {
    width: 75%;
  }
  .l-footer__txt_chibatoshibunkasyou2023 {
	  font-size: 11px;
  }
  .l-footer__logo_renovationoftheyear {
    width: 18%;
  }
  .l-footer__logo_frameawards {
    width: 42.7%;
  }
  .l-footer__addr, .l-footer__company {
    padding-bottom: 14vw;
    margin-bottom: 12vw;
	  padding-right: 5.5vw;
  }
  .l-footer__h3 {
    margin-bottom: 7vw;
  }
  .l-footer__company-logo {
    width: 200px;
  }
  .l-footer__btn-area {
    margin-top: 7vw;
  }
  .l-footer__copyright {
    /*font-size: 3.75vw;*/
	  font-size: 15px;
  }
}
.l-container.-top .p-hero__img.-logo.-sp,
.l-container.-top .p-concept__right.-sp {
  display: none;
}

@media screen and (max-width: 767px) {
	
.p-news__post span.objectfit {
	width: 100%;
    margin-bottom: 10.5vw;
}
	.p-news__post-right {
		padding-left: 0;
		width: 100%;
	}
  .l-container.-top .p-hero {
    height: auto !important;
  }
  .l-container.-top .p-hero .-left,
  .l-container.-top .p-hero .-right {
    width: 340px;
    height: 250px;
    width: 90.7vw;
    height: 66.7vw;
    position: relative;
    display: block;
  }
  .l-container.-top .p-hero .-right {
    margin-left: auto;
  }
  .l-container.-top .p-hero .mask.-left,
.l-container.-top .p-hero .mask.-right {
    width: 340px;
    height: 250px;
    width: 90.7vw;
    height: 66.7vw;
    position: relative;
    display: block;
  }
  .l-container.-top .p-hero .mask.-right {
    margin-left: auto;
  }
  .l-container.-top .p-hero__img.-logo.-pc {
    display: none;
  }
  .l-container.-top .p-hero__img.-logo.-sp {
    display: block;
    width: 335px;
    margin: 40px auto;
    width: 89.5vw;
    margin: 10.6vw auto;
    position: static;
    transform: none;
  }
  .l-container.-top .p-concept {
    display: block;
    margin-top: 240px;
    margin-top: 64vw;
  }
  .l-container.-top .p-concept__left {
    width: 100%;
    padding-left: 20px;
    padding-left: 5.5vw;
  }
  .l-container.-top .p-concept__right {
    width: 100%;
  }
  .l-container.-top .p-concept__img {
    width: 100vw;
    height: 250px;
    height: 66.7vw;
    margin-left: 0;
  }
  .l-container.-top .p-concept__h2 {
    margin-top: 40px;
    margin-top: 10.5vw;
    font-size: 18px;
    /*font-size: 4.8vw;*/
  }
  .l-container.-top .p-concept__h2 .mask {
    font-size: 48px;
    /*font-size: 12.8vw;*/
  }
  .l-container.-top .p-concept__h2 .mask.-small {
    margin-bottom: 18px;
    margin-top: 4.8vw;
    font-size: 22px;
    /*font-size: 5.87vw;*/
  }
  .l-container.-top .p-concept__p {
    margin-top: 80px;
    margin-top: 21.4vw;
    margin-right: 12px;
    margin-right: 5.5vw;
    font-size: 14px;
    /*font-size: 3.74vw;*/
    line-height: 28px;
    /*line-height: 7.45vw;*/
  }
  .l-container.-top .p-concept__h3 {
    margin-bottom: 40px;
    margin-bottom: 10.5vw;
  }
  .l-container.-top .p-concept__h3 .mask.-small {
    /*font-size: 4.8vw;*/
	  font-size: 18px;
    margin-bottom: 4vw;
  }
  .l-container.-top .p-concept__h3 .mask {
    font-size: 38px;
    /*font-size: 10.15vw;*/
  }
  .l-container.-top .p-concept__logo_award {
    height: auto;
  }
  .l-container.-top .p-concept__gooddesign {
    width: 90%;
  }
  .l-container.-top .p-concept__logo_kukandesign2023_silver {
    width: 55%;
  }
  .l-container.-top .p-concept__logo_kukandesign2023_sustainable {
    width: 75%;
  }
  .l-container.-top .p-concept__txt_chibatoshibunkasyou2023 {
	  font-size: 12px;
  }
  .l-container.-top .p-concept__logo_renovationoftheyear {
    width: 18%;
  }
  .l-container.-top .p-concept__logo_frameawards {
    width: 42.7%;
  }
  .l-container.-top .p-imgarea {
    margin-top: 237px;
    margin-top: 61.3vw;
  }
  .l-container.-top .p-imgarea img {
    height: 417px;
    height: 107.8vw;
    display: block;
  }
  .l-container.-top .p-floor {
    display: block;
    padding: 0;
    margin-top: 0;
    margin-bottom: 180px;
    margin-bottom: 46vw;
  }
	.l-container.-top .p-floor__h2, .p-event__h2 {
		line-height: 0;
	}
	.p-event__h2 {
		margin-bottom: 50px;
	}
	.l-container.-top .p-floor__h2 .txt, .p-event__h2 .txt {
		font-size: 48px;
    	/*font-size: 12.8vw;*/
	}
  .l-container.-top .p-floor__left {
    width: 100%;
    padding: 40px 20px;
    padding: 10.5vw 5.5vw;
    margin: 0;
    box-sizing: border-box;
  }
  .l-container.-top .p-floor__right {
    width: 100%;
    box-sizing: border-box;
    padding: 120px 0 0 50px;
    padding: 31vw 0 0 13vw;
  }
  .l-container.-top .p-floor__h3 {
    margin-top: 0;
  }
  .l-container.-top .p-floor__p {
    font-size: 14px;
    /*font-size: 3.74vw;*/
    line-height: 28px;
    /*line-height: 7.45vw;*/
  }
  .l-container.-top .p-1f {
    display: block;
    padding: 0 0 0 20px;
    padding: 0 0 0 5.5vw;
    margin-top: 180px;
    margin-top: 46vw;
  }
  .l-container.-top .p-1f__left {
    width: auto;
  }
  .l-container.-top .p-1f.p-1f__reverse .p-1f__left {
    width: auto;
  }
  .l-container.-top .p-1f__h3 {
    font-size: 32px;
    /*font-size: 8.5vw;*/
    margin-top: 20px;
    margin-top: 5.5vw;
    margin-bottom: 60px;
    margin-bottom: 16vw;
  }
  .l-container.-top .p-1f__h3 .txt.-small {
    font-size: 15px;
  }
  .l-container.-top .p-1f__h3 .txt.-flex {
    flex-wrap: wrap;
  }
  .l-container.-top .p-1f__h3 .title-ico {
    margin-top: 8px;
    width: 7.1vw;
  }
  .l-container.-top .p-1f__logo {
    width: 240px;
  }
  .l-container.-top .p-1f__p {
    font-size: 14px;
    /*font-size: 3.74vw;*/
    line-height: 28px;
    /*line-height: 7.45vw;*/
    margin-right: 12px;
    margin-right: 5.5vw;
  }
  .l-container.-top .p-1f__p.-bottom {
    margin-top: 30px;
    margin-top: 8vw;
    font-size: 14px;
    /*font-size: 5.85vw;*/
  }
  .l-container.-top .p-1f__p.-bottom .-fz16 {
    font-size: 14px;
  }
  .p-1f__left .txt.-fz14.-gray {
    font-size: 12px;
  }
  .l-container.-top .p-2f {
    display: block;
    padding: 0 0 0 20px;
    padding: 0 0 0 5.5vw;
    margin-top: 180px;
    margin-top: 46vw;
  }
  .l-container.-top .p-2f__left {
    width: auto;
  }
  .l-container.-top .p-2f__h3 {
    font-size: 32px;
    /*font-size: 8.5vw;*/
    margin-top: 20px;
    margin-top: 5.5vw;
    margin-bottom: 60px;
    margin-bottom: 16vw;
  }
  .l-container.-top .p-2f__h3 .txt.-small {
    font-size: 15px;
  }
  .l-container.-top .p-2f__h3 .txt.-flex {
    flex-wrap: wrap;
  }
  .l-container.-top .p-2f__h3 .title-ico {
    margin-top: 8px;
    width: 7.1vw;
  }
  .l-container.-top .p-2f__logo {
    width: 240px;
  }
  .l-container.-top .p-2f__p, .rcb__p, .acs__p {
    font-size: 14px;
    /*font-size: 3.74vw;*/
    line-height: 28px;
    /*line-height: 7.45vw;*/
    margin-right: 12px;
    margin-right: 5.5vw;
  }
  .l-container.-top .p-2f__p.-bottom {
    margin-top: 30px;
    margin-top: 8vw;
    font-size: 22px;
    /*font-size: 5.85vw;*/
  }
  .l-container.-top .p-3f {
    display: block;
    padding: 0 0 0 20px;
    padding: 0 0 0 5.5vw;
    margin-top: 180px;
    margin-top: 46vw;
  }
  .l-container.-top .p-3f__left {
    width: auto;
  }
  .l-container.-top .p-3f__h3 {
    font-size: 32px;
    /*font-size: 8.5vw;*/
    margin-top: 20px;
    margin-top: 5.5vw;
    margin-bottom: 60px;
    margin-bottom: 16vw;
  }
  .l-container.-top .p-3f__h3 .txt.-small {
    font-size: 15px;
  }
  .l-container.-top .p-3f__h3 .txt.-flex {
    flex-wrap: wrap;
  }
  .l-container.-top .p-3f__h3 .title-ico {
    margin-top: 8px;
    width: 7.1vw;
  }
  .l-container.-top .p-3f__logo {
    width: 240px;
  }
  .l-container.-top .p-3f__p {
    font-size: 14px;
    /*font-size: 3.74vw;*/
    line-height: 28px;
    /*line-height: 7.45vw;*/
    margin-right: 12px;
    margin-right: 5.5vw;
  }
  .l-container.-top .p-3f__p.-bottom {
    margin-top: 30px;
    margin-top: 8vw;
    font-size: 22px;
    /*font-size: 5.85vw;*/
  }
  .l-container.-top .p-4f {
    display: block;
    padding: 0 0 0 20px;
    padding: 0 0 0 5.5vw;
    margin-top: 180px;
    margin-top: 46vw;
  }
  .l-container.-top .p-4f__left {
    width: auto;
  }
  .l-container.-top .p-4f__h3 {
    font-size: 32px;
    /*font-size: 8.5vw;*/
    margin-top: 20px;
    margin-top: 5.5vw;
    margin-bottom: 60px;
    margin-bottom: 16vw;
  }
  .l-container.-top .p-4f__h3 .txt.-small {
    font-size: 15px;
  }
  .l-container.-top .p-4f__h3 .txt.-flex {
    flex-wrap: wrap;
  }
  .l-container.-top .p-4f__h3 .title-ico {
    margin-top: 8px;
    width: 7.1vw;
  }
  .l-container.-top .p-4f__logo {
    width: 240px;
  }
  .l-container.-top .p-4f__p {
    font-size: 14px;
    /*font-size: 3.74vw;*/
    line-height: 28px;
    /*line-height: 7.45vw;*/
    margin-right: 12px;
    margin-right: 2.3vw;
  }
  .l-container.-top .p-4f__p.-bottom {
    margin-top: 30px;
    margin-top: 8vw;
    font-size: 22px;
    /*font-size: 5.85vw;*/
  }
  .l-container.-top .p-5f {
    display: block;
    padding: 0 0 0 20px;
    padding: 0 0 0 5.5vw;
    margin-top: 180px;
    margin-top: 46vw;
  }
  .l-container.-top .p-5f__left {
    width: auto;
  }
  .l-container.-top .p-5f__h3 {
    font-size: 32px;
    /*font-size: 8.5vw;*/
    margin-top: 20px;
    margin-top: 5.5vw;
    margin-bottom: 60px;
    margin-bottom: 16vw;
  }
  .l-container.-top .p-5f__h3 .txt.-small {
    font-size: 15px;
  }
  .l-container.-top .p-5f__h3 .txt.-flex {
    flex-wrap: wrap;
  }
  .l-container.-top .p-5f__h3 .title-ico {
    margin-top: 8px;
    width: 7.1vw;
  }
  .l-container.-top .p-5f__logo {
    width: 240px;
  }
  .l-container.-top .p-5f__p {
    font-size: 14px;
    /*font-size: 3.74vw;*/
    line-height: 28px;
    /*line-height: 7.45vw;*/
    margin-right: 12px;
    margin-right: 2.3vw;
  }
  .l-container.-top .p-5f__p.-bottom {
    margin-top: 30px;
    margin-top: 8vw;
    font-size: 22px;
    /*font-size: 5.85vw;*/
  }
  .l-container.-top .p-1f-shop {
    padding: 80px 0;
    padding: 21.4vw 0;
  }
  .l-container.-top .p-1f-shop__h3 {
    padding-left: 20px;
    padding-left: 5.5vw;
    font-size: 16px;
    /*font-size: 4.25vw;*/
  }
  .l-container.-top .p-1f-shop__current {
    font-size: 50px;
    /*font-size: 13.5vw;*/
    margin-left: 2vw;
  }
  .l-container.-top .p-1f-shop__count {
    font-size: 30px;
    /*font-size: 8vw;*/
  }
  .l-container.-top .p-1f-shop .slide-item {
    padding: 0 10px 0 20px;
    padding: 0 2.75vw 0 5.5vw;
  }
  .l-container.-top .p-1f-shop .slider img {
    width: 300px;
    width: 80vw;
  }
  .l-container.-top .p-1f-shop .slide-item__title {
    margin-top: 30px;
    margin-top: 8vw;
  }
  .l-container.-top .p-1f-shop .slide-item__name {
    font-size: 14px;
    /*font-size: 3.74vw;*/
  }
  .l-container.-top .p-1f-shop .slide-item__cat {
    margin-top: 10px;
    margin-top: 2.75vw;
    font-size: 14px;
    /*font-size: 3.74vw;*/
  }
  .l-container.-top .p-1f-shop .slide-item__title-right {
    width: 50px;
    width: 13vw;
  }
  .l-container.-top .p-news {
    padding: 100px 0 100px 20px;
    padding: 27.5vw 0 27.5vw 5.5vw;
  }
  .l-container.-top .p-news .-flex {
    display: block;
  }
  .l-container.-top .p-news__left {
    margin-bottom: 80px;
    margin-bottom: 21.4vw;
  }
  .l-container.-top .p-news__h2 {
    margin-top: 40px;
    margin-top: 10.5vw;
    font-size: 18px;
    /*font-size: 4.8vw;*/
  }
  .l-container.-top .p-news__h2 .mask {
    font-size: 48px;
    /*font-size: 12.8vw;*/
  }
  .l-container.-top .p-news__h2 .mask.-small {
    margin-bottom: 18px;
    margin-bottom: 4.8vw;
    margin-top: 15px;
  }
  .l-container.-top .p-news__cat-item {
    display: inline-block;
  }
  .l-container.-top .p-news__cat-link {
    font-size: 14px;
    /*font-size: 3.74vw;*/
  }
  .l-container.-top .p-news__post-link {
    display: block;
    width: 100%;
  }
  .l-container.-top .p-news__post-right {
    margin-left: 0;
    font-size: 14px;
    /*font-size: 3.74vw;*/
	  padding-left: 0;
  }
  .l-container.-top .p-news__post-title {
    margin-right: 20px;
    margin-right: 5.5vw;
  }
  .l-container.-top .p-news__post-header {
    margin-bottom: 15px;
  }
  .l-container.-top .p-news__thumb {
    width: 89vw;
    margin-bottom: 30px;
    margin-bottom: 6vw;
  }
  .l-container.-top .p-news__post-ico {
    display: none;
  }
	.p-access__details {
		padding-right: 5.5vw;
	}
  .l-container.-top .p-access {
    padding: 80px 0;
    padding: 21.4vw 0;
    display: block;
  }
  .l-container.-top .p-access__h2 {
    margin-top: 40px;
    margin-top: 10.5vw;
    font-size: 18px;
    /*font-size: 4.8vw;*/
  }
  .l-container.-top .p-access__h2 .mask {
    font-size: 48px;
    /*font-size: 12.8vw;*/
  }
  .l-container.-top .p-access__h2 .mask.-small {
    margin-bottom: 18px;
    margin-bottom: 4.8vw;
    margin-top: 15px;
  }
  .l-container.-top .p-access__left {
    width: auto;
    padding-left: 20px;
    padding-left: 5.5vw;
  }
  .l-container.-top .p-access__right {
    width: auto;
    height: 104vw;
  }
  .l-container.-top .p-access__p {
    font-size: 14px;
    /*font-size: 3.74vw;*/
    line-height: 28px;
    /*line-height: 7.45vw;*/
    margin-right: 20px;
    margin-right: 5.5vw;
  }
  .l-container.-top .p-access__details-item, .cnt__left .p-access__details-link {
    font-size: 14px;
    /*font-size: 3.74vw;*/
  }
  .l-container.-top .p-access__img.-a {
    width: 70.15vw;
    left: 0;
  }
  .l-container.-top .p-access__img.-b {
    width: 41.5vw;
  }
  .l-container.-top .p-access__img.-c {
    top: auto;
    bottom: 0;
    right: 9.5vw;
    width: 42.8vw;
  }
  .l-container.-top .p-concept__img.-front {
    width: 56vw;
    height: auto;
	  bottom: -160px;
  }
  .l-container.-top .p-floor__img.-front {
    width: 35vw;
	  bottom: 420vw;
	  z-index: 2;
  }
	img.lamps {
		margin-top: -10px;
	}
  .l-container.-top .p-1f-leaf {
    width: 56vw;
    top: -690vw;
	  z-index: 2;
  }
  .l-container.-top .p-news-leaf {
    top: -22vw;
    width: 45vw;
  }
  .l-container.-top .p-access__img.-d {
    top: 60vw;
    width: 56vw;
  }
}
@media screen and (max-width: 767px) {
  .l-container.-concept .p-hero {
    height: 169.5vw;
    margin-bottom: 64vw;
  }
  .l-container.-concept .p-hero__img-wrap.-a {
    top: 9vw;
    left: 5.5vw;
    width: 55vw;
    height: 41.5vw;
    margin: 0;
  }
  .l-container.-concept .p-hero__img-wrap.-b {
    top: 44vw;
    left: 0;
    width: 24.85vw;
    height: 39vw;
  }
  .l-container.-concept .p-hero__img-wrap.-c {
    top: 62.5vw;
    right: 5.5vw;
    width: 26.4vw;
    height: 20vw;
  }
  .l-container.-concept .p-hero__img-wrap.-d {
    top: 88.7vw;
    right: 0;
    width: 29.3vw;
    height: 31vw;
  }
  .l-container.-concept .p-hero__img-wrap.-e {
    top: 96.3vw;
    left: 0;
    width: 59.3vw;
    height: 41vw;
  }
  .l-container.-concept .p-hero__img-wrap.-f {
    bottom: 0;
    right: 9.4vw;
    width: 45.8vw;
    height: 52.6vw;
  }
  .l-container.-concept .p-hero__title {
    top: 68vw;
  }
  .l-container.-concept .p-hero__title .txt {
    /*font-size: 12.6vw;*/
	  font-size: 46px;
  }
  .l-container.-concept .p-hero__title .txt.-small {
    /*font-size: 4.5vw;*/
	  font-size: 17px;
  }
  .l-container.-concept .p-message {
    width: auto;
    padding: 0 5.4vw;
    margin-bottom: 64vw;
  }
  .l-container.-concept .p-message__p {
    /*font-size: 3.74vw;*/
	  font-size: 14px;
    /*line-height: 7.45vw;*/
	  line-height: 28px;
    margin-bottom: 6.6vw;
  }
  .l-container.-concept .p-message__logo_award {
    height: auto;
  }
  .l-container.-concept .p-message__gooddesign {
    width: 90%;
  }
  .l-container.-concept .p-message__logo_kukandesign2023_silver {
    width: 55%;
  }
  .l-container.-concept .p-message__logo_kukandesign2023_sustainable {
    width: 75%;
  }
  .l-container.-concept .p-message__txt_chibatoshibunkasyou2023 {
	  font-size: 11px;
  }
  .l-container.-concept .p-message__logo_renovationoftheyear {
    width: 18%;
  }
  .l-container.-concept .p-message__logo_frameawards {
    width: 42.7%;
  }
  .l-container.-concept .p-message__h2 {
    margin-top: 13.3vw;
    margin-bottom: 16vw;
  }
  .l-container.-concept .p-message__h2 .mask.-small {
    /*font-size: 4.8vw;*/
	  font-size: 18px;
    margin-bottom: 2.5vw;
  }
  .l-container.-concept .p-message__h2 .mask {
   /* font-size: 10.15vw; */
	  font-size: 38px;
  }
  .l-container.-concept .p-story {
    display: block;
    margin-bottom: 64vw;
  }
  .l-container.-concept .p-story__left {
    width: auto;
    padding: 0 5.4vw;
  }
  .l-container.-concept .p-story__h2 {
    margin-top: 40px;
    margin-top: 10.5vw;
    font-size: 18px;
    /* font-size: 4.8vw; */
  }
  .l-container.-concept .p-story__h2 .mask {
    font-size: 48px;
    /* font-size: 12.8vw; */
  }
  .l-container.-concept .p-story__h2 .mask.-small {
    margin-bottom: 18px;
    margin-bottom: 4.8vw;
    margin-top: 30px;
    margin-top: 8vw;
  }
  .l-container.-concept .p-story__p {
   /* font-size: 3.74vw; */
	  font-size: 14px;
   /* line-height: 7.45vw;*/
	  line-height: 28px;
    margin-bottom: 6.6vw;
  }
  .l-container.-concept .p-story__right {
    width: auto;
    height: 104vw;
  }
  .l-container.-concept .p-story__img-wrap.-a {
    width: 70.15vw;
    left: 0;
    top: 16vw;
  }
  .l-container.-concept .p-story__img-wrap.-b {
    width: 41.5vw;
    top: 0;
    right: 0;
    left: auto;
  }
  .l-container.-concept .p-story__img-wrap.-c {
    top: auto;
    bottom: 0;
    right: 9.5vw;
    width: 42.8vw;
  }
  .l-container.-concept .p-story-leaf {
    width: 45vw;
  }
  .l-container.-concept .p-footer-leaf {
    width: 45vw;
    position: absolute;
    top: -40vw;
    left: -8vw;
  }
}
@media screen and (max-width: 767px) {
  .l-container.-news-list .p-news-leaf {
    top: 40vw;
    width: 45vw;
	 -webkit-transform: translateY(-50px);
	  transform: translateY(-50px);
  }
	.l-container.-news-list .p-news-leaf.-eventlist-leaf {
		top: -10vw;
	}
  .l-container.-news-list .p-news {
    padding: 100px 0 100px 20px;
    padding: 27.5vw 0 21.4vw 5.5vw;
    margin: 0;
  }
  .l-container.-news-list .p-news .-flex {
    display: block;
  }
  .l-container.-news-list .p-news__left {
    margin-bottom: 80px;
    margin-bottom: 21.4vw;
  }
  .l-container.-news-list .p-news__h2 {
    margin-top: 40px;
    margin-top: 10.5vw;
   font-size: 18px;
    /*  font-size: 4.8vw; */
    margin-bottom: 80px;
    margin-bottom: 20vw;
  }
  .l-container.-news-list .p-news__h2 .mask {
    font-size: 48px;
    /* font-size: 12.8vw; */
  }
  .l-container.-news-list .p-news__h2 .mask.-small {
    margin-bottom: 18px;
    margin-bottom: 4.8vw;
    margin-top: 15px;
    /*margin-top: 5.4vw;*/
  }
  .l-container.-news-list .p-news__cat-item {
    display: inline-block;
    margin-bottom: 15px;
    margin-bottom: 4vw;
  }
  .l-container.-news-list .p-news__cat-link {
    font-size: 14px;
    /* font-size: 3.74vw; */
  }
  .l-container.-news-list .p-news__post-link {
    display: block;
    width: 100%;
    padding-bottom: 60px;
    padding-bottom: 16vw;
  }
  .l-container.-news-list .p-news__post-right {
    margin-left: 0;
    font-size: 14px;
    /* font-size: 3.74vw; */
  }
  .l-container.-news-list .p-news__post-title {
    margin-right: 20px;
    margin-right: 5.5vw;
  }
  .l-container.-news-list .p-news__thumb {
    width: 89vw;
    margin-bottom: 25px;
    margin-bottom: 7vw;
  }
  .l-container.-news-list .p-news__post-header {
    margin-bottom: 15px;
    margin-bottom: 3.5vw;
  }
  .l-container.-news-list .p-news__post-date {
    /* font-size: 4vw; */
	  font-size: 15px;
  }
  .l-container.-news-list .p-news__post-cat {
    /* font-size: 4vw; */
	  font-size: 15px;
    padding: 1.5vw 2.13vw;
    margin-left: 4.2vw;
  }
  .l-container.-news-list .p-news__post-ico {
    display: none;
  }
  .l-container.-news-list .p-news__right-bottom, .pagination-wrap {
    align-items: center;
  }
  .l-container.-news-list .page-nav__item, .l-container.-news-list li a, .l-container.-news-list li span.page-numbers, .pagination, ul.pagenav-pn {
    /* font-size: 4vw; */
	  font-size: 15px;
  }
  .l-container.-news-list .btn-h-readall, .l-container.-news-list .next.page-numbers, .l-container.-news-list .prev.page-numbers, ul.pagenav-pn li {
    background: #616161;
    width: 13.88vw;
    height: 13.88vw;
    margin-right: 3.5vw;
  }
	ul.pagenav-pn li, .l-container.-news-list ul.pagenav-pn li .next.page-numbers, .l-container.-news-list ul.pagenav-pn li .prev.page-numbers {
		background: transparent;
	}
  .l-container.-news-list .btn-h-readall.-mr0 {
    margin-right: 0;
  }
  .l-container.-news-list .btn-h-readall .btn__ico, .l-container.-news-list .page-numbers .btn__ico, ul.pagenav-pn li .btn__ico {
    width: 4.5vw;
    height: 4.5vw;
  }
	.l-container.-news-list ul.page-numbers {
		height: 13.88vw;
		align-items: center;
	}
	.l-container.-news-list ul.page-numbers li:first-child {
		right: 18.7vw;
	}
	.l-container.-news-list ul.page-numbers li:first-child a {
		margin-right: 7px;
	}
	ul.pagenav-pn li:first-child {
		padding-right: 7px;
		margin-right: 7px;
	}
	ul.pagenav-pn li:last-child {
		margin-right: 0;
	}
  .l-container.-news-list .page-nav-btn .line {
    right: 15.1vw;
  }
  .l-container.-news-list .p-footer-leaf {
    width: 45vw;
    position: absolute;
    top: -40vw;
    left: -8vw;
  }
}
@media screen and (max-width: 767px) {
  .l-container.-news .p-news-leaf {
    top: 40vw;
    width: 45vw;
	 -webkit-transform: translateY(-50px);
	  transform: translateY(-50px);
  }
  .l-container.-news .p-news {
    padding: 100px 0 100px 20px;
    padding: 27.5vw 0 50vw;
    margin: 0;
  }
  .l-container.-news .p-news__h2 {
    margin-top: 40px;
    margin-top: 10.5vw;
    font-size: 18px;
    /* font-size: 4.8vw; */
    margin-bottom: 80px;
    margin-bottom: 20vw;
    padding-left: 5.5vw;
  }
  .l-container.-news .p-news__h2 .mask {
    font-size: 48px;
    /* font-size: 12.8vw; */
  }
  .l-container.-news .p-news__h2 .mask.-small {
    margin-bottom: 18px;
    margin-bottom: 4.8vw;
    margin-top: 15px;
   /* margin-top: 5.4vw; */
  }
  .l-container.-news .p-news__contents {
    margin-left: 5.5vw;
    margin-top: 10.7vw;
    margin-bottom: 0;
    padding-right: 5.5vw;
    padding-bottom: 21.5vw;
  }
  .l-container.-news .p-news__contents-header {
    margin-bottom: 6.8vw;
  }
  .l-container.-news .p-news__contents-date {
    /*font-size: 4vw;*/
	  font-size: 15px;
  }
  .l-container.-news .p-news__contents-cat {
    /*font-size: 4vw;*/
	  font-size: 15px;
    padding: 2.13vw;
    margin-left: 4.2vw;
  }
  .l-container.-news .p-news__h3 {
    font-size: 24px;
    line-height: 48px;
    /*font-size: 6.4vw;*/
   /* line-height: 12.75vw;*/
    margin-bottom: 18.7vw;
  }
  .l-container.-news .p-news__p {
    /*font-size: 3.74vw;*/
	  font-size: 14px;
   /* line-height: 7.4vw;*/
	  line-height: 28px;
  }
  .l-container.-news .osusume {
    margin-top: 10.6vw;
  }
  .l-container.-news .osusume__h4 {
    /*font-size: 5.9vw;*/
	  font-size: 23px;
    margin-bottom: 4vw;
  }
  .l-container.-news .osusume__thumb {
    margin-bottom: 10.7vw;
  }
  .l-container.-news .osusume__p {
    /*font-size: 3.74vw;*/
	  font-size: 14px;
    /*line-height: 7.4vw;*/
	  line-height: 28px;
  }
  .l-container.-news .introduction {
    margin-top: 10.7vw;
  }
  .l-container.-news .introduction__h4 {
    /*font-size: 4.8vw;*/
	  font-size: 18px;
    margin-bottom: 6vw;
  }
  .l-container.-news .introduction__p {
    /*font-size: 3.74vw;*/
	  font-size: 14px;
    line-height: 1;
    margin-bottom: 4.5vw;
  }
  .l-container.-news .p-news__bottom {
    margin-top: 10.7vw;
    padding-left: 5.5vw;
  }
  .l-container.-news .p-news__bottom {
    align-items: center;
  }
  .l-container.-news .btn-h-readall {
    background: #fff;
    width: 13.88vw;
    height: 13.88vw;
    margin-right: 3.5vw;
  }
  .l-container.-news .btn-h-readall.-mr0 {
    margin-right: 0;
  }
  .l-container.-news .btn-h-readall .btn__ico {
    width: 4.5vw;
    height: 4.5vw;
  }
  .l-container.-news .page-nav-btn .line {
    right: 15.1vw;
    height: 9.6vw;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-news__bottom-index .btn-h-readall {
    width: 20vw;
  }
  .l-container.-news .p-news__bottom-index .btn {
    width: 45vw;
    height: 13.88vw;
  }
  .l-container.-news .p-news__bottom-index .btn__right {
    border-left: 0;
    border-right: 3px solid #fff;
    height: 9.6vw;
  }
  .l-container.-news .p-footer-leaf {
    width: 45vw;
    position: absolute;
    top: -40vw;
    left: -8vw;
  }
	
    .pum-theme-default-theme .pum-content + .pum-close::before,
    .pum-theme-default-theme .pum-content + .pum-close::after {
        top: 20px;
        right: 5px;
    }
    .pum-theme-floating-bar .pum-container {
        width: 100%;
    }
    .floatbnr {
        padding-bottom: 34px;
    }
    .floatbnr__bar {
        height: 34px;
        font-size: 14px;
    }
    .floatbnr__bar::after {
        right: 12px;
        top: 12px;
        height: 10px;
        width: 10px;
    }
	.event-list-search-box .searchandfilter ul {
		font-size: 14px;
	}
	.event-list-search-box .searchandfilter ul h4 {
		width: 220px;
		padding-right: 0;
		font-size: 18px;
	}
	.event-list-search-box .searchandfilter ul h4::after {
		width: 75px;
	}
	
	
	/* top-event */
	#EVENT {
		padding-left: 5.5vw;
    	padding-right: 0;
		margin-top: 240px;
	}
	#EVENT .btn {
		margin-top: 10%;
		width: 68%;
	}
	.p-event__list {
		margin-right: 0;
		overflow: hidden;
	}
	.p-event-list-box {
		width: 300px;
		margin-right: 35px;
	}
	.p-event-list-box .p-news__post-title {
		font-size: 20px;
	}
	
	
	
}/*# sourceMappingURL=style.css.map */