@charset "UTF-8";
@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
  .only-tab {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none !important;
  }
  .only-tab {
    display: inline-block !important;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
}
a:hover {
  opacity: 1;
}

main {
  overflow: hidden;
}

.is-hide {
  display: none !important;
}

.w-1100 {
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
}

.d-flx {
  display: flex;
}
@media screen and (max-width: 767px) {
  .d-flx {
    display: block;
  }
}

.t-bold {
  font-weight: 700;
}

/*左右のアニメーション*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/*アニメーション*/
.anime-l {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(-40px);
}

.anime-b {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(40px);
}

.anime-o {
  opacity: 0;
  visibility: hidden;
  transition: 2.5s;
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

header {
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  header {
    height: 0;
  }
}
header .headernav {
  position: absolute;
  width: 100%;
  padding: 16px 1.5%;
  background: #fff;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 3px 0px rgba(0, 0, 0, 0.16);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
}
header .headernav__wrap {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .headerspnav {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6%;
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 3px 6px rgba(80, 80, 80, 0.4);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
}
header .headerspnav__wrap {
  display: flex;
  align-items: center;
}
header .headerspnav-ttl {
  width: 55%;
  max-width: 300px;
}
header .headerspnav-ttl a {
  line-height: 1;
}
header .headerspnav-ttl--nen {
  width: 40%;
  margin-bottom: 6px;
}
header h1 {
  width: 60px;
}
@media screen and (max-width: 1024px) {
  header h1 {
    width: 50px;
    top: 8px;
    left: 8px;
  }
}
header .headernav-ttl {
  width: 24%;
  margin-left: 2%;
}
header .headernav-ttl a {
  line-height: 1;
}
header .headernav-ttl--nen {
  width: 40%;
  margin-bottom: 6px;
}
header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 95%;
}
@media screen and (max-width: 1024px) {
  header nav {
    display: block;
  }
}
header nav ul {
  width: 72%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  header nav ul {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
header nav ul li {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px 1.5%;
  text-align: center;
  line-height: 1.3;
  font-size: 0.9em;
}
@media screen and (max-width: 1024px) {
  header nav ul li {
    display: block;
    height: auto;
    width: 44%;
    margin: 12px 0;
    padding: 0;
  }
}
header nav ul li span {
  font-size: 0.75em;
}
header nav ul li a:hover {
  opacity: 0.6;
}
header nav .navflx {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
header nav .navbtn {
  width: 16%;
  max-width: 200px;
  min-width: 160px;
  font-size: 0.9em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header nav .navbtn {
    max-width: none;
  }
}
header nav .navbtn a {
  display: block;
  padding: 12px 0;
  background: #E23B88;
  border-radius: 10px;
  margin: 0 2%;
  text-align: center;
  color: #fff;
}
header nav .navbtn a:hover {
  opacity: 0.8;
}
header nav .navbtn a img {
  width: 15%;
  margin-right: 6px;
}
header nav .navbtn--catalog a {
  background: #238EC5;
}

.drawer__button {
  position: absolute;
  top: 30%;
  right: 20px;
  display: flex;
  height: 30px;
  width: 60px;
  justify-content: center;
  align-items: flex-end;
  z-index: 90;
  padding: 4px;
  border-radius: 8px;
  font-size: 0.7em;
  font-weight: 700;
  cursor: pointer;
  z-index: 999;
  /* メニューを開いている時もクリックできるよう設定 */
}
.drawer__button span {
  color: #000;
}
.drawer__button span.bar {
  content: "";
  display: block;
  height: 2px;
  width: 70%;
  background-color: #000;
  position: absolute;
  top: 35%;
}
.drawer__button span.bar::before, .drawer__button span.bar::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #000;
  position: absolute;
  transition: all 0.3s;
}
.drawer__button span.bar::before {
  bottom: 10px;
}
.drawer__button span.bar::after {
  top: 10px;
}
.drawer__button.active span.bar {
  background-color: rgba(255, 255, 255, 0);
}
.drawer__button.active span.bar::before {
  bottom: 0;
  transform: rotate(45deg);
}
.drawer__button.active span.bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-content {
  position: fixed;
  width: 90%;
  max-width: 450px;
  height: 80vh;
  max-height: 520px;
  overflow-y: auto;
  top: 14%;
  z-index: 80;
  border-radius: 30px;
  padding: 1.5em 1.5em 1em;
  background-color: rgba(255, 255, 255, 0.9);
  left: 110%;
  right: 0;
  margin: 0 auto;
  z-index: 80;
  transition: all 0.8s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.menu-content.active {
  left: 0;
}
.menu-content .menu-content-ttl {
  margin-bottom: 16px;
}
.menu-content .menu-content-ttl--nen {
  width: 40%;
  margin-bottom: 8px;
}
.menu-content ul {
  display: block;
  text-align: left;
}
.menu-content ul li {
  text-align: left;
  width: 100%;
  margin: 8px 0;
}
.menu-content ul li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  box-sizing: border-box;
  text-decoration: none;
  padding: 10px 0;
  font-size: 1.1em;
}
.menu-content ul li a::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background: url(../img/arrow_black.svg) no-repeat;
  background-size: contain;
  right: -1.5em;
  top: 30%;
}
.menu-content .navflx {
  display: block;
  margin-top: 30px;
}
.menu-content .navflx .navbtn {
  width: 100%;
  margin: 0 auto;
  height: auto;
  margin-bottom: 16px;
}
.menu-content .navflx .navbtn a {
  margin: 0 auto;
  padding: 12px 0;
  width: 100%;
}
.menu-content .navflx .navbtn a img {
  width: 10%;
}

@keyframes stepanm {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes stepanm_rev {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0);
  }
}
.items-anm {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s;
}

.items-anm.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.breadlist {
  width: 95%;
  margin: 0 auto;
  max-width: 990px;
  margin-top: 130px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .breadlist {
    margin-top: 105px;
    max-width: 550px;
    font-size: 0.8em;
    margin-bottom: 20px;
  }
}
.breadlist ol {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .breadlist ol {
    overflow-x: auto;
    padding-bottom: 0.5em;
  }
}
.breadlist ol li {
  font-size: 0.9em;
  flex-shrink: 0;
}
.breadlist ol li:nth-child(1) a {
  margin-right: 1.5em;
}
.breadlist ol li a {
  position: relative;
  display: block;
  color: #0F64C5;
}
.breadlist ol li a::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background: url(../img/arrow_black.svg) no-repeat;
  background-size: contain;
  right: -1.5em;
  top: 20%;
}
@media screen and (max-width: 767px) {
  .breadlist ol li a::after {
    right: -1.6em;
  }
}

.ranlist .imgarea {
  background: #fff;
  border-radius: 10px;
  padding: 0.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ranlist .imgarea {
    padding: 1em;
  }
}
.ranlist .imgarea img {
  max-height: 200px;
}
@media screen and (max-width: 767px) {
  .ranlist .imgarea img {
    max-height: 140px;
  }
}
.ranlist li {
  margin: 0 12px 50px;
}
.ranlist li .imgarea {
  margin-bottom: 8px;
}
.ranlist li .tag {
  font-size: 0.8em;
  margin-bottom: 8px;
}
.ranlist li .ttl {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.1em;
}
@media screen and (max-width: 767px) {
  .ranlist li .ttl {
    font-size: 1em;
  }
}
.ranlist li .price {
  text-align: right;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .ranlist li .price {
    font-size: 1em;
  }
}
.ranlist li .price span.tax {
  margin-left: 8px;
  font-size: 0.7em;
}
.ranlist li .try {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .ranlist li .try {
    display: block;
  }
}
.ranlist li .try p {
  width: 20%;
  font-size: 0.85em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ranlist li .try p {
    width: 100%;
    margin-bottom: 4px;
  }
}
.ranlist li .try .trybtn {
  width: 78%;
  display: flex;
}
@media screen and (max-width: 767px) {
  .ranlist li .try .trybtn {
    width: 100%;
    justify-content: space-between;
  }
}
.ranlist li .try .trybtn .item {
  width: 49%;
  margin: 0 4px;
}
@media screen and (max-width: 767px) {
  .ranlist li .try .trybtn .item {
    width: 48%;
    margin: 0;
  }
}
.ranlist li .try .trybtn .item a {
  display: block;
  padding: 2px 0;
  background: #F9F6EB;
  box-shadow: 0 3px 0 #8E8E8E;
  border: 1px solid #000;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .ranlist li .try .trybtn .item a {
    padding: 4px 0;
    font-size: 0.8em;
    box-shadow: 0 2px 0 #8E8E8E;
  }
}
.ranlist li .try .trybtn .item a:hover {
  transform: translateY(3px);
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .ranlist li .try .trybtn .item a:hover {
    transform: translateY(2px);
  }
}
.ranlist li .detailbtn {
  margin-top: 12px;
}
.ranlist li .detailbtn a {
  display: block;
  position: relative;
  padding: 8px 0;
  background: #FFD658;
  box-shadow: 0 3px 0 #CFA414;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ranlist li .detailbtn a {
    font-size: 0.75em;
    box-shadow: 0 2px 0 #CFA414;
    border-radius: 8px;
  }
}
.ranlist li .detailbtn a::after {
  content: "";
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  background: url(../img/arrow_black.svg) no-repeat;
  background-size: contain;
  right: 5%;
  top: 35%;
}
@media screen and (max-width: 767px) {
  .ranlist li .detailbtn a::after {
    right: 3%;
    top: 40%;
  }
}
.ranlist li .detailbtn a:hover {
  transform: translateY(3px);
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .ranlist li .detailbtn a:hover {
    transform: translateY(2px);
  }
}
.ranlist li .youmeonline {
  margin-top: 8px;
}
.ranlist li .youmeonline a {
  display: block;
  position: relative;
  padding: 8px 0;
  background: #E23B88;
  box-shadow: 0 3px 0 #BB167E;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ranlist li .youmeonline a {
    font-size: 0.75em;
    box-shadow: 0 2px 0 #BB167E;
    border-radius: 8px;
  }
}
.ranlist li .youmeonline a::after {
  content: "";
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  right: 5%;
  top: 35%;
}
@media screen and (max-width: 767px) {
  .ranlist li .youmeonline a::after {
    right: 3%;
    top: 40%;
  }
}
.ranlist li .youmeonline a:hover {
  transform: translateY(3px);
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .ranlist li .youmeonline a:hover {
    transform: translateY(2px);
  }
}

.guarantee {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2em 1em;
  background: #fff;
  border-radius: 24px;
}
@media screen and (max-width: 767px) {
  .guarantee {
    border-radius: 12px;
  }
}
.guarantee__ttl {
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .guarantee__ttl {
    width: 100%;
  }
}
.guarantee__ttl p {
  font-size: 2em;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .guarantee__ttl p {
    font-size: 1.4em;
  }
}
.guarantee__main {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .guarantee__main {
    display: block;
  }
}
.guarantee__main-img {
  width: 45%;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .guarantee__main-img {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.guarantee__main-txt {
  width: 50%;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .guarantee__main-txt {
    width: 100%;
    max-width: none;
  }
}
.guarantee__main-txt p {
  font-size: 1.1em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .guarantee__main-txt p {
    font-size: 1em;
  }
}
.guarantee__main-txt p.notice {
  font-size: 0.9em;
  margin-top: 1em;
}

.youmeonlinefixbtn {
  position: fixed;
  bottom: 15%;
  right: 1em;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .youmeonlinefixbtn {
    bottom: 0;
    right: 0;
    width: 100%;
  }
}
.youmeonlinefixbtn a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background: #E21F99;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 1.4em;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .youmeonlinefixbtn a {
    width: 100%;
    height: auto;
    border-radius: 0 30px 0 0;
    font-size: 1em;
    padding: 8px 0;
  }
}
.youmeonlinefixbtn a:hover {
  box-shadow: none;
}
.youmeonlinefixbtn a p {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .youmeonlinefixbtn__wrap {
    display: flex;
    align-items: center;
  }
}
.youmeonlinefixbtn__img {
  width: 30%;
  margin: 0 auto;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .youmeonlinefixbtn__img {
    width: 30px;
    margin-bottom: 0;
    margin-right: 8px;
  }
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
  .only-tab {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none !important;
  }
  .only-tab {
    display: inline-block !important;
  }
}
.fv {
  position: relative;
  height: 100vh;
  background: url(../img/top/fv_bgimg.png) no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 120px;
  min-height: 1100px;
}
@media screen and (max-width: 1024px) {
  .fv {
    background: url(../img/top/fv_bgimg-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
    min-height: auto;
    height: 90vh;
    margin-top: 40px;
  }
}
.fv::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 50%;
  background: url(../img/top/fv-rt.png) no-repeat;
  background-size: contain;
  background-position: right top;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .fv::before {
    width: 55%;
    height: 70%;
    top: 0%;
    max-width: 340px;
  }
}
.fv::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  background: url(../img/top/fv_bottom.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .fv::after {
    background: url(../img/top/fv_bottom-sp.png) no-repeat;
    background-size: contain;
    background-position: bottom;
  }
}
.fv__ttlbg {
  position: absolute;
  width: 100%;
  max-width: 1600px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 6vh;
}
@media screen and (max-width: 1024px) {
  .fv__ttlbg {
    width: 140%;
    left: -20%;
    bottom: 10vh;
  }
}
.fv__ttlbg img {
  width: 100%;
}
.fv__ttl {
  position: absolute;
  width: 95%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 20%;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .fv__ttl {
    bottom: 24%;
  }
}
@media screen and (max-width: 767px) {
  .fv__ttl {
    bottom: 20%;
  }
}
.fv__dec {
  position: absolute;
}
.fv__dec--kira1 {
  width: 5%;
  left: 4%;
  top: 10%;
  animation: kaku 1.4s steps(2, end) infinite;
}
@media screen and (max-width: 1024px) {
  .fv__dec--kira1 {
    width: 8%;
    left: 18%;
    top: 8%;
  }
}
@media screen and (max-width: 767px) {
  .fv__dec--kira1 {
    width: 12%;
    left: 20%;
    top: 8%;
  }
}
.fv__dec--soccer {
  width: 7%;
  left: 10%;
  top: 30%;
  animation: kaku 2s steps(2, end) infinite;
}
@media screen and (max-width: 1024px) {
  .fv__dec--soccer {
    display: none;
  }
}
.fv__dec--ruler {
  width: 9%;
  left: 6%;
  top: 44%;
}
@media screen and (max-width: 1024px) {
  .fv__dec--ruler {
    width: 18%;
    left: 2%;
    top: 18%;
  }
}
.fv__dec--book {
  width: 14%;
  right: 8%;
  top: 14%;
}
@media screen and (max-width: 1024px) {
  .fv__dec--book {
    width: 18%;
    right: 2%;
    top: 8%;
  }
}
@media screen and (max-width: 767px) {
  .fv__dec--book {
    width: 26%;
    right: 2%;
    top: 8%;
  }
}
.fv__dec--hanamaru {
  width: 10%;
  right: 22%;
  bottom: 14%;
  z-index: 2;
  animation: kaku 1.6s steps(2, end) infinite;
}
@media screen and (max-width: 1024px) {
  .fv__dec--hanamaru {
    width: 18%;
    right: 6%;
    bottom: 40%;
  }
}
@media screen and (max-width: 767px) {
  .fv__dec--hanamaru {
    width: 22%;
    right: 6%;
    bottom: 32%;
  }
}
.fv__dec--gira {
  width: 8%;
  left: 6%;
  bottom: 5%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .fv__dec--gira {
    width: 20%;
    left: 2%;
    bottom: 2%;
  }
}
.fv__dec--kira2 {
  width: 10%;
  right: 8%;
  bottom: 5%;
  z-index: 2;
  animation: kaku 1.4s steps(2, end) infinite;
}
@media screen and (max-width: 1024px) {
  .fv__dec--kira2 {
    width: 18%;
    right: 2%;
    bottom: 2%;
  }
}

@keyframes anmtop {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.about {
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
  z-index: 1;
  padding-bottom: 400px;
}
@media screen and (max-width: 1024px) {
  .about {
    width: 100%;
    padding-bottom: 200px;
  }
}
.about::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/top/dots-top.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .about::after {
    background: url(../img/top/dots-top-sp.png) no-repeat;
    background-size: contain;
    background-position: bottom;
  }
}
.about__wrap {
  position: relative;
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
  display: flex;
  justify-content: center;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .about__wrap {
    width: 95%;
    display: block;
  }
}
.about__guarantee {
  width: 45%;
  max-width: 420px;
  margin: 0 12px;
  padding: 1em 0.5em;
  background: #FEFFDA;
  border: 3px solid #FE819A;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .about__guarantee {
    width: 95%;
    margin: 12px auto;
  }
}
.about__guarantee .ttl {
  color: #FE819A;
  font-size: 2.4em;
  letter-spacing: 2px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .about__guarantee .ttl {
    font-size: 2em;
    line-height: 1.2;
  }
}
.about__guarantee .ttl span.big {
  font-size: 1.4em;
}
.about__guarantee .notice {
  font-size: 0.9em;
}
@media screen and (max-width: 1024px) {
  .about__guarantee .notice {
    font-size: 0.8em;
  }
}
.about__deli {
  width: 45%;
  margin: 0 12px;
  max-width: 420px;
  padding: 1em;
  background: #FE819A;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .about__deli {
    width: 95%;
    margin: 12px auto;
    padding: 1em 0.5em;
  }
}
.about__deli-ttl {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .about__deli-ttl {
    width: 90%;
  }
}
.about__deli-price {
  padding: 4px;
  border: 1px solid #fff;
  border-radius: 999px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .about__deli-price {
    font-size: 0.8em;
  }
}
.about__deli-txt {
  font-size: 0.9em;
  margin-top: 8px;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .about__deli-txt {
    font-size: 0.8em;
  }
}

.movie {
  width: 100%;
  margin: 0 auto;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .movie {
    margin-top: 40px;
  }
}

.con {
  position: relative;
  padding: 40px 0 340px;
}
@media screen and (max-width: 767px) {
  .con {
    padding-bottom: 180px;
  }
}
.con__ttlimg {
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .con__ttlimg {
    margin-bottom: 8px;
  }
}
.con__ttlimg-ttl {
  max-width: 175px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .con__ttlimg-ttl {
    max-width: 140px;
  }
}
.con__ttl {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .con__ttl {
    margin-bottom: 30px;
  }
}
.con__ttl h3 {
  position: relative;
  display: inline-block;
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .con__ttl h3 {
    font-size: 1.3em;
  }
}
.con__ttl h3 span.small {
  font-size: 0.7em;
}
.con__ttl h3::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 45px;
  background: url(../img/top/greenline.png) no-repeat;
  background-size: contain;
  background-position: right;
  right: -12%;
  bottom: -60%;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .con__ttl h3::before {
    width: 100px;
    height: 30px;
    right: -20%;
  }
}

@keyframes kaku {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(25deg);
  }
}
.popurarity {
  position: relative;
  padding-top: 0;
  background: url(../img/top/dots.png) #F3F0E6;
}
@media screen and (max-width: 1024px) {
  .popurarity {
    padding-bottom: 100px;
  }
}
.popurarity::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 50%;
  background: url(../img/top/popular-pink.png) no-repeat;
  background-size: contain;
  background-position: right top;
  right: 0;
  top: -25%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .popurarity::before {
    width: 30%;
    height: 30%;
    top: -8%;
  }
}
.popurarity::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 50%;
  background: url(../img/top/popular-blue.png) no-repeat;
  background-size: contain;
  background-position: left bottom;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .popurarity::after {
    width: 35%;
    background: url(../img/top/popular-blue-sp.png) no-repeat;
    background-size: contain;
    background-position: left bottom;
  }
}
@media screen and (max-width: 1024px) {
  .popurarity .con__ttlimg-ttl {
    width: 18%;
    max-width: 65px;
  }
}
.popurarity__dec {
  position: absolute;
}
.popurarity__dec--kira1 {
  width: 4%;
  right: 16%;
  top: -10%;
  z-index: 2;
  transform: scale(-1, 1);
}
@media screen and (max-width: 1024px) {
  .popurarity__dec--kira1 {
    display: none;
  }
}
.popurarity__dec--kira2 {
  width: 3%;
  left: 12%;
  top: 16%;
}
@media screen and (max-width: 1024px) {
  .popurarity__dec--kira2 {
    width: 9%;
    left: 14%;
    top: -4%;
    z-index: 2;
  }
}
.popurarity__dec--ballon1 {
  width: 6%;
  left: 6%;
  top: 20%;
}
@media screen and (max-width: 1024px) {
  .popurarity__dec--ballon1 {
    width: 15%;
    left: 1%;
    top: -1%;
    z-index: 2;
  }
}
.popurarity__dec--ballon2 {
  width: 6%;
  right: 6%;
  bottom: 35%;
}
.popurarity__dec--chulip {
  width: 8%;
  right: 12%;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .popurarity__dec--chulip {
    width: 24%;
    right: 5%;
  }
}
.popurarity__main {
  width: 95%;
  margin: 0 auto;
  max-width: 1300px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 3;
}
.popurarity__main-item {
  position: relative;
  width: 45%;
  margin: 0 16px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .popurarity__main-item {
    width: 95%;
    margin: 20px auto;
    max-width: 500px;
  }
}
.popurarity__main-item a {
  position: relative;
  display: block;
  background: #FA8484;
  text-align: center;
  padding: 1.5em 1em;
  border-radius: 24px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.popurarity__main-item a:hover {
  box-shadow: none;
}
.popurarity__main-item a:hover::after {
  animation: step-end;
}
.popurarity__main-item a:hover .popurarity__main-btn::before {
  right: 2%;
}
.popurarity__main-item--boy a {
  background: #72C4EE;
}
.popurarity__main-img {
  position: relative;
  margin: 0 auto;
  z-index: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .popurarity__main-img {
    width: 95%;
    margin-bottom: 25px;
  }
}
.popurarity__main-for {
  position: absolute;
  top: 60%;
  z-index: 2;
  width: 70%;
  left: 4%;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .popurarity__main-for {
    top: 55%;
    width: 65%;
  }
}
.popurarity__main-ttl {
  margin-bottom: 1em;
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .popurarity__main-ttl {
    font-size: 1.2em;
  }
}
.popurarity__main-btn {
  position: relative;
  z-index: 1;
  position: relative;
  display: block;
  padding: 16px 0;
  background: #FED526;
  border-radius: 999px;
  text-align: center;
  letter-spacing: 2px;
  font-size: 1.8em;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .popurarity__main-btn {
    font-size: 1em;
    padding: 10px 0;
  }
}
.popurarity__main-btn::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 50%;
  background: url(../img/arrow2-black.svg) no-repeat;
  background-size: contain;
  right: 4%;
  top: 38%;
  transition: all 0.6s;
}
.popurarity__main p {
  position: relative;
  z-index: 1;
}

