@charset "UTF-8";
/* general */
h1, h2, h3 {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

img {
  height: auto;
  vertical-align: bottom;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  width: 900px;
}

.align-center {
  text-align: center;
}

.box-bg {
  padding: 25px 0;
  background-color: #fff;
  border-radius: 20px;
}

.group-box .box-bg {
  margin-bottom: 30px;
}

.label-primary {
  display: inline-block;
  padding: 0 15px;
  min-width: 70px;
  background-color: #464346;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50vh;
  letter-spacing: .14em;
}

.btn-primaly {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 10px 35px;
  min-width: 290px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background-color: #fc6860;
  border-radius: 50vh;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: .06em;
  transition: .2s ease-out;
}

.btn-primaly:hover {
  color: #fff;
  opacity: .7;
}

.btn-primaly::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translate(-50%, 0);
}

.btn-primaly.btn-large {
  padding: 20px 50px;
  font-size: 25px;
  letter-spacing: .12em;
}

.btn-primaly.btn-large::after {
  right: 20px;
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.btn-secondaly {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 8px 35px;
  border: 2px solid #fc6860;
  background-color: #fff;
  min-width: 170px;
  color: #fc6860;
  font-weight: 600;
  text-align: center;
  border-radius: 50vh;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: .06em;
  transition: .2s ease-out;
}

.btn-secondaly:hover {
  color: #fc6860;
  opacity: .7;
}

.btn-secondaly::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fc6860;
  border-right: 2px solid #fc6860;
  transform: rotate(45deg) translate(-50%, 0);
}

.btn-soldout {
  display: inline-block;
  margin: 0 auto;
  padding: 8px 35px;
  border: 2px solid #aaaaaa;
  background-color: #fff;
  min-width: 170px;
  color: #aaaaaa;
  font-weight: 600;
  text-align: center;
  border-radius: 50vh;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: .06em;
}

.btn-soldout-detail {
  display: inline-block;
  margin: 0;
  padding: 8px 35px;
  border: 2px solid #aaaaaa;
  background-color: #fff;
  min-width: 170px;
  color: #aaaaaa;
  font-weight: 600;
  text-align: center;
  border-radius: 50vh;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: .06em;
}

.btn-show-all-items {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 10px 35px;
  border: 2px solid #fc6860;
  min-width: 290px;
  color: #fc6860;
  font-weight: 600;
  text-align: center;
  background-color: #fff;
  border-radius: 50vh;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: .06em;
  transition: .2s ease-out;
}
.btn-show-all-items::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fc6860;
  border-right: 2px solid #fc6860;
  transform: rotate(45deg) translate(-50%, 0);
}
.btn-show-all-items:hover {
  color: #fc6860;
  opacity: .7;
}

@media screen and (min-width: 769px) {
  .pc-only {
    display: block;
  }

  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .inner {
    width: 90.6666666667%;
  }

  .btn-primaly {
    min-width: auto;
    font-size: 16px;
  }

  .btn-primaly.btn-large {
    padding: 15px 0;
    font-size: 22px;
    width: 100%;
  }

  .btn-secondaly {
    min-width: auto;
    font-size: 16px;
  }

  .btn-soldout {
    min-width: auto;
    font-size: 16px;
  }

  .btn-soldout-detail {
    min-width: auto;
    font-size: 16px;
    margin: 0 auto 15px;
  }
}

/* flex */
.flex-box {
  display: flex;
}

.flex-box.col-2 {
  align-items: center;
}

.flex-box.col-2 .flex-box__item {
  width: 50%;
}

.flex-box.col-4 {
  justify-content: center;
}

.flex-box.col-4 .flex-box__item {
  max-width: 25%;
}

.flex-box .box-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-box .box-image2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 10%;
}


.flex-box .box-text {
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

@media screen and (max-width: 768px) {
  .flex-box.col-2 {
    flex-direction: column;
  }

  .flex-box .box-image {
    flex-direction: column;
  }
  .flex-box .box-image2 {
    padding: 0 0 5% 0;
  }

  .flex-box.col-2 .flex-box__item {
    width: 100%;
  }

  .flex-box.col-4 {
    flex-wrap: wrap;
  }

  .flex-box.col-4 .flex-box__item {
    width: 50%;
    max-width: unset;
  }
}

/* box-product */
.box-product__item .box-image {
  justify-content: flex-end;
}

.box-product__item .box-text {
  text-align: center;
}

.product-name {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .1em;
}

.product-price {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .1em;
}

.product-price .tax {
  font-size: 13px;
  letter-spacing: .1em;
}

.box-product__item .btn-primaly {
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .product-name {
    margin-top: 6.66666666667vw;
    font-size: 22px;
  }

  .product-price {
    font-size: 18px;
  }

  .product-price .tax {
    font-size: 13px;
  }
}

/* intro */
.intro-description {
  padding: 35px 0 55px;
  background-size: auto auto;
  background-color: #fde680;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 43px, rgba(252, 208, 100, 1) 43px, rgba(252, 208, 100, 1) 96px );
}

.intro-box {
  margin: 0 auto;
  padding: 25px 0 35px;
  width: 467px;
  text-align: center;
}

.intro-box .title-02 {
  margin-bottom: 15px;
  line-height: 1;
}

.intro-box .text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9375;
  letter-spacing: .1em;
}

.intro-content {
  padding-bottom: 80px;
  background-color: #f8f3e9;
}

/*.intro-content .group-box {
  margin-bottom: 50px;
}*/

.intro-content__img {
  display: inline-block;
  margin: -30px auto 35px;
  width: 100%;
  text-align: center;
}

.intro-set__detail .flex-box .box-text {
  width: 400px;
  text-align: center;
}

.intro-set__detail .box-text .title {
  margin-bottom: 20px;
}

.intro-set__detail .box-text .text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9375;
  letter-spacing: .1em;
}

.intro-set__detail .box-text .text p {
  margin-bottom: 10px;
}

.intro-set__detail .box-text .text p:last-child {
  margin-bottom: 0;
}

.intro-set__products {
  padding: 30px 0 80px;
}

.intro-set__products .title {
  margin-bottom: 10px;
}

.intro-set__products p {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .08em;
}

.intro-set__products .flex-box__item {
  text-align: center;
}

.intro-set__products .flex-box__item .label-primary {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .intro-description {
    padding: 6.66666666667vw 0 10.6666666667vw;
  }

  .intro-box {
    padding: 6.66666666667vw 8px;
    width: 100%;
  }

  .intro-box .text {
    font-size: 14px;
  }

  .intro-content__img {
    margin: -5.33333333333vw auto 4vw;
  }

  .intro-content__img img {
    width: 93.7333333333vw;
  }

  .intro-set__detail .box-bg {
    padding: 4vw;
    font-size: 14px;
    text-align: center;
  }

  .intro-set__detail .image {
    margin-bottom: 4vw;
  }

  .intro-set__detail .product-name {
    margin-top: 0;
  }

  .intro-set__detail .title,.intro-set__detail + .title {
    margin: 6vw auto;
    width: 78.9333333333vw;
  }

  .intro-set__detail .text p {
    margin-bottom: 10px;
  }

  .intro-set__detail .text p:last-child {
    margin-bottom: 0;
  }

  .intro-set__products {
    margin-bottom: 0 !important;
    padding: 5.33333333333vw 6.4vw;
    background-color: unset;
  }

  .intro-set__products p {
    margin-bottom: 5.33333333333vw;
    font-size: 16px;
  }

  .intro-set__products .label-primary {
    padding: 0 2.66666666667vw;
    font-size: 14px;
  }
}

/* point */
.point__index {
  padding: 50px 0;
  background-color: #f9dc81;
  text-align: center;
}

.point__index .title-02 {
  margin-bottom: 20px;
}

.point__index .index-list {
  display: flex;
  flex-wrap: wrap;
}

.point__index .index-list__item {
  margin: 0 6px 12px;
  width: 430px;
}

.point__index .index-list__item > a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 15px 20px;
  border-radius: 15px;
  background-color: #fff;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .06em;
}

.point__index .index-list__item > a:hover {
  color: inherit;
  opacity: .7;
}

.point__index .index-list__item > a::before {
  content: '';
  margin-right: 20px;
  background-repeat: no-repeat;
}

.point__index .index-list__item:nth-child(1) a::before {
  background-image: url(/img/usr/freepage/ohirune_set/num_01.png);
  width: 39px;
  height: 28px;
}

.point__index .index-list__item:nth-child(2) a::before {
  background-image: url(/img/usr/freepage/ohirune_set/num_02.png);
  width: 45px;
  height: 27px;
}

.point__index .index-list__item:nth-child(3) a::before {
  background-image: url(/img/usr/freepage/ohirune_set/num_03.png);
  width: 46px;
  height: 28px;
}

.point__index .index-list__item:nth-child(4) a::before {
  background-image: url(/img/usr/freepage/ohirune_set/num_04.png);
  width: 45px;
  height: 27px;
}

.point__index .index-list__item > a::after {
  content: '';
  position: absolute;
  top: 50%;
  margin: -5px 0 0 0;
  right: 25px;
  width: 15px;
  height: 15px;
  border-bottom: 3px solid;
  border-right: 3px solid;
  transform: rotate(45deg) translate(-50%, 0);
}

.point__index .index-list__item:nth-child(1) a::after {
  border-color: #fc8a84;
}

.point__index .index-list__item:nth-child(2) a::after {
  border-color: #9dc3e8;
}

.point__index .index-list__item:nth-child(3) a::after {
  border-color: #fcc06b;
}

.point__index .index-list__item:nth-child(4) a::after {
  border-color: #94dad8;
}

.section-point {
  padding: 50px 0 80px;
}

.point-01,
.point-01 .point-detail__title::before {
  background-color: #f8aeab;
}

.point-02,
.point-02 .point-detail__title::before {
  background-color: #aecded;
}

.point-03,
.point-03 .point-detail__title::before {
  background-color: #f9dc81;
}

.point-04,
.point-04 .point-detail__title::before {
  background-color: #93d4d2;
}

.point-04 {
  padding-bottom: 0;
}

.point-04-01 {
  padding: 0 0 80px;
}

.point-04-02 {
  padding: 80px 0;
  background-color: #efbec9;
}

.point-04-03 {
  padding: 80px 0;
  background-color: #d5e5f2;
}

.title-point-section {
  margin-bottom: 40px;
  text-align: center;
}

.title-point-section picture {
  display: block;
  margin-bottom: 15px;
}

.title-point-section span {
  position: relative;
  color: #312e31;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .02em;
  z-index: 5;
}

.title-point-section span::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 0;
  height: 18px;
  background-color: rgba(255, 255, 255, .5);
  z-index: -1;
}

.point-detail .box-bg {
  padding: 50px 0;
}

.point-detail__item.flex-box {
  align-items: flex-start;
  margin-bottom: 40px;
}

.point-detail__item.flex-box:last-child {
  margin-bottom: 0;
}

.point-detail__item .box-image {
  position: relative;
  justify-content: flex-end;
  padding: 0 20px 0 0;
}

.point-detail__item .box-text {
  padding: 15px 80px 0 20px;
}

.point-detail__item.box-gift {
  margin: 80px auto 0;
  padding: 40px 0;
  width: 730px;
  background-color: #fef2e1;
  border-radius: 20px;
}

.point-detail__item.box-gift .flex-box__item {
  text-align: center;
}

.point-detail__item.box-gift .btn-primaly {
  margin-top: 22px;
}

