@charset "utf-8";

/****************************
 font
****************************/
/* light */
@font-face {
  font-family: 'LINE Seed JP_OTF Thin';
  src: url('../fonts/LINESeedJP_OTF_Th.otf');
} 
/* nomal */
@font-face {
  font-family: 'LINE Seed JP_OTF Reguler';
  src: url('../fonts/LINESeedJP_OTF_Rg.otf');
} 
/* bold */
@font-face {
  font-family: 'LINE Seed JP_OTF Bold';
  src: url('../fonts/LINESeedJP_OTF_Bd.otf');
} 
/* heavy */
@font-face {
  font-family: 'LINE Seed JP_OTF ExtraBold';
  src: url('../fonts/LINESeedJP_OTF_Eb.otf');
}
.thin {
  font-family: 'LINE Seed JP_OTF Thin';
}
.reguler {
  font-family: 'LINE Seed JP_OTF Reguler';
}
.bold {   
  font-family: 'LINE Seed JP_OTF Bold';
}
.extrabold {
  font-family: 'LINE Seed JP_OTF ExtraBold';
}

/****************************
 color
****************************/
:root {
  --c-yellow: #FFFF00;
  --c-black: #282828;
  --c-green: #5cc0bd;
  --c-pink: #ea596b;
  --c-gray1: #eee;
  --c-gray2: #dfdfdf;
  --c-gray3: #f4f4f4;
  --c-red1: #e94237;
}


.pc{display:block;}
.sp{display:none;}
@media only screen and (max-width: 798px) {
.pc{display:none;}
.sp{display:block;}
}

a{
  text-decoration:none;
  color: var(--c-black);
}

img{
  width: 100%;
}

*{
  box-sizing: border-box;
}

@keyframes fluffy {
  0% {
      transform: translate(0,0px);
  }
  100% {
      transform: translate(0,-10px);
  }
}

@keyframes fluffy {
  0% {
      transform: translate(0,0px);
  }
  100% {
      transform: translate(0,-10px);
  }
}
.fluffy{
  animation: fluffy 2s ease-in-out infinite alternate;
}

/*** ------------------------------------------------------------------------------

フェードイン

-----------------------------------------------------------------------------  ***/
.show-cnt{
  transform: translateY(10px);
  transition: 0.5s ease-out;
  opacity: 0;
}
.show-cnt.run{
  transform:translateY(0);
  opacity: 1;
}




