@charset "utf-8";
html {-webkit-text-size-adjust: 100%;}
a{text-decoration: none;color: inherit;line-height: 2;}
img{width: 100%;}
*{-webkit-box-sizing: border-box;box-sizing: border-box;}
body{font-size: 20px;font-size: 3.33vw;}
body>svg{position: absolute;width: 0;height: 0; }
.wrap {padding-top: 15%;background-color: #F7F6FB;}
.wrap.pink {background-color: #001E43;}
.wrap.yellow {background-color: #FCDE00;}
.wrap:before{display: none !important;}
.outer {
  padding: 3%;
  min-height: 100%;
}
.nosp {display: none !important;}
.inner {
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  max-height: auto !important;
}
/*========================================================
header
========================================================*/
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: .5s;
}
header.on {
  position: fixed;
  animation: fix .5s ease-in-out;
}
@-webkit-keyframes fix {
  0%{
    top: -80px;
  }
  100% {
    top: 0;
  }
}
@keyframes fix {
  0%{
    top: -80px;
  }
  100% {
    top: 0;
  }
}
.logo {
  padding: 3%;
  width: 40%;
  float: left;
}
.logo a img {
  width: 100%;
}
header nav {
  display: none;
}
header>ul {
  float: right;
  display: table;
}
header>ul li {
  display: table-cell;
  vertical-align: bottom;
  padding: 2vw;
  font-size: 14px;
  font-size: 2.33vw;
  text-align: center;
  line-height: 1;
}
header>ul li a {
  line-height: 1;
}
header>ul li i {
  font-size: 6vw;
  display: inline-block;
  color: #BABEBF;
  margin-bottom: 2vw;
}
.menu,
.menu span {
  transition: all .4s;
  box-sizing: border-box;
}
.menu {
  position: relative;
  height: 8.33vw;
  padding: 2vw 1.66vw;
  z-index: 1001;
}
.menu span {
  position: absolute;
  left: 0;
  right: 0;
  width: 5vw;
  height: 0.66vw;
  background-color: #838E94;
  border-radius: 0.66vw;
  margin: auto;
}
.menu span:nth-of-type(1) {
  top: 3.3vw;
}
.menu span:nth-of-type(2) {
  top: 5vw;
}
.menu span:nth-of-type(3) {
  top: 6.7vw;
}
.menu.active{
  color: #fff;
}
.menu.active:before {
  content: '';
  width: 70%;
  height: 12vw;
  position: absolute;
  z-index: -1;
  top: -5vw;bottom: 0;left: 0;right: 0;margin: auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.menu.active span {
  background-color: #474a4d;
}
.menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(1.67vw) rotate(-45deg);
  transform: translateY(1.67vw) rotate(-45deg);
}
.menu.active span:nth-of-type(2) {
  opacity: 0;
}
.menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-1.67vw) rotate(45deg);
  transform: translateY(-1.67vw) rotate(45deg);
}
.menu.active b {
  opacity: 0;
}
.sp_menu,
.sp_contact,
.sp_tel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(65, 65, 65,0.95);
  z-index: 1000;
  color: #fff;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.3);
  border: 2px solid  #fff;
}
.sp_menu.active,
.sp_contact.active,
.sp_tel.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.sp_menu.active div,
.sp_contact.active div,
.sp_tel.active div {
  animation: sp_menu 0.8s;
  cursor: pointer;
}
@keyframes sp_menu {
    0% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}
.sp_menu a,
.sp_contact a,
.sp_tel a {
  color: #fff;
}
.sp_menu>div,
.sp_contact>div,
.sp_tel>div {
  max-height: 100%;
  overflow-y: auto;
  padding: 15% 5% 10%;
  -webkit-overflow-scrolling : touch
}
.sp_menu div div {
  border: 3px solid #fff;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 5%;
}
.sp_menu div div dl dt {
  border-bottom: 1px solid #fff;
  padding: 3%;
  color: #fff;
  position: relative;
}
.sp_menu div div dl:last-of-type dt {
  border: none;
}
.sp_menu div div dl dt a {
  display: block
}
.sp_menu div div dl dd {
  border-bottom: 1px dotted #fff;
  padding: 3%;
  color: #fff;
  display: none;
  font-size: 2.66vw;
  padding-left: 5%;
}
.sp_menu div div dl dd:last-of-type {
  border-bottom: 1px solid #fff;
}
.sp_menu div div dl dd a {
  display: block
}
.sp_menu div ul {
  border-top: 1px dotted #fff;
  margin-bottom: 5%;
}
.sp_menu div ul li {
  border-bottom: 1px dotted #fff;
}
.sp_menu div ul li a {
  padding: 3%;
  display: block;
}
.sp_menu div p {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 5%;
}
.sp_menu div p a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 33%;
  margin: 0 1%;
  padding: 5% 0;
  font-size: 6vw;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
}
.sp_menu div p a i {
  line-height: 0;
}
.sp_menu div p a.fb {
  border: 1px solid #3A5F9A;
  background-color: #3A5F9A;
}
.sp_menu div p a.tw {
  border: 1px solid #55ACEE;
  background-color: #55ACEE;
}
.sp_menu div p a.line {
  border: 1px solid #00C302;
  background-color: #00C302;
}
.sp_menu div p a.insta {
  position: relative;
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  overflow: hidden;
}
.sp_menu div p a.insta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.sp_menu div p a.insta i {
  position: relative;
  z-index: 2;
}
.sp_menu div span {
  display: block;
}
.sp_menu div span a {
  display: block;
  padding: 3%;
  text-align: center;
}

.sp_contact>div>p,
.sp_tel>div>p {
  font-size: 30px;
  font-size: 5vw;
  text-align: center;
  margin-bottom: 1%;
  font-weight: bold;
}
.sp_contact p,
.sp_tel p {
  text-align: center;
  margin-bottom: 3%;
}
.sp_contact dl,
.sp_tel dl {
  margin-bottom: 5%;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 5%;
}
.sp_contact dl dt {
  font-size: 22px;
  font-size: 3.66vw;
  text-align: center;
  margin-bottom: 1%;
}
.sp_tel dl dt {
  font-size: 30px;
  font-size: 5vw;
  text-align: center;
  margin-bottom: 1%;
  font-weight: bold;
}
.sp_contact dl dd,
.sp_tel dl dd {
  text-align: center;
  border-radius: 100px;
  margin-bottom: 5%;
}
.sp_contact dl dd:last-of-type,
.sp_tel dl dd:last-of-type {
  margin-bottom: 0;
}
.sp_tel dl:first-of-type dd {
  font-size: 40px;
  font-size: 6.66vw;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.sp_contact dl dd a {
  padding: 1%;
  display: block;
  background-color: #800000;
  border-radius: 100px;
  width: 70%;
  margin: auto;
  border: 1px solid  #800000;
}
.sp_tel dl dd a {
  display: block;
  background-color: #FAEA27;
  border-radius: 100px;
  margin: auto;
  border: 1px solid  #FAEA27;
  line-height: 1;
  width: 100%;
  padding: 3%;
  color: #E8373D;
}
.sp_tel dl dd a img {
  width: 5%;
  margin-right: 5%;
}
.sp_tel dl dd span {
  font-size: 22px;
  font-size: 3.66vw;
  text-align: center;
  margin-bottom: 1%;
  letter-spacing: normal;
  font-weight: normal;
}
.sp_contact dl dd a i {
  font-size: 40px;
  font-size: 6.66vw;
  margin-right: 3%;
  display: inline-block;
  vertical-align: middle;
  margin-top: 2%;
}
.menu_favo {display: none;}
header.on .menu_favo {display: block;}
header.on .logo {
  display: none;
}
header.on>ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  align-items: center;
}
header.on>ul li {
  width: 25%;
}
header.on>ul li.menu_contact {
  -webkit-order: 4;
  -ms-order: 4;
  order: 4;
}
header.on>ul li.menu_tel {
  -webkit-order: 1;
  -ms-order: 1;
  order: 1;
}
header.on>ul li.menu_search {
  -webkit-order: 2;
  -ms-order: 2;
  order: 2;
}
header.on>ul li.menu_favo {
  -webkit-order: 3;
  -ms-order: 3;
  order: 3;
}
header.on>ul li.menu {
  position: relative;
  -webkit-order: 5;
  -ms-order: 5;
  order: 5;
  padding: 10% 0 4%;
}
header.on>ul li.menu span {
}
/*========================================================
footer
========================================================*/
footer {
  background-color: #474a4d;
  position: relative;
  padding-bottom: 5%;
}
footer span#totop {
  width: 100%;
  display: block;
}
footer span#totop a {
  display: block;
  padding: 1.66vw;
  color: #fff;
  text-align: center;
  border-radius: 100px;
}
footer span#totop a span:before {
  content: '';
  width: 1.66vw;height: 1.66vw;
  position: absolute;
  top: 0.83vw;bottom: 0;left: -3.33vw;margin: auto;
  border-top: 3px solid  #fff;
  border-right: 3px solid  #fff;
  transform: rotate(-45deg);
}
footer span#totop a span {
  position: relative;
}
footer ul {
  margin: 0 auto;
  width: 50%;
  float: left;
}
footer ul:after {
  content: '';
  clear: both;
  display: block;
}
footer ul li {
  width: 100%;
  float: left;
  border-top: 1px solid  #837E7E;
  border-right: 1px solid  #837E7E;
  border-bottom: 1px solid  #837E7E;
}
footer ul li:nth-of-type(even) {
  border-right: none;
}
footer ul li:first-of-type {
  display: block;
}
footer>ul li:nth-last-of-type(2),
footer>ul li:last-of-type {
  border-bottom: 1px solid  #837E7E;
}
footer ul li a {
  display: block;
  padding: 1.66vw;
  color: #fff;
  text-align: center;
  border-radius: 100px;
}
footer ul li a i {
  vertical-align: middle;
  display: inline-block;
  margin-right: 3%;
}
footer>div ul {
  text-align: center;
  display: block;
  width: 100%;
  clear: both;
}
footer>div ul li {
  width: auto;
  display: inline-block !important;
  border: none;
  font-size: 50px;
  font-size: 8.33vw;
  margin: 0 0.83vw;
  float: none;
}
footer>div ul li a {
  display: inline !important;
  padding: 0;
}
footer>div ul li a i.icon-instagram {
  font-size: 7.33vw;
}
footer p {
  font-size: 12px;
  font-size: 2vw;
  text-align: center;
  color: #fff;
  clear: both;
}
.foot_open_menu,
.foot_close_menu,
footer>nav ul li:not(:first-of-type),
footer>ul li:not(:nth-of-type(2)) {
  display: none;
}
/*========================================================
toppage
========================================================*/

.top_main {
    width: 100%;
    padding: 5% 0 0;
    background-position: center 0px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: 143%;
    opacity: 1;
    background-image: url(../img/main.png);
}
.top_main h1 {
  width: 100%;
  text-align: center;
  margin: 0 auto 10%;
  /* background: rgba(255,255,255,0.8); */
}
.top_main h1 img {
  z-index: 1;
  position: relative;
  display: block;
  margin: auto;
}
.top_main h1 img:nth-of-type(1) {
  width: 30%;
  margin-bottom: 2%;
}
.top_main h1 img:nth-of-type(2) {
  width: 60%;
  margin-bottom: 2%;
}
.top_main h1 img:nth-of-type(3) {
  width: 45%;
  margin-bottom: 2%;
}
.top_main h1 img:nth-of-type(4) {
  width: 70%;
}
.top_main h1:before {
  content: "";
  display: block;
  width: 65vw;
  top: 15vw;
  left: 0;
  right: 0;
  height: 65vw;
  background: rgba(255,255,255,0.8);
  position: absolute;
  margin: 0 auto;
  z-index: 0;
  border-radius: 100%;
}

