@charset "UTF-8";
body#top.stickyTop .secHeader .logoArea .logoSvg {
  fill: #fff;
}
body#top.stickyTop .hamburgerWrap .hamburger .hamburger__line {
  background-color: #fff;
}

@keyframes fvBgZoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
.fvArea {
  height: 100vh;
  height: 100dvh;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.fvArea .fvBg {
  position: absolute;
  top: -6%;
  left: 0;
  width: 100%;
  height: 112%;
  will-change: transform;
}
.fvArea .fvBg .fvBgItem {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
  animation: fvBgZoomIn 20s linear infinite;
}
.fvArea .fvBg .fvBgItem.is-active {
  opacity: 1;
}
.fvArea .fvBg .fvBg1 {
  background-image: url(../../top/images/fv_img1.jpg);
  animation-delay: -3s;
}
.fvArea .fvBg .fvBg2 {
  background-image: url(../../top/images/fv_img2.jpg);
  animation-delay: -18s;
}
.fvArea .fvBg .fvBg3 {
  background-image: url(../../top/images/fv_img3.jpg);
  animation-delay: -13s;
}
.fvArea .fvBg .fvBg4 {
  background-image: url(../../top/images/fv_img4.jpg);
  animation-delay: -8s;
}
@media screen and (max-width: 767px) {
  .fvArea .fvBg .fvBg1 {
    background-image: url(../../top/images/fv_img1_sp.jpg);
  }
  .fvArea .fvBg .fvBg2 {
    background-image: url(../../top/images/fv_img2_sp.jpg);
  }
  .fvArea .fvBg .fvBg3 {
    background-image: url(../../top/images/fv_img3_sp.jpg);
  }
}
.fvArea .comEventArea {
  position: absolute;
  bottom: 0;
  height: calc(50% + 175px);
  right: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.fvArea .comEventArea * {
  color: #fff;
}
.fvArea .comEventArea .year {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
}
.fvArea .comEventArea .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 8px 0 15px;
}
.fvArea .comEventArea .wrap .month,
.fvArea .comEventArea .wrap .day {
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
}
.fvArea .comEventArea .wrap .slash {
  background: #fff;
  width: 1px;
  height: 32px;
  transform: rotate(20deg);
}
.fvArea .comEventArea .wrap .month {
  padding-bottom: 30px;
}
.fvArea .comEventArea .wrap .day {
  padding-top: 30px;
}
.fvArea .comEventArea .name {
  font-size: 16px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.5em;
  font-weight: bold;
}
.fvArea .comEventArea:after {
  content: "";
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1px;
  height: 10vh;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .fvArea .comEventArea {
    max-height: 50vh;
    max-height: 50lvh;
    right: 20px;
  }
  .fvArea .comEventArea:after {
    content: "";
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #fff;
    height: 10vh;
  }
  .fvArea .comEventArea .month,
  .fvArea .comEventArea .day {
    font-size: 32px;
  }
}
@keyframes fvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body#top header {
  position: relative;
  z-index: 1500;
}
body#top header,
body#top .headerNavPc,
body#top .hamburgerWrap {
  animation: fvFadeIn 0.8s ease both;
  animation-delay: 0.4s;
}
body#top .fvArea .comEventArea {
  animation: fvFadeIn 0.8s ease both;
  animation-delay: 0.7s;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.7);
}