/*** ------------------------------------------------------------------------------

共通

-----------------------------------------------------------------------------  ***/
html, body{
  font-size: 62.5%;
  line-height:1.2;
  font-family:'LINE Seed JP_OTF Reguler';
  color: var(--c-black);
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  position: relative;
  background-color: #fff;
}
.under .mv{
  position: relative;
  padding: 190px 0 120px;
}
.under .mv:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 94%;
  height: 100%;
  border-radius: 0 0 200px 0;
  background: var(--c-yellow);
}
.under .mv .inner{
  max-width: 1020px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.under .mv .inner .ill{
  position: absolute;
  right: 0;
  bottom: 0;
}
.under .mv .inner .page-tit{
  font-size: clamp(2rem,4.5vw,5rem);
  line-height: 1.4;
}
.under .mv .inner .page-tit span{
  display: block;
  font-size: clamp(1.4rem,1.6vw,1.8rem);
}
.under .mv .inner .txt{
  font-size: clamp(1.3rem,1.5vw,1.6rem);
  line-height: 2.2;
  margin-left: 10%;
}
.under .pankuzu{
  max-width: 1020px;
  width: 90%;
  margin: 0 auto 100px;
  padding: 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.under .pankuzu li{
  font-size: clamp(1rem,1.2vw,1.4rem);
  line-height: 1;
  position: relative;
}
.under .pankuzu li a{
  margin-right: 5px;
  transition: .3s;
}
.under .pankuzu li:after{
  content: '\03e';
  margin-right: 5px;
}
.under .pankuzu li a:hover{
  text-decoration: underline;
}
.under .pankuzu li:last-child:after{
  display: none;
}
.under .pankuzu li span{
  text-decoration: underline;
}
.link-btn{
  display: block;
  background: var(--c-black);
  color: #fff;
  padding: 20px 25px;
  position: relative;
  line-height: 1.4;
  font-size: clamp(1.4rem,1.7vw,2rem);
  border: solid 2px var(--c-black);
  transition: .3s;
  border-radius: 100px;
  text-align: center;
}
.link-btn:after{
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 4px;
  background: url(../img/common/arw-white.svg) no-repeat center center;
  transition: .3s;
}
.link-btn:hover{
  background: #fff;
  color: var(--c-black);
}
.link-btn:hover:after{
  background-image: url(../img/common/arw-black.svg);
}
.link-btn.white{
  background: #fff;
  color: var(--c-black);
  border: solid 2px #fff;
}
.link-btn.white:after{
  background-image: url(../img/common/arw-black.svg);
}
.link-btn.white:hover{
  background: var(--c-black);
  color: #fff;
}
.link-btn.white:hover:after{
  background-image: url(../img/common/arw-white.svg);
}
@media only screen and (max-width: 980px) {
  .under .mv .inner .txt{
    margin-left: 7%;
  }
}
@media only screen and (max-width: 798px) {
  .link-btn{
    padding: 15px;
  }
  .under .mv{
    position: relative;
    padding: 90px 0 40px;
  }
  .under .mv:before{
    width: 94%;
    border-radius: 0 0 50px 0;
  }
  .under .mv .inner{
    display: block;
  }
  .under .mv .inner .page-tit span{
    margin-top: 5px;
  }
  .under .mv .inner .ill{
    bottom: initial;
    top: 0;
  }
  .under .mv .inner .txt{
    margin: 5% 0 0;
    width: 94%;
  }
  .under .pankuzu{
    margin: 0 auto 50px;
    padding: 10px 0;
  }
}

/*** ------------------------------------------------------------------------------

pagination

-----------------------------------------------------------------------------  ***/
.archive .pagination{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto 100px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.archive .pagination span,
.archive .pagination a{
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  border: solid 1px var(--c-black);
  transition: .3s;
  background-color: var(--c-gray1);
  text-align: center;
  color: var(--c-black);
  margin: 0 5px;
}
.archive .pagination span,
.archive .pagination a:hover{
  background-color: var(--c-black);
  color:#fff;
}
.archive .pagination .dots{
  border: none;
  background: none;
  color: var(--c-black);
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  margin: 0;
}
.archive .pagination .prev,
.archive .pagination .next{
  display: none;
}
@media only screen and (max-width: 798px) {
  .archive .pagination{
    margin: 0 auto 50px;
  }
  .archive .pagination span,
  .archive .pagination a{
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 2px;
  }
}

/*** ------------------------------------------------------------------------------

header

-----------------------------------------------------------------------------  ***/
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: url(../img/common/header-bg.png) repeat-x bottom center;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1000;
  height: 134px;
}
header h1{
  width: 142px;
  background: url(../img/common/h-logo-bg.png) repeat-x bottom center;
  position: absolute;
  top: -7px;
  padding: 30px 0;
  left: 50px;
}
header h1 img{
  display: block;
  width: 105px;
  margin-left: 30px;
}
header h1 a{
  transition: .3s;
}
header h1 a:hover{
  opacity: .7;
}
header #nav-toggle {
  display: none;
}
header #navi{
  width: calc(100% - 150px);
  margin-left: auto;
}
header #navi nav{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: 'LINE Seed JP_OTF Bold';
}
header #navi nav .menu,
header #navi nav .btn{
  display: flex;
  justify-content: flex-end;
}
header #navi nav .menu{
  padding-right: 20px;
}
header #navi nav .menu > li,
header #navi nav .menu li a{
  font-size: clamp(1.1rem,1.3vw,1.4rem);
  line-height: 1;
  padding: 0 12px;
  position: relative;
}
header #navi nav .menu li a{
  position: relative;
  z-index: 1;
}
header #navi nav .menu li a:before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--c-yellow);
  width: 60px;
  height: 60px;
  border-radius: 60px;
  transition: .3s;
  opacity: 0;
  z-index: -1;
  transform: translate(-50%,-50%);
}
header #navi nav .menu li a:hover:before{
  opacity: 1;
}
header #navi nav .menu li .sub{
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  background-color: #eee;
  border: solid 1px var(--c-black);
  border-bottom: none;
  z-index: 1;
}
header #navi nav .menu li:hover .sub{
  opacity: 1;
  visibility: visible;
}
header #navi nav .menu li .sub a{
  border-bottom: solid 1px var(--c-black);
  padding: 15px 5px;
  text-align: center;
  display: block;
  transition: .3s;
}
header #navi nav .menu li .sub a:hover{
  background-color: var(--c-black);
  color: #fff;
}
header #navi nav .menu li .sub a:before{
  display: none;
}
header #navi nav .btn a{
  font-size: clamp(1.2rem,1.3vw,1.5rem);
  line-height: 1;
  padding: 5px;
  width: 180px;
  height: 82px;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px;
  transition: .3s;
}
header #navi nav .btn a.req-btn{
  background-color: var(--c-black);
  border-color: var(--c-black);
}
header #navi nav .btn a.contact-btn{
  background-color: var(--c-green);
  border-color: var(--c-green);
}
@media only screen and (min-width: 799px) {
  header #navi nav .btn a.req-btn:hover{
    background-color: #fff;
    color: var(--c-black);
  }
  header #navi nav .btn a.contact-btn:hover{
    background-color: #fff;
    color: var(--c-green);
  }
}
@media only screen and (max-width: 1270px) {
  header h1{
    width: 120px;
    top: -13px;
    padding: 30px 0;
    left: 20px;
  }
  header h1 img{
    width: 95px;
    margin-left: 20px;
  }
  header #navi{
    width: calc(100% - 130px);
  }
  header #navi nav .menu{
    padding-right: 10px;
  }
  header #navi nav .menu > li,
  header #navi nav .menu li a{
    padding: 0 6px;
  }
  header #navi nav .btn a{
    width: 140px;
  }
}
@media only screen and (max-width: 930px) {
  header h1{
    width: 100px;
    top: -13px;
    padding: 30px 0;
    left: 10px;
  }
  header h1 img{
    width: 80px;
    margin-left: 20px;
  }
  header #navi{
    width: calc(100% - 105px);
  }
  header #navi nav .btn a{
    width: 110px;
    padding: 0;
  }
  header #navi nav .menu > li,
  header #navi nav .menu li a{
    padding: 0 4px;
  }
}
@media only screen and (max-width: 798px) {
  header{
    height: 100px;
  }
  header h1{
    width: 80px;
    padding: 17px 0;
    left: 5px;
  }
  header h1 img{
    width: 60px;
    margin-left: 20px;
  }
  header nav {
    right: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    text-align: center;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    overflow-y: auto;
    background-color: #fff;
    opacity: 0;
    z-index: 100;
    padding-top: 20px;
  }
  header #navi nav .menu{
    display: block;
    padding: 0;
  }
  header #nav-toggle {
    display: block;
    mix-blend-mode: difference;
    position: fixed;
    right: 10px;
    top: 12px;
    width: 30px;
    height: 22px;
    z-index: 10010;
  }
  header #nav-toggle button {
    display: block;
    background-color: transparent;
    border: none;
    position: relative;
    cursor: pointer;
    outline: none;
    padding: 0;
  }
  header #nav-toggle button span {
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  header #nav-toggle button span:nth-child(1) {
    top: 0;
  }
  header #nav-toggle button span:nth-child(2) {
    top: 10px;
  }
  header #nav-toggle button span:nth-child(3) {
    top: 20px;
  }
  header .open #nav-toggle span {
  }
  header .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  header .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .open nav {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 1;
  }
  header #navi{
    width: 100%;
  }
  header #navi nav{
    display: block;
  }
  header #navi nav .menu,
  header #navi nav .btn{
    display: block;
  }
  header #navi nav .menu{
    padding: 0;
  }
  header #navi nav .menu > li{
    padding: 0;
  }
  header #navi nav .menu > li.parent,
  header #navi nav .menu li a{
    padding: 12px 0;
    text-align: center;
    display: block;
    font-size: 1.4rem;
    border-bottom: solid 1px var(--c-black);
  }
  header #navi nav .menu > li.parent{
    padding: 0;
  }
  header #navi nav .menu > li.parent{
    border-bottom: none;
  }
  header #navi nav .menu li a{
    position: relative;
    z-index: 1;
  }
  header #navi nav .menu li a:before{
    display: none;
  }
  header #navi nav .menu li .sub{
    position: relative;
    top: initial;
    left: initial;
    transform: none;
    width: 100%;
    transition: .3s;
    opacity: 1;
    visibility: visible;
    border: none;
    margin-top: 0;
  }
  header #navi nav .menu li:hover .sub{
    opacity: 1;
    visibility: visible;
  }
  header #navi nav .menu li .sub a{
    font-size: 1.2rem;
  }
  header #navi nav .btn{
    width: 90%;
    margin: 5% auto 0;
  }
  header #navi nav .btn a{
    padding: 15px 5px;
    width: 100%;
    height: auto;
    text-align: center;
    color: #fff;
    display: block;
    margin-bottom: 5px;
  }
}

/*** ------------------------------------------------------------------------------

f-link

-----------------------------------------------------------------------------  ***/
.f-link{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 150px;
}
.f-link li{
  width: calc(100% / 3);
}
.f-link li a{
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.f-link li a .img img{
  transition: .3s;
}
.f-link li a:hover .img img{
  transform: scale(1.05);
}
.f-link li a .txt-box{
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
}
.f-link li a .txt-box .midashi{
  max-width: 300px;
  width: 90%;
  padding-bottom: 5px;
  border-bottom: solid 2px #fff;
  font-size: clamp(2rem,2.5vw,3rem);
  line-height: 1.2;
  margin: 0 auto 20px;
}
.f-link li a .txt-box .txt{
  font-size: clamp(1.4rem,1.6vw,1.7rem);
  line-height: 1.8;
}
.f-link li a .txt-box .txt strong{
  display: block;
  font-size: clamp(1.6rem,1.8vw,2rem);
}
.f-link li a .link-txt{
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 40px;
  color: #fff;
  transition: .3s;
  font-size: clamp(1.6rem,1.8vw,2rem);
  line-height: 1.2;
  width: 100%;
  border: solid 1px;
}
.f-link li a .link-txt:after{
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 4px;
  background: url(../img/common/arw-white.svg) no-repeat center center;
  transition: .3s;
}
.f-link li a .link-txt.black{
  background-color: var(--c-black);
  border-color: var(--c-black);
}
.f-link li a .link-txt.green{
  background-color: var(--c-green);
  border-color: var(--c-green);
}
.f-link li a .link-txt.pink{
  background-color: var(--c-pink);
  border-color: var(--c-pink);
}
@media only screen and (min-width: 799px) {
  .f-link li a:hover .link-txt.black{
    background-color: #fff;
    color: var(--c-black);
  }
  .f-link li a:hover .link-txt.green{
    background-color: #fff;
    color: var(--c-green);
  }
  .f-link li a:hover .link-txt.pink{
    background-color: #fff;
    color: var(--c-pink);
  }
  .f-link li a:hover .link-txt.black:after{
    background: url(../img/common/arw-black.svg) no-repeat center center;
  }
  .f-link li a:hover .link-txt.green:after{
    background: url(../img/common/arw-green.svg) no-repeat center center;
  }
  .f-link li a:hover .link-txt.pink:after{
    background: url(../img/common/arw-pink.svg) no-repeat center center;
  }
}
@media only screen and (max-width: 1240px) {
  .f-link li a .txt-box{
    top: 15%;
  }
  .f-link li a .link-txt{
    padding: 5%;
  }
}
@media only screen and (max-width: 798px) {
  .f-link{
    width: 100%;
    display: block;
    margin: 0 0 50px;
  }
  .f-link li{
    width: 100%;
  }
  .f-link li a{
    height: 200px;
  }
  .f-link li a .img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 200%;
  }
  .f-link li a .txt-box{
    top: 50%;
    transform: translateY(-70%);
  }
  .f-link li a .link-txt{
    padding: 10px;
  }
}
/*** ------------------------------------------------------------------------------

f-sale

-----------------------------------------------------------------------------  ***/
.f-sale{
  background: url(../img/common/f-sale-bg.jpg) no-repeat center bottom / cover;
  position: relative;
  width: 100%;
  height: 600px;
}
.f-sale .inner{
  max-width: 1000px;
  width: 90%;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.f-sale .inner .txt-box{
  width: 50%;
  position: relative;
  color: #fff;
  padding: 80px 60px 80px 0;
}
.f-sale .inner .txt-box:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200%;
  height: 100%;
  background-color: var(--c-black);
  z-index: -1;
  box-shadow: 4px 4px 4px rgb(0,0,0, .25);
}
.f-sale .inner .txt-box .midashi{
  font-size: clamp(2rem,2.5vw,3rem);
  line-height: 1.4;
  margin: 0 0 30px;
}
.f-sale .inner .txt-box .txt{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 2;
  margin: 0 0 30px;
}
.f-sale .inner .txt-box .link-btn{
  max-width: 350px;
}
@media only screen and (max-width: 798px) {
  .f-sale{
    height: 400px;
  }
  .f-sale .inner{
    top: -20px;
  }
  .f-sale .inner .txt-box{
    width: 94%;
    padding: 20px 25px 20px 10px;
  }
  .f-sale .inner .txt-box:before{
    box-shadow: 2px 2px 4px rgb(0,0,0, .25);
  }
  .f-sale .inner .txt-box .midashi{
    margin: 0 0 15px;
  }
  .f-sale .inner .txt-box .txt{
    margin: 0 0 20px;
  }
}