.top_main>dl {
  width: 100%;
  padding: 1% 2%;
  background-color: rgba(0,0,0,0.7);
  margin: auto;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.top_main>dl>dt {
  vertical-align: middle;
  width: 100%;
  text-align: center;
  position: relative;
  padding: 1%;
  margin-bottom: 1%;
}
.top_main>dl>dt img {
  width: auto;
  height: 5vw;
}
.top_main>dl>dt span {
  display: block;
  width: 60%;
  position: absolute;
  top: -10vw;
  left: 1%;
  background-color: #fff;
  text-align: center;
  padding: 1% 3%;
  border-radius: 10px;
  font-size: 18px;
  font-size: 3vw;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.top_main>dl>dt span:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  bottom: -15px;
  left: 60px;
  transform: rotate(-30deg) ;
}
.top_main>dl>dt span b {
  font-size: 26px;
  font-size: 4.33vw;
  color: #800000;
}
.top_main>dl>dd {
  font-size: 18px;
  font-size: 3vw;
  text-align: center;
  width: 100%;
  margin-bottom: 3%;
}
.top_main>dl>dd:last-of-type {
  margin-bottom: 0;
}
.top_main>dl>dd a.btn1 {
  width: 100%;
  font-size: 18px;
  font-size: 3.66vw;
  background-color: #001E43;
  border: 2px solid  #001E43;
  color: #fff;
  padding: 3px 0;
  border-radius: 5px;
}
.top_main>dl>dd a.btn1.arrow:before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
.top_main>dl>dd a.btn1 i {
  font-size: 25px;
  font-size: 5vw;
  display: inline-block;
  vertical-align: middle;
  margin-right: 2vw;
}
.top_main>dl>dd:last-of-type a.btn1 {
  background-color: #001e43;
  border: 2px solid #001e43;
}
.top_main div {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background-color: rgba(0,0,0,0.7);
}
.top_main div dl {
  display: inline-block;
  vertical-align: middle;
  width: 47%;
  position: relative;
  margin: 1%;
}
.top_main div dl dt {
  display: table-cell;
  vertical-align: middle;
  width: 30%;
  height: 15vw;
  text-align: center;
  padding: 0 ;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.top_main div dl:first-of-type dt {
  background-color: #001E43;
}
.top_main div dl:nth-of-type(2) dt {
  background-color: #003f8e;
}
.top_main div dl:nth-of-type(3) dt {
  background-color: #409ECC;
}
.top_main div dl:nth-of-type(4) dt {
  background-color: #8da0b6;
}
.top_main div dl dt img {
  width: 75%;
}
.top_main div dl dd {
  display: table-cell;
  vertical-align: middle;
  background-color: rgba(250, 250, 250, 0.9);
  padding: 3%;
  font-size: 16px;
  font-size: 3vw;
  text-align: left;
  width: 61%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.top_main div dl dd a:not(.btn1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
/*============================
#lightbox
============================*/
#lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(0,0,0,0.8);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.lightbox-on #lightbox {
  opacity: 1;
  pointer-events: auto;
}
#lightbox div {
  position: fixed;
  height: 320px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10% 3%;
  z-index: 2;
  width: 90%;
}
#lightbox .close-btn {
  background-color: #800000;
  display: block;
  width: 8vw;
  height: 8vw;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
#lightbox .close-btn:before,
#lightbox .close-btn:after {
  content: "";
  width: 5vw;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
#lightbox .close-btn:after {
  transform: rotate(-45deg);
}
#lightbox p {
  text-align: center;
  font-size: 24px;
  font-size: 4vw;
  font-weight: bold;
  color: #800000;
  margin-bottom: 5%;
}
#lightbox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#lightbox ul li {
  width: 100%;
  margin: 3% 0;
}
#lightbox ul li a {
  font-size: 4vw;
  font-weight: bold;
  color: #fff;
  background-color: #800000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 80px;
  padding: 0 3%;
  position: relative;
}
#lightbox ul li a:after {
  content: '';
  width: 8px;height: 8px;
  position: absolute;
  top: 0;bottom: 0;right: 10px;margin: auto;
  border-right: 2px solid  #fff;
  border-top: 2px solid  #fff;
  transform: rotate(45deg);
}
.top_new {
  background-color: #fff;
}
.top_new>dl {
  width: 100%;
  margin: 0 auto 5%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.top_new>dl>dt {
  background-color: #8DA0B6;
  text-align: center;
  font-size: 3.33vw;
  position: relative;
  padding: 0 0 2%;
  color: #FFF;
}
.top_new>dl>dt:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 26.0px 15px 0 15px;
  border-color: #8DA0B6 transparent transparent transparent;
  position: absolute;
  bottom: -20px;left: 0;right: 0;margin: auto;
  display: none;
}

.top_new>dl>dt span {
  font-size: 20px;
  font-size: 3.33vw;
  display: none;
}
.top_new>dl>dt img {
  width: 25%;
  display: inline-block;
  vertical-align: middle;
  margin: -10px 3% 2% 0;
}
.top_new>dl>dd {
  background-color: #fff;
  padding: 0 1%;
}
.swiper-news {
  width: 100%;
  overflow: hidden;
  /* height: 250px; */
}
.swiper-news .swiper-slide {
  padding: 3% 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
}
.swiper-news .swiper-slide article {
  width: 100%;
  overflow: hidden;
}
.top_new>dl>dd>div {
  position: relative;
}
.top_new>dl>dd>div:first-of-type {
  border-bottom: 1px solid  #CAC6C6;
  padding: 3% 0;
}
.top_new>dl>dd div a {
  position: absolute;
  width: 100%;height: 100%;
  top: 0;left: 0;
  z-index: 2;
  display: block;
}
.top_new>dl>dd div>span {
  font-size: 18px;
  font-size: 3vw;
  font-weight: bold;
  color: #818181;
  display: block;
}
.top_new>dl>dd div dl {
  font-size: 0;
}
.top_new>dl>dd div dl dt {
  width: 30%;
  height: 100px;
  position: relative;
  overflow: hidden;
  margin: 0 3% 3% 0;
  display: inline-block;
  vertical-align: top;
}
.top_new>dl>dd div dl dt img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}
.top_new>dl>dd div dl dt img.EntryDataCheck{
  width: 100px;
  height: auto;
}
.top_new>dl>dd div dl dd {
  display: inline-block;
  vertical-align: top;
  width: 67%;
}
.top_new>dl>dd div dl dd>span {
  font-size: 18px;
  font-size: 3vw;
  margin-bottom: 1%;
  display: block;
}
.top_new>dl>dd div dl dd>span span {
  margin-right: 10px;
}
.top_new>dl>dd div dl dd>span b {
  margin-left: 10px;
  /* color: #fff;
  background-color: #003F8E; */
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: bold;
  font-size: 2.5vw;
}
.top_new>dl>dd div dl dd b {
  font-size: 20px;
  font-size: 3.33vw;
  margin-bottom: 1%;
  display: block;
  font-weight: bold;
}
.top_new>dl>dd div dl dd p {
  font-size: 18px;
  font-size: 3vw;
  line-height: 1.8;
  margin-bottom: 5px;
}
.top_new>dl>dd div dl dd p i {
  color: #800000;
  font-size: 25px;
  font-size: 4.16vw;
  display: inline-block;
  vertical-align: middle;
}
.top_new>dl>dd div dl dd p span {
  margin: 0 3%;
}
.top_new>article>ul {
  text-align: center;
  margin-bottom: 3%;
}
.top_new>article>ul:after {
  content: '';
  clear: both;
  display: block;
}
.top_new>article>ul li {
  width: 49%;
  float: left;
  margin: 0 0.5% 1%;
}
.top_new .bx-wrapper,
.top_special .bx-wrapper {
  max-width: 100% !important;
  padding: 3% 0;
}
.top_new>article>ul li:last-child {
  width: 99%;
}
.top_new>article>ul li:last-child a {
  padding: 1% 0;
}
.top_new>article>ul li a {
  color: #fff;
  padding: 2% 0;
  font-size: 20px;
  font-size: 3.33vw;
  font-weight: bold;
  text-align: center;
  display: block;
  background-color: #ADC1DB;
  position: relative;
  pointer-events: none;
}
.top_new>article>ul li.here a {
  background-color: #003F8E;
}
.top_new>article>ul li.here a:before {
  border-color: #003F8E transparent transparent transparent;
}
.top_new .search_result article,
.top_special .search_result article {
  width: 94%;
}
.top_new .search_result article h3,
.top_special .search_result article h3 {
  padding: 0 20% 3% 3%;
}
.top_new .search_result article div,
.top_special .search_result article div {
  padding: 3%;
  background-color: #fff;
}
.top_new .search_result article div span i,
.top_special .search_result article div span i {
  font-size: 25px;
  font-size: 4.16vw;
  display: inline-block;
  vertical-align: middle;
  color: #800000;
  margin-right: 3%;
}
.top_new .search_result article div dl,
.top_special .search_result article div dl {
  width: 52%;
}
.top_new .search_result article div dl dt,
.top_special .search_result article div dl dt {
  width: 45%;
}
.top_new .search_result article div dl dd,
.top_special .search_result article div dl dd {
  width: 52%;
}
.top_new .swiper-container {
  height: auto;
  opacity: 1;
}
.top_new .swiper-container.off {
  height: 0;
  pointer-events: none;
  opacity: 0;
}
.toppage .swiper-container .swiper-button-next,
.toppage .swiper-container .swiper-button-prev {
  width: 76px;
  height: 76px;
  position: absolute;
  top: 0;bottom: 0;margin: auto;
  background-color: rgba(0,0,0,0.5);
  background-image: none;
  border-radius: 100px;
  display: none;
}
.toppage .swiper-container .swiper-button-next {
  right: -40px;
}
.toppage .swiper-container .swiper-button-prev {
  left: -40px;
}
.toppage .swiper-container .swiper-button-next:before,
.toppage .swiper-container .swiper-button-prev:before {
  content: '';
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 0;bottom: 0;margin: auto;
}
.toppage .swiper-container .swiper-button-next:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  left: 5px;
}
.toppage .swiper-container .swiper-button-prev:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 5px;
}
.top_title {
  font-size: 30px;
  font-size: 5vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5%;
}
.top_title + p {
  text-align: center;
  margin-bottom: 5%;
}
.top_special {
  padding: 5% 0;
  background: #001E43;
}
.top_special .top_title,
.top_special .top_title + p {
  color: #fff;
  padding: 0 5%;
}
.top_column {
  padding: 5% 0;
}
.top_column div article {
  border: 2px solid  #EAE8E8;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  position: relative;
  margin-bottom: 5%;
  background-color: #fff;
  display: inline-block;
  vertical-align: top;
  border-radius: 10px;
  width: 94%;
  overflow: hidden;
}
.top_column div article>a {
  position: absolute;
  top: 0;left: 0;
  width: 100%;height: 100%;
  z-index: 2;
}
.top_column div article dl {
}
.top_column div article dl dt {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}
.top_column div article dl dt img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.top_column div article dl dd {
  padding: 3%;
}
.top_column div article dl dd p {
  font-weight: bold;
  font-size: 20px;
  font-size: 3.33vw;
}
.top_column div article dl dd p span {
  font-size: 16px;
  font-size: 2.66vw;
  display: block;
  color: #818181;
  margin-bottom: 1%;
}
.top_column div article dl dd ul {
}
.top_column div article dl dd ul li {
  display: inline-block;
  margin-right: 3%;
}
.top_column div article dl dd ul li a {
  font-size: 16px;
  font-size: 2.66vw;
  color: #4AA7E2;
}
.top_news {
  width: 100%;
  margin: auto;
  padding: 10% 0;
  background-color: #E3E3E3;
}
.top_news div {
  width: 94%;
  padding: 5%;
  margin: 0 auto 5%;
  border-radius: 10px;
  border: 2px solid  #EAE8E8;
  background: #fff;
  position: relative;
}
.top_news div:first-of-type>a {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 16px;
  font-size: 2.66vw;
  padding-right: 5%;
}
.top_news div:first-of-type>a:after {
  content: '';
  width: 8px;height: 8px;
  position: absolute;
  top: 0;bottom: 0;right: 5px;margin: auto;
  border-top: 2px solid  #800000;
  border-right: 2px solid  #800000;
  transform: rotate(45deg);
}
.top_news div:first-of-type ul li {
  padding: 3%;
  border-bottom: 1px solid  #D5D5D5;
}
.top_news div:first-of-type ul li span {
  font-size: 16px;
  font-size: 2.66vw;
  font-weight: bold;
  color: #818181;
}
.top_news div:first-of-type ul li span.label_property {
  background-color: #003f8e;
  color: #fff;
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: 3%;
  font-size: 14px;
  font-size: 2.33vw;
}
.top_news div:first-of-type ul li a {
  display: block;
  color: #4AA7E2;
}
.top_news div:first-of-type ul li span.label_column {
  background-color: #82CDDD;
  color: #fff;
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: 3%;
  font-size: 14px;
  font-size: 2.33vw;
}
.top_news div ul.sns_btn li {
  margin: 3px;
}
.top_news div img {
  width: 100%;
}
.top_tips div {
  width: 100%;
  margin: auto;
}
.top_tips div ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 5%;
  padding: 0 5% 5%;
}
.top_tips div ul li {
  width: 49.5%;
  background-color: #fff;
  position: relative;
  text-align: center;
  padding: 5% 5% 8%;
  margin: 0 1% 1% 0;
  overflow: hidden;
  transition: 0.3s;
  border: 2px solid #EAE8E8;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.top_tips div ul li:nth-of-type(2n) {
  margin: 0 0 1% 0;
}
.top_tips div ul li a {
  display: block;
  position: absolute;
  top: 0;left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.top_tips div ul li a:before {
  content: '';
  width: 25px;height: 25px;
  position: absolute;
  right: 5%;bottom: 5%;
  background-color: #000;
  border-radius: 100px;
  transition: 0.3s;
}
.top_tips div ul li a:after {
  content: '';
  width: 8px;height: 8px;
  position: absolute;
  right: 10%;bottom: 8.5%;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s;
}
.top_tips div ul li h3 {
  font-size: 3.33vw;
  font-weight: bold;
  line-height: 2.5;
  position: relative;
  z-index: 2;
}
.top_tips div ul li h3 i {
  display: block;
  font-size: 8.33vw;
}
.top_tips div ul li p {
  text-align: left;
  position: relative;
  z-index: 2;
  font-size: 2.66vw;
}
.top_tips div.open_list ul {
  color: #001E43;
}
.top_tips div.open_list ul li:before {
  background: #001E43;
}
.top_tips div.open_list ul li a:before {
  background-color: #001E43;
}
.top_tips div.close_list ul {
  color: #409ecc;
}
.top_tips div.close_list ul li:before {
  background: #409ecc;
}
.top_tips div.close_list ul li a:before {
  background-color: #409ecc;
}
.top_tips div.rent_list ul {
  color: #003f8e;
}
.top_tips div.rent_list ul li:before {
  background: #003f8e;
}
.top_tips div.rent_list ul li a:before {
  background-color: #003f8e;
}
.top_tips div.seller_list ul {
  color: #8da0b6;
}
.top_tips div.seller_list ul li:before {
  background: #8da0b6;
}
.top_tips div.seller_list ul li a:before {
  background-color: #8da0b6;
}
.top_tips div.performance_list ul {
  color: #d4d9df;
}
.top_tips div.performance_list ul li:before {
  background: #d4d9df;
}
.top_tips div.performance_list ul li a:before {
  background-color: #d4d9df;
}
.top_insta {
  padding: 10% 0 0;
}
.top_insta ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.top_insta ul li {
  width: 33%;
  position: relative;
  padding: 33% 0 0;
  overflow: hidden;
}
.top_insta ul li:last-of-type {
  display: none;
}
.top_insta ul li a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}


