@charset "utf-8";
#concept .lead_txt {
  margin-bottom: 60px;
}
#concept .anc_link_list {
  max-width: 740px;
  margin: 0 auto;
  justify-content: center;
}
.venue .wrap {
  padding-bottom: 100px;
}
.venue .btn_wrap {
  margin-top: 100px;
}
.venue .venue_box {
  margin-top: 100px;
  padding-top: 20px;
}
.venue .venue_box:first-of-type {
  margin-top: 0;
}
.venue .venue_box .images {
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
.venue .venue_box .images img {
  width: 100%;
  border-radius: 10px;
}
.venue .venue_box .content {
  padding-left: 80px;
  color: var(--mainColor);
}
.venue .venue_box .content .cts_title {
  margin-bottom: 15px!important;
}
.venue .venue_box .content p {
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 500;
}
.venue .venue_box .content .detail {
  margin: 50px 0 0 0;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 25px;
}
.venue .venue_box .content .detail table {
  width: calc(100% - 140px - 25px);
}
.venue .venue_box .content .detail table th,
.venue .venue_box .content .detail table td {
  color: var(--mainColor);
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 500;
  padding: 8px 0;
  text-align: left;
}
.venue .venue_box .content .detail table th {
  font-size: 14px;
  line-height: 1.2em;
  width: 120px;
}
.venue .venue_box .content .detail table th .icon {
  padding-left: 35px;
  position: relative;
  display: inline-block;
}
.venue .venue_box .content .detail table th .icon.human:before {
  content: '';
  width: 25px;
  height: 25px;
  background: url(../p_common/images/icon/human.png) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
}
.venue .venue_box .content .detail table td {
  border-bottom: 1px solid #000;
  vertical-align: middle;
}
.venue .venue_box .content .detail table td .inner {
  justify-content: space-between;
  flex-wrap: nowrap;
}

#scene .list_wrap {
  margin: 50px 0;
  justify-content: center;
  gap: 40px 60px;
}
#scene .list_wrap .list_box {
  width: calc((100% - 60px*3)/4);
}
#scene .list_wrap .list_box a {
  display: block;
  text-decoration: none;
}
#scene .list_wrap .list_box a .eyecatch {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
  transition: .5s;
  position: relative;
}
#scene .list_wrap .list_box a .eyecatch:before {
  content: '';
  display: block;
  padding-top: 100%;
}
#scene .list_wrap .list_box a .eyecatch img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#scene .list_wrap .list_box a:hover,
#scene .list_wrap .list_box a:hover img {
  opacity: 1;
}
#scene .list_wrap .list_box a:hover .eyecatch {
  border-radius: 230px;
  opacity: 1;
}
#scene .list_wrap .list_box a .cts {
  width: 100%;
  padding: 10px 0 0 0;
  position: relative;
}
#scene .list_wrap .list_box a .btn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%,-50%);
  z-index: 2;
  pointer-events: all;
  cursor: pointer;
}
#scene .list_wrap .list_box a .btn:before {
  content: '';
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: var(--mainColor);
  z-index: 2;
  /* animation: eventHover-out .3s ease-out forwards; */
}
#scene .list_wrap .list_box a .btn:after {
  content: '';
  width: 16px;
  height: 7px;
  background: url("../p_common/images/icon/btn_circle_arrow_wht.png") no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
}
#scene .list_wrap .list_box a:hover .btn:before {
  /* animation: eventHover .3s ease-out forwards; */
}
@keyframes eventHover {
  0% {
    width: 70px;
    height: 70px;
  }
  99.9999%, 100% {
    width: 90px;
    height: 90px;
  }
}
@keyframes eventHover-out {
  0% {
    width: 90px;
    height: 90px;
  }
  99.9999%, 100% {
    width: 70px;
    height: 70px;
  }
}
#scene .list_wrap .list_box a:hover .btn:after {
  animation: btnArrow .3s ease-out forwards;
}
#scene .list_wrap .list_box a .cts h3 {
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 800;
  margin: 10px 0;
}
#scene .list_wrap .list_box a .cts p {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 600;
}
#scene a.btn_circle {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
  z-index: 10;
}
#lower #scene .main_title {
  margin: 0 0 25px;
}


section.detail {
  background: #f7f7ed;
}
section.detail .wrap {
  padding: 100px 0;
}
section.detail .detail_box {
  width: 100%;
  background: #fff;
  padding: 50px 20px 60px;
  margin: 0 0 60px;
  color: var(--mainColor);
}
section.detail .detail_box:last-of-type {
  margin-bottom: 0;
}
section.detail .detail_box .lead_txt {
  margin-bottom: 40px;
}
section.detail .detail_box .layout_list,
section.detail .detail_box .gallery_list {
  width: 100%;
  max-width: 890px;
  justify-content: flex-start;
  gap: 30px 40px;
  margin: 0 auto;
}
section.detail .detail_box .layout_list a,
section.detail .detail_box .gallery_list a {
  text-decoration: none;
  color: var(--mainColor);
}
section.detail .detail_box .layout_list h4,
section.detail .detail_box .gallery_list h4 {
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 600;
  margin: 10px 0 0 0;
}
section.detail .detail_box .layout_list .img {
  width: 100%;
  position: relative;
}
section.detail .detail_box .layout_list .img img,
section.detail .detail_box .gallery_list img {
  width: 100%;
}
section.detail .detail_box .layout_list .btn,
section.detail .detail_box .gallery_list .btn {
  width: 35px;
  height: 35px;
  background: var(--mainColor);
  position: absolute;
  right: 0;
  bottom: 0;
  transition: .3s;
  z-index: 2;
}
section.detail .detail_box .layout_list .btn:after,
section.detail .detail_box .gallery_list .btn:after {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../p_common/images/icon/icon_search.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%);
  z-index: 3;
}
section.detail .detail_box .layout_list .layput_box {
  width: calc((100% - 40px)/2);
}
section.detail .detail_box .gallery_list .gallery_box {
  width: calc((100% - 40px*2)/3);
}



