@charset "UTF-8";
/* reset:start */
#contMain *,
#contMain *::before,
#contMain *::after {
  box-sizing: border-box;
}
#contMain * {
  margin: 0;
  padding: 0;
}
#contMain *:not(a, button, .swiper-pagination-bullet, .swiper-button-prev, .swiper-button-next) {
  outline: none;
}
#contMain img,
#contMain picture,
#contMain video,
#contMain canvas,
#contMain svg {
  display: block;
  max-width: 100%;
  height: auto;
}
#contMain img {
  width: 100%;
}
@media screen and (max-width: 479px) {
  #contMain img {
    max-width: none;
  }
}
#contMain input,
#contMain button,
#contMain textarea,
#contMain select {
  font: inherit;
}
#contMain button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  appearance: none;
}
#contMain p,
#contMain h1,
#contMain h2,
#contMain h3,
#contMain h4,
#contMain h5,
#contMain h6 {
  overflow-wrap: break-word;
}
#contMain ul,
#contMain ol {
  list-style: none;
}
#contMain [hidden] {
  display: none;
}
#contMain a {
  color: inherit;
  text-decoration: none;
}

#contMain .character__container, #contMain .campaign__container, #contMain .js-modal__target, #contMain .cont__center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#contMain .character__container > *, #contMain .campaign__container > *, #contMain .js-modal__target > *, #contMain .cont__center > * {
  min-height: 0%;
}

#contMain .cont__container, #contMain .cont__container--small {
  box-sizing: content-box !important;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 479px) {
  #contMain .cont__container, #contMain .cont__container--small {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 374px) {
  #contMain .cont__container, #contMain .cont__container--small {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

#contMain .cont__container--small {
  max-width: 900px;
}
@media screen and (max-width: 479px) {
  #contMain .cont__container--small {
    max-width: 89.3333333333vw;
    padding-left: 0;
    padding-right: 0;
  }
}

#contMain .gallery__btn, #contMain .gallery .swiper-button-prev,
#contMain .gallery .swiper-button-next, #contMain .gallery .swiper-pagination, #contMain .news__info--link, #contMain .menu__link, #contMain .mv__ctrl-btn, #contMain .mv .swiper-pagination .swiper-pagination-bullet, #contMain .js-modal__close, .link {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
#contMain .gallery__btn:hover, #contMain .gallery .swiper-button-prev:hover,
#contMain .gallery .swiper-button-next:hover, #contMain .gallery .swiper-pagination:hover, #contMain .news__info--link:hover, #contMain .menu__link:hover, #contMain .mv__ctrl-btn:hover, #contMain .mv .swiper-pagination .swiper-pagination-bullet:hover, #contMain .js-modal__close:hover, .link:hover {
  opacity: 0.7;
}

/* common:start */
[v-cloak] {
  display: none;
}

@media screen and (max-width: 479px) {
  .pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 480px) {
  .spOnly {
    display: none !important;
  }
}

#contents h2,
#contents h3 {
  padding: 0;
  margin: 0;
  border-bottom: none;
  background-color: transparent;
}

@media screen and (min-width: 480px) {
  #wrapper {
    width: 100%;
    min-width: 1200px;
  }
  #contents {
    width: 100%;
    float: none;
  }
  #header {
    position: relative;
    width: 100%;
    min-width: 1200px;
    height: 120px;
  }
  #header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 16px;
    background-color: #090;
  }
  #header #h_sp_menu {
    width: 100%;
    min-width: 1200px;
    height: 120px;
  }
  #header #h_g_menu {
    display: none;
  }
  #footer {
    width: 100%;
    min-width: 1200px;
  }
}
.is-modal-open .btn_to_top {
  display: none;
}

@media screen and (min-width: 1091px) {
  .btn_to_top {
    margin-left: auto !important;
    left: auto !important;
    right: 10px;
  }
}
#contMain .cont {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
/* common:end */
/* js-fade:start */
:root {
  --fade-translate-x: 0px;
  --fade-translate-y: 0px;
  --fade-duration: 500ms;
}

/* 表示方向 */
.up {
  --fade-translate-y: 50px;
}

.down {
  --fade-translate-y: -50px;
}

.fromLeft {
  --fade-translate-x: -50px;
}

.fromRight {
  --fade-translate-x: 50px;
}