/*========================================================
articles_detail
========================================================*/
.detail_title {
  font-size: 26px;
  font-size: 4.33vw;
  font-weight: bold;
  padding: 5%;
  border-bottom: 1px solid  #CAC6C6;
}
.articles_detail article>section {
  padding: 5%;
  position: relative;
}
.articles_detail .number {
  margin-bottom: 3%;
  display: block;
  font-weight: bold;
}
.articles_detail .number span {
  color: #800000;
}
.articles_detail .train {
  margin-bottom: 3%;
  display: block;
}
.articles_detail .train i {
  color: #800000;
  font-size: 30px;
  font-size: 5vw;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1%;
}
.articles_detail .icon {
  height: auto;
}
.icon {
  width: 100%;
  clear: both;
  height: 5em;
  font-family: "メイリオ",meiryo, sans-serif;
}
.icon li,
.detail_title>b {
  display: inline-block;
  border-radius: 100px;
  border: 1px solid  #ccc;
  font-size: 14px;
  font-size: 2.33vw;
  position: relative;
  font-weight: 400;
}
/* .icon li:before {
  content: '';
  width: 1.66vw;height: 1.66vw;
  position: absolute;
  top: 0;bottom: 0;left: 1.66vw;margin: auto;
  border-radius: 100px;
} */
.icon li span {
  width: 1.66vw;height: 1.66vw;
  position: absolute;
  top: 0;bottom: 0;left: 1.66vw;margin: auto;
  border-radius: 100px;
}
.ico_new {
  color: #FFF;
  background-color: #800000;
  border: 1px solid  #800000 !important;
  padding: 0.33vw 2.66vw;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.33vw 1.33vw 0;
}
.ico_ichioshi {
  color: #fff;
  background-color: #003F8E;
  border: 1px solid  #003F8E !important;
  padding: 0.33vw 2.66vw;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.33vw 1.33vw 0;
}
.ico_tokusen {
  color: #fff;
  background-color: #409ECC;
  border: 1px solid  #409ECC !important;
  padding: 0.33vw 2.66vw;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.33vw 1.33vw 0;
}
.ico_ashibaya {
  color: #fff;
  background-color: #3574ad;
  border: 1px solid  #3574ad !important;
  padding: 0.33vw 2.66vw;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.33vw 1.33vw 0;
}
.ico_ninki {
  color: #fff;
  background-color: #8DA0B6;
  border: 1px solid  #8DA0B6 !important;
  padding: 0.33vw 2.66vw;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.33vw 1.33vw 0;
}
.ico_genjo {
  color: #001E43;
  border: 1px solid  #001E43 !important;
  padding: 0.33vw 2.66vw;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.33vw 1.33vw 0;
  background-color: transparent;
}
.top_new>dl>dd div dl dd>span b.ico_genjo {
  padding: 3px 10px;
  background-color: transparent;
  color: #001E43;
}
.ico_ricchi {
  border: 1px solid  #D4D9DF !important;
  padding: 0.33vw 2.66vw;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.33vw 1.33vw 0;
  background-color: #D4D9DF;
}
.ico_gyoshu {
  color: #fff;
  background-color: #800000;
  border: 1px solid  #800000 !important;
  padding: 0.33vw 2.66vw;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.33vw 1.33vw 0;
}
.ico_juinshoku {
  color: #fff;
  background-color: #800000;
  border: 1px solid  #800000 !important;
  padding: 0.33vw 2.66vw;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.33vw 1.33vw 1vw;
}

.ico_360kamera {
   color: #0e08f7;
  background-color: #fff;
  border: 1px solid  #0e08f7 !important;
  padding: 0.33vw 2.66vw;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 3px 5px 0;
  margin: 0 1.33vw 1.33vw 1vw;
}
/* .ico_open:before {
  background-color: #AFD825;
}
.ico_station:before {
  background-color: #D3AF36;
}
.ico_restaurant:before {
  background-color: #60CBCB;
} */
.articles_detail .articles_slider {
  position: relative;
  margin-bottom: 3%;
  overflow: hidden;
  width: 100%;
  height: 35vh;
}
.articles_detail .articles_slider:before {
  content: '';
  position: absolute;
  top: 0;left: 0;
  width: 100%;height: 100%;
  background-color: rgb(0, 0, 0, 0.5);
  z-index: 10;
  display: none;
}
.articles_detail .articles_slider .swiper-slide {
  width: 100%;
  height: 35vh;
  overflow: hidden;
}
.articles_detail .articles_slider .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}
.articles_detail .articles_slider .swiper-slide a {
  display: block;
  position: relative;
  height: 100%;
}
.articles_detail .articles_slider .swiper-slide a:before {
  content: '\e918';
  font-family: 'iconfont';
  color: #fff;
  background-color: rgba(0, 0, 0,0.5);
  position: absolute;
  bottom: 0;right: 0;
  line-height: 0;
  padding: 7% 3% 5% 3%;
  font-size: 5vw;
  z-index: 2;
}
.articles_detail .articles_slider .swiper-button-next,
.articles_detail .articles_slider .swiper-button-prev {
  background-image: none;
  background-color: rgba(0, 0, 0,0.5);
  width: 4.5vw;
  height: 7.33vw;
  z-index: 5;
}
.articles_detail .articles_slider .swiper-button-next:before,
.articles_detail .articles_slider .swiper-button-prev:before {
  content: '';
  width: 2.5vw;
  height: 2.5vw;
  position: absolute;
  top: 0;bottom: 0;left: -1.33vw;right: 0;margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.articles_detail .articles_slider .swiper-button-prev:before {
  left: 1.33vw;
  transform: rotate(-135deg);
}
.articles_detail .articles_slider .soldout {
  position: absolute;
  width: 70%;
  height: 20%;
  top: 0;bottom: 0;left: 0;right: 0;margin: auto;
  z-index: 100;
  display: none;
}
.articles_detail .articles_slider.on:before,
.articles_detail .articles_slider.on .soldout {
  display: block;
}
.articles_detail .articles_slider_pager {
  text-align: center;
  width: 100%;
  height: 10vh;
  margin-bottom: 3%;
  overflow: hidden;
  position: relative;
}
.articles_detail .articles_slider_pager .swiper-slide {
  width: 20vw;
  overflow: hidden;
}
.articles_detail .articles_slider_pager .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}
.articles_detail .articles_slider_pager .swiper-button-next,
.articles_detail .articles_slider_pager .swiper-button-prev {
  background-image: none;
  background-color: rgba(0, 0, 0,0.5);
  height: 100%;
  top: 0;
  margin: 0;
  width: 4.5vw;
}
.articles_detail .articles_slider_pager .swiper-button-next {
  right: 0;
}
.articles_detail .articles_slider_pager .swiper-button-prev {
  left: 0;
}
.articles_detail .articles_slider_pager .swiper-button-next:before,
.articles_detail .articles_slider_pager .swiper-button-prev:before {
  content: '';
  width: 2.5vw;
  height: 2.5vw;
  position: absolute;
  top: 0;bottom: 0;left: -1.33vw;right: 0;margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.articles_detail .articles_slider_pager .swiper-button-prev:before {
  left: 1.33vw;
  transform: rotate(-135deg);
}
.articles_detail .articles_slider_pager .swiper-slide {
  width: 25% !important;
}
.articles_detail .btn_list {
  margin: 3% 0 5%;
}
.articles_detail .btn_list:after {
  content: '';
  display: block;
  clear: both;
}
.articles_detail .btn_list li {
  float: left;
  width: 49%;
  margin: 0 0 2% 0;
}
.articles_detail .btn_list li:first-of-type {
  margin-right: 2%;
}
.articles_detail .btn_list li a {
  background-color: #F2F2F2;
  display: block;
  text-align: center;
  font-weight: bold;
  padding: 5%;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  position: relative;
  font-size: 2.83vw;
}
.articles_detail .btn_list li i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 3%;
  font-size: 30px;
  font-size: 4.33vw;
  color: #800000;
}
.articles_detail .btn_list li:nth-of-type(3) {
  width: 100%;
}
.articles_detail .btn_list li:nth-of-type(3) a {
  padding: 3%;
}
.articles_detail .btn_list li:nth-of-type(3) a img {
  width: 2em;
  display: inline-block;
  margin-top: 3px;
  margin-right: 10px;
}
.articles_detail .btn_list li a.out:after {
  content: '';
  position: absolute;
  top: 1.66vw;
  right: 1.66vw;
  width: 1.33vw;height: 0.83vw;
  border: 2px solid  #909090;
}
.articles_detail .btn_list li a.out:before {
  content: '';
  position: absolute;
  top: 1vw;
  right: 1vw;
  width: 2vw;height: 1.5vw;
  border-top: 2px solid  #909090;
  border-right: 2px solid  #909090;
}
.articles_detail .info {
  padding: 5% 3%;
  background-image: url(../img/detail_bg.png);
  margin-bottom: 5%;
}


.articles_detail .info strong {
  font-weight: bold;
}
.articles_detail .info em {
  font-style: italic;
}
.articles_detail .info blockquote {
  padding: 5%;
  position: relative;
  background-color: rgba(0,0,0,.1);
}
.articles_detail .info blockquote:before,
.articles_detail .info blockquote:after {
  position: absolute;
  opacity: .5;
  font-size: 8vw;
}
.articles_detail .info blockquote:before {
  content: '“';
  line-height: 1;
  top: 3px;
  left: 3px;
}
.articles_detail .info blockquote:after {
  content: '”';
  line-height: 0;
  bottom: 3px;
  right: 3px;
}
.articles_detail .info ul:not(.remarks) {
  padding-left: 2.3em;
}
.articles_detail .info ul:not(.remarks) li {
  list-style: disc;
}
.articles_detail .info ol {
  padding-left: 2.3em;
}
.articles_detail .info ol li {
  list-style: decimal;
}

.articles_detail .info ul.remarks {
  margin-top: 3%;
}
.articles_detail .info ul.remarks li {
  /* padding-left: 1em;
  text-indent: -1em; */
  font-weight: bold;
  color: #D53636;
}
.articles_detail .property {
  font-size: 22px;
  font-size: 3.66vw;
}
.articles_detail .property dt {
  padding: 2% 3%;
  background-color: #800000;
  margin-bottom: 3%;
  color: #fff;
  font-weight: bold;
}

