@charset "UTF-8";
html {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1136px;
  padding: 0 18px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .wrapper {
    padding: 0;
    max-width: calc(100% - 36px);
  }
}

main {
  position: relative;
  margin-top: 90px;
  overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
  main {
    margin-top: 80px;
  }
}

section {
  position: relative;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}

.fs-12 {
  font-weight: 400;
  font-size: 12px;
  line-height: 26px;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

.fs-24 {
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
}

img {
  max-width: 100%;
}

.img-wrap {
  overflow: hidden;
}

.img-wrap img {
  transition: all 0.5s;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a:hover .img-wrap img {
  transform: scale(1.2);
}

.bold {
  font-weight: 700;
}

.movie-wrap {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 56.25%;
}
.movie-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.bg-cat {
  background-color: #2F2F2F;
}

.border-cat {
  border: #2F2F2F 1px solid;
}

.btn01 {
  width: 240px;
  height: 55px;
  background: #2F2F2F;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #FFFFFF;
  border: 1px solid #2F2F2F;
  transition: all 0.5s;
  margin: 0 auto;
}
.btn01:hover {
  background: #fff;
  color: #2F2F2F;
}
.btn01.red {
  color: #fff;
  border: 1px solid #E83633;
  background: #E83633;
}
.btn01.red:hover {
  background: #fff;
  color: #E83633;
}

.btn02 {
  width: 240px;
  border: 1px solid #2F2F2F;
  padding: 18px 0;
  padding-right: 14px;
  text-align: center;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #2F2F2F;
  position: relative;
  transition: all 0.5s;
  background-color: #fff;
  max-width: 100%;
}
.btn02.max_load {
  background-color: #aaa;
  opacity: 0.7;
  pointer-events: none;
  display: none;
}
.btn02.red {
  color: #fff;
  border: 1px solid #E83633;
  background: #E83633;
}
.btn02.red:hover {
  background: #fff;
  color: #E83633;
}
.btn02.teal {
  color: #fff;
  border: 1px solid teal;
  background: #1165AD;
}
.btn02.teal:hover {
  background: #fff;
  color: #1165AD;
}
.btn02.red_border {
  background: #fff;
  color: #E83633;
  border: 1px solid #E83633;
}
.btn02.red_border:hover {
  background: #E83633;
  color: #fff;
}
.btn02::after {
  content: "\f105";
  font-family: fontawesome;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.btn02:hover {
  color: #fff;
  background-color: #2F2F2F;
}
.btn02:hover::after {
  color: #fff;
}
.btn02.noarrow {
  padding-right: 0;
}
.btn02.noarrow::after {
  content: unset;
}

.scroll-prevent {
  overflow: hidden;
}

@media print, screen and (min-width: 769px) {
  ._dez-pad > div:nth-child(2n+1) {
    padding-right: 18px !important;
  }
  ._dez-pad > div:nth-child(2n) {
    padding-left: 18px !important;
  }
}

.common-tit h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 41px;
  color: #2F2F2F;
  margin-bottom: 10px;
}
.common-tit h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #2F2F2F;
}
@media only screen and (max-width: 768px) {
  .common-tit h3 {
    font-size: 14px;
    line-height: 19px;
  }
}

.modal_box {
  position: fixed;
  z-index: 3000;
  display: none;
  margin: 0;
  padding: 24px;
  background: #fff;
  box-sizing: border-box;
  max-height: 80%;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: scroll;
  text-align: left;
  width: calc(100% - 36px);
  max-width: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal_box .modal_close {
  font-size: 12px;
  display: table;
  margin: auto;
  text-align: center;
  cursor: pointer;
  margin-top: 24px;
}
.modal_box .modal_close span {
  display: block;
  padding: 20px 10px;
}
.modal_box .modal_close span::before, .modal_box .modal_close span::after {
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  background: #000;
}
.modal_box .modal_close span::before {
  transform: rotate(-45deg) translate(-1px, 1px);
}
.modal_box .modal_close span::after {
  transform: rotate(45deg);
}

.modal_open {
  cursor: pointer;
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

@media only screen and (max-width: 768px) {
  .full_sp {
    width: calc(100% + 36px);
    margin-left: -18px;
  }
}

.mini > .wrapper {
  max-width: 936px;
}
@media only screen and (max-width: 768px) {
  .mini > .wrapper {
    max-width: calc(100% - 36px);
  }
}

.label-h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
}
.label-h3::before {
  content: "❙";
  color: #E83633;
  margin-right: 10px;
}

.breadcrumbs {
  background: #F7F8F8;
}
.breadcrumbs .wrapper {
  max-width: 100%;
  padding: 32px 40px;
}
.breadcrumbs .wrapper .content {
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .breadcrumbs .wrapper .content {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .breadcrumbs .wrapper {
    padding: 20px;
  }
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.slick-dots li {
  position: relative;
  width: 6px;
  height: 6px;
}
.slick-dots li.slick-active::after {
  background: #E83633;
}
.slick-dots li::after {
  border-radius: 100px;
  width: 100%;
  height: 100%;
  background: #D9D9D9;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.slick-dots li button {
  display: none;
}

.finish-message {
  padding: 15px;
  background: #DCDDDD;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  text-align: center;
}/*# sourceMappingURL=reset.css.map */