@charset "utf-8";

/*-------------------------------------------------------
個別CSS：共通パーツ
------------------
親要素（モジュール）：「.yyy」
親要素（モジュール）内のパーツ：「.yyy__zzz」
-------------------------------------------------------*/
.spBreak {
  display: none;
}
.linkBtn {
  width: fit-content;
  font-size: 24px;
  font-weight: bold;
}
.linkBtn.s_center {
  margin: 0 auto;
}
.linkBtn__link {
  display: block;
  width: 100%;
  transition: 0.3s;
}
.linkBtn__link::after {
  content: '';
  width: 2.9em;
  height: 2.9em;
  margin-left: 1em;
  display: inline-block;
  vertical-align: middle;
  background-image: url("/img/icon_linkBtn_01.svg"), url("/img/icon_linkBtn_01_hover.svg");
  background-position: 0 0, 0 0;
  background-size: contain ,0 0;
  background-repeat: no-repeat, no-repeat;
  transition: 0.3s;
}
.linkBtn02 {
  width: fit-content;
}
.linkBtn02 .linkBtn02__link {
  width: fit-content;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}
.linkBtn02 .linkBtn02__link::after {
  content: '';
  width: 1.5em;
  height: 1.5em;
  margin-left: 1em;
  display: inline-block;
  vertical-align: middle;
  background-image: url("/img/icon_linkBtn_02.svg"), url("/img/icon_linkBtn_02_hover.svg");
  background-position: 0 0, 0 0;
  background-size: contain ,0 0;
  background-repeat: no-repeat, no-repeat;
  transition: 0.3s;
}
.slideNavigators {
  width: 70%;
  margin: 60px auto 0;
  padding: 0 50px;
  position: relative;
}
.slideIndicator {
  display: flex;
}
.slideIndicator li {
  flex: 1;
  height: 2px;
  background-color: #E6E6E6;
}
.slideIndicator li.slick-active {
  background-color: #00A0E9;
}
.slideIndicator li button {
  text-indent: -9999px;
}
.slidePrevBtn,
.slideNextBtn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin: auto 0;
  z-index: 1;
}
.slidePrevBtn::before,
.slideNextBtn::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/icon_slideArrow_01.svg"), url("/assets/img/icon_slideArrow_01_hover.svg");
  background-position: 0 0, 0 0;
  background-size: contain ,0 0;
  background-repeat: no-repeat, no-repeat;
}
.slidePrevBtn {
  left: 0;
}
.slideNextBtn {
  right: 0;
  transform: scale(-1,1);
}
@media (hover: hover) and (pointer: fine) {
  .linkBtn__link:hover {
    text-decoration: underline;
  }
  .linkBtn__link:hover::after {
    background-image: url("/img/icon_linkBtn_01_hover.svg");
  }
  .linkBtn02 .linkBtn02__link:hover {
    color: #00A0E9;
    text-decoration: underline;
  }
  .linkBtn02 .linkBtn02__link:hover:after {
    background-image: url("/img/icon_linkBtn_02_hover.svg");
  }
  .slidePrevBtn:hover {
    background-image: url("/img/icon_slideArrow_01_hover.svg");
  }
  .slideNextBtn:hover {
    background-image: url("/img/icon_slideArrow_02_hover.svg");
  }
  .slidePrevBtn::before,
  .slideNextBtn::before {
    transition: var(--transition-time);
  }
  .slidePrevBtn:hover::before,
  .slideNextBtn:hover::before {
    background-image: url("/assets/img/icon_slideArrow_01_hover.svg");
  }
}
@media screen and (max-width: 767px){
  .pcBreak {
    display: none;
  }
  .spBreak {
    display: block;
  }
  .linkBtn {
    font-size: 18px;
  }
  .linkBtn02 {
    font-size: 14px;
  }
  .slideNavigators {
    width: 80%;
    margin-top: 30px;
    padding: 0;
  }
}

/*-------------------------------------------------------
個別CSS：エリア毎
------------------
エリア：「.aaaArea」
エリア内の親要素（モジュール）：「.aaaArea_yyy」
エリア内の親要素（モジュール）内のパーツ：「.aaaArea_yyy__zzz」
-------------------------------------------------------*/
/* blueBgArea
------------------------*/
.blueBgArea {
  padding: 40px 0 110px;
  background: rgb(126,143,245);
  background: linear-gradient(220deg, rgba(126,143,245,1) 41%, rgba(0,158,231,1) 100%);
  color: #fff;
}
@media screen and (max-width: 767px){
  .blueBgArea {
    padding: 15px 0 80px;
  }
}

/* mvArea
------------------------*/
.mvArea {
  position: relative;
  max-width: 1920px;
  margin: 0 auto 20px;
  padding: 0 40px;
}
.mvArea_slide__item {
  border-radius: 4.16vw;
  overflow: hidden;
}
.mvArea_slide__link {
  transition: 0.3s;
}
.mvArea_slide__navigator {
  margin-top: 20px;
  display: flex;
  column-gap: 6px;
  align-items: center;
  justify-content: center;
}
.mvArea_slide__navigatorDots {
  width: fit-content;
  padding: 0 5px;
  display: flex;
  column-gap: 10px;
  order: 2;
}
.mvArea_slide__navigatorDots li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.36;
}
.mvArea_slide__navigatorDots li.slick-active{
  background-color: #fff;
  opacity: 1;
}
.mvArea_slide__navigatorDots li button {
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none
}
.mvArea_slide__playerBtn {
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 4px;
  background-image: url("/img/icon_slideStop.svg");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  order: 3;
}
.mvArea_slide__playerBtn.s_active {
  background-image: url("/img/icon_slidePlay.svg");
}
.mvArea_slide__nextBtn {
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 4px;
  background-image: url("/img/icon_slidePlay.svg");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  order: 3;
}
.mvArea_slide__prevBtn {
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 4px;
  background-image: url("/img/icon_slidePlay.svg");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
}
@media (hover: hover) and (pointer: fine){
  .mvArea_slide__link:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px){
  .mvArea {
    padding: 0 15px;
  }
  .mvArea .slick-dotted.slick-slider {
    margin-bottom: 10px;
  }
}

/*importantInfoArea
------------------------*/
.importantInfoArea {
  margin: 40px 15px;
}
.importantInfoArea_inner {
  margin: 0 auto;
  max-width: 1380px;
  color: #000;
}
.importantInfoArea_contentWrap {
  padding: 25px 120px;
}
@media screen and (max-width: 1200px){
  .importantInfoArea_contentWrap {
    padding: 0;
  }
}
@media screen and (max-width: 767px){
  .importantInfoArea {
    margin: 20px 15px;
  }
}

/* latestNewsArea
------------------------*/
.latestNewsArea {
  margin: 0 auto 110px;
  padding: 0 15px;
}
.latestNewsArea_wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 200px;
  position: relative;
  background-color: #fff;
  border-radius: 20px;
}
.latestNewsArea_title {
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 40px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #00a0e9;
}
.latestNewsArea_titleSub {
  margin-bottom: 30px;
  font-weight: 800;
  text-align: center;
  font-size: 20px;
  color: #00a0e9;
}
.latestNewsArea .linkBtn02 {
  position: absolute;
  top: 65px;
  right: 200px;
  color: #000;
}
.latestNewsArea_cardContainer {
  margin-bottom: 40px;
  display: flex;
  position: relative;
  column-gap: 25px;
}
.latestNewsArea_cradSliderBlock {
  color: #000;
}
.latestNewsArea_cradSliderBlock a {
  text-decoration: none;
}
.latestNewsArea_card__inner {
  margin: 0 10px;
  position: relative;
}
.latestNewsArea_card__cardLink {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.latestNewsArea_card__date,
.latestNewsArea_card__description {
  transition: 0.3s;
}
.latestNewsArea_card__thumb {
  width: 100%;
  margin-bottom: 10px;
  transition: 0.3s;
}
.latestNewsArea_card__data {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: min(0.7vw, 13px);
  color: #848484;
}
.latestNewsArea_card__date {
  transition: 0.3s;
}
.latestNewsArea_card__category {
  width: fit-content;
  padding: 6px 10px;
  position: relative;
  display: block;
  border-radius: 999px;
  color: #000;
  line-height: 1;
  z-index: 10;
  transition: 0.3s;
  transition: 0.3s;
}
.latestNewsArea_card__category.s_figure {
  border: 2px solid #25AF76;
}
.latestNewsArea_card__category.s_lottery {
  border: 2px solid #EFC244;
}
.latestNewsArea_card__category.s_pulamode {
  border: 2px solid #BAA1EE;
}
.latestNewsArea_card__category.s_gunpula {
  border: 2px solid #F764EC;
}
.latestNewsArea_card__category.s_prize {
  border: 2px solid #DE3434;
}
.latestNewsArea_card__category.s_others {
  border: 2px solid #CCCCCC;
}
.latestNewsArea_card__description {
  min-height: 5em;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
@media (hover: hover) and (pointer: fine) {
  .latestNewsArea_card__cardLink:hover~.latestNewsArea_card__thumb {
    opacity: 0.6;
  }
  .latestNewsArea_card__cardLink:hover~.latestNewsArea_card__data .latestNewsArea_card__date,
  .latestNewsArea_card__cardLink:hover~.latestNewsArea_card__description {
    color: #00A0E9;
  }
  .latestNewsArea_card__cardLink:hover~.latestNewsArea_card__description {
    text-decoration: underline;
  }
  .latestNewsArea_card__category:hover {
    color: #fff;
  }
  .latestNewsArea_card__category.s_figure:hover {
    background-color: #25AF76;
  }
  .latestNewsArea_card__category.s_lottery:hover {
    background-color: #EFC244;
  }
  .latestNewsArea_card__category.s_pulamode:hover {
    background-color: #BAA1EE;
  }
  .latestNewsArea_card__category.s_gunpula:hover {
    background-color: #F764EC;
  }
  .latestNewsArea_card__category.s_prize:hover {
    background-color: #DE3434;
  }
  .latestNewsArea_card__category.s_others:hover {
    background-color: #CCCCCC;
  }
}
@media screen and (max-width: 1200px){
  .latestNewsArea_wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
  .latestNewsArea .linkBtn02 {
    right: 15px;
  }
  .latestNewsArea_card__data {
    font-size: min(1.08vw, 13px);
  }
  .latestNewsArea_card__category {
    padding: 5px 5px;
  }
}
@media screen and (max-width: 767px){
  .latestNewsArea_wrap {
    padding: 40px 15px;
  }
  .latestNewsArea_cardContainer {
    flex-wrap: wrap;
    gap: 20px 10px;
  }
  .latestNewsArea_title {
    font-size: 26px;
  }
  .latestNewsArea_titleSub {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .latestNewsArea .linkBtn02 {
    margin: 0 0 25px auto;
    position: static;
  }
  .latestNewsArea .linkBtn02 .linkBtn02__link {
    font-size: 14px;
  }
  .latestNewsArea_card__inner {
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;border-bottom: 1px solid #CCCCCC;
  }
  .latestNewsArea_card:nth-of-type(odd) .latestNewsArea_card__inner {
    margin: 0 5px 0 0;
  }
  .latestNewsArea_card:nth-of-type(even) .latestNewsArea_card__inner {
    margin: 0 0 0 5px;
  }
  .latestNewsArea_card:nth-of-type(1) .latestNewsArea_card__inner,
  .latestNewsArea_card:nth-of-type(2) .latestNewsArea_card__inner {
    margin-bottom: 20px;
  }
  .latestNewsArea_card__data {
    margin-bottom: 0;
    order: 2;
    font-size: 12px;
    display: block;
  }
  .latestNewsArea_card__category {
    margin-top: 5px;
    font-size: 10px;
  }
  .latestNewsArea_card__description {
    font-size: 14px;
  }
}

/* aboutArea
------------------------*/
.aboutArea {
  width: 100%;
  margin-bottom:120px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.aboutArea_content {
  max-width: 56%;
  padding: 0 60px 0 15px;
}
.aboutArea_content__title {
  margin-bottom: 25px;
  font-weight: 800;
  font-size: min(3.48vw, 67px);
  line-height: 1.6;
}
html.s_en .aboutArea_content__title {
  font-family: Montserrat;
  font-weight: 800;
  font-style: italic;
}
.aboutArea_content__titleEps {
  font-family: Montserrat;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.04em;
  font-size: 1.94em;
  font-style: italic;
  line-height: 0.86;
}
.aboutArea_content__text {
  font-size: 20px;
  line-height: 2;
}
.aboutArea_content__text:first-of-type {
  margin-bottom: 20px;
}
.aboutArea_imgBlock {
  margin-right: -60px;
}
.aboutArea_imgBlock__img {
  width: 100%;
  border-radius: 8.33vw 0 0 8.33vw;
}
.aboutArea .linkBtn {
  margin-top: 40px;
}
@media screen and (max-width: 1200px){
  .aboutArea {
    align-items: flex-start;
  }
  .aboutArea_content {
    padding-right: 15px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px){
  .aboutArea {
    margin-bottom:120px;
    display: block;
  }
  .aboutArea_content {
    max-width: unset;
    padding: 0 15px;
  }
  .aboutArea_content__title {
    margin-bottom: 30px;
    font-size: max(7vw, 26px);
  }
  .aboutArea .linkBtn {
    margin-bottom: 50px;
  }
  .aboutArea_imgBlock {
    margin: 0 0 0 auto;
    width: 85%;
  }
  .aboutArea_imgBlock__img {
    border-radius: 40px 0 0 40px;
  }

  .aboutArea .m_btnSet {
		margin-bottom: 50px !important;
	}
  .aboutArea .m_btnSet .m_btnSet__item {
		margin-left: 0;
		margin-right: 0;
	}

}

/*imaginationArea
------------------------*/
.imaginationArea {
  margin-bottom: 100px;
  padding: 0 15px;
  /* text-align: center; */
}
.imaginationArea_title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: min(5.2vw, 100px);
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
}
.imaginationArea_titleSub {
  margin-bottom: 40px;
  position: relative;
  font-weight: bold;
  font-size: 36px;
  text-align: center;
}
.imaginationArea_titleSub::after {
  margin: 20px auto 0;
  content: '';
  width: 0.7em;
  height: 0.7em;
  display: block;
  border-radius: 4px;
  background-color: #fff;
}
.imaginationArea_lead {
  margin-bottom: 80px;
  font-size: 20px;
  line-height: 2;
  text-align: center;
}
.imaginationArea_cardList {
  max-width: 1600px;
  margin: 0 auto 40px;
  padding-bottom: 10px;
  display: flex;
  overflow-x: auto;
}
.imaginationArea_card {
  width: calc((100% - 105px) / 4);
  margin-right: 35px;
  padding: 30px 30px 60px;
  position: relative;
  flex: 1 0 auto;
  border-radius: 20px;
  background-color: #F8F6F4;
  color: #000;
  cursor: pointer;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .imaginationArea_card:hover .imaginationArea_card__ToggleText {
    text-decoration: underline;
  }
}
.imaginationArea_card.s_last {
  margin-right: 0;
}
.imaginationArea_card.s_active {
  margin-right: 0;
  border-radius: 20px 0 0 20px;
}
.imaginationArea_card__Thumb {
  margin-bottom: 15px;
  border-radius: 20px;
  aspect-ratio: 314/240;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.imaginationArea_card__Thumb img {
  width: 100%;
}
.imaginationArea_card__Title {
  font-size: min(1.56vw, 30px);
  font-weight: bold;
}
.imaginationArea_card__Title.s_en {
  margin-bottom: 1.6em;
}
.imaginationArea_card__Title.s_cn {
  margin-bottom: 3.2em;
}
.imaginationArea_card__TitleSub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: min(1.14vw, 22px);
  line-height: 1.2;
  color: #00A0E9;
}
.imaginationArea_card__ToggleText {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: min(0.93vw, 18px);
  line-height: 1;
}
.imaginationArea_card__ToggleText::after {
  content: '';
  width: 1.2em;
  height: 1.2em;
  margin-left: 0.5em;
  display: inline-block;
  vertical-align: middle;
  background-image: url("/img/icon_arrow_03.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
.imaginationArea_card__ToggleText.s_active::after {
  transform: rotate(180deg);
}
.imaginationArea_toggleContent {
  max-width: 50%;
  margin-right: 35px;
  padding: 40px 60px 40px 0;
  display: none;
  flex: 1 0 auto;
  border-radius: 0 20px 20px 0;
  background-color: #F8F6F4;
  color: #000;
}
.imaginationArea_toggleContent.s_last {
  margin-right: 0;
}
.imaginationArea_toggleContentWrap {
  width: 100%;
  height: 100%;
  padding-right: 20px;
  opacity: 0;
  overflow-y: auto;
}
.imaginationArea_toggleContentWrap.s_active {
  opacity: 1;
}
.imaginationArea_toggleContentTitile {
  font-weight: bold;
  font-size: 24px;
}
.imaginationArea_toggleContentLead {
  margin-bottom: 20px;
  font-size: 18px;
}
.imaginationArea_cardList__brandBlock {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  column-gap: 30px;
  padding: 20px 30px;
  border-radius: 10px;
  background-color: #fff;
  font-size: 14px;
  word-break: break-all;
}
.imaginationArea_cardList__brandBlockThumb {
  width: 30%;
}
.imaginationArea_cardList__brandBlockTitle {
  margin-bottom: 10px;
  font-size: 18px;
  text-align: left;
}
.imaginationArea_blankLink {
  padding-left: 1.5em;
  position: relative;
  background-image: url("/img/icon_arrow_03.svg");
  background-size: 1em;
  background-position: 0 0.3em;
  background-repeat: no-repeat;
  transition: 0.3s;
  line-height: 1;
}
.imaginationArea_blankLink::after {
  content: '';
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.5em;
  display: inline-block;
  background-image: url("/img/icon_window_01.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (hover: hover) and (pointer: fine){
  .imaginationArea_blankLink:hover {
    color: #00a0e9;
  }
}
@media screen and (max-width: 1200px){
  .imaginationArea_card {
    width: calc((100% - 75px) / 4);
    margin-right: 25px;
    padding: 15px 15px 40px;
  }
  .imaginationArea_card__ToggleText {
    font-size: min(1.33vw, 16px);
  }
  .imaginationArea_card__Title {
    font-size: min(1.83vw, 22px);
  }
  .imaginationArea_card__TitleSub {
    font-size: min(1.5vw, 18px);
  }
  .imaginationArea_toggleContent {
    padding: 15px;
  }
  .imaginationArea_toggleContentTitile {
    font-size: 18px;
  }
  .imaginationArea_toggleContentLead {
    font-size: 16px;
  }
  .imaginationArea_cardList__brandBlockTitle {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px){
  .imaginationArea_title {
    font-size: 40px;
  }
  .imaginationArea_titleSub {
    font-size: 18px;
  }
  .imaginationArea_titleSub::after {
    width: 1em;
    height: 1em;
    display: block;
  }
  .imaginationArea_lead {
    margin-bottom: 40px;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
  }
  .imaginationArea_cardList {
    display: block;
  }
  .imaginationArea_card {
    width: 100%;
    margin: 0 0 10px;
    padding: 15px 15px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 30px;
  }
  .imaginationArea_card.s_last {
    margin-bottom: 0;
  }
  .imaginationArea_card.s_active {
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
  }
  .imaginationArea_card__Thumb {
    width: 38%;
    margin-bottom: 0;
    flex: 0 0 auto;
    aspect-ratio: 132/135;
  }
  .imaginationArea_card__text {
    flex: 1;
  }
  .imaginationArea_card__Title {
    font-size: max(4.8vw, 18px);
  }
  .imaginationArea_card__Title.s_en,
  .imaginationArea_card__Title.s_cn {
    margin-bottom: 0;
  }
  .imaginationArea_card__Title.s_en::after {
    content: '';
      width: 22px;
      height: 22px;
      margin: 10px auto 0;
      display: block;
      background-image: url(/img/icon_arrow_03.svg);
      background-size: contain;
      background-repeat: no-repeat;
      transform: rotate(90deg);
  }
  .imaginationArea_card.s_active .imaginationArea_card__Title.s_en::after {
    transform: rotate(-90deg);
  }
  .imaginationArea_card__Title.s_cn::after {
    content: '';
    width: 22px;
    height: 22px;
    margin: 10px auto 0;
    display: block;
    background-image: url(/img/icon_arrow_03.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(90deg);
  }
  .imaginationArea_card.s_active .imaginationArea_card__Title.s_cn::after {
    transform: rotate(-90deg);
  }
  .imaginationArea_card__TitleSub {
    font-size: 12px;
    font-size: max(3.2vw, 12px);
  }
  .imaginationArea_card__TitleSub::after {
    content: '';
    width: 22px;
    height: 22px;
    margin: 10px auto 0;
    display: block;
    background-image: url("/img/icon_arrow_03.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(90deg);
  }
  .imaginationArea_card.s_active .imaginationArea_card__TitleSub::after {
    transform: rotate(-90deg);
  }
  .imaginationArea_card__ToggleText {
    display: none;
  }
  .imaginationArea_toggleContent {
    max-width: none;
    margin: 0 0 10px;
    padding: 0 15px 20px;
    border-radius: 0 0 20px 20px;
    text-align-last: left;
  }
  .imaginationArea_toggleContentWrap {
    padding-right: 0;
    opacity: 1;
    overflow-y: hidden;
  }
  .imaginationArea_toggleContentLead {
    font-size: 14px;
  }
  .imaginationArea_cardList__brandBlock {
    display: block;
    padding: 15px 20px;
    font-size: 14px;
  }
  .imaginationArea_cardList__brandBlockThumb {
    width: 60%;
    margin: 0 auto 20px;
    display: block;
  }
}

/* infoLinkArea
------------------------*/
.infoLinkArea_cardList {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
  justify-content: center;
}
.infoLinkArea_cardList__container {
  width: calc((100% - 35px) / 2);
}
.infoLinkArea_cardList__container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 35px;
}
.infoLinkArea_cardList__container.s_last {
  width: 100%;
  max-width: 1200px;
}
.infoLinkArea_card {
  width: 100%;
}
.infoLinkArea_card.s_fxItem {
  width: calc((100% - 35px) / 2);
}
.infoLinkArea_card__link {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.infoLinkArea_card__img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  flex: 1;
  transition: 0.3s;
}
.infoLinkArea_card__body {
  min-height: 90px;
  padding: 15px;
  border-radius: 0 0 20px 20px;
  background-color: #fff;
  color: #000;
}
.infoLinkArea_card__title {
  margin-bottom: 10px;
  position: relative;
  padding-left: 1.5em;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}
.infoLinkArea_card__title::before {
  content: '';
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/img/icon_arrow_03.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.infoLinkArea_card__title.s_blankLink::after {
  content: '';
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.5em;
  display: inline-block;
  vertical-align: middle;
  background-image: url("/img/icon_window_01.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (hover: hover) and (pointer: fine) {
  .infoLinkArea_card__link:hover .infoLinkArea_card__body {
    text-decoration: underline;
  }
  .infoLinkArea_card__link:hover .infoLinkArea_card__img {
    opacity: 0.4;
  }
}
@media screen and (max-width: 1200px){
  .infoLinkArea_cardList {
    flex-direction: column;
  }
  .infoLinkArea_cardList__container {
    width: 100%;
  }
  .infoLinkArea_cardList__container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 35px;
  }
  .infoLinkArea_card__img {
    flex: 0 0 auto;
  }
  .infoLinkArea_card.s_first .infoLinkArea_card__img {
    max-height: 600px;
  }
  .infoLinkArea_card__body {
    min-height: unset;
    flex: 1;
  }
  .infoLinkArea_card__title {
    font-size: min(1.83vw, 22px);
  }
}
@media screen and (max-width: 767px){
  .infoLinkArea_cardList {
    gap: 10px;
  }
  .infoLinkArea_cardList__container {
    gap: 10px;
  }
  .infoLinkArea_card.s_fxItem {
    width: calc((100% - 10px) / 2);
  }
  .infoLinkArea_card.s_first .infoLinkArea_card__img {
    height: auto;
  }
  .infoLinkArea_card__body {
    padding: 10px;
  }
  .infoLinkArea_card__title {
    font-size: 15px;
  }
}

/* productsArea
------------------------*/
.productsArea {
  padding: 140px 15px 90px;
}
.productsArea_wrap {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.productsArea_title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 80px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  color: #00a0e9;
}
.productsArea_titleSub {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  color: #00a0e9;
}
.productsArea_titleSub::after {
  margin: 20px auto 0;
  content: '';
  width: 0.7em;
  height: 0.7em;
  display: block;
  border-radius: 4px;
  background: rgb(0,160,233);
  background: linear-gradient(180deg, rgba(0,160,233,1) 0%, rgba(60,77,213,1) 100%);
}
.productsArea_slideConteiner {
  margin-bottom: 30px;
  padding: 40px 60px;
  border: 2px solid #00A0E9;
  border-radius: 20px;
}
.productsArea_slideConteiner__Title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 40px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  color: #00a0e9;
}
.productsArea_slideConteiner__TitleSub {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #00a0e9;
}
.productsArea .linkBtn02 {
  position: absolute;
  top: 160px;
  right: 0;
}
.productsArea .linkBtn02__link {
  font-size: 24px;
}
.carendarArea_card__inner {
  margin-right: 18px;
}
.carendarArea_card__date {
  min-height: 26px;
  margin-bottom: 10px;
  line-height: 1;
  font-size: min(0.83vw, 16px);
  color: #00A0E9;
}
.carendarArea_card__date span.s_year {
  font-size: 1em;
}
.carendarArea_card__date span.s_dateNambers {
  font-size: 1.62em;
}
.carendarArea_card__date span.s_dateTxt {
  font-size: 1.13em;
}
.carendarArea_card__date span.s_dayOfWeek {
  margin-left: 0.5em;
  padding: 4px;
  display: inline-block;
  border: 1px solid #00A0E9;
  border-radius: 6px;
  font-size: 0.8em;
  vertical-align: bottom;
}
.carendarArea_card__thumb {
  margin-bottom: 15px;
  transition: 0.3s;
}
.carendarArea_card__description {
  margin-bottom: 15px;
  min-height: 3em;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  transition: 0.3s;
}
.carendarArea_card__category {
  width: fit-content;
  padding: 6px 10px;
  display: block;
  border-radius: 999px;
  color: #000;
  line-height: 1;
  font-size: min(0.7vw, 13px);
  transition: 0.3s;
}
.carendarArea_card__category.s_figure {
  border: 2px solid #25AF76;
}
.carendarArea_card__category.s_gunpula {
  border: 2px solid #F764EC;
}
.carendarArea_card__category.s_pulamodel {
  border: 2px solid #BAA1EE;
}
.carendarArea_card__category.s_lottery {
  border: 2px solid #EFC244;
}
.carendarArea_card__category.s_prize {
  border: 2px solid #DE3434;
}
.carendarArea_card__category.s_others {
  border: 2px solid #CCCCCC;
}
.productsArea_searchLink {
  max-width: 1600px;
  margin-bottom: 100px;
}
.productsArea_searchLink__wrap {
  padding: 30px 15px 45px;
  position: relative;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  background: rgb(0,160,233);
  background: linear-gradient(-55deg, rgba(0,160,233,1) 0%, rgba(60,77,213,1) 100%);
  transition: 0.3s;
}
.productsArea_searchLink__wrap::after {
  content: '';
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("/img/icon_arrow_04.svg"), url("/img/icon_arrow_04_hover.svg");
  background-position: 0 0, 0 0;
  background-size: contain ,0 0;
  background-repeat: no-repeat, no-repeat;
  transition: 0.3s;
}
.productsArea_searchLink__title {
  margin-bottom: 10px;
  display: inline-block;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
}
.productsArea_searchLink__title::before {
  width: 1.16em;
  height: 1.16em;
  margin-right: 0.5em;
  content: '';
  display: inline-block;
  line-height: 1;
  background-image: url("/img/icon_search.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: bottom;
}
.productsArea_bnrBlock {
  max-width: 1600px;
}
.productsArea_bnrBlock__link {
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .carendarArea_card__category:hover {
    color: #fff;
  }
  .carendarArea_card__category.s_figure:hover {
    background-color: #25AF76;
  }
  .carendarArea_card__category.s_gunpula:hover {
    background-color: #F764EC;
  }
  .carendarArea_card__category.s_pulamodel:hover {
    background-color: #BAA1EE;
  }
  .carendarArea_card__category.s_lottery:hover {
    background-color: #EFC244;
  }
  .carendarArea_card__category.s_prize:hover {
    background-color: #DE3434;
  }
  .carendarArea_card__category.s_others:hover {
    background-color: #CCCCCC;
  }
  .carendarArea_card__link:hover .carendarArea_card__description {
    color: #00A0E9;
    text-decoration: underline;
  }
  .carendarArea_card__link:hover .carendarArea_card__thumb {
    opacity: 0.6;
  }
  .productsArea_searchLink__wrap:hover {
    opacity: 0.8;
  }
  .productsArea_searchLink__wrap:hover:after {
    background-image: url("/img/icon_arrow_04_hover.svg");
  }
  .productsArea_bnrBlock__link:hover {
    opacity: 0.4;
  }
}
@media screen and (max-width: 1200px){
  .productsArea_title {
    font-size: min(6.6vw, 80px);
  }
  .productsArea_titleSub {
    font-size: min(3vw, 36px);
  }
  .productsArea .linkBtn02 {
    top: 120px;
  }
  .productsArea .linkBtn02__link {
    font-size: 20px;
  }
  .productsArea_slideConteiner {
    padding: 40px 15px;
  }
  .carendarArea_card__inner {
    width: 200px;
    margin-right: 18px;
  }
  .carendarArea_card__date {
    font-size: 14px;
  }
  .carendarArea_card__description {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .carendarArea_card__category {
    font-size: min(1.08vw, 13px);
  }
}
@media screen and (max-width: 767px){
  .productsArea {
    padding: 80px 15px 40px;
  }
  .productsArea_title {
    font-size: 32px;
  }
  .productsArea_titleSub {
    font-size: 20px;
  }
  .productsArea_titleSub::after {
    margin: 10px auto 0;
    width: 1em;
    height: 1em;
  }
  .productsArea_slideConteiner__TitleSub {
    margin-bottom: 20px;
  }
  .carendarArea_card__inner {
    padding: 20px;
  }
  .carendarArea_card__category {
      padding: 5px 5px;
      font-size: 10px
  }
  .carendarArea_card__description {
    font-size: 12px;
  }
  .productsArea .linkBtn02 {
    margin: 0 0 30px auto;
    position: relative;
    top: 0;
    right: 0;
  }
  .productsArea .linkBtn02__link {
    font-size: 14px;
  }
  .productsArea_searchLink {
    margin-bottom: 40px;
  }
  .productsArea_searchLink__wrap {
    padding: 30px 65px 30px 15px;
    text-align: left;
    font-size: 14px;
  }
  .productsArea_searchLink__wrap::after {
    width: 40px;
    height: 40px;
    top: 50%;
    right: 10px;
    left: auto;
    bottom: auto;
    transform: translate(0, -50%);
  }
  .productsArea_searchLink__title {
    margin-bottom: 5px;
    display: inline;
    font-weight: bold;
    font-size: 20px;
  }
  .productsArea_searchLink__title::before {
    width: 1.4em;
    height: 1.4em;
  }
}

/* sustainabilityArea
------------------------*/
.sustainabilityArea {
  padding: 100px 0 120px 0;
  background-image: url("/img/bg_sustainability.jpg");
  background-size: cover;
}
.sustainabilityArea_mainContent {
  max-width: 1720px;
  margin-bottom: 70px;
  display: flex;
  align-items: center;
}
.sustainabilityArea_mainContent__visual {
  width: 40%;
  flex-shrink: 0;
}
.sustainabilityArea_mainContent__visualImg {
  border-radius: 0 8.3vw 8.3vw 0;
}
.sustainabilityArea_mainContent__txt {
  padding: 0 15px 0 7.2vw;
  font-size: 20px;
  color: #009944;
}
.sustainabilityArea_mainContent__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: min(5.2vw, 100px);
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.sustainabilityArea_mainContent__titleSub {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: min(1.9vw, 36px);
  line-height: 1.2;
}
.sustainabilityArea_mainContent__titleSub::after {
  margin-top: 20px;
  content: '';
  width: 0.7em;
  height: 0.7em;
  display: block;
  border-radius: 4px;
  background-color: #009944;
}
.sustainabilityArea_cardList {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  column-gap: 25px;
}
.sustainabilityArea_cardList__card {
  width: calc((100% - 50px) / 3);
}
.sustainabilityArea_cardList__cardThumb {
  border-radius: 20px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.sustainabilityArea_cardList__cardTitle {
  position: relative;
  padding-left: 1.5em;
  font-size: 18px;
  line-height: 1;
  transition: 0.3s;
}
.sustainabilityArea_cardList__cardTitle::before {
  content: '';
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/img/icon_arrow_02.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.sustainabilityArea_cardList__cardTitle::after {
  content: '';
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.5em;
  display: inline-block;
  vertical-align: middle;
  background-image: url("/img/icon_window_01.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (hover: hover) and (pointer: fine) {
  .sustainabilityArea_cardList__card:hover .sustainabilityArea_cardList__cardThumb {
    opacity: 0.4;
  }
  .sustainabilityArea_cardList__card:hover .sustainabilityArea_cardList__cardTitle {
    color: #009944;
    text-decoration: underline;
  }
}
@media screen and (max-width: 1200px){
  .sustainabilityArea_mainContent__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px){
  .sustainabilityArea {
    padding: 60px 0;
  }
  .sustainabilityArea_mainContent {
    display: block;
  }
  .sustainabilityArea_mainContent__visual {
    width: 85%;
  }
  .sustainabilityArea_mainContent__visualImg {
    border-radius: 0 40px 40px 0;
  }
  .sustainabilityArea_mainContent__txt {
    margin-top: 50px;
    padding: 0 15px;
    text-align: left;
    font-size: 16px;
  }
  .sustainabilityArea_mainContent__title {
    text-align: center;
    font-size: max(8.5vw, 32px);
  }
  .sustainabilityArea_mainContent__titleSub {
    margin-bottom: 30px;
    text-align: center;
    font-size: max(4.8vw, 18px);
  }
  .sustainabilityArea_mainContent__titleSub::after {
    margin: 20px auto 0;
    width: 1em;
    height: 1em;
  }
  .sustainabilityArea_cardList {
    display: block;
  }
  .sustainabilityArea_cardList__card {
    width: 100%;
    margin: 0 auto;
    max-width: 345px;
    margin-bottom: 25px;
  }
}

/* newsReleaseArea
------------------------*/
.newsReleaseArea {
  padding: 120px 160px;
  position: relative;
}
.newsReleaseArea_wrap {
  display: flex;
  column-gap: 110px;
}
.newsReleaseArea_head {
  flex: 0 0 auto;
}
.newsReleaseArea_head__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 35px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.newsReleaseArea_head__titleSub {
  font-size: 20px;
  font-weight: bold;
  color: #848484;
}
.newsReleaseArea_articleList {
  max-width: 1160px;
  flex: 1 1 auto;
}
.newsReleaseArea_articleList__article {
  padding: 20px 0;
  border-bottom: 1px solid #CCCCCC;
}
.newsReleaseArea_articleList__article.s_article0 {
  border-bottom: none;
}
.newsReleaseArea_articleList__article:first-child {
  padding-top: 0;
}
.newsReleaseArea_articleList__link {
  padding-right: 2em;
  display: block;
  transition: 0.3s;
  background-image: url("/img/icon_arrow_03.svg");
  background-size: 1em 1em;
  background-repeat: no-repeat;
  background-position: right center;
}
.newsReleaseArea_articleList__link.s_pdf::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 23px;
  background: url(/assets/img/icon_pdf_01.svg) no-repeat 100% 0 / contain;
  font-size: 12px;
  line-height: 23px;
  margin-left: 10px;
  margin-right: 3px;
  padding-right: 21px;
}
.newsReleaseArea_articleList__link.s_pdf[data-size]:not([data-size=""])::after {
  content: "（"attr(data-size)"）";
}
.newsReleaseArea_articleList__date {
  margin-bottom: 10px;
  line-height: 1;
  color: #848484;
}
.newsReleaseArea_linkBtn {
  min-width: 315px;
  position: absolute;
  left: 160px;
  top: 220px;
}
@media (hover: hover) and (pointer: fine) {
  .newsReleaseArea_articleList__link:hover {
    color: #00A0E9;
    text-decoration: underline;
  }
  .newsReleaseArea_articleList__link.s_pdf::after {
    transition: background-image var(--transition-time);
  }
  .newsReleaseArea_articleList__link.s_pdf:hover::after {
    background-image: url("/assets/img/icon_pdf_01_over.svg");
  }
}
@media screen and (max-width: 1200px){
  .newsReleaseArea_wrap {
    display: block;
  }
  .newsReleaseArea_head {
    margin-bottom: 30px;
  }
  .newsReleaseArea_articleList {
    margin-bottom: 30px;
  }
  .newsReleaseArea_linkBtn {
    width: fit-content;
    margin: 0 auto;
    position: relative;
    top: 0;
    left: 0;
  }
  @media screen and (max-width: 767px){
    .newsReleaseArea {
      padding: 80px 15px;
    }
    .newsReleaseArea_linkBtn {
      width: 280px;
      min-width: unset;
    }
    .newsReleaseArea_articleList__link.s_pdf::after {
      height: 20px;
      font-size: 11px;
      line-height: 20px;
    }
  }
}

/* recruitArea
------------------------*/
.recruitArea {
  padding: 75px 15px;
  background-image: url("/img/bg_recruit.jpg");
  background-size: cover;
  background-position: center bottom;
}
.recruitArea_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 80px;
  text-align: center;
  font-size: 20px;
  border-radius: 40px;
  background: rgb(126,143,245);
  background: linear-gradient(300deg, rgba(126,143,245,0.2553396358543417) 0%, rgba(101,172,247,0.258140756302521) 50%, rgba(0,158,231,0.258140756302521) 100%);
}
.recruitArea_container__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 60px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.recruitArea_container__titleSub {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 30px;
}
.recruitArea_container__titleSub::after {
  margin: 20px auto 0;
  content: '';
  width: 0.7em;
  height: 0.7em;
  display: block;
  border-radius: 4px;
  background-color: #fff;
}
.recruitArea_container__text {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px){
  .recruitArea {
    padding: 40px 15px;
    background-position: left 40% bottom;
  }
  .recruitArea_container {
    padding: 60px 30px;
    font-size: 16px;
  }
  .recruitArea_container__title {
    font-size: 32px;
  }
  .recruitArea_container__titleSub {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .recruitArea_container__text {
    margin-bottom: 25px;
  }
}

/* storyArea (2024.10)
------------------------*/
.storyArea {
  max-width: 1600px;
  margin: 0 auto;
  display: block;
}
.storyArea_card {
  width: 100%;
  max-width: 1200px;
	margin: 0 auto;
  border: #cccccc 1px solid;
  border-radius: 20px;
}
.storyArea_card__link {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.storyArea_card__img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  flex: 1;
  transition: 0.3s;
}
.storyArea_card__body {
  min-height: 90px;
  padding: 15px;
  border-radius: 0 0 20px 20px;
  background-color: #fff;
  color: #000;
}
.storyArea_card__title {
  margin-bottom: 10px;
  position: relative;
  padding-left: 1.5em;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}
.storyArea_card__title::before {
  content: '';
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/img/icon_arrow_03.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (hover: hover) and (pointer: fine) {
  .storyArea_card__link:hover .storyArea_card__body {
    text-decoration: underline;
  }
  .storyArea_card__link:hover .storyArea_card__img {
    opacity: 0.4;
  }
}
@media screen and (max-width: 1200px){
  .storyArea_card__img {
    flex: 0 0 auto;
  }
  .storyArea_card__body {
    min-height: unset;
    flex: 1;
  }
  .storyArea_card__title {
    font-size: min(1.83vw, 22px);
  }
}
@media screen and (max-width: 767px){
  .storyArea_card__body {
    padding: 10px;
  }
  .storyArea_card__title {
    font-size: 15px;
  }
}