.articles_detail .property02 dt {
  padding: 2% 3%;
  background-color: #800000;
  margin-bottom: 3%;
  color: #fff;
  font-weight: bold;
}
.articles_detail .property dd table {
  width: 100%;
  margin-bottom: 5%;
}
.articles_detail .property dd table tbody tr {
  border-bottom: 2px solid  #E3E3E3;
}
.articles_detail .property dd table tbody tr th {
  font-weight: bold;
  width: 40%;
  padding: 5% 3%;
}
.articles_detail .property dd table tbody tr td {
  width: 60%;
  padding: 5% 3%;
}
.articles_detail .contact_block {
  padding: 5% 3%;
  background-color: #D4D9DF;
  border-radius: 5px;
  margin: 5%;
  text-align: center;
}
.articles_detail .contact_block p {
  font-size: 26px;
  font-size: 4.33vw;
  font-weight: bold;
  position: relative;
}
.articles_detail .contact_block p:before,
.articles_detail .contact_block p:after {
  content: '';
  position: absolute;
  top: 0;bottom: 0;margin: auto;
  border-right: 2px solid  #000;
  transform: rotate(-45deg);
  left: 3%;
}
.articles_detail .contact_block p:after {
  left: auto;
  transform: rotate(45deg);
  right: 3%;
}
.articles_detail .contact_block a {
  font-weight: bold;
  background-color: #001e43;
  border-radius: 100px;
  border: 2px solid  #fff;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  display: block;
  padding: 2%;
  margin-bottom: 5%;
	color: #fff;
}
.articles_detail .contact_block img {
  width: 2em;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.articles_detail .contact_block dl dt {
  font-size: 26px;
  font-size: 4.33vw;
  font-weight: bold;
}
.articles_detail .contact_block dl dd {
  font-size: 40px;
  font-size: 5vw;
  color: #fff;
  font-weight: bold;
	 border: 2px solid  #fff;
  background-color: #001E43;
  border-radius: 100px;
  letter-spacing: -0.2em;
}
.articles_detail .contact_block dl dd img {
  height: 1em;
  width: auto;
}
.sns_btn {
  margin-bottom: 5%;
  width: 100%;
  text-align: center;
}
.articles_detail .contact_block dl dd span {
  font-size: 12px;
  font-size: 3.33vw;
  display: block;
  letter-spacing: normal;
  color: #fff;
  font-weight: normal;
  margin-top: -0.83vw;
}

.contact_block02 {
  padding: 2%;
  background-color: #D4D9DF;
  margin: 50;
  text-align: center;
}
.contact_block02 p {
  font-size: 26px;
  font-size: 4.33vw;
  font-weight: bold;
  position: relative;
}
.contact_block02 p:before,
.contact_block02 p:after {
  content: '';
  position: absolute;
  top: 0;bottom: 0;margin: auto;
  border-right: 2px solid  #000;
  transform: rotate(-45deg);
  left: 3%;
}
.contact_block02 p:after {
  left: auto;
  transform: rotate(45deg);
  right: 3%;
}
.contact_block02 a {
  font-weight: bold;
  background-color: #001e43;
  border-radius: 100px;
  border: 2px solid  #fff;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  display: block;
  padding: 2%;
  margin-bottom: 0%;
	color: #fff;
}
.contact_block02 img {
  width: 2em;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.contact_block02 dl dt {
  font-size: 26px;
  font-size: 4.33vw;
  font-weight: bold;
}
.contact_block02 dl dd {
  font-size: 40px;
  font-size: 5vw;
  color: #fff;
  font-weight: bold;
	 border: 2px solid  #fff;
  background-color: #001E43;
  border-radius: 100px;
  letter-spacing: -0.2em;
	display: none;
}
.contact_block02 dl dd img {
  height: 1em;
  width: auto;
}
.sns_btn {
  margin-bottom: 5%;
  width: 100%;
  text-align: center;
}
.articles_detail .contact_block dl dd span {
  font-size: 12px;
  font-size: 3.33vw;
  display: block;
  letter-spacing: normal;
  color: #fff;
  font-weight: normal;
  margin-top: -0.83vw;
}

.contact_block02 dl dd span {
  font-size: 12px;
  font-size: 3.33vw;
  display: block;
  letter-spacing: normal;
  color: #fff;
  font-weight: normal;
  margin-top: -0.83vw;
}
.sns_btn li {
  width: 30%;
  margin: 0 1%;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5%;
}
.sns_btn li a {
  display: block;
  padding: 8% 3%;
  color: #fff;
  border-radius: 5px;
  font-size: 30px;
  font-size: 5vw;
  line-height: 0;
}
.sns_btn .fb a {
  background-color: #3A5F9A;
}
.sns_btn .tw a {
  background-color: #55ACEE;
}
.sns_btn .line a {
  background-color: #00C302;
}
.sns_btn .insta a {
  position: relative;
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  overflow: hidden;
}
.sns_btn .insta a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.sns_btn .insta a i {
  position: relative;
  z-index: 2;
}
/*========================================================
search_index
========================================================*/
input[type=checkbox] + label,
input[type=radio] + label {
  cursor: pointer;
  padding-left: 8%;
  display: block;
}
.ac>dt>input[type=checkbox] + label {
  width: 93%;
}
input[type=checkbox] + label:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  bottom: 0;
  margin: auto;
  left: 2.6%;
  display: block;
  margin-top: -1.16vw;
  width: 1vw;
  height: 2vw;
  border-right: 3px solid #409ECC;
  border-bottom: 3px solid #409ECC;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 2;
}
input[type=checkbox] + label:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  bottom: 0;
  margin: auto;
  left: 1%;
  display: block;
  margin-top: -1.66vw;
  width: 4vw;
  height: 4vw;
  border: 1px solid #bbb;
  border-radius: 5px;
  content: '';
  background-color: #fff;
}
input[type=radio] + label:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  bottom: 0;
  margin: auto;
  left: 2.3%;
  display: block;
  margin-top: -0.6vw;
  width: 2.33vw;
  height: 2.33vw;
  background-color: #53b300;
  content: '';
  opacity: 0;
  border-radius: 100px;
  z-index: 2;
}
input[type=radio] + label:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  bottom: 0;
  margin: auto;
  left: 1%;
  display: block;
  margin-top: -1.66vw;
  width: 4vw;
  height: 4vw;
  border: 1px solid #bbb;
  border-radius: 100px;
  content: '';
  background-color: #fff;
}
input[type=checkbox]:checked + label:before,
input[type=radio]:checked + label:before {
  opacity: 1;
}
input[type=checkbox],
input[type=radio] {
  display: none;
}
#sold_out_hide + label {position: relative;padding-left: 30px;display: block;}
#sold_out_hide + label:before {
  left: 7%;
}
.search {
  padding-bottom: 10%;
}
.title1 {
  text-align: center;
  font-size: 28px;
  font-size: 4.66vw;
  font-weight: bold;
  margin-bottom: 3%;
  color: #fff;
}
.lity-container {width: 94%;background-color: #fff;border-radius: 5px;padding: 3%;height: 94%;}
.lity-content {max-height: 100%;overflow: auto;padding: 0 !important;}
.ac>dt:before {
  content: '';
  background-color: #fff;
  width: 3.63vw;
  height: 0.63vw;
  position: absolute;
  top: 0;bottom: 0;margin: auto;
  right: 2.33vw;
  z-index: 5;
}
.ac>dt:after {
  content: '';
  background-color: #fff;
  height: 3.63vw;
  width: 0.63vw;
  position: absolute;
  top: 0;bottom: 0;margin: auto;
  right: 3.83vw;
  z-index: 5;
}
.ac>dt.active:after {
  display: none;
}
.ac>dd {
  display: none;
}
.other_search.ac>dd {
  display: block;
}
.area.ac>dt:after,
.rent.ac>dt:after,
.space.ac>dt:after,
.other_search.ac>dt:after {
  background: none;
}
.area.ac>dt.active:after,
.rent.ac>dt.active:after,
.space.ac>dt.active:after,
.other_search.ac>dt.active:after {
  display: block;
}
.search div {
  padding: 3%;
}
.search div>dl,
.other_search {
  font-size: 22px;
  font-size: 3.66vw;
  margin-bottom: 5%;
}
.search div>dl>dt,
.other_search>dt {
  background-color: #F2F2F2;
  border-radius: 5px;
  padding: 3%;
  position: relative;
}
.area>dt:before,
.rent>dt:before,
.space>dt:before,
.other_search.ac>dt:before {
  content: '';
  width: 5.83vw;height: 5.83vw;
  position: absolute;
  top: 0;bottom: 0;right: 1.66vw;margin: auto;
  border-radius: 100px;
}
.area>dt:before {
  background-color: #8da0b6;
}
.rent>dt:before {
  background-color: #001E43;
}
.space>dt:before {
  background-color: #8DA0B6;
}
.other_search.ac>dt:before {
  background-color: #8DA0B6;
}
.area.ac>dt:after,
.rent.ac>dt:after,
.space.ac>dt:after,
.other_search.ac>dt:after {
  content: '';
  width: 1.66vw;height: 1.66vw;
  position: absolute;
  top: -3px;bottom: 0;right: 3.5vw;margin: auto;
  border-right: 2px solid  #fff;
  border-bottom: 2px solid  #fff;
  transform: rotate(45deg);
}
.area.ac>dt.active:after,
.rent.ac>dt.active:after,
.space.ac>dt.active:after,
.other_search.ac>dt.active:after  {
  top: 0;bottom: -5px;
  border: none;
  border-left: 2px solid  #fff;
  border-top: 2px solid  #fff;
}
.btn_fixed .other_search>dt:before,
.btn_fixed .other_search>dt:after {
  display: none;
}
.search div>dl>dd dt,
.search div>dl>dd dd,
.other_search>dd dt,
.other_search>dd dd {
  padding: 3% 3%;
  border-bottom: 2px solid  #FFF;
  font-size: 22px;
  font-size: 3.33vw;
  position: relative;
}
.search div>dl>dd dt span,
.search div>dl>dd dd span,
.other_search>dd dt span,
.other_search>dd dd span {
  display: inline-block;
  vertical-align: middle;
}
.search div>dl>dd dd>label>span,
.other_search>dd dd>label>span {
  position: absolute;
  right: 3%;
  top: 0;bottom: 0;margin: auto;
  height: 1em;
}
.other_search input[type=text] {
  width: 100%;
  padding: 3%;
}
.search .area dd dl dt {
  color: #fff;
  background-color: #8DA0B6;
}
.search .area dd dl dd {
  color: #8DA0B6;
  background-color: #DBE1E8;
}
.other_search dd dt {
  color: #fff;
  background-color: #8DA0B6;
  border-bottom: 2px solid  #fff !important;
}
.other_search dd {
  color: #8DA0B6;
  background-color: #DBE1E8;
  border-bottom: 2px solid  #fff !important;
}
.search .rent dd,
.search .space dd {
  padding: 5% 3%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  text-align: center;
  color: #fff;
}
.search .rent dd {
  background-color: #001E43;
}
.search .space dd {
  background-color: #8DA0B6;
}
.search .rent select,
.search .space select {
  width: 45%;
  padding: 3%;
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
}
.btn_fixed {
  position: fixed;
  bottom: 0;left: 0;
  width: 100%;
  background-color: rgba(0,0,0,0.5);
  padding: 1% !important;
  z-index: 10;
}
.btn_fixed button,
.other_search button,
.other_btn,
a.btn1,
button.btn1 {
  font-size: 22px;
  font-size: 3.66vw;
  color: #fff;
  font-weight: bold;
  background-color: #800000;
  text-align: center;
  width: 55%;
  padding: 2% 0;
  border: none;
  border-radius: 100px;
  display: block;
  position: relative;
}
.other_search button {
  margin: 10% auto;
}
.other_btn {
  width: 40%;
  background-color: #E8B2B4;
  float: right;
  line-height: 1.5;
}
.other_btn:before,
a.btn1.arrow:before {
  content: '';
  width: 8px;height: 8px;
  position: absolute;
  top: 0;bottom: 0;right: 10px;margin: auto;
  border-right: 2px solid  #fff;
  border-top: 2px solid  #fff;
  transform: rotate(45deg);
}
.btn_fixed button:before,
.other_search button:before {
  content: '';
  width: 2vw;height: 2vw;
  position: absolute;
  top: -0.5vw;bottom: 0;right: 2.66vw;margin: auto;
  border: 2px solid  #fff;
  border-radius: 100px;
}
.btn_fixed button:after,
.other_search button:after {
  content: '';
  width: 1.16vw;height: 1.16vw;
  border-bottom: 2px solid  #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 1.83vw;bottom: 0;right: 1.66vw;margin: auto;
}
.other_search button[type=reset],
a.btn1.reset {
  margin: 5% auto;
  font-size: 14px;
  font-size: 2.33vw;
  width: 45%;
  background-color: #F2F2F2;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  color: #000;
  font-weight: normal;
}
.other_search button[type=reset]:before,
.other_search button[type=reset]:after,
a.btn1.reset:before,
a.btn1.reset:after {
  display: none;
}
.other_search button[type=reset] + button {
  margin: 0 auto 10%;
}
a.btn1.arrow:before {
  display: block;
}
a.btn1.arrow.reset:before {
  border-right: 2px solid  #EB5F66;
  border-top: 2px solid  #EB5F66;
}
.btn_fixed {
  pointer-events: none;
  opacity: 0;
  transition: 0.8s;
}
.btn_fixed.on {
  pointer-events: auto;
  opacity: 1;
}
.btn_box {
  clear: both;
}
.btn_box ul {
  text-align: center;
  width: 100%;
  margin: auto;
}
.btn_box ul:after {
  content: '';
  clear: both;
  display: block;
}
.btn_box ul li:first-of-type {
  float: right;
  width: 40%;
}
.btn_box ul li:last-of-type {
  float: left;
  width: 55%;
}
.btn_box ul li a,
.btn_box ul li button {
  font-size: 3vw;
  display: block;
  width: 100%;
  line-height: 2;
}
.btn_box ul li a {
  background-color: #001E43;
}
.btn_box ul li button:before {
  content: '\e90f';
  font-family: "iconfont";
  font-size: 4vw;
  line-height: 0;
  position: absolute;
  top: 55%;
  right: 20px;
  margin: auto;
}
.btn_box ul li a:before {
  content: '';
  width: 1.33vw;
  height: 1.33vw;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.66vw;
  margin: auto;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}
/*========================================================
search_result
========================================================*/
.result_number {
  font-size: 24px;
  font-size: 4vw;
  font-weight: bold;
  text-align: center;
  padding: 2%;
  background-image: url(../img/detail_bg.png);
  margin-bottom: 3%;
}
.result_number span {
  color: #800000;
}
.change_search>dt {
  font-size: 22px;
  font-size: 3.66vw;
  text-align: center;
  font-weight: normal;
  padding: 2% !important;
  border: 1px solid  #707070;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}
.change_search.ac>dt:before,
.change_search.ac>dt:after {
  background-color: #4A4A4A;
}
.change_search>dd {
  border: 1px solid  #A2A2A2;
  padding: 3%;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  border-radius: 5px;
  margin-top: 3%;
}
.change_search>dd>p {
  margin-bottom: 10px;
}
.change_search>dd>p b {
  color: #9F1C2A;
  font-weight: bold;
  font-size: 24px;
  font-size: 4vw;
  display: block;
  margin-bottom: 5px;
}
.change_search>dd>p span {
  display: block;
}
.change_search>dd>dl {
  margin-bottom: 3%;
}
.change_search>dd>dl>dt {
  background-color: #F2F2F2;
  border-radius: 5px;
  padding: 3%;
  position: relative;
  text-align: left;
  border: none !important;
}
.change_search>dd>dl.other_search {
  margin-top: 3%;
  padding-top: 3%;
  border-top: 2px dotted  #DEDDDD;
}
.change_search>dd>dl.area>dd,
.change_search>dd>dl.other_search>dd {
  padding: 0 !important;
  display: none;
}
.change_search>dd>dl.rent>dd,
.change_search>dd>dl.space>dd {
  border: none !important;
}
.swiper-wrapper {
  width: 100%;
}
.search_result>div {
  padding: 0;
  margin-bottom: 3%;
}
.search_result>div>p {
  display: inline-block;
  vertical-align: middle;
  padding: 3% 0;
  position: relative;
}
.search_result>div>p input[type=checkbox] + label {
  padding-left: 17%;
}
.search_result>div>p input[type=checkbox] + label:after {
  top: auto;
  bottom: 15%;
}
.search_result>div>p input[type=checkbox] + label:before {
  top: auto;
  bottom: 23%;
  left: 4.5%;
}
.search_result>div select {
  padding: 3% 5% 3% 3%;
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  float: right;
}
.search_result.favo>div {
  border-bottom: 2px dotted  #DEDDDD;
}
.search_result.favo>div>p b {
  color: #9F1C2A;
  font-weight: bold;
  font-size: 24px;
  font-size: 4vw;
  display: block;
  margin-bottom: 5px;
}
.search_result>p {
  margin-bottom: 5%;
}
.search_result article {
  border: 2px solid  #EAE8E8;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  position: relative;
  margin-bottom: 5%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.search_result article a {
  position: absolute;
  top: 0;left: 0;
  width: 100%;height: 100%;
  z-index: 2;
}
.bookmark {
  width: 8.33vw;
  display: block;
  position: absolute;
  top: 2.5vw;
  right: 2.5vw;
  z-index: 10;
  color: #fff;
}
.articles_detail .bookmark {
  top: 2.5vw;
}
.bookmark svg {
  fill: none;
  stroke: rgb(235, 95, 102);
  stroke-width: 10;
}
.bookmark.on {
  animation: heart 0.6s linear 0s 1;
}
@keyframes heart {
  0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
  15%  { transform: scale(0.9, 0.9) translate(0%, 5%); }
  30%  { transform: scale(1.3, 0.8) translate(0%, 10%); }
  50%  { transform: scale(0.8, 1.3) translate(0%, -10%); }
  70%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
  100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}
.bookmark.on svg {
  fill: #EB5F66;
}
.bookmark.lock svg {
  stroke: #BABEBF;
  fill: #BABEBF;
}
.bookmark.lock.on {
  animation: none;
}
.search_result article h3 {
  padding: 0 15% 3% 3%;
  font-size: 22px;
  font-size: 3.66vw;
  background-color: #d4d9df;
  border-bottom: 2px solid  #E3E3E3;
  font-weight: bold;
  height: 3.5em;
}
.search_result article div {
  padding: 3%;
}
.search_result article div>span {
  display: block;
  margin-bottom: 3%;
}
.search_result article div>span i {
  font-size: 3.66vw;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  color: #800000;
}
.search_result article div>p {
  width: 39%;
  margin: 0 3% 3% 0;
  float: left;
  height: 30vw;
  overflow: hidden;
  position: relative;
}
.search_result article div>p img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}
.search_result article div dl {
  width: 57%;
  float: right;
  font-size: 3.33vw;
}
.search_result article div dl dt {
  display: inline-block;
  vertical-align: middle;
  width: 47%;
  padding: 0;
  background-color: #fff;
  padding-bottom: 3%;
}
.search_result article div dl dt:before,
.search_result article div dl dt:after {
  display: none;
}
.search_result article div dl dd {
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  width: 50%;
  padding: 0;
  padding-bottom: 3%;
}
.search_result article div dl dd span {
  white-space: nowrap;
}
.search_result article>p {
  position: relative;
  z-index: 3;
  padding: 3% 3% 1%;
  background-color: #D4D9DF;
  height: 3em;
}
.search_result article>p span {
  font-size: 2.33vw;
}
.pager ul {
  text-align: center;
  width: 100%;
  margin: 5% 0;
  position: relative;
  min-height: 35px;
}
.pager ul li {
  display: inline-block;
  vertical-align: middle;
  min-width: 7%;
  margin: 0 1%;
  display: none;
  position: relative;
}
.pager ul li:nth-of-type(2),
.pager ul li:nth-last-of-type(2),
.pager ul li.here {
  display: inline-block;
}
.pager ul li:nth-of-type(3):not(.here + li),
.pager ul li:nth-last-of-type(3):not(.here_prev) {
  margin: 0 1% !important;
}
.pager ul li:nth-of-type(3).here_prev,
.pager ul li:nth-last-of-type(3):not(.here_prev) {
  margin: 0 1% !important;
}
.pager ul li:nth-of-type(2):before,
.pager ul li:nth-last-of-type(2):after,
.pager ul li:nth-of-type(3):before,
.pager ul li:nth-last-of-type(3):after {
  display: none !important;
}
.pager ul li.here + li:not(.next) {
  display: inline-block;
  margin-right: 20px;
}
.pager ul li.here + li:not(.next):after {
  content: '...';
  color: #fff;
  position: absolute;
  bottom: 0;
  right: -20px;
}
.pager ul li.here_prev:not(.prev) {
  display: inline-block;
  margin-left: 20px;
}
.pager ul li.here_prev:not(.prev):before {
  content: '...';
  color: #fff;
  position: absolute;
  bottom: 0;
  left: -20px;
}
.pager ul li a {
  display: block;
  text-align: center;
  padding: 3%;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  border-radius: 100px;
  color: #EB5F66;
  font-weight: bold;
}
.pager ul li.here a {
  color: #fff;
  background-color: #EB5F66;
}
.pager ul li.prev,
.pager ul li.next {
  width: 15%;
  position: absolute;
  top: 0;margin: auto 0;
  display: inline-block;
}
.pager ul li.prev {
  left: 0;
}
.pager ul li.next {
  right: 0;
}
.pager ul li.back {
  width: 25%;
  position: absolute;
  top: 0;bottom: 0;margin: auto;
  right: 0;left: 0;
}
.pager ul li.prev a,
.pager ul li.next a {
  color: #fff;
  position: relative;
}
.pager ul li.prev a:before,
.pager ul li.next a:before {
  content: '';
  width: 8px;height: 8px;
  position: absolute;
  top: 0;bottom: 0;left: 0;right: 0;
  margin: auto;
  border-left: 3px solid  #EB5F66;
  border-bottom: 3px solid  #EB5F66;
  transform: rotate(45deg);
}
.pager ul li.next a:before {
  transform: rotate(-135deg);
}
.search_result.favo a.btn1 img {
  display: inline-block;
  vertical-align: middle;
  width: 10%;
  margin-right: 5px;
}
.search_result.favo a.btn1.reset {
  margin: 10px 0 10px auto;
  width: 40%;
}
.search_result.favo .entry_box article p label {
	display: inline-block;
}
a.btn1.contact {
  background-color: #FAEA27;
  color: #000;
  margin: 5% auto 10%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  width: 80%;
}
a.btn1.contact.arrow:before {
  border-right: 2px solid #E8373D;
  border-top: 2px solid #E8373D;
}

/*========================================================
news.index
========================================================*/

.NewsWp {
  padding: 15% 0 0 0;
}

.newcopnt01 {
  margin: 5% 0 15%;
}
.newcopnt01 a {
  color: #4196CB;
}

.newsinner {
  margin: 0 0 10% 0;
}

.newcopnt01>img {
  margin: 0 0 5%;
  width: 100%;
}

.newcopnt01>h2 {
  font-size: 24px;
  font-size: 4vw;
  font-weight: bold;
  margin: 0 0 3%;
}

.newcopnt01>p {
  font-size: 22px;
  font-size: 3.66vw;
  line-height: 1.8;
}


.newcopnt01 strong {
  font-weight: bold;
}
.newcopnt01 em {
  font-style: italic;
}
.newcopnt01 blockquote {
  padding: 5%;
  position: relative;
  background-color: rgba(0,0,0,.1);
}
.newcopnt01 blockquote:before,
.newcopnt01 blockquote:after {
  position: absolute;
  opacity: .5;
  font-size: 8vw;
}
.newcopnt01 blockquote:before {
  content: '“';
  line-height: 1;
  top: 3px;
  left: 3px;
}
.newcopnt01 blockquote:after {
  content: '”';
  line-height: 0;
  bottom: 3px;
  right: 3px;
}
.newcopnt01 ul {
  padding-left: 2.3em;
}
.newcopnt01 ul li {
  list-style: disc;
}
.newcopnt01 ol {
  padding-left: 2.3em;
}
.newcopnt01 ol li {
  list-style: decimal;
}

.unercont {
  text-align: center;
}

.unercont>a {
  color: #4196CB;
  font-weight: bold;
}

.unercont .pager {
  /* max-width: 220px; */
  margin: 0 auto;
  width: 90%;
}

.unercont .pager ul {
  text-align: center;
  width: 100%;
  margin: 5% 0;
  position: relative;
}

.unercont .pager ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 1%;
  width: 35px;
  min-width: unset;
}

.unercont .pager ul li a {
  display: block;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  border-radius: 100px;
  color: #EB5F66;
  font-weight: bold;
  padding: 5px 0;
  height: 35px;
  font-size: 15px;
  vertical-align: middle;
}

.unercont .pager ul li.here a {
  color: #fff;
  background-color: #EB5F66;
}

.unercont .pager ul li.prev,
.unercont .pager ul li.next {
  width: 35px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.unercont .pager ul li.prev {
  left: 0;
}

.unercont .pager ul li.next {
  right: 0;
}

.unercont .pager ul li.back {
  width: 25%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  left: 0;
}

.unercont .pager ul li.prev a,
.unercont .pager ul li.next a {
  color: #fff;
  position: relative;
  width: 35px;
}

.unercont .pager ul li.prev a:before,
.unercont .pager ul li.next a:before {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-left: 3px solid #EB5F66;
  border-bottom: 3px solid #EB5F66;
  transform: rotate(45deg);
}

.unercont .pager ul li.next a:before {
  transform: rotate(-135deg);
}

.pankuzu {
  font-size: 3vw;
  padding: 3% 5%;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.pankuzu a {
  color: #30a8f4;
}
.pankuzu li {
  display: inline-block;
  vertical-align: middle;
}
.pankuzu .icon-home:before {
  display: inline-block;
  vertical-align: middle;
}
.NewsWp .articles_detail article>section {
  padding: 3% 5%;
  position: relative;
}

/*========================================================
news.detail.html
========================================================*/

.titleInd {
  text-align: center;
  font-size: 28px;
  font-size: 4.66vw;
  font-weight: bold;
  margin-bottom: 3%;
  color: #fff;
}

.newsll li {
  border-bottom: solid 1px #CAC6C6;
}



.espan1 {
  background: #003f8e;
  border-radius: 30px;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  font-size: 3.66vw;
  margin: 0 18px;
}

.espan2 {
  background: #FCDE00;
  border-radius: 30px;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  font-size: 3.66vw;
  margin: 0 18px;
}


.newsll li:after {
  content: "";
  display: block;
  clear: both;
}

  .Ind h2 {
    font-size: 26px;
    font-size: 4.33vw;
    font-weight: bold;
    padding: 5%;
    border-bottom: 1px solid  #CAC6C6;
    text-align: center;
  }

/* 採用情報　現在の投稿が特定のスラッグ（例: 'post_9'） */
body main.recruit-post-9 .is-layout-flex{
  margin-top: 2em;
  font-size: initial;
}
.recruit-post-9 .detail_title{
  text-align: center;
}


/*========================================================
column.index
========================================================*/

.Ind .ColumnWp {
  padding: 50px 0 0 0;
}

.colull:after {
  content: "";
  display: block;
  clear: both;
}

.colull>li {
}

.colull li>article {
  border: 2px solid #EAE8E8;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  position: relative;
  margin-bottom: 5%;
  background-color: #fff;
  display: inline-block;
  vertical-align: top;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}

.colull li>article>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.colull li>article>dl ul>li>a {
  color: #4AA7E2;
  font-size: 12px;
  font-weight: bold;
}

.colull li>article>dl>dt>img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.colull li>article>dl>dt {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.colull li>article>dl>dd>p {
  font-weight: bold;
  font-size: 20px;
  font-size: 3.33vw;
}

.colull li>article>dl>dd>ul>li {
  display: inline-block;
  margin-right: 3%;
}


.colull li>article>dl>dd {
  padding: 3%;
}

.colull li>article>dl>dd>p>span {
  font-size: 16px;
  font-size: 2.66vw;
  display: block;
  color: #818181;
  margin-bottom: 1%;
}

.Column.wrap.pink:before {
  background-color: #001e43;
  height: 270px;
  width: 100%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}

.colull li:after {
  content: "";
  display: block;
  clear: both;
}

.categoryWp {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
}

.categoryWp>dd {
  font-size: 11px;
  display: inline;
  vertical-align: top;
}

.categoryWp>dt {
  display: inline-block;
  vertical-align: top;
}

dl.categoryWp>dd>span {
  background: #F5F5F5;
  color: #4AA7E2;
  padding: 2px 10px;
  border-radius: 20px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
  vertical-align: middle;
}


  .colull {
    margin: 0 0 50px 0;
  }


  .Column.wrap.pink {
    background-color: #fde533;
  }


/*========================================================
column.detail.html
========================================================*/

.Column.wrap.pink:before {
  background-color: #001e43;
  height: 270px;
  width: 100%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}

.Column.Detail .inner>ul:after {
  content: "";
  display: block;
  clear: both;
}

.sidecont {
  float: left;
  width: 30%;
  padding: 0 0 0 2%;
}

.sidecont>h2 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 40px auto 20px;
}

.sidecont>ul:after {
  display: block;
  content: "";
  clear: both;
}

.sidecont>ul>li>dl>dd {
  float: left;
  width: 32.5%;
  max-width: 92px;
  margin: 0;
}

.sidecont>ul>li>dl {
  margin: 0 0 5px 0;
}

.sidecont>ul>li>dl>dd:after {
  content: "";
  display: block;
  clear: both;
}

.sidecont>ul>li>dl>dd>img {
  width: 100%;
}

.sidecont>ul>li>dl>dt {
  float: left;
  width: 67%;
  font-size: 13px;
  padding: 0 0 0 19px;
  line-height: 135%;
}

.sidecont>ul>li>dl>dt>span {
  display: block;
  color: #818181;
}

.sidecont>ul>li>dl>dt>a {
  color: #4196CB;
  line-height: 100%;
}

.sidecont>ul>li>dl:after {
  content: "";
  display: block;
  clear: both;
}

.sidecont>ul>li {
  margin: 0;
}

.Column.Detail .inner>ul {
  width: 94%;
  margin: 0 auto;
}

.Column.Detail .inner>ul>li:first-child {
  float: left;
  width: 70%;
  max-width: 640px;
}

.Column .hizuke {
  padding: 0 0 0 0;
  margin: 10px 0 0 0;
}

.unercont .sns_btn + a {
  text-align: center;
  margin-bottom: 10px;
}
.oshirasbox {
  width: 90%;
  position: relative;
  margin: 0 auto 3%;
  text-align: right;
}

.oshirasbox:after {
  content: "";
  clear: both;
  display: block;
}

.oshirasbox>a {
  color: #2B2B2B;
}

.oshirasbox>a:after {
  content: '';
  width: 9px;
  height: 9px;
  border-top: 3px solid #800000;
  border-right: 3px solid #800000;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -16px;
  margin: auto;
  transform: rotate(45deg);
  transition: .3s;
}
.oshirasbox:first-of-type {
  position: relative;
  text-align: left;
}

.oshirasbox:first-of-type:after {
  content: "";
  clear: both;
  display: block;
}

.oshirasbox:first-of-type>a {
  color: #2B2B2B;
}

.oshirasbox:first-of-type>a:after {
  content: '';
  width: 9px;
  height: 9px;
  border-top: 3px solid #800000;
  border-right: 3px solid #800000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -16px;
  right: auto;
  margin: auto;
  transform: rotate(-135deg);
  transition: .3s;
}



.Column h1>span {
  color: #4AA7E2;
  font-size: 12px;
  margin: 0 11px 0 0;
}


  .Detail .inner {
    background-color: #fff;
    border-radius: 5px;
    width: 94%;
    max-height: auto !important;
    z-index: 5;
    position: relative;
    margin: 0 auto 15px;
  }

  .sidecont {
    float: none;
    width: 100%;
  }

  .Column.Detail .inner>ul>li:first-child {
    float: none;
    width: 100%;
  }


  .Column h1 {
    margin: 0 0 18px 0;
    line-height: unset;
    padding: 5% 0;
  }

  .Ind .ColumnWp {
    padding: 15px 0 0 0;
  }


  /*========================================================
  news.index.html
  ========================================================*/

  .NewsWp {
    padding: 15px 0 0 0;
  }

  .newsll li>dl>dt {
    font-size: 20px;
    font-size: 3.33vw;
    width: 100%;
    padding: 30px 0 0 0;
      color: #818181;
  }

  .newsll li>dl>dd {
    color: #4AA7E2;
    font-size: 22px;
    font-size: 3.66vw;
    float: left;
    width: 100%;
    padding: 10px 0;
  }

  .Ind .inner {
    background-color: #fff;
    border-radius: 5px;
    width: 94%;
    max-height: auto !important;
    z-index: 5;
    position: relative;
    margin: 0 auto 15px;
  }

  /*========================================================
  form
  ========================================================*/

.Contactform em {
  color: #EB5F66;
}

#contactForm {
  border-top: 1px solid #eee;
  padding: 20px 0 0 0;
}

#contactForm input::placeholder {
  color: #E36A70;
  opacity:0.3;
}

.Contact .contact_tb tr:first-of-type input::placeholder,
#contactForm textarea::placeholder {
  color: #000 !important;
  opacity:0.3;
}