.secIntro {
  background: #f3f2e5;
  padding: 210px 0 230px;
}
.secIntro .wrap {
  position: relative;
}
.secIntro .wrap .txArea {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  z-index: 1;
  width: fit-content;
  margin: auto;
}
.secIntro .wrap .txArea .tl {
  font-size: clamp(22px, 1.8vw, 26px);
  letter-spacing: 0.3em;
  font-weight: 600;
  padding-bottom: 70px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.secIntro .wrap .txArea .tl.is-show {
  opacity: 1;
  transform: translateY(0);
}
.secIntro .wrap .txArea .tx .line {
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 2.5;
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.secIntro .wrap .txArea .tx .line.is-show {
  opacity: 1;
  transform: translateY(0);
}
.secIntro .wrap .imgWrap {
  z-index: 0;
  padding-top: 250px;
  margin-top: -700px;
}
.secIntro .wrap .imgWrap .maskImg {
  position: relative;
  height: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.secIntro .wrap .imgWrap .maskImg.is-show {
  opacity: 1;
  transform: translateY(0);
}
.secIntro .wrap .imgWrap .maskImg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.secIntro .wrap .imgWrap .maskImg.img1 {
  width: 32.6388888889vw; /* 約32.64vw */
  aspect-ratio: 470/620;
}
.secIntro .wrap .imgWrap .maskImg.img2 {
  width: 33.75vw; /* 約33.75vw */
  aspect-ratio: 486/632;
  margin-left: auto;
}
.secIntro .wrap .imgWrap .maskImg.img3 {
  width: 19.7222222222vw; /* 約24.31vw */
  aspect-ratio: 284/354;
  margin-right: auto;
  margin-left: 8%;
}
.secIntro .wrap .imgWrap .maskImg.img4 {
  width: 24.3055555556vw; /* 約27.92vw */
  aspect-ratio: 350/476;
  margin-left: auto;
  margin-right: 8%;
}
.secIntro .wrap .imgWrap .maskImg.img5 {
  width: 33.0555555556vw; /* 約45.97vw */
  aspect-ratio: 476/312;
  margin-right: auto;
}

.secNav {
  padding: 230px 0 200px;
  background: #e0ddcb;
  display: grid;
  gap: 100px;
}
.secNav .com1 {
  padding-right: 100px;
}
.secNav .wrap {
  width: 100%;
  position: relative;
}
.secNav .wrap.wrap1 {
  aspect-ratio: 1100/978;
}
.secNav .wrap.wrap1 .txArea {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  right: 0;
}
.secNav .wrap.wrap1 .imgWrap.img1 {
  width: 54.7%;
  aspect-ratio: 600/604;
  left: 0;
  top: 0;
}
.secNav .wrap.wrap1 .imgWrap.img2 {
  width: 34.5%;
  aspect-ratio: 408/308;
  margin-left: auto;
  left: 37.5%;
  transform: translateX(-50%);
  bottom: 0;
}
.secNav .wrap.wrap1 .imgWrap.img3 {
  width: 27%;
  aspect-ratio: 314/334;
  right: 0;
  bottom: 20%;
}
.secNav .wrap.wrap2 {
  aspect-ratio: 1200/948;
}
.secNav .wrap.wrap2 .txArea {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  left: 160px;
}
.secNav .wrap.wrap2 .imgWrap.img1 {
  max-width: 600px;
  width: 50%;
  aspect-ratio: 600/604;
  right: 0;
  top: 0;
}
.secNav .wrap.wrap2 .imgWrap.img2 {
  max-width: 415px;
  aspect-ratio: 414/332;
  left: 0;
  bottom: 10%;
  width: 29.1%;
}
.secNav .wrap.wrap2 .imgWrap.img3 {
  max-width: 376px;
  aspect-ratio: 376/270;
  left: 65.5%;
  transform: translateX(-50%);
  bottom: 0%;
  width: 32%;
}
.secNav .wrap .txArea {
  position: absolute;
  top: 0;
}
.secNav .wrap .txArea .tl {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.3em;
}
.secNav .wrap .txArea .tx {
  padding: 60px 0;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.35em;
  line-height: 2.2;
}
.secNav .wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.secNav .wrap .imgWrap {
  position: absolute;
}

.stickyArea .layerWrap {
  position: relative;
  height: 400vh;
}
.stickyArea .layerStage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.stickyArea .content {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.stickyArea .content .bk {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.stickyArea .content .bk.bk1 {
  background-image: url(../images/topic_img1.jpg);
}
.stickyArea .content .bk.bk2 {
  background-image: url(../images/topic_img2.jpg);
}
.stickyArea .content .bk.bk3 {
  background-image: url(../images/topic_img3.jpg);
}
.stickyArea .content .bk.bk4 {
  background-image: url(../images/topic_img4.jpg);
}
.stickyArea .content .bk .wrap {
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0;
}
.stickyArea .content .bk .wrap svg {
  transform: rotate(-90deg);
}
.stickyArea .content .bk .wrap .circle {
  fill: transparent;
  stroke: #fff;
  stroke-width: 1;
}
.stickyArea .content .bk .wrap .txArea {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: -moz-max-content;
  width: max-content;
}
.stickyArea .content .bk .wrap .txArea * {
  color: #fff;
}
.stickyArea .content .bk .wrap .txArea .tl {
  font-weight: 600;
  font-size: clamp(29px, 1.9vw, 30px);
}
.stickyArea .content .bk .wrap .txArea .tx {
  line-height: 2.3;
  padding: 50px 0;
  font-weight: 600;
  font-size: clamp(16px, 1.25vw, 18px);
}
.stickyArea .content .bk .wrap .txArea .btn .line::before {
  background: #fff;
}
.stickyArea .content .bk .navNum {
  transition: all 0.5s;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
.stickyArea .content .bk .navNum .line {
  transition: all 1s;
  display: flex;
  align-items: center;
  width: 0%;
  height: 1px;
  background: none;
}
.stickyArea .content .bk .navNum .tx {
  height: 100%;
  color: #fff;
  font-size: clamp(18px, 1.57vw, 20px);
  font-weight: 900;
}
@keyframes circle {
  0% {
    stroke-dasharray: 0 1727;
  }
  99.9%, to {
    stroke-dasharray: 1727 1727;
  }
}
.stickyArea .content.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.stickyArea .content.active .wrap {
  opacity: 1;
}
.stickyArea .content.active .wrap .circle {
  animation: circle 1s ease-in-out forwards;
}
.stickyArea .content.active .navNum {
  opacity: 1;
}
.stickyArea .content.active .navNum .line {
  width: 100%;
}
.stickyArea .content.active .navNum .line.op {
  background: #fff;
}

.secInstagram {
  padding: 120px 0 150px;
  background: #dedcca;
  top: 0;
  z-index: 1;
}
.secInstagram .tlWrap .imgWrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.secInstagram .tlWrap .tl {
  padding-top: 20px;
  text-align: center;
}
.secInstagram .btn {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.secInstagram .instaArea {
  width: 100%;
  background-color: rgb(206, 206, 206);
  margin: 80px 0;
  height: 250px;
}

.secSlider .slider {
  overflow: hidden;
  position: relative;
  top: 0;
  width: 100vw;
  overflow: hidden;
  display: flex;
}
.secSlider .slider .scroll-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.secSlider .slider .scroll-container .scroll-content {
  display: flex;
  animation: scroll 50s linear infinite;
}
.secSlider .slider .scroll-container .scroll-content .item {
  flex: 0 0 auto;
  width: 100vw;
  height: auto;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.secAccess {
  padding: 168px 0;
  background: #f3f2e5;
}
.secAccess .gridArea {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 40px;
}
.secAccess .gridArea .map .iframeWrap {
  aspect-ratio: 448/378;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.secAccess .gridArea .map .iframeWrap iframe {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}
.secAccess .gridArea .info .placeArea {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 120px 1fr;
}
.secAccess .gridArea .info .placeArea div {
  padding: 15px 0;
  font-weight: bold;
  letter-spacing: 0.5em;
  line-height: 180%;
  border-bottom: 1px solid #222222;
}
.secAccess .gridArea .info .placeArea .place {
  font-size: clamp(15px, 1vw, 15px);
}
.secAccess .gridArea .info .placeArea .tx {
  font-size: clamp(14px, 1vw, 14px);
}
.secAccess .gridArea .info .placeArea .tx span {
  display: block;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  text-indent: -1.3em;
  padding-left: 1em;
}

@media screen and (max-width: 1199px) {
  .secIntro {
    padding: 90px 0 100px;
  }
  .secIntro .wrap .txArea {
    position: static;
    transform: none;
    -webkit-transform: none;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  .secIntro .wrap .txArea .tl {
    padding-bottom: 30px;
    opacity: 1;
    transform: none;
  }
  .secIntro .wrap .txArea .tx {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  .secIntro .wrap .txArea .tx .line {
    line-height: 2.2;
    text-align: left;
    opacity: 1;
    transform: none;
  }
  .secIntro .wrap .imgWrap {
    position: relative;
    margin-top: 60px;
    padding-top: 0;
    height: 272.0512820513vw;
  }
  .secIntro .wrap .imgWrap .maskImg {
    position: absolute;
    height: auto;
  }
  .secIntro .wrap .imgWrap .maskImg.img1 {
    top: 0;
    left: 0;
    width: 51.28%;
    aspect-ratio: 200/263;
    margin: 0;
  }
  .secIntro .wrap .imgWrap .maskImg.img2 {
    top: 27.8%;
    left: 47.18%;
    width: 52.82%;
    aspect-ratio: 206/267;
    margin: 0;
  }
  .secIntro .wrap .imgWrap .maskImg.img3 {
    top: 48.26%;
    left: 5.38%;
    width: 33.33%;
    aspect-ratio: 130/161;
    margin: 0;
  }
  .secIntro .wrap .imgWrap .maskImg.img4 {
    top: 60.51%;
    left: 56.41%;
    width: 38.46%;
    aspect-ratio: 150/204;
    margin: 0;
  }
  .secIntro .wrap .imgWrap .maskImg.img5 {
    top: 83.7%;
    left: 0;
    width: 67.69%;
    aspect-ratio: 264/173;
    margin: 0;
  }
  .secNav {
    padding: 100px 0;
    gap: 80px;
  }
  .secNav .com1 {
    padding-right: 0;
  }
  .secNav .commonWidth {
    width: 100%;
    max-width: none;
  }
  .secNav .wrap {
    height: auto;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
  }
  .secNav .wrap .txArea {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
  }
  .secNav .wrap .txArea .tl {
    letter-spacing: 0.3em;
  }
  .secNav .wrap .txArea .tx {
    padding: 30px 0;
    line-height: 2.2;
  }
  .secNav .wrap .imgWrap {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    -webkit-transform: none;
    max-width: none;
    margin: 0;
    align-self: flex-start;
  }
  .secNav .wrap.wrap1 .imgWrap.img1 {
    width: 76.92%;
    aspect-ratio: 300/302;
    align-self: flex-start;
  }
  .secNav .wrap.wrap1 .imgWrap.img2 {
    width: 61.54%;
    aspect-ratio: 240/182;
    align-self: flex-end;
  }
  .secNav .wrap.wrap1 .imgWrap.img3 {
    width: 50%;
    aspect-ratio: 130/138;
    align-self: flex-start;
  }
  .secNav .wrap.wrap2 .imgWrap.img1 {
    width: 76.92%;
    aspect-ratio: 300/302;
    align-self: flex-start;
  }
  .secNav .wrap.wrap2 .imgWrap.img2 {
    width: 50%;
    aspect-ratio: 161/129;
    align-self: flex-end;
  }
  .secNav .wrap.wrap2 .imgWrap.img3 {
    width: 61.54%;
    aspect-ratio: 240/173;
    align-self: flex-end;
  }
  .secNav .wrap {
    gap: 30px;
  }
  .secNav .wrap .txArea {
    margin-right: auto;
  }
  .secNav .wrap .txArea .tl {
    font-size: clamp(14px, 5.13vw, 20px);
  }
  .secNav .wrap .txArea .tx {
    font-size: 14px;
  }
  .secNav .wrap.wrap1 .imgWrap.img1 {
    width: 80%;
    margin: auto;
  }
  .secNav .wrap.wrap1 .imgWrap.img2 {
    order: 3;
    width: 60%;
    aspect-ratio: 240/182;
    align-self: flex-end;
    margin-left: 10%;
    margin-right: auto;
    transform: none;
  }
  .secNav .wrap.wrap1 .imgWrap.img3 {
    order: 2;
    width: 35%;
    aspect-ratio: 130/138;
    align-self: flex-start;
    margin-right: 10%;
    margin-left: auto;
  }
  .secNav .wrap.wrap2 .imgWrap.img1 {
    width: 80%;
    margin: auto;
  }
  .secNav .wrap.wrap2 .imgWrap.img2 {
    width: 50%;
    aspect-ratio: 240/182;
    align-self: flex-end;
    margin-left: 10%;
    margin-right: auto;
    transform: none;
  }
  .secNav .wrap.wrap2 .imgWrap.img3 {
    width: 70%;
    aspect-ratio: 3/2;
    align-self: flex-start;
    margin-right: 10%;
    margin-left: auto;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .fvArea {
    height: 100vh;
    height: 100svh;
  }
  .separatorImg .imgMax {
    width: 100%;
    height: auto;
  }
  .stickyArea .content .bk.bk4 .wrap .txArea {
    left: 53%;
  }
  .stickyArea .content .bk.bk4 .wrap .txArea .tx {
    letter-spacing: 0.15em;
  }
  .stickyArea .content .bk .wrap svg {
    transform: rotate(-90deg) scale(0.5435);
    -webkit-transform: rotate(-90deg) scale(0.5435);
  }
  .stickyArea .content .bk .wrap .txArea .tl {
    font-size: 20px;
    line-height: 1;
  }
  .stickyArea .content .bk .wrap .txArea .tx {
    font-size: 13px;
    padding: 30px 0;
    line-height: 2.2;
  }
  .stickyArea .content .bk .wrap .txArea .btn {
    font-size: 13px;
  }
  .stickyArea .content .bk .navNum {
    top: auto;
    bottom: 0% !important;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    grid-template-columns: repeat(4, auto);
    grid-template-rows: auto auto;
    justify-items: center;
    align-items: start;
    -moz-column-gap: 34px;
         column-gap: 34px;
    row-gap: 14px;
  }
  .stickyArea .content .bk .navNum > :nth-child(1) {
    grid-column: 1;
    grid-row: 2;
  }
  .stickyArea .content .bk .navNum > :nth-child(2) {
    grid-column: 1;
    grid-row: 1;
  }
  .stickyArea .content .bk .navNum > :nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .stickyArea .content .bk .navNum > :nth-child(4) {
    grid-column: 2;
    grid-row: 1;
  }
  .stickyArea .content .bk .navNum > :nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }
  .stickyArea .content .bk .navNum > :nth-child(6) {
    grid-column: 3;
    grid-row: 1;
  }
  .stickyArea .content .bk .navNum > :nth-child(7) {
    grid-column: 4;
    grid-row: 2;
  }
  .stickyArea .content .bk .navNum > :nth-child(8) {
    grid-column: 4;
    grid-row: 1;
  }
  .stickyArea .content .bk .navNum .tx {
    font-size: 17px;
    letter-spacing: 0;
  }
  .stickyArea .content .bk .navNum .line {
    width: 1px;
    height: 40px;
    transition: none;
  }
  .stickyArea .content.active .navNum .line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0);
  }
  .stickyArea .content.active .navNum .line.op {
    height: 40px;
    background: #fff;
  }
  .secIntro .wrap .txArea .tx .line {
    font-size: 14px;
  }
  .secIntro .wrap .txArea .tl {
    font-size: clamp(14px, 5.13vw, 20px);
  }
  .secInstagram {
    padding: 80px 0 100px;
  }
  .secInstagram .tlWrap .imgWrap img {
    width: 30px;
    height: 30px;
  }
  .secInstagram .tlWrap .tl {
    font-size: clamp(14px, 5.13vw, 20px);
  }
  .secInstagram .instaArea {
    margin: 40px 0;
    height: auto;
    aspect-ratio: 1/1;
  }
  .secSlider .slider .scroll-container .scroll-content {
    animation-duration: 40s;
  }
  .secSlider .slider .scroll-container .scroll-content .item {
    height: 50lvh;
    width: auto;
  }
  .secAccess {
    padding: 100px 0;
  }
  .secAccess .gridArea {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .secAccess .gridArea .map .iframeWrap {
    aspect-ratio: 390/320;
  }
  .secAccess .gridArea .info .placeArea {
    grid-template-columns: 90px 1fr;
    margin-top: 15px;
  }
  .secAccess .gridArea .info .placeArea .place {
    font-size: 13px;
  }
  .secAccess .gridArea .info .placeArea .tx {
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */