@charset "utf-8";
.main-visual {
    height: 100vh;
    background-color: #ccc;
    position: relative;
    overflow: hidden;
    min-height: 650px;
}
.main-visual:after {
    background-color: rgba(0,0,0,0.05);
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
}
.main-visual h2 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
    font-family: "Noto Serif", serif;
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.6;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.23);
    padding-top: 120px;
}
.main-visual h2 span {
    position: relative;
}
.main-visual h2 span:before {
    background-image: url("../../assets/images/home_bg_visual.png");
    width: calc(856px / 2);
    height: calc(871px / 2);
    content: "";
    position: absolute;
    z-index: -1;
    left: -220px;
  top: -135px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.main-visual .swiper-container {
    height: 100%;
    z-index: 8 !important;
}
.main-visual .swiper-wrapper{
    height: 100%;
}
.main-visual .swiper-slide{
    height: 100%;
    width: 100%;
}
.main-visual .swiper-img {
    height: 100%;
    width: 100%;
    transform: scale(1.1);
}
.main-visual .swiper-slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: ease-in-out .3s;
}
@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.0);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
    height: 100%;
    
}
.main-visual__scroll {
    position: absolute;
    z-index: 9;
    bottom: 60px;
    right: 150px;
    color: #fff;
    writing-mode: vertical-rl;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--f-en);
    font-weight: 700;
    font-size: 17px;
    animation: floating-y 1.2s ease-in-out infinite alternate-reverse;
}
.main-visual__scroll a {
    display: flex;
    color: #fff;
}
.main-visual__scroll:after {
    width: 1px;
    height: 50px;
    content: "";
    background-color: #fff;
    margin-top: 15px;
}
@keyframes floating-y {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(10px);
  }
}
.guide {
    background: #FFFFE7;
background: linear-gradient(45deg,rgba(255, 255, 231, 1) 0%, rgba(234, 246, 238, 1) 100%);
    padding-bottom: 100px;
}
.guide__outer {
    border-radius: 30px;
    background-color: #fff;
    padding: 70px;
    position: relative;
    box-sizing: border-box;
    z-index: 9;
}
.guide__inner {
    display: flex;
}
.guide__info {
    flex: 1;
    margin-right: 4%;
}
.guide__info-flex {
    display: flex;
    gap:6%;
}
.guide__info-item {
    width: calc((100% - 6%) /2);
    text-align: center;
    line-height: 1.8;
    font-size: 15px;
    position: relative;
}
.guide__info-item:nth-child(1):after {
    width: 1px;
    background-color: var(--c-line);
    content: "";
    position: absolute;
    z-index: 1;
    right: calc(-6% + -1px);
    top: 0;
    bottom: 0;
}
.guide__info-item h2 {
    background-color: #eef5f0;
    display: flex;
    height: 60px;
    border-radius: 10px;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    padding-left: 75px;
}
.guide__info-item h2:before {
    background-color: var(--c-gr);
    width: 60px;
    height: 60px;
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    background-image: url("../../assets/images/home_icon_time.png");
    background-size: 29px;
    background-repeat: no-repeat;
    background-position: center center;
}
.guide__info-item:nth-child(2) h2:before {
    background-image: url("../../assets/images/home_icon_close.png");
    background-size: 27px;
}
.guide__link {
    width: 27%;
    flex-shrink: 0;
    margin-left: auto;
}
.guide__link li:not(:last-child) {
    margin-bottom: 10px;
}
.guide__link li a {
    background-color: var(--c-gr);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    height: 60px;
    align-items: center;
    border-radius: 8px;
    padding-left: 35px;
    position: relative;
    background-image: url("../images/arrow_w.png");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: right 20px center;
}
.guide__link li a:hover {
    background-color: #b3d872;
    background-position: right 15px center; 
}
.guide__link li a:before {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 18px;
    content: "";
}
.guide__info-time {
    text-align: center;
    font-family: var(--f-en);
    font-weight: 700;
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.guide__info-open {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.guide__info-open dd {
    font-family: var(--f-en);
    font-weight: 700;
    font-size: 24px;
    margin-left: 15px;
}
.guide__info-txt {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.guide__info-close dt {
    font-weight: 700;
    font-size: 19px;
}
.guide__info-tel {
    border: var(--c-gr) 1px solid;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    align-items: center;
    padding: 5px;
    margin-top: 20px;
}
.guide__info-tel dd {
    color: var(--c-gr);
    font-size: 34px;
    font-family: var(--f-en);
    font-weight: 700;
    background-image: url("../images/icon_tel.png");
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 30px;
    margin-left: 20px;
}
.guide__info-tel dd a {
    color: var(--c-gr);
}
.guide__info-tel dd span {
    font-family: var(--f-jp);
    font-size: 50%;
}
.guide__other-link {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}
.guide__other-link ul{
    display: flex;
    gap:20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.guide__other-link ul li {
    width: calc((100% - 60px) /4);
}
.guide__other-link ul li a {
    display: block;
    border: var(--c-line) 1px solid;
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
    background-color: #fff;
}
.guide__other-link ul li a:after {
    width: 45px;
    height: 45px;
    background-image: url("../images/arrow_w.png");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--c-gr);
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    border-top-left-radius: 10px;
    transition: ease-in-out .2s;
}
.guide__other-link ul li a:hover {
    color: var(--c-gr);
}

.guide__other-link ul li dl {
    border: var(--c-line);
    display: flex;
    align-items: center;
    height: 190px;
    flex-flow: column;
    justify-content: center;
}
.guide__other-link ul li dt {
    width: 70px;
    flex-shrink: 0;
    margin-bottom: 10px;
    
}
.guide__other-link ul li dt img {
}
.guide__other-link ul li dd {
    font-weight: 700;
    font-size: 17px;
    padding-bottom: 10px;
}
.news {
    padding-top: 120px;
    padding-bottom: 120px;
}
.news__important {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 110px;
}
.news__important h2 {
    background: #FF7568;
background: linear-gradient(90deg,rgba(255, 117, 104, 1) 0%, rgba(255, 170, 35, 1) 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.1em;
}
.news__important h2 span {
    background-image: url("../../assets/images/home_icon_news.png");
    background-size: 28px;
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 30px;
}
.news__important ul {
    padding: 30px;
}
.news__important li:not(:last-child) {
    margin-bottom: 15px;
}
.news__important li a:hover dd{
    text-decoration: underline;
}
.news__important dl {
    display: flex;
    line-height: 1.5;
    align-items: flex-start;
}
.news__important dt {
    font-size: 16px;
    font-family: var(--f-en);
    font-weight: 600;
    color: #ff7568;
    display: flex;
    align-items: center;
}
.news__important dt:after {
    background-color: #ff7568;
    height: 1px;
    width: 30px;
    content: "";
    display: block;
    margin-left: 15px;
    margin-right: 15px;
}
.news__important dd {
    font-size: 15px;
}
.home__second-ttl {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
.home__second-ttl:after {
    content: attr(data-eng);
    font-family: var(--f-en);
    display: block;
    color: var(--c-base);
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-top: 5px;
}
.news .home__second-ttl {
    color: var(--c-gr);
    flex-shrink: 0;
    width: 260px;
}
.news__general {
    display: flex;
    position: relative;
    min-height: 250px;
}
.news__general .com-btn {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 170px;
    width: 200px;
}
.news__general .com-btn a {
    height: 50px;
}
.news__general-txt {
    flex: 1;
}
.news__general-cat {
    display: flex;
    flex-wrap: wrap;
    gap:15px;
    margin-bottom: 30px;
}
.news__general-cat li {
    border: var(--c-line) 1px solid;
    padding: 5px 25px;
    line-height: 1.5;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    min-width: 60px;
    text-align: center;
    cursor: pointer;
    transition: ease-in-out .2s;
}
.news__general-cat li:hover,
.news__general-cat li.current {
    background-color: var(--c-gr);
    color: #fff;
    border-color: var(--c-gr);
}
.news__general-dtl {
    border-top: var(--c-line) 1px solid;
    display: none;
}
.news__general-dtl.show {
    display: block;
}
.news__general-dtl li {
    border-bottom: var(--c-line) 1px solid;
    padding-top: 15px;
    padding-bottom: 15px;
}
.news__general-dtl li a {
    display: flex;
    position: relative;
}
.news__general-dtl li a:after {
    width: 55px;
    height: 26px;
    background-image: url("../images/arrow_w.png");
    background-size: 18px;
    background-color: var(--c-gr);
    background-repeat: no-repeat;
    background-position: center center;
    content: "";
    right: 0;
    border-radius: 40px;
    top: 50%;
    position: absolute;
    z-index: 1;
    margin-top: -13px;
}
.news__general-dtl li dl {
    display: flex;
    align-items: center;
}
.news__general-dtl li dt {
    font-family: var(--f-en);
    font-weight: 600;
    border-right: var(--c-line) 1px solid;
    margin-right: 30px;
    padding-right: 30px;
    padding-left: 25px;
}
.news__general-dtl li dd {
    background-color: #ecf8df;
    color: var(--c-gr);
    font-weight: 700;
    font-size: 12px;
    min-width: 130px;
    display: flex;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    box-sizing: border-box;
    padding: 0 15px;
}
.news__general-dtl li p {
    font-weight: 500;
    position: relative;
    padding-left: 15px;
    margin-left: 25px;
    flex: 1;
    padding-right: 70px;
    transition: ease-in-out .2s;
}
.news__general-dtl li a:hover p {
    text-decoration: underline;
    color: var(--c-gr);
}
.news__general-dtl li p:before {
    width: 8px;
    height: 8px;
    content: "";
    background-color: var(--c-gr);
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    top: 50%;
    margin-top: -4px;
    left: 0;
}
.about {
    background-image: url("../../assets/images/home_bg_about.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 40px;
    padding-top: 120px;
    padding-bottom: 120px;
    color: #fff;
}
.about h2 {
    text-align: center;
    margin-bottom: 80px;
}
.about h2:after {
    color: #fff;
}
.about__flex {
    display: flex;
}
.about__img {
    order: 2;
    flex-shrink: 0;
    width: 48%;
    margin-left: 7%;
}
.about__img img {
    border-radius: 30px;
}
.about__txt {
    order: 1;
    font-weight: 500;
}
.about__txt h3 {
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin-bottom: 40px;
}
.about__txt .com-btn {
    margin-top: 60px;
}
.other {
    display: flex;
    gap:60px;
    padding-top: 120px;
    padding-bottom: 120px;
}
.other__item {
    flex: 1;
}
.other__item img {
    border-radius: 15px;
    transition: ease-in-out .2s;
}
.other__item a:hover img {
    opacity: 0.8;
}
.other__item h2 {
    font-size: 19px;
    font-weight: 700;
    margin-top: 10px;
    position: relative;
    letter-spacing: 0.06em;
    padding-left: 20px;
    transition: ease-in-out .2s;
}
.other__item a:hover h2 {
    color: var(--c-gr);
    text-decoration: underline;
}
.other__item h2:before {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--c-gr);
    content: "";
    top: 50%;
    margin-top: -4px;
    z-index: 1;
    left: 0;
    
}
.other__item h2:after {
    width: 55px;
    height: 26px;
  background-image: url("../images/arrow_w.png");
  background-size: 18px;
  background-color: var(--c-gr);
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  right: 0;
  border-radius: 40px;
  top: 50%;
  position: absolute;
  z-index: 1;
  margin-top: -13px;
}
.pickup {
    padding-top: 100px;
    overflow: hidden;
}

.pickup .swiper-wrapper{
    height: auto;
}

.pickup__pagination {
    text-align: center;
    bottom: 0 !important;
    position: absolute;
}
.pickup .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.pickup__swiper {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 70px;
    position: relative;
}
.pickup .swiper-pagination-bullet-active {
  background: var(--c-gr);
}
.pickup h2 {
    text-align: center;
}
.pickup h2 {
    color: var(--c-gr);
    margin-bottom: 60px;
}
.pickup__item a {
    display: block;
}
.pickup__item-img img {
    border-radius: 15px;
    transition: ease-in-out .2s;
}
a:hover .pickup__item-img img {
    opacity: 0.8;
}
.pickup__item h3 {
    font-size: 17px;
  font-weight: 700;
  margin-top: 15px;
  position: relative;
  letter-spacing: 0.06em;
  padding-left: 15px;
  transition: ease-in-out .2s;
    padding-right: 65px;
    line-height: 1.5;
}
.pickup__item a:hover h3 {
    text-decoration: underline;
    color: var(--c-gr);
}
.pickup__item h3:before {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c-gr);
  content: "";
  top: 9px;
  z-index: 1;
  left: 0;
}
.pickup__item h3:after {
  width: 55px;
  height: 26px;
  background-image: url("../images/arrow_w.png");
  background-size: 18px;
  background-color: var(--c-gr);
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  right: 0;
  border-radius: 40px;
  top: 50%;
  position: absolute;
  z-index: 1;
  margin-top: -13px;
}
@media screen and (max-width:1080px){
.main-visual {
  height: 34rem;
  min-height: inherit;
    
}
.main-visual h2 {
  font-size: 2.5rem;
    padding-top: 3rem;
    writing-mode: inherit;
    line-height: 1.5;
}
.main-visual h2 span::before {
  width: calc(85.6rem * 0.3);
  height: calc(87.1rem * 0.3);
  left: -10rem;
  top: -8rem;
  opacity: 0.9;
    -ms-filter: blur(1.5rem);
    filter: blur(1.5rem);
}
.main-visual__scroll {
  bottom: 2.5rem;
  right: 3rem;
  font-size: 1.2rem;
}
.main-visual__scroll::after {
  height: 5rem;
  margin-top: 1rem;
}
.guide {
  padding-bottom: 4rem;
}
.guide__outer {
    padding: 2rem;
    border-radius: 2rem;
    padding-bottom: 2rem;
}
.guide__inner {
  display: block;
}
.guide .inner1320 {
}
.guide__info {
  margin-right: 0%;
}
.guide__info-flex {
  display: block;
}
.guide__info-item {
  width: auto;
  font-size: 1.3rem;
}
.guide__info-item:not(:last-child) {
    margin-bottom: 2rem;
}
.guide__info-item:nth-child(1)::after {
  display: none;
}
.guide__info-item h2 {
  height: 4.5rem;
  border-radius: 0.7rem;
  font-size: 1.6rem;
  padding-left: 5.5rem;
     margin-bottom: 1.5rem;
}
.guide__info-item h2::before {
  width: 4.5rem;
  height: 4.5rem;
    background-size: calc(2.9rem * 0.8);
}
.guide__info-item:nth-child(2) h2::before {
  background-size: calc(2.7rem * 0.8);
}
.guide__info-time {
  font-size: 2.2rem;
  margin-top: 0rem;
  margin-bottom: 0.2rem;
    line-height: 1.6;
}
.guide__info-open dd {
  font-size: 2.2rem;
  margin-left: 1rem;
}
.guide__info-tel {
  border-radius: 0.8rem;
  display: block;
  font-size: 1.4rem;
  padding: 1rem;
  margin-top: 3rem;
    text-align: center;
}
.guide__info-tel dd {
    font-size: 2.4rem;
    background-size: 1.8rem;
    padding-left: 2.5rem;
    margin-left: 0;
    display: inline-block;
    line-height: 1.5;
}
.guide__link {
  width: 100%;
    margin-top: 3rem;
}
.guide__link li a {
  font-size: 1.4rem;
  height: 5rem;
  border-radius: 0.6rem;
  padding-left: 3rem;
  background-size: 1.5rem;
  background-position: right 1.5rem center;
}
.guide__link li a::before {
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  left: 1.6rem;
}
.guide__link li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.guide__other-link ul {
  gap: 0.5rem;
  margin-top: 0rem;
    margin-bottom: 0;
}
.guide__other-link ul li {
    width: calc((100% - 0.5rem) /2);
}
.guide__other-link ul li dl {
    height: 11.5rem;
    align-items: center;
}
.guide__other-link ul li dd {
    font-size: 1.4rem;
    text-align: left;
    padding-left: 0rem;
    padding-bottom: 1.3rem;
}
.guide__other-link ul li a {
  border-radius: 0.8rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  line-height: 1.4;
    text-align: center;
}
.guide__other-link ul li a::after {
  width: 2.5rem;
  height: 2.5rem;
  background-size: 1.5rem;
  border-top-left-radius: 0.7rem;
}
.guide__other-link ul li dt {
    width: 4.5rem;
    margin-right: 0;
    margin-bottom: 0.8rem;
}
.guide__info-close dt {
  font-size: 1.7rem;
    margin-bottom: 0.5rem;
}
.guide__other-link {
  margin-top: -4rem;
  margin-bottom: 2.5rem;
}
.news {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.news__important {
  display: block;
  border-radius: 0.8rem;
  margin-bottom: 5rem;
}
.news__important h2 {
  font-size: 1.6rem;
  width: auto;
  letter-spacing: 0.1em;
  height: 8rem;
}
.news__important h2 span {
  background-size: 2.3rem;
  padding-top: 2.5rem;
}
.news__important dl {
  display: block;
}
.news__important dt {
  font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.news__important ul {
  padding: 1.5rem;
}
.news__important dd {
  font-size: 1.4rem;
}
.news__important dt::after {
    display: none;
}
.news__important li:not(:last-child) {
  margin-bottom: 1rem;
}
.news__general {
  display: block;
  min-height: inherit;
}
.home__second-ttl {
  font-size: 2.6rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 2.5rem;
}
.news .home__second-ttl {
  width: auto;
}
.home__second-ttl::after {
  font-size: 1.4rem;
  margin-top: 0;
}
.news__general-cat li {
  padding: 0.3rem 1rem;
  border-radius: 4rem;
  font-size: 1.1rem;
  min-width: 2rem;
}
.news__general-cat {
    justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.news__general .com-btn {
  position: static;
    width: 20rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
}
.news__general-dtl li a {
  display: block;
    padding-right: 5rem;

}
.news__general-dtl li a:after {
    width: 4rem;
    height: 2rem;
    background-size: 1.5rem;
    border-radius: 4rem;
    margin-top: -1rem;
  }
    .news__general-dtl li dl {
        margin-bottom: 0.5rem;
    }
.news__general-dtl li dt {
  margin-right: 1.4rem;
  padding-right: 1.4rem;
  padding-left: 0;
}
.news__general-dtl li dd {
  font-size: 1.1rem;
  min-width: 9rem;
  height: 2.3rem;
  border-radius: 4rem;
  padding: 0 1rem;
}
.news__general-dtl li p {
  padding-left: 1.2rem;
  margin-left: 0;
  padding-right: 0;
}
.news__general-dtl li p::before {
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0;
    top: 1rem;
}
.news__general-dtl li {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.about {
  border-radius: 3rem;
  padding-top: 5rem;
  padding-bottom: 6rem;
}
.about h2 {
  margin-bottom: 4rem;
}
.about__flex {
  display: block;
}
.about__img {
  width: 100%;
  margin-left: 0;
    margin-bottom: 3rem;
}
.about__txt h3 {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.about__img img {
  border-radius: 2rem;
}
.about__txt .com-btn {
  margin-top: 3rem;
}
.other {
  padding-top: 5rem;
  padding-bottom:5rem;
    display: block;
}
.other__item:not(:last-child) {
    margin-bottom: 3rem;
}
.other__item h2 {
  font-size: 1.6rem;
  margin-top: 1rem;
  padding-left: 1.4rem;
}
.other__item h2::before {
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
}
.other__item h2::after {
  width: 4rem;
    height: 2rem;
    background-size: 1.5rem;
    border-radius: 4rem;
    margin-top: -1rem;
}
.other__item img {
  border-radius: 1rem;
}
.pickup {
  padding-top: 4rem;
}
.pickup h2 {
  margin-bottom: 3rem;
}
.pickup__item h3 {
  font-size: 1.3rem;
    margin-top: 1rem;
    padding-left: 1.4rem;
    padding-right: 5rem;
}
.pickup__item h3::before {
    width: 0.6rem;
    height: 0.6rem;
      top: 50%;
    margin-top: -0.3rem;
  }
.pickup__item h3::after {
    width: 4rem;
    height: 2rem;
    background-size: 1.5rem;
    border-radius: 4rem;
    margin-top: -1rem;
  }
.pickup__item-img img {
  border-radius: 1rem;
}
.pickup .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
    margin: 0.3rem !important;
}
.pickup__swiper {
  padding-bottom: 5rem;
}
a:hover .pickup__item-img img {
    opacity: 1;
}
.pickup__item a:hover h3 {
    text-decoration: none;
    color: var(--c-base);
}
}






































