@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

/*mixin*/
body {
  width: 100%;
  height: 100vh;
  font-family: "IBM Plex Sans JP", sans-serif;
  position: relative;
}
body .loading-menu-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 17vh;
  background-color: #dcd6d2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  z-index: -1;
}
body .header {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 8vh;
  background-size: 25%;
  background-position: bottom;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.625rem);
  font-weight: bold;
  background-color: #594f47;
  position: relative;
  z-index: 1;
}
body .header .head-logo {
  max-height: 2.5rem;
}
body .container {
  width: 100%;
}
body .container .main {
  width: 100%;
  background-color: #dcd6d2;
}
body .container .main .tab-contents {
  position: relative;
  width: 100%;
  height: 75vh;
}
body .container .main .tab-contents .tab-contents-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 1s ease 0s;
}
body .container .main .tab-contents .tab-contents-item .tab-page-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: bold;
}
body .container .main .tab-contents .tab-contents-item .sample-img {
  width: 100%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 480px) {
  body .container .main .tab-contents .tab-contents-item .sample-img {
    width: 100%;
  }
}
body .container .main .tab-contents .tab-contents-item.pattern-01 {
  background-color: #a69c95;
}
body .container .main .tab-contents .tab-contents-item.pattern-02 {
  overflow-y: scroll;
}
body .container .main .tab-contents .tab-contents-item.show {
  opacity: 1;
  pointer-events: all;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-main {
  width: 100%;
  height: 93%;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-main .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-weight: bold;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-main .swiper-slide img {
  width: auto;
  height: auto;
  max-height: 85%;
  box-shadow: 0px 0.5rem 0.5rem -0.5rem rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-main .swiper-slide.swiper-slide-active img {
  max-height: 95%;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-main .swiper-pagination-fraction {
  position: absolute;
  left: 0;
  right: 0;
  width: 10%;
  padding: 0.25rem;
  margin: auto;
  border-radius: 2rem;
  color: #192f5e;
  background: #fff;
  border: #778899 0.25vh solid;
  font-weight: bold;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-number {
  position: fixed;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-number .swiper-wrapper {
  width: 100%;
  height: 100%;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-number .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-address {
  width: 100%;
  height: 90%;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-address .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-address .swiper-wrapper .swiper-slide .address-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-address .swiper-wrapper .swiper-slide .address-box .address-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-address .swiper-wrapper .swiper-slide .address-box .address-span {
  font-size: 1rem;
  width: 75%;
  height: auto;
  padding: 1rem;
  border: #b4aeb1 0.25rem solid;
  margin: 0 0 1rem 0;
  background-color: #fff;
  border-radius: 1rem;
  color: #591821;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-address .swiper-wrapper .swiper-slide .address-box .address-span .title {
  font-weight: bold;
  font-size: 1.25rem;
  border-bottom: #b4aeb1 3px dotted;
  margin: 0 0 0.5rem 0;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp {
  width: 100%;
  height: 92.5%;
  padding: 1rem 0 0 0;
}
@media screen and (max-width: 721px) {
  body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp {
    height: 94.25%;
  }
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media screen and (max-width: 721px) {
  body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box {
    flex-direction: column;
    justify-content: flex-start;
  }
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div {
  flex: 0 0 33%;
  min-width: 0;
  height: 100%;
  padding: 0.5rem 0 1rem 0.5rem;
}
@media screen and (max-width: 720px) {
  body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div {
    flex: 0 0 auto;
    width: 100%;
    height: 33%;
  }
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  border: #b4aeb1 0.25rem solid;
  background-color: #fff;
  color: #591821;
  box-shadow: 0 1rem 1rem -1rem rgb(0, 0, 0);
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .head .category {
  font-size: 1rem;
  padding: 0.5rem 0.25rem 0.25rem 2rem;
  color: #fff;
  background-image: url(../images/building.svg);
  background-size: 1.75rem auto;
  background-repeat: no-repeat;
  background-position: bottom left;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .head .category.bg1 {
  background-color: #a74700;
  background-image: url(../images/icon-businessman.svg);
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .head .category.bg2 {
  background-color: #008000;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .head .category.bg3 {
  /* ショッピング追記 */
  background-color: #07658f;
  background-image: url(../images/shoping.svg);
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .date {
  font-size: 0.8rem;
  background: #2e8b57;
  color: #fff;
  padding: 0 0.25rem;
  text-align: right;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .date.bg1 {
  background-color: rgba(167, 71, 0, 0.7);
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .date.bg2 {
  background-color: rgba(0, 128, 0, 0.7);
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .date.bg3 {
  background-color: rgba(7, 101, 143, 0.7);
}
@media screen and (max-width: 720px) {
  body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .title-box {
    display: flex;
    width: 100%;
    height: calc(100% - 4rem);
    align-items: center;
  }
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .title-box .title {
  font-weight: bold;
  border-bottom: #b4aeb1 3px dotted;
  margin: 1rem 0;
  padding: 0 0.5rem;
}
@media screen and (max-width: 720px) {
  body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .title-box .title {
    margin: 0;
    display: block;
    border: none;
  }
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .content {
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media screen and (max-width: 720px) {
  body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .content {
    display: none;
  }
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .content .note {
  flex: 1 0 50%;
  word-break: break-all;
  padding: 0 1rem;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .content .image {
  flex: 0 0 50%;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .content .image img {
  width: 100%;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .pdf-info {
  font-size: 0.75rem;
}
@media screen and (max-width: 720px) {
  body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .pdf-info {
    display: none;
  }
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .pdf-info p {
  border-bottom: #ccc 3px dotted;
  padding: 0 1rem 1rem 1rem;
  margin: 0 0 1rem 0;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .pdf-info p span {
  display: inline-block;
  padding: 0.25rem;
  background: red;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
}
body .container .main .tab-contents .tab-contents-item .swiper.swiper-ltp .ltp-info-box .ltp-info-div .inner .ltp-readme {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  pointer-events: all;
  padding: 0.45rem 0.5rem 0.25rem 0.5rem;
  background-image: url(../images/plain-red.png);
  background-size: 30%;
  border: #b4aeb1 0.125rem solid;
  color: #fff;
  font-weight: bold;
  border-radius: 0.5rem;
  cursor: pointer;
}
body .container .main .tab-contents .tab-contents-item .ltp-console-box {
  display: none;
  width: 100%;
  height: 13%;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
body .container .main .tab-contents .tab-contents-item .ltp-console-box .title {
  padding: 0.5rem;
  border: #b4aeb1 0.25rem solid;
  border-radius: 0.5rem;
  background-color: #fff;
  color: #591821;
  font-weight: bold;
  box-shadow: 0px 0.7rem 1.5rem -0.7rem #000;
  margin: 0 1rem 0 0;
}
body .container .main .tab-contents .tab-contents-item #ltpSearch {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  transition: all 0.5s ease 0s;
  z-index: 999998;
  transform: translateZ(1px);
}
body .container .main .tab-contents .tab-contents-item #ltpSearch #ltpSearchcontents {
  width: 75%;
  height: 80%;
  border: #b4aeb1 0.25rem solid;
  border-radius: 1rem;
  background-color: #fff;
  color: #591821;
  overflow-y: scroll;
  transform: rotateY(-180deg);
  transition: all 0.5s ease 0s;
  padding: 1rem;
}
@media screen and (max-width: 720px) {
  body .container .main .tab-contents .tab-contents-item #ltpSearch #ltpSearchcontents {
    width: 100%;
  }
}
body .container .main .tab-contents .tab-contents-item #ltpSearch #closeLtpsearch {
  border: #fff 1px solid;
  padding: 1rem;
  margin: 1rem 0 0 0;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  font-size: clamp(0.5rem, 1vw + 0.25rem, 1rem);
}
body .container .main .tab-contents .tab-contents-item #ltpSearch #closeLtpsearch:hover {
  background-color: #dc143c;
}
body .container .main .tab-contents .tab-contents-item #ltpSearch.search-active {
  opacity: 1;
  pointer-events: all;
}
body .container .main .tab-contents .tab-contents-item #ltpSearch.search-active #ltpSearchcontents {
  transform: rotateY(0deg);
}
body .container .main .tab-contents .tab-contents-item .ltp-pagination {
  display: flex;
  justify-content: center;
}
body .container .main .tab-contents .tab-contents-item .address-pagination {
  display: flex;
  justify-content: center;
}
body .container .main .tab-contents .tab-contents-item .pagenumber-box {
  pointer-events: none;
}
body .container .main .tab-contents .tab-contents-item .swiper-pagination-bullets {
  bottom: 2.5rem;
}
body .container .main .tab-contents .tab-contents-item .swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #fcc800;
  opacity: 0.5;
}
body .container .main .tab-contents .tab-contents-item .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #fcc800;
  opacity: 1;
}
body .container .main .tab-contents .tab-contents-item .swiper-pagination-fraction {
  background-color: rgba(255, 255, 255, 0.4);
  width: 15%;
  max-width: 5rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  font-weight: bold;
  border: rgba(255, 255, 255, 0.5) 0.25vh solid;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .container .main .tab-contents .tab-contents-item .ltp-iframe {
  width: 100%;
  height: 100%;
}
body .container .main .tab-contents .tab-contents-item .ltp-box.dev {
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 0 1rem;
}
body .container .main .tab-contents .tab-contents-item .ltp-box.dev .information-title {
  height: 7.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
body .container .main .tab-contents .tab-contents-item .ltp-box.dev .information-title .title {
  padding: 0 1rem;
  border: #b4aeb1 0.25rem solid;
  background-color: #fff;
  border-radius: 1rem;
  color: #591821;
}
body .container .main .tab-contents .tab-contents-item .ltp-box.dev #vars-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 85%;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border: #b4aeb1 0.25rem solid;
  background-color: #fff;
  border-radius: 1rem;
  color: #591821;
}
body .container .main .tab-contents .tab-contents-item .ltp-box.dev #vars-container .list-vars {
  flex: 0 0 50%;
  height: 50%;
  padding: 1rem;
  min-width: 0;
}
body .container .main .tab-contents .tab-contents-item .ltp-box.dev #vars-container .list-vars .inner {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  border: #dcd6d2 2px solid;
  background: #eae8e1;
  padding: 1rem;
  overflow-y: scroll;
}
body .container .main .tab-contents .tab-contents-item .ltp-box.dev #pagination {
  display: flex;
  width: 100%;
  height: 7.5%;
  justify-content: center;
  align-items: center;
}
body .container .main .tab-list {
  width: 100%;
  height: 13vh;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  background-color: #dcd6d2;
}
body .container .main .tab-list .tab-list-item {
  text-align: center;
  flex: 1 1;
  max-width: 100px;
  max-height: 75%;
  margin: 0 0.25rem;
  background-color: #e5e4e6;
  padding: 1em 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1em;
  border: #b4aeb1 0.5rem solid;
  transition: all 1s ease 0s;
}
@media screen and (max-width: 480px) {
  body .container .main .tab-list .tab-list-item {
    border: #778899 0.25rem solid;
  }
}
body .container .main .tab-list .tab-list-item.active {
  background-image: none;
  background-color: #fff;
}
body .container .main .tab-list .tab-list-item.active img {
  animation: rolling 4s linear 0s infinite;
}
body .container .main .tab-list .tab-list-item img {
  width: 50%;
  height: auto;
  transform-origin: center center;
}
@keyframes rolling {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes fluctuation {
  0% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(45deg);
  }
  15% {
    transform: rotate(-45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
body .container .main .top-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #778899;
  z-index: 99998;
  transition: all 2s ease 0s;
}
body .container .main .top-page #movie-area {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  background: cover;
}
body .container .main .top-page .top-container {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  z-index: 99999;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
body .container .main .top-page .top-container .head {
  width: 100%;
  padding: 1em;
  margin: 0 auto;
  opacity: 1;
}
body .container .main .top-page .top-container .head .day,
body .container .main .top-page .top-container .head .title,
body .container .main .top-page .top-container .head .name {
  text-align: center;
  margin: 0 auto;
}
body .container .main .top-page .top-container .head .day {
  width: 100%;
  border-bottom: #fff 1px solid;
  font-size: 5vw;
}
@media screen and (min-width: 768px) {
  body .container .main .top-page .top-container .head .day {
    font-size: 2vw;
  }
}
body .container .main .top-page .top-container .head .title {
  width: 75%;
  display: block;
  margin: 0.5em auto 0 auto;
}
@media screen and (min-width: 768px) {
  body .container .main .top-page .top-container .head .title {
    font-size: 6vw;
  }
}
body .container .main .top-page .top-container .head .name {
  font-size: 3vw;
}
@media screen and (min-width: 768px) {
  body .container .main .top-page .top-container .head .name {
    font-size: 1.5vw;
  }
}
body .container .main .top-page .top-container .gadget-box {
  position: relative;
  width: 100%;
  margin: auto auto 1rem auto;
}
@media screen and (min-width: 1080px) {
  body .container .main .top-page .top-container .gadget-box {
    display: none;
  }
}
body .container .main .top-page .top-container .gadget-box .inner {
  display: block;
  margin: 0 auto;
  width: 40%;
  margin: 0 auto 0 13.75%;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area:after {
  content: "提供元：気象庁";
  position: absolute;
  right: 1vw;
  bottom: 1vw;
  font-size: 1.5vw;
  font-weight: bold;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .area-name {
  font-size: 2.5vw;
  padding: 0.5rem;
  text-align: center;
  font-weight: bold;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box {
  display: flex;
  justify-content: center;
  border: rgba(255, 255, 255, 0.6) 1px solid;
  background-color: rgba(36, 26, 8, 0.5);
  padding: 0.5rem 0 0.5rem 0;
  font-size: 2.5vw;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box {
  color: #000;
  text-align: center;
  position: relative;
  width: 50%;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box img {
  background: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
  width: 100%;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box:before {
  content: "";
  display: block;
  background: #f5f5dc;
  border-radius: 0.5rem 0.5rem 0 0;
  font-size: 2vw;
  padding: 0.25rem 0 0 0;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box.no0 {
  margin: 0 0.5rem 0 0;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box.no0:before {
  content: "きょう";
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box.no1 {
  width: 35%;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box.no1:before {
  content: "あす";
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box.no2 {
  display: none;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box.no2:before {
  content: "あさって";
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box .temp {
  background-color: #f0f8ff;
  border-radius: 0.5rem 0.5rem 0 0;
  font-family: "Cabin", sans-serif;
  font-weight: bold;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box .temp span.slash {
  font-weight: normal;
  margin: 0 0.125rem;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box .temp span.low {
  color: #192f5e;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box .temp span.max {
  color: #dc143c;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box .temp span.mark {
  font-size: 1.5vw;
  margin: 0.25vw;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box .pops {
  color: #fff;
  font-size: 1.5vw;
  background-color: #b4aeb1;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0.25rem 0;
  display: flex;
  justify-content: center;
  font-family: "Cabin", sans-serif;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box .pops .pop {
  width: 50%;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box .pops .pop:first-child p {
  text-align: right;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box .pops .pop:first-child p:first-child {
  margin: 0 0 0.125rem 0;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box .pops .pop:first-child p span {
  background: #192f5e;
  padding: 0 0.25rem;
  width: 2.5rem;
  display: inline-block;
  text-align: center;
  border-radius: 0.25rem;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box .pops .pop:last-child p {
  text-align: center;
  font-weight: bold;
  color: #192f5e;
}
body .container .main .top-page .top-container .gadget-box .inner .weather-area .weather-box .weather-icon-box .pops .pop:last-child p:first-child {
  margin: 0.05rem 0 0.4rem 0;
}
body .container .main .top-page .top-container .information-box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto 1rem auto;
  width: 72.5%;
}
body .container .main .top-page .top-container .information-box .weather-area {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 1rem;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  body .container .main .top-page .top-container .information-box .weather-area {
    display: none;
  }
}
body .container .main .top-page .top-container .information-box .weather-area .area-name {
  font-size: 1vw;
  font-weight: bold;
  text-align: center;
  border: #fff 1px solid;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.25rem;
  margin: 0 0 0.5rem 0;
  width: 100%;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box {
  display: flex;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box {
  position: relative;
  background-color: #fff;
  padding: 0.25rem;
  max-width: 12vw;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box img {
  display: block;
  width: auto;
  height: 4vw;
  margin: 0 auto;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box:first-child {
  border-radius: 0.5rem 0 0 0.5rem;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box:last-child {
  border-radius: 0 0.5rem 0.5rem 0;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box::before {
  content: "";
  color: #000;
  font-size: 0.9vw;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5dc;
  border-radius: 0.5rem;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box.no0:before {
  content: "きょう";
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box.no1:before {
  content: "あす";
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box.no2:before {
  content: "あさって";
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box .temp {
  color: #000;
  text-align: center;
  font-size: 1vw;
  font-family: "Cabin", sans-serif;
  font-weight: bold;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box .temp span.slash {
  font-weight: normal;
  margin: 0 0.125rem;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box .temp span.low {
  color: #192f5e;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box .temp span.max {
  color: #dc143c;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box .temp span.mark {
  font-size: 0.5vw;
  margin: 0.25vw;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box .pops {
  color: #fff;
  font-size: 0.5vw;
  background-color: #b4aeb1;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0.25rem 0;
  display: flex;
  justify-content: center;
  font-family: "Cabin", sans-serif;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box .pops .pop {
  width: 50%;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box .pops .pop:first-child p {
  text-align: right;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box .pops .pop:first-child p:first-child {
  margin: 0 0 0.125rem 0;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box .pops .pop:first-child p span {
  background: #192f5e;
  padding: 0 0.25rem;
  width: 2.5rem;
  display: inline-block;
  text-align: center;
  border-radius: 0.25rem;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box .pops .pop:last-child p {
  text-align: center;
  font-weight: bold;
  color: #192f5e;
}
body .container .main .top-page .top-container .information-box .weather-area .weather-box .weather-icon-box .pops .pop:last-child p:first-child {
  margin: 0.05rem 0 0.25rem 0;
}
body .container .main .top-page .top-container .information-box .daylists {
  color: #000;
  border: rgba(255, 255, 255, 0.75) 1px solid;
  flex: 1 1 auto;
}
body .container .main .top-page .top-container .information-box .daylists .title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #dc143c;
  background-color: rgba(255, 255, 255, 0.7);
  border-bottom: #fff 1px solid;
  padding: 0.5rem 0 0 0;
}
body .container .main .top-page .top-container .information-box .daylists .title-box img {
  max-height: 1.5rem;
  width: auto;
  margin: 0 1rem 0 0;
  transform-origin: top center;
  animation: fluctuation 1.5s linear 0s infinite;
}
body .container .main .top-page .top-container .information-box .daylists .title-box .title {
  font-weight: bold;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  body .container .main .top-page .top-container .information-box .daylists .title-box .title {
    font-size: 2vw;
  }
}
body .container .main .top-page .top-container .information-box .daylists .list {
  display: block;
  padding: 0.5rem 0;
  margin: 0 auto;
  font-size: 3vw;
  background-color: rgba(36, 26, 8, 0.5);
  color: #fff;
}
@media screen and (min-width: 768px) {
  body .container .main .top-page .top-container .information-box .daylists .list {
    font-size: 2vw;
  }
}
body .container .main .top-page .top-container .information-box .daylists .list li {
  display: flex;
  justify-content: center;
}
body .container .main .top-page .top-container .information-box .daylists .list li :first-child {
  flex: 0 0 33%;
  min-width: 10em;
}
body .container .main .top-page .top-container .information-box .daylists .list li :last-child {
  flex: 0 0 10%;
  min-width: 4em;
  text-align: right;
}
body .container .main #darkmode:not(.highlight) {
  background-color: #000;
}
body .container .main #darkmode:not(.highlight) #movie-area {
  display: none;
}
body .container .main #darkmode:not(.highlight) .top-container .head {
  opacity: 0.7;
}
body .container .main #darkmode:not(.highlight) .top-container .information-box {
  background-color: rgba(255, 255, 255, 0.7);
}
body .container .main .page-contents {
  width: 100%;
  height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .container .main .page-contents a {
  text-decoration: none;
  color: #898989;
}
body .container .main .single-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
}
body .container .main .single-contents img {
  max-width: 50%;
}
body .footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4vh;
  background-color: #eae8e1;
  background-position: bottom;
  font-size: clamp(0.5rem, 1vw + 0.25rem, 1rem);
  color: #898989;
  font-weight: bold;
  overflow: hidden;
}
body .footer #imageModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  transition: all 0.5s ease 0s;
  z-index: 999999;
  transform: translateZ(1px);
}
body .footer #imageModal #modalPicture {
  width: 97.5%;
  height: auto;
  transform: rotateY(-180deg);
  transition: all 0.5s ease 0s;
}
@media screen and (min-width: 768px) {
  body .footer #imageModal #modalPicture {
    height: 100%;
    width: auto;
  }
}
body .footer #imageModal.is-active {
  pointer-events: all;
  opacity: 1;
}
body .footer #imageModal.is-active #modalPicture {
  transform: rotateY(0deg);
}
body .footer #imageModal #closeModal {
  border: #fff 1px solid;
  padding: 1rem;
  margin: 1rem 0 0 0;
  cursor: pointer;
  transition: all 0.5s ease 0s;
}
body .footer #imageModal #closeModal:hover {
  background-color: #dc143c;
}
body .footer #ltpModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  transition: all 0.5s ease 0s;
  z-index: 999999;
  transform: translateZ(1px);
}
body .footer #ltpModal #ltpModalcontents {
  width: 75%;
  height: 80%;
  border: #b4aeb1 0.25rem solid;
  border-radius: 1rem;
  background-color: #fff;
  color: #591821;
  overflow-y: scroll;
  font-size: 1.5rem;
  transform: rotateY(-180deg);
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 720px) {
  body .footer #ltpModal #ltpModalcontents {
    width: 100%;
  }
}
body .footer #ltpModal #ltpModalcontents .head {
  font-size: 1rem;
  padding: 0.5rem 0.25rem 0.25rem 2rem;
  color: #fff;
  background-image: url(../images/building.svg);
  background-size: 1.75rem auto;
  background-repeat: no-repeat;
  background-position: bottom left;
}
body .footer #ltpModal #ltpModalcontents .head.bg1 {
  background-color: #a74700;
  background-image: url(../images/icon-businessman.svg);
}
body .footer #ltpModal #ltpModalcontents .head.bg2 {
  background-color: #008000;
}
body .footer #ltpModal #ltpModalcontents .head.bg3 {
  /* ショッピング追記 */
  background-color: #07658f;
  background-image: url(../images/shoping.svg);
}
body .footer #ltpModal #ltpModalcontents .date {
  font-size: 0.8rem;
  background: #2e8b57;
  color: #fff;
  padding: 0 0.25rem;
  text-align: right;
}
body .footer #ltpModal #ltpModalcontents .date.bg1 {
  background-color: rgba(167, 71, 0, 0.7);
}
body .footer #ltpModal #ltpModalcontents .date.bg2 {
  background-color: rgba(0, 128, 0, 0.7);
}
body .footer #ltpModal #ltpModalcontents .date.bg3 {
  background-color: rgba(7, 101, 143, 0.7);
}
body .footer #ltpModal #ltpModalcontents .title {
  font-weight: bold;
  margin: 0.5rem 0;
  border-bottom: #ccc 3px dotted;
  padding: 0 0.5rem;
}
body .footer #ltpModal #ltpModalcontents .note {
  word-break: break-all;
  margin: 0 0 1rem 0;
  padding: 0 0.5rem;
}
body .footer #ltpModal #ltpModalcontents .image {
  text-align: center;
}
body .footer #ltpModal #ltpModalcontents .image img {
  max-width: 100%;
}
body .footer #ltpModal #ltpModalcontents .pdf-info {
  padding: 0.5rem;
  font-size: 0.75rem;
  border-bottom: #ccc 3px dotted;
  margin: 0 0 1rem 0;
}
body .footer #ltpModal #ltpModalcontents .pdf-info span {
  display: inline-block;
  padding: 0.25rem;
  background: red;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
}
body .footer #ltpModal #ltpModalcontents .pdfview {
  width: 100%;
  height: 100%;
}
body .footer #ltpModal.info-active {
  opacity: 1;
  pointer-events: all;
}
body .footer #ltpModal.info-active #ltpModalcontents {
  transform: rotateY(0deg);
}
body .footer #ltpModal #closeLtpmodal {
  border: #fff 1px solid;
  padding: 1rem;
  margin: 1rem 0 0 0;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  font-size: clamp(0.5rem, 1vw + 0.25rem, 1rem);
}
body .footer #ltpModal #closeLtpmodal:hover {
  background-color: #dc143c;
}
body .loading-box {
  display: block;
  width: 10rem;
  height: 10rem;
  border: rgba(89, 24, 33, 0.3) 1rem solid;
  border-top: rgba(89, 24, 33, 0.8) 1rem solid;
  border-radius: 50%;
  transform-origin: center center;
  animation: loading 2s linear 0s infinite;
}
body .loading-box.min {
  width: 5rem;
  height: 5rem;
  border: rgba(89, 24, 33, 0.3) 0.75rem solid;
  border-top: rgba(89, 24, 33, 0.8) 0.75rem solid;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body #report-form {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  body #report-form {
    width: 50%;
    min-width: 600px;
  }
}
body #report-form .wpcf7-submit {
  margin: 1rem auto;
  display: block;
  padding: 0 1rem;
  font-size: 1.2rem;
}
body #report-form .category {
  padding: 0.5rem;
}
body #report-form p span.topic {
  background-color: #192f5e;
  color: #fff;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
}
body #report-form p label {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0 0 0.5rem 0;
  border-bottom: #ccc 2px dotted;
  min-height: 3rem;
  align-items: center;
}
body #report-form p label span {
  width: 60%;
}
body #report-form p label span input,
body #report-form p label span textarea {
  width: 100%;
  padding: 0.25rem;
}
body #report-form .time p {
  display: flex;
  align-items: center;
  margin: 0 0 0.5rem 0;
}
body #report-form .time p span.name {
  flex: 0 0 40%;
}
body #report-form .time p span select {
  padding: 0.25rem;
  font-size: 1.1rem;
}
body #report-form .check-group .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
}
body #report-form .check-group .wpcf7-form-control.wpcf7-checkbox label {
  justify-content: flex-start;
}
body #report-form .check-group .wpcf7-form-control.wpcf7-checkbox label input {
  margin: 0 0.5rem 0 0;
  width: 1.5rem;
  height: 1.5rem;
}
body #report-form .check-group .wpcf7-form-control.wpcf7-checkbox label span {
  width: auto;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev {
  left: 1% !important;
  top: 5% !important;
  height: 95% !important;
  width: 10% !important;
}

.swiper-button-next {
  right: 1% !important;
  top: 5% !important;
  height: 95% !important;
  width: 10% !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 1;
  width: 0;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  left: 0;
  border-bottom: 1rem solid transparent;
  border-right: 2rem solid #fff;
  border-top: 1rem solid transparent;
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  right: 0;
  border-bottom: 1rem solid transparent;
  border-left: 2rem solid #fff;
  border-top: 1rem solid transparent;
}

/* 非アクティブ要素を半透明に */
@media screen and (max-width: 721px) {
  .swiper-slide {
    opacity: 0.3;
  }
  .swiper-slide-active {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */