@charset "UTF-8";

/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS
===================================================================== */
/* =====================================================================
    common
======================================================================*/
.gDef-contents .bg_white {
  background: #fff;
}

.gDef-contents .bg_gray {
  background: #ebeff2;
}

.gDef-contents .fontEn {
  font-family: "Bungee", sans-serif;
}

.gDef-contents .red {
  color: #d90b2d;
}

.gDef-contents .blue {
  color: #096cb3;
}

.gDef-contents .z1 {
  position: relative;
  z-index: 1;
}

.gDef-contents p {
  font-size: 4rem;
  line-height: 1.45;
}

@media screen and (min-width: 768px) {
  .gDef-contents p {
    font-size: 2.2rem;
  }
}

.gDef-contents .forSP {
  display: block;
}

@media screen and (min-width: 768px) {
  .gDef-contents .forSP {
    display: none;
  }
}

.gDef-contents .forPC {
  display: none;
}

@media screen and (min-width: 768px) {
  .gDef-contents .forPC {
    display: block;
  }
}

.gDef-contents a.btn::before {
  width: 0;
  height: 100%;
}

.gDef-contents a.btn:hover::before {
  width: 100%;
}

.gDef-contents a.btn::after {
  transform: rotate(-90deg);
}

.gDef-contents a.btn:hover::after {
  transform: translateX(0.5rem) rotate(-90deg);
}

.gDef-contents a.more::before {
  width: 100%;
  height: 0;
}

.gDef-contents a.more:hover::before {
  height: 100%;
}

.gDef-contents a.more:hover::after {
  transform: translateY(0.5rem);
}

.gDef-contents a.movie {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/btn_play.svg) no-repeat center center/15%;
  filter: drop-shadow(0 0 3rem rgba(0, 0, 0, 0.3));
}

.gDef-contents a.movie:hover {
  transform: translateX(1rem);
}

.gDef-contents a.btn,
.gDef-contents a.more {
  display: flex;
  background: #d90b2d;
  color: #fff;
  font-size: 4rem;
  align-items: center;
  height: 12rem;
  padding-left: 3rem;
  padding-right: 4rem;
  border-radius: 7rem;
  margin: auto;
  z-index: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {

  .gDef-contents a.btn,
  .gDef-contents a.more {
    max-width: 500px;
    font-size: 2.4rem;
    height: 7rem;
    border-radius: 5rem;
  }
}

.gDef-contents a.btn::before,
.gDef-contents a.more::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #096cb3;
  z-index: -1;
  transition: all 0.3s;
}

.gDef-contents a.btn::after,
.gDef-contents a.more::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 2.8rem);
  right: 2rem;
  width: 5.6rem;
  height: 5.6rem;
  transition: all 0.3s;
  background: url(../images/icon_arrow.svg) no-repeat center center/contain;
}

@media screen and (min-width: 768px) {

  .gDef-contents a.btn::after,
  .gDef-contents a.more::after {
    top: calc(50% - 1.6rem);
    width: 3.2rem;
    height: 3.2rem;
  }
}

h2.ttl {
  letter-spacing: 0.05em;
  font-size: 8rem;
  font-weight: 900;
  color: #096cb3;
  margin: 0 0 7.5rem auto;
  width: 90%;
  line-height: 1.2;
  position: relative;
}

@media screen and (min-width: 768px) {
  h2.ttl {
    font-size: 6rem;
    width: calc(340 / 1240 * 100%);
    margin: 0;
  }
}

h2.ttl span {
  display: block;
  color: #d90b2d;
  font-size: 3rem;
  font-family: "Bungee", sans-serif;
}

@media screen and (min-width: 768px) {
  h2.ttl span {
    font-size: 2.2rem;
  }
}

.news h2.ttl::before,
.program h2.ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 100rem;
  height: 32rem;
  background: #d90b2d;
  top: -10rem;
  left: -102rem;
  border-radius: 0 16rem 16rem 0;
}

.program h2.ttl::before {
  z-index: 20;
}

/* =====================================================================
    header
======================================================================*/
#wrapper {
  background: #d90b2d;
  padding: 7rem 0 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  overflow: hidden;
}

#wrapper section {
  padding: 0;
  border-bottom: none;
}

.contents_header {
  position: relative;
  padding: 20rem 0 17rem;
}

@media screen and (max-width: 767px) {
  .contents_header {
    border-radius: 20rem 0 20rem 0;
  }
}

@media screen and (min-width: 768px) {
  .contents_header {
    padding: 12rem 0 17rem;
  }
}

.contents_header .inner {
  width: 92%;
  max-width: 1240px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .contents_header .inner {
    width: 80%;
    display: flex;
    justify-content: space-between;
  }
}

.contents_header .inner h1 {
  width: 100%;
  padding-bottom: 8.5rem;
  margin-bottom: 7rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contents_header .inner h1::before {
    content: "";
    display: block;
    position: absolute;
    width: 8rem;
    height: 2rem;
    background: url(../images/dotted.png) no-repeat bottom left/contain;
    bottom: 0;
    left: calc(50% - 4rem);
  }
}

