@charset "UTF-8";


/* catalogLayout
------------------------------------*/
.catalogLayout .h2_wrap .inner {
    padding-left: 70px;
    width: calc(96% - 70px);
}
.catalogLayout .h2_wrap .inner::before {
  background-image: url("../img/h2_img.png");
  width: 37px;
  height: 50px;
}

.catalogLayout #c01 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 4%;
}
.catalogLayout #c01 ul > li {
    width: calc(96% / 2);
}
.catalogLayout #c01 ul > li p {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: bold;
}
.catalogLayout #c01 ul > li a {
    display: block;
    position: relative;
    max-width: 265px;
    margin: 0 auto;
}
.catalogLayout #c01 ul > li a::after {
    position: absolute;
    content: "";
    z-index: -2;
    width: 75%;
    height: 25px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 10px 15px -4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    border-radius: 50%;
}
.catalogLayout #c01 ul > li a:hover::after {
    bottom: 15px;
}
.catalogLayout #c01 ul > li a .img {
    position: relative;
    transition: all 0.3s;
}
.catalogLayout #c01 ul > li a:hover .img {
    transform: translateY(5px);
}
.catalogLayout #c01 ul > li a .img::before, .catalogLayout #c01 ul > li a .img::after {
    position: absolute;
    transition: all 0.3s;
    top: 50%;
    transform: translateY(-50%);
}
.catalogLayout #c01 ul > li a .img::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #d80e19;
    right: 20px;
}
.catalogLayout #c01 ul > li a .img::after {
    color: #fff;
    content: "→";
    right: 25px;
}
.catalogLayout #c01 ul > li a:hover .img::after {
    right: 20px;
}



			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 760px) {
                .catalogLayout .h2_wrap .inner {
                    padding-left: 110px;
                    width: calc(96% - 110px);
                }
                .catalogLayout .h2_wrap .inner::before {
                  width: 59px;
                  height: 80px;
                }
                .catalogLayout #c01 ul {
                    gap: 80px 4%;
                }
                .catalogLayout #c01 ul > li {
                    width: calc(92% / 3);
                }
			}
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 960px) {
                .catalogLayout #c01 ul > li p {
                    font-size: 1.1rem;
                    margin-top: 30px;
                }
			}
