@charset "UTF-8";
.body-back {
  background: url(../img/katouya-mv-back.jpg);
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -100;
  opacity: 0.1;
  position: fixed;
}

.my-mv {
  position: relative;
  height: 100vh;
  /* スクロールダウンの位置 */
  /* マウスホイール */
  /* マウス */
  /* アニメーション */
}

@media screen and (min-width: 1024px) {
  .my-mv {
    height: 95vh;
  }
}

.my-mv .mv-back {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: url(../img/katouya-mb-mv.jpg);
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 1024px) {
  .my-mv .mv-back {
    background: url(../img/katouya-new-mv.jpg);
    background-size: cover;
    background-position: center;
  }
}

.my-mv .mv-gray {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  z-index: 10;
  background-color: #000000;
}

.my-mv .mv-logo {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: 50;
  text-align: center;
  padding: 2rem 0 0;
}

@media screen and (min-width: 1024px) {
  .my-mv .mv-logo {
    width: 20rem;
  }
}

.my-mv .mv-logo h1 {
  font-size: 2.4rem;
  color: #fff;
}

.my-mv .mv-logo p {
  color: #fff;
}

.my-mv .mv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  text-align: center;
}

.my-mv .mv-text span {
  line-height: 3;
}

@media screen and (min-width: 1024px) {
  .my-mv .mv-text {
    left: inherit;
    right: 0;
    text-align: right;
    font-size: 2.4rem;
  }
}

.my-mv .scroll {
  margin-inline: auto;
  margin-top: 30px;
  position: absolute;
  bottom: 2rem;
  z-index: 15;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
}

.my-mv .scroll::before {
  -webkit-animation: 2s scroll infinite;
          animation: 2s scroll infinite;
  background: #fff;
  border-radius: 3px;
  content: "";
  height: 10px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 4px;
}

.my-mv .scroll::after {
  border: 2px solid #fff;
  border-radius: 20px;
  content: "";
  display: block;
  height: 50px;
  margin-inline: auto;
  margin-top: 10px;
  width: 30px;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 0;
    top: 40%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 70%;
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    top: 40%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 70%;
  }
}

.my-section {
  padding: 5rem 2rem;
}

@media screen and (min-width: 1024px) {
  .my-section {
    padding: 10rem 10%;
  }
}

.my-section2 {
  padding: 5rem 0;
}

@media screen and (min-width: 1024px) {
  .my-section2 {
    padding: 10rem 0;
  }
}

.section-title {
  padding: 2rem 0 7rem;
}

.section-title h2 {
  font-size: 3.2rem;
}

@media screen and (min-width: 1024px) {
  .section-title h2 {
    font-size: 3.2rem;
  }
}

.section-title p {
  font-size: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .section-title p {
    font-size: 1.8rem;
  }
}

.section-title-2 {
  padding: 2rem 0 4rem;
}

.section-title-2 h2 {
  font-size: 3.2rem;
}

@media screen and (min-width: 1024px) {
  .section-title-2 h2 {
    font-size: 3.2rem;
  }
}

.section-title-2 p {
  font-size: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .section-title-2 p {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .section-title-2 {
    font-size: 1.8rem;
  }
}

.news-back {
  background-color: #fff;
}

.news {
  height: auto;
}

@media screen and (min-width: 1024px) {
  .news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1024px) {
  .news .section-title {
    width: 20%;
  }
}

.news .news-box {
  height: auto;
}

@media screen and (min-width: 1024px) {
  .news .news-box {
    width: 80%;
  }
}

.news .news-box .pt-cv-blockgrid.list1 .pt-cv-content-item {
  padding-bottom: 20px;
  margin: 0 0 2rem 0;
  border-bottom: 0.1rem #000 solid;
}

.news .news-box .iscvblock .pt-cv-readmore.btn {
  background: #000;
}

.about {
  position: relative;
}

.about .about-circle {
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  position: absolute;
  top: -20rem;
  right: -10rem;
  background-color: beige;
  z-index: -5;
}

@media screen and (min-width: 1024px) {
  .about .about-circle {
    width: 35rem;
    height: 35rem;
    top: 4rem;
    right: 0;
  }
}

.about .about-img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .about .about-img {
    width: 80%;
  }
}

.about .about-text {
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .about .about-text {
    font-size: 1.4rem;
    padding: 3rem 0;
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .goods .flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 1024px) {
  .goods .goods-list {
    width: 46%;
  }
}

.goods .goods-list:last-of-type .c {
  margin: 0;
}

.goods .goods-list a {
  width: 90%;
  height: auto;
  pointer-events: none;
}

.goods .goods-list .c {
  position: relative;
  margin: 0 0 10rem;
}

.goods .goods-list .c .title {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 80%;
  padding: 1rem 2rem;
  color: #323232;
  background-color: #fff;
  font-size: 1.2rem;
  text-align: center;
}

.goods .goods-list .c .title h3 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.goods .goods-list .c .title h3::before {
  content: "";
  width: 15rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  left: -17rem;
  background-color: #000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .goods .goods-list .c .title h3::before {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .goods .goods-list .c .title h3::before {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .goods .goods-list .c .title {
    font-size: 1.4rem;
  }
}

.goods .goods-list .c .text {
  padding: 1rem 0;
  font-size: 1.3rem;
}

@media screen and (min-width: 1024px) {
  .goods .goods-list .c .text {
    font-size: 1.6rem;
  }
}

.info .section-title {
  padding: 1rem 2rem 2rem;
}

@media screen and (min-width: 1024px) {
  .info .section-title {
    padding: 0 10% 5rem;
  }
}

.info .map {
  width: 100%;
  padding: 2rem;
}

@media screen and (min-width: 1024px) {
  .info .map {
    padding: 0 10%;
    margin: 0 auto;
  }
}

.info .map iframe {
  width: 100%;
  height: 30rem;
}

@media screen and (min-width: 1024px) {
  .info .map iframe {
    height: 50rem;
  }
}

.info .info-list {
  position: relative;
  height: auto;
  background-color: beige;
  padding: 0 0 5rem;
}

.info .info-list .back-color {
  position: absolute;
  background-color: beige;
  width: 100%;
  height: 100%;
  top: -14rem;
  left: 0;
  z-index: -10;
}

.info .info-list .c {
  padding: 2rem;
}

@media screen and (min-width: 1024px) {
  .info .info-list .c {
    padding: 5rem 15%;
  }
}

.info .info-list .c li {
  padding: 1rem 0;
  border-bottom: 0.1rem solid #949494;
}

@media screen and (min-width: 1024px) {
  .info .info-list .c li {
    font-size: 1.6rem;
  }
}

.info .info-list .c .shop {
  font-size: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .info .info-list .c .shop {
    font-size: 1.8rem;
  }
}
/*# sourceMappingURL=top.css.map */