@media screen and (min-width: 768px) {
  .contents_header .inner h1 {
    width: calc(547 / 1240 * 100%);
    padding-bottom: 0;
    margin: 0 auto 3em;
  }
}

.contents_header .inner .txt {
  width: 100%;
}

.contents_header .inner .txt p {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.75;
}

@media screen and (min-width: 768px) {
  .contents_header .inner .txt {
    width: calc(600 / 1240 * 100%);
  }

  .contents_header .inner .txt p {
    font-size: 2.4rem;
    line-height: 2;
  }
}

.contents_header::before {
  /* 右　半円青 */
  content: "";
  display: block;
  position: absolute;
  width: 46rem;
  height: 23rem;
  background: #096cb3;
  bottom: -35rem;
  right: -15rem;
  border-radius: 50%/100% 100% 0 0;
}

@media screen and (max-width: 767px) {
  .contents_header::before {
    transform: rotate(-90deg);
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .contents_header::before {
    width: 35rem;
    height: 17rem;
    bottom: 0;
    right: calc(155 / 1920 * 100%);
  }
}

.contents_header::after {
  content: "";
  display: block;
  position: absolute;
  width: 28rem;
  height: 40rem;
  background: url(../images/illust_01_sp.png) no-repeat bottom right/contain;
  bottom: -45rem;
  right: 0;
  z-index: 20;
}

@media screen and (min-width: 768px) {
  .contents_header::after {
    width: 23rem;
    height: 22rem;
    background: url(../images/illust_01.png) no-repeat center center/contain;
    bottom: 0;
    right: calc(105 / 1920 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .contents_header .deco_r {
    position: absolute;
    top: -1px;
    right: 0;
    width: calc(350 / 1920 * 100%);
    height: 89rem;
    background: url(../images/deco_01.svg) no-repeat top right/contain;
    z-index: 10;
  }

  .contents_header .deco_l {
    position: absolute;
    top: 12rem;
    left: 0;
    width: calc(160 / 1920 * 100%);
    height: 110%;
    background: #096cb3 url(../images/deco_corner.svg) no-repeat top right/contain;
    z-index: 10;
  }
}

/* =====================================================================
    news
======================================================================*/
.news {
  padding-bottom: 24rem !important;
  position: relative;
}

@media screen and (max-width: 767px) {
  .news {
    margin-top: 17rem;
    padding-top: 16rem !important;
  }
}

.news_inner {
  position: relative;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .news_inner {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .news_inner h2.ttl {
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 1240px) {
  .news_inner {
    max-width: 1240px;
  }
}

@media screen and (min-width: 1920px) {
  .news_inner {
    max-width: 1240px;
  }
}

.news_area {
  box-sizing: border-box;
  padding: 6rem 0 10rem 8rem;
  border-radius: 3rem 0 0 3rem;
  position: relative;
  margin: 0 0 0 10%;
}

@media screen and (min-width: 768px) {
  .news_area {
    padding: 6rem 12rem;
    width: 90%;
    margin: 0 -21.6666666667% 0 auto;
  }

  .news_area::before {
    content: "";
    display: block;
    position: absolute;
    width: 25rem;
    height: 15rem;
    background: url(../images/illust_03.png) no-repeat center center/contain;
    bottom: -4.5rem;
    left: -17rem;
  }
}

@media screen and (min-width: 1240px) {
  .news_area {
    width: 100%;
    padding: 6rem 10rem;
    margin: 0 -26.6666666667% 0 auto;
  }
}

@media screen and (min-width: 1920px) {
  .news_area {
    width: calc(100% + 500px);
    margin: 0 -66.6666666667% 0 auto;
  }
}

.news_list {
  width: 90%;
  clear: left;
}

@media screen and (min-width: 1240px) {
  .news_list {
    width: 87%;
  }
}

@media screen and (min-width: 1920px) {
  .news_list {
    width: 64%;
  }
}

.news_list li.news_item {
  opacity: 1;
  position: relative;
  margin-top: 2rem;
  padding-top: 2rem;
}

@media screen and (max-width: 767px) {
  .news_list li.news_item {
    margin-bottom: 4rem !important;
  }
}

.news_list li.news_item.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  display: none;
}

.news_list li.news_item::before {
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1rem;
  background: url(../images/dotted.png) no-repeat center left/contain;
  top: 0;
}

.news .list-btn.is-btn-hidden {
  display: none;
}

.news .date {
  font-family: "Bungee", sans-serif;
  color: #096cb3;
  font-size: 3rem;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .news .date {
    font-size: 2.2rem;
  }
}

.news .m1 span:nth-child(5),
.news .m1 span:nth-child(7) {
  color: #d90b2d;
}

.news .m2 span:nth-child(5),
.news .m2 span:nth-child(8) {
  color: #d90b2d;
}

@media screen and (max-width: 767px) {
  .news p {
    font-size: 3rem;
    line-height: 1.7;
  }
}

.news p a {
  display: inline;
  border-bottom: 1px solid #d90b2d;
}

.news a.more {
  width: 80%;
  margin-top: -10rem;
  margin-right: 0;
  margin-left: auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media screen and (min-width: 768px) {
  .news a.more {
    max-width: 36rem;
    margin-top: -3rem;
  }
}

.news::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  padding-top: calc(446 / 750 * 100%);
  z-index: 20;
  bottom: calc(120 / 750 * 100% * -1);
  left: 0;
  background: url(../images/deco_program_top.svg) no-repeat bottom right/contain;
}

@media screen and (min-width: 768px) {
  .news::after {
    width: 63rem;
    height: 34rem;
    background: url(../images/deco_02.svg) no-repeat bottom left/contain;
    bottom: 0;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .news .deco_l {
    position: absolute;
    top: 12rem;
    left: 0;
    width: calc(160 / 1920 * 100%);
    height: 100%;
    background: #096cb3;
    z-index: 10;
  }

  .news::before {
    content: "";
    display: block;
    position: absolute;
    width: 42rem;
    height: 42rem;
    z-index: 20;
    bottom: -24rem;
    right: 0;
    background: url(../images/deco_03.svg) no-repeat center right/contain;
  }
}

.bana ul li .movie_thumbnail {
  position: relative;

}

/* =====================================================================
    program
======================================================================*/
.program {
  padding: 34rem 0 8rem !important;
  position: relative;
}

@media screen and (min-width: 768px) {
  .program {
    padding: 16rem 0 8rem !important;
  }
}

.program_inner {
  position: relative;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .program_inner {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .program_inner h2.ttl {
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 1240px) {
  .program_inner {
    max-width: 1240px;
  }
}

@media screen and (min-width: 1920px) {
  .program_inner {
    max-width: 1240px;
  }
}

.program_block {
  box-sizing: border-box;
  max-width: 1200px;
  padding: 10rem 3rem;
  border-radius: 0 4rem 4rem 0;
  text-align: center;
  margin: 0 auto 8rem;
  position: relative;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .program_block {
    width: 90%;
    margin: 0 10% 10rem 0;
  }
}

@media screen and (min-width: 768px) {
  .program_block {
    width: 80%;
    padding: 6rem 12rem;
    border-radius: 4rem;
    margin-right: -10%;
  }
}

@media screen and (min-width: 1240px) {
  .program_block {
    width: 86.6666666667%;
    margin-right: -13.3333333333%;
  }
}

@media screen and (max-width: 767px) {
  .program_block:nth-child(odd) {
    margin: 0 0 8rem 10%;
    border-radius: 4rem 0 0 4rem;
  }

  .program_block:nth-child(odd) .btnArea {
    margin-left: 3rem;
    margin-right: -3rem;
  }

  .program_block:nth-child(odd) a.btn {
    border-radius: 10rem 0 0 10rem;
  }
}

@media screen and (min-width: 768px) {
  .program_block:nth-child(odd) {
    border-radius: 4rem;
    margin-right: auto;
    margin-left: -10%;
  }
}

.program_block .onAir {
  display: block;
  text-align: center;
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  position: relative;
  padding: 0 3rem;
  margin: 3rem auto;
}

.program_block .attention {
  display: block;
  font-size: 1em;
  padding: 0.5em 0 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .program_block .onAir {
    display: block;
    font-size: 2.4rem;
  }
}

.program_block .onAir span.fontL {
  font-size: 140%;
}

.program_block .onAir span.fontEn {
  font-size: 150%;
}

.program_block .onAir::before,
.program_block .onAir::after {
  content: "";
  display: block;
  position: absolute;
  width: 1rem;
  height: 100%;
  background: url(../images/dotted02_sp.svg) no-repeat center center/contain;
  top: 0;
}

@media screen and (min-width: 768px) {
  .program_block .onAir::before,
  .program_block .onAir::after {
    height: 3.5rem;
    background: url(../images/dotted02.png) no-repeat center center/contain;
    top: calc(50% - 1.5rem);
  }
}

.program_block .onAir::before {
  left: 0;
}

.program_block .onAir::after {
  right: 0;
}

.program_block .logo {
  margin: 0 auto 3rem;
}

@media screen and (max-width: 767px) {
  .program_block .logo {
    width: 70%;
  }
}

.program_block .l01 {
  max-width: 700px;
}

.program_block .l02 {
  max-width: 500px;
}

.program_block .movie_thumbnail {
  width: 64rem;
  margin: 6rem 0 4rem 4%;
  border-radius: 3rem;
  box-shadow: 0 16px 16px rgba(0, 0, 0, 0.05);
  position: relative;
}

.program_block .movie_thumbnail img {
  border-radius: 3rem;
}

@media screen and (min-width: 768px) {
  .program_block .movie_thumbnail {
    width: 70%;
    margin: 3rem auto 4rem;
  }
}

.program_block:nth-child(odd) .movie_thumbnail {
  margin: 6rem 0 4rem -10%;
}

@media screen and (min-width: 768px) {
  .program_block:nth-child(odd) .movie_thumbnail {
    margin: 3rem auto 4rem;
  }
}

.program_block p {
  text-align: left;
  width: 80%;
  margin: auto;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .program_block p {
    width: 100%;
  }
}

.program_block .chara {
  width: calc(290 / 750 * 100%);
  aspect-ratio: 289/345;
  background: url(../images/illust_02_sp.png) no-repeat bottom left/contain;
  position: absolute;
  top: -27rem;
  left: calc(100 / 750 * 100% * -1);
}

@media screen and (min-width: 768px) {
  .program_block .chara {
    width: calc(260 / 1240 * 100%);
    aspect-ratio: 253/188;
    background: url(../images/illust_02.png) no-repeat top center/contain;
    top: inherit;
    left: 0;
    bottom: 100%;
  }
}

@media screen and (max-width: 767px) {
  .program .btnArea {
    margin-top: 5rem;
    margin-left: -3rem;
    display: flex;
    flex-wrap: wrap;
  }

  .program .btnArea li {
    width: 100%;
    margin: 0 auto auto;
  }

  .program .btnArea li:not(:last-child) {
    margin-bottom: 4rem;
  }

  .program .btnArea li:last-child {
    margin-bottom: -13rem;
  }

  .program .btnArea li a {
    margin: 0;
    border-radius: 0 10rem 10rem 0;
  }
}

@media screen and (min-width: 768px) {
  .program .btnArea {
    margin-top: 3rem;
    margin-right: -3rem;
    display: flex;
    justify-content: flex-end;
    flex-direction: reverse;
    margin-right: -12rem;
  }

  .program .btnArea li {
    width: 32rem;
    margin-left: 2rem;
  }

  .program .btnArea li:last-child a {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

@media screen and (max-width: 767px) {
  .program::after {
    /* 右　半円青 */
    content: "";
    display: block;
    position: absolute;
    width: 100rem;
    height: 50rem;
    background: #096cb3;
    top: 50%;
    left: -25rem;
    border-radius: 50%/100% 100% 0 0;
    transform: rotate(90deg);
    z-index: 0;
  }
}

@media screen and (min-width: 768px) {
  .program::after {
    background: url(../images/deco_04.svg) no-repeat center center/contain;
    content: "";
    display: block;
    position: absolute;
    width: calc(690 / 1920 * 100%);
    height: 60rem;
    top: calc(50% - 22rem);
    left: 55%;
    z-index: 0;
  }
}

.program .deco_b {
  position: absolute;
  bottom: -1px;
  right: 0;
  width: calc(620 / 1920 * 100%);
  height: 28rem;
  background: url(../images/deco_05.svg) no-repeat top right/contain;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .program::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(160 / 1920 * 100%);
    height: 40%;
    background: #096cb3 url(../images/deco_corner02.svg) no-repeat bottom right/contain;
    z-index: 10;
  }
}

/* =====================================================================
    goods
======================================================================*/
.goods {
  position: relative;
  padding: 0 0 24rem 0 !important;
}

@media screen and (min-width: 768px) {
  .goods {
    padding: 3rem 0 0 0 !important;
  }
}

.goods::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 16rem;
  background: url(../images/deco_goods_top.png) no-repeat left top/contain;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .goods::before {
    left: 0;
    top: 3rem;
    width: calc(160 / 1920 * 100%);
    height: 45%;
    background: #096cb3 url(../images/deco_corner03.svg) no-repeat right bottom/contain;
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .goods::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(620 / 1920 * 100%);
    height: 35rem;
    background: url(../images/deco_02.svg) no-repeat left bottom/contain;
    z-index: 10;
  }
}

.goods_inner {
  padding: 26rem 0 0 0;
  border-radius: 0 0 20rem 0;
}

@media screen and (min-width: 768px) {
  .goods_inner {
    padding: 20rem 0 16rem 0;
    border-radius: 0 17rem 17rem 0;
  }
}

@media screen and (min-width: 768px) {
  .goods h2.ttl {
    width: 80%;
    max-width: 1240px;
    margin: 0 auto 4rem auto;
  }
}

.goods h2.ttl::before {
  content: "";
  display: block;
  position: absolute;
  left: -102rem;
  top: -10rem;
  width: 100rem;
  height: 32rem;
  background: #d90b2d;
  border-radius: 0 16rem 16rem 0;
  z-index: 20;
}

.goods_block {
  width: 100%;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .goods_block {
    width: calc(1355 / 1920 * 100%);
    margin: 0 4rem 0 auto !important;
  }
}

.goods_list {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.goods_list>li {
  position: relative;
  width: calc(50% - 2rem);
  margin-left: 4rem;
  margin-bottom: 7rem;
}

@media screen and (min-width: 768px) {
  .goods_list>li {
    width: calc((100% - 7.5rem) / 4);
    margin-left: 2.5rem !important;
  }
}

.goods_list>li:nth-child(2n+1) {
  margin-left: 0;
}

.goods_list>li:nth-child(4n+1) {
  margin-left: 0 !important;
}

.goods_list>li.new::after {
  content: "";
  display: block;
  position: absolute;
  left: -1.6rem;
  top: -1.6rem;
  width: 32.5%;
  aspect-ratio: 1/1;
  background: url(../images/icon_new.png) no-repeat left top/contain;
}

@media screen and (min-width: 768px) {
  .goods_list>li.new::after {
    left: -7.5%;
    top: -7.5%;
  }
}

.goods_list>li a {
  display: block;
}

.goods_list>li figure {
  width: 100%;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.1);
}

.goods_list>li h4 {
  position: relative;
  padding: 1rem 0 2rem;
  color: #096cb3;
  font-size: 3rem;
}

@media screen and (min-width: 768px) {
  .goods_list>li h4 {
    font-size: 2.4rem;
  }
}

.goods_list>li h4::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6rem;
  height: 1rem;
  background: url(../images/dotted06.png) no-repeat center left/contain;
}

@media screen and (min-width: 768px) {
  .goods_list>li h4::after {
    width: 3rem;
  }
}

.goods a.btn {
  width: 80%;
  margin: -1rem auto 0 0;
  border-radius: 0 7rem 7rem 0;
  transform: translateY(6rem);
}

@media screen and (min-width: 768px) {
  .goods a.btn {
    width: 90%;
    max-width: 38rem;
    margin: 0 auto;
    border-radius: 5rem;
    transform: none;
  }
}

.shop {
  padding: 5em 1em;
  line-height: 1.6;
  font-size: 3rem;
  text-align: center;
  color: #096cb3;
}

.shop h3 {
  text-align: center;
  color: #096cb3;
  font-size: 5rem;
  padding-bottom: 0.5em;
}

.shop h4 {
  text-align: center;
  color: #d90b2d;
  font-size: 4rem;
  padding-bottom: 0.5em;
}

.goods span {
  font-size: 80%;
}

.shop a {
  color: #096cb3;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .shop {
    padding: 3em 2em 0;
    font-size: 2rem;
  }

  .shop h3 {
    font-size: 4rem;
  }

  .shop h4 {
    font-size: 3rem;
  }
}

/* =====================================================================
    report
======================================================================*/
.report {
  position: relative;
  padding: 0 0 24rem 0 !important;
}

@media screen and (min-width: 768px) {
  .report {
    padding: 3rem 0 0 0 !important;
  }
}

.report::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 16rem;
  background: url(../images/deco_report_top.png) no-repeat left top/contain;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .report::before {
    left: 0;
    top: 3rem;
    width: calc(160 / 1920 * 100%);
    height: 45%;
    background: #096cb3 url(../images/deco_corner03.svg) no-repeat right bottom/contain;
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .report::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(620 / 1920 * 100%);
    height: 35rem;
    background: url(../images/deco_02.svg) no-repeat left bottom/contain;
    z-index: 10;
  }
}

.report_inner {
  padding: 26rem 0 0 0;
  border-radius: 0 0 20rem 0;
}

@media screen and (min-width: 768px) {
  .report_inner {
    padding: 20rem 0 16rem 0;
    border-radius: 0 17rem 17rem 0;
  }
}

@media screen and (min-width: 768px) {
  .report h2.ttl {
    width: 80%;
    max-width: 1240px;
    margin: 0 auto 4rem auto;
  }
}

.report h2.ttl::before {
  content: "";
  display: block;
  position: absolute;
  left: -102rem;
  top: -10rem;
  width: 100rem;
  height: 32rem;
  background: #d90b2d;
  border-radius: 0 16rem 16rem 0;
  z-index: 20;
}

.report_block {
  width: 100%;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .report_block {
    width: calc(1355 / 1920 * 100%);
    margin: 0 4rem 0 auto !important;
  }
}

.report_list {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.report_list>li {
  position: relative;
  width: calc(50% - 2rem);
  margin-left: 4rem;
  margin-bottom: 5rem;
}

@media screen and (min-width: 768px) {
  .report_list>li {
    width: calc((100% - 7.5rem) / 3);
    margin-left: 2.5rem !important;
  }
}

.report_list>li:nth-child(2n+1) {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .report_list>li:nth-child(3n+1) {
    margin-left: 0 !important;
  }
}

.report_list>li.new::after {
  content: "";
  display: block;
  position: absolute;
  left: -1.6rem;
  top: -1.6rem;
  width: 32.5%;
  aspect-ratio: 1/1;
  background: url(../images/icon_new.png) no-repeat left top/contain;
}

@media screen and (min-width: 768px) {
  .report_list>li.new::after {
    left: -7.5%;
    top: -7.5%;
  }
}

.report_list>li a {
  display: block;
}

.report_list>li figure {
  width: 100%;
  overflow: hidden;
}

.report_list>li h4 {
  position: relative;
  padding: 1rem 0 2rem;
  color: #096cb3;
  font-size: 3rem;
}

@media screen and (min-width: 768px) {
  .report_list>li h4 {
    font-size: 2.4rem;
  }
}

.report_list>li h4::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6rem;
  height: 1rem;
  background: url(../images/dotted06.png) no-repeat center left/contain;
}

@media screen and (min-width: 768px) {
  .report_list>li h4::after {
    width: 3rem;
  }
}

.report a.btn {
  width: 80%;
  margin: -1rem auto 0 0;
  border-radius: 0 7rem 7rem 0;
  transform: translateY(6rem);
}

@media screen and (min-width: 768px) {
  .report a.btn {
    width: 90%;
    max-width: 38rem;
    margin: 0 auto;
    border-radius: 5rem;
    transform: none;
  }
}

.report span {
  font-size: 80%;
}

/* =====================================================================
    sustainability / special
======================================================================*/
.sustainability_inner,
.special_inner {
  padding: 16rem 0;
}

@media screen and (min-width: 768px) {

  .sustainability_inner,
  .special_inner {
    border-radius: 17rem;
  }
}

.sustainability_list,
.special_list {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.sustainability_list li,
.special_list li {
  margin-bottom: 7rem;
  width: calc(50% - 2rem);
}

@media screen and (max-width: 767px) {

  .sustainability_list li:not(:nth-child(2n)),
  .special_list li:not(:nth-child(2n)) {
    margin-right: 4rem;
  }
}

.sustainability_list li figure,
.special_list li figure {
  position: relative;
}

.sustainability_list li figure a,
.special_list li figure a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.sustainability_list li figure img,
.special_list li figure img {
  border-radius: 2rem;
}

.sustainability_list li h4,
.special_list li h4 {
  color: #ffaa14;
  font-size: 3rem;
  padding: 1rem 0 2rem;
  margin-bottom: 1rem;
  position: relative;
}

@media screen and (min-width: 768px) {

  .sustainability_list li h4,
  .special_list li h4 {
    font-size: 2.4rem;
  }
}

.sustainability_list li h4::after,
.special_list li h4::after {
  content: "";
  display: block;
  position: absolute;
  width: 6rem;
  height: 1rem;
  background: url(../images/dotted04.png) no-repeat center left/contain;
  bottom: 0;
}

@media screen and (min-width: 768px) {

  .sustainability_list li h4::after,
  .special_list li h4::after {
    width: 3rem;
  }
}

.sustainability_list li p,
.special_list li p {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {

  .sustainability_list li p,
  .special_list li p {
    font-size: 2.2rem;
  }
}

.sustainability_list li span.update,
.special_list li span.update {
  display: block;
  color: #666;
  font-weight: 500;
  padding: 1rem 0 0 0;
}

.sustainability a.btn,
.sustainability a.more,
.special a.btn,
.special a.more {
  width: 90%;
}

@media screen and (min-width: 768px) {

  .sustainability a.btn,
  .sustainability a.more,
  .special a.btn,
  .special a.more {
    max-width: 36rem;
  }
}

.sustainability {
  position: relative;
}

@media screen and (min-width: 768px) {
  .sustainability {
    padding-top: 12rem !important;
  }
}

.sustainability_inner {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .sustainability_inner {
    padding-bottom: calc(580 / 750 * 100%) !important;
  }
}

.sustainability h2 {
  width: calc(520 / 750 * 100%);
  position: relative;
  text-align: center;
  margin: auto;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .sustainability h2 {
    width: 100%;
    padding-left: 3rem;
    width: calc(510 / 1920 * 100%);
    margin: 0;
  }
}

.sustainability h2::before {
  /*黄色ボール背景*/
  content: "";
  display: block;
  position: absolute;
  top: -25rem;
  left: calc(50% - 50rem);
  width: 100rem;
  padding-top: calc(1300 / 750 * 100%);
  background: #ffaa14;
  z-index: 1;
  border-radius: 0 0 50% 50%;
}

@media screen and (min-width: 768px) {
  .sustainability h2::before {
    top: 0;
    left: 0;
    width: 153.8461538462%;
    padding-top: 153.8461538462%;
    border-radius: 50%;
    margin: -57.6923076923% 0 0 -30.7692307692%;
  }
}

.sustainability h2::after {
  /*イラスト*/
  content: "";
  display: block;
  position: absolute;
  width: 96.1538461538%;
  padding-top: 73.0769230769%;
  background: url(../images/illust_04.png) no-repeat bottom center/contain;
  z-index: 10;
  margin: calc(200 / 750 * 100%) auto 4rem;
}

@media screen and (min-width: 768px) {
  .sustainability h2::after {
    top: 0;
    left: 0;
    width: 76.9230769231%;
    padding-top: 53.8461538462%;
    margin-top: 50%;
    margin-left: 11.5384615385%;
  }
}

@media screen and (min-width: 768px) {
  .sustainability_block {
    width: calc(1355 / 1920 * 100%);
    margin: -12rem 4rem 0 auto !important;
  }
}

@media screen and (max-width: 767px) {
  .sustainability_list {
    margin-top: calc(400 / 750 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .sustainability_list li {
    width: calc((100% - 9rem) / 3);
  }

  .sustainability_list li:not(:nth-child(3n)) {
    margin-right: 4.5rem;
  }
}

.sustainability_list li figure {
  position: relative;
  padding-top: 63.855%;
}

.sustainability_list li figure a {
  z-index: 10;
}

.sustainability_list li figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 5;
}

.sustainability .read {
  width: 90%;
  margin: 0 auto 6rem;
  max-width: 80rem;
}

@media screen and (min-width: 1240px) {
  .sustainability .read {
    max-width: 60rem;
  }
}

@media screen and (max-width: 767px) {
  .sustainability .read {
    margin-top: calc(400 / 750 * 100%);
    display: none;
  }
}

.sustainability .read p {
  font-weight: 500;
  line-height: 1.8;
}

.sustainability h3 {
  padding-bottom: 3.5rem;
  position: relative;
  margin-bottom: 3.5rem;
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .sustainability h3 {
    color: #fff !important;
    text-align: center;
    padding-top: 3.5rem;
    margin-top: 3rem;
  }
}

.sustainability h3::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  background: url(../images/dotted03.png) no-repeat center center/contain;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .sustainability h3::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1rem;
    background-position: center left;
    background-repeat: repeat-x;
  }
}

.sustainability a.btn {
  background: #ffaa14;
}

.sustainability::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .sustainability::before {
    bottom: -10rem;
    left: 0;
    background: url(../images/deco_special_top.svg) no-repeat bottom left/contain;
    width: 100%;
    padding-top: calc(700 / 750 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .sustainability::before {
    bottom: 0;
    left: 0;
    width: calc(620 / 1920 * 100%);
    height: 35rem;
    background: url(../images/deco_06.svg) no-repeat bottom left/contain;
  }
}

.sustainability::after {
  content: "";
  display: block;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .sustainability::after {
    /* SP サステナブルトップ*/
    top: 0;
    left: 0;
    width: 100%;
    height: 20rem;
    background: url(../images/deco_sustainability_top.png) no-repeat top left/contain;
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .sustainability::after {
    /* PC 右下の赤背景*/
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: #d90b2d;
    z-index: 0;
  }
}

/* =====================================================================
    special
======================================================================*/
.special {
  position: relative;
}

@media screen and (min-width: 768px) {
  .special {
    padding-top: 8rem !important;
  }
}

.special h2 {
  text-align: center;
  margin: 0 auto 8rem;
  color: #d90b2d;
}

.special h2 span {
  color: #096cb3;
}

.special_inner {
  position: relative;
}

@media screen and (max-width: 767px) {
  .special_inner {
    padding-bottom: 48rem !important;
  }
}

.special_inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 44rem;
  height: 11rem;
  background: url(../images/illust_05.png) no-repeat bottom center/contain;
  bottom: -0.8rem;
  left: calc(50% - 22rem);
  z-index: 20;
}

.special_list {
  width: 90%;
  max-width: none;
}

.special_list li {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .special_list li {
    width: calc((100% - 13.5rem) / 4);
  }

  .special_list li:not(:nth-child(4n)) {
    margin-right: 4.5rem;
  }
}

.special_list li h4 {
  color: #096cb3;
}

.special_list li h4::after {
  background: url(../images/dotted.png) no-repeat center left/contain;
}

.special_list li.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  display: none;
}

.special .list-btn.is-btn-hidden {
  display: none;
}

@media screen and (max-width: 767px) {
  .special::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    padding-top: calc(460 / 750 * 100%);
    background: url(../images/deco_footer_top.svg) no-repeat bottom left/contain;
    z-index: 1;
  }
}

/* =====================================================================
    footer
======================================================================*/
.contents_footer {
  position: relative;
  padding-bottom: 8rem !important;
}

.contents_footer .bnr {
  width: 90%;
  max-width: 80rem;
  margin: 4rem auto 7rem;
}

.contents_footer .count {
  text-align: center;
}

.contents_footer .count_box {
  display: flex;
  justify-content: center;
  align-items: end;
}

.contents_footer .count p {
  color: #fff;
  line-height: 1;
  padding: 0 1rem;
}

.contents_footer .count .kaimaku {
  display: inline-block;
  position: relative;
  padding: 1rem 10rem;
  font-size: 5rem;
}

@media screen and (min-width: 768px) {
  .contents_footer .count .kaimaku {
    font-size: 3.75rem;
    padding: 1rem 8rem;
  }
}

.contents_footer .count .kaimaku::before,
.contents_footer .count .kaimaku::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 1rem;
  width: 5rem;
  height: 5rem;
  background: url(../images/dotted05.svg) no-repeat center center/contain;
  z-index: 10;
}

@media screen and (min-width: 768px) {

  .contents_footer .count .kaimaku::before,
  .contents_footer .count .kaimaku::after {
    bottom: 0.5rem;
    width: 3.6rem;
    height: 4.5rem;
  }
}

.contents_footer .count .kaimaku::before {
  left: 0;
}

.contents_footer .count .kaimaku::after {
  right: 0;
  transform: scale(-1, 1);
}

.contents_footer .count .ato {
  font-size: 8rem;
  display: 8rem;
}

@media screen and (min-width: 768px) {
  .contents_footer .count .ato {
    font-size: 6rem;
    display: 6rem;
  }
}

.contents_footer .count .count_num {
  font-size: 24rem;
  margin-bottom: -3rem;
}

@media screen and (min-width: 768px) {
  .contents_footer .count .count_num {
    font-size: 22.5rem;
  }
}

.contents_footer .count .day {
  font-size: 8rem;
}

@media screen and (min-width: 768px) {
  .contents_footer .count .day {
    font-size: 6rem;
  }
}

@media screen and (min-width: 768px) {
  .contents_footer::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(560 / 1920 * 100%);
    height: 34rem;
    background: url(../images/deco_footer_l.svg) no-repeat bottom left/contain;
    z-index: 10;
  }

  .contents_footer::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(620 / 1920 * 100%);
    height: 34rem;
    background: url(../images/deco_footer_r.svg) no-repeat bottom right/contain;
    z-index: 10;
  }
}

.modaal-overlay {
  background: #ebeff2 url(../images/deco_05.svg) no-repeat bottom right !important;
  background-size: 80%;
}

@media screen and (min-width: 768px) {
  .modaal-overlay {
    background-size: 50% !important;
  }
}

.modaal-video-container {
  background: #d90b2d;
  border: 4rem solid #d90b2d;
  border-radius: 3rem;
}

/* =====================================================================
    popup
======================================================================*/
.popup {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(248, 245, 242, 0.95);
  z-index: 1000;
}

.popup_area {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1010;
}

.popup_bg {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 1020;
  cursor: pointer;
}

.popup_inner {
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 5rem;
  z-index: 1030;
}

.popup_list>li {
  display: none;
}

.popup_movie_embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.popup_movie_embed iframe {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.popup_close2 {
  position: relative;
  width: 86.1538461538%;
  margin: 5rem auto 0 auto;
  color: #ffffff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 3.2rem;
  line-height: 5.4rem;
  text-align: center;
  border: 0.3rem solid #ea4a4c;
  border-radius: 6rem;
  background-color: #ea4a4c;
  transition: 0.3s ease;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .popup_close2 {
    width: 40%;
    font-size: 2.6rem;
    line-height: 4.4rem;
    border-radius: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .popup_close2:hover {
    color: #ea4a4c;
    background-color: transparent;
  }
}

/* =====================================================================
    report
======================================================================*/

.expo_header {
  background: #fff;
  text-align: center;
  width: 100vw;
}

.expo_header>a>img {
  width: 90%;
  margin: 5em auto;
}

.report_main {
  background: #d90b2d;
}

.report_main_inner {
  background: #fff;
  margin: 0 2em 5em;
  padding: 2em;
  border-radius: 4rem;
  font-style: normal;
}

.report_main_inner>h1 {
  display: block;
  position: relative;
  font-size: 2em;
  color: #096cb3;
  padding-bottom: 1em;
  margin-bottom: 1em;
  ;
}

.report_main_inner>h1::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  background: url(../images/dotted03.png) no-repeat center center/contain;
  z-index: 1;
}

.report_date {
  color: #d90b2d;
  padding-bottom: 1em;
  text-align: right;
}

.report_txt {
  font-size: 3rem;
}

.report_txt>h2 {
  display: block;
  position: relative;
  font-size: 1.4em;
  color: #d90b2d;
  padding: 1em 0 0.5em;
}

.report_txt>h3 {
  display: block;
  position: relative;
  font-size: 1.4em;
  color: #096cb3;
  padding: 1em 0 0.5em;
  text-align: center;
}

.report_txt>strong {
  color: #096cb3;
}

.report_txt>a {
  color: #d90b2d;
  text-decoration: underline;
}

.report_txt>figure {
  padding-bottom: 1em;
}

.yt_short iframe {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .report_main_inner>h1::after {
    height: 1rem;
  }

  .expo_header>a>img {
    width: 50%;
    max-width: 315px;
  }

  .report_main_inner {
    max-width: 1000px;
    padding: 2.6em;
    margin: 0 auto 5em;
  }

  .report_main_inner>h1 {
    font-size: 1.8em;
  }

  .report_txt {
    font-size: 1.8rem;
  }

  .yt_short iframe {
    width: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}

.report_list p {
  color: #d90b2d;
  padding-top: 1em;
  font-size: 0.9em;
}

.image-container {
  width: 100%;
  padding-top: 100%;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================================
    2024-10 追加
======================================================================*/

.top_count {
  text-align: center;
  padding: 1em 0;
  margin-bottom: 0.8em;
  background-color: #ebeff2;
  color: #096cb3;
  border-radius: 100px;
}

.top_count .count_num,.top_count .count_num1,.top_count .count_num2 {
  font-size: 150%;
  padding: 0;
  color: #d90b2d;
}

.bana ul {
  position: relative;
  z-index: 100;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.bana li {
  width: calc(50% - 0.5em);
  padding-bottom: 2em;
}
.bana li strong {
  color: #d90b2d;
}

.bana figure {
  border: #ffffff 4px solid;
  margin-bottom: 0.5em;
}

.bana li .new {
  position: absolute;
  width: 3em;
  top: -1em;
  left: -1em;
}

@media screen and (min-width: 1900px) {
  .bana ul {
    width: 68%;
  }
}

/* =====================================================================
    Report UNIT04
======================================================================*/

.report_list li.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  display: none;
}

.report_list .list-btn.is-btn-hidden {
  display: none;
}

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