/* ========================================================================================================
   1349px以下
   ========================================================================================================*/
@media screen and (max-width: 1349px) {
  #scene a.btn_circle {
    transform: translate(-10px, 50%);
  }
}

/* ========================================================================================================
   1199px以下
   ========================================================================================================*/
@media screen and (max-width: 1199px) {
  .venue .venue_box .content {
    padding-left: 0;
  }
}


/* ========================================================================================================
   999px以下
   ========================================================================================================*/
@media screen and (max-width: 999px) {
  
}

/* ========================================================================================================
   767px以下
   ========================================================================================================*/
@media screen and (max-width: 767px) {
  .venue .venue_box {
    margin-top: 40px;
    gap: 20px 0;
  }
  .venue .venue_box .content p {
    font-size: 12px;
    line-height: 1.8em;
    font-weight: 500;
  }
  .venue .venue_box .content .detail {
    margin: 15px 0 0 0;
    gap: 0 40px;
  }
  .venue .venue_box .content .detail table {
    width: calc(100% - 105px - 40px);
  }
  .venue .venue_box .content .detail table th,
  .venue .venue_box .content .detail table td {
    font-size: 12px;
    padding: 0;
    width: 100%;
    display: block;
  }
  .venue .venue_box .content .detail table th {
    padding: 0 0 5px;
  }
  .venue .venue_box .content .detail table td {
    padding: 3px 10px;
  }
  .venue .venue_box .content .detail table th .icon {
    padding-left: 28px;
  }
  .venue .venue_box .content .detail table th .icon.human:before {
    width: 17px;
    height: 17px;
  }
  .venue .btn_wrap {
    margin-top: 40px;
  }
  .venue .wrap {
    padding-bottom: 50px;
  }
  #concept .wrap {
    padding-bottom: 0;
  }
  #concept .lead_txt {
    margin-bottom: 25px;
  }
  #scene .list_wrap {
    gap: 40px 20px;
    padding: 0;
    margin: 25px 0 0;
  }
  #scene .list_wrap .list_box {
    width: calc((100% - 20px) / 2);
  }
  #scene .list_wrap .list_box a .eyecatch img {
    width: 100%;
    height: 100%;
  }
  #scene a.btn_circle {
    position: relative;
    right: 0;
    bottom: unset;
    transform: translate(0, 0);
    margin: 40px auto 0;
  }
  #scene .list_wrap .list_box a .btn {
    width: 35px;
    height: 35px;
  }
  #scene .list_wrap .list_box a .btn:before {
    width: 35px;
    height: 35px;
    border-radius: 35px;
    animation: none;
  }
  #scene .list_wrap .list_box a .btn:after {
    width: 14px;
    height: 5px;
    animation: none;
  }
  #scene .list_wrap .list_box a .cts h3 {
    font-size: 14px;
    margin: 5px 0;
  }
  #scene .list_wrap .list_box a .cts p {
    font-size: 12px;
  }
  .contact_low .btn_wrap a.btn {
    width: 100%;
  }

  section.detail .wrap {
    padding: 50px 0;
  }
  section.detail .detail_box {
    padding: 30px 20px 40px;
    margin: 0 0 50px;
  }
  section.detail .detail_box p {
    font-size: 14px;
    line-height: 1.6em;
  }
  section.detail .detail_box .layout_list .layput_box {
    width: 100%;
  }
  section.detail .detail_box .layout_list .layput_box {
    width: 100%;
  }
  section.detail .detail_box .layout_list h4,
  section.detail .detail_box .gallery_list h4 {
    font-size: 12px;
  }
  section.detail .detail_box .lead_txt {
    margin-bottom: 20px;
  }
  section.detail .detail_box .gallery_list {
    gap: 25px 15px;
  }
  section.detail .detail_box .gallery_list .gallery_box {
    width: calc((100% - 15px) / 2);
  }
  section.detail .detail_box .layout_list .btn,
  section.detail .detail_box .gallery_list .btn {
    width: 18px;
    height: 18px;
  }
  section.detail .detail_box .layout_list .btn:after,
  section.detail .detail_box .gallery_list .btn:after {
    width: 8px;
    height: 8px;
  }
  
}
/* ========================================================================================================
   499px以下
   ========================================================================================================*/
@media screen and (max-width: 499px) {

}