.point-detail__item.box-gift .note {
  margin-top: 25px;
}

.point-detail__item.box-gift .btn-primaly.pc-only {
  display: inline-block;
}

.point-detail__title {
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .04em;
}

.point-detail__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 3px;
}

.point-detail__title .tag {
  display: inline-block;
  padding: 3px 10px;
  min-width: 53px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
  background-color: #f7a627;
  text-align: center;
}

.point-detail__text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125;
  letter-spacing: .06em;
}

.point-detail__text .note {
  font-size: 13px;
}

.point-detail__text .btn-primaly {
  margin-top: 25px;
}

.point-04 .box-bg {
  margin-bottom: 0;
}

.point-04-02 .box-bg,
.point-04-03 .box-bg {
  padding-top: 70px;
}

.point-detail__catch {
  margin-bottom: 15px;
  color: #33b4b0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.44;
}

.detail-price {
  font-size: 20px;
  font-weight: 500;
}

.detail-price .tax {
  font-size: 14px;
}

.wrap-btn {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 80px;
  width: 100%;
}

.wrap-btn a {
  margin: 0 5px;
}

.container-btn{
  text-align: center;
  padding-bottom: 80px;
  margin-top: -30px;
}

.point-detail__table {
  margin: 40px auto 45px;
  width: 710px;
  font-size: 15px;
}

.point-detail__table th {
  padding: 10px 15px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  width: 189px;
}

.point-04-01 .point-detail__table th {
  background-color: #87cbc9;
}

.point-04-02 .point-detail__table th {
  background-color: #eeafbe;
}

.point-04-03 .point-detail__table th {
  background-color: #94c5ec;
}

.point-detail__table td {
  padding: 10px 20px;
  border: 2px solid #fff;
}

.point-detail__table td:nth-child(2) {
  width: 168px;
  text-align: center;
}

.point-04-01 .point-detail__table td {
  background-color: #e3f3f3;
}

.point-04-02 .point-detail__table td {
  background-color: #faecf0;
}

.point-04-03 .point-detail__table td {
  background-color: #e9f1f8;
}

.point-04-01 .point-detail__item .box-image,
.point-04-03 .point-detail__item .box-image {
  padding-top: 55px;
}

.circle-num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  font-size: 12px;
  border-radius: 50vh;
}

.point-04-01 .circle-num {
  color: #87cbc9;
}

.point-04-02 .circle-num {
  color: #eeafbe;
}

.point-04-03 .circle-num {
  color: #94c5ec;
}

.point-detail__item .icon {
  position: absolute;
}

.point-04-01 .point-detail__item .icon {
  top: -30px;
  left: 70px;
}

.point-04-02 .point-detail__item .icon {
  top: -30px;
  left: 70px;
}

.point-04-03 .point-detail__item .icon {
  top: -50px;
  left: 60px;
}

/*.point-04-03 .wrap-btn {
  margin-top: 80px;
}*/

