@charset "UTF-8";
.header-pc-head {
  display: none;
  width: 100%;
}
.header-pc-head__content {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: right;
  column-gap: 20px;
  padding: 0 20px 0 0;
}
.header-pc-head__content .input-wrap {
  position: relative;
  max-width: 240px;
  width: 100%;
}
.header-pc-head__content .input-wrap input {
  height: 32px;
  border-radius: 30px;
  border: 1px solid #464646;
  font-size: 1.2rem;
  padding: 5px 5px 5px 20px;
  width: 100%;
}
.header-pc-head__content .input-wrap input:focus {
  outline: none;
}
.header-pc-head__content .input-wrap input:focus::placeholder {
  color: transparent;
}
.header-pc-head__content .input-wrap button {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 50px;
  height: 26px;
  background-color: #b6d238;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}
.header-pc-head__content .input-wrap button::before {
  display: block;
  content: "";
  background-image: url(../img/icons/icon_search_fff.svg);
  width: 50px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.header-pc-head__content > a {
  position: relative;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  height: 32px;
  border-radius: 30px;
  padding: 0 35px 0 20px;
  text-align: center;
}
.header-pc-head__content > a:nth-child(2) {
  background-color: #f78f1d;
}
.header-pc-head__content > a:nth-child(3) {
  background-color: #02b7de;
}
.header-pc-head__content > a:nth-child(4) {
  background-color: #e5016a;
}
.header-pc-head__content > a.link-logout {
  background-color: #707070;
}
.header-pc-head__content > a.link-mypage {
  background-color: #ED64A9;
}
.header-pc-head__content > a::after {
  position: absolute;
  top: calc(50% - 2.5px);
  right: 10px;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .header-pc-head {
    display: block;
  }
}
.header-sp-head {
  display: block;
  position: fixed;
  top: 10px;
  left: 10px;
  width: 100%;
  z-index: 5;
  width: fit-content;
}
.header-sp-head__content {
  display: flex;
  align-items: center;
  column-gap: 7px;
}
.header-sp-head__icon {
  width: 45px;
  height: 45px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.header-sp-head__icon.search {
  background-image: url(../img/icons/icon_search.svg);
}
.header-sp-head__icon.close {
  display: none;
  background-image: url(../img/icons/icon_close.svg);
}
.header-sp-head__icon.login {
  background-image: url(../img/icons/icon_login.svg);
}
.header-sp-head__icon.logout {
  background-image: url(../img/icons/icon_logout.svg);
}
@media (min-width: 768px) {
  .header-sp-head {
    display: none;
  }
}
.header-search {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 11;
}
.header-search.active {
  display: block;
}
@media (max-width: 767px) {
  .header-search {
    padding: 80px 20px 0 20px;
    z-index: 4;
  }
}
.header-search .btn-close {
  position: relative;
  display: flex;
  width: 100%;
}
.header-search .btn-close a {
  position: absolute;
  top: -20px;
  right: -25px;
  background-image: url(../img/icons/icon_close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 45px;
  height: 45px;
}
@media (max-width: 767px) {
  .header-search .btn-close {
    display: none;
  }
}
.header-search__content {
  background-color: #fff;
  border-radius: 10px;
  margin: 20px 0 0;
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .header-search__content {
    position: fixed;
    max-width: 320px;
    width: 100%;
    top: 65px;
    right: 350px;
    margin: 0;
  }
}
.header-search__content .input-wrap {
  position: relative;
  max-width: 280px;
  width: 100%;
}
@media (min-width: 768px) {
  .header-search__content .input-wrap {
    display: none;
  }
}
.header-search__content .input-wrap input {
  height: 45px;
  border-radius: 30px;
  border: 1px solid #464646;
  font-size: 1.2rem;
  padding: 5px 5px 5px 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .header-search__content .input-wrap input {
    font-size: 1.6rem;
  }
}
.header-search__content .input-wrap input:focus {
  outline: none;
}
.header-search__content .input-wrap input:focus::placeholder {
  color: transparent;
}
.header-search__content .input-wrap button {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 60px;
  height: 39px;
  background-color: #b6d238;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}
.header-search__content .input-wrap button::before {
  display: block;
  content: "";
  background-image: url(../img/icons/icon_search_fff.svg);
  width: 60px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.header-search__content h3 {
  background-image: url(../img/index/pop_keyword.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 166px;
  height: 22px;
}
@media (max-width: 767px) {
  .header-search__content h3 {
    margin: 40px 0 0;
  }
}
.header-search__content > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
  row-gap: 10px;
  margin: 20px 0 0;
}
.header-search__content > ul li a {
  display: inline-flex;
  border: 1px solid #B3B3B3;
  border-radius: 5px;
  padding: 5px 15px 5px 10px;
  color: #707070;
  font-size: 1.2rem;
}
.header-search__content > ul li a::before {
  content: "";
  display: block;
  background-image: url(../img/icons/icon_tag.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  margin: 0 10px 0 0;
  flex-shrink: 0;
}
.header-middle {
  position: relative;
  z-index: 3;
  background-color: #fcf345;
  text-align: center;
  width: 100%;
  padding: 25px 0;
}
@media (max-width: 767px) {
  .header-middle {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
  }
}
.header-middle__logo img {
  max-width: 147px;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .header-middle__logo img {
    max-width: 271px;
  }
}
.header-middle__hbgmenu {
  position: fixed;
  z-index: 10;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 41px;
  height: 35px;
}
@media (min-width: 768px) {
  .header-middle__hbgmenu {
    z-index: 10;
    top: 80px;
    right: 20px;
  }
}
@media (min-width: 1200px) {
  .header-middle__hbgmenu {
    right: calc((100vw - 1200px) / 2);
  }
  .header-middle__hbgmenu:has(.close) {
    right: 20px;
  }
}
.header-middle__hbgmenu.top-sticky {
  top: 20px;
}
@media (min-width: 768px) {
  .header-middle__hbgmenu.top-sticky {
    top: 10px;
  }
}
.header-middle__hbgmenu__content {
  position: relative;
  width: 100%;
  height: 100%;
}
.header-middle__hbgmenu__content span, .header-middle__hbgmenu__content p {
  display: block;
  position: absolute;
  transition: all 0.3s ease;
}
.header-middle__hbgmenu__content span {
  width: 28px;
  content: "";
  height: 2px;
  background-color: #000;
  margin: 3px 0;
  right: 6.5px;
}
.header-middle__hbgmenu__content span:nth-child(1) {
  top: 0;
}
.header-middle__hbgmenu__content span:nth-child(2) {
  top: 7px;
}
.header-middle__hbgmenu__content span:nth-child(3) {
  top: 14px;
}
.header-middle__hbgmenu__content p::before {
  position: absolute;
  top: 21px;
  display: block;
  content: "メニュー";
  color: #000;
  text-align: center;
  font-size: 1rem;
  width: 41px;
}
.header-middle__hbgmenu__content.close span {
  top: 7px;
}
.header-middle__hbgmenu__content.close span:nth-child(1) {
  transform: rotate(-45deg);
}
.header-middle__hbgmenu__content.close span:nth-child(2) {
  display: none;
}
.header-middle__hbgmenu__content.close span:nth-child(3) {
  transform: rotate(45deg);
}
.header-middle__hbgmenu__content.close p::before {
  content: "閉じる";
}
.header-hbgmenu {
  position: fixed;
  top: 70px;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .header-hbgmenu {
    transition: height 0.3s;
  }
}
@media (min-width: 768px) {
  .header-hbgmenu {
    transition: transform 0.3s;
    transform: translateX(450px);
  }
}
.header-hbgmenu.active {
  right: 0;
  z-index: 5;
  background-color: #faeff2;
  width: 100%;
  height: 100vh;
  padding: 30px 15px 100px;
  overflow-y: scroll;
  visibility: visible;
  opacity: 1;
  box-shadow: -5px 0 20px #ccc;
}
@media (min-width: 768px) {
  .header-hbgmenu.active {
    transform: translateX(0px);
    top: 0;
    max-width: 420px;
    padding: 50px 15px 100px;
  }
}
.header-hbgmenu.active .btn-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
.header-hbgmenu.active .btn-flex > a {
  position: relative;
  color: #fff;
  display: inline-flex;
  align-items: center;
  height: 55px;
  border-radius: 30px;
  max-width: 310px;
  width: 100%;
}
.header-hbgmenu.active .btn-flex > a:nth-child(1) {
  background-color: #f78f1d;
}
.header-hbgmenu.active .btn-flex > a:nth-child(2) {
  background-color: #02b7de;
}
.header-hbgmenu.active .btn-flex > a.link-mypage {
  background-color: #ED64A9;
}
.header-hbgmenu.active .btn-flex > a p {
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
}
.header-hbgmenu.active .btn-flex > a::after {
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.header-hbgmenu.active > ul:nth-child(2) {
  margin: 20px 0 0;
}
.header-hbgmenu.active > ul:nth-child(2) > li {
  position: relative;
  padding: 20px 10px;
}
.header-hbgmenu.active > ul:nth-child(2) > li::after {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-repeat: repeat-x;
  background-size: contain;
  background-image: url(../img/deco/line_horizontal_dot.png);
}
.header-hbgmenu.active > ul:nth-child(2) > li:first-child::before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-repeat: repeat-x;
  background-size: contain;
  background-image: url(../img/deco/line_horizontal_dot.png);
}
.header-hbgmenu.active > ul:nth-child(2) a {
  width: 100%;
  font-size: 1.6rem;
  color: #707070;
}
.header-hbgmenu.active > ul:nth-child(3) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  margin: 40px 0 0;
}
.header-hbgmenu.active > ul:nth-child(3) > li {
  width: calc((100% - 20px) / 2);
  border-bottom: 2px dashed #B3B3B3;
  height: 60px;
  padding: 0 10px;
}
.header-hbgmenu.active > ul:nth-child(3) > li:first-child, .header-hbgmenu.active > ul:nth-child(3) > li:nth-child(2) {
  border-top: 2px dashed #B3B3B3;
}
.header-hbgmenu.active > ul:nth-child(3) > li a {
  font-size: 1.2rem;
  color: #707070;
  line-height: 60px;
}
.header-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 70px 0 0;
  position: sticky;
  top: 0;
  z-index: 3;
}
@media (min-width: 768px) {
  .header-menu {
    align-items: center;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .header-menu {
    padding: 70px 0 0;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
}
.header-menu > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background-color: #fff;
  padding: 10px 10px 0;
  min-width: 600px;
  width: 100%;
}
@media (min-width: 768px) {
  .header-menu > ul {
    width: 100%;
    background-color: #fcf345;
    justify-content: center;
  }
}
.header-menu > ul::-webkit-scrollbar {
  display: none;
}
.header-menu > ul li {
  position: relative;
  color: #707070;
  height: 25px;
  padding: 0 max(20px, 4vw);
}
.header-menu > ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 3px;
  height: 25px;
  background-image: url(../img/deco/line_nav_dot.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.header-menu > ul li:last-child {
  position: relative;
}
.header-menu > ul li:last-child::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  content: "";
  width: 3px;
  height: 100%;
  background-image: url(../img/deco/line_nav_dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (min-width: 768px) {
  .header-menu > ul li {
    padding: 0 min(50px, 3.5vw);
  }
}
.header-menu > ul li a {
  text-wrap: nowrap;
  font-size: 1.1rem;
  line-height: 23px;
}
@media (min-width: 768px) {
  .header-menu > ul li a {
    font-size: 1.4rem;
  }
}
.header-menu > ul li.active {
  background-color: #ED64A9;
  color: #fff;
}
.header-menu .wave {
  position: relative;
  display: block;
  content: "";
  width: 600px;
  height: 25px;
  background-position: top center;
  background-repeat: repeat-x;
  background-size: contain;
  z-index: 1;
  background-image: url(../img/header/sp_wave.png);
}
.header-menu .wave.shadow {
  background-image: url(../img/header/sp_wave.png), linear-gradient(to bottom, #fff 0px, #fff 5px, #bbb, transparent 100%);
}
@media (min-width: 768px) {
  .header-menu .wave {
    width: 100%;
    height: 45px;
    background-image: url(../img/header/pc_wave.png);
  }
  .header-menu .wave.shadow {
    background-image: url(../img/header/pc_wave.png), linear-gradient(to bottom, #fcf345, #c7c036, transparent);
  }
}

.top-slide-area {
  position: relative;
  width: 100%;
  background-position: bottom;
  background-size: contain;
  background-repeat: repeat-x;
  overflow: hidden;
  background-image: url(../img/index/sp_bg.png);
  padding: 50px 0 140px;
  background-size: 130%;
  background-repeat: no-repeat;
  background-position: top;
}
@media (min-width: 768px) {
  .top-slide-area {
    background-size: 105%;
    padding: 180px 0 250px;
    background-image: url(../img/index/bg.png);
  }
}
.top-slide-area::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  background-image: url(../img/deco/line_colorful.png);
  width: 100%;
  height: 10px;
}
.top-slide-area .swiper {
  width: 90%;
  height: 100%;
}
@media (min-width: 768px) {
  .top-slide-area .swiper {
    margin: auto;
    max-width: 1366px;
    width: 100%;
    transform: scale(1.3);
  }
}
.top-slide-area .swiper-slide {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-slide-area .swiper-slide img {
  display: block;
  max-width: 350px;
  width: 100%;
}
@media (min-width: 768px) {
  .top-slide-area .swiper-slide img {
    max-width: 540px;
    height: auto;
  }
}
.top-slide-area .swiper-controls {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
}
@media (min-width: 768px) {
  .top-slide-area .swiper-controls {
    column-gap: 40px;
    bottom: 120px;
  }
}
.top-slide-area .swiper-pagination {
  position: static;
  width: auto;
  z-index: 1;
  color: #e5016a;
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) {
  .top-slide-area .swiper-pagination {
    font-size: 1.4rem;
  }
}
.top-slide-area .swiper-button-prev, .top-slide-area .swiper-button-next {
  position: static;
  margin-top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e5016a;
  background-color: #fff;
  z-index: 1;
}
.top-slide-area .swiper-button-next:after {
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
  margin: 0 2px 0 0;
}
.top-slide-area .swiper-button-prev:after {
  border-bottom: 1px solid #e5016a;
  border-left: 1px solid #e5016a;
  margin: 0 0 0 4px;
}
.top-slide-area .swiper-button-next:after, .top-slide-area .swiper-button-prev:after {
  content: "";
  width: 7.5px;
  height: 7.5px;
  transform: rotate(45deg);
}
.top-head {
  position: relative;
  background-color: #faeff2;
  padding: 120px 20px 90px;
}
@media (min-width: 768px) {
  .top-head {
    padding: 120px 20px 100px;
  }
}
.top-head::before, .top-head::after {
  position: absolute;
  display: block;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.top-head::before {
  background-image: url(../img/deco/illust_paint_f.svg);
  top: 50px;
  right: 3%;
  width: 115px;
  height: 48px;
}
@media (min-width: 768px) {
  .top-head::before {
    width: 159px;
    height: 66px;
    top: 20px;
  }
}
.top-head::after {
  background-image: url(../img/deco/illust_a.svg);
  top: -40px;
  left: 5%;
  width: 76px;
  height: 102px;
}
@media (min-width: 768px) {
  .top-head::after {
    width: 120px;
    height: 160px;
    top: -120px;
    left: 10%;
  }
}
.top-head__content {
  max-width: 1190px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  column-gap: 30px;
}
@media (max-width: 991px) {
  .top-head__content {
    flex-direction: column;
    row-gap: 80px;
  }
}
.top-head__content__link {
  position: absolute;
  bottom: 20px;
  right: 30px;
}
.top-head__content__link a {
  color: #e5016a;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .top-head__content__link a {
    font-size: 1.5rem;
  }
}
.top-head__content__link a::after {
  content: "";
  display: block;
  width: 7.5px;
  height: 7.5px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
  transform: rotate(45deg);
  margin: 0 0 0 10px;
}
.top-head__content__link a:hover {
  text-decoration: underline;
}
.top-head__content > div {
  position: relative;
  background-color: #fff;
  width: 100%;
}
@media (min-width: 992px) {
  .top-head__content > div {
    width: calc((100% - 30px) / 2);
    height: 275px;
  }
}
.top-head__content > div h2 {
  position: absolute;
}
.top-head__today {
  position: relative;
  border-radius: 10px;
}
.top-head__today::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../img/deco/illust_paint_d.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 47px;
  height: 32px;
  bottom: -10px;
  left: -10px;
}
@media (min-width: 768px) {
  .top-head__today::after {
    bottom: -60px;
    left: -50px;
  }
}
.top-head__today h2 {
  width: 167px;
  height: 60px;
  background-image: url(../img/index/ttl_today.svg);
  top: -45px;
  left: 10px;
  background-size: contain;
}
@media (min-width: 992px) {
  .top-head__today h2 {
    width: 222px;
    height: 80px;
    top: -75px;
  }
}
.top-head__today__head {
  display: flex;
  height: 60px;
}
.top-head__today__head > div {
  height: 60px;
  display: flex;
  align-items: center;
}
.top-head__today__head > div:nth-child(1) {
  padding: 0 20px;
  width: fit-content;
  border-radius: 10px 0 0 0;
  background-color: #f78f1d;
  color: #fff;
}
.top-head__today__head > div:nth-child(1) p {
  font-weight: bold;
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  .top-head__today__head > div:nth-child(1) p {
    font-size: 1.8rem;
  }
}
.top-head__today__head > div:nth-child(2) {
  border-radius: 0 10px 0 0;
  padding: 0 10px 0 20px;
  flex: 1;
  background-color: #feeab9;
  color: #e5016a;
}
@media (min-width: 992px) {
  .top-head__today__head > div:nth-child(2) {
    padding: 0 10px 0 30px;
  }
}
.top-head__today__head > div:nth-child(2) h3 {
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
}
@media (min-width: 992px) {
  .top-head__today__head > div:nth-child(2) h3 {
    font-size: 1.8rem;
  }
}
.top-head__today__content {
  display: flex;
  align-items: flex-start;
  padding: 20px 20px 50px;
  column-gap: 20px;
}
@media (min-width: 992px) {
  .top-head__today__content {
    padding: 20px 30px;
  }
}
.top-head__today__content img {
  max-width: 110px;
  width: 100%;
}
@media (min-width: 768px) {
  .top-head__today__content img {
    max-width: 165px;
  }
}
.top-head__today__content p {
  font-size: 1.2rem;
  color: #707070;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 6em;
}
@media (min-width: 992px) {
  .top-head__today__content p {
    font-size: 1.4rem;
  }
}
.top-head__today__content > div:nth-child(1) {
  width: fit-content;
}
.top-head__today__content > div:nth-child(2) {
  width: calc(100% - 130px);
}
@media (min-width: 768px) {
  .top-head__today__content > div:nth-child(2) {
    width: calc(100% - 185px);
  }
}
.top-head__news {
  border-radius: 10px;
  padding: 30px 25px 60px;
}
@media (min-width: 992px) {
  .top-head__news {
    padding: 30px 25px;
  }
}
.top-head__news h2 {
  width: 112px;
  height: 60px;
  background-image: url(../img/index/ttl_news.svg);
  top: -45px;
  left: 10px;
  background-size: contain;
}
@media (min-width: 992px) {
  .top-head__news h2 {
    top: -75px;
    width: 149px;
    height: 80px;
  }
}
.top-head__news ul li {
  padding: 20px 0;
  border-bottom: dashed 1px #707070;
}
@media (min-width: 992px) {
  .top-head__news ul li {
    padding: 25px 0;
  }
}
.top-head__news ul li a span {
  color: #707070;
  font-size: 1.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-height: 1.5em;
  max-height: 1.5em;
}
@media (min-width: 992px) {
  .top-head__news ul li a span {
    font-size: 1.4rem;
    -webkit-line-clamp: 2;
    max-height: 3em;
  }
}
.top-head__news::before, .top-head__news::after {
  position: absolute;
  content: "";
  display: block;
  width: 97px;
  height: 77px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-head__news::before {
  top: 0;
  right: 0;
  background-image: url(../img/deco/frame_news_r.png);
}
.top-head__news::after {
  bottom: -10px;
  left: 0;
  background-image: url(../img/deco/frame_news_l.png);
}
.top-thismonth {
  position: relative;
  background-color: #fcf345;
  padding: 90px 20px;
}
@media (min-width: 768px) {
  .top-thismonth {
    padding: 130px 20px 80px;
  }
}
.top-thismonth::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  background-image: url(../img/deco/line_colorful.png);
  width: 100%;
  height: 10px;
}
.top-thismonth .ttl-wrap {
  position: absolute;
  top: -10px;
  left: calc(50% - 165px);
}
@media (min-width: 768px) {
  .top-thismonth .ttl-wrap {
    top: -20px;
    left: calc(50% - 185px);
  }
}
.top-thismonth h2 {
  position: relative;
  background-image: url(../img/index/ttl_thismonth.svg);
  width: 330px;
  height: 75px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-align: center;
}
@media (min-width: 768px) {
  .top-thismonth h2 {
    width: 370px;
    height: 80px;
  }
}
.top-thismonth h2::before, .top-thismonth h2::after {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.top-thismonth h2::before {
  background-image: url(../img/deco/illust_b.svg);
  top: -30px;
  left: -15px;
  width: 80px;
  height: 70px;
}
@media (min-width: 768px) {
  .top-thismonth h2::before {
    top: -40px;
    left: -170px;
    width: 126px;
    height: 110px;
  }
}
.top-thismonth h2::after {
  background-image: url(../img/deco/illust_c.svg);
  top: -25px;
  right: -10px;
  width: 66px;
  height: 70px;
}
@media (min-width: 768px) {
  .top-thismonth h2::after {
    top: -40px;
    right: -160px;
    width: 103px;
    height: 110px;
  }
}
.top-thismonth__content {
  max-width: 440px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 30px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .top-thismonth__content {
    column-gap: 15px;
    max-width: 830px;
  }
}
@media (min-width: 1200px) {
  .top-thismonth__content {
    max-width: 1190px;
  }
}
.top-thismonth__card {
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 15px 20px;
  width: calc((100% - 10px) / 2);
  max-width: 170px;
}
@media (min-width: 768px) {
  .top-thismonth__card {
    width: 100%;
    max-width: 280px;
    padding: 25px;
    height: 340px;
  }
}
.top-thismonth__card::after {
  position: absolute;
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  top: -10px;
  left: calc(50% - 18px);
  background-image: url(../img/deco/sticker.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .top-thismonth__card::after {
    width: 48px;
    height: 48px;
    top: -24px;
    left: calc(50% - 24px);
  }
}
.top-thismonth__card img {
  width: 100%;
  max-width: 135px;
  height: 94px;
  object-fit: contain;
  margin: auto;
}
@media (min-width: 768px) {
  .top-thismonth__card img {
    max-width: 230px;
    height: 160px;
  }
}
.top-thismonth__card .date {
  color: #e5016a;
  font-size: 1.2rem;
  margin: 15px 0 0;
}
.top-thismonth__card .title {
  font-size: 1.3rem;
  color: #707070;
  font-weight: normal;
  margin: 5px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
}
@media (min-width: 768px) {
  .top-thismonth__card .title {
    font-size: 1.6rem;
    -webkit-line-clamp: 1;
    max-height: 1.5em;
  }
}
.top-thismonth__card .tags {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 2em;
  max-height: 4em;
}
.top-thismonth__card .tags > p {
  display: inline-flex;
  align-items: center;
  color: #707070;
  font-size: 1.1rem;
  padding: 0 15px 0 0;
}
.top-thismonth__card .tags > p::before {
  content: "";
  display: block;
  background-image: url(../img/icons/icon_tag.svg);
  width: 12px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 5px 0 0;
  flex-shrink: 0;
}
.top-thismonth__link {
  margin: 40px 0 0;
  text-align: center;
}
.top-search {
  position: relative;
  z-index: 2;
  background-color: #ED64A9;
  display: flex;
  justify-content: center;
  padding: 65px 20px;
}
.top-search::before, .top-search::after {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.top-search::before {
  width: 126px;
  height: 77px;
  top: -50px;
  right: 2%;
  background-image: url(../img/deco/illust_d.svg);
}
@media (min-width: 768px) {
  .top-search::before {
    width: 177px;
    height: 110px;
    top: -60px;
  }
}
.top-search::after {
  bottom: 10px;
  left: -10px;
  background-image: url(../img/deco/illust_paint_e.svg);
  width: 68px;
  height: 42px;
}
@media (min-width: 768px) {
  .top-search::after {
    bottom: -20px;
    left: 2%;
  }
}
@media (min-width: 768px) {
  .top-search {
    padding: 85px 20px;
  }
}
.top-season {
  position: relative;
  background-color: #faeff2;
  padding: 30px 20px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.top-season::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/deco/illust_paint_c.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 25%;
  right: -1%;
  width: 92px;
  height: 48px;
}
@media (min-width: 768px) {
  .top-season::before {
    bottom: 60px;
    right: 2%;
    width: 112px;
    height: 64px;
  }
}
@media (min-width: 768px) {
  .top-season {
    padding: 35px 20px 95px;
  }
}
.top-season h2 {
  background-image: url(../img/index/ttl_season.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 350px;
  height: 110px;
}
.top-season__content {
  margin: 30px 0 0;
  display: flex;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .top-season__content {
    flex-direction: column;
  }
}
.top-season__card {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  column-gap: 20px;
  row-gap: 20px;
  padding: 15px;
  width: 100%;
}
@media (min-width: 992px) {
  .top-season__card {
    width: calc((100% - 40px) / 3);
  }
}
.top-season__card:nth-child(1) {
  background-color: #02b7de;
}
.top-season__card:nth-child(1) .date {
  color: #02b7de;
}
.top-season__card:nth-child(2) {
  background-color: #b6d238;
}
.top-season__card:nth-child(2) .date {
  color: #b6d238;
}
.top-season__card:nth-child(3) {
  background-color: #f78f1d;
}
.top-season__card:nth-child(3) .date {
  color: #f78f1d;
}
.top-season__card img {
  width: 100%;
  max-width: 130px;
  height: 110px;
  object-fit: cover;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .top-season__card img {
    max-width: 150px;
    height: 150px;
  }
}
.top-season__card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
}
.top-season__card > div:nth-child(1) {
  flex-shrink: 0;
}
.top-season__card > div .date {
  padding: 3px 10px;
  border-radius: 30px;
  background-color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}
.top-season__card > div .text {
  font-size: 1.3rem;
  margin: 15px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 7.5em;
}
@media (min-width: 768px) {
  .top-season__card > div .text {
    font-size: 1.4rem;
  }
}
.top-season__link {
  margin: 40px 0 0;
  text-align: center;
}
.top-popart {
  position: relative;
  background-color: #fcf345;
  padding: 95px 0 90px;
}
@media (min-width: 768px) {
  .top-popart {
    padding: 95px 20px 90px;
  }
}
.top-popart::after, .top-popart::before {
  position: absolute;
  display: block;
  content: "";
}
.top-popart::after {
  bottom: 0;
  left: 0;
  background-image: url(../img/deco/line_colorful.png);
  width: 100%;
  height: 10px;
}
.top-popart::before {
  background-image: url(../img/deco/illust_paint_b.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 7%;
  left: -10px;
  width: 115px;
  height: 48px;
}
@media (min-width: 768px) {
  .top-popart::before {
    width: 159px;
    height: 66px;
  }
}
.top-popart .ttl-wrap {
  position: absolute;
  top: -10px;
  left: calc(50% - 175px);
}
@media (min-width: 768px) {
  .top-popart .ttl-wrap {
    top: -30px;
    left: calc(50% - 185px);
  }
}
.top-popart h2 {
  position: relative;
  width: 350px;
  height: 75px;
  background-image: url(../img/index/ttl_popart.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .top-popart h2 {
    width: 370px;
    height: 80px;
  }
}
.top-popart h2::before, .top-popart h2::after {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.top-popart h2::before {
  background-image: url(../img/deco/illust_e.svg);
  top: -20px;
  left: 30px;
  width: 27px;
  height: 58px;
}
@media (min-width: 768px) {
  .top-popart h2::before {
    top: -20px;
    left: -100px;
    width: 52px;
    height: 100px;
  }
}
.top-popart h2::after {
  background-image: url(../img/deco/illust_f.svg);
  top: -20px;
  right: 20px;
  width: 29px;
  height: 58px;
}
@media (min-width: 768px) {
  .top-popart h2::after {
    top: -20px;
    right: -100px;
    width: 54px;
    height: 100px;
  }
}
.top-popart__pinned {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .top-popart__pinned {
    justify-content: center;
    column-gap: 20px;
  }
}
@media (max-width: 991px) {
  .top-popart__pinned {
    width: 385px;
    column-gap: 15px;
    padding: 20px 20px 0;
  }
}
.top-popart__content {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: fit-content;
  margin: auto;
}
@media (max-width: 991px) {
  .top-popart__content-wrap {
    overflow-y: scroll;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
}
.top-popart__content__scroll-btn {
  position: absolute;
  top: 45%;
  right: 10px;
  z-index: 2;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.top-popart__content__scroll-btn img {
  width: 37.5px;
  height: 37.5px;
}
@media (min-width: 992px) {
  .top-popart__content__scroll-btn {
    display: none;
  }
}
.top-popart__content__scroll-btn.disable {
  display: none;
}
@media (min-width: 992px) {
  .top-popart__content {
    justify-content: center;
    column-gap: 20px;
  }
}
@media (max-width: 991px) {
  .top-popart__content {
    width: 925px;
    column-gap: 15px;
    padding: 20px 20px 0;
  }
}
.top-popart__card {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 165px;
  height: 260px;
  row-gap: 10px;
  flex: 1;
}
.top-popart__card:hover {
  opacity: 1;
  background-color: #faeff2;
}
@media (min-width: 992px) {
  .top-popart__card {
    width: 190px;
    height: 300px;
    padding: 25px 20px 20px;
    row-gap: 20px;
  }
}
.top-popart__card::before, .top-popart__card::after {
  position: absolute;
  background-color: #e5016a;
  content: "";
  display: block;
}
.top-popart__card::before {
  top: 10px;
  right: 5px;
  width: 1px;
  height: calc(100% - 20px);
}
.top-popart__card::after {
  bottom: 5px;
  right: 10px;
  height: 1px;
  width: calc(100% - 20px);
}
.top-popart__card img {
  max-width: 110px;
  height: 110px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .top-popart__card img {
    max-width: 140px;
    height: 140px;
  }
}
.top-popart__card > span {
  position: absolute;
  top: -20px;
  left: 5px;
}
.top-popart__card > span::before {
  display: block;
  content: "";
  width: 37px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-popart__card > div {
  width: 100%;
  text-align: left;
}
.top-popart__card > div .date {
  color: #e5016a;
  font-size: 1.2rem;
}
.top-popart__card > div .text {
  margin: 10px 0 0;
  font-size: 1.3rem;
  color: #707070;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 4.5em;
}
.top-popart__card:nth-child(1) > span::before {
  background-image: url(../img/icons/rank_1.svg);
}
.top-popart__card:nth-child(2) > span::before {
  background-image: url(../img/icons/rank_2.svg);
}
.top-popart__card:nth-child(3) > span::before {
  background-image: url(../img/icons/rank_3.svg);
}
.top-ad {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .top-ad {
    flex-direction: column;
  }
}
.top-tools {
  padding: 25px 20px 120px;
  background-color: #ED64A9;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .top-tools {
    row-gap: 50px;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .top-tools {
    padding: 40px 20px 150px;
    column-gap: 100px;
  }
}
.top-tools h2 {
  position: relative;
}
@media (min-width: 768px) {
  .top-tools h2 {
    display: flex;
    align-items: center;
    column-gap: 45px;
  }
}
.top-tools h2 > span {
  display: block;
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.top-tools h2 > span:nth-child(1) {
  background-image: url(../img/deco/illust_g.svg);
  width: 76px;
  height: 120px;
}
@media (max-width: 767px) {
  .top-tools h2 > span:nth-child(1) {
    position: absolute;
    top: -70px;
    left: -80px;
    width: 65px;
    height: 101px;
  }
}
.top-tools h2 > span:nth-child(2) {
  background-image: url(../img/index/ttl_tools.svg);
  width: 192px;
  height: 35px;
}
.top-tools__content {
  display: flex;
  column-gap: 25px;
}
@media (min-width: 768px) {
  .top-tools__content {
    column-gap: 40px;
  }
}
.top-tools__content a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.top-tools__content a:nth-child(1) {
  background-color: #FCF8E8;
  color: #f78f1d;
}
.top-tools__content a:nth-child(2) {
  background-color: #F2F9FC;
  color: #02b7de;
}
.top-tools__content a p {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 20px;
}

.lower-b {
  width: 100%;
  padding: 60px 0 150px;
}
@media (min-width: 768px) {
  .lower-b {
    padding: 100px 0 200px;
  }
}
.lower-b__content {
  position: relative;
  background-color: #faeff2;
}
.lower-b__content::before, .lower-b__content::after {
  position: absolute;
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lower-b__content::before {
  top: -30px;
  right: 10px;
  background-image: url(../img/deco/illust_paint_f.svg);
  width: 115px;
  height: 48px;
}
@media (min-width: 768px) {
  .lower-b__content::before {
    width: 159px;
    height: 66px;
    right: 20px;
  }
}
.lower-b__content::after {
  bottom: -20px;
  left: -10px;
  background-image: url(../img/deco/illust_paint_c.svg);
  width: 92px;
  height: 48px;
}
@media (min-width: 768px) {
  .lower-b__content::after {
    width: 112px;
    height: 64px;
    left: -20px;
    bottom: -10px;
  }
}
.lower-b__content .wrap {
  max-width: 900px;
  padding: 60px 20px;
  margin: 50px auto 0;
}
.lower-b__content .txt-wrap {
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  .lower-b__content .txt-wrap {
    margin: 0 0 50px;
  }
}
.lower-b__content .txt-wrap h2 {
  color: #e5016a;
  font-size: 1.8rem;
}
.lower-b__content .txt-wrap p {
  font-size: 1.5rem;
  line-height: 2em;
  color: #707070;
}
.lower-b__content .txt-wrap p.bold {
  font-weight: bold;
}
@media (min-width: 768px) {
  .lower-b__content .txt-wrap p {
    font-size: 1.6rem;
  }
}
.lower-b__content .txt-wrap a {
  text-decoration: underline;
  font-size: 1.5rem;
  line-height: 2em;
  color: #707070;
}
@media (min-width: 768px) {
  .lower-b__content .txt-wrap a {
    font-size: 1.6rem;
  }
}

.lower-search {
  width: 100%;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .lower-search {
    padding: 100px 0;
  }
}
.lower-search input[type=checkbox] {
  display: none;
}
.lower-search input[type=checkbox]:checked + label {
  box-shadow: 0 0 0 4px #e5016a;
}
.lower-search label {
  cursor: pointer;
}
.lower-search-head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 70px;
}
@media (min-width: 768px) {
  .lower-search-head {
    padding: 0 20px 90px;
  }
}
.lower-search-links {
  background-color: #faeff2;
}
.lower-search-links.bg_blue_bottom_line {
  background-color: #F2F9FC;
  background-image: url(../img/deco/line_colorful.png);
  background-repeat: repeat-x;
  background-position: bottom;
}
.lower-search-links.bg_blue_bottom_line .lower-search-links__content a {
  transform: translateY(-40px);
}
.lower-search-links.bg_blue_bottom_line .lower-search-links__content::after {
  bottom: 30px;
}
.lower-search-links.bg_blue {
  background-color: #F2F9FC;
}
.lower-search-links__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 7px;
  min-height: 150px;
  max-width: 1366px;
  width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .lower-search-links__content {
    min-height: 170px;
    column-gap: 15px;
  }
}
.lower-search-links__content a {
  z-index: 2;
}
.lower-search-links__content a:nth-child(odd) {
  transform: translateY(-40px);
}
.lower-search-links__content a:nth-child(even) {
  transform: translateY(-20px);
}
.lower-search-links__content::before, .lower-search-links__content::after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media (max-width: 767px) {
  .lower-search-links__content::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .lower-search-links__content::before {
    top: -20px;
    right: 20px;
    width: 68px;
    height: 42px;
    background-image: url(../img/deco/illust_paint_a.svg);
  }
}
.lower-search-links__content::after {
  bottom: -20px;
  left: -15px;
  width: 115px;
  height: 48px;
  background-image: url(../img/deco/illust_paint_b.svg);
}
@media (min-width: 768px) {
  .lower-search-links__content::after {
    width: 159px;
    height: 66px;
    left: -20px;
  }
}
@media (max-width: 767px) {
  .lower-search-links__content.item_4 {
    max-width: 240px;
    height: 282px;
  }
  .lower-search-links__content.item_4 a {
    transform: translateY(-20px);
  }
}
.lower-search-month {
  background-color: #ED64A9;
  padding: 60px 0;
}
.lower-search-month.bg_orange {
  background-color: #f78f1d;
}
.lower-search-month h2 {
  display: block;
  content: "";
  width: 133px;
  height: 27px;
  background-image: url(../img/lower-search/ttl_search_month.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
}
.lower-search-month__content {
  max-width: 760px;
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}
@media (min-width: 768px) {
  .lower-search-month__content {
    column-gap: 20px;
    row-gap: 20px;
  }
}
.lower-search-month__content label {
  width: 110px;
  height: 110px;
  border-radius: 50%;
}
.lower-search-season {
  background-color: #faeff2;
  padding: 40px 0 60px;
}
@media (min-width: 768px) {
  .lower-search-season {
    padding: 40px 0 100px;
  }
}
.lower-search-season h2 {
  display: block;
  content: "";
  width: 375px;
  height: 100px;
  background-image: url(../img/lower-search/ttl_search_season.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
}
.lower-search-season__content {
  max-width: 250px;
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}
@media (min-width: 768px) {
  .lower-search-season__content {
    max-width: 500px;
    column-gap: 20px;
    row-gap: 20px;
  }
}
.lower-search-season__content label {
  width: 110px;
  height: 110px;
  border-radius: 50%;
}
.lower-search-category {
  background-color: #faeff2;
  padding: 40px 0 95px;
}
.lower-search-category.item_2 {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 100px;
  padding: 60px 20px;
}
.lower-search-category.item_2 h2 {
  margin: 0;
}
@media (max-width: 767px) {
  .lower-search-category.item_2 {
    row-gap: 30px;
    padding: 40px 20px 60px;
    flex-direction: column;
  }
}
.lower-search-category h2 {
  display: block;
  content: "";
  width: 317px;
  height: 100px;
  background-image: url(../img/lower-search/ttl_search_category.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
}
.lower-search-category__content {
  max-width: 1080px;
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}
@media (min-width: 768px) {
  .lower-search-category__content {
    column-gap: 20px;
    row-gap: 20px;
  }
}
.lower-search-category__content.item_2 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  column-gap: 20px;
  max-width: 400px;
  margin: 0;
}
.lower-search-category__content.item_2 label {
  max-width: 170px;
  width: 100%;
  padding: 0;
}
.lower-search-category__content.item_2 label img {
  max-width: 170px;
  width: 100%;
}
.lower-search-category__content label {
  display: flex;
  column-gap: 10px;
  align-items: center;
  max-width: 170px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .lower-search-category__content label {
    column-gap: 20px;
    max-width: 255px;
  }
}
.lower-search-category__content label .icon-area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: #fff;
}
.lower-search-category__content label p {
  color: #fff;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .lower-search-category__content label p {
    font-size: 1.6rem;
  }
}
.lower-search-category__content label.bg_0, .lower-search-category__content label.bg_3, .lower-search-category__content label.bg_6 {
  background-color: #02b7de;
}
.lower-search-category__content label.bg_1, .lower-search-category__content label.bg_4, .lower-search-category__content label.bg_7 {
  background-color: #b6d238;
}
.lower-search-category__content label.bg_2, .lower-search-category__content label.bg_5 {
  background-color: #f78f1d;
}
.lower-search-event {
  position: relative;
  padding: 90px 20px;
}
.lower-search-event h2 {
  position: absolute;
  top: -30px;
  left: 0;
  display: block;
  content: "";
  width: 334px;
  height: 72px;
  background-image: url(../img/lower-search/ttl_search_event.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
}
.lower-search-event__content {
  max-width: 1080px;
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  column-gap: 10px;
  row-gap: 60px;
}
@media (min-width: 768px) {
  .lower-search-event__content {
    column-gap: 20px;
  }
}
.lower-search-event__content label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  row-gap: 10px;
  max-width: 150px;
  width: 100%;
  max-height: 110px;
  padding: 0 0 10px;
  border-radius: 10px;
  background-color: #FFF7F9;
  box-shadow: 0 4px 0 #ED64A9;
}
@media (min-width: 768px) {
  .lower-search-event__content label {
    row-gap: 20px;
    max-width: 200px;
    max-height: 120px;
    padding: 0 0 20px;
  }
}
.lower-search-event__content label .icon-area {
  width: 100%;
  text-align: center;
  height: 30px;
}
.lower-search-event__content label .icon-area img {
  max-width: 130px;
  transform: translateY(-40px);
}
@media (min-width: 768px) {
  .lower-search-event__content label .icon-area img {
    max-width: 100%;
    transform: translateY(-40px);
  }
}
.lower-search-event__content label p {
  color: #464646;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .lower-search-event__content label p {
    font-size: 1.6rem;
  }
}
.lower-search-age {
  position: relative;
  background-color: #ED64A9;
  padding: 60px 0;
}
.lower-search-age::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 40px;
  width: 124px;
  height: 65px;
  background-image: url(../img/deco/illust_paint_c.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .lower-search-age::after {
    display: none;
  }
}
.lower-search-age h2 {
  display: block;
  content: "";
  width: 170px;
  height: 30px;
  background-image: url(../img/lower-search/ttl_search_age.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
}
.lower-search-age__content {
  max-width: 630px;
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}
.lower-search-age__content label {
  width: 110px;
  height: 110px;
  border-radius: 50%;
}
.lower-search-age__content.wide {
  max-width: 760px;
}
@media (max-width: 767px) {
  .lower-search-age__content.wide label:nth-child(2), .lower-search-age__content.wide label:nth-child(4) {
    width: auto;
  }
}
@media (min-width: 768px) {
  .lower-search-age__content {
    column-gap: 20px;
    row-gap: 20px;
  }
}
.lower-search-facility {
  position: relative;
  padding: 0 20px;
  background-color: #f78f1d;
}
.lower-search-facility::before, .lower-search-facility::after {
  content: "";
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.lower-search-facility::before {
  background-image: url(../img/deco/illust_paint_e.svg);
  top: -20px;
  right: 20px;
  width: 68px;
  height: 42px;
}
@media (max-width: 767px) {
  .lower-search-facility::before {
    right: 10px;
  }
}
.lower-search-facility::after {
  background-image: url(../img/deco/illust_paint_d.svg);
  bottom: -10px;
  left: 10px;
  width: 47px;
  height: 32px;
}
.lower-search-facility h2 {
  display: block;
  content: "";
  width: 175px;
  height: 29px;
  background-image: url(../img/lower-search/ttl_search_facility.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lower-search-facility__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  width: 100%;
  margin: auto;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .lower-search-facility__wrap {
    flex-direction: column;
    padding: 45px 0 60px;
  }
}
.lower-search-facility__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .lower-search-facility__content {
    margin: 30px 0 0;
  }
}
.lower-search-facility__content label {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.lower-search-facility__content label img {
  max-width: 150px;
  width: 100%;
}
.lower-search-float {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 15px;
}
@media (max-width: 767px) {
  .lower-search-float {
    flex-wrap: wrap;
  }
}
.lower-search-float button {
  background-color: #e5016a;
  color: #fff;
  width: 160px;
  height: 32px;
  font-size: 1.4rem;
  border-radius: 30px;
  cursor: pointer;
  margin: 0 0 0 20px;
}
@media (min-width: 768px) {
  .lower-search-float button {
    height: 40px;
    width: 200px;
    font-size: 1.5rem;
    margin: 0 0 0 40px;
  }
}
.lower-search-float-tags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .lower-search-float-tags {
    margin: 0 40px 0 0;
    width: 40%;
    justify-content: flex-end;
  }
}
.lower-search-float-tags p {
  padding: 5px 5px 5px 7px;
  font-size: 1.2rem;
  border: 1px solid #fff;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.lower-search-float-tags p::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icons/icon_delete.svg);
}
.lower-search-float-result {
  display: flex;
  column-gap: 10px;
  align-items: center;
  border-right: 1px solid #fff;
  padding: 0 20px 0 0;
}
.lower-search-float-result p {
  font-size: 1.4rem;
}
.lower-search-float-result span {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .lower-search-float-result {
    padding: 0 40px 0 0;
  }
}

.subscribe-page {
  width: 100%;
  padding: 0 0 150px;
}
@media (min-width: 768px) {
  .subscribe-page {
    padding: 0 0 200px;
  }
}
.subscribe-page__content {
  position: relative;
  background-color: #faeff2;
  padding: 60px 0 0;
}
@media (min-width: 768px) {
  .subscribe-page__content {
    padding: 100px 0 0;
  }
}
.subscribe-page__content::before {
  position: absolute;
  display: block;
  content: "";
  bottom: -20px;
  left: -20px;
  width: 92px;
  height: 48px;
  background-image: url(../img/deco/illust_paint_c.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .subscribe-page__content::before {
    width: 122px;
    height: 64px;
  }
}
.subscribe-page__item {
  position: relative;
  margin: 0 0 60px;
}
@media (min-width: 768px) {
  .subscribe-page__item {
    margin: 0 0 100px;
  }
}
.subscribe-page__item__scroll-btn {
  position: absolute;
  top: 55%;
  right: 10px;
  z-index: 2;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.subscribe-page__item__scroll-btn img {
  width: 37.5px;
  height: 37.5px;
  border: 2px solid #fff;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .subscribe-page__item__scroll-btn {
    top: 50%;
    right: 100px;
  }
}
.subscribe-page__item__scroll-btn.disable {
  display: none;
}
.subscribe-page__item::before {
  position: absolute;
  bottom: -20px;
  display: block;
  content: "";
  width: 100%;
  height: 32px;
  background-image: url(../img/deco/bg_line_pop_blue.png);
  background-position: bottom -20px;
  background-repeat: repeat-x;
  z-index: 1;
}
.subscribe-page__item.green::before {
  background-image: url(../img/deco/bg_line_pop_green.png);
}
.subscribe-page__item.green .year-area {
  background-image: url(../img/deco/bg_illust_book_green.png);
}
.subscribe-page__item.orange::before {
  background-image: url(../img/deco/bg_line_pop_orange.png);
}
.subscribe-page__item.orange .year-area {
  background-image: url(../img/deco/bg_illust_book_orange.png);
}
.subscribe-page__item .item-inner {
  display: flex;
  column-gap: 50px;
  margin-left: 20px;
}
@media (min-width: 768px) {
  .subscribe-page__item .item-inner {
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .subscribe-page__item .item-inner {
    margin-left: calc((1190px - 100vw) / 2 * -1);
  }
}
@media (max-width: 767px) {
  .subscribe-page__item .item-inner {
    flex-direction: column;
  }
}
.subscribe-page__item .year-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  background-image: url(../img/deco/bg_illust_book_blue.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.subscribe-page__item .year-area span {
  color: #fff;
  font-weight: medium;
}
.subscribe-page__item .year-area span:nth-child(1) {
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
}
.subscribe-page__item .year-area span:nth-child(2) {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .subscribe-page__item .year-area {
    width: 60px;
    height: 50px;
  }
  .subscribe-page__item .year-area span {
    line-height: 1;
  }
  .subscribe-page__item .year-area span:nth-child(1) {
    font-size: 1.4rem;
  }
  .subscribe-page__item .year-area span:nth-child(2) {
    font-size: 1.1rem;
  }
}
.subscribe-page__item .books-area {
  display: flex;
  column-gap: 20px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overflow-x: visible;
  z-index: 1;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .subscribe-page__item .books-area {
    column-gap: 10px;
  }
}
.subscribe-page__item .books-item {
  position: relative;
  display: block;
  padding: 10px;
  border-radius: 7px;
  background-color: #fff;
}
.subscribe-page__item .books-item img {
  width: 194px;
}
.subscribe-page__item .books-item.new::before {
  position: absolute;
  top: 15px;
  left: 0;
  display: block;
  content: "";
  background-image: url(../img/icons/icon_new.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 46px;
  height: 20px;
}
.subscribe-page__item .books-item.try {
  border: 2px solid #ED64A9;
  border-radius: 0 7px 7px 7px;
}
.subscribe-page__item .books-item.try::after {
  position: absolute;
  top: -28.5px;
  left: -2px;
  display: block;
  content: "ためし読み";
  color: #ED64A9;
  font-size: 1.4rem;
  width: 5em;
  height: 1.5em;
  border-top: 2px solid #ED64A9;
  border-left: 2px solid #ED64A9;
  border-right: 2px solid #ED64A9;
  border-radius: 7px 7px 0 0;
  padding: 3px 5px;
  background-color: #fff;
  z-index: 2;
}
.subscribe-page__keyword {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 70px;
}
@media (min-width: 768px) {
  .subscribe-page__keyword {
    padding: 0 20px 90px;
  }
}

.magazine {
  width: 100%;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .magazine {
    padding: 100px 0;
  }
}
.magazine__intro {
  margin: 30px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .magazine__intro {
    margin: 20px 0 0;
  }
}
.magazine__intro p {
  font-size: 1.4rem;
  line-height: 2em;
  color: #464646;
}
.magazine__content {
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 60px;
  padding: 0 0 60px;
}
@media (min-width: 768px) {
  .magazine__content {
    padding: 0 0 100px;
  }
}
.magazine__content-book {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-repeat: repeat-x;
  background-position: center bottom;
}
@media (max-width: 767px) {
  .magazine__content-book {
    padding: 0 0 20px;
  }
}
.magazine__content-book.bg-blue {
  background-image: url(../img/deco/bg_line_pop_blue.png);
}
.magazine__content-book.bg-green {
  background-image: url(../img/deco/bg_line_pop_green.png);
}
.magazine__content-book.bg-orange {
  background-image: url(../img/deco/bg_line_pop_orange.png);
}
.magazine__content-book::before, .magazine__content-book::after {
  display: block;
  content: "";
  width: 100%;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .magazine__content-book::before, .magazine__content-book::after {
    height: 14px;
  }
}
.magazine__content-book::before {
  background-image: url(../img/magazine/bg_book_top.png);
  background-position: center bottom;
}
@media (max-width: 767px) {
  .magazine__content-book::before {
    background-image: url(../img/magazine/bg_book_top_sp.png);
  }
}
.magazine__content-book::after {
  background-image: url(../img/magazine/bg_book_bottom.png);
  background-position: center top;
}
@media (max-width: 767px) {
  .magazine__content-book::after {
    background-image: url(../img/magazine/bg_book_bottom_sp.png);
  }
}
.magazine__content-book h2 {
  font-size: 2rem;
  color: #464646;
  font-weight: normal;
  text-align: center;
  width: fit-content;
  margin: auto;
  transition: text-decoration 0.3s;
}
@media (min-width: 768px) {
  .magazine__content-book h2 {
    font-size: 2.2rem;
  }
}
.magazine__content-book h2.line-blue {
  text-decoration: underline 5px #02b7de;
}
.magazine__content-book h2.line-green {
  text-decoration: underline 5px #b6d238;
}
.magazine__content-book h2.line-orange {
  text-decoration: underline 5px #f78f1d;
}
.magazine__content-book .item-wrap {
  background-color: #fff;
  width: 100%;
  padding: 25px;
  width: 100%;
  max-width: 350px;
}
@media (min-width: 768px) {
  .magazine__content-book .item-wrap {
    width: 95%;
    max-width: 1000px;
    padding: 30px 0;
  }
}
.magazine__content-book .item-inner {
  display: flex;
  justify-content: center;
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .magazine__content-book .item-inner {
    flex-direction: column;
  }
}
.magazine__content-book .item-inner .img-area {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .magazine__content-book .item-inner .img-area {
    padding: 0 0 30px;
    border-bottom: 1px dashed #B3B3B3;
  }
}
@media (min-width: 768px) {
  .magazine__content-book .item-inner .img-area {
    padding: 0 70px;
    border-right: 1px dashed #B3B3B3;
  }
}
.magazine__content-book .item-inner .img-area img {
  max-width: 400px;
  width: 100%;
}
.magazine__content-book .item-inner .txt-area {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .magazine__content-book .item-inner .txt-area {
    padding: 0 60px;
  }
}
.magazine__content-book .item-inner .txt-area p {
  font-size: 1.4rem;
  line-height: 1.7em;
  color: #464646;
}
.magazine__content-book .item-inner .txt-area .btn-area {
  margin: 30px 0 0;
  display: flex;
  justify-content: center;
  width: 100%;
  column-gap: 15px;
}
@media (min-width: 768px) {
  .magazine__content-book .item-inner .txt-area .btn-area {
    flex-direction: column;
    row-gap: 25px;
  }
}
.magazine__content-book .item-inner .txt-area .btn-area a {
  display: block;
  font-size: 1.4rem;
  border: 1px solid #e5016a;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .magazine__content-book .item-inner .txt-area .btn-area a {
    width: 48%;
  }
}
@media (min-width: 768px) {
  .magazine__content-book .item-inner .txt-area .btn-area a {
    font-size: 1.6rem;
    height: 42px;
    line-height: 42px;
  }
}
.magazine__content-book .item-inner .txt-area .btn-area a.bg-pink {
  background-color: #e5016a;
  color: #fff;
}
.magazine__content-book .item-inner .txt-area .btn-area a.bg-white {
  background-color: #fff;
  color: #e5016a;
}

.membership {
  padding: 0 0 60px;
}
@media (min-width: 768px) {
  .membership {
    padding: 0 0 100px;
  }
}
.membership-kv-area {
  width: 100%;
  background-position: bottom;
  background-size: contain;
  background-repeat: repeat-x;
  overflow: hidden;
  background-image: url(../img/register/sp_bg.png);
  padding: 50px 20px 80px;
  background-size: 130%;
  background-repeat: no-repeat;
  background-position: top;
  text-align: center;
}
@media (min-width: 768px) {
  .membership-kv-area {
    background-size: 105%;
    padding: 100px 20px 130px;
    background-image: url(../img/register/bg.png);
  }
}
.membership-kv-area img {
  max-width: 100%;
}
.membership-kv-area p {
  margin: 20px 0 0;
  font-size: 1.6rem;
  color: #464646;
  line-height: 2;
}
@media (max-width: 767px) {
  .membership-kv-area p {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .membership-kv-area p {
    font-size: 1.9rem;
  }
}
.membership-points {
  position: relative;
  background-color: #fcf345;
  padding: 70px 20px;
}
@media (min-width: 768px) {
  .membership-points {
    padding: 60px 20px;
  }
}
.membership-points h2 {
  position: absolute;
  top: -25px;
  left: calc(50% - 122.5px);
  width: 100%;
  text-align: center;
  display: block;
  width: 245px;
  height: 81px;
  background-image: url(../img/register/ttl_3points_sp.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .membership-points h2 {
    left: calc(50% - 208.5px);
    width: 417px;
    height: 53px;
    background-image: url(../img/register/ttl_3points.svg);
  }
}
.membership-points__content {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .membership-points__content {
    flex-direction: column;
  }
}
.membership-points__content-item {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../img/register/bg_point.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 30px 60px;
}
.membership-points__content-item::after {
  position: absolute;
  left: -40px;
  bottom: 0px;
  content: "";
  display: block;
  width: 92px;
  height: 109px;
  background-image: url(../img/register/bg_illust_confetti_left.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.membership-points__content-item:nth-child(2)::after {
  background-image: url(../img/register/bg_illust_confetti_right.svg);
  left: auto;
  right: -40px;
}
@media (min-width: 768px) {
  .membership-points__content-item {
    max-width: 380px;
    height: 260px;
    padding: 45px 50px;
  }
  .membership-points__content-item::after {
    left: -80px;
    bottom: -30px;
    width: 142px;
    height: 170px;
  }
  .membership-points__content-item:nth-child(2)::after {
    display: none;
  }
  .membership-points__content-item:nth-child(3)::after {
    background-image: url(../img/register/bg_illust_confetti_right.svg);
    left: auto;
    right: -80px;
  }
}
@media (min-width: 992px) {
  .membership-points__content-item {
    padding: 45px 70px;
  }
}
.membership-points__content-item h3 {
  width: 100%;
  text-align: center;
  font-weight: normal;
  letter-spacing: 2px;
  font-size: 1.6rem;
  color: #e5016a;
  font-family: "Poppins", sans-serif;
  padding: 0 0 15px;
  border-bottom: 1px dashed #B3B3B3;
}
@media (min-width: 768px) {
  .membership-points__content-item h3 {
    font-size: 1.8rem;
  }
}
.membership-points__content-item p {
  text-align: center;
  line-height: 1.7em;
}
.membership-points__content-item p:nth-child(2) {
  margin: 15px 0 0;
  font-size: clamp(1.2rem, 1vw, 1.6rem);
  color: #464646;
}
.membership-points__content-item p:nth-child(3) {
  font-weight: bold;
  color: #e5016a;
  text-decoration: underline 5px #fcf345;
  text-underline-offset: -5px;
  font-size: 1.4rem;
  font-size: clamp(1.4rem, 1.2vw, 1.8rem);
}
.membership-try {
  position: relative;
  background-color: #ED64A9;
  padding: 20px 0;
  text-align: center;
}
.membership-try.pb {
  padding: 20px 0 50px;
}
@media (min-width: 768px) {
  .membership-try.pb {
    padding: 50px 0 70px;
  }
}
@media (min-width: 768px) {
  .membership-try.deco-hidden::before {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(100% - 18px), #fcf8e8 30px), url(../img/register/illust_cta.png);
  }
}
@media (min-width: 768px) {
  .membership-try {
    padding: 50px 0;
  }
}
.membership-try a {
  position: relative;
  z-index: 2;
  display: block;
}
.membership-try::before {
  position: absolute;
  content: "";
  display: block;
  width: 129px;
  height: 189px;
  z-index: 1;
  background-image: url(../img/register/illust_cta.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: auto;
  top: -20px;
  left: -20px;
}
@media (min-width: 768px) {
  .membership-try::before {
    width: 156px;
    height: 229px;
    left: 25%;
    bottom: 0;
  }
}
.membership-more {
  position: relative;
  z-index: 2;
  padding: 50px 10px;
}
@media (min-width: 992px) {
  .membership-more {
    padding: 35px 0 80px;
  }
}
.membership-more::before, .membership-more::after {
  display: block;
  content: "";
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.membership-more::before {
  background-image: url(../img/deco/illust_paint_c.svg);
  top: 140px;
  left: 40px;
  width: 122px;
  height: 64px;
}
@media (max-width: 991px) {
  .membership-more::before {
    top: 300px;
    left: -10px;
    width: 92px;
    height: 48px;
  }
}
.membership-more::after {
  background-image: url(../img/deco/illust_paint_f.svg);
  bottom: -30px;
  right: 10px;
  width: 159px;
  height: 66px;
}
@media (max-width: 991px) {
  .membership-more::after {
    bottom: -20px;
    width: 115px;
    height: 48px;
  }
}
.membership-more h2 {
  margin: auto;
  text-align: center;
  display: block;
  width: 100%;
  max-width: 350px;
  height: 95px;
  background-image: url(../img/register/ttl_more.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 992px) {
  .membership-more h2 {
    width: 500px;
    height: 200px;
  }
}
.membership-more__content {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
  margin: 40px 0 0;
}
@media (max-width: 991px) {
  .membership-more__content {
    flex-direction: column;
  }
}
.membership-more__content-item {
  position: relative;
  background-color: #fff;
  padding: 15px 0px 30px;
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 70px;
}
@media (min-width: 992px) {
  .membership-more__content-item {
    border-radius: 50%;
    padding: 40px 10px;
    width: 270px;
    height: 270px;
  }
}
.membership-more__content-item h3 {
  width: 100%;
  text-align: center;
  font-weight: normal;
  letter-spacing: 2px;
  font-size: 1.6rem;
  color: #464646;
  font-family: "Poppins", sans-serif;
  padding: 0 0 5px;
  text-underline-offset: 10px;
}
.membership-more__content-item h3.line-blue {
  text-decoration: underline 5px #02b7de;
}
.membership-more__content-item h3.line-green {
  text-decoration: underline 5px #b6d238;
}
.membership-more__content-item h3.line-orange {
  text-decoration: underline 5px #f78f1d;
}
@media (min-width: 768px) {
  .membership-more__content-item h3 {
    font-size: 1.8rem;
  }
}
.membership-more__content-item p {
  color: #464646;
  font-size: 1.4rem;
  text-align: center;
  margin: 15px 0 0;
}
@media (max-width: 991px) {
  .membership-more__content-item p br {
    display: none;
  }
}
@media (min-width: 992px) {
  .membership-more__content-item p {
    font-size: 1.8rem;
  }
}
.membership-more__content-item p.txt-caption {
  text-align: left;
  font-size: 1rem;
  color: #707070;
  max-width: 26em;
  margin: 5px 0 0;
}
@media (min-width: 992px) {
  .membership-more__content-item p.txt-caption {
    max-width: 15em;
    margin: 10px 0 0;
    font-size: 1.2rem;
    margin: 15px 0 0;
  }
}
.membership-more__content-item p.txt-pink {
  font-size: 1.4rem;
  color: #e5016a;
  font-weight: bold;
}
@media (min-width: 992px) {
  .membership-more__content-item p.txt-pink {
    font-size: 2.2rem;
  }
}
.membership-more__content-item > img {
  position: absolute;
  bottom: -15px;
  left: 25%;
}
@media (max-width: 991px) {
  .membership-more__content-item > img {
    max-width: 92px;
    top: -10px;
    right: 10px;
    left: auto;
  }
}
.membership-plan {
  position: relative;
  width: 100%;
  background-color: #faeff2;
  padding: 40px 0 80px 20px;
}
@media (min-width: 992px) {
  .membership-plan {
    padding: 60px 20px 80px;
  }
}
.membership-plan__content {
  overflow: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.membership-plan__content-scroll-area {
  width: 100%;
  display: flex;
  justify-content: center;
  column-gap: 20px;
  align-items: stretch;
  margin: 60px auto 0;
}
@media (max-width: 991px) {
  .membership-plan__content-scroll-area {
    width: 900px;
    justify-content: flex-start;
  }
}
.membership-plan__content-scroll-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 2;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media (min-width: 992px) {
  .membership-plan__content-scroll-btn {
    display: none;
  }
}
.membership-plan__content-scroll-btn img {
  width: 37.5px;
  height: 37.5px;
}
.membership-plan__content-scroll-btn.disable {
  display: none;
}
.membership-plan__content-item {
  width: 280px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .membership-plan__content-item {
    width: 380px;
  }
}
.membership-plan__content-item.trial-free {
  position: relative;
}
.membership-plan__content-item.trial-free::before {
  display: block;
  content: "初月\a無料";
  white-space: pre;
  position: absolute;
  top: -30px;
  left: 10px;
  width: 65px;
  height: 65px;
  background-color: #fcf345;
  color: #e5016a;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-plan__content-item.recommend {
  position: relative;
}
.membership-plan__content-item.recommend::after {
  display: block;
  content: "";
  position: absolute;
  top: -15px;
  right: 30px;
  width: 125px;
  height: 40px;
  background-image: url(../img/register/txt_osusume.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.membership-plan__content-item h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.membership-plan__content-item h3 span {
  font-size: 1.2rem;
}
.membership-plan__content-item h3 img {
  margin: 13px 0 0;
  width: fit-content;
}
.membership-plan__content-item .txt-wrap {
  padding: 25px 30px 40px;
  height: 100%;
  border-radius: 10px;
  color: #fff;
}
@media (max-width: 991px) {
  .membership-plan__content-item .txt-wrap {
    padding: 35px 20px 25px;
  }
}
.membership-plan__content-item .txt-wrap.bg-blue {
  background-color: #02b7de;
}
.membership-plan__content-item .txt-wrap.bg-blue .txt-fee {
  color: #02b7de;
}
.membership-plan__content-item .txt-wrap.bg-green {
  background-color: #b6d238;
}
.membership-plan__content-item .txt-wrap.bg-green .txt-fee {
  color: #b6d238;
}
.membership-plan__content-item .txt-wrap.bg-orange {
  background-color: #f78f1d;
}
.membership-plan__content-item .txt-wrap.bg-orange .txt-fee {
  color: #f78f1d;
}
.membership-plan__content-item .txt-wrap span.kome {
  font-size: 10px;
}
.membership-plan__content-item .txt-wrap .txt-fee {
  margin: 25px 0 0;
  height: 42px;
  border-radius: 30px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .membership-plan__content-item .txt-wrap .txt-fee {
    flex-wrap: wrap;
    border-radius: 50px;
    height: 70px;
    padding: 0 10px;
  }
  .membership-plan__content-item .txt-wrap .txt-fee span {
    line-height: 1;
  }
}
.membership-plan__content-item .txt-wrap .txt-fee .txt {
  font-size: 1.6rem;
}
.membership-plan__content-item .txt-wrap .txt-fee .num {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.2px;
  margin: 0 5px;
  font-size: 2.4rem;
}
.membership-plan__content-item .txt-wrap .txt-fee .tax {
  font-size: 1.4rem;
}
@media (max-width: 991px) {
  .membership-plan__content-item .txt-wrap .txt-fee .sp-mt-minus {
    margin-top: -20px;
  }
}
.membership-plan__content-item .txt-wrap .txt-count {
  margin: 15px 0 0;
  font-size: 1.6rem;
}
.membership-plan__content-item .txt-wrap > ul {
  padding: 5px 0;
}
.membership-plan__content-item .txt-wrap > ul > li {
  padding: 3px 0;
}
.membership-plan__content-item .txt-wrap > ul p {
  font-size: 1.4rem;
}
.membership-plan__content-item .txt-wrap .txt-caption {
  margin: 15px 0 0;
  font-size: 1.2rem;
}
.membership-plan__content-item .txt-wrap .dot-line {
  border-style: dashed;
  margin: 40px 0 20px;
}
.membership-plan__content-item a {
  margin: 10px 0;
  display: block;
  height: 50px;
  border-radius: 30px;
  background-color: #e5016a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-plan__content-item a img {
  height: 30px;
}
.membership-payment {
  background-color: #fcf345;
  padding: 70px 0;
}
.membership-payment__content {
  position: relative;
  margin: auto;
  width: calc(100% - 40px);
  max-width: 1190px;
  background-color: #fff;
  padding: 50px 25px;
}
.membership-payment__content::before, .membership-payment__content::after {
  position: absolute;
  content: "";
  display: block;
  width: 45px;
  height: 47px;
  background-image: url(../img/deco/sticker.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.membership-payment__content::before {
  top: -15px;
  left: -15px;
}
.membership-payment__content::after {
  bottom: -15px;
  right: -15px;
}
@media (min-width: 768px) {
  .membership-payment__content {
    padding: 60px 90px;
  }
}
.membership-payment__content h2 {
  color: #e5016a;
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  .membership-payment__content h2 {
    font-size: 2.6rem;
  }
}
.membership-payment__content ul {
  list-style: square;
  margin: 45px 0 0;
  padding: 0 0 0 15px;
}
@media (min-width: 768px) {
  .membership-payment__content ul {
    margin: 20px 0 0;
  }
}
.membership-payment__content ul p {
  color: #707070;
  font-size: 1.4rem;
  line-height: 1.7em;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .membership-payment__content ul p {
    font-size: 1.6rem;
  }
}
.membership-payment__content ul li {
  padding: 0 0 30px;
}
.membership-payment__content ul li::marker {
  color: #e5016a;
  font-size: 15px;
}
.membership-payment__content a {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  color: #e5016a;
  transition: all 0.3s;
}
.membership-payment__content a:hover {
  text-decoration: underline;
}
.membership-payment__content a::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
  transform: rotate(45deg);
  margin: 2px 0 0 15px;
}
.membership-faq {
  padding: 30px 20px 80px;
}
@media (min-width: 768px) {
  .membership-faq {
    padding: 50px 20px 70px;
  }
}
.membership-faq__content {
  max-width: 1190px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin: 40px auto 0;
}
.membership-faq__content-item {
  background-color: #fff;
  padding: 35px 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .membership-faq__content-item {
    padding: 30px 50px;
  }
}
.membership-faq__content-item.is-open .q-area {
  padding: 0 0 20px;
}
.membership-faq__content-item.is-open .q-area::after {
  top: 20px;
  transform: rotate(-45deg);
}
.membership-faq__content-item.is-open .a-area {
  height: auto;
  opacity: 1;
  padding: 20px 0 0;
  border-top: 1px dashed #464646;
}
.membership-faq__content-item.is-open .a-area p {
  font-size: 1.4rem;
  line-height: 2;
  color: #707070;
}
.membership-faq__content-item .q-area {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.membership-faq__content-item .q-area span {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5016a;
  color: #fff;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  margin: 0 10px 0 0;
}
@media (min-width: 768px) {
  .membership-faq__content-item .q-area span {
    margin: 0 30px 0 0;
  }
}
.membership-faq__content-item .q-area p {
  color: #e5016a;
  font-size: 1.6rem;
  padding: 0 25px 0 0;
}
@media (min-width: 768px) {
  .membership-faq__content-item .q-area p {
    padding: 0;
    font-size: 1.8rem;
  }
}
.membership-faq__content-item .q-area::after {
  position: absolute;
  right: 0;
  top: 10px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #e5016a;
  border-right: 2px solid #e5016a;
  transform: rotate(135deg);
}
.membership-faq__content-item .a-area {
  height: 0;
  opacity: 0;
}

.article-list {
  width: 100%;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .article-list {
    padding: 100px 0;
  }
}
.article-list__content {
  position: relative;
  background-color: #faeff2;
  padding: 60px 20px 80px;
}
.article-list__content::before, .article-list__content::after {
  display: block;
  content: "";
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.article-list__content::before {
  background-image: url(../img/deco/illust_paint_f.svg);
  top: -20px;
  right: 20px;
  width: 159px;
  height: 66px;
}
@media (max-width: 767px) {
  .article-list__content::before {
    right: 10px;
    width: 115px;
    height: 48px;
  }
}
.article-list__content::after {
  background-image: url(../img/deco/illust_paint_c.svg);
  bottom: -10px;
  left: -10px;
  width: 122px;
  height: 64px;
}
@media (max-width: 767px) {
  .article-list__content::after {
    width: 92px;
    height: 48px;
  }
}
.article-list__content-inner {
  width: 100%;
  max-width: 1190px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  column-gap: 20px;
  row-gap: 20px;
}
.article-list__card {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc((100% - 20px) / 2);
}
@media (min-width: 768px) {
  .article-list__card {
    padding: 25px;
    width: calc((100% - 60px) / 4);
  }
}
.article-list__card .img-area img {
  max-width: 100%;
  object-fit: cover;
  height: 100px;
}
@media (min-width: 768px) {
  .article-list__card .img-area img {
    height: 160px;
  }
}
.article-list__card h3, .article-list__card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 4.5em;
}
.article-list__card h3 {
  font-size: 1.3rem;
  color: #e5016a;
  margin: 15px 0 0;
  font-weight: normal;
}
@media (min-width: 768px) {
  .article-list__card h3 {
    font-size: 1.6rem;
  }
}
.article-list__card p {
  font-size: 1.3rem;
  color: #707070;
  margin: 15px 0 0;
}
@media (min-width: 768px) {
  .article-list__card p {
    font-size: 1.4rem;
  }
}
.article-list__card-icon::before {
  position: absolute;
  right: 5px;
  top: -10px;
  display: block;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  white-space: pre-line;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .article-list__card-icon::before {
    font-size: 1.2rem;
    width: 65px;
    height: 65px;
  }
}
.article-list__card-icon.recommend::before {
  content: "おすすめ";
  background-color: #e5016a;
}
.article-list__card-icon.goods::before {
  content: "保育\aグッズ";
  background-color: #f78f1d;
}
.article-list__card-icon.book::before {
  content: "本";
  background-color: #02b7de;
}
.article-list__card-icon.developmental_support::before {
  content: "発達支援";
  background-color: #00A87B;
}
.article-list__card-icon.event::before {
  content: "イベント";
  background-color: #E63E00;
}
.article-list__card-icon.read::before {
  content: "読み物";
  background-color: #ED64A9;
}
.article-list__card-icon.pr::before {
  content: "PR";
  background-color: #b6d238;
}
.article-list__card-icon.childcare::before {
  content: "保育";
  background-color: #9245C1;
}
.article-list__card-new {
  position: absolute;
  top: 15px;
  left: 0;
  display: block;
  content: "";
  background-image: url(../img/icons/icon_new.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 46px;
  height: 20px;
}
.article-list__pagenation {
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 35px;
}
.article-list__pagenation p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5016a;
  font-size: 1.4rem;
}
.article-list__pagenation p span {
  font-family: "Poppins", sans-serif;
}
.article-list__pagenation button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e5016a;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-list__pagenation button::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
}
.article-list__pagenation button.prev::after {
  transform: rotate(-135deg);
  margin: 0 0 0 2px;
}
.article-list__pagenation button.next::after {
  transform: rotate(45deg);
  margin: 0 2px 0 0;
}

.news-list {
  width: 100%;
  padding: 60px 20px 150px;
}
@media (min-width: 768px) {
  .news-list {
    padding: 100px 20px 200px;
  }
}
.news-list__content {
  position: relative;
  max-width: 1170px;
  width: 100%;
  margin: 50px auto 0;
  padding: 60px 20px;
  background-color: #fff;
  border-radius: 5px;
}
.news-list__content::before, .news-list__content::after {
  position: absolute;
  content: "";
  display: block;
  width: 75px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .news-list__content::before, .news-list__content::after {
    width: 97px;
    height: 77px;
  }
}
.news-list__content::before {
  top: 0;
  right: 0;
  background-image: url(../img/deco/frame_news_r.png);
}
.news-list__content::after {
  bottom: -10px;
  left: 0;
  background-image: url(../img/deco/frame_news_l.png);
}
@media (min-width: 768px) {
  .news-list__content {
    padding: 60px 80px;
  }
}
.news-list__content > ul {
  border-top: 2px dashed #B3B3B3;
}
.news-list__content > ul li {
  border-bottom: 2px dashed #B3B3B3;
  padding: 35px 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .news-list__content > ul li {
    padding: 35px 50px;
  }
}
.news-list__content > ul li .date {
  color: #e5016a;
  font-size: 1.3rem;
}
.news-list__content > ul li .title {
  font-size: 1.5rem;
  color: #707070;
  margin: 10px 0 0;
  line-height: 2;
}
@media (min-width: 768px) {
  .news-list__content > ul li .title {
    font-size: 1.6rem;
  }
}
.news-list__content > ul li .title span {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .news-list__content > ul li .title span {
    font-size: 1.6rem;
  }
}
.news-list__pagenation {
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 35px;
}
.news-list__pagenation p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5016a;
  font-size: 1.4rem;
}
.news-list__pagenation p span {
  font-family: "Poppins", sans-serif;
}
.news-list__pagenation button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e5016a;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-list__pagenation button::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
}
.news-list__pagenation button.prev::after {
  transform: rotate(-135deg);
  margin: 0 0 0 2px;
}
.news-list__pagenation button.next::after {
  transform: rotate(45deg);
  margin: 0 2px 0 0;
}

.news-show {
  width: 100%;
  padding: 20px 20px 150px;
}
@media (min-width: 768px) {
  .news-show {
    padding: 75px 20px 200px;
  }
}
.news-show__content {
  position: relative;
  max-width: 1170px;
  width: 100%;
  margin: 40px auto 0;
  padding: 60px 20px;
  background-color: #fff;
  border-radius: 5px;
}
.news-show__content .date {
  color: #e5016a;
  font-size: 1.3rem;
}
.news-show__content h1 {
  margin: 10px 0 0;
  color: #e5016a;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: normal;
}
@media (min-width: 768px) {
  .news-show__content h1 {
    font-size: 2.8rem;
  }
}
@media (min-width: 768px) {
  .news-show__content {
    padding: 60px 120px;
  }
}
.news-show__content::before, .news-show__content::after {
  position: absolute;
  content: "";
  display: block;
  width: 75px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .news-show__content::before, .news-show__content::after {
    width: 97px;
    height: 77px;
  }
}
.news-show__content::before {
  top: 0;
  right: 0;
  background-image: url(../img/deco/frame_news_r.png);
}
.news-show__content::after {
  bottom: -10px;
  left: 0;
  background-image: url(../img/deco/frame_news_l.png);
}
.news-show__body {
  margin: 40px 0 0;
  border-top: 2px dashed #B3B3B3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 2;
  color: #707070;
  font-size: 1.6rem;
}
.news-show__body > * + * {
  margin: 15px 0 0;
}
@media (min-width: 768px) {
  .news-show__body {
    margin: 50px 0 0;
  }
}
.news-show__body .thumbnail-wrap {
  margin: 0 0 40px;
}
.news-show__body h1, .news-show__body h2, .news-show__body h3, .news-show__body h4, .news-show__body h5, .news-show__body h6 {
  width: 100%;
  text-align: left;
  color: #e5016a;
}
.news-show__body h2 {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .news-show__body h2 {
    font-size: 1.8rem;
  }
}
.news-show__body h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .news-show__body h3 {
    font-size: 1.7rem;
  }
}
.news-show__body h4, .news-show__body h5, .news-show__body h6 {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .news-show__body h4, .news-show__body h5, .news-show__body h6 {
    font-size: 1.6rem;
  }
}
.news-show__body p {
  margin: 15px 0 0;
  line-height: 2;
  color: #707070;
  font-size: 1.6rem;
}
.news-show__body a {
  margin: 40px 0 0;
  color: #fff;
  background-color: #e5016a;
  padding: 10px 60px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .news-show__body a {
    font-size: 1.6rem;
  }
}
.news-show__body img {
  margin: 60px 0 0;
  width: 100%;
  max-width: 600px;
}
.news-show__tags {
  margin: 60px 0 0;
  border-bottom: 2px dashed #B3B3B3;
}
.news-show__tags-content {
  background-color: #faeff2;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 5px;
  padding: 20px;
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  .news-show__tags-content {
    column-gap: 30px;
    padding: 25px 50px;
  }
}
.news-show__tags-content a {
  display: inline-flex;
  align-items: center;
  color: #707070;
  font-size: 1.2rem;
}
.news-show__tags-content a::before {
  content: "";
  display: block;
  background-image: url(../img/icons/icon_tag.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  margin: 0 5px 0 0;
  flex-shrink: 0;
}
.news-show__pagenation {
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-show__pagenation .content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-show__pagenation .content-wrap p {
  color: #e5016a;
  font-size: 1.4rem;
  margin: 0 15px;
}
.news-show__pagenation button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e5016a;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-show__pagenation button::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
}
.news-show__pagenation button.prev::after {
  transform: rotate(-135deg);
  margin: 0 0 0 2px;
}
.news-show__pagenation button.next::after {
  transform: rotate(45deg);
  margin: 0 2px 0 0;
}

.contents-show {
  width: 100%;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .contents-show {
    padding: 100px 0;
  }
}
.contents-show__content {
  position: relative;
  max-width: 1210px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 60px 20px 50px;
  background-color: #fff;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .contents-show__content {
    padding: 60px 120px 70px;
  }
}
.contents-show__content h1 {
  color: #e5016a;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: normal;
  padding: 0 0 40px;
  border-bottom: 1px dashed #464646;
}
@media (min-width: 768px) {
  .contents-show__content h1 {
    font-size: 2.2rem;
  }
}
.contents-show__content-bookmark {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  content: "";
  width: 23px;
  height: 30px;
  background-image: url(../img/icons/icon_bookmark_default.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.contents-show__content-bookmark.active {
  background-image: url(../img/icons/icon_bookmark_active.svg);
}
@media (min-width: 768px) {
  .contents-show__content-bookmark {
    top: 40px;
    right: 40px;
    width: 30px;
    height: 40px;
  }
}
.contents-show__content-main-area {
  margin: 40px 0 0;
}
@media (min-width: 768px) {
  .contents-show__content-main-area {
    margin: 50px 0 0;
  }
}
.contents-show__content-main-area .thumb-area {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 600px;
}
.contents-show__content-main-area .thumb-area .swiper-main {
  padding: relative;
}
.contents-show__content-main-area .thumb-area .swiper-main img {
  object-fit: contain;
  width: 300px;
  height: 170px;
}
@media (min-width: 768px) {
  .contents-show__content-main-area .thumb-area .swiper-main img {
    width: 600px;
    height: 340px;
  }
}
.contents-show__content-main-area .thumb-area .swiper-thumb {
  margin: 15px auto 0;
}
.contents-show__content-main-area .thumb-area .swiper-thumb img {
  object-fit: contain;
  width: 95px;
  height: 54px;
}
@media (min-width: 768px) {
  .contents-show__content-main-area .thumb-area .swiper-thumb img {
    width: 190px;
    height: 108px;
  }
}
.contents-show__content-main-area .thumb-area .swiper-slide {
  text-align: center;
}
.contents-show__content-main-area .thumb-area .swiper-controls {
  width: 100%;
  position: absolute;
  top: 90px;
}
@media (min-width: 768px) {
  .contents-show__content-main-area .thumb-area .swiper-controls {
    top: 180px;
  }
}
.contents-show__content-main-area .thumb-area .swiper-button-next, .contents-show__content-main-area .thumb-area .swiper-button-prev {
  background-image: url(../img/icons/btn_scroll.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 37.5px;
  height: 35.5px;
  z-index: 2;
}
.contents-show__content-main-area .thumb-area .swiper-button-next::after, .contents-show__content-main-area .thumb-area .swiper-button-prev::after {
  content: "";
}
.contents-show__content-main-area .thumb-area .swiper-button-next {
  right: -18px;
}
.contents-show__content-main-area .thumb-area .swiper-button-prev {
  transform: rotate(180deg);
  left: -18px;
}
.contents-show__content-main-area .txt-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contents-show__content-main-area .txt-area p, .contents-show__content-main-area .txt-area pre {
  margin: 30px auto 0;
  font-size: 1.6rem;
  color: #464646;
  line-height: 1.7em;
}
.contents-show__content-main-area .txt-area img {
  max-width: 100%;
  margin: 30px auto 0;
}
.contents-show__content-main-area .dl-area {
  margin: 50px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contents-show__content-main-area .dl-area a {
  display: block;
  text-align: center;
  font-size: 2rem;
  color: #fff;
  background-color: #e5016a;
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  line-height: 65px;
}
@media (min-width: 768px) {
  .contents-show__content-main-area .dl-area a {
    font-size: 2.2rem;
  }
}
.contents-show__content-main-area .dl-area p {
  margin: 15px 0 0;
  color: #707070;
  font-size: 1.1rem;
}
.contents-show__content-main-area .print-area {
  display: flex;
  flex-direction: column;
  border-top: 1px dashed #464646;
  margin: 40px 0 0;
  padding: 30px 0 0;
}
@media (min-width: 768px) {
  .contents-show__content-main-area .print-area {
    padding: 40px 0 0;
  }
}
.contents-show__content-main-area .print-area h2 {
  background-image: url(../img/register/ttl_print.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 192px;
  height: 24px;
  margin: auto;
}
.contents-show__content-main-area .print-area > p {
  margin: 15px 0 0;
  font-size: 1.1rem;
  line-height: 1.7em;
  color: #707070;
  text-align: center;
}
.contents-show__content-main-area .print-area > a {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  color: #e5016a;
  margin: 30px auto 0;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .contents-show__content-main-area .print-area > a {
    margin: 40px auto 0;
  }
}
.contents-show__content-main-area .print-area > a:hover {
  text-decoration: underline;
}
.contents-show__content-main-area .print-area > a::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
  transform: rotate(45deg);
  margin: 0 0 0 10px;
}
.contents-show__content-main-area .print-area__content {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  row-gap: 10px;
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .contents-show__content-main-area .print-area__content {
    flex-direction: column;
  }
}
.contents-show__content-main-area .print-area__content-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .contents-show__content-main-area .print-area__content-item {
    padding: 30px 40px 20px;
  }
}
.contents-show__content-main-area .print-area__content-item:nth-child(1) {
  background-color: #fcf8e8;
}
.contents-show__content-main-area .print-area__content-item:nth-child(2) {
  background-color: #F2F9FC;
}
.contents-show__content-main-area .print-area__content-item h3 {
  font-size: 1.6rem;
  color: #707070;
}
.contents-show__content-main-area .print-area__content-item .reserved-num {
  color: #e5016a;
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 3px;
}
@media (min-width: 768px) {
  .contents-show__content-main-area .print-area__content-item .reserved-num {
    font-size: 3.2rem;
  }
}
.contents-show__content-main-area .print-area__content-item .logo-area {
  width: 100%;
  margin: 20px 0 0;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .contents-show__content-main-area .print-area__content-item .logo-area {
    padding: 10px 0;
  }
}
@media (min-width: 768px) {
  .contents-show__content-main-area .print-area__content-item .logo-area {
    height: 70px;
  }
}
.contents-show__content-main-area .print-area__content-item .logo-area img {
  max-width: 100%;
}
.contents-show__content-main-area .print-area__content-item > a {
  margin: 20px auto 0;
  background-color: #ED64A9;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 30px;
  width: 115px;
  height: 26px;
  line-height: 26px;
  text-align: center;
}
.contents-show__content-main-area .print-area__content-item > p {
  margin: 15px 0 0;
  font-size: 1rem;
  color: #707070;
}
.contents-show__content-main-area .storyteller-area {
  margin: 40px auto 0;
  padding: 20px;
  background-color: #F2F9FC;
}
.contents-show__content-main-area .storyteller-area h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: normal;
  color: #e5016a;
  padding: 0 0 20px;
}
@media (min-width: 768px) {
  .contents-show__content-main-area .storyteller-area h2 {
    font-size: 2.2rem;
  }
}
.contents-show__content-main-area .storyteller-area__content {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: center;
}
.contents-show__content-main-area .storyteller-area__content-item {
  display: flex;
  column-gap: 20px;
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .contents-show__content-main-area .storyteller-area__content-item {
    flex-direction: column;
    align-items: center;
  }
}
.contents-show__content-main-area .storyteller-area__content__img {
  width: fit-content;
}
.contents-show__content-main-area .storyteller-area__content__img img {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.contents-show__content-main-area .storyteller-area__content__txt {
  width: calc(100% - 20px);
  margin-top: 12px;
}
.contents-show__content-main-area .storyteller-area__content__txt .name {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
}
.contents-show__content-main-area .storyteller-area__content__txt .comment {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.contents-show__content-main-area .tag-area {
  margin: 35px 0 0;
  background-color: #faeff2;
  padding: 20px 15px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 5px;
}
@media (min-width: 768px) {
  .contents-show__content-main-area .tag-area {
    column-gap: 25px;
    margin: 50px 0 0;
    padding: 20px 50px;
  }
}
.contents-show__content-main-area .tag-area a {
  font-size: 1.2rem;
  color: #707070;
  display: inline-flex;
  align-items: center;
}
.contents-show__content-main-area .tag-area a::before {
  display: block;
  content: "";
  background-image: url(../img/icons/icon_tag.svg);
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 5px 0 0;
  flex-shrink: 0;
}
.contents-show__content-related-items {
  position: relative;
  margin: 70px 0 0;
  padding: 60px 20px 70px;
  background-color: #faeff2;
}
.contents-show__content-related-items::before, .contents-show__content-related-items::after {
  display: block;
  content: "";
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.contents-show__content-related-items::before {
  background-image: url(../img/deco/illust_paint_f.svg);
  top: -20px;
  right: 20px;
  width: 159px;
  height: 66px;
}
@media (max-width: 767px) {
  .contents-show__content-related-items::before {
    right: 10px;
    width: 115px;
    height: 48px;
  }
}
.contents-show__content-related-items::after {
  background-image: url(../img/deco/illust_paint_c.svg);
  bottom: -10px;
  left: -10px;
  width: 122px;
  height: 64px;
}
@media (max-width: 767px) {
  .contents-show__content-related-items::after {
    width: 92px;
    height: 48px;
  }
}
.contents-show__content-related-items h2 {
  width: 100%;
  text-align: center;
}
.contents-show__content-related-items .thumb-area {
  margin: 30px auto 0;
  display: block;
  text-align: center;
}
.contents-show__content-related-items .thumb-area img {
  max-width: 100%;
  max-height: 400px;
}
@media (min-width: 768px) {
  .contents-show__content-related-items .thumb-area img {
    max-height: 500px;
  }
}
.contents-show__content-related-items .link-area {
  position: relative;
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  padding: 0 0 70px;
}
@media (min-width: 768px) {
  .contents-show__content-related-items .link-area {
    margin: 40px auto 0;
    max-width: 700px;
    column-gap: 20px;
    row-gap: 20px;
    padding: 0 0 90px;
  }
}
.contents-show__content-related-items .link-area > a {
  width: fit-content;
  padding: 0 14px;
  color: #fff;
  height: 40px;
  border-radius: 30px;
  font-size: 1.4rem;
  background-color: #e5016a;
  text-align: center;
  line-height: 40px;
}
@media (min-width: 768px) {
  .contents-show__content-related-items .link-area > a {
    height: 50px;
    line-height: 50px;
    font-size: 1.6rem;
  }
}
.contents-show__content-related-items .link-area > a.is-hidden {
  display: none;
}
.contents-show__content-related-items .link-area__showmore {
  position: absolute;
  bottom: 0;
  margin: 40px auto 0;
  max-width: 310px;
  width: 100%;
  border: 1px solid #e5016a;
  background-color: #fff;
  height: 40px;
  border-radius: 30px;
  cursor: pointer;
  background-image: url(../img/icons/icon_more.svg);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: right 5% bottom 45%;
}
@media (min-width: 768px) {
  .contents-show__content-related-items .link-area__showmore {
    height: 50px;
  }
}
.contents-show__content-related-items .link-area__showmore p {
  color: #e5016a;
  font-size: 1.6rem;
}
.contents-show__content-related-items .link-area__showmore.open {
  background-image: url(../img/icons/icon_more_open.svg);
}
.contents-show__content-recommend-items {
  position: relative;
  padding: 100px 0 0;
  background-image: url(../img/deco/bg_line_pop_colorful.png);
  background-repeat: repeat-x;
  background-position: bottom;
}
@media (min-width: 768px) {
  .contents-show__content-recommend-items {
    padding: 120px 0 0;
  }
}
.contents-show__content-recommend-items::before {
  display: block;
  content: "";
  background-image: url(../img/contents-show/flag_osusume.svg);
  background-position: left 0% bottom 0%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 175px;
  height: 60px;
  margin: 0 0 0 20px;
}
@media (min-width: 992px) {
  .contents-show__content-recommend-items::before {
    margin: auto;
    width: 980px;
    height: 75px;
  }
}
.contents-show__content-recommend-items__content {
  display: flex;
  align-items: center;
  column-gap: 15px;
  overflow-y: scroll;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 20px 20px;
}
@media (min-width: 992px) {
  .contents-show__content-recommend-items__content {
    padding: 0 0 20px;
    margin: auto;
    column-gap: 20px;
    justify-content: center;
  }
}
.contents-show__content-recommend-items__content a {
  display: block;
}
.contents-show__content-recommend-items__content a img {
  width: 230px;
  height: 160px;
  object-fit: cover;
}
.contents-show__content-recommend-items__scroll-btn {
  position: absolute;
  bottom: 80px;
  right: 10px;
  z-index: 2;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.contents-show__content-recommend-items__scroll-btn img {
  width: 37.5px;
  height: 37.5px;
}
@media (min-width: 992px) {
  .contents-show__content-recommend-items__scroll-btn {
    display: none;
  }
}
.contents-show__content-recommend-items__scroll-btn.disable {
  display: none;
}
.contents-show__content-search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 70px auto 0;
  padding: 0 20px 60px;
}
@media (min-width: 768px) {
  .contents-show__content-search {
    padding: 0 20px 80px;
    margin: 80px auto 0;
  }
}
.contents-show__content-search a.btn-back {
  display: block;
  width: 150px;
  font-size: 1.3rem;
  color: #fff;
  background-color: #777777;
  height: 35px;
  line-height: 35px;
  border-radius: 30px;
  text-align: center;
  margin: 40px auto 0;
}
@media (min-width: 768px) {
  .contents-show__content-search a.btn-back {
    margin: 45px auto 0;
    font-size: 1.6rem;
    height: 42px;
    line-height: 42px;
  }
}

.search-result {
  width: 100%;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .search-result {
    padding: 100px 0;
  }
}
.search-result__content {
  position: relative;
  background-color: #faeff2;
  padding: 0 0 80px;
  margin: 60px 0 0;
}
.search-result__content::before, .search-result__content::after {
  position: absolute;
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.search-result__content::before {
  top: -30px;
  right: 10px;
  background-image: url(../img/deco/illust_paint_f.svg);
  width: 115px;
  height: 48px;
}
@media (min-width: 768px) {
  .search-result__content::before {
    width: 159px;
    height: 66px;
    right: 20px;
  }
}
.search-result__content::after {
  bottom: -20px;
  left: -10px;
  background-image: url(../img/deco/illust_paint_c.svg);
  width: 92px;
  height: 48px;
}
@media (min-width: 768px) {
  .search-result__content::after {
    width: 112px;
    height: 64px;
    left: -20px;
    bottom: -10px;
  }
}
.search-result__content-inner {
  max-width: 1190px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .search-result__content-inner {
    column-gap: 10px;
    row-gap: 10px;
  }
}
.search-result__content-inner .no-posts-found {
  width: 100%;
}
.search-result__content-inner .no-posts-found p {
  font-size: 1.6rem;
  text-align: center;
}
.search-result__content-card {
  position: relative;
  border-radius: 5px;
  background-color: #fff;
  padding: 25px 25px 35px;
  max-height: 350px;
  width: calc((100% - 60px) / 4);
}
@media (max-width: 991px) {
  .search-result__content-card {
    width: calc((100% - 40px) / 3);
    padding: 15px 20px 35px;
  }
}
@media (max-width: 767px) {
  .search-result__content-card {
    width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 575px) {
  .search-result__content-card {
    width: calc((100% - 10px) / 2);
    max-height: 260px;
  }
}
.search-result__content-card > a {
  display: flex;
  flex-direction: column;
}
.search-result__content-card__bookmark {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  right: 10px;
  width: 30px;
  height: 40px;
  background-image: url(../img/icons/icon_bookmark_default.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  background-color: transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .search-result__content-card__bookmark {
    width: 23px;
    height: 30px;
  }
}
.search-result__content-card__bookmark.active {
  background-image: url(../img/icons/icon_bookmark_active.svg);
}
.search-result__content-card__bookmark.is-loading {
  pointer-events: none;
  background: url(../img/icons/icon_bookmark_loading.svg);
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-result__content-card__bookmark.is-loading::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 0 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: load3 1s linear infinite;
}
.search-result__content-card .img-area {
  text-align: center;
}
.search-result__content-card .img-area img {
  width: 100%;
  max-width: 230px;
  max-height: 160px;
  object-fit: contain;
}
.search-result__content-card .txt-area {
  margin: 15px 0 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .search-result__content-card .txt-area {
    margin: 10px 0 0;
  }
}
.search-result__content-card h2, .search-result__content-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.7em;
  max-height: 3.4em;
}
.search-result__content-card h2 {
  font-weight: normal;
  color: #e5016a;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .search-result__content-card h2 {
    font-size: 1.3rem;
  }
}
.search-result__content-card p {
  margin: 10px 0 0;
  color: #707070;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .search-result__content-card p {
    font-size: 1.3rem;
  }
}
.search-result__pagenation {
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 35px;
}
.search-result__pagenation p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5016a;
  font-size: 1.4rem;
}
.search-result__pagenation p span {
  font-family: "Poppins", sans-serif;
}
.search-result__pagenation button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e5016a;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-result__pagenation button::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
}
.search-result__pagenation button.prev::after {
  transform: rotate(-135deg);
  margin: 0 0 0 2px;
}
.search-result__pagenation button.next::after {
  transform: rotate(45deg);
  margin: 0 2px 0 0;
}
.search-result__goback {
  display: flex;
  justify-content: center;
  margin: 50px 0 0;
}
@media (max-width: 767px) {
  .search-result__goback {
    margin: 45px 0 0;
  }
}
.search-result__goback a {
  text-align: center;
  display: block;
  background-color: #707070;
  height: 42px;
  width: 153px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .search-result__goback a {
    line-height: 39px;
  }
}
.search-result__goback a p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 42px;
}
@media (max-width: 767px) {
  .search-result__goback a p {
    font-size: 1.3rem;
    line-height: 39px;
  }
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.tools-pattern {
  width: 100%;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .tools-pattern {
    padding: 100px 0;
  }
}
.tools-pattern button p {
  color: #000;
}
.tools-pattern input {
  font-size: 16px !important;
}
.tools-pattern__intro {
  margin: 30px auto 0;
  text-align: center;
}
.tools-pattern__intro p {
  font-size: 1.4rem;
  color: #707070;
}
@media (min-width: 768px) {
  .tools-pattern__intro p {
    font-size: 1.6rem;
  }
}
.tools-pattern__content {
  margin: 70px auto 0;
  background-color: #fff;
}
.tools-pattern__content .patternForm .inner {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tools-pattern__content .patternForm .inner .flex.colm4 {
  max-width: 1190px;
  max-width: 100%;
  padding: 70px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .tools-pattern__content .patternForm .inner .flex.colm4 {
    flex-direction: column;
    padding: 30px 0 0;
  }
}
.tools-pattern__content .patternForm .inner .flex.colm4 > div {
  padding: 30px;
}
@media (min-width: 768px) {
  .tools-pattern__content .patternForm .inner .flex.colm4 > div {
    max-width: 50%;
    padding: 0 30px;
  }
}
@media (min-width: 768px) {
  .tools-pattern__content .patternForm .inner .flex.colm4 > div:not(:last-child) {
    border-right: 1px solid #fcf345;
  }
}
@media (max-width: 767px) {
  .tools-pattern__content .patternForm .inner .flex.colm4 > div:not(:last-child) {
    border-bottom: 1px solid #fcf345;
  }
}
.tools-pattern__content .patternForm .inner .flex.colm4 > div .thumb img {
  width: 100%;
}
.tools-pattern__content .patternForm .inner .flex.colm4 > div p {
  width: fit-content;
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
.tools-pattern__content .patternForm .inner .flex.colm4 > div p .icon {
  margin: 0 10px 0 0;
}
.tools-pattern__content .patternForm .inner .flex.colm4 > div p .icon img {
  width: 30px;
}
.tools-pattern__content .patternForm .inner .flex.colm4 > div p input {
  max-width: 150px;
  width: 100%;
  height: 40px;
  border: 1px solid #707070;
  font-size: 1.4rem;
  padding: 10px;
}
.tools-pattern__content .patternForm .inner .moreBtn {
  margin: 30px auto 0;
  background-color: #fcf345;
  width: 150px;
  height: 40px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
}
.tools-pattern__content .patternForm .inner .moreBtn p {
  font-size: 1.6rem;
}
.tools-pattern__content .patternForm .inner p.alert {
  color: #E63E00;
  font-size: 1.4rem;
  margin: 20px 0 0;
}
@media (min-width: 768px) {
  .tools-pattern__content .patternForm .inner p.alert {
    font-size: 1.6rem;
  }
}
.tools-pattern__content .patternForm .inner .result {
  margin: 40px auto 0;
  border: 3px solid #fcf345;
  border-radius: 10px;
  padding: 20px 40px;
  max-width: 100%;
}
.tools-pattern__content .patternForm .inner .result h3 {
  text-align: center;
  font-weight: normal;
  font-size: 1.6rem;
  border-bottom: 1px solid #fcf345;
  padding: 0 0 5px;
}
@media (min-width: 768px) {
  .tools-pattern__content .patternForm .inner .result h3 {
    font-size: 2rem;
  }
}
.tools-pattern__content .patternForm .inner .result .fraction p {
  text-align: center;
}
.tools-pattern__content .patternForm .inner .result .fraction p:first-child {
  border-bottom: 1px solid #000;
}
.tools-pattern__content .patternForm .inner .result .flex {
  margin: 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
.tools-pattern__content .patternForm .inner .result .flex p {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .tools-pattern__content .patternForm .inner .result .flex p {
    font-size: 2rem;
  }
}
.tools-pattern__content .patternForm .inner .result .flex span {
  color: #e5016a;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .tools-pattern__content .patternForm .inner .result .flex span {
    font-size: 2.4rem;
  }
}
.tools-pattern__content #patternStep {
  margin: 50px 0 0;
  padding: 50px 0 70px;
  background-color: #fcf8e8;
}
.tools-pattern__content #patternStep .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tools-pattern__content #patternStep .inner h3 {
  font-size: 1.6rem;
  color: #e5016a;
}
@media (min-width: 768px) {
  .tools-pattern__content #patternStep .inner h3 {
    font-size: 2rem;
  }
}
.tools-pattern__content #patternStep .inner > p {
  margin: 30px 0 0;
  text-align: center;
}
.tools-pattern__content #patternStep .inner span, .tools-pattern__content #patternStep .inner p {
  line-height: 2em;
  font-size: 1.4rem;
  display: inline;
}
@media (min-width: 768px) {
  .tools-pattern__content #patternStep .inner span, .tools-pattern__content #patternStep .inner p {
    font-size: 1.6rem;
  }
}
.tools-pattern__content #patternStep .inner #stepArea {
  margin: 50px 0 0;
  display: flex;
  flex-direction: column;
}
.tools-pattern__content #patternStep .inner #stepArea > div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  column-gap: 40px;
  row-gap: 30px;
}
.tools-pattern__content #patternStep .inner #stepArea > div:not(:last-child) {
  border-bottom: 1px solid #fcf345;
}
@media (max-width: 767px) {
  .tools-pattern__content #patternStep .inner #stepArea > div {
    flex-direction: column;
  }
}
.tools-pattern__content #patternStep .inner #stepArea > div .thumb {
  max-width: 300px;
  text-align: center;
}
.tools-pattern__content #patternStep .inner #stepArea > div .thumb img {
  width: 100%;
}
.tools-pattern__content #patternStep .inner #stepArea > div .thumb > span:nth-child(2) {
  position: relative;
  display: block;
  margin: 20px 0 0;
  padding: 50px 20px 20px;
  background-color: #fff;
  border: 1px solid #fcf345;
}
.tools-pattern__content #patternStep .inner #stepArea > div .thumb > span:nth-child(2)::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "計算例";
  font-size: 1.5rem;
  width: 3em;
  padding: 2px 10px;
  background-color: #fcf345;
}
.tools-pattern__content #patternStep .inner #stepArea > div .icon {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
.tools-pattern__content #patternStep .inner #stepArea > div .icon img {
  width: 30px;
}

.tools-birthday {
  width: 100%;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .tools-birthday {
    padding: 100px 0;
  }
}
.tools-birthday button p {
  color: #000;
}
.tools-birthday input {
  font-size: 16px !important;
}
.tools-birthday__content .moreBtn {
  margin: 50px auto 0;
  background-color: #fcf345;
  width: 150px;
  height: 40px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
}
.tools-birthday__content .moreBtn p {
  font-size: 1.6rem;
}
.tools-birthday__content #birthdayForm {
  margin: 50px 0 0;
  padding: 50px 0;
  background-color: #faeff2;
}
.tools-birthday__content #birthdayForm .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tools-birthday__content #birthdayForm p.alert {
  color: #E63E00;
  font-size: 1.4rem;
  margin: 20px 0 0;
}
@media (min-width: 768px) {
  .tools-birthday__content #birthdayForm p.alert {
    font-size: 1.6rem;
  }
}
.tools-birthday__content #birthdayForm .result {
  margin: 40px auto 0;
  border: 3px solid #fcf345;
  border-radius: 10px;
  padding: 20px;
  width: 95%;
  max-width: 600px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .tools-birthday__content #birthdayForm .result {
    padding: 20px 40px;
  }
}
.tools-birthday__content #birthdayForm .result h3 {
  text-align: center;
  font-weight: normal;
  font-size: 1.6rem;
  border-bottom: 1px solid #fcf345;
  padding: 0 0 5px;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .tools-birthday__content #birthdayForm .result h3 {
    font-size: 2rem;
  }
}
.tools-birthday__content #birthdayForm .result p {
  font-size: 1.6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .tools-birthday__content #birthdayForm .result p {
    font-size: 2rem;
  }
}
.tools-birthday__content #birthdayForm .result p > span {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .tools-birthday__content #birthdayForm .result p > span {
    font-size: 2rem;
  }
}
.tools-birthday__content #birthdayForm .result .flex {
  margin: 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
.tools-birthday__content #birthdayForm .result .flex p {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .tools-birthday__content #birthdayForm .result .flex p {
    font-size: 1.6rem;
  }
}
.tools-birthday__content #birthdayForm .result .flex span {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .tools-birthday__content #birthdayForm .result .flex span {
    font-size: 2.4rem;
  }
}
.tools-birthday__content #birthdayForm .tab {
  display: flex;
  justify-content: center;
}
.tools-birthday__content #birthdayForm .tab li:first-child a {
  border-right: transparent;
}
.tools-birthday__content #birthdayForm .tab a {
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #000;
}
.tools-birthday__content #birthdayForm .tab a.on {
  position: relative;
  background-color: #fcf345;
}
.tools-birthday__content #birthdayForm .tab a.on::before {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  bottom: -19px;
  left: calc(50% - 8px);
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  border-width: 19.05px 11px 0px 11px;
}
.tools-birthday__content #birthdayForm .tab a.on::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  bottom: -17px;
  left: calc(50% - 7px);
  border-style: solid;
  border-color: #fcf345 transparent transparent transparent;
  border-width: 17.32px 10px 0px 10px;
}
.tools-birthday__content #birthdayForm .tab a, .tools-birthday__content #birthdayForm .tab span {
  font-size: 1.6rem;
}
.tools-birthday__content #birthdayForm #formArea {
  margin: 50px 0 0;
  padding: 0 20px;
}
.tools-birthday__content #birthdayForm #formArea > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tools-birthday__content #birthdayForm #formArea span {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .tools-birthday__content #birthdayForm #formArea span {
    font-size: 1.6rem;
  }
}
.tools-birthday__content #birthdayForm #formArea select, .tools-birthday__content #birthdayForm #formArea input {
  height: 40px;
  padding: 5px 10px;
  font-size: 1.6rem;
  width: 5em;
}
@media (max-width: 767px) {
  .tools-birthday__content #birthdayForm #formArea select, .tools-birthday__content #birthdayForm #formArea input {
    width: 4em;
    padding: 5px 2px;
    font-size: 1.4rem;
  }
}
.tools-birthday__content #birthdayForm #formArea select {
  padding: 5px 0 !important;
}
.tools-birthday__content #birthdayForm #formArea #wareki {
  display: none;
}
.tools-birthday__content #birthdayList {
  background-color: #fff;
}
.tools-birthday__content #birthdayList h3 {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .tools-birthday__content #birthdayList h3 {
    font-size: 2rem;
  }
}
.tools-birthday__content #birthdayList .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
}
.tools-birthday__content #birthdayList .inner > p {
  margin: 20px 0 0;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .tools-birthday__content #birthdayList .inner > p {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .tools-birthday__content #birthdayList .inner {
    padding: 80px 20px;
  }
}
.tools-birthday__content #birthdayList .inner ul {
  max-width: 1200px;
  width: 100%;
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
}
.tools-birthday__content #birthdayList .inner ul li {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}
.tools-birthday__content #birthdayList .inner ul li:nth-child(4n), .tools-birthday__content #birthdayList .inner ul li:nth-child(4n-3) {
  background-color: #faeff2;
}
.tools-birthday__content #birthdayList .inner ul li:nth-child(4n-1), .tools-birthday__content #birthdayList .inner ul li:nth-child(4n-2) {
  background-color: #fcf8e8;
}
@media (min-width: 768px) {
  .tools-birthday__content #birthdayList .inner ul li {
    width: 200px;
    height: 200px;
  }
  .tools-birthday__content #birthdayList .inner ul li:nth-child(odd) {
    background-color: #faeff2;
  }
  .tools-birthday__content #birthdayList .inner ul li:nth-child(even) {
    background-color: #fcf8e8;
  }
}
.tools-birthday__content #birthdayList .inner ul li div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.tools-birthday__content #birthdayList .inner ul li div p {
  color: #464646;
  font-size: 1.6rem;
  line-height: 1.7em;
}
.tools-birthday__content #birthdayList .inner ul li div p.age {
  font-size: 2rem;
  margin: 0 0 10px;
}