.jsScroll {
  opacity: 0;
  transition-duration: 750ms;
  transition-property: opacity, transform;
  transition-delay: 0ms;
  transform: translate(var(--fade-translate-x), var(--fade-translate-y));
}
.jsScroll.delay--100 {
  transition-delay: 100ms;
}
.jsScroll.delay--200 {
  transition-delay: 200ms;
}
.jsScroll.delay--300 {
  transition-delay: 300ms;
}
.jsScroll.delay--400 {
  transition-delay: 400ms;
}
.jsScroll.delay--500 {
  transition-delay: 500ms;
}
.jsScroll.delay--600 {
  transition-delay: 600ms;
}
.jsScroll.delay--700 {
  transition-delay: 700ms;
}
.jsScroll.delay--800 {
  transition-delay: 800ms;
}
.jsScroll.delay--900 {
  transition-delay: 900ms;
}
.jsScroll.delay--1000 {
  transition-delay: 1000ms;
}
.jsScroll.delay--1100 {
  transition-delay: 1100ms;
}
.jsScroll.delay--1200 {
  transition-delay: 1200ms;
}
.jsScroll.delay--1300 {
  transition-delay: 1300ms;
}
.jsScroll.delay--1400 {
  transition-delay: 1400ms;
}
.jsScroll.delay--1500 {
  transition-delay: 1500ms;
}
.jsScroll.delay--1600 {
  transition-delay: 1600ms;
}
.jsScroll.delay--1700 {
  transition-delay: 1700ms;
}
.jsScroll.delay--1800 {
  transition-delay: 1800ms;
}
.jsScroll.delay--1900 {
  transition-delay: 1900ms;
}
.jsScroll.delay--2000 {
  transition-delay: 2000ms;
}
.jsScroll.delay--2100 {
  transition-delay: 2100ms;
}
.jsScroll.delay--2200 {
  transition-delay: 2200ms;
}
.jsScroll.delay--2300 {
  transition-delay: 2300ms;
}
.jsScroll.delay--2400 {
  transition-delay: 2400ms;
}
.jsScroll.delay--2500 {
  transition-delay: 2500ms;
}
.jsScroll.delay--2600 {
  transition-delay: 2600ms;
}
.jsScroll.delay--2700 {
  transition-delay: 2700ms;
}
.jsScroll.delay--2800 {
  transition-delay: 2800ms;
}
.jsScroll.delay--2900 {
  transition-delay: 2900ms;
}
.jsScroll.delay--3000 {
  transition-delay: 3000ms;
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--100 {
    transition-delay: 100ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--200 {
    transition-delay: 200ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--300 {
    transition-delay: 300ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--400 {
    transition-delay: 400ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--500 {
    transition-delay: 500ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--600 {
    transition-delay: 600ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--700 {
    transition-delay: 700ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--800 {
    transition-delay: 800ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--900 {
    transition-delay: 900ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--1000 {
    transition-delay: 1000ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--1100 {
    transition-delay: 1100ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--1200 {
    transition-delay: 1200ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--1300 {
    transition-delay: 1300ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--1400 {
    transition-delay: 1400ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--1500 {
    transition-delay: 1500ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--1600 {
    transition-delay: 1600ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--1700 {
    transition-delay: 1700ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--1800 {
    transition-delay: 1800ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--1900 {
    transition-delay: 1900ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--2000 {
    transition-delay: 2000ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--2100 {
    transition-delay: 2100ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--2200 {
    transition-delay: 2200ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--2300 {
    transition-delay: 2300ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--2400 {
    transition-delay: 2400ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--2500 {
    transition-delay: 2500ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--2600 {
    transition-delay: 2600ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--2700 {
    transition-delay: 2700ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--2800 {
    transition-delay: 2800ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--2900 {
    transition-delay: 2900ms;
  }
}
@media screen and (min-width: 480px) {
  .jsScroll.delayPc--3000 {
    transition-delay: 3000ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--100 {
    transition-delay: 100ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--200 {
    transition-delay: 200ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--300 {
    transition-delay: 300ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--400 {
    transition-delay: 400ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--500 {
    transition-delay: 500ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--600 {
    transition-delay: 600ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--700 {
    transition-delay: 700ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--800 {
    transition-delay: 800ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--900 {
    transition-delay: 900ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--1000 {
    transition-delay: 1000ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--1100 {
    transition-delay: 1100ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--1200 {
    transition-delay: 1200ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--1300 {
    transition-delay: 1300ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--1400 {
    transition-delay: 1400ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--1500 {
    transition-delay: 1500ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--1600 {
    transition-delay: 1600ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--1700 {
    transition-delay: 1700ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--1800 {
    transition-delay: 1800ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--1900 {
    transition-delay: 1900ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--2000 {
    transition-delay: 2000ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--2100 {
    transition-delay: 2100ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--2200 {
    transition-delay: 2200ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--2300 {
    transition-delay: 2300ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--2400 {
    transition-delay: 2400ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--2500 {
    transition-delay: 2500ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--2600 {
    transition-delay: 2600ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--2700 {
    transition-delay: 2700ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--2800 {
    transition-delay: 2800ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--2900 {
    transition-delay: 2900ms;
  }
}
@media screen and (max-width: 479px) {
  .jsScroll.delaySp--3000 {
    transition-delay: 3000ms;
  }
}

.jsScrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

.jsFvHide {
  opacity: 0;
  transition-duration: 1.5s;
  transition-property: opacity, transform;
  transition-delay: 0s;
}
.jsFvHide.jsFvShow {
  opacity: 1;
}

.fade-enter-active {
  transition: opacity 1s;
}
.fade-leave-active {
  transition: opacity 1s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}

/* js-fade:end */
/* -----------------------------------------------------------------------------
	モーダル
----------------------------------------------------------------------------- */
#contMain .js-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#contMain .js-modal__bg-enter-active {
  transition: opacity 0.5s;
}
#contMain .js-modal__bg-leave-active {
  transition: opacity 0.5s;
}
#contMain .js-modal__bg-enter, #contMain .js-modal__bg-leave-to {
  opacity: 0;
}
#contMain .js-modal__target {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#contMain .js-modal__target-enter-active {
  transition: opacity 0.3s;
}
#contMain .js-modal__target-leave-active {
  transition: opacity 0.3s;
}
#contMain .js-modal__target-enter, #contMain .js-modal__target-leave-to {
  opacity: 0;
}
#contMain .js-modal__contents {
  position: relative;
  width: 95%;
  max-width: 760px;
  max-height: 85dvh;
}
#contMain .js-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 35px;
  height: 35px;
  margin-left: auto;
  content: "";
  color: transparent;
  pointer-events: all;
}
@media screen and (max-width: 1199px) {
  #contMain .js-modal__close {
    top: -50px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .js-modal__close {
    top: -25px;
    width: 20px;
    height: 20px;
  }
}
#contMain .js-modal__close::before, #contMain .js-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  content: "";
}
@media screen and (max-width: 479px) {
  #contMain .js-modal__close::before, #contMain .js-modal__close::after {
    height: 2px;
  }
}
#contMain .js-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#contMain .js-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#contMain .js-modal__content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  pointer-events: all;
}

/* mv:start */
#contMain .mv {
  position: relative;
  background-color: #00a051;
}
#contMain .mv__swiper {
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
}
#contMain .mv__images {
  position: relative;
}
#contMain .mv__title, #contMain .mv__copy {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
#contMain .mv__paginations {
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 8px;
  right: 11.6071428571%;
}
@media screen and (max-width: 479px) {
  #contMain .mv__paginations {
    width: 12.6666666667vw;
    bottom: 1.3333333333vw;
    right: 1.3333333333vw;
  }
}
#contMain .mv__ctrl-btn {
  display: block;
  width: 18px;
  margin-right: 5px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  #contMain .mv__ctrl-btn {
    width: 2.9333333333vw;
    margin-right: 0.6666666667vw;
  }
}
#contMain .mv .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
#contMain .mv .swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contMain .mv .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #D9D9D9;
  border: 1px solid #D9D9D9;
  opacity: 1;
  margin-left: 5px;
  margin-right: 5px;
}
@media screen and (max-width: 479px) {
  #contMain .mv .swiper-pagination .swiper-pagination-bullet {
    width: 1.6vw;
    height: 1.6vw;
    margin-left: 0.6666666667vw;
    margin-right: 0.6666666667vw;
  }
}
#contMain .mv .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #F66300;
  border: 1px solid #fff;
  opacity: 1;
}
@media screen and (max-width: 479px) {
  #contMain .mv .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 1.6vw;
    height: 1.6vw;
  }
}

/* mv:end */
/* timeline:start */
#contMain .timeline {
  width: 100%;
  background-color: #F1F1F1;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media screen and (max-width: 479px) {
  #contMain .timeline {
    background-color: #F6F6F6;
    padding-top: 2.6666666667%;
    padding-bottom: 4%;
  }
}
#contMain .timeline__container {
  max-width: 1658px;
  width: 98.6904761905%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 479px) {
  #contMain .timeline__container {
    width: 89.3333333333%;
    flex-direction: column;
  }
}
#contMain .timeline__new {
  width: 13.2689987937%;
  background-color: #009F50;
}
@media screen and (max-width: 479px) {
  #contMain .timeline__new {
    width: 42.2388059701%;
  }
}
#contMain .timeline__list {
  width: 86.7310012063%;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-left: 1.8094089264%;
  padding-right: 1.8094089264%;
}
@media screen and (max-width: 479px) {
  #contMain .timeline__list {
    width: 100%;
    padding: 3.7313432836% 4.4776119403%;
  }
}
#contMain .timeline__list li {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 479px) {
  #contMain .timeline__list li {
    flex-direction: column;
    align-items: flex-start;
  }
}
#contMain .timeline__time {
  font-size: 20px;
  font-weight: 600;
  margin-right: 20px;
}
@media screen and (max-width: 1679px) {
  #contMain .timeline__time {
    font-size: 1.1904761905vw;
    margin-right: 1.1904761905vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .timeline__time {
    font-size: 14px;
    margin-right: 14px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .timeline__time {
    font-size: 4.2666666667vw;
    margin-bottom: 0.6666666667vw;
  }
}
#contMain .timeline__text {
  font-size: 18px;
  letter-spacing: 0.0029em;
  margin-bottom: 0;
}
@media screen and (max-width: 1679px) {
  #contMain .timeline__text {
    font-size: 1.0714285714vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .timeline__text {
    font-size: 13px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .timeline__text {
    font-size: 3.7333333333vw;
    line-height: 1.5;
  }
}

/* timeline:end */
/* menu:start */
#contMain .menu {
  background-color: #F6F6F6;
}
#contMain .menu__container {
  max-width: 1179px;
  width: 70.1785714286%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 479px) {
  #contMain .menu__container {
    width: 89.3333333333%;
    padding-top: 5.3333333333%;
    padding-bottom: 5.3333333333%;
  }
}
#contMain .menu__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 479px) {
  #contMain .menu__list {
    flex-wrap: wrap;
    border-top: 1px solid #BDBDBD;
    border-left: 1px solid #BDBDBD;
  }
}
#contMain .menu__list li {
  width: 24.9363867684%;
  height: 95px;
  position: relative;
}
@media screen and (max-width: 1679px) {
  #contMain .menu__list li {
    height: 5.6547619048vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .menu__list li {
    height: 67px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .menu__list li {
    width: 50%;
    height: 14vw;
    border-right: 1px solid #BDBDBD;
    border-bottom: 1px solid #BDBDBD;
  }
}
@media screen and (min-width: 480px) {
  #contMain .menu__list li:not(:last-child):after {
    content: "";
    width: 1px;
    height: 53px;
    background-color: #BDBDBD;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 480px) and (max-width: 1679px) {
  #contMain .menu__list li:not(:last-child):after {
    height: 3.1547619048vw;
  }
}
@media screen and (min-width: 480px) and (max-width: 1199px) {
  #contMain .menu__list li:not(:last-child):after {
    height: 37px;
  }
}
#contMain .menu__link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contMain .menu__text {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #009F50;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
@media screen and (max-width: 1679px) {
  #contMain .menu__text {
    font-size: 2.2619047619vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .menu__text {
    font-size: 27px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .menu__text {
    font-size: 5.3333333333vw;
  }
}
#contMain .menu__text::after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url(/brand/ambassador/dreams/images/dreams/menu_icon_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-left: 13px;
  margin-top: 5px;
}
@media screen and (max-width: 1679px) {
  #contMain .menu__text::after {
    width: 1.5476190476vw;
    height: 1.5476190476vw;
    margin-left: 0.7738095238vw;
    margin-top: 0.2976190476vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .menu__text::after {
    width: 18px;
    height: 18px;
    margin-left: 9px;
    margin-top: 3px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .menu__text::after {
    width: 4vw;
    height: 4vw;
    margin-left: 0.8vw;
    margin-top: 0.5333333333vw;
  }
}

/* menu:end */
#contMain .statement__text--regular, #contMain .statement__text--medium, #contMain .statement__text--large, #contMain .statement__text--xlarge {
  color: #009E4F;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
  white-space: nowrap;
}
#contMain .statement__text--regular:not(:last-child), #contMain .statement__text--medium:not(:last-child), #contMain .statement__text--large:not(:last-child), #contMain .statement__text--xlarge:not(:last-child) {
  margin-bottom: 1.0729613734%;
}
@media screen and (max-width: 479px) {
  #contMain .statement__text--regular:not(:last-child), #contMain .statement__text--medium:not(:last-child), #contMain .statement__text--large:not(:last-child), #contMain .statement__text--xlarge:not(:last-child) {
    margin-bottom: 1.4925373134%;
  }
}

#contMain .statement__obi-text--small, #contMain .statement__obi-text--large {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  padding-left: 35px;
  padding-right: 35px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  #contMain .statement__obi-text--small, #contMain .statement__obi-text--large {
    padding-left: 3.3333333333vw;
    padding-right: 3.3333333333vw;
  }
}
#contMain .statement__obi-text--small::before, #contMain .statement__obi-text--large::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #009E4F;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skewX(-10deg);
  z-index: -1;
}

/* statement:start */
@media screen and (max-width: 479px) {
  #contMain .statement {
    padding-top: 13.3333333333%;
  }
}
#contMain .statement__container {
  max-width: 1680px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 479px) {
  #contMain .statement__container {
    width: 100%;
  }
}
#contMain .statement__content {
  width: 100%;
  padding-top: 6.8452380952%;
  padding-bottom: 3.1547619048%;
}
@media screen and (max-width: 479px) {
  #contMain .statement__content {
    padding-top: 126.6666666667%;
    padding-bottom: 0;
  }
}
#contMain .statement__image {
  width: 40%;
  position: absolute;
  top: 10.2354145343%;
  left: -2.7976190476%;
}
@media screen and (max-width: 479px) {
  #contMain .statement__image {
    width: 100%;
    top: 0;
    left: 0;
  }
}
#contMain .statement__text-area {
  width: 58.4523809524%;
  margin-left: auto;
  margin-right: 4.7619047619%;
}
@media screen and (max-width: 479px) {
  #contMain .statement__text-area {
    width: 89.3333333333%;
    margin-left: auto;
    margin-right: auto;
  }
}
#contMain .statement__texts {
  padding-left: 5.0916496945%;
  margin-bottom: 3.0549898167%;
}
@media screen and (max-width: 479px) {
  #contMain .statement__texts {
    padding-left: 0;
    margin-bottom: 5.9701492537%;
  }
}
#contMain .statement__text--xlarge {
  font-size: 47px;
  line-height: 1.2021276596;
}
@media screen and (max-width: 1679px) {
  #contMain .statement__text--xlarge {
    font-size: 2.7976190476vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .statement__text--xlarge {
    font-size: 34px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .statement__text--xlarge {
    font-size: 6.2666666667vw;
  }
}
#contMain .statement__text--large {
  font-size: 36px;
  line-height: 1.5694444444;
}
@media screen and (max-width: 1679px) {
  #contMain .statement__text--large {
    font-size: 2.1428571429vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .statement__text--large {
    font-size: 26px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .statement__text--large {
    font-size: 4.8vw;
  }
}
#contMain .statement__text--medium {
  font-size: 30px;
  line-height: 1.8833333333;
}
@media screen and (max-width: 1679px) {
  #contMain .statement__text--medium {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .statement__text--medium {
    font-size: 22px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .statement__text--medium {
    font-size: 4vw;
  }
}
#contMain .statement__text--regular {
  font-size: 26px;
  line-height: 2.1730769231;
}
@media screen and (max-width: 1679px) {
  #contMain .statement__text--regular {
    font-size: 1.5476190476vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .statement__text--regular {
    font-size: 19px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .statement__text--regular {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 479px) {
  #contMain .statement__text--regular.spTextSmall {
    font-size: 3.3333333333vw;
  }
}
#contMain .statement__obi {
  padding-left: 1.5274949084%;
}
@media screen and (max-width: 479px) {
  #contMain .statement__obi {
    padding-left: 1.1940298507%;
  }
}
#contMain .statement__obi-box {
  margin-bottom: 0;
}
#contMain .statement__obi-box:not(:last-child) {
  margin-bottom: 2.0682523268%;
}
@media screen and (max-width: 479px) {
  #contMain .statement__obi-box:not(:last-child) {
    margin-bottom: 2.2388059701%;
  }
}
#contMain .statement__obi-text--large {
  font-size: 77px;
  padding-top: 20px;
  padding-bottom: 30px;
}
@media screen and (max-width: 1679px) {
  #contMain .statement__obi-text--large {
    font-size: 4.5833333333vw;
    padding-top: 1.1904761905vw;
    padding-bottom: 1.7857142857vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .statement__obi-text--large {
    font-size: 55px;
    padding-top: 15px;
    padding-bottom: 22px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .statement__obi-text--large {
    font-size: 6.9333333333vw;
    padding-top: 2vw;
    padding-bottom: 2.6666666667vw;
  }
}
#contMain .statement__obi-text--small {
  font-size: 62px;
  padding-top: 30px;
  padding-bottom: 35px;
}
@media screen and (max-width: 1679px) {
  #contMain .statement__obi-text--small {
    font-size: 3.6904761905vw;
    padding-top: 1.7857142857vw;
    padding-bottom: 2.0833333333vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .statement__obi-text--small {
    font-size: 44px;
    padding-top: 22px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .statement__obi-text--small {
    font-size: 5.6vw;
    padding-top: 2.6666666667vw;
    padding-bottom: 3.3333333333vw;
  }
}
#contMain .statement__obi-period {
  font-feature-settings: "palt";
}

/* statement:end */
#contMain .news__info--text, #contMain .news__info--link {
  display: block;
  padding-bottom: 3.6610878661%;
  position: relative;
}
@media screen and (max-width: 479px) {
  #contMain .news__info--text, #contMain .news__info--link {
    padding-bottom: 4.4776119403%;
  }
}

/* news:start */
#contMain .news {
  max-width: 1680px;
  padding-top: 165px;
  padding-bottom: 190px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1679px) {
  #contMain .news {
    padding-top: 9.8214285714%;
    padding-bottom: 11.3095238095%;
  }
}
@media screen and (max-width: 479px) {
  #contMain .news {
    padding-top: 14.6666666667%;
    padding-bottom: 19.3333333333%;
  }
}
#contMain .news__container {
  width: 75.5952380952%;
  display: flex;
  justify-content: space-between;
  margin-left: 8.3333333333%;
  margin-right: auto;
}
@media screen and (max-width: 479px) {
  #contMain .news__container {
    width: 89.3333333333%;
    flex-direction: column;
    margin-left: auto;
  }
}
#contMain .news__title {
  width: 16.4566929134%;
  padding-top: 0.7874015748%;
  padding-bottom: 2.3622047244%;
}
@media screen and (max-width: 479px) {
  #contMain .news__title {
    width: 44.776119403%;
    max-width: none;
    padding-top: 0;
    padding-bottom: 9.7014925373%;
  }
}
#contMain .news__contents {
  width: 75.2755905512%;
}
@media screen and (max-width: 479px) {
  #contMain .news__contents {
    width: 100%;
  }
}
#contMain .news__contents li {
  border-bottom: 1px solid rgba(193, 193, 193, 0.7);
}
#contMain .news__contents li:not(:last-child) {
  margin-bottom: 5.905511811%;
}
@media screen and (max-width: 479px) {
  #contMain .news__contents li:not(:last-child) {
    margin-bottom: 4.4776119403%;
  }
}
#contMain .news__info--link {
  padding-right: 30px;
}
@media screen and (max-width: 1679px) {
  #contMain .news__info--link {
    padding-right: 2.380952381vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .news__info--link {
    padding-right: 29px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .news__info--link {
    padding-right: 5.3333333333vw;
  }
}
#contMain .news__info--link::after {
  content: "";
  display: block;
  width: 26px;
  height: 100%;
  background-image: url(/brand/ambassador/dreams/images/dreams/news_icon_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1679px) {
  #contMain .news__info--link::after {
    width: 1.5476190476vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .news__info--link::after {
    width: 19px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .news__info--link::after {
    width: 3.4666666667vw;
  }
}
#contMain .news__date {
  display: block;
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.0039em;
  margin-bottom: 1.5690376569%;
}
@media screen and (max-width: 1679px) {
  #contMain .news__date {
    font-size: 1.6071428571vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .news__date {
    font-size: 20px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .news__date {
    font-size: 4.2666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}
#contMain .news__text {
  font-size: 18px;
  margin-bottom: 0;
  letter-spacing: 0.0029em;
}
@media screen and (max-width: 1679px) {
  #contMain .news__text {
    font-size: 1.0714285714vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .news__text {
    font-size: 13px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .news__text {
    font-size: 3.7333333333vw;
    line-height: 1.5;
  }
}

/* news:end */
/* message:start */
#contMain .message {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 85px;
}
@media screen and (max-width: 1679px) {
  #contMain .message {
    padding-top: 5.9523809524vw;
    padding-bottom: 5.0595238095vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .message {
    padding-top: 71px;
    padding-bottom: 61px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .message {
    padding-top: 15.3333333333%;
    padding-bottom: 14.6666666667%;
  }
}
#contMain .message::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgb(0, 159, 79), rgb(1, 125, 63));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skewY(-6.6deg);
}
#contMain .message__container {
  max-width: 1680px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.7857142857%;
  position: relative;
}
@media screen and (max-width: 479px) {
  #contMain .message__container {
    padding-top: 0;
  }
}
#contMain .message__title {
  width: 67.2619047619%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5.6547619048%;
}
@media screen and (max-width: 479px) {
  #contMain .message__title {
    width: 89.3333333333%;
    margin-bottom: 8%;
  }
}
#contMain .message__contents {
  width: 94.4642857143%;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 479px) {
  #contMain .message__contents {
    width: 89.3333333333%;
    flex-direction: column;
    margin-right: auto;
  }
}
#contMain .message__text-area {
  width: 49.779458097%;
}
@media screen and (max-width: 479px) {
  #contMain .message__text-area {
    width: 100%;
  }
}
#contMain .message__lead {
  color: #fff;
  font-size: 30px;
  line-height: 1.8833333333;
  font-weight: 600;
  margin-bottom: 5.6962025316%;
}
@media screen and (max-width: 1679px) {
  #contMain .message__lead {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .message__lead {
    font-size: 21px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .message__lead {
    font-size: 4.8vw;
    line-height: 1.8888888889;
    margin-bottom: 6.7164179104%;
  }
}
#contMain .message__text {
  color: #fff;
  font-size: 22px;
  line-height: 2.2727272727;
  font-weight: 600;
  margin-bottom: 0;
}
@media screen and (min-width: 480px) {
  #contMain .message__text {
    white-space: nowrap;
  }
}
@media screen and (max-width: 1679px) {
  #contMain .message__text {
    font-size: 1.3095238095vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .message__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .message__text {
    font-size: 3.7333333333vw;
    line-height: 2;
  }
}
#contMain .message__text:not(:last-child) {
  margin-bottom: 6.3291139241%;
}
@media screen and (max-width: 479px) {
  #contMain .message__text:not(:last-child) {
    margin-bottom: 8.2089552239%;
  }
}
#contMain .message__image {
  width: 46.9439193447%;
  margin-top: 1.2602394455%;
}
@media screen and (max-width: 479px) {
  #contMain .message__image {
    width: 100%;
    margin-top: 8.6666666667%;
  }
}

/* message:end */
/* gallery:start */
#contMain .gallery {
  max-width: 1680px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#contMain .gallery__container {
  width: 91.5476190476%;
  padding-top: 4.1666666667%;
  padding-bottom: 11.3095238095%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 479px) {
  #contMain .gallery__container {
    width: 100%;
    padding-top: 18.6666666667%;
    padding-bottom: 13.3333333333%;
  }
}
#contMain .gallery__title {
  width: 46.2938881664%;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 3.2509752926%;
}
@media screen and (max-width: 479px) {
  #contMain .gallery__title {
    width: 70.2666666667%;
    margin-right: 5.3333333333%;
    margin-bottom: 8%;
  }
}
#contMain .gallery__images {
  position: relative;
}
@media screen and (max-width: 479px) {
  #contMain .gallery__images {
    padding-bottom: 12vw;
  }
}
@media screen and (min-width: 480px) {
  #contMain .gallery .swiper-container {
    overflow: visible;
  }
}
@media screen and (min-width: 480px) {
  #contMain .gallery .swiper-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
#contMain .gallery .swiper-slide {
  width: 31.2093628088%;
}
@media screen and (max-width: 479px) {
  #contMain .gallery .swiper-slide {
    width: 64%;
    margin-left: 2.6666666667%;
    margin-right: 2.6666666667%;
  }
}
@media screen and (max-width: 479px) {
  #contMain .gallery .swiper-slide.jsScroll {
    opacity: 1;
  }
}
@media screen and (max-width: 479px) {
  #contMain .gallery .swiper-slide.up {
    --fade-translate-y: 0;
  }
}
#contMain .gallery .swiper-button-prev,
#contMain .gallery .swiper-button-next {
  width: 8vw;
  height: 8vw;
  top: 4vw;
}
#contMain .gallery .swiper-button-prev {
  left: 34.6666666667vw;
}
#contMain .gallery .swiper-button-next {
  right: 34.6666666667vw;
}
#contMain .gallery .swiper-button-prev::after,
#contMain .gallery .swiper-button-next::after {
  content: "";
  width: 8vw;
  height: 8vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: auto;
}
#contMain .gallery .swiper-button-prev::after {
  background-image: url(/brand/ambassador/dreams/images/dreams/message_icon_prev.png);
}
#contMain .gallery .swiper-button-next::after {
  background-image: url(/brand/ambassador/dreams/images/dreams/message_icon_next.png);
}
#contMain .gallery .swiper-pagination {
  position: absolute;
  bottom: -9.3333333333vw;
  left: 50%;
  transform: translateX(-50%);
}
#contMain .gallery .swiper-pagination .swiper-pagination-bullet {
  width: 1.3333333333vw;
  height: 1.3333333333vw;
  background: #D9D9D9;
  opacity: 1;
  margin-left: 0.6666666667vw;
  margin-right: 0.6666666667vw;
}
#contMain .gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 1.3333333333vw;
  height: 1.3333333333vw;
  background: #009E4F;
  opacity: 1;
}

/* gallery:end */
/* campaign:start */
#contMain .campaign {
  background-image: linear-gradient(135deg, rgb(0, 159, 79), rgb(1, 125, 63));
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 479px) {
  #contMain .campaign {
    padding-top: 13.3333333333%;
    padding-bottom: 13.3333333333%;
  }
}
#contMain .campaign__container {
  width: 100%;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
}
#contMain .campaign__title {
  width: 53.2142857143%;
  margin-bottom: 3.5714285714%;
}
@media screen and (max-width: 479px) {
  #contMain .campaign__title {
    width: 88%;
    margin-bottom: 9.3333333333%;
  }
}
#contMain .campaign__contents {
  width: 88.6904761905%;
  background-color: #fff;
  border-top-left-radius: 150px;
  border-bottom-right-radius: 150px;
  padding-top: 6.5476190476%;
  padding-bottom: 6.5476190476%;
}
@media screen and (max-width: 1679px) {
  #contMain .campaign__contents {
    border-top-left-radius: 8.9285714286vw;
    border-bottom-right-radius: 8.9285714286vw;
  }
}
@media screen and (max-width: 1199px) {
  #contMain .campaign__contents {
    border-top-left-radius: 107px;
    border-bottom-right-radius: 107px;
  }
}
@media screen and (max-width: 479px) {
  #contMain .campaign__contents {
    width: 89.3333333333%;
    border-top-left-radius: 8.8vw;
    border-bottom-right-radius: 8.8vw;
    padding-top: 6.6666666667%;
    padding-bottom: 6.6666666667%;
  }
}
#contMain .campaign__soon {
  width: 83.2214765101%;
  background-color: #D9D9D9;
  padding-top: 14.0939597315%;
  padding-bottom: 14.0939597315%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 479px) {
  #contMain .campaign__soon {
    width: 82.0895522388%;
    padding-top: 17.2727272727%;
    padding-bottom: 18.1818181818%;
  }
}
#contMain .campaign__soon-text {
  color: #6A6A6A;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 479px) {
  #contMain .campaign__soon-text {
    font-size: 6.6666666667vw;
  }
}

/* campaign:end */
/* character:start */
#contMain .character__container {
  padding-top: 20px;
  padding-bottom: 15px;
}
@media screen and (max-width: 479px) {
  #contMain .character__container {
    padding-top: 10.6666666667%;
    padding-bottom: 0;
  }
}
#contMain .character__image {
  width: 142px;
  margin-bottom: 10px;
}
@media screen and (max-width: 479px) {
  #contMain .character__image {
    width: 18.9333333333%;
    margin-bottom: 1.3333333333%;
  }
}
#contMain .character__name {
  color: #009E4F;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.083em;
  margin-bottom: 0;
}
@media screen and (max-width: 479px) {
  #contMain .character__name {
    font-size: 1.6vw;
  }
}

/* character:end */


/* =========================================================
   ニュース(news)詳細ページ 完全版
========================================================= */
/* セクション全体（斜め背景が横にはみ出すのを防ぐ） */
#contMain .news_details {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  overflow: hidden; 
}

/* 斜め背景（上部のみ・右端少し食い込み） */
#contMain .news_details__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(60px + 13.6vw); /* 画面幅が広がっても右端の太さをキープ */
  background-image: linear-gradient(135deg, rgb(0, 159, 79), rgb(1, 125, 63));
  transform: skewY(-6.6deg);
  transform-origin: top left;
  z-index: -1;
}

/* 枠外ロゴ画像エリア（GALLERYと同じ比率の外枠） */
#contMain .news_details__header-outer {
  max-width: 1680px; 
  width: 91.5476%; 
  margin: 0 auto;
  padding-top: 170px;
  margin-bottom: 20px;
}

/* ロゴ画像（GALLERYと同じサイズ感で右寄せ） */
#contMain .news_details__title-img {
  width: 26.657%; 
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 3.2509752926%;
}

/* MAX1155pxの中央寄せコンテナ（本文やボタン用） */
#contMain .news_details__container {
  max-width: 1155px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOPへ戻るボタン */
#contMain .news_details__back {
  margin-bottom: 20px;
}
#contMain .news_details__back .btn_back {
  display: inline-flex;
  align-items: center;
  background-color: #009E4F;
  color: #fff;
  font-weight: bold;
  font-size: 165%;
  padding: 10px 25px;
  text-decoration: none;
  transition: opacity 0.3s;
}
#contMain .news_details__back .btn_back:hover {
  opacity: 0.7;
}

/* お知らせ本文エリア */
#contMain .news_details__content {
  width: 100%;
  min-height: 300px;
  border: 1px solid #009E4F;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
#contMain.news .menu__link.gray span.menu__text {
    color: #999999;
}

@media screen and (min-width: 480px) {
  #contMain .news_details__title-img img {
    width: 341px !important; /* 新しい画像幅に合わせました */
    height: 171px !important;
    margin-left: auto; /* 右寄せにする */
  }
}
#contMain .menu__link.gray .menu__text::after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url(/brand/ambassador/dreams/news/images/menu_icon_arrow_gray.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-left: 13px;
  margin-top: 5px;
}
#contMain .menu__link.gray {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
/* -------------------------------------------
   スマホ向けレスポンシブ（一括設定）
------------------------------------------- */
@media screen and (max-width: 479px) {
  #contMain .news_details__bg {
    height: calc(40px + 13.6vw); 
  }
  #contMain .news_details__header-outer {
    width: 100%;
    padding-top: 100px;
    margin-bottom: 8%;
  }
  #contMain .news_details__title-img {
    width: 40%;
    margin-right: 5.3333%;
  }
  #contMain .news_details__content {
    min-height: 200px;
  }
  /* ※ここに入っていた誤ったコードは削除しました */
  #contMain .news_details__back .btn_back {
    font-size: 93%;
  }
  #contMain .menu__link.gray .menu__text::after {
    width: 4vw;
    height: 4vw;
    margin-left: 0.8vw;
    margin-top: 0.5333333333vw;
  }
}