.copyright {
  margin-right: 65px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .point__index {
    padding: 9.06666666667vw 0;
  }

  .section-point {
    padding: 9.06666666667vw 0;
  }

  .point-detail__item.box-gift {
    margin-top: 0;
    width: 100%;
  }

  .wrap-btn {
    flex-direction: column;
    margin-bottom: 8vw;
  }

  .wrap-btn:last-child {
    margin-bottom: 0;
  }

  .wrap-btn a {
    margin: 0 auto 15px;
  }

  .point-detail__table {
    margin: 6.66666666667vw 0;
    width: 100%;
  }

  .point-detail__table th,
  .point-detail__table td {
    display: block;
    padding: 1.33333333333vw 2.66666666667vw;
    border: none;
    width: 100%;
  }

  .point-detail__table td:nth-child(2) {
    display: none;
  }

  .point-detail__table th {
    text-align: left;
  }

  .point-detail__table th .sp-only {
    display: inline-block;
    margin-left: 10px;
  }

  .point__index .index-list__item > a {
    padding: 15px 4.53333333333vw;
    font-size: 18px;
  }

  .title-point-section picture img {
    height: 6.53333333333vw;
    width: auto;
  }

  .title-point-section {
    margin-bottom: 5.33333333333vw;
  }

  .title-point-section span {
    font-size: 25px;
  }

  .title-point-section span::after {
    bottom: 5px;
  }

  .point-detail .box-bg {
    padding: 6vw;
  }

  .point-detail .box-bg:last-child {
    margin-bottom: 0;
  }

  .point-detail__item .box-image {
    margin-bottom: 6.66666666667vw;
    padding-right: 0;
  }

  .point-detail__item .box-text {
    padding: 0;
  }

  .point-detail__title {
    padding-left: 15px;
    font-size: 19px;
  }

  .point-detail__text p {
    font-size: 14px;
  }

  .point-detail__text .btn-primaly {
    display: block;
    margin: 5.33333333333vw auto;
  }

  .point-detail__title .tag {
    font-size: 19px;
  }

  .point-detail__item.box-gift {
    padding: 6.66666666667vw 4vw;
  }

  .point-detail__item.box-gift picture {
    display: inline-block;
    margin-bottom: 20px;
  }

  .point-detail__item.box-gift .btn-primaly.pc-only {
    display: none;
  }

  .point-detail__item.box-gift .btn-primaly {
    padding: 1.33333333333vw 8vw;
  }

  .point-detail__catch {
    font-size: 20px;
  }

  .point-04 {
    padding-bottom: 0;
  }

  .point-04-01 {
    padding-bottom: 13.3333333333vw;
  }

  .point-04-02 {
    padding: 13.3333333333vw 0;
  }

  .point-detail__item .icon {
    position: relative;
    width: 100%;
  }

  .point-04-01 .point-detail__item .box-image,
  .point-04-02 .point-detail__item .box-image,
  .point-04-03 .point-detail__item .box-image {
    padding-top: 0;
  }

  .point-04-01 .point-detail__item .icon,
  .point-04-02 .point-detail__item .icon,
  .point-04-03 .point-detail__item .icon {
    top: unset;
    left: unset;
  }

  .point-04-02 .point-detail__item .icon img {
    width: 36.2666666667vw;
  }

  .point-04-03 .point-detail__item .icon img {
    width: 25.6vw;
  }

/*  .point-04-03 .wrap-btn {
    margin-top: 40px;
  }*/

  .copyright {
    margin-right: 0;
  }

  .point-04-03 .copyright img {
    width: 44.5333333333vw;
  }
}

/* 動画 */
.video_wrapper {
  text-align: center;
  margin-top: 40px;
}
.video_wrapper iframe {
  width: 750px;
  height: 422px;
}
.video_wrapper .movie-txt {
  margin: 10px auto 0;
  width: 750px;
  text-align: left;
  line-height: 1.75;
  padding-left: 30px;
  text-indent: -29px;
}

@media screen and (max-width: 768px) {
  .video_wrapper iframe {
    width: 100%;
    height: 220px;
  }
  .video_wrapper .movie-txt {
    margin: 10px auto 0;
    width: 100%;
    padding-left: 30px;
    text-indent: -29px;
  }
}


/* ---------------2023-2024_add--------------- */

.box-sb__image {
	position: relative;
}

.sb_image {
	position: absolute;
	bottom: -20px;
	left: 35px;
}

.icon.sp-only {
	margin: 0 0 10px;
}

/*.index-list__item {
	position: relative;
}
.point__index .index-list__item:nth-child(4) > a::after {
    border: none;
}*/
.index-list__accitem {
	position: absolute;
	top: 75px;
	left: 0;
	display: none;
	width: 100%;
	margin: -20px 0 0;
	padding: 25px 10px 0;
	text-align: left;
	background: #fff;
	border-radius: 0 0 15px 15px;
}
.index-list__item:hover .index-list__accitem {
	display: block;
	transition: .5s;
}

.index-list__accitem a {
	position: relative;
	display: block;
	margin: 0 0 15px 78px;
	font-size: 16px;
    font-weight: 600;
    letter-spacing: .06em;
}
.index-list__accitem a::after {
    border-color: #94dad8;
}
.index-list__accitem a::after {
    content: '';
    position: absolute;
    top: 50%;
    margin: -5px 0 0 0;
    right: 18px;
    width: 10px;
    height: 10px;
    border-bottom: 3px solid;
    border-right: 3px solid;
    transform: rotate(-45deg) translate(-50%, 0);
	transition: .5s;
}
.index-list__accitem a:hover::after {
    transform: rotate(45deg) translate(-50%, 0);
    top: 70%;
    right: 16px;
}

.point__index .index-list + .title-02 {
  margin-top: 10px;
}
.point__index .index-list__item[class*="anc_"] a::before {
    background-image: none;
	width: 0;
	height: 0;
}
.point__index .index-list__item[class*="anc_"] > a {
    padding: 15px 20px 15px 0;
}

@media screen and (min-width: 769px) {
.point-04-01 .point-detail .box-bg {
  padding: 50px 0 0;
}
}
@media screen and (max-width: 768px) {
.sb_image {
	bottom: -10px;
	left: -15px;
	width: 50%;
}

.index-list__accitem {
	position: relative;
	top: 0;
	display: block;
	margin: -13px 0 0;
	padding: 15px 10px 5px;
}
.index-list__accitem a::after {
    transform: rotate(45deg) translate(-50%, 0);
}

.point__index .index-list__item[class*="anc_"] > a {
    padding: 15px 4.53333333333vw 15px 0;
}


}

/* -----アンパンマン⇔きかんしゃトーマス順番変更----- */
/*.point-04-03bg_ver {
    background-color: #d5e5f2;
    padding: 50px 0 1px;
}*/
/* リセット */
/*#point-04.point-04 {
    padding: 0;
}
.point-04-03 {
    padding: 0 0 80px;
    background-color: #d5e5f2;
}*/
.point-04-01 {
    padding: 80px 0;
}
/*.point-04-01 .wrap-btn {
    margin-top: 80px;
}
html[data-browse-mode="S"] .point-04-03bg_ver {
    padding: 50px 0 20px;
}
html[data-browse-mode="S"] #point-04 .title-point-section {
    margin-bottom: 0;
}
html[data-browse-mode="S"] .point-04-01 {
    padding: 80px 0;
}
html[data-browse-mode="S"] .point-04-01 .wrap-btn {
    margin-top: 40px;
}*/

/* -----きかんしゃトーマス----- */
.point__index .index-list__item.anc_thomas a::after {
    border-color: #9dc3e8;
}
/* -----アンパンマンー----- */
.point__index .index-list__item.anc_anpanman a::after {
    border-color: #93d4d2;
}
#anpanman.point-04-01 {
    padding: 0 0 80px;
}

/* -----スヌーピー----- */
.point__index .index-list__item.anc_peanuts a::after {
    border-color: #adcc70;
}
.peanuts_area {
	background-color: #adcc70;
}
.point-04-01.peanuts_area .point-detail__table th {
    background-color: #adcc70;
}
.point-04-01.peanuts_area .point-detail__table td {
    background-color: #eef4e2;
}
.point-04-01.peanuts_area .circle-num {
    color: #adcc70;
}
/* -----ミッフィー----- */
.point__index .index-list__item.anc_miffy a::after {
    border-color: #e74a16;
}
.miffy_area {
	background-color: #e74a16;
}
.point-04-01.miffy_area .point-detail__table th {
    background-color: #e74a16;
}
.point-04-01.miffy_area .point-detail__table td {
    background-color: #fae7e1;
}
.point-04-01.miffy_area .circle-num {
    color: #e74a16;
}