.today-show {
  width: 100%;
  padding: 20px 20px 150px;
}
@media (min-width: 768px) {
  .today-show {
    padding: 75px 20px 200px;
  }
}
.today-show__content {
  position: relative;
  max-width: 1170px;
  width: 100%;
  margin: 50px auto 0;
  padding: 60px 20px;
  background-color: #fff;
  border-radius: 5px;
}
.today-show__content .date {
  color: #e5016a;
  font-size: 1.6rem;
}
.today-show__content h1 {
  margin: 10px 0 0;
  color: #e5016a;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: normal;
}
@media (min-width: 768px) {
  .today-show__content h1 {
    font-size: 2.8rem;
  }
}
@media (min-width: 768px) {
  .today-show__content {
    padding: 60px 120px;
  }
}
.today-show__content::before, .today-show__content::after {
  position: absolute;
  content: "";
  display: block;
  width: 75px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .today-show__content::before, .today-show__content::after {
    width: 97px;
    height: 77px;
  }
}
.today-show__content::before {
  top: 0;
  right: 0;
  background-image: url(../img/deco/frame_news_r.png);
}
.today-show__content::after {
  bottom: -10px;
  left: 0;
  background-image: url(../img/deco/frame_news_l.png);
}
@media (min-width: 768px) {
  .today-show__content {
    padding: 60px 80px;
  }
}
.today-show__body {
  margin: 40px 0 0;
  padding: 40px 0 0;
  border-top: 2px dashed #B3B3B3;
  display: flex;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .today-show__body {
    flex-direction: column;
  }
}
.today-show__body .thumbnail-wrap {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .today-show__body .thumbnail-wrap {
    max-width: 340px;
  }
}
.today-show__body .thumbnail-wrap img {
  width: 100%;
  max-width: 340px;
}
.today-show__body p {
  line-height: 2;
  color: #707070;
  font-size: 1.6rem;
  width: 100%;
}
.today-show__signature {
  margin: 20px 0 0;
  color: #B3B3B3;
  font-size: 1.4rem;
  text-align: right;
}

.guide {
  width: 100%;
  padding: 60px 20px 150px;
}
.guide p, .guide span, .guide h2, .guide h3, .guide h4 {
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .guide {
    padding: 100px 20px 200px;
  }
}
.guide .txt-caption {
  font-size: 1.2rem;
  color: #707070;
  margin: 15px 0 0;
}
.guide__intro {
  font-size: 1.4rem;
  color: #707070;
  line-height: 1.7em;
  text-align: center;
  margin: 20px auto 0;
}
@media (min-width: 768px) {
  .guide__intro {
    margin: 30px auto 0;
  }
}
.guide__anchors {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
  row-gap: 10px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .guide__anchors {
    column-gap: 20px;
    row-gap: 20px;
    margin-top: 50px;
  }
}
.guide__anchors a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fcf345;
  width: 110px;
  height: 94px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .guide__anchors a {
    width: calc((100% - 100px) / 6);
    height: 130px;
    border-radius: 65px;
  }
}
.guide__anchors a img {
  margin: 5px 0 0;
}
@media (min-width: 768px) {
  .guide__anchors a img {
    margin: 10px 0 0;
  }
}
.guide__anchors a p {
  font-size: 1.2rem;
  color: #464646;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .guide__anchors a p {
    font-size: 1.6rem;
  }
}
.guide__anchors a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #e5016a;
  border-right: 2px solid #e5016a;
  transform: rotate(45deg);
  margin: 5px 0 0;
}
@media (min-width: 768px) {
  .guide__anchors a::after {
    margin: 10px 0 0;
  }
}
.guide__content {
  max-width: 1180px;
  width: 100%;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .guide__content {
    margin: 80px auto 0;
    row-gap: 60px;
  }
}
.guide__content-item {
  position: relative;
  border: 1px solid #e5016a;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
@media (min-width: 768px) {
  .guide__content-item {
    padding: 60px 90px;
  }
}
.guide__content-item h2 {
  margin: auto;
  width: fit-content;
  font-size: 2.2rem;
  color: #464646;
  font-weight: normal;
  border-bottom: 3px solid #000;
}
.guide__content-item h2#illust {
  border-bottom-color: #02b7de;
}
.guide__content-item h2#pattern {
  border-bottom-color: #b6d238;
}
.guide__content-item h2#song {
  border-bottom-color: #f78f1d;
}
.guide__content-item h2#plan {
  border-bottom-color: #02b7de;
}
.guide__content-item h2#article {
  border-bottom-color: #b6d238;
}
.guide__content-item h2#subscribe {
  border-bottom-color: #f78f1d;
}
.guide__content-item h2#print {
  border-bottom-color: #02b7de;
}
.guide__content-item h2#payment {
  border-bottom-color: #b6d238;
}
@media (min-width: 768px) {
  .guide__content-item h2 {
    position: relative;
  }
}
.guide__content-item .deco-img {
  position: absolute;
  top: -20px;
  right: 5px;
  bottom: auto;
  z-index: 2;
}
@media (max-width: 767px) {
  .guide__content-item .deco-img {
    height: 70px;
    object-fit: contain;
  }
}
@media (min-width: 768px) {
  .guide__content-item .deco-img {
    top: auto;
    bottom: 0;
    right: -30px;
    transform: translateX(100%);
  }
}
.guide__content-item .step-area {
  width: 100%;
  position: relative;
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .guide__content-item .step-area {
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
}
.guide__content-item .step-area__scroll {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 250px;
  right: 0px;
  display: flex;
  justify-content: space-between;
}
.guide__content-item .step-area__scroll button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.guide__content-item .step-area__scroll button img {
  width: 37.5px;
  height: 37.5px;
}
@media (min-width: 768px) {
  .guide__content-item .step-area__scroll button {
    display: none;
  }
}
.guide__content-item .step-area__scroll button.disable {
  display: none;
}
.guide__content-item .step-area__wrap {
  display: flex;
  column-gap: 10px;
  width: fit-content;
  align-items: stretch;
}
@media (min-width: 768px) {
  .guide__content-item .step-area__wrap {
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
  }
}
.guide__content-item .step-area__item {
  background-color: #FFF7F9;
  border-radius: 10px;
  padding: 20px 20px 30px;
  width: 310px;
}
@media (min-width: 768px) {
  .guide__content-item .step-area__item {
    padding: 30px 50px;
    width: 100%;
  }
}
.guide__content-item .step-area__item-head {
  display: flex;
  align-items: center;
  color: #e5016a;
  border-bottom: 2px dashed #B3B3B3;
  padding: 0 0 30px;
}
@media (max-width: 767px) {
  .guide__content-item .step-area__item-head {
    padding: 0 0 20px;
    align-items: flex-start;
    flex-direction: column;
  }
}
.guide__content-item .step-area__item-head span.step {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  margin: 0 40px 0 0;
}
@media (min-width: 768px) {
  .guide__content-item .step-area__item-head span.step {
    font-size: 1.8rem;
  }
}
.guide__content-item .step-area__item-head p {
  font-size: 1.8rem;
}
.guide__content-item .step-area__item-txt {
  margin: 20px 0 0;
  color: #707070;
  font-size: 1.4rem;
  line-height: 1.7em;
}
@media (min-width: 768px) {
  .guide__content-item .step-area__item-txt {
    margin: 30px 0 0;
  }
}
.guide__content-item .step-area__item-links {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 23px;
  row-gap: 15px;
}
@media (min-width: 768px) {
  .guide__content-item .step-area__item-links {
    margin: 30px 0 0;
    column-gap: 40px;
    width: 90%;
  }
}
.guide__content-item .step-area__item-links a {
  display: inline-flex;
  align-items: center;
  color: #e5016a;
  font-size: 1.4rem;
}
.guide__content-item .step-area__item-links a::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
  transform: rotate(45deg);
  margin: 0 0 0 10px;
}
.guide__content-item .print-area {
  background-color: #F6F6F6;
  padding: 25px 20px;
  border-radius: 10px;
  margin: 20px auto 0;
}
@media (min-width: 768px) {
  .guide__content-item .print-area {
    padding: 20px 50px 40px;
  }
}
.guide__content-item .print-area h3 {
  font-size: 1.8rem;
  color: #e5016a;
  font-weight: normal;
  border-bottom: 2px dashed #B3B3B3;
  padding: 0 0 25px;
}
.guide__content-item .print-area p {
  margin: 20px 0 0;
  color: #707070;
  font-size: 1.4rem;
  line-height: 1.7em;
}
@media (min-width: 768px) {
  .guide__content-item .print-area p {
    margin: 25px 0 0;
  }
}
.guide__content-item .print-area a {
  display: inline-flex;
  align-items: center;
  color: #e5016a;
  font-size: 1.4rem;
  margin: 25px 0 0;
}
.guide__content-item .print-area a::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
  transform: rotate(45deg);
  margin: 0 0 0 10px;
}
.guide__content-item .howtouse-area {
  background-color: #F6F6F6;
  padding: 25px 20px;
  border-radius: 10px;
  margin: 20px auto 0;
}
@media (min-width: 768px) {
  .guide__content-item .howtouse-area {
    padding: 20px 50px;
  }
}
.guide__content-item .howtouse-area__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px dashed #B3B3B3;
  width: 100%;
  padding: 0 0 25px;
}
@media (max-width: 767px) {
  .guide__content-item .howtouse-area__head {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 5px;
  }
}
.guide__content-item .howtouse-area__head h3 {
  font-size: 1.8rem;
  color: #e5016a;
  font-weight: normal;
}
.guide__content-item .howtouse-area__head a {
  display: inline-flex;
  align-items: center;
  color: #e5016a;
  font-size: 1.4rem;
}
.guide__content-item .howtouse-area__head a::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
  transform: rotate(45deg);
  margin: 0 0 0 10px;
}
.guide__content-item .howtouse-area__content {
  margin: 25px 0 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
}
.guide__content-item .howtouse-area__content-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .guide__content-item .howtouse-area__content-item {
    padding: 20px 40px;
    width: calc((100% - 20px) / 2);
  }
}
.guide__content-item .howtouse-area__content-item h4 {
  font-size: 2.4rem;
  font-family: Poppins, sans-serif;
  color: #e5016a;
  font-weight: normal;
  letter-spacing: 2px;
  width: 100%;
  text-align: center;
}
.guide__content-item .howtouse-area__content-item ul {
  margin: 15px 0 0;
}
.guide__content-item .howtouse-area__content-item ul li::marker {
  content: "⚪︎";
  color: #e5016a;
  font-size: 12px;
}
.guide__content-item .howtouse-area__content-item ul li {
  padding: 0 0 7px 7px;
}
.guide__content-item .howtouse-area__content-item ul p, .guide__content-item .howtouse-area__content-item ul span {
  color: #707070;
}
.guide__content-item .howtouse-area__content-item ul p {
  font-size: 1.4rem;
  line-height: 1.7em;
}
.guide__content-item .howtouse-area__content-item ul span {
  font-size: 1.2rem;
}
.guide__content-item .howtouse-area__content-item ul a {
  display: inline-flex;
  align-items: center;
  color: #e5016a;
  font-size: 1.2rem;
}
.guide__content-item .howtouse-area__content-item ul a::after {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
  transform: rotate(45deg);
  margin: 0 0 0 7px;
}
.guide__content-item .howtouse-area__content-item:nth-child(2) h4 {
  color: #1A72C1;
}
.guide__content-item .howtouse-area__content-item:nth-child(2) li::marker {
  content: "×";
  color: #1A72C1;
}
.guide__content-item .intro-txt {
  margin: 20px 0 0;
  text-align: center;
  color: #707070;
  font-size: 1.4rem;
  line-height: 1.7em;
  text-align: center;
}
@media (min-width: 768px) {
  .guide__content-item .intro-txt {
    margin: 30px 0 0;
  }
}
.guide__content-item .detail-area {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  margin: 40px 0 0;
}
.guide__content-item .detail-area-item {
  width: 100%;
  background-color: #F6F6F6;
  border-radius: 10px;
  padding: 20px 20px 30px;
}
@media (min-width: 768px) {
  .guide__content-item .detail-area-item {
    width: calc((100% - 20px) / 2);
    padding: 20px 50px 30px;
  }
}
.guide__content-item .detail-area-item h3 {
  color: #e5016a;
  font-weight: normal;
  font-size: 1.8rem;
  padding: 0 0 25px;
  border-bottom: 2px dashed #B3B3B3;
}
.guide__content-item .detail-area-item .img-area {
  background-color: #fff;
  border-radius: 10px;
  margin: 25px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
}
.guide__content-item .detail-area-item .img-area img {
  max-width: 100%;
}
@media (min-width: 768px) {
  .guide__content-item .detail-area-item .img-area {
    min-height: 97px;
  }
}
.guide__content-item .detail-area-item p {
  margin: 25px 0 0;
  font-size: 1.4rem;
  line-height: 1.9em;
  color: #707070;
}
.guide__content-item .detail-area-item p a {
  font-size: 1.4rem;
  line-height: 1.9em;
  color: #707070;
  text-decoration: underline;
}
.guide__content-item .detail-area-item .btn-detail {
  display: block;
  color: #fff;
  background-color: #ED64A9;
  text-align: center;
  margin: 25px auto 0;
  width: 160px;
  height: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .guide__content-item .detail-area-item .btn-detail {
    width: 115px;
    height: 32px;
    line-height: 32px;
    margin: 30px auto 0;
  }
}
.guide__content-item .detail-area-item .txt-caption {
  margin: 15px 0 0;
  font-size: 1rem;
  color: #707070;
  text-align: center;
}

.mypage {
  width: 100%;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .mypage {
    padding: 100px 20px;
  }
}
.mypage h1 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: normal;
  color: #e5016a;
}
@media (min-width: 768px) {
  .mypage h1 {
    font-size: 2.2rem;
  }
}
.mypage h1 span {
  font-size: 2rem;
  font-weight: bold;
  color: #e5016a;
}
@media (min-width: 768px) {
  .mypage h1 span {
    font-size: 2.4rem;
  }
}
.mypage__wrap {
  max-width: 530px;
  width: 100%;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mypage__wrap > p {
  width: 100%;
  color: #464646;
  font-size: 1.4rem;
  line-height: 1.7em;
  text-align: center;
}
.mypage__wrap > a {
  display: inline-flex;
  align-items: center;
  color: #e5016a;
  font-size: 1.4rem;
  margin: 30px auto 0;
  text-align: center;
}
.mypage__wrap > a::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
  transform: rotate(45deg);
  margin: 0 0 0 10px;
}
.mypage__msg {
  border: 1px solid red;
  padding: 10px 5px;
  color: red;
}
.mypage__msg p {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .mypage__msg p {
    font-size: 1.3rem;
  }
}
.mypage__contents {
  margin: 20px auto 0;
  width: 100%;
  color: #464646;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.mypage__contents h2 {
  font-weight: bold;
  font-size: 1.8rem;
}
.mypage__contents p, .mypage__contents span {
  font-size: 1.6rem;
}
.mypage__contents span {
  font-weight: bold;
}
.mypage__contents span.rest-num {
  font-size: 2rem;
}
.mypage__list {
  margin: 40px auto 0;
  width: 100%;
  color: #464646;
}
.mypage__list h2 {
  font-weight: bold;
  font-size: 1.8rem;
}
.mypage__list table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.mypage__list table thead {
  background-color: #e5016a;
  color: #fff;
}
.mypage__list table thead th {
  font-size: 1.2rem;
  text-align: left;
  padding: 10px;
  border-bottom: 2px solid #e5016a;
  font-weight: bold;
}
.mypage__list table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.mypage__list table tbody tr:nth-child(odd) {
  background-color: #faeff2;
}
.mypage__list table tbody td {
  font-size: 1rem;
  padding: 10px;
  border-bottom: 1px solid #faeff2;
  vertical-align: middle;
}
.mypage__list table tbody td a {
  display: inline-block;
  width: 15px;
  height: 15px;
}
.mypage__list table tbody td a::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(../img/icons/icon_dl.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.mypage__list table tbody td a:hover {
  opacity: 0.8;
}
.mypage__list table.bm-list { /* 種別 */
  /* タイトル */
}
.mypage__list table.bm-list th:nth-child(1), .mypage__list table.bm-list td:nth-child(1) {
  width: 20%;
}
.mypage__list table.bm-list th:nth-child(2), .mypage__list table.bm-list td:nth-child(2) {
  width: 80%;
}
.mypage__list table.dl-list { /* ご利用日 */
  /* 種別 */
  /* ファイル名 */
  /* 再ダウンロード */
}
.mypage__list table.dl-list th:nth-child(1), .mypage__list table.dl-list td:nth-child(1) {
  width: 20%;
}
.mypage__list table.dl-list th:nth-child(2), .mypage__list table.dl-list td:nth-child(2) {
  width: 25%;
}
.mypage__list table.dl-list th:nth-child(3), .mypage__list table.dl-list td:nth-child(3) {
  width: 45%;
}
.mypage__list table.dl-list th:nth-child(4), .mypage__list table.dl-list td:nth-child(4) {
  width: 10%;
}
.mypage__list table.dl-list td:last-child {
  text-align: center;
}
.mypage__btns {
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}
.mypage__btns.flex-column {
  flex-direction: column;
}
.mypage__btns a {
  display: inline-block;
  width: calc((100% - 20px) / 2);
  text-align: center;
  padding: 10px;
  font-size: 1.6rem;
  color: #fff;
  background-color: #e5016a;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.mypage-form {
  width: 100%;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .mypage-form {
    padding: 100px 20px;
  }
}
.mypage-form h1 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: normal;
  color: #e5016a;
}
@media (min-width: 768px) {
  .mypage-form h1 {
    font-size: 2.2rem;
  }
}
.mypage-form h1 span {
  font-size: 2rem;
  font-weight: bold;
  color: #e5016a;
}
@media (min-width: 768px) {
  .mypage-form h1 span {
    font-size: 2.4rem;
  }
}
.mypage-form__wrap {
  max-width: 530px;
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mypage-form__wrap > p {
  width: 100%;
  color: #464646;
  font-size: 1.4rem;
  line-height: 1.7em;
  text-align: center;
}
.mypage-form__wrap form {
  width: 100%;
}
.mypage-form__wrap .agreement-text {
  height: 250px;
  background-color: #fff;
  padding: 15px 10px;
  overflow: scroll;
  margin: 20px 0;
}
.mypage-form__wrap .agreement-text p, .mypage-form__wrap .agreement-text a {
  font-size: 1.2rem;
  line-height: 1.5em;
}
.mypage-form__wrap .agreement-text p.bold, .mypage-form__wrap .agreement-text a.bold {
  font-weight: bold;
}
.mypage-form__wrap .agreement-text a {
  text-decoration: underline;
}
.mypage-form__wrap .input-flex {
  display: flex;
  column-gap: 20px;
  row-gap: 20px;
  align-items: flex-end;
}
.mypage-form__wrap .input-flex.plan-wrap {
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
.mypage-form__wrap .input-flex.plan-wrap > div {
  width: calc((100% - 20px) / 3);
}
.mypage-form__wrap .input-flex.flex-wrap {
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
.mypage-form__wrap .input-flex > div {
  width: calc((100% - 20px) / 3);
}
.mypage-form__wrap .input-flex p {
  color: #707070;
  font-size: 1.4rem;
  margin: 5px 0 0;
}
.mypage-form__wrap .input-flex .checkbox-wrap {
  display: flex;
  align-items: center;
  margin: 5px 0 0;
}
.mypage-form__wrap .input-flex .checkbox-wrap input[type=checkbox] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin: 0 5px 0 0;
  cursor: pointer;
}
.mypage-form__wrap .input-flex .checkbox-wrap label {
  color: #707070;
  font-size: 1.3rem;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
}
.mypage-form__wrap .input-flex .checkbox-wrap label > a {
  font-size: 1.3rem;
  color: #e5016a;
  text-decoration: underline;
}
.mypage-form__wrap .input-flex .radio-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #707070;
  margin: 5px 0 0;
  padding: 10px 0;
  background-color: #fff;
  height: 180px;
}
.mypage-form__wrap .input-flex .radio-wrap:last-child {
  flex: 1 1 100%;
  height: 120px;
  flex-direction: row;
  padding: 20px;
  column-gap: 20px;
}
.mypage-form__wrap .input-flex .radio-wrap input[type=radio] {
  width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
  cursor: pointer;
}
.mypage-form__wrap .input-flex .radio-wrap label {
  color: #707070;
  font-size: 1.2rem;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
}
.mypage-form__wrap .input-flex .radio-wrap > p {
  text-align: center;
}
@media (max-width: 767px) {
  .mypage-form__wrap .input-flex .radio-wrap > p {
    font-size: 1.1rem;
  }
}
.mypage-form__wrap .input-flex .radio-wrap button {
  margin: 10px 0 0;
  padding: 2px 10px;
  background-color: #e5016a;
  color: #fff;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.mypage-form__wrap .input-wrap {
  margin: 20px 0 0;
}
.mypage-form__wrap .input-wrap label, .mypage-form__wrap .input-wrap > p {
  color: #707070;
  font-size: 1.6rem;
}
.mypage-form__wrap .input-wrap label.required::after, .mypage-form__wrap .input-wrap > p.required::after {
  display: inline-block;
  content: "必須";
  color: red;
  background-color: #fff;
  font-size: 1.4rem;
  padding: 2px;
  border: 1px solid red;
  margin: 0 0 0 5px;
}
.mypage-form__wrap .input-wrap label.confirm-text, .mypage-form__wrap .input-wrap > p.confirm-text {
  font-weight: bold;
}
.mypage-form__wrap .input-wrap input, .mypage-form__wrap .input-wrap select {
  width: 100%;
  padding: 5px 10px;
  font-size: 1.6rem;
  border-radius: 3px;
  margin: 5px 0 0;
  border: 1px solid #707070;
}
.mypage-form__wrap .input-wrap input:focus, .mypage-form__wrap .input-wrap select:focus {
  outline: none;
  border-color: #e5016a;
}
.mypage-form__wrap .input-wrap p.input-caption {
  color: #707070;
  font-size: 1.2rem;
  margin: 5px 0 0;
}
.mypage-form__wrap .error-area {
  margin-top: 5px;
  display: none;
}
.mypage-form__wrap .error-area p {
  color: red;
  font-size: 1.4rem;
  text-align: center;
}
.mypage-form__wrap .error-area.show {
  display: block;
}
.mypage-form__wrap .error-message {
  display: none;
  color: red !important;
  font-size: 1.4rem !important;
  margin: 5px 0 0 !important;
}
.mypage-form__wrap .error-message.show {
  display: block;
}
.mypage-form__wrap button[type=submit] {
  margin: 30px 0 0;
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  color: #fff;
  background-color: #e5016a;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.mypage-form__wrap > a {
  display: inline-flex;
  align-items: center;
  color: #e5016a;
  font-size: 1.4rem;
  margin: 30px auto 0;
  text-align: center;
}
.mypage-form__wrap > a::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #e5016a;
  border-right: 1px solid #e5016a;
  transform: rotate(45deg);
  margin: 0 0 0 10px;
}
.mypage-form__info {
  max-width: 500px;
  width: 100%;
  margin: 40px auto 0;
  background-color: #fff;
  padding: 20px;
}
.mypage-form__info p {
  color: #464646;
  font-size: 1.4rem;
  line-height: 1.7em;
}
.mypage-form__info p a {
  font-size: 1.4rem;
  color: #e5016a;
  text-decoration: underline;
}
.mypage-form__info > a.btn-register {
  display: block;
  background-color: #707070;
  margin: 30px auto 0;
  width: 200px;
  padding: 20px;
}
.mypage-form__info > a.btn-register p {
  color: #fff;
  text-align: center;
}
.mypage-form__flex {
  margin: 40px auto 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}