/*** ------------------------------------------------------------------------------

footer

-----------------------------------------------------------------------------  ***/
footer{
  background-color: var(--c-black);
  color: #fff;
}
footer .inner{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 90px 0 120px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-flow: row-reverse;
  align-items: flex-start;
}
footer .inner .menu{
  width: 58%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 30px;
}
footer .inner .menu ul{
  margin-left: 40px;
}
footer .inner .menu li.parent,
footer .inner .menu li a{
  color: #fff;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.2;
  margin: 0 0 40px;
  display: block;
  transition: .3s;
}
footer .inner .menu li a:hover{
  color: var(--c-yellow);
}
footer .inner .menu li.parent .sub{
  padding: 15px 0 0 20px;
  margin-left: 0;
}
footer .inner .menu li.parent .sub a{
  position: relative;
  padding-left: 15px;
  margin: 0 0 10px;
}
footer .inner .menu li.parent .sub a:before{
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #fff;
}
footer .inner .info{
  width: 42%;
}
footer .inner .info h5{
  max-width: 300px;
  margin: 0 0 60px;
}
footer .inner .info .txt1{
  font-size: clamp(1.1rem,1.3vw,1.6rem);
  line-height: 2;
  margin-bottom: 50px;
}
footer .inner .info .txt1 strong{
  display: block;
  font-size: clamp(1.6rem,1.8vw,2rem);
  margin-bottom: 10px;
}
footer .inner .info .txt1 a{
  pointer-events: none;
  text-decoration: underline;
  color: #fff;
}
footer .inner .info .txt2{
  font-size: clamp(1rem,1.1vw,1.2rem);
  line-height: 3;
}
footer address{
  text-align: center;
  font-size: clamp(1rem,1.1vw,1.2rem);
  line-height: 1;
  padding: 20px 0;
}
@media only screen and (max-width: 1230px) {
  footer .inner .menu{
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 430px;
    justify-content: flex-start;
    width: 50%;
  }
  footer .inner .menu > ul{
    width: 49%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 798px) {
  footer .inner{
    width: 100%;
    padding: 0 0 20px;
    display: block;
  }
  footer .inner .menu{
    width: 100%;
    display: block;
    padding-top: 0;
    max-height: none;
  }
  footer .inner .menu > ul{
    width: 100%;
  }
  footer .inner .menu li.parent,
  footer .inner .menu li a{
    margin: 0;
    padding: 15px 10px;
    border-bottom: solid 1px #fff;
  }
  footer .inner .menu li.parent{
    padding: 15px 10px 0;
    border-bottom: none;
  }
  footer .inner .menu li.parent .sub{
    padding: 0;
    width: calc(100% + 20px);
    margin: 15px -10px 0;
    border-top: solid 1px #fff;
  }
  footer .inner .menu li.parent .sub a{
    position: relative;
    padding-left: 25px;
    margin: 0;
  }
  footer .inner .menu li.parent .sub a:before{
    top: 21px;
    left: 10px;
  }
  footer .inner .info{
    width: 100%;
    margin-top: 30px;
    text-align: center;
  }
  footer .inner .info h5{
    max-width: 280px;
    margin: 0 auto 30px;
  }
  footer .inner .info .txt1{
    margin-bottom: 30px;
  }
  footer .inner .info .txt1 strong{
    margin-bottom: 5px;
  }
  footer .inner .info .txt1 a{
    pointer-events: initial;
  }
  footer .inner .info .txt2{
    line-height: 2;
  }
}


/*** ------------------------------------------------------------------------------

land-list

-----------------------------------------------------------------------------  ***/
.land-list li{
  width: calc(100% / 3 - 20px);
  margin: 0 30px 60px 0;
  padding: 20px;
  border: solid 2px var(--c-black);
  background-color: #fff;
}
.land-list li:nth-child(3n){
  margin-right: 0;
}
.land-list li a{
  transition: .3s;
}
.land-list li a:hover{
  opacity: .7;
}
.land-list li .name{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.4;
  margin: 0 0 10px;
}
.land-list li .img{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 62%;
}
.land-list li .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}
.land-list li .price-box{
  margin: 20px 0 10px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
.land-list li .price-box .txt{
  font-size: clamp(1.4rem, 1.5vw, 1.7rem);
  line-height: 1.2;
  background-color: var(--c-black);
  color:#fff;
  padding: 5px 20px;
  border-radius: 0 10px 0 0;
}
.land-list li .price-box .price{
  margin-left: 15px;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.2;
}
.land-list li .price-box .price strong{
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  color: var(--c-red1);
}
.land-list li .data{
  padding-bottom: 5px;
}
.land-list li .data p{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  margin: 0 0 5px;
}
.land-list li .data p span{
  display: block;
  min-width: 70px;
  width: 70px;
  padding-right: 10px;
  position: relative;
}
.land-list li .data p span:before{
  content: '\ff1a';
  position: absolute;
  top: 0;
  right: 0;
}
.land-list li .data p strong{
  display: block;
  width: calc(100% - 70px);
}
.land-list li .plan .txt{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
}
.land-list li .plan .box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.land-list li .plan .box .img{
  width: 49%;
  padding-top: 28%;
}
.land-list li .link{
  display: block;
  margin-top: 20px;
  text-align: center;
  padding: 15px 5px;
  font-size: clamp(1.4rem, 1.5vw, 1.7rem);
  line-height: 1.6;
  background-color: var(--c-black);
  color:#fff;
  border-radius: 20px;
  border: solid 2px var(--c-black);
  transition: .3s;
}
.land-list li .link:hover{
  background-color:#fff;
  color: var(--c-black);
}
@media only screen and (max-width: 1024px) {
  .land-list li{
    width: calc(100% / 3 - 10px);
    margin: 0 15px 30px 0;
    padding: 20px 15px;
  }
  .land-list li .price-box .txt{
    padding: 5px 4%;
  }
  .land-list li .price-box .price{
    margin-left: 2%;
  }
}
@media only screen and (max-width: 798px) {
  .land-list li{
    width: calc(100% / 2 - 5px);
    margin: 0 10px 20px 0;
    padding: 20px 10px;
  }
  .land-list li:nth-child(3n){
    margin-right: 10px;
  }
  .land-list li:nth-child(2n){
    margin-right: 0;
  }
  .land-list li .data p span{
    min-width: 60px;
    width: 60px;
  }
  .land-list li .data p strong{
    width: calc(100% - 60px);
  }
}
@media only screen and (max-width: 580px) {
  .land-list{
    display: block;
  }
  .land-list li{
    width: 100%;
    margin: 0 0 20px;
  }
  .land-list li:nth-child(3n){
    margin-right: 0;
  }
}

/*** ------------------------------------------------------------------------------

バナー

-----------------------------------------------------------------------------  ***/
.contact-bn{
  background-color: #f0f0f0;
  padding: 90px 0 40px;
  overflow-x: hidden;
}
.contact-bn .inner{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}
.contact-bn .inner .box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 40px;
}
.contact-bn .inner .box .txt-box{
  max-width: 300px;
  width: 32%;
}
.contact-bn .inner .box .txt-box .midashi{
  background-color: var(--c-black);
  color: #fff;
  text-align: center;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1;
  padding: 15px 5px;
  position: relative;
  letter-spacing: .25rem;
}
.contact-bn .inner .box .txt-box .midashi:before,
.contact-bn .inner .box .txt-box .midashi:after{
  content: '';
  width: 3px;
  height: 30px;
  background-color: var(--c-black);
  position: absolute;
  top: -30px;
}
.contact-bn .inner .box .txt-box .midashi:before{
  left: 20px;
}
.contact-bn .inner .box .txt-box .midashi:after{
  right: 20px;
}
.contact-bn .inner .box .txt-box .txt{
  text-decoration: underline;
  text-decoration-color: var(--c-black);
  text-decoration-thickness: 1px;
  text-underline-offset: 12px;
  font-size: clamp(1.4rem, 1.7vw, 2rem);
  line-height: 1.4;
  margin-top: 30px;
}
.contact-bn .inner .box .txt-box .txt span {
  background-image: radial-gradient(circle at center, var(--c-black) 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: .4em;
}
.contact-bn .inner .box .bn{
  display: block;
  max-width: 730px;
  width: 65%;
  transition: .3s;
  border: solid 2px var(--c-black);
  position: relative;
}
.contact-bn .inner .box .bn:after{
  content: '';
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: -3px;
  right: -3px;
  background-color: rgba(0, 0, 0, .5);
  transition: .3s;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  z-index: -1;
  opacity: 0;
}
.contact-bn .inner .box .bn:hover{
  transform: translateY(-5px);
}
.contact-bn .inner .box .bn:hover:after{
  opacity: 1;
}
@media only screen and (max-width: 798px) {
  .contact-bn{
    padding: 60px 0 1px;
  }
  .contact-bn .inner .box{
    display: block;
    margin: 0 0 50px;
  }
  .contact-bn .inner .box .txt-box{
    max-width: 300px;
    width: 100%;
    margin: 0 auto 10px;
    text-align: center;
  }
  .contact-bn .inner .box .txt-box .midashi:before,
  .contact-bn .inner .box .txt-box .midashi:after{
    width: 2px;
    height: 20px;
    top: -20px;
  }
  .contact-bn .inner .box .txt-box .midashi:before{
    left: 10px;
  }
  .contact-bn .inner .box .txt-box .midashi:after{
    right: 10px;
  }
  .contact-bn .inner .box .txt-box .txt{
    text-underline-offset: 6px;
    margin-top: 20px;
  }
  .contact-bn .inner .box .txt-box .txt span {
    background-image: radial-gradient(circle at center, var(--c-black) 20%, transparent 20%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1em 0.3em;
    padding-top: .4em;
  }
  .contact-bn .inner .box .bn{
    max-width: 400px;
    width: 100%;
    border: solid 1px var(--c-black);
    margin: 0 auto;
  }
  .contact-bn .inner .box .bn:after{
    content: '';
    width: 100%;
    height: 90%;
    position: absolute;
    bottom: -3px;
    right: -3px;
    background-color: rgba(0, 0, 0, .5);
    transition: .3s;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    z-index: -1;
    opacity: 0;
  }
  .contact-bn .inner .box .bn:hover{
    transform: translateY(-5px);
  }
  .contact-bn .inner .box .bn:hover:after{
    opacity: 1;
  }
}

/*** ------------------------------------------------------------------------------

フォームページ

-----------------------------------------------------------------------------  ***/
.contact{
  padding: 150px 0;
}
.contact .conts-head-txt{
  font-size: clamp(2rem,3vw, 4rem);
  line-height: 1.4;
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact .inner{
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
.contact .inner .feature{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 700px;
  width: 100%;
  margin: 0 auto 60px;
}
.contact .inner .feature li{
    width: calc(100% / 4 - 10px);
    border: solid 4px var(--c-black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 165px;
    border-radius: 200px;
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
    line-height: 1.6;
    background-color: #97ECFF;
}
.contact .inner .mw_wp_form_confirm .feature{
  display: none;
}
.contact .inner .midashi{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1;
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--c-black);
  font-family: 'LINE Seed JP_OTF Bold';
}
.contact .inner .confirm-txt{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
  color: #FF2828;
  display: none;
}
.contact .inner .mw_wp_form_confirm .confirm-txt{
  display: block;
}
.contact .inner .txt{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.6;
  margin-bottom: 20px;
}
.contact .inner .txt.mt{
  margin-top: 30px;
}
.contact .inner .txt a{
  color: var(--sub_color);
  text-decoration: underline;
}
.contact .inner .txt a:hover{
  text-decoration: none;
}
.contact .inner table{
  margin: 30px 0 60px;
  width: 100%;
}
.contact .inner table th,
.contact .inner table td{
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.6;
}
.contact .inner table th {
  min-width: 280px;
  width: 280px;
  padding: 10px 0 15px;
  vertical-align: top;
}
.contact .inner table th p{
  display: flex;
  align-items: flex-start;
  font-family: 'LINE Seed JP_OTF Bold';
}
.contact .inner table th strong{
  display: block;
  background-color: #FF2828;
  color: #fff;
  padding: 5px 10px;
  margin: -5px 10px 0 0;
  vertical-align: top;
  width: 60px;
  text-align: center;
}
.contact .inner table th strong.any{
  background: none;
  border: solid 1px var(--c-black);
  color: var(--c-black);
}
.contact .inner table th span{
  display: block;
}
.contact .inner table td{
  width: calc(100% - 280px);
  padding: 0 0 15px;
  position: relative;
}
.contact .inner table td .error{
  position: absolute;
  display: inline-block;
  background-color: #B70000;
  color: #fff;
  padding: 5px 10px;
  margin: 0;
  width: fit-content;
  top: -10px;
  left: 10px;
  font-size: 1.2rem;
  line-height: 1;
}
.contact .inner table td .flex{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact .inner table td .flex > p{
  width: 45%;
  margin-right: 2%;
}
.contact .inner table td .flex > p:first-child{
}
.contact .inner table td span{
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
}
.contact .inner select,
.contact .inner input[type=text].day,
.contact .inner input[type=text],
.contact .inner textarea,
.contact .inner .mw_wp_form_confirm td p,
.contact .inner .mw_wp_form_confirm td .check{
  -webkit-appearance: none;
  appearance: none;
  padding: 15px;
  padding-right: 1em;
  border: none;
  outline: 0;
  background: #eee;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  cursor: pointer;
  width: 100%;
  border-radius: 0;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.6;
}
.contact .inner input[type=text]{
  width: 80%;
  cursor: inherit;
}
.contact .inner input[type=text].short{
  width: 30%;
}
.contact .inner input[type=text].long{
  width: 100%;
}
.contact .inner input::placeholder{
  color: #d3d3d3;
}
.contact .inner  .select {
  display: block;
  position: relative;
  vertical-align: middle;
  width: 100%;
}
.contact .inner .select::after{
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  content: "";
  background-color: var(--c-black);
  opacity: .6;
}
.contact .inner .select::before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 13px;
  height: 4px;
  content: "";
  pointer-events: none;
  background: url(../img/common/arw-select.svg) no-repeat center center / contain;
  opacity: .6;
}
.contact .inner .mw_wp_form_confirm .select::after,
.contact .inner .mw_wp_form_confirm .select::before{
  display: none;
}
.contact .inner select::-ms-expand {
  display: none;
}
.contact .inner .pp-txt{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.6;
  font-weight: 400;
  margin: 0 auto 40px;
  max-width: 650px;
}
.contact .inner .pp-txt a{
  color: #0000EE;
  text-decoration: underline;
}
.contact .inner .pp-txt a:hover{
  text-decoration: none;
}
.contact .inner .btn-wrap{
  display: flex;
  justify-content: center;
}
.contact .inner button[type=submit]{
  display: block;
  border-radius: 100px;
  border: solid 2px var(--c-black);
  background-color: var(--c-black);
  padding: 20px 45px 20px 30px;
  transition: .3s;
  position: relative;
  text-align: left;
  font-size: clamp(1.3rem, 1.5vw, 1.7rem);
  line-height: 1.6;
  font-weight: 300;
  width: 48%;
  max-width: 350px;
  margin: 0 5px;
  text-align: center;
  color: #fff;
}
.contact .inner button[type=submit].back{
  background-color: #fff;
  border: solid 2px var(--c-black);
  color: var(--c-black);
}
.contact .inner button[type=submit]:after{
  content: '';
  position: absolute;
  width: 20px;
  height: 16px;
  background: url(../img/common/arw-white.svg) no-repeat center center / contain;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}
.contact .inner button[type=submit].back:after{
  background: url(../img/common/arw-black.svg) no-repeat center center / contain;
}
.contact .inner button[type=submit]:hover{
  background-color: #fff;
  color: var(--c-black);
}
.contact .inner button[type=submit]:hover:after{
  background: url(../img/common/arw-black.svg) no-repeat center center / contain;
}
.contact .inner button[type=submit].back:hover{
  background-color: var(--c-black);
  color: #fff;
}
.contact .inner button[type=submit].back:hover:after{
  background: url(../img/common/arw-white.svg) no-repeat center center / contain;
}
.contact .inner .check{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.contact .inner .check > span{
  display: flex;
  width: calc(100% / 3 - 10px);
  margin: 0 10px 10px 0;
}
.contact .inner .check > span label {
  display: flex;
  width: 100%;
}
.contact .inner .check .mwform-checkbox-field-text{
  cursor: pointer;
  padding: 10px 10px 10px 50px;
  position: relative;
  display: block;
  border: solid 1px #E6E6E6;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  transition: .3s;
  background-color: #fff;
  border-radius: 5px;
}
.contact .inner .check .mwform-checkbox-field-text{
  display: flex;
  width: 100%;
  align-items: center;
}
.contact .inner .check .mwform-checkbox-field-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E6E6E6;
  background: #fff;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.contact .inner .check input[type="checkbox"] {
    display: none;
}
.contact .inner .check input[type="checkbox"]:checked + .mwform-checkbox-field-text::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-top: 3px solid var(--c-black);
  border-right: 3px solid var(--c-black);
  transform: translateY(-75%) rotate(135deg);
  position: absolute;
  left: 15px;
  top: 50%;
}
.contact .inner .check input[type="checkbox"]:checked + .mwform-checkbox-field-text{
  background-color: var(--c-yellow);
}
.contact .inner .radio .mwform-radio-field-text{
  cursor: pointer;
  padding: 0 0 0 40px;
  position: relative;
  display: block;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.4;
  transition: .3s;
  border-radius: 5px;
  margin-bottom: 10px;
}
.contact .inner .radio .mwform-radio-field-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E6E6E6;
  background: #fff;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.contact .inner .radio .mwform-radio-field-text:before{
  border-radius: 5px;
}
.contact .inner input[type="radio"] {
  display: none;
}
.contact .inner .radio input[type="radio"]:checked + .mwform-radio-field-text::after{
  content: "";
  display: block;
  background-color: var(--c-green);
  width: 14px;
  height: 14px;
  border-radius: 3px;
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
}
.contact .inner .radio input[type="radio"]:checked + .mwform-radio-field-text:before{
  border: solid 1px var(--c-black);
}
.contact .inner .radio label{
  position: relative;
}
.contact .inner .radio input[type="radio"]:checked + .mwform-radio-field-text{
}
.contact .inner .radio{
  display: flex;
  justify-content: flex-start;
}
.contact .inner .radio .wpcf7-radio > span{
  margin: 0 20px 20px 0;
}
@media only screen and (max-width: 798px) {
  .contact{
    padding: 120px 0;
  }
  .contact .conts-head-txt{
    margin: 0 auto 30px;
  }
  .contact .inner .feature{
    max-width: 300px;
    margin: 0 auto 30px;
  }
  .contact .inner .feature li{
      width: calc(100% / 2 - 5px);
      border: solid 2px var(--c-black);
      height: 145px;
      margin: 0 0 10px;
  }
  .contact .inner .midashi{
    font-size: clamp(1.6rem, 1.8vw, 2rem);
    line-height: 1;
    display: flex;
    align-items: center;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--c-black);
  }
  .contact .inner .txt{
    font-size: clamp(1.2rem, 1.3vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .contact .inner table{
    margin: 20px 0 40px;
    width: 100%;
  }
  .contact .inner table th{
    min-width: auto;
    width: 100%;
    padding: 10px 0 10px;
    display: block;
  }
  .contact .inner table th strong{
    max-width: 55px;
  }
  .contact .inner table th p{
  }
  .contact .inner table td{
    padding: 0 0 10px;
    width: 100%;
    display: block;
  }
  .contact .inner table td p{
    margin-bottom: 5px;
  }
  .contact .inner table td input[type=text],
  .contact .inner table td textarea{
    padding: 10px;
    width: 100%;
  }
  .contact .inner .btn-wrap{
    display: block;
  }
  .contact .inner button[type=submit]{
    display: block;
    border-radius: 100px;
    padding: 20px 45px 20px 30px;
    transition: .3s;
    position: relative;
    text-align: left;
    font-size: clamp(1.3rem, 1.5vw, 1.7rem);
    line-height: 1.6;
    font-weight: 300;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 10px;
  }
  .contact .inner button[type=submit]:after{
    width: 15px;
    height: 13px;
  }
  .contact .inner .check{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .contact .inner .check > span{
    display: flex;
    width: calc(100% / 2 - 5px);
    margin: 0 5px 5px 0;
  }
  .contact .inner .radio{
    display: block;
  }
  .mw_wp_form .horizontal-item + .horizontal-item{
    margin-left: 0;
  }
}

footer#thanks {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}
.contact.thanks .inner .txt{
  text-align: center;
  line-height: 1.8;
  margin: 0 0 60px;
}
.contact.thanks a{
  display: block;
  border-radius: 100px;
  border: solid 2px var(--c-black);
  background-color: var(--c-yellow);
  color: var(--c-black);
  padding: 20px 45px 20px 30px;
  transition: .3s;
  position: relative;
  text-align: left;
  font-size: clamp(1.3rem, 1.5vw, 1.7rem);
  line-height: 1.6;
  font-weight: 300;
  width: 48%;
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
}
.contact.thanks a:after{
  content: '';
  position: absolute;
  width: 20px;
  height: 16px;
  background: url(../img/common/arw-select.svg) no-repeat center center / contain;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}
.contact.thanks a:hover{
  background-color: #fff;
  color: var(--c-black);
}
.contact.thanks a:hover:after{
  background: url(../img/common/arw-select.svg) no-repeat center center / contain;
}
@media only screen and (max-width: 798px) {
footer#thanks {
  position: relative;
  left: initial;
  bottom: initial;
  width: 100%;
}
.contact.thanks .inner .txt{
    margin: 0 0 30px;
}
  .contact.thanks a{
    width: 90%;
  }
}

.page-nav{
  max-width: 720px;
  width: 90% ;
  margin: 0 auto;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-nav a{
  display: flex;
  align-items: center;
  width: calc(100% / 3 - 10px);
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  padding: 15px 55px 15px 45px;
  border-radius: 50px;
  border: solid 1px var(--c-black);
  transition: .3s;
  position: relative;
  text-align: center;
  justify-content: center;
}
.page-nav.line2 a{
  width: calc(100% / 2 - 10px);
}
.page-nav a:after{
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 25px;
  background: url(../img/common/arw-white02.svg) no-repeat center center / 40% var(--c-black);
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(90deg);
}
.page-nav a:hover{
  border: solid 1px var(--c-gray3);
  background-color: var(--c-gray3);
}
@media only screen and (max-width: 798px) {
  .mv .inner .ill{
    max-width: 50px;
    transform: translateY(120px);
  }
  .page-nav{
    padding-bottom: 20px;
    display: block;
    max-width: 350px;
  }
  .page-nav a,
  .page-nav.line2 a{
    display: block;
    width: 100%;
    padding: 15px 35px 15px 35px;
    margin: 0 0 5px;
  }
  .page-nav a:after{
    width: 20px;
    height: 20px;
    right: 10px;
  }
}
