@charset "UTF-8";
/* ===========================================================
   カスタムプロパティ（共通変数定義）
=========================================================== */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/* ===========================================================
   メディアクエリ（スマホファースト）
=========================================================== */
/* ===========================================================
   ページ専用スタイル（Purpose Page）
   ※ 全体基本設定（html, body, fontなど）は master.css を継承
=========================================================== */
.purpose-page {
  --PP_COLOR_LGRAY: #f5f5f5;
  --PP_COLOR_MGRAY: #bfbfbf;
  --PP_COLOR_WHITE: #ffffff;
  --PP_COLOR_BALLOON_RED: #e60012;
  --PP_COLOR_BALLOON_BLUE: #006db8;
  --PP_COLOR_BALLOON_YELLOW: #fac100;
  --PP_COLOR_BALLOON_LRED: #f5b199;
  --PP_COLOR_BALLOON_LBLUE: #8cc2d0;
  --PP_COLOR_BALLOON_LYELLOW: #fcd475;
  --PP_COLOR_BALLOON_CONTENT_BG: #fdf0f0;
  --PP_FONT_SIZE_SM: 1.4rem;
  --PP_FONT_SIZE_LG: 1.6rem;
  --PP_FONT_LINE_HEIGHT: 2;
  --PP_FONT_FAMIRY_SECONDARY: "Jost", sans-serif;
  background-color: var(--COLOR_WHITE);
  font-family: var(--FONT_FAMILY_PRIMARY);
  font-size: var(--PP_FONT_SIZE_SM);
  font-weight: var(--FONT_WEIGHT_MEDIUM);
  line-height: var(--PP_FONT_LINE_HEIGHT);
  color: var(--COLOR_FONT);
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
@media print, screen and (min-width: 992px) {
  .purpose-page {
    font-size: var(--PP_FONT_SIZE_LG);
  }
}

/* ===========================================================
   レイアウト調整
=========================================================== */
.l-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-content_inner {
  width: 100%;
}

.section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* ===========================================================
   共通パーツ（ボタンなど必要最低限）
=========================================================== */
.c-button {
  display: inline-block;
  padding: 10px 20px;
  background: #0078d7;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.c-button:hover {
  background: #005bb5;
}

/* ===========================================================
   パーパスページ専用コンポーネント
=========================================================== */
/* ファーストビュー 
---------------------------------------- */
.purpose-hero {
  height: 60rem;
  margin-bottom: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .purpose-hero {
    margin-bottom: 18rem;
  }
}
.purpose-hero__catchcopy {
  width: 85vw;
  height: 9rem;
  margin: 0 auto;
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT_MEDIUM);
  font-style: oblique;
  font-size: 5.9vw;
  letter-spacing: 0.05em;
  z-index: 1;
  position: relative;
  margin-top: 0;
}
@media print, screen and (min-width: 768px) {
  .purpose-hero__catchcopy {
    text-align: justify;
    width: 65rem;
    height: 28rem;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-hero__catchcopy {
    text-align: justify;
    width: 86rem;
    height: 28rem;
    font-size: 6.1rem;
  }
}
.purpose-hero__catchcopy-highlight--red {
  color: var(--PP_COLOR_BALLOON_RED);
}
.purpose-hero__catchcopy-highlight--yellow {
  color: var(--PP_COLOR_BALLOON_YELLOW);
}
.purpose-hero__catchcopy-highlight--blue {
  color: var(--PP_COLOR_BALLOON_BLUE);
}
.purpose-hero__balloons {
  position: absolute;
  top: 0;
  left: 50%;
  width: 150%;
  height: 100%;
  transform: translateX(-50%);
  z-index: 0;
}
.purpose-hero__balloons img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media print, screen and (min-width: 768px) {
  .purpose-hero__balloons {
    width: 1520px;
    height: 100%;
  }
  .purpose-hero__balloons img {
    width: 100%;
    height: auto;
  }
}

/* パーパス
---------------------------------------- */
.purpose-purpose {
  padding-top: 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
.purpose-purpose__inner {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 8rem;
}
@media print, screen and (min-width: 992px) {
  .purpose-purpose__inner {
    width: 100%;
    max-width: 65rem;
  }
}
.purpose-purpose__title {
  margin-bottom: 2.5rem;
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT);
  font-style: oblique;
  display: block;
  font-size: 3rem;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) {
  .purpose-purpose__title {
    font-size: 4.6rem;
    line-height: 1.2;
    margin-bottom: 5.5rem;
  }
}
.purpose-purpose__title::after {
  content: "...";
  display: block;
  margin-top: 0.8rem;
  color: var(--PP_COLOR_BALLOON_RED);
  text-align: center;
}
.purpose-purpose__subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  line-height: 1.5 !important;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .purpose-purpose__subtitle {
    font-size: 2.4rem;
    margin-bottom: 5rem;
  }
}
.purpose-purpose__catchcopy {
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT_MEDIUM);
  font-style: oblique;
  letter-spacing: 0.05em;
  font-size: 5.6vw;
  margin: 0 auto 3rem;
}
@media print, screen and (min-width: 768px) {
  .purpose-purpose__catchcopy {
    margin-bottom: 5rem;
    font-size: 4rem;
    line-height: 1.6;
  }
}
.purpose-purpose__catchcopy-highlight--red {
  color: var(--PP_COLOR_BALLOON_RED);
}
.purpose-purpose__catchcopy-highlight--yellow {
  color: var(--PP_COLOR_BALLOON_YELLOW);
}
.purpose-purpose__catchcopy-highlight--blue {
  color: var(--PP_COLOR_BALLOON_BLUE);
}
.purpose-purpose__text {
  font-size: 1.4rem;
  margin-bottom: 3em;
  font-weight: var(--FONT_WEIGHT);
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) {
  .purpose-purpose__text {
    font-size: 1.6rem;
  }
}
@media print, screen and (min-width: 768px) {
  .purpose-purpose__text p {
    margin-top: 0;
  }
}
.purpose-purpose__lines {
  margin-bottom: 3.6rem;
}
@media print, screen and (min-width: 768px) {
  .purpose-purpose__lines {
    display: flex;
    justify-content: center;
    gap: 7.5rem;
  }
}
.purpose-purpose__quote {
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT);
  line-height: 1.5;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.purpose-purpose__quote::before {
  content: "";
  width: 3rem;
  height: 7rem;
  background-image: url("/assets/img/purpose/icon-quote.svg");
  background-repeat: no-repeat;
  background-size: 2.2rem;
}
@media print, screen and (min-width: 768px) {
  .purpose-purpose__quote::before {
    background-size: 3rem;
  }
}
.purpose-purpose__quote::after {
  content: "";
  width: 3rem;
  height: 7rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background-image: url("/assets/img/purpose/icon-quote.svg");
  background-repeat: no-repeat;
  background-size: 2.2rem;
  transform: rotate(180deg);
}
@media print, screen and (min-width: 768px) {
  .purpose-purpose__quote::after {
    background-size: 3rem;
  }
}
.purpose-purpose__quote p {
  display: inline-block;
  text-align: center;
}
.purpose-purpose__quote:first-child {
  margin-right: 30%;
}
.purpose-purpose__quote:nth-child(2) {
  margin-left: 30%;
}
@media print, screen and (min-width: 768px) {
  .purpose-purpose__quote {
    font-size: 2.4rem;
  }
  .purpose-purpose__quote::before {
    width: 3.8rem;
    height: 10rem;
  }
  .purpose-purpose__quote::after {
    width: 3.8rem;
    height: 10rem;
  }
  .purpose-purpose__quote:first-child {
    margin-right: 0;
  }
  .purpose-purpose__quote:nth-child(2) {
    margin-left: 0;
  }
}
.purpose-purpose__balloon {
  position: absolute;
  z-index: -1;
}
.purpose-purpose__balloon--red {
  transform: translateX(-50%) scaleX(-1);
  width: 13.5rem;
  height: 13.5rem;
  top: 5rem;
  left: calc(50% + 19rem);
}
@media print, screen and (min-width: 768px) {
  .purpose-purpose__balloon--red {
    top: -12rem;
    left: calc(50% + 40rem);
    width: 28rem;
    height: 28rem;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-purpose__balloon--red {
    top: 8rem;
    left: calc(50% + 59rem);
    width: 38rem;
    height: 38rem;
  }
}
.purpose-purpose__balloon--yellow {
  transform: translateX(-50%) rotate(-50deg);
  width: 13.5rem;
  height: 13.5rem;
  top: 39rem;
  left: calc(50% - 22rem);
}
@media print, screen and (min-width: 768px) {
  .purpose-purpose__balloon--yellow {
    top: 45rem;
    left: calc(50% - 50rem);
    width: 30rem;
    height: 30rem;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-purpose__balloon--yellow {
    top: 38.5rem;
    left: calc(50% - 60rem);
    width: 36rem;
    height: 36rem;
  }
}
.purpose-purpose__balloon--blue {
  transform: translateX(-50%) scaleX(-1) rotate(-60deg);
  width: 12.5rem;
  height: 12.5rem;
  top: 89rem;
  left: calc(50% + 19rem);
}
@media print, screen and (min-width: 768px) {
  .purpose-purpose__balloon--blue {
    top: 90rem;
    left: calc(50% + 45rem);
    width: 25rem;
    height: 25rem;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-purpose__balloon--blue {
    top: 67rem;
    left: calc(50% + 57rem);
    width: 25rem;
    height: 25rem;
  }
}

/* アコーディオン
---------------------------------------- */
.c-accordion {
  margin-top: 12rem;
}
@media print, screen and (min-width: 768px) {
  .c-accordion {
    margin-top: 0rem;
    margin-bottom: 9rem;
  }
}
.c-accordion__toggle {
  background: var(--PP_COLOR_BALLOON_RED);
  border: none;
  outline: none;
  color: var(--COLOR_WHITE);
  font-size: 1.6rem;
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT);
  font-style: oblique;
  letter-spacing: 0.05em;
  display: block;
  position: relative;
  border-radius: 5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: border-radius 0.2s ease, width 0.3s ease, padding 0.3s ease;
  margin: 0 auto;
  width: 90%;
  height: 6rem;
  padding-left: 2rem;
  padding-right: 4rem;
  transition: all 0.3s ease;
  line-height: 1.2;
}
@media print, screen and (min-width: 768px) {
  .c-accordion__toggle {
    margin: 0 auto;
    cursor: pointer;
    width: 57rem;
    height: 10rem;
    font-size: 2.4rem;
    padding: 1.5rem 0;
    padding-right: 3rem;
  }
}
.c-accordion__toggle::after {
  content: "＋";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background-image: url("/assets/img/purpose/icon-bubble-white.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  color: var(--PP_COLOR_BALLOON_RED);
  font-style: normal;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  font-size: 1.2rem;
  line-height: 2.1rem;
  transform: translateY(-50%) scaleX(-1);
}
@media print, screen and (min-width: 768px) {
  .c-accordion__toggle::after {
    width: 4rem;
    height: 4rem;
    right: 3%;
    font-size: 1.9rem;
    line-height: 4rem;
  }
}
.c-accordion__toggle:hover {
  background: var(--PP_COLOR_BALLOON_LRED);
  transition: all 0.3s ease;
}
.c-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  border-radius: 0 0 1.5rem 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  background: var(--PP_COLOR_BALLOON_CONTENT_BG);
}
@media print, screen and (min-width: 768px) {
  .c-accordion__content {
    max-width: 960px;
    margin: 0 auto;
  }
}
.c-accordion__content-inner {
  padding: 3rem 6%;
}
@media print, screen and (min-width: 768px) {
  .c-accordion__content-inner {
    font-size: 1.6rem;
    font-weight: var(--FONT_WEIGHT);
    padding: 2.5rem 6% 6rem;
  }
}
@media print, screen and (min-width: 768px) {
  .c-accordion__content-inner p {
    margin-top: 0;
  }
}
.c-accordion__content-inner figure {
  margin-top: 2rem;
}
@media print, screen and (min-width: 768px) {
  .c-accordion__content-inner figure {
    margin-top: 3rem;
  }
}
.c-accordion__content-inner figure img {
  width: 100%;
  height: auto;
  border-radius: 0.7rem;
}
.c-accordion.is-open .c-accordion__content {
  max-height: 1000px;
  opacity: 1;
}
.c-accordion.is-open .c-accordion__toggle {
  width: 100%;
  padding: 1rem 0;
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: none;
}
@media print, screen and (min-width: 768px) {
  .c-accordion.is-open .c-accordion__toggle {
    font-size: 2.4rem;
    width: 960px;
    height: 10rem;
  }
}
.c-accordion.is-open .c-accordion__toggle::after {
  content: "ー";
}
@keyframes rotatePseudo {
  0% {
    transform: translateY(-50%) scaleX(-1) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) scaleX(-1) rotate(-360deg);
  }
}
.c-accordion .c-accordion__toggle.is-rotating::after {
  animation: rotatePseudo 0.3s ease-in-out;
}

/* ページ内ナビ
---------------------------------------- */
.c-page-nav {
  width: 66%;
  margin: 0 auto 8rem;
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-style: oblique;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) {
  .c-page-nav {
    width: 100%;
    max-width: 1090px;
    margin: 0 auto 17.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  .c-page-nav__list {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
  }
}
.c-page-nav__item {
  border-bottom: 1px var(--PP_COLOR_MGRAY) solid;
}
@media print, screen and (min-width: 768px) {
  .c-page-nav__item {
    width: 33.33333%;
    border-bottom: none;
    border-left: 1px var(--PP_COLOR_MGRAY) solid;
  }
  .c-page-nav__item:last-child {
    border-right: 1px var(--PP_COLOR_MGRAY) solid;
  }
}
.c-page-nav__item:nth-child(1) a::after {
  background-color: var(--PP_COLOR_BALLOON_RED);
}
.c-page-nav__item:nth-child(1) a:hover {
  background-color: var(--PP_COLOR_BALLOON_LRED);
  transition: all 0.3s ease;
}
.c-page-nav__item:nth-child(2) a::after {
  background-color: var(--PP_COLOR_BALLOON_BLUE);
}
.c-page-nav__item:nth-child(2) a:hover {
  background-color: var(--PP_COLOR_BALLOON_LBLUE);
  transition: all 0.3s ease;
}
.c-page-nav__item:nth-child(3) a::after {
  background-color: var(--PP_COLOR_BALLOON_YELLOW);
}
.c-page-nav__item:nth-child(3) a:hover {
  background-color: var(--PP_COLOR_BALLOON_LYELLOW);
  transition: all 0.3s ease;
}
.c-page-nav__link {
  padding: 1.7rem 1rem;
  font-size: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--FONT_WEIGHT_MEDIUM);
  line-height: 1;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) {
  .c-page-nav__link {
    padding: 1rem 1rem;
    font-size: 3.6rem;
    flex-flow: column;
  }
}
.c-page-nav__link::after {
  content: "";
  display: block;
  width: 4.4rem;
  height: 1.8rem;
  border-radius: 4.4rem;
  background-image: url("/assets/img/purpose/icon-arrow-bottom.svg");
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: center;
}
@media print, screen and (min-width: 768px) {
  .c-page-nav__link::after {
    margin-top: 2rem;
    display: block;
    width: 7.2rem;
    height: 2.9rem;
    background-size: 16px 16px;
  }
}
.c-page-nav__link:hover {
  transition: all 0.3s ease;
}

/* ビジョン2035
---------------------------------------- */
.purpose-vision2035 {
  padding-top: 0;
  border-bottom: 1px var(--PP_COLOR_MGRAY) solid;
  position: relative;
}
.purpose-vision2035__parallax {
  content: "";
  display: block;
  width: 100%;
  height: 14rem;
  background-image: url("/assets/img/purpose/img-vision-balloon-bg.svg");
  background-position: center top var(--vision-parallax, 0px);
  background-repeat: no-repeat;
  background-size: 150%;
  background-attachment: scroll;
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__parallax {
    height: 34rem;
    background-size: 100%;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-vision2035__parallax {
    height: 34rem;
    background-size: 100%;
    background-attachment: fixed;
  }
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__inner {
    max-width: 80%;
    margin: 0 auto;
    position: relative;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-vision2035__inner {
    max-width: 1090px;
    margin: 0 auto;
    position: relative;
  }
}
.purpose-vision2035__title {
  font-size: 2.8rem;
  margin: -7rem auto 6rem;
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT);
  font-style: oblique;
  letter-spacing: 0.05em;
  color: var(--COLOR_WHITE);
  width: 18rem;
  height: 18rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__title {
    font-size: 5.2rem;
    width: 28rem;
    height: 28rem;
    margin: -12rem auto 6.5rem;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-vision2035__title {
    font-size: 5.2rem;
    width: 28rem;
    height: 28rem;
    margin: -9rem 0 6.5rem -12rem;
  }
}
.purpose-vision2035__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/purpose/icon-bubble-red.svg");
  background-repeat: no-repeat;
  background-size: 99%;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__title::before {
    width: 28.5rem;
    height: 28.5rem;
  }
}
.purpose-vision2035__catchcopy {
  font-size: 1.8rem;
  margin-bottom: 4rem;
  text-align: center;
  line-height: var(--PP_FONT_LINE_HEIGHT);
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__catchcopy {
    font-size: 2.15rem;
    line-height: 1.2;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-vision2035__catchcopy {
    font-size: 2.15rem;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 0rem;
  }
}
.purpose-vision2035__main {
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT);
  letter-spacing: 0.05em;
  font-style: oblique;
  width: 80%;
  margin: 0 auto;
}
@media print, screen and (min-width: 992px) {
  .purpose-vision2035__main {
    text-align: left;
    line-height: 1.2;
    margin: 0;
    margin-bottom: 4rem;
    width: 100%;
  }
}
.purpose-vision2035__main-lead {
  font-size: 2.4rem;
  margin-bottom: 1.3rem;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__main-lead {
    font-size: 4.8rem;
  }
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__main-lead {
    font-size: 4.8rem;
    display: inline-block;
    margin-bottom: 0;
  }
}
.purpose-vision2035__main-highlight {
  font-size: 3rem;
  margin-bottom: 5rem;
  display: block;
  position: relative;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__main-highlight {
    font-size: 6.4rem;
    line-height: 1.2;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-vision2035__main-highlight {
    font-size: 6.4rem;
    display: inline-block;
    margin-bottom: 0;
    line-height: 1.2;
  }
}
.purpose-vision2035__main-highlight strong {
  position: relative;
  font-weight: var(--FONT_WEIGHT_MEDIUM);
  padding-top: 2rem;
}
.purpose-vision2035__main-highlight strong > span {
  position: relative;
  display: inline-block;
}
.purpose-vision2035__main-highlight strong > span .balloon {
  display: block;
  position: absolute;
  top: 0rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__main-highlight strong > span .balloon {
    top: 0rem;
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-vision2035__main-highlight strong > span .balloon {
    top: 0rem;
    width: 1.6rem;
    height: 1.6rem;
  }
}
.purpose-vision2035__main-highlight strong > span .balloon--red {
  background-image: url("/assets/img/purpose/icon-bubble-red.svg");
}
.purpose-vision2035__main-highlight strong > span .balloon--blue {
  background-image: url("/assets/img/purpose/icon-bubble-blue.svg");
}
.purpose-vision2035__main-highlight strong > span .balloon--lred {
  background-image: url("/assets/img/purpose/icon-bubble-lred.svg");
  margin-left: 1rem;
}
.purpose-vision2035__main-highlight strong > span .balloon--yellow {
  background-image: url("/assets/img/purpose/icon-bubble-yellow.svg");
  margin-left: 0.3rem;
}
.purpose-vision2035__text {
  font-size: 1.4rem;
  font-weight: var(--FONT_WEIGHT);
  width: 80%;
  margin: 0 auto;
  margin-bottom: 6rem;
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__text {
    width: 65rem;
    font-size: 1.8rem;
    margin: 0 0 6rem;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-vision2035__text {
    width: 65rem;
    font-size: 1.8rem;
    margin: 0 0 6rem;
  }
}
.purpose-vision2035__goals {
  margin-bottom: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  counter-reset: item;
}
@media print, screen and (min-width: 992px) {
  .purpose-vision2035__goals {
    margin-bottom: 3rem;
    justify-content: center;
    align-items: flex-start;
  }
}
.purpose-vision2035__item {
  line-height: 1.2;
  font-size: 1.6rem;
  padding: 0.6rem 3.5%;
  border: 0.3rem solid var(--PP_COLOR_BALLOON_RED);
  border-radius: 99rem;
  margin-bottom: 2.5rem;
  width: 90%;
}
.purpose-vision2035__item:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__item {
    font-size: 2.2rem;
    width: 550px;
    border: 0.435rem solid var(--PP_COLOR_BALLOON_RED);
    padding-left: 3rem;
    margin-bottom: 5rem;
  }
  .purpose-vision2035__item:last-child {
    margin-bottom: 5rem;
  }
}
.purpose-vision2035__item strong {
  counter-increment: item;
  display: flex;
  flex: row nowrap;
  align-items: center;
  font-weight: var(--FONT_WEIGHT_MEDIUM);
}
.purpose-vision2035__item strong::before {
  color: var(--PP_COLOR_BALLOON_RED);
  font-size: 4.4rem;
  content: counter(item) ". ";
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT);
  font-style: oblique;
  margin-right: 1rem;
  width: 3.5rem;
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__item strong::before {
    width: 6.5rem;
    font-size: 7rem;
  }
}
.purpose-vision2035__item:nth-child(1) {
  margin-right: 5%;
}
.purpose-vision2035__item:nth-child(2) {
  margin-left: 5%;
}
.purpose-vision2035__illustration {
  width: 35rem;
  height: 28.7rem;
  margin: 0 auto;
  display: none;
}
@media print, screen and (min-width: 768px) {
  .purpose-vision2035__illustration {
    width: 50rem;
    height: 38.5rem;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-vision2035__illustration {
    display: block;
    position: absolute;
    bottom: -2rem;
    right: calc(50% - 70rem);
    width: 67rem;
    height: 83.5rem;
    rotate: -60deg;
  }
}
.purpose-vision2035__illustration img,
.purpose-vision2035__illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Action Strategies / 行動指針
---------------------------------------- */
.purpose-behavioral-guidelines {
  border-bottom: 1px var(--PP_COLOR_MGRAY) solid;
}
.purpose-behavioral-guidelines__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.purpose-behavioral-guidelines__title {
  font-size: 2.8rem;
  margin: 0rem auto 6rem;
  padding: 4rem;
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT);
  font-style: oblique;
  letter-spacing: 0.05em;
  color: var(--COLOR_WHITE);
  width: 18rem;
  height: 18rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 768px) {
  .purpose-behavioral-guidelines__title {
    font-size: 4.2rem;
    width: 29.5rem;
    height: 29.5rem;
    padding: 0 4rem;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-behavioral-guidelines__title {
    font-size: 4.2rem;
    width: 29.5rem;
    height: 29.5rem;
    position: absolute;
    top: 50%;
    right: 4.8rem;
    transform: translateY(-50%);
    padding: 0 8rem;
  }
}
.purpose-behavioral-guidelines__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/purpose/icon-bubble-blue.svg");
  background-repeat: no-repeat;
  background-size: 19rem 18.8rem;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(-1);
}
@media print, screen and (min-width: 768px) {
  .purpose-behavioral-guidelines__title::before {
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
  }
}
.purpose-behavioral-guidelines__catchcopy {
  font-size: 2.6rem;
  margin-bottom: 5rem;
  text-align: center;
  line-height: var(--PP_FONT_LINE_HEIGHT);
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT);
  font-style: oblique;
}
@media print, screen and (min-width: 768px) {
  .purpose-behavioral-guidelines__catchcopy {
    font-size: 4.6rem;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-behavioral-guidelines__catchcopy {
    font-size: 4.6rem;
    text-align: left;
  }
}
@media print, screen and (min-width: 768px) {
  .purpose-behavioral-guidelines__catchcopy .catch2 br {
    display: none;
  }
}
.purpose-behavioral-guidelines__catchcopy span {
  border-bottom: var(--PP_COLOR_BALLOON_RED) solid 0.55rem;
  display: inline;
  padding: 0 0.5rem 0.5rem;
  white-space: nowrap;
}
@media print, screen and (min-width: 768px) {
  .purpose-behavioral-guidelines__catchcopy span {
    border-width: 1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .purpose-behavioral-guidelines__list {
    margin: 0 auto;
    width: fit-content;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-behavioral-guidelines__list {
    width: auto;
  }
}
.purpose-behavioral-guidelines__item {
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2em;
  /* アイコン1 */
  /* アイコン2 */
  /* アイコン3 */
}
.purpose-behavioral-guidelines__item::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.75em;
  width: 1.8rem;
  height: 1.8rem;
  background-size: 1.8rem 1.8rem;
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 768px) {
  .purpose-behavioral-guidelines__item::before {
    top: 0.8em;
    width: 2.5rem;
    height: 2.5rem;
    background-size: 2.5rem 2.5rem;
  }
}
.purpose-behavioral-guidelines__item:nth-child(3n+1)::before {
  background-image: url("/assets/img/purpose/icon-bubble-red.svg");
}
.purpose-behavioral-guidelines__item:nth-child(3n+2)::before {
  background-image: url("/assets/img/purpose/icon-bubble-blue.svg");
}
.purpose-behavioral-guidelines__item:nth-child(3n)::before {
  background-image: url("/assets/img/purpose/icon-bubble-yellow.svg");
}
.purpose-behavioral-guidelines__item strong {
  font-size: 1.8rem;
  font-weight: var(--FONT_WEIGHT_MEDIUM);
}
@media print, screen and (min-width: 768px) {
  .purpose-behavioral-guidelines__item strong {
    font-size: 2.4rem;
  }
}
.purpose-behavioral-guidelines__item p {
  font-weight: var(--FONT_WEIGHT);
  margin-top: 0;
}
@media print, screen and (min-width: 768px) {
  .purpose-behavioral-guidelines__item p {
    font-size: 1.8rem;
  }
}

/* Commitments / プロミス
---------------------------------------- */
.purpose-promise__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.purpose-promise__title {
  font-size: 2.6rem;
  margin: 0rem auto 6rem;
  text-align: center;
  padding: 2rem;
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT);
  font-style: oblique;
  color: var(--COLOR_WHITE);
  width: 18rem;
  height: 18rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 768px) {
  .purpose-promise__title {
    font-size: 4.2rem;
    width: 29.5rem;
    height: 29.5rem;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-promise__title {
    font-size: 4.2rem;
    width: 29.5rem;
    height: 29.5rem;
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
  }
}
.purpose-promise__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/purpose/icon-bubble-yellow.svg");
  background-repeat: no-repeat;
  background-size: 19rem 18.8rem;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media print, screen and (min-width: 768px) {
  .purpose-promise__title::before {
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
  }
}
.purpose-promise__catchcopy {
  font-size: 5.5vw;
  margin-bottom: 5rem;
  text-align: center;
  line-height: var(--PP_FONT_LINE_HEIGHT);
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT);
  font-style: oblique;
}
@media print, screen and (min-width: 768px) {
  .purpose-promise__catchcopy {
    font-size: 4.8rem;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-promise__catchcopy {
    font-size: 4.8rem;
    text-align: left;
    padding-left: 35%;
  }
}
.purpose-promise__catchcopy span {
  border-bottom: var(--PP_COLOR_BALLOON_BLUE) solid 0.55rem;
  display: inline;
  padding: 0 0.5rem 0.5rem;
  white-space: nowrap;
}
@media print, screen and (min-width: 768px) {
  .purpose-promise__catchcopy span {
    border-width: 1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .purpose-promise__list {
    margin: 0 auto;
    width: fit-content;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-promise__list {
    padding-left: 35%;
    width: auto;
  }
}
.purpose-promise__item {
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5em;
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT);
  line-height: 1.8;
  /* アイコン1 */
  /* アイコン2 */
  /* アイコン3 */
}
@media print, screen and (min-width: 768px) {
  .purpose-promise__item {
    font-size: 2rem;
  }
}
.purpose-promise__item::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.4em;
  width: 1.8rem;
  height: 1.8rem;
  background-size: 1.8rem 1.8rem;
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 768px) {
  .purpose-promise__item::before {
    top: 0.4em;
    width: 2.5rem;
    height: 2.5rem;
    background-size: 2.5rem 2.5rem;
  }
}
.purpose-promise__item:nth-child(3n+1)::before {
  background-image: url("/assets/img/purpose/icon-bubble-red.svg");
}
.purpose-promise__item:nth-child(3n+2)::before {
  background-image: url("/assets/img/purpose/icon-bubble-blue.svg");
}
.purpose-promise__item:nth-child(3n)::before {
  background-image: url("/assets/img/purpose/icon-bubble-yellow.svg");
}

/* コミュニケーションバルーン
---------------------------------------- */
.purpose-communication {
  background: var(--PP_COLOR_LGRAY);
}
@media print, screen and (min-width: 768px) {
  .purpose-communication {
    padding: 14rem 0;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-communication__inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.purpose-communication__title {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  text-align: center;
  padding: 0 2rem;
  display: block;
  font-size: 3.6rem;
  font-style: oblique;
  font-weight: var(--FONT_WEIGHT);
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__title {
    margin-bottom: 1rem;
    font-size: 6.7rem;
  }
}
.purpose-communication__toggle {
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 0rem;
  background-image: url("/assets/img/purpose/icon-bubble-red.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--COLOR_WHITE);
  font-size: 1.2rem;
  position: relative;
  transform: scaleX(-1);
  transition: all 0.3s ease;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__toggle {
    width: 4.2rem;
    height: 4.2rem;
    margin: 0 auto 0;
    font-size: 1.8rem;
  }
}
.purpose-communication__toggle::after {
  content: "＋";
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  color: var(--COLOR_WHITE);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scaleX(-1);
  text-indent: 0;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  line-height: 3rem;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__toggle::after {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.purpose-communication__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
  padding-bottom: 1rem;
}
.purpose-communication.is-open .purpose-communication__content {
  max-height: 1500px;
  opacity: 1;
}
.purpose-communication.is-open .purpose-communication__toggle::after {
  content: "ー";
}
.purpose-communication__dock {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  padding: 2rem;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__dock {
    gap: 3rem;
  }
}
.purpose-communication__dock-item {
  transition: transform 0.2s ease;
  will-change: transform;
}
.purpose-communication__dock-item img {
  width: 4.5rem;
  height: auto;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__dock-item img {
    width: 6.8rem;
  }
}
.purpose-communication__lead {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 3rem;
  font-weight: var(--FONT_WEIGHT);
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__lead {
    font-size: 2.4rem;
    margin-bottom: 5rem;
  }
}
.purpose-communication__lead br {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__lead br {
    display: block;
  }
}
.purpose-communication__balloon-list .swiper-wrapper {
  padding-top: 4rem;
  margin-bottom: 3rem;
}
@media print, screen and (min-width: 992px) {
  .purpose-communication__balloon-list .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.5rem;
  }
}
.purpose-communication__balloon {
  width: 25rem;
  height: 25.2rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--COLOR_WHITE);
  text-align: center;
  padding: 3rem 4% 4%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__balloon {
    width: 37rem;
    height: 37.2rem;
    padding: 5rem 3rem 3rem;
  }
}
.purpose-communication__balloon h3 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT_MEDIUM);
  font-style: oblique;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__balloon h3 {
    font-size: 2.4rem;
    margin-bottom: 0.25rem;
  }
}
.purpose-communication__balloon h3:after {
  content: "…";
  display: block;
  font-size: 2.5rem;
  line-height: 0.8;
  font-weight: var(--FONT_WEIGHT);
  margin: -0.6rem 0 0.6rem 0;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__balloon h3:after {
    margin: -1.5rem 0 1rem 0;
    font-size: 3.8rem;
  }
}
.purpose-communication__balloon h3 + p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: var(--FONT_WEIGHT);
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__balloon h3 + p {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}
.purpose-communication__balloon-tag {
  font-size: 1.3rem;
  line-height: 1.1;
  margin-top: 1rem;
  font-family: var(--PP_FONT_FAMIRY_SECONDARY);
  font-weight: var(--FONT_WEIGHT_MEDIUM);
  font-style: oblique;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__balloon-tag {
    line-height: 1.3;
    font-size: 1.8rem;
    margin-top: 2rem;
  }
}
.purpose-communication__balloon-tag strong {
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_MEDIUM);
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__balloon-tag strong {
    font-size: 2.4rem;
  }
}
.purpose-communication__balloon--red {
  background-image: url("/assets/img/purpose/icon-bubble-red.svg");
}
.purpose-communication__balloon--blue {
  background-image: url("/assets/img/purpose/icon-bubble-blue.svg");
}
.purpose-communication__balloon--yellow {
  background-image: url("/assets/img/purpose/icon-bubble-yellow.svg");
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__color-meaning {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 992px) {
  .purpose-communication__color-meaning {
    max-width: 1090px;
    margin: 0 auto;
  }
}
.purpose-communication__color-meaning h4 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__color-meaning h4 {
    font-size: 2.4rem;
    text-align: left;
    margin-bottom: 1rem;
  }
}
.purpose-communication__color-meaning .color-meaning__list {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__color-meaning .color-meaning__list {
    text-align: left;
  }
}
.purpose-communication__color-meaning .color-meaning__item {
  margin-bottom: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__color-meaning .color-meaning__item {
    margin-bottom: 0rem;
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }
}
.purpose-communication__color-meaning .color-meaning__item-icon {
  display: block;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__color-meaning .color-meaning__item-icon {
    margin-bottom: 0rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 1rem;
  }
}
.purpose-communication__color-meaning .color-meaning__item-icon img {
  width: 2.25rem;
  height: auto;
}
.purpose-communication__color-meaning .color-meaning__item-text {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__color-meaning .color-meaning__item-text {
    display: inline-block;
    margin-bottom: 0rem;
  }
}

.purpose-communication__dock-area {
  width: 100%;
  display: flex;
  justify-content: center;
}
.purpose-communication__dock-area canvas {
  border-radius: 1rem;
  width: 100%;
  cursor: grab;
}
.purpose-communication__dock-area canvas:active {
  cursor: grabbing;
}
@media print, screen and (min-width: 768px) {
  .purpose-communication__dock-area canvas {
    width: 800px;
  }
}

@media print, screen and (min-width: 768px) {
  .swiper {
    overflow: visible;
  }
}

.swiper-container {
  position: relative;
}

/* ===========================================================
   ユーティリティクラス
=========================================================== */
.u-text-center {
  text-align: center;
}

.u-mb-40 {
  margin-bottom: 40px;
}

@media print, screen and (min-width: 0) {
  .u-hide-xs {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .u-hide-md {
    display: none;
  }
}
@media print, screen and (min-width: 992px) {
  .u-hide-lg {
    display: none;
  }
}

.u-disp-md {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .u-disp-md {
    display: inline;
  }
}/*# sourceMappingURL=purpose-en.css.map */