.mypage-form__flex button, .mypage-form__flex button[type=submit] {
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  color: #fff;
  background-color: #e5016a;
  border: none;
  border-radius: 5px;
  margin: 0;
  cursor: pointer;
}
.mypage-form__flex button:nth-child(1), .mypage-form__flex button[type=submit]:nth-child(1) {
  background-color: #fff;
  color: #e5016a;
  border: 1px solid #e5016a;
}
@media (min-width: 768px) {
  .mypage-form__flex button, .mypage-form__flex button[type=submit] {
    width: calc((100% - 20px) / 2);
  }
}

.error-page {
  padding: 80px 20px 120px;
  display: flex;
  justify-content: center;
  height: calc(100vh - 195px);
}
@media (min-width: 768px) {
  .error-page {
    padding: 80px 20px 150px;
    height: calc(100vh - 163px);
  }
}
.error-page__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
  text-align: center;
}
.error-page__content.error h1 {
  font-size: 20px;
}
@media (min-width: 768px) {
  .error-page__content.error h1 {
    font-size: 30px;
  }
}
.error-page__content.error p, .error-page__content.error a {
  font-size: 14px;
}
@media (min-width: 768px) {
  .error-page__content.error p, .error-page__content.error a {
    font-size: 16px;
  }
}
.error-page__content h1, .error-page__content p {
  font-family: "Poppins", sans-serif;
  color: #e5016a;
  letter-spacing: 0.3em;
}
.error-page__content h1 {
  font-size: 50px;
}
.error-page__content p {
  font-weight: 600;
  font-size: 20px;
}
@media (min-width: 768px) {
  .error-page__content p {
    font-size: 30px;
  }
}