.contact_tb {
  width: 96%;
  margin: 0 auto;
}

#contactForm tr td label {
  font-size: 3.33vw;
}

.contactForm {
  border-top: 1px solid #eee;
}

.Contact #contactForm {
  border-top: 0px solid #eee;
  padding: 5% 5%;
  width: 100%;
  margin: 0 auto;
}


.contact_tb ul>li>ul>li {
  float: left;
  width: 70%;
}

.contact_tb ul>li>ul>li:first-child {
  float: left;
  width: 30%;
}

.bnt_yajirushi>a:after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #eb5f66;
  border-right: 2px solid #eb5f66;
  position: absolute;
  top: 3px;
  bottom: 0;
  left: 5px;
  margin: auto;
  transform: rotate(225deg);
  transition: .3s;
}

.Contactform .inner {
  /* max-width:980px; */
  margin: 0 auto;
}




/*css radio02*/
#contactForm input[type=checkbox]+label,
#contactForm input[type=radio]+label {
    position: relative;
    cursor: pointer;
    padding-left: 28px;
    display: inline-block;
    vertical-align: middle;
}

.gorenrakukibouul:after{
  clear:both;
  display:block;
  content:"";
}


.contact_tb .radio02{
  padding:0;
}

.wrap.pink:before {
    background-color: #001E43;
    height: 320px;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}
