@charset "UTF-8";

/* =====================
  Custom properties
===================== */
:root {
  --black: #2f2f2f;
  --white: #ffffff;
  --pink: #e40441;
  --gray: #888685;
  --sanserif: 'Noto Sans JP', sans-serif;
  --mincho: 'Yu Mincho Demibold', 'YuMincho Demibold', '游明朝', 'Yu Mincho Regular', 'Yu Mincho',
    'YuMincho Medium', serif;
  --marcellus: 'Marcellus', serif;
  --heading02: sans-serif;

  /* ==== アニメーション easing関数 ==== */
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeOutExpo: cubic-bezier(0.87, 0, 0.13, 1);
  --easeOutBack: cubic-bezier(0.34, 1.56, 0.64, 1);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
  --easeInCirc: cubic-bezier(0.55, 0, 1, 0.45);
  --easeInOutBack: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* ==== テキスト選択時の色 ==== */
::selection {
  background: auto;
}

/* ==== フォームのplaceholder 文字色 ==== */
::placeholder {
  color: auto;
}

/* =====================
  hover
===================== */
@media (any-hover: hover) {
  .hover-op {
    will-change: opacity;
    transition: opacity 250ms ease 0s;
    &:hover {
      opacity: 0.6;
    }
  }
}

/* =====================
  common
===================== */
html,
body {
  color: var(--black);
  line-height: 1.8;
}
.heading02 {
  margin-bottom: 40px;
  text-align: center;
}
.heading02__en {
  font-size: 40px;
  color: var(--pink);
  line-height: 1.3;
  padding-bottom: 4px;
}
/* PC */
@media print, screen and (min-width: 768px) {
  body {
    min-width: 1440px;
  }
  .sp {
    display: none;
  }
}
@media not all and (min-width: 768px) {
  .pc {
    display: none;
  }
}

/* =====================
  utility
===================== */
.mincho {
  font-family: var(--mincho);
}
.marcellus {
  font-family: var(--marcellus);
}
.fwb {
  font-weight: bold;
}
.tac {
  text-align: center;
}

/* =====================
  アニメーション
===================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* テキストスライドインアニメーション */
.text-slide-in {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* 背景アニメーション */
.text-slide-in__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--pink); /* お好みの色に変更 */
  z-index: -1;
  animation: bgExpand 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes bgExpand {
  to {
    width: 100%;
  }
}

/* テキスト部分 */
.text-slide-in__text {
  position: relative;
  display: inline-block;
}

.text-slide-in__text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: charAppear 0.6s ease-out forwards;
}

.text-slide-in__text .space {
  display: inline-block;
  width: 0.5em;
}

@keyframes charAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
  header
===================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px 0;
}

/* =====================
  mv
===================== */
.mv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 111px;
  position: relative;
  margin-bottom: 96px;
  padding-inline: 80px;
}
.mv::after {
  content: '';
  position: absolute;
  top: -39px;
  left: 0;
  background-image: url(../img/sdgs/mv-bg.png);
  width: 1360px;
  height: 550px;
  z-index: -1;
}
.mv__name {
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  background-color: var(--pink);
  padding: 0 24px;
  margin-bottom: 40px;
}
.mv__heading {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 48px;
}
.mv__text-btn {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
}
.mv__text-btn::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(../img/sdgs/arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* =====================
  article01
===================== */
.article01 {
  padding: 32px 80px 120px;
  text-align: center;
  position: relative;
}
.article01::after {
  content: '';
  position: absolute;
  top: 40px;
  right: 1000px;
  background-image: url(../img/sdgs/article01-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 319px;
  height: 406px;
  z-index: -1;
}
.article01 h3 {
  margin-bottom: 48px;
}
.article01 .heading__ja {
  font-size: 24px;
  font-weight: 600;
  color: var(--pink);
}
.article01 .heading__en {
  font-size: 18px;
  color: var(--gray);
}
.article01__description {
  margin-bottom: 64px;
}
.article01__list {
  display: flex;
  gap: 48px;
  justify-content: center;
}
.article01__item {
  padding: 12px 0 32px;
  border: 2px solid var(--gray);
  border-radius: 16px;
  width: 246px;
  background-color: var(--white);
}
.article01__text-ja {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 4px;
  line-height: 1.3;
}
.article01__text-en {
  font-size: 15px;
  color: var(--gray);
  line-height: 1;
}

/* =====================
  article02
===================== */
.article02 {
  position: relative;
  padding: 96px 80px 120px;
  background: linear-gradient(180deg, #f6f6f6 0%, #f2dadb 100%);
}
.article02::after {
  content: '';
  position: absolute;
  top: -104px;
  right: 40px;
  background-image: url(../img/sdgs/article02-deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 151px;
  height: 151px;
}
.article02__box {
  padding: 64px 80px 80px;
  border-radius: 40px;
  background-color: var(--white);
}
.article02__box:first-child {
  margin-bottom: 64px;
}
.article02__box-content {
  display: flex;
  align-items: center;
  gap: 88px;
}
.article02__text {
  width: 514px;
}

/* =====================
  article03
===================== */
.article03 {
  padding: 96px 80px 120px;
}
.article03__description {
  text-align: center;
  padding-bottom: 80px;
}
.article03__list {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  justify-content: center;
}
.article03__item {
  background-color: #f3f3f3;
  border-radius: 40px;
  padding: 56px 40px;
}
.article03__number01 {
  position: relative;
}
.article03__number01::after {
  content: '01';
  position: absolute;
  font-family: var(--marcellus);
  top: -40px;
  left: 40px;
  font-size: 48px;
  color: var(--pink);
}
.article03__number02 {
  position: relative;
}
.article03__number02::after {
  content: '02';
  position: absolute;
  font-family: var(--marcellus);
  top: -40px;
  left: 40px;
  font-size: 48px;
  color: var(--pink);
}
.article03__number03 {
  position: relative;
}
.article03__number03::after {
  content: '03';
  position: absolute;
  font-family: var(--marcellus);
  top: -40px;
  left: 40px;
  font-size: 48px;
  color: var(--pink);
}
.article03__number04 {
  position: relative;
}
.article03__number04::after {
  content: '04';
  position: absolute;
  font-family: var(--marcellus);
  top: -40px;
  left: 40px;
  font-size: 48px;
  color: var(--pink);
}
.article03__title {
  padding: 40px 0 24px;
}
.article03__title-ja {
  font-size: 20px;
  font-weight: 600;
  color: var(--pink);
}
.article03__title-en {
  font-size: 15px;
  color: var(--gray);
}
.article03__text {
  width: 528px;
  padding-bottom: 40px;
}
.article03__icon-list {
  display: flex;
  gap: 16px;
}
.article03__icon img {
  width: 88px;
  height: auto;
  object-fit: contain;
}

/* =====================
  article04
===================== */
.article04 {
  padding: 168px auto;
  background-image: url(../img/sdgs/article04-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 413px;
  position: relative;
}
.article04__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
}
.article04__text-ja {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 10px;
  line-height: 1.3;
}
.article04__text-en {
  font-size: 20px;
  color: var(--white);
  opacity: 0.7;
}

/* =====================
  footer
===================== */
.footer {
  position: relative;
  text-align: center;
}
.footer__logo-image {
  display: block;
  padding-bottom: 16px;
  padding-top: 32px;
}
.footer__copy {
  font-size: 12px;
  color: var(--gray);
  padding-bottom: 32px;
}
.footer__btn {
  background-image: url(../img/sdgs/footer-btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 64px;
  height: 64px;
  position: absolute;
  bottom: 32px;
  right: 80px;
}