@keyframes rotateanm {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.topics {
  position: relative;
  padding-bottom: 500px;
  background: url(../img/top/topics_bg.png) repeat-y;
  background-size: cover;
  padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  .topics {
    padding-bottom: 200px;
    padding-top: 80px;
  }
}
.topics::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/top/topics_bottom.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .topics::after {
    background: url(../img/top/topics_bottom-sp.png) no-repeat;
    background-size: contain;
    background-position: bottom;
  }
}
.topics .con__ttlimg,
.topics .con__ttl {
  position: relative;
  z-index: 1;
}
.topics .con__ttlimg {
  max-width: 145px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .topics .con__ttlimg {
    width: 22%;
  }
}
.topics__item {
  width: 95%;
  margin: 0 auto;
  max-width: 1250px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .topics__item {
    max-width: 500px;
  }
}
.topics__item a {
  display: block;
  position: relative;
  transition: all 0.3s;
  border-radius: 50px;
  z-index: 1;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .topics__item a {
    border-radius: 20px;
  }
}
.topics__item a:hover {
  opacity: 0.8;
  box-shadow: none;
}
.topics__item a img {
  width: 100%;
}
.topics__item--ar {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .topics__item--ar {
    margin-top: 30px;
  }
}

.tokuten {
  padding-top: 0;
  padding-bottom: 60px;
  background: url(../img/top/tokuten-bg.png) #6CBDAF;
  background-repeat: repeat-y;
  background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
  .tokuten {
    background: #6CBDAF;
  }
}
.tokuten__ttl {
  position: relative;
  text-align: center;
  width: 95%;
  margin: 0 auto;
  max-width: 900px;
}
.tokuten__wrap {
  width: 95%;
  margin: 0 auto;
  max-width: 1300px;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  margin: 30px auto 60px;
  padding: 2em 1em;
}
@media screen and (max-width: 1024px) {
  .tokuten__wrap {
    border-radius: 24px;
    max-width: 500px;
    padding: 1.5em 1em;
    margin: 20px auto;
  }
}
.tokuten .present__ttl {
  width: 90%;
  margin: 0 auto;
  padding: 2px 0;
  background: #E6407E;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .tokuten .present__ttl {
    width: 100%;
    padding: 4px;
  }
}
.tokuten .present__txt {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .tokuten .present__txt {
    font-size: 1.1em;
    margin-bottom: 10px;
  }
}
.tokuten .present span.tax {
  font-size: 0.8em;
}
.tokuten .present__img {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.tokuten .present__img::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  background: url(../img/top/present-img.png) no-repeat;
  background-size: contain;
  right: -36%;
  top: -20%;
}
@media screen and (max-width: 1024px) {
  .tokuten .present__img::after {
    content: none;
  }
}
.tokuten .present__img img {
  position: relative;
  z-index: 1;
}
.tokuten .present__notice {
  font-size: 0.9em;
}
.tokuten .tsumitate__topttl {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.tokuten .tsumitate__wrap {
  max-width: 1100px;
  margin: 20px auto 40px;
}
.tokuten .tsumitate__ttl {
  background: #E6407E;
  border-radius: 20px 20px 0 0;
  padding: 6px 4px;
}
@media screen and (max-width: 1024px) {
  .tokuten .tsumitate__ttl {
    border-radius: 12px 12px 0 0;
    padding: 8px 4px;
  }
}
.tokuten .tsumitate__limited {
  background: #FFD847;
  border-radius: 0 0 20px 20px;
  padding: 1em 1em 2em;
}
@media screen and (max-width: 1024px) {
  .tokuten .tsumitate__limited {
    border-radius: 0 0 12px 12px;
  }
}
.tokuten .tsumitate__limited-ttl {
  text-align: center;
  margin-bottom: 20px;
}
.tokuten .tsumitate__limited-ttl p {
  display: inline-block;
  font-size: 1.6em;
  font-weight: 700;
  color: #EB2373;
  padding: 4px 1.5em;
  border: 2px solid #EB2373;
  border-radius: 999px;
}
@media screen and (max-width: 1024px) {
  .tokuten .tsumitate__limited-ttl p {
    font-size: 1.2em;
  }
}
.tokuten .tsumitate__limited-imgwrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .tokuten .tsumitate__limited-imgwrap {
    display: block;
  }
}
.tokuten .tsumitate__limited-img {
  margin: 0 4px;
}
.tokuten .tsumitate__notice {
  text-align: left;
  text-align: center;
  margin-top: 8px;
}
.tokuten .tsumitate__notice p {
  font-size: 0.9em;
}
.tokuten .credit {
  border-radius: 20px;
  position: relative;
  background: #5DC456;
  padding: 2em 1em;
}
@media screen and (max-width: 1024px) {
  .tokuten .credit {
    border-radius: 12px;
    padding: 2em 0.5em;
  }
}
.tokuten .credit__more {
  position: absolute;
  width: 10%;
  top: -4%;
  left: 2%;
}
@media screen and (max-width: 1024px) {
  .tokuten .credit__more {
    width: 20%;
  }
}
.tokuten .credit__ttl {
  text-align: center;
  margin-bottom: 12px;
}
.tokuten .credit__ttl p {
  display: inline-block;
  font-weight: 900;
  font-size: 1.4em;
  color: #2C8C25;
  background: #FFE14A;
  padding: 0.5em 1.5em;
  border-radius: 999px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .tokuten .credit__ttl p {
    font-size: 1em;
  }
}
.tokuten .credit__ttl p span.big {
  font-size: 1.6em;
}
@media screen and (max-width: 1024px) {
  .tokuten .credit__ttl p span.big {
    font-size: 1.2em;
  }
}
.tokuten .credit__otoku {
  color: #fff;
  font-weight: 700;
  font-size: 1.4em;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .tokuten .credit__otoku {
    font-size: 1em;
  }
}
.tokuten .credit__present {
  text-align: center;
  margin-bottom: 20px;
}
.tokuten .credit__present p {
  display: inline-block;
  padding: 4px 1em;
  font-weight: 700;
  background: #fff;
  color: #2C8C25;
}
.tokuten .credit__ichirei {
  border-radius: 20px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .tokuten .credit__ichirei {
    border-radius: 12px;
  }
}
.tokuten .credit__ichirei-wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1em 0;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .tokuten .credit__ichirei-wrap {
    display: block;
  }
}
.tokuten .credit__ichirei-wrap:nth-child(1) {
  border-bottom: 2px solid #2C8C25;
}
.tokuten .credit__notice {
  text-align: left;
  color: #fff;
  margin-top: 20px;
}
.tokuten .credit__notice p {
  font-size: 0.9em;
}
.tokuten .ichirei {
  background: #FDFFC7;
  border-radius: 20px;
  position: relative;
  padding: 2em 1em;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei {
    border-radius: 12px;
    padding-top: 60px;
  }
}
.tokuten .ichirei__ttlwrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__ttlwrap {
    display: block;
    width: 100%;
  }
}
.tokuten .ichirei__ttlwrap-icon {
  width: 25%;
  text-align: right;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__ttlwrap-icon {
    position: absolute;
    top: 2%;
  }
}
.tokuten .ichirei__ttlwrap-main {
  width: 75%;
  border: 3px solid #295296;
  border-radius: 12px;
  background: #fff;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__ttlwrap-main {
    width: 100%;
    border: 2px solid #295296;
    display: block;
    padding: 0.5em;
  }
}
.tokuten .ichirei__ttlwrap-main-img {
  width: 18%;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__ttlwrap-main-img {
    width: 35%;
    margin: 0 auto;
  }
}
.tokuten .ichirei__ttlwrap-main-txt {
  width: 75%;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__ttlwrap-main-txt {
    width: 100%;
  }
}
.tokuten .ichirei__ttlwrap-main-txt .logo {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__ttlwrap-main-txt .logo {
    width: 60%;
  }
}
.tokuten .ichirei__ttlwrap-main-txt .ttl {
  font-weight: 700;
  font-size: 1.2em;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__ttlwrap-main-txt .ttl {
    font-size: 1em;
  }
}
.tokuten .ichirei__ttlwrap-main-txt .price {
  text-align: right;
  font-size: 1.3em;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__ttlwrap-main-txt .price {
    font-size: 1.1em;
    margin-top: 1em;
  }
}
.tokuten .ichirei__ttlwrap-main-txt .price span.tax {
  font-size: 0.7em;
}
.tokuten .ichirei__wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__wrap {
    display: block;
  }
}
.tokuten .ichirei__wrap-credit {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__wrap-credit {
    background: #fff;
    padding-top: 10px;
  }
}
.tokuten .ichirei__wrap-credit::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  background: url(../img/top/okaiage.png) no-repeat;
  background-position: center bottom;
  left: 0;
  top: -30px;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__wrap-credit::before {
    display: none;
  }
}
.tokuten .ichirei__okaidoku {
  text-align: center;
  margin-top: 40px;
}
.tokuten .ichirei__okaidoku p {
  position: relative;
  display: inline-block;
  padding: 4px 1em 6px;
  background: #DA0049;
  font-size: 1.4em;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__okaidoku p {
    font-size: 1.1em;
    padding: 4px 1.5em 6px;
  }
}
.tokuten .ichirei__okaidoku p::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 30px;
  background: url(../img/top/triangle.png) no-repeat;
  background-size: contain;
  background-position: center;
  top: -28px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.tokuten .ichirei__okaidoku p span.big {
  font-size: 1.8em;
}
@media screen and (max-width: 1024px) {
  .tokuten .ichirei__okaidoku p span.big {
    font-size: 1.5em;
  }
}
.tokuten .app__btn {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  z-index: 1;
}
.tokuten .app__btn a {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 999px;
  background: #FF3C85;
  color: #fff;
  text-align: center;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 14px 0;
  font-weight: 600;
}
.tokuten .app__btn a::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  right: 6%;
  top: 40%;
  transition: all 0.3s;
}
.tokuten .app__btn a:hover::before {
  right: 4%;
}
.tokuten span.line {
  background: linear-gradient(transparent 70%, #FCEE21 70%);
}

.digitalcatalog {
  position: relative;
  padding-bottom: 420px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .digitalcatalog {
    padding-bottom: 150px;
    padding-top: 80px;
  }
}
.digitalcatalog::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1000px;
  background: url(../img/top/bottom.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .digitalcatalog::after {
    background: url(../img/top/bottom-sp.png) no-repeat;
    background-size: contain;
    background-position: bottom;
  }
}
.digitalcatalog .con__ttlimg-ttl {
  max-width: 145px;
}
@media screen and (max-width: 1024px) {
  .digitalcatalog .con__ttlimg-ttl {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .digitalcatalog .con__ttl h3::before {
    width: 60px;
    height: 30px;
    right: -10%;
  }
}
.digitalcatalog__main {
  position: relative;
  width: 95%;
  margin: 0 auto;
  max-width: 1000px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .digitalcatalog__main {
    display: block;
    max-width: 500px;
    margin-bottom: 50px;
  }
}
.digitalcatalog__main-img {
  width: 35%;
  max-width: 300px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .digitalcatalog__main-img {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.digitalcatalog__main-img a {
  display: block;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
.digitalcatalog__main-img a:hover {
  opacity: 0.8;
}
.digitalcatalog__main-txt {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .digitalcatalog__main-txt {
    width: 100%;
  }
}
.digitalcatalog__main-txt p {
  font-size: 1.4em;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .digitalcatalog__main-txt p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
}
.digitalcatalog__main-txt a {
  position: relative;
  font-size: 1.2em;
  padding: 1em 0.5em;
  background: #FF3C85;
  border-radius: 999px;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  color: #fff;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .digitalcatalog__main-txt a {
    font-size: 1em;
    letter-spacing: 1px;
    max-width: 350px;
  }
}
.digitalcatalog__main-txt a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 16px;
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  right: 1em;
  top: 40%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .digitalcatalog__main-txt a::before {
    width: 10px;
    height: 14px;
  }
}
.digitalcatalog__main-txt a:hover::before {
  right: 0.8em;
}
.digitalcatalog .guarantee {
  position: relative;
  z-index: 1;
  background: none;
}

@media screen and (max-width: 1024px) {
  #s_toPageTop {
    bottom: 40px;
  }
}

@media screen and (max-width: 1024px) {
  footer#s_footer {
    padding-bottom: 40px;
  }
}

.movie {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .movie {
    margin-bottom: 120px;
  }
}
.movie__ttl {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}
.movie__item {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 0.5em;
  border: 3px dashed #EF7297;
}
.movie__item::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 40%;
  background: url(../img/top/movie-l.png) no-repeat;
  background-size: contain;
  left: -22%;
  top: 10%;
}
@media screen and (max-width: 1024px) {
  .movie__item::before {
    left: 2%;
    top: -50%;
  }
}
.movie__item::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 50%;
  background: url(../img/top/movie-r.png) no-repeat;
  background-size: contain;
  right: -40%;
  bottom: 5%;
}
@media screen and (max-width: 1024px) {
  .movie__item::after {
    width: 22%;
    background: url(../img/top/movie-r-sp.png) no-repeat;
    background-size: contain;
    right: 2%;
    bottom: -55%;
  }
}
.movie-youtube {
  width: 100%;
  margin: 0 auto;
  position: relative;
}