.wrap.pink.search-wrap:before {background-color: #9D9EA0;}


.Contact .contact_tb > tbody > tr > td {
    background: none;
    padding: 3%;
    vertical-align: middle;
    float: left;
    width: 100%;
}


#contactForm em {
    color: #E36A70;
}


#contactForm input[type=checkbox] + label,
#contactForm input[type=radio] + label {
  position: relative;
  cursor: pointer;
  padding-left: 25px;
  display: block;
  margin: 0 2% 2% 0;
}

.Contact #contactForm .radio02 label {
    display: inline-block;
}

#contactForm input[type=checkbox] + label:before,
#contactForm input[type=radio] + label:before {
  -webkit-transition: opacity 0.2s linear;
  opacity: 0;
  -ms-transform: rotate(45deg);
  transition: border-color 0.2s linear;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  content: '';
  background-color: #eb5f66;
  vertical-align: middle;
  margin: auto 0 auto 0.8vw;
  z-index: 2;
}


#contactForm input[type=checkbox]:checked + label:before,
#contactForm input[type=radio]:checked + label:before {
  opacity: 1;
}

#contactForm input[type=checkbox] + label:after,
#contactForm input[type=radio] + label:after {
  margin-top: -10px;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #959292;
  border-radius: 50%;
  content: '';
  background-color: #fff;
  vertical-align: middle;
  margin: auto;
}
#contactForm input[type=checkbox],
#contactForm input[type=radio] {
  display: none;
}



.contact_tb th {
    font-size: 4vw;
    width: 100%;
    padding: 0 0 2% 0;
    font-weight: bold;
    display: block;
}
.contact_tb td {
    padding: 0 0 5.8% 0;
    display: block;
}

.bnt_yajirushi>a {
    display: block;
    padding: 0px 0 0 20px;
    position: relative;
    font-size: 3.33vw;
    color: #4AA7E2;
}

.Contact .contact_tb input[type="text"] {
    padding: 3%;
    border: 1px solid #DCD9D9;
    width: 100%;
    font-size: 3vw;
    background: #F7EAEB;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    border: 1px solid #DCD9D9;
    border-radius: 5px;
}
.Contact .contact_tb tr:first-of-type input[type="text"] {
  background-color: #fff;
}

.contact_tb textarea {
    padding: 3%;
    border-radius: 5px;
    border: 1px solid #DCD9D9;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    resize: none;
    height: 10em;
    width: 100%;
    font-size: 3vw;
}

.bntsendwp>li {
    position: relative;
    width: 90%;
    margin: 0 auto 5%;
    max-width: 320px;
}

.bntsendwp .bntsend {
    color: #fff;
    margin: 0 auto;
    display: block;
    background: #d82730;
    border: none;
    border-radius: 40px;
    font-size: 3.66vw;
    width: 100%;
    padding: 3% 0;
    cursor: pointer;
    transition: .2s;
    max-width: 320px;
}
.Contact .bntsendwp .bntsend {
  color: #fff;
  font-weight: bold;
  background-color: #E8373D;
  text-align: center;
  width: 200px;
  padding: 10px 0;
  border: none;
  border-radius: 100px;
  display: block;
  position: relative;
  font-family: inherit;
  top: 0;
  left: 0;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  transition: 0.3s;
  width: 340px;
  box-sizing: border-box;
  padding: 20px 0;
  text-align: center;
  margin: auto;
  font-size: 16px;
  cursor: pointer;
}
.jikantai {
    font-size: 2.7vw;
    margin: 0 0 0 0;
}

.gorenrakukibouul > li{
  width: 85%;
  float:none;
}

.gorenrakukibouul > li:first-child{
  width: 100%;
}

.Contact .contact_tb th {
  font-size: 3.33vw;
  width: 100%;
  padding: 0 0 5px 0;
  font-weight: bold;
  background: none;
  background: #F1F1F1;
  padding: 3%;
  vertical-align: middle;
  background: #F1F1F1;
  width: 100%;
  box-sizing: border-box;
  float: left;
}

.Contact .contact_tb th span{
    font-weight: normal;
}

.bntsendwp>li:before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  right: 10%;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  transition: .3s;
  position: absolute;
  z-index: 1;
}

.Contact .bntsendwp>li:before {
  display: none;
}

.jikantai select {
  font-size: 2.66vw;
  width: 40.5%;
  padding: 3%;
  border-radius: 5px;
  border: 1px solid #959292;
  margin: 0 3%;
  background-color: #fff;
}
.jikantai select:first-of-type {
  margin: 0 3% 0 0;
}

.privacyA {
  text-align: center;
  color: #4AA7E2;
  font-size: 3.66vw;
  font-weight: bold;
}

.radio03 {
  margin: 0 0 5px 0;
}
.cyumoku {
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  font-size: 4.33vw;
  padding: 5% 0;
  border-bottom: 1px solid #CAC6C6;
}

.cyumoku2 {
    padding: 0 5%;
}
.cyumoku em {
    color: #E36A70;
}

.confirm .cyumoku {
  font-weight: normal;
  text-align: left;
  padding: 5%;
}
.confirm .contact_tb td {
  font-size: 3.66vw;
  padding: 3% 0 10%;
}
.confirm .contact_tb .gorenrakukibouul,
.confirm .contact_tb .gorenrakukibouul li {
  padding: 0;
}
.confirm .bntsendwp {
  text-align: center;
  padding: 5% 0 0;
}
.confirm .bntsendwp>li {
  display: inline-block;
  width: 40%;
  margin: 0 1%;
}

.confirm .bntsendwp .bntback {
  color: #fff;
  margin: 0 auto;
  display: block;
  background: #999;
  border: none;
  border-radius: 40px;
  font-size: 3.66vw;
  width: 100%;
  cursor: pointer;
  transition: .2s;
  max-width: 320px;
}

.confirm .bntsendwp li input {
  padding: 5% 0;
}
.confirm .bntsendwp li:first-child:before {
  right: auto;
  left: 10%;
  transform: rotate(-135deg);
}
.thanks .cyumoku {
  font-size: 4.33vw;
}
.thanks .cyumoku + div {
  padding: 3%;
  text-align: center;
}
.thanks .cyumoku + div p {
  margin-bottom: 5%;
}
.thanks .cyumoku + div a.btn1 {
  margin: 0 auto 5%;
}

/*========================================================
company
========================================================*/
.company_box {
  padding: 5%;
  margin-bottom: 10%;
}
.company_box article {
  width: 100%;
  margin: 0 auto 10%;
}
.company_box article h1 {
  font-size: 4.16vw;
  margin-bottom: 10%;
  color: #595757;
  text-align: center;
  font-weight: bold;
}
.company_box article img {
  margin-bottom: 5%;
  width: 100%;
}
.company_box article p {
  margin-bottom: 5%;
}
.company_box article h2 {
  font-size: 3.66vw;
  margin-bottom: 10%;
  color: #595757;
  text-align: center;
  font-weight: bold;
}
.company_box article table {
  width: 100%;
}
.company_box article table tbody tr {
  width: 100%;
}
.company_box article table tbody tr th {
  padding: 2% 3%;
  width: 100%;
  font-weight: bold;
  float: left;
  background-color: #595757;
  color: #fff;
}
.company_box article table tbody tr td {
  padding: 5% 3%;
  width: 100%;
  float: left;
}
.company_box article.center {
  text-align: left !important;
  line-height: 2;
}

/*========================================================
faq
========================================================*/
.faq_box {
  margin-bottom: 10%;
}
.faq_box ul {
  text-align: center;
  padding: 5%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.faq_box ul li {
  width: 48%;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5% 1%;
  cursor: pointer;
  background-color: rgba(186, 190, 191, 0.8);
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  transition: 0.3s;
  position: relative;
}
.faq_box ul li a {
  color: #fff;
  padding: 5% 5px;
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  display: block;
  line-height: 1.4;
}
.faq_box article {
  padding: 5%;
}
.faq_box article h1 {
  color: #9F1C2A;
  font-weight: bold;
  font-size: 4.33vw;
  display: block;
  margin-bottom: 5px;
}
.faq_box article dl {
  margin-bottom: 5%;
}
.faq_box article dl:last-of-type {
  margin-bottom: 0;
}
.faq_box article dl dt {
  position: relative;
  padding: 1.66vw 5vw 1.66vw 7.33vw;
  background-color: #F2F2F2;
  font-weight: bold;
}
.faq_box article dl dt span,
.faq_box article dl dd span {
  font-size: 5vw;
  position: absolute;
  width: 1em;
  height: 1em;
  top: 1.66vw;left: 1.66vw;
  font-weight: bold;
  color: #800000;
  line-height: 1;
}
.faq_box article dl dd span {
  color: #BABEBF;
}
.faq_box article dl dt:before,
.faq_box article dl dt:after {
  background-color: #333;
}
.faq_box article dl dd {
    position: relative;
    padding: 1.66vw 5vw 1.66vw 7.33vw;
    font-size: 3vw;
}
/*========================================================
privacy
========================================================*/
.privacy_box {
  padding: 5%;
  margin-bottom: 10%;
}
.privacy_box>p {
  margin-bottom: 5%;
}
.privacy_box>ul>li {
  margin-bottom: 5%;
}
.privacy_box>ul>li:last-of-type {
  margin-bottom: 0;
}
.privacy_box>ul>li p b {
  color: #9F1C2A;
  font-weight: bold;
  font-size: 4.33vw;
  display: block;
  margin-bottom: 5px;
}
.privacy_box>ul>li ol {
  margin-top: 3%;
}
.privacy_box>ul>li ol li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 3%;
}