.mt60 {
  margin-top: 60px;
}

.pb60 {
  padding-bottom: 60px;
}

.common-link--pink {
  position: relative;
  background-color: #e5016a;
  font-size: 1.4rem;
  color: #fff;
  width: 235px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  padding: 0 20px;
  text-align: center;
  display: inline-block;
}
@media (min-width: 768px) {
  .common-link--pink {
    width: 245px;
    font-size: 1.6rem;
    height: 50px;
    line-height: 50px;
    border-radius: 30px;
  }
}
.common-link--pink::after {
  position: absolute;
  top: calc(50% - 3.5px);
  right: 20px;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.common-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 768px) {
  .common-pc-hidden {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .common-sp-hidden {
    display: none !important;
  }
}
.common-sp-ad {
  margin: 50px auto 0;
  text-align: center;
}
.common-sp-ad img {
  max-width: 100%;
}
@media (min-width: 768px) {
  .common-sp-ad {
    display: none;
  }
}
.common-title {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
.common-title h1, .common-title h2 {
  font-size: 2.8rem;
  color: #e5016a;
  text-align: center;
}
@media (max-width: 767px) {
  .common-title h1, .common-title h2 {
    font-size: 2.4rem;
  }
}
.common-title::before, .common-title::after {
  display: block;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 100px;
}
.common-title::before {
  background-image: url(../img/deco/ttl_left.svg);
}
.common-title::after {
  background-image: url(../img/deco/ttl_right.svg);
}
.common-lower-ad {
  background-color: #F2F9FC;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
  padding: 50px 20px 70px;
}
@media (min-width: 768px) {
  .common-lower-ad {
    padding: 60px 20px 80px;
  }
}
@media (max-width: 767px) {
  .common-lower-ad img:nth-child(1), .common-lower-ad img:nth-child(2) {
    display: none;
  }
}
@media (min-width: 768px) {
  .common-lower-ad img:nth-child(3) {
    display: none;
  }
}
.common-floating-bnr {
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 3;
  display: block;
  text-align: center;
}
@media (max-width: 767px) {
  .common-floating-bnr {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .common-floating-bnr {
    bottom: 20px;
    right: 20px;
  }
}
.common-floating-bnr img {
  width: 100%;
}
@media (min-width: 768px) {
  .common-floating-bnr img {
    max-width: 220px;
  }
}

.search-area__content {
  position: relative;
  max-width: 1190px;
  background-color: #fff;
  max-width: 1180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 5px 50px;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .search-area__content {
    flex-direction: row;
    padding: 45px 100px;
    column-gap: 80px;
  }
}
.search-area__content-deco {
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.search-area__content-deco::before, .search-area__content-deco::after {
  display: block;
  content: "";
  width: 38px;
  height: 38px;
}
.search-area__content-deco:nth-child(1) {
  left: 0;
}
.search-area__content-deco:nth-child(1)::before {
  border-top: 10px solid #b6d238;
  border-left: 10px solid #b6d238;
}
.search-area__content-deco:nth-child(1)::after {
  border-bottom: 10px solid #f78f1d;
  border-left: 10px solid #f78f1d;
}
.search-area__content-deco:nth-child(2) {
  right: 0;
  align-items: flex-end;
}
.search-area__content-deco:nth-child(2)::before {
  border-top: 10px solid #e5016a;
  border-right: 10px solid #e5016a;
}
.search-area__content-deco:nth-child(2)::after {
  border-bottom: 10px solid #02b7de;
  border-right: 10px solid #02b7de;
}
.search-area__input {
  max-width: 240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.search-area__input h2 {
  background-image: url(../img/index/pop_keyword.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 201px;
  height: 45px;
}
@media (min-width: 768px) {
  .search-area__input h2 {
    width: 223px;
    height: 50px;
  }
}
.search-area__input h2.top {
  width: 207px;
  height: 27px;
  background-image: url(../img/index/pop_keyword.svg);
}
@media (min-width: 768px) {
  .search-area__input h2.top {
    width: 227px;
    height: 30px;
  }
}
.search-area__input h2.illust {
  background-image: url(../img/illust/pop_keyword.svg);
}
.search-area__input h2.pattern {
  background-image: url(../img/pattern/pop_keyword.svg);
}
.search-area__input h2.song {
  background-image: url(../img/song/pop_keyword.svg);
}
.search-area__input h2.plan {
  background-image: url(../img/plan/pop_keyword.svg);
}
.search-area__input h2.article {
  background-image: url(../img/article/pop_keyword.svg);
}
.search-area__input h2.subscribe {
  background-image: url(../img/subscribe/pop_keyword.svg);
}
.search-area__input .input-wrap {
  position: relative;
  max-width: 240px;
  width: 100%;
  margin: 20px 0 0;
}
.search-area__input .input-wrap input {
  height: 32px;
  border-radius: 30px;
  border: 1px solid #464646;
  font-size: 1.2rem;
  padding: 5px 5px 5px 20px;
  width: 100%;
}
.search-area__input .input-wrap input:focus {
  outline: none;
}
.search-area__input .input-wrap input:focus::placeholder {
  color: transparent;
}
@media (max-width: 767px) {
  .search-area__input .input-wrap input {
    font-size: 16px;
  }
}
.search-area__input .input-wrap button {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 50px;
  height: 26px;
  background-color: #b6d238;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}
.search-area__input .input-wrap button::before {
  display: block;
  content: "";
  background-image: url(../img/icons/icon_search_fff.svg);
  width: 50px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.search-area__tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  justify-content: center;
  max-height: 150px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .search-area__tags {
    justify-content: flex-start;
    column-gap: 20px;
    row-gap: 20px;
    max-width: 600px;
    max-height: 80px;
  }
}
.search-area__tags a {
  display: inline-flex;
  border: 1px solid #B3B3B3;
  border-radius: 5px;
  padding: 5px 10px 5px 5px;
  color: #707070;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .search-area__tags a {
    padding: 5px 15px 5px 10px;
  }
}
.search-area__tags a::before {
  content: "";
  display: block;
  background-image: url(../img/icons/icon_tag.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  margin: 0 5px 0 0;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .search-area__tags a::before {
    margin: 0 10px 0 0;
  }
}

.footer {
  position: relative;
  background-color: #fcf345;
  width: 100vw;
  letter-spacing: 1.5px;
  margin-top: -50px;
}
@media (min-width: 768px) {
  .footer {
    margin-top: -70px;
  }
}
@media (min-width: 1200px) {
  .footer {
    background-image: url(../img/footer/footer.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 2080px;
  }
}
.footer::before {
  position: absolute;
  display: block;
  content: "";
  width: 100vw;
  height: 30px;
  left: 0;
  top: -30px;
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: contain;
  background-image: url(../img/footer/sp_wave.png);
  z-index: 1;
}
@media (min-width: 768px) {
  .footer::before {
    top: -49px;
    height: 50px;
    background-image: url(../img/footer/pc_wave.png);
  }
}
.footer-wrap {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  background-image: url(../img/footer/sp_bg.svg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: bottom;
  z-index: 3;
}
@media (min-width: 768px) {
  .footer-wrap {
    background-image: url(../img/footer/pc_bg.svg);
  }
}
.footer-sns {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .footer-sns {
    flex-direction: column;
  }
}
.footer-sns > div {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
  padding: 15px 0;
}
@media (max-width: 767px) {
  .footer-sns > div {
    width: 100%;
  }
}
.footer-sns > div:first-child {
  position: relative;
}
.footer-sns > div:first-child::before {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-image: url(../img/deco/line_horizontal_dot.png);
  background-repeat: repeat-x;
  background-size: contain;
}
@media (min-width: 768px) {
  .footer-sns > div:first-child::before {
    top: 0;
    width: 3px;
    height: 25px;
    background-image: url(../img/deco/line_nav_dot.png);
    background-repeat: no-repeat;
  }
}
@media (min-width: 768px) {
  .footer-sns > div {
    padding: 0 60px;
  }
}
.footer-sns > div p {
  font-weight: bold;
  color: #e5016a;
  font-size: 1.5rem;
}
.footer-sns > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
.footer-sns > div > div a img {
  object-fit: none;
}
.footer-links {
  margin: auto;
  width: 100%;
  max-width: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0 80px;
}
@media (min-width: 768px) {
  .footer-links {
    padding: 0 0 50px;
    max-width: 800px;
  }
}
.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 15px;
  padding: 0 0 10px;
}
@media (min-width: 768px) {
  .footer-links ul {
    row-gap: 20px;
    padding: 0 0 20px;
  }
}
.footer-links ul li {
  padding: 0 10px;
}
.footer-links ul li:not(:last-child) {
  border-right: 1px solid #444;
}
@media (min-width: 768px) {
  .footer-links ul li {
    padding: 0 20px;
  }
  .footer-links ul li:nth-child(5), .footer-links ul li:nth-child(9) {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .footer-links ul li:nth-child(3), .footer-links ul li:nth-child(5), .footer-links ul li:nth-child(7), .footer-links ul li:nth-child(9) {
    border-right: none;
  }
}
.footer-links ul li p {
  font-size: 1.1rem;
  color: #707070;
}
.footer-foot {
  background-color: #02b7de;
  text-align: center;
  padding: 10px 0;
}
.footer-foot p {
  color: #fff;
}
@media (min-width: 1200px) {
  .footer-foot {
    padding: 20px 0;
  }
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
}

[id] {
  scroll-margin-top: 130px;
}
@media (min-width: 768px) {
  [id] {
    scroll-margin-top: 100px;
  }
}

#facility {
  scroll-margin-top: 150px;
}
@media (min-width: 768px) {
  #facility {
    scroll-margin-top: 150px;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
}

body {
  background-color: #fcf8e8;
}

.body-wrap {
  margin-top: -20px;
}
@media (min-width: 768px) {
  .body-wrap {
    margin-top: -50px;
  }
}

#pageTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  width: 65px;
  height: 65px;
  background-color: #02b7de;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  border: 2px solid #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}
@media (min-width: 768px) {
  #pageTop {
    bottom: 20px;
    right: 20px;
  }
}
#pageTop span {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
}
#pageTop p {
  font-size: 1rem;
  font-weight: bold;
}
#pageTop:hover {
  opacity: 0.8;
}
#pageTop.show {
  opacity: 1;
  transform: translateY(0);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: fit-content;
  position: relative;
}
.popup-box img {
  max-width: 100%;
}

.popup-box button {
  position: absolute;
  top: 5px;
  right: 8px;
  background-color: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