/*========================================================
sitemap
========================================================*/
.sitemap_box {
  padding: 5%;
  columns: auto 2;
  margin-bottom: 10%;
}
.sitemap_box dl {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin: 0 0 5%;
}
.sitemap_box dl dt {
  font-weight: bold;
  margin-bottom: 3%;
  position: relative;
  padding-left: 5px;
}
.sitemap_box dl dt:before,
.sitemap_box dl dd:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #474a4d;
  position: absolute;
  top: 0;bottom: 0;left: -5px;margin: auto;
}
.sitemap_box dl dd:before {
  left: 0;
}
.sitemap_box dl dd {
  padding-left: 10px;
  position: relative;
  margin-bottom: 5px;
}
/*========================================================
contact(static)
========================================================*/
.contact_box {
  padding: 5%;
}
.contact_box>p {margin-bottom: 3%;}
.contact_box .contact_form {
  padding: 0;
}
.contact_box .contact_form table {
  border: none;
}
.contact_box .contact_form table th {
  font-weight: bold;
  vertical-align: top;
}
.contact_box .contact_form table th span:not(.red) {
  font-weight: normal;
}
.contact_box .contact_form table tr {
  border: none;
}
.contact_box .contact_form label {
  display: block;
  vertical-align: middle;
  margin-bottom: 3%;
  position: relative;
}
.contact_box .contact_form .areas label {
  display: block !important;
  margin-bottom: 3% !important;
}
.contact_box .contact_form .areas label:last-of-type {
  margin-bottom: 0 !important;
}
.contact_box .contact_form .address input {
  margin-bottom: 3%;
}
.contact_box .contact_form .input3 + span {
  margin: 0 5px;
}
.contact_box .contact_form input,
.contact_box .contact_form select,
.contact_box .contact_form textarea {
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  border: 1px solid #DCD9D9;
  border-radius: 5px;
}
.contact_box .contact_form input[required="required"],
.contact_box .contact_form select[required="required"],
.contact_box .contact_form textarea[required="required"],
.contact_box .contact_form .required input,
.contact_box .contact_form .required select,
.contact_box .contact_form .required textarea,
.contact_box .contact_form .required input[type=radio] + label:after,
.contact_box .contact_form .required input[type=checkbox] + label:after {
  background-color: rgba(235, 95, 102,0.1);
}
.contact_box .contact_form input[type=radio] + label:before {
  background-color: #eb5f66;
}
.contact_box .contact_form input[type=checkbox] + label:before {
  border-right: 3px solid #eb5f66;
  border-bottom: 3px solid #eb5f66;
}

/*========================================================
tips
========================================================*/
.wrap.open {background-color: #001E43;}
.wrap.closed {background-color: #409ecc;}
.wrap.rent {background-color: #003f8e;}
.wrap.customer:before {background-color: #82cddd;}
.wrap.seller {background-color: #8da0b6;}
.wrap.performance {background-color: #d4d9df;}
.oc {color: #001E43 !important;}
.cc {color: #409ecc !important;}
.rc {color: #003f8e !important;}
.sc {color: #8da0b6 !important;}
.obgc {background-color: #001E43;color: #fff;}
.cbgc {background-color: #409ecc;color: #fff;}
.rbgc {background-color: #003f8e;color: #fff;}
.sbgc {background-color: #8da0b6;color: #fff;}
.ybgc {background-color: #d4d9df;color: #fff;}
.redbgc {background-color: maroon;color: #fff;}
.bxbdr {border-radius: 5px;}
.bxbdrall {border-radius: 100px;}
.bxwrap1 {width: 100%;margin: auto;background-color: #F7F6FB;padding: 5%;margin-bottom: 10%;}
.bxwrap2 {width: 100%;margin: auto;background-color: #fff;padding: 5%;}
.bxwrap3 {width: 100%;margin: auto;background-color: #fff;padding: 5%;}
.bxbd1 {border: 1px solid #727171;border-radius: 5px;padding: 5%;}
.bxbd2 {border: 1px solid #58a6bc;border-radius: 5px;padding: 5%;background-color: #fff;}
.heading {font-size: 4.33vw;font-weight: bold;margin-bottom: 5%;text-align: center;}
.sub_heading {font-size: 3.33vw;font-weight: bold;margin-bottom: 5%;color: #595757;}
.num_heading {font-size: 4.33vw;font-weight: bold;text-align: center;padding: 0 3%;margin-bottom: 3%;}
.num_heading span {display: block;color: #fff !important;font-size: 5%;position: relative;z-index: 2;margin-bottom: 5px;font-size: 3.33vw;}
.num_heading span:before {content: '';position: absolute;top: 0;bottom: 0;left: 0;right: 0;margin: auto;width: 6.66vw;height: 6.66vw;z-index: -1;border-radius: 100px;}
.num_heading span.o:before {background-color: #001E43;}
.num_heading span.c:before {background-color: #409ecc;}
.num_heading span.r:before {background-color: #003f8e;}
.num_heading span.s:before {background-color: #8da0b6;}
.tips_box {padding: 5% 3%;}
.tips_box img {width: 100%;}
.tips_box .f16 {font-size: 3.33vw !important;}
.tips_box .f14 {font-size: 2.83vw !important;}
.tips_box .f12 {font-size: 2.33vw !important;}
.contact_txt {text-align: center;padding: 0 5%;}
.contact_txt p {font-size: 3.33vw;font-weight: bold;color: #595757;margin-bottom: 3%;}
.contact_txt a {max-width: 450px;border-radius: 100px;background-color: #800000;color: #fff;text-align: center;margin: auto;display: block;padding: 3%;}
.tips_inner_box {margin-bottom: 5%;}
.tips_inner_box:after {content: '';display: block;clear: both;}
.tips_inner_box img {width: 100%;margin: 0 0 5% 0;}
.tips_inner_box>p {clear: both;margin-bottom: 3%;}
.tips_inner_box a {display: block;padding: 3% 5%;width: 200px;text-align: center;clear: both;margin: auto;}
.tips_inner_box div p {clear: both;margin-bottom: 3%;}
.tips_inner_box .tips_inner_heading {font-size: 4vw;font-weight: bold;margin-bottom: 3%;}
.tips_inner_btn {}
.tips_inner_btn li {width: 100%;margin: 0 auto 3%;}
.tips_inner_btn li a {text-align: center;margin: auto;display: block;padding: 10px 20px;}
.bxarrow {position: relative;}
.bxarrow:after {content: '';width: 2.5vw;height: 2.5vw;border-bottom: 2px solid #000;border-right: 2px solid #000;transform: rotate(45deg);position: absolute;bottom: -4.16vw;left: 0;right: 0;margin: auto;}
.tips_list li .bxarrow:after {display: none;}
.bxarrow.o:after {border-bottom: 2px solid #001E43;border-right: 2px solid #001E43}
.bxarrow.c:after {border-bottom: 2px solid #409ecc;border-right: 2px solid #409ecc}
.bxarrow.r:after {border-bottom: 2px solid #003f8e;border-right: 2px solid #003f8e}
.bxarrow.s:after {border-bottom: 2px solid #8da0b6;border-right: 2px solid #8da0b6}
.tips_arrow {text-align: center;margin-bottom: 5%;}
.tips_arrow img {width: 12vw !important;}
.tips_list {;margin-bottom: 5%;}
.tips_list li {width: 100%;margin: 0 1%;padding: 3%;font-weight: bold;font-size: 3vw;text-align: center;margin-bottom: 3%;}
.tips_list li br {display: none;}
.tips_inner_list {width: 100%;margin: auto;margin-bottom: 5%;}
.tips_inner_list li {margin-bottom: 3%;width: 100%;display: table;}
.tips_inner_list li span {display: inline-block;vertical-align: middle;width: 13%;text-align: center;padding: 10px;margin-right: 3%;font-size: 16px;font-weight: bold;}
.tips_inner_list li p {display: inline-block;vertical-align: middle;width: 83%;}
.tips_top_list {}
.tips_top_list li {width: 100%;margin: 0 auto 3%;text-align: center;background-color: #fff;padding: 3%;border-radius: 5px;}



.col-head-type1 {
  border: 1px solid #54A6BD;
  border-collapse: separate;
  border-radius: 5px;
  border-spacing: 0;
		margin:50px 0 10px;
	word-break: break-all;
}
.col-head-type1 th, .col-head-type1 td {
  border-bottom: 1px solid #54A6BD;
display: block;
    width: 100%;
  padding: 3px 10px;
}
.col-head-type1 th {
  background: #F7F6FB;
font-weight: 800;
}

.col-head-type1 tr:last-child td {
   padding: 10px 10px;
}

.insta01-banner{
	display: flex;
	flex-wrap:wrap;
}
.insta01-banner li {
	width: calc(100%/3);/*←画像を横に4つ並べる場合*/
	padding:1px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
}
.insta01-banner li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
}


.pcimg { display: none !important; }
.spimg { display: block !important; }

.fixed_btn001
{
  position: fixed;
  bottom: 0px; 
  right: 3px;
  padding: 3px;
z-index: 10;
}

.fixed_btn002
{
  position: fixed;
  bottom: 0px; 
  right: 0px;
z-index: 10;
	width: 100%;
}

.soldoutImg::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.5);
  z-index: 10;
}

.soldout{
  position: absolute;
  width: 50%;
  height: 20%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
}
#panorama {
  width: 100%;
  height: 50vw;
  max-height: 400px;
}
/* サムネイル部分 */
.panorama-navs {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  margin: 10px 0;
  flex-wrap: wrap;
}
.panorama-navs li {
  width: calc(100% / 3);
  padding: 0px 5px 10px;
}
.panorama-navs li:first-of-type{
  padding-left: 0;
}
.panorama-navs li:nth-of-type(3n) {
  padding-right: 0;
}
.panorama-navs li > a {
  display: inline-block;
  background-color: #fff;
  position: relative;
}
.panorama-navs li > a > img {
  width: 100%;
  object-fit: cover;
  height: 10vh;
}
.panorama-navs li > a span{
  position: absolute;
  width: 100%;
  background: rgba(255,255,255,0.8);
  text-align: center;
  font-size: 11px;
  z-index: 1;
}
.panorama-navs li > a:hover img {
  opacity: 0.65;
  cursor: pointer;
}

/* wp-pagenavi */
.wp-pagenavi {/* 全体 */
  margin: 20px 0;
  font-size: 12px;
  text-align: center;
}
.wp-pagenavi a {/* フォント色 */
  color: #4a4a4a;
}
.wp-pagenavi .current,
.wp-pagenavi a.page {/* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  border: solid 1px #eee;
  box-shadow: 0 2px 10px rgb(0 0 0 / 30%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  transition: 0.3s;
  background-color: #fff;
  color: #800000;
  font-weight: bold;
}
.wp-pagenavi .current {/* カレント数字 */
  border: none;
  background: #800000;
  color: #fff;
}
.wp-pagenavi a.page:hover {/* マウスオーバー */
  color: #fff;
  background: #800000;
  box-shadow: 0 0 0 rgb(0 0 0 / 0%);
  top: 2px;
  left: 2px;
}
.wp-pagenavi .first,
.wp-pagenavi .extend {/* ... */
  margin-right: 10px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {/* 記号の削除 */
  display: none;
}
