@charset "UTF-8";
/* base */
/* setting */
:root {
  /**********
  サイズ size
  **********/
  /* カラム幅など */
  --size-width-content-max: 970px;
  --size-width-content-950: 950px;
  /* 全体の左右余白 */
  --size-padding-content: 20px;
  /**********
  レイヤー（z-index） layer
  変数名や階層数などは運用しながら調整予定
  **********/
  --layer-under: -1; /* 背景的に使いたい場合など */
  --layer-base: 1; /* 通常 */
  --layer-middle: 100; /* ちょっと上げたい場合、absoluteにして被せたいときなど */
  --layer-high: 200; /* fixedな要素など */
  /* 全社マストヘッド:5000000 */
  --layer-overlay: 5000100; /* 要素全体に被せるoverlayなど */
  --layer-modal: 5000200; /* overlayの上で用いるモーダルなど */
  --layer-overModal: 5000300; /* モーダル上のボタンなど */
  /**********
  カード影 box-shadow
  **********/
  --shadow-lv1: 0 10px 30px 0 rgba(0, 0, 0, 0.04), 0 6px 9px 0 rgba(0, 0, 0, 0.02);
  --shadow-lv2: 0 15px 45px 0 rgba(0, 0, 0, 0.15), 0 10px 15px 0 rgba(0, 0, 0, 0.2);
  --shadow-lv3: 0 15px 45px 0 rgba(0, 0, 0, 0.15), 0 10px 15px 0 rgba(0, 0, 0, 0.2);
  /**********
  マウスオーバー時のopacity
  **********/
  --hover-opacity: 0.7;
  /**********
  カラー col
  **********/
  --col-sdgs: #0099d9;
  --col-sdgs-01: #d62839;
  --col-sdgs-02: #d4a13d;
  --col-sdgs-03: #4c9738;
  --col-sdgs-04: #b91c2d;
  --col-sdgs-05: #e73f2a;
  --col-sdgs-06: #2fb1d3;
  --col-sdgs-07: #f1bc1c;
  --col-sdgs-08: #991d40;
  --col-sdgs-09: #eb672c;
  --col-sdgs-10: #cd1b61;
  --col-sdgs-11: #f2982b;
  --col-sdgs-12: #b8872f;
  --col-sdgs-13: #3c7b43;
  --col-sdgs-14: #178dc9;
  --col-sdgs-15: #58b331;
  --col-sdgs-16: #076394;
  --col-sdgs-17: #164667;
  --col-text: #222329;
  --col-text-sub: #9b9da5;
  --col-bor: #ebebed;
  --col-key: #3787b8;
  --col-daiwa: #0b6c3a;
  --col-inverse: #fff;
  --col-inverse-rgb: 255, 255, 255;
  --col-bg-lv1: #fff;
  --col-bg-lv2: #f9f9f9;
  --col-bg-lv3: #ebebeb;
  --col-bg-education: #f0fafc;
  --col-bg-education2: #cae6f1;
  --col-bg-inverse: #222329;
  --col-black: #000;
  --col-sns-twitter: #55acee;
  --col-sns-facebook: #1877f2;
  --col-sns-line: #00b900;
  --col-bor-green: #306d2e;
  --col-title:#333333;
  --col-text-link: #5E9CC1;
  /**********
  アニメーション時間 --animation-duration
  **********/
  --animation-duration-short: 0.3s;
}

/**********
メディアクエリ
**********/
@custom-media --small-screen (width <= 700px);
@custom-media --x-small-screen (width < 375px);
@custom-media --middle-screen (700px <= width < 990px);
@custom-media --not-small-screen (width > 700px);
@media (--not-small-screen) {
  .showImgPc {
    display: inline;
  }
  .showImgSp {
    display: none;
  }
}
@media (--small-screen) {
  .showImgPc {
    display: none;
  }
  .showImgSp {
    display: inline;
  }
}
@media (--not-small-screen) {
  .showInlinePc {
    display: inline;
  }
  .showInlineSp {
    display: none;
  }
}
@media (--small-screen) {
  .showInlinePc {
    display: none;
  }
  .showInlineSp {
    display: inline;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

.Main table,
.Main tbody,
.Main tfoot,
.Main thead,
.Main tr,
.Main th,
.Main td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
}

img {
  vertical-align: middle;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

input,
button,
select,
textarea {
  max-width: 100%;
  box-shadow: none;
  vertical-align: middle;
}

button {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: vertical;
}

address,
em,
strong,
th,
dfn {
  font-style: normal;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* base */
html {
  width: 100%;
  font-size: 62.5%; /* 1remを10pxにして計算しやすくする */
}

body {
  width: 100%;
  background: var(--col-bg-lv2);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-text-size-adjust: none;
}

p,
li,
h2,
h3,
h4,
dt,
dd,
a,
button {
  color: var(--col-text);
  font-size: 1.6rem;
  line-height: 1.875;
}
@media (--small-screen) {
  p,
  li,
  h2,
  h3,
  h4,
  dt,
  dd,
  a,
  button {
    font-size: 1.4rem;
  }
}

a,
:link {
  color: var(--col-sdgs);
}
@media (--not-small-screen) {
  a,
  :link {
    transition: var(--animation-duration-short);
  }
  a:hover,
  :link:hover {
    opacity: var(--hover-opacity);
  }
}

.Main {
  position: relative;
  overflow: hidden;
}

.motherWrap {
  position: relative;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/bg_v2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.motherWrap--article {
  position: relative;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/bg_v2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* componet */
/* heading */
.Heading {
  display: flex;
  align-items: center;
  width: var(--size-width-content-max);
  margin: 0 auto;
  color: var(--col-text);
}
@media (--small-screen) {
  .Heading {
    display: block;
    padding: 0 20px;
  }
}
.Heading__word {
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  font-size: 6rem;
  line-height: 1;
}
@media (--small-screen) {
  .Heading__word {
    font-size: 4rem;
  }
}
.Heading__title {
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  margin-left: 36px;
  padding: 14px 0 14px 36px;
  border-left: 1px solid var(--col-text);
  font-size: 1.6rem;
}
@media (--small-screen) {
  .Heading__title {
    margin-top: 4px;
    margin-left: 0;
    padding: 0;
    border: 0;
    font-size: 1.8rem;
  }
}

/* ツールチップ（PCのみ） */
.Tooltip {
  position: relative;
}
.TooltipWrap {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  z-index: 100;
}
.Tooltip__contentWrap {
  height: auto;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
}
.Tooltip__content {
  visibility: hidden;
  position: absolute;
  bottom: calc(100% + 20px);
  left: 50%;
  transform: translate(-50%, 10px);
  transition: all var(--animation-duration-short) ease-out;
  opacity: 0;
  z-index: 100;
}
.Tooltip__content--artlicle {
  visibility: hidden;
  position: absolute;
  bottom: calc(100% + 20px);
  left: 0;
  transform: translate(0, 20px);
  transition: all var(--animation-duration-short) ease-out;
  opacity: 0;
  z-index: 100;
}
.Tooltip__contentInner {
  position: relative;
  padding: 15px 20px;
  border-radius: 3px;
  background: rgba(34, 35, 41, 0.75);
}
.Tooltip__contentInner::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-width: 6px 5.5px 0 5.5px;
  border-style: solid;
  border-color: rgba(34, 35, 41, 0.75) transparent transparent transparent;
}
.Tooltip__contentInner--article::before {
  left: 8%;
}
.Tooltip__trigger {
  cursor: help;
}
.Tooltip__trigger--article {
  cursor: help;
}
.Tooltip__trigger:hover + .Tooltip__content {
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
  opacity: 1;
}
.Tooltip__trigger:hover .Tooltip__content--artlicle {
  visibility: visible;
  left: 0;
  transform: translate(0, 8px);
  transition-delay: 0s;
  opacity: 1;
}
.Tooltip__text {
  color: var(--col-inverse);
  font-size: 1.2rem;
  white-space: nowrap;
}

/* module */
/*トップページの背景オブジェクト*/
.Main--topbgobj {
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_obje_yellow.svg"), url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_edu_blue_r.svg"), url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_edu_pink_l.svg"), url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_ap_green_l.svg"), url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_ap_green_r.svg"), url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_edu_blue_r.svg");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 810px 846px, 700px 700px, 700px 700px, 700px 700px, 900px 900px, 760px 760px;
  background-position: top 860px left -30px, top 1560px right -200px, top 2890px left -40px, top 4740px left -80px, top 5880px right -150px, top 8900px right -190px;
}

/*有識者メッセージページの背景オブジェクト*/
.messageBgObj {
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_obje_yellow.svg"), url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_edu_blue_r.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: 810px 846px, 700px 700px;
  background-position: top 530px left -30px, top 1300px right -130px;
}

/* mainVisual */
.MainVisual {
  position: relative;
  height: 670px;
  background-color: #231815;
  /* 本公開用 */
  /* コンテンツ */
  /* サブタイトル */
  /* タイトル */
  /* 企業リンク */
  /* Y!ロゴ */
}
.MainVisual__videoWrap {
  position: absolute;
  z-index: var(--layer-base);
  top: 0;
  left: 0;
  width: 100%;
  height: 670px;
  overflow: hidden;
}
.MainVisual__video {
  position: relative;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-width: 1210px;
  transform: translate(-50%, -50%);
}
.MainVisual__content {
  position: relative;
  z-index: var(--layer-middle);
  padding-top: 230px;
  text-align: center;
}
.MainVisual__subTitleLabel {
  width: 580px;
  margin: 0 auto;
  padding: 15px 0;
}
.MainVisual__subTitle {
  width: 100%;
  height: 50px;
  overflow: hidden;
  background: url("https://s.yimg.jp/images/expert/feature/docs4sdgs/images/mv_subTitle.svg") no-repeat center/contain;
  text-indent: -9999px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3)); /* 対応していないブラウザは切り捨て */
  transform: translateZ(0); /* iOSバグ対策 safariにGPUレイヤーの作成を促す */
}
.MainVisual__title {
  width: 100%;
  height: 76px;
  margin-top: 20px;
  overflow: hidden;
  background: url("https://s.yimg.jp/images/expert/feature/docs4sdgs/images/mv_logo.svg") no-repeat center/contain;
  text-indent: -9999px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3)); /* 対応していないブラウザは切り捨て */
  transform: translateZ(0); /* iOSバグ対策 safariにGPUレイヤーの作成を促す */
}
.MainVisual__logo1 {
  width: 173.23px;
  height: 29px;
  margin: 36px auto 0;
  position: relative;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/logo_y_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3)); /* 対応していないブラウザは切り捨て */
  transform: translateZ(0); /* iOSバグ対策 safariにGPUレイヤーの作成を促す */
}

.MainVisual__logo1Link {
  display: block;
  position: absolute;
  height: 48px;
  top: 0;
  overflow: hidden;
  text-indent: -200%;
}
.MainVisual__logo1Link--news {
  height: 49px;
}
.MainVisual__logo1Link--1 {
  left: 0;
  width: 265px;
}
.MainVisual__logo1Link--2 {
  right: 0;
  width: 212px;
}
.MainVisual__logo1Link--news1 {
  left: 0;
  width: 179px;
}
.MainVisual__logo1Link--news2 {
  right: 0;
  width: 212px;
}
.MainVisual__link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 90px;
}
.MainVisual__link__item {
  position: relative;
  padding: 0 10px;
}
.MainVisual__link__item:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.MainVisual__link__item--sponsored {
  color: var(--col-bg-lv1);
  position: absolute;
  font-size: 1rem;
  top: -15px;
  left: 20px;
}
.MainVisual__link__creators {
  display: block;
  height: 30px;
  overflow: hidden;
  text-indent: -9999px;
}
.MainVisual__link__daiwa {
  display: block;
  width: 185px;
  height: 54px;
  overflow: hidden;
  text-indent: -9999px;
  background: url("../images/logo_daiwaConnect.svg") no-repeat center/contain;
}
.MainVisual__link__creators {
  width: 184px;
  background: url("../images/logo_creators.svg") no-repeat center/contain;
}
.MainVisual__yahoojapan {
  position: absolute;
  z-index: var(--layer-middle);
  top: 20px;
  right: 20px;
  width: 132px;
  height: 33px;
  background: url("https://s.yimg.jp/c/logo/f/2.0/yj_w_28_2x.png") no-repeat center/contain;
  text-indent: -9999px;
}
.MainVisual__yahoojapan--ly {
  background: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/images/logo_lineyahoo_white.svg") no-repeat center/contain;
  width: 150px;
}
.MainVisual__connect {
  z-index: 1000;
  width: 100%;
  position: absolute;
  bottom: 40px;
}
.MainVisual__connect-inner {
  width: 990px;
  margin: 0 auto;
  text-align: right;
}
.MainVisual__connect--link {
  color: var(--col-bg-lv1);
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  margin: 0 0 0 auto;
  width: 460px;
  text-align: right;
}
.MainVisual__connect--link br {
  display: none;
}

/* introduction */
.Introduction {
  /* キャッチ */
  /* リード文 */
  /* SDGsとは？ */
  /* 女性国際デー */
  /* 記事文章内の文字を20%小さく、または大きくする。 */
}
.Introduction__anchor {
  position: absolute;
  height: 0;
  width: 100%;
  top: -140px;
}
.Introduction__blur {
  position: relative;
  padding: 78px 20px 0;
}
.Introduction__blur--top::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  height: 480px;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/photo_introduction.jpg");
  background-size: cover;
}
.Introduction__blur--article::before {
  content: "";
  display: block;
  position: absolute;
  top: 156px;
  right: 0;
  width: 470px;
  height: 264px;
  background-size: cover;
}
.Introduction__blurInner {
  width: var(--size-width-content-max);
  margin: 0 auto;
}
.Introduction__catch {
  position: relative;
  width: 100%;
  color: var(--col-black);
  font-size: 46px;
  font-weight: 600;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "HGS明朝E", serif;
}
.Introduction__catch > br {
  display: none;
}
.Introduction__lead {
  position: relative;
  margin: 26px 230px 0 0;
  padding: 26px 36px 24px;
  background: var(--col-bg-lv1);
  width: 740px;
}
.Introduction__leadTitle {
  padding-bottom: 30px;
  color: var(--col-key);
  font-size: 1.8rem;
  font-weight: 600;
}
.Introduction__leadText + .Introduction__leadText {
  margin-top: 20px;
}
.Introduction__leadText {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.Introduction__leadText big {
  font-size: 120%;
}
.Introduction__leadText span {
  margin-bottom: 0.5em;
}
.Introduction__sdgs {
  position: relative;
  margin-top: 106px;
}
.Introduction__sdgsText {
  width: 301px;
}
.Introduction__sdgsHeadline--pc {
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  align-items: center;
  height: 47px;
}
.Introduction__sdgsHeadline--sp {
  display: none;
}
.Introduction__sdgsExplanation {
  width: 50px;
  line-height: 50px;
  text-align: center;
  margin-right: 20px;
  background-color: var(--col-sdgs);
  color: var(--col-inverse);
  font-size: 1.6rem;
}
.Introduction__sdgsTitle {
  position: relative;
  color: var(--col-black);
  font-size: 46px;
  font-weight: 600;
  width: 500px;
  font-feature-settings: "palt" 1;
  white-space: nowrap;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
}
.Introduction__sdgsContent {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
  z-index: 1;
}
.Introduction__sdgsAnswer {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}
.Introduction__sdgsExplain {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
}
.Introduction__sdgsExplain--small {
  font-size: 12px;
  margin-top: 10px;
}
.Introduction__sdgsIcon {
  display: flex;
  flex: none;
  flex-wrap: wrap;
  width: 648px;
}
@media (--middle-screen) {
  .Introduction__sdgsIcon {
    /* iPhone横向きでアイコンが途切れないようにする */
    width: 60%;
  }
}
.Introduction__sdgsIcon .SdgsIconList__item {
  width: 98px;
  height: 98px;
  margin-bottom: 10px;
  margin-left: 10px;
}
.Introduction__sdgsIcon .SdgsIcon {
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}
.Introduction__sdgsIcon .SdgsIcon:hover {
  opacity: 0.6;
  transition: opacity 0.6s;
}
.Introduction__sdgsIcon .SdgsIconList__item:last-of-type .SdgsIcon:hover {
  opacity: 1;
}
.Introduction__womansDay {
  position: relative;
  padding: 30px var(--size-padding-content) 90px;
  background: url("../images/bg_womanLeft.svg") no-repeat left center/268px 313px, url("../images/bg_womanRight.svg") no-repeat right center/268px 313px;
  background-color: var(--col-bg-lv1);
  text-align: center;
}
.Introduction__womansDayTitle {
  position: relative;
  width: 100%;
  height: 27px;
  margin: 30px 0 60px;
  background: url("../images/txt_womansDayTitle.svg") no-repeat center/contain;
  text-indent: -9999px;
}
.Introduction__womansDayTitle::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: calc(50% - 30px);
  width: 60px;
  height: 4px;
  background: var(--col-key);
}
.Introduction__womansDayText {
  padding-top: 20px;
}
.Introduction small {
  font-size: 80%;
}
.Introduction big {
  font-size: 120%;
}

.DaiwaApproach {
  position: relative;
  margin-top: 30px;
  padding-top: 40px;
  z-index: 1;
}
.DaiwaApproach--sdgs {
  margin-top: 30px;
  padding-top: 0;
}
.DaiwaApproach__anchor {
  position: absolute;
  height: 0;
  width: 100%;
  top: -70px;
}
.DaiwaApproach__company-daiwa-anchor {
  position: absolute;
  height: 0;
  width: 100%;
  top: -70px;
}
.DaiwaApproach__innerWap {
  width: 970px;
  margin: 16px auto 0 auto;
  padding: 36px 30px 40px;
  position: relative;
  background: #ffffff;
}
.DaiwaApproach__innerWap--sdgs {
  background-image: url(https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/daiwa/img_topbg.jpg);
  background-position: right top;
  background-size: 70%;
  background-repeat: no-repeat;
}
.DaiwaApproach__innerWap--origi {
  margin-top: 60px;
}
.DaiwaApproach__heading--main img {
  width: 585px;
  height: auto;
}
.DaiwaApproach__heading--main--sdgs img {
  width: 400px;
  height: auto;
}
.DaiwaApproach__logoConnect {
  width: 237px;
  position: absolute;
  top: 32px;
  right: 30px;
  z-index: 100;
}
.DaiwaApproach__logoConnect-Link {
  display: block;
  width: 237px;
  height: auto;
}
.DaiwaApproach__logoConnect-Link--sdgs {
  width: 238px;
  height: auto;
  margin-top: 12px;
  margin-left: 13px;
}
.DaiwaApproach__logoConnect--sdgs {
  width: 270px;
  height: 80px;
  top: 15px;
  right: 15px;
  background: url(https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/daiwa/white07.png);
}
.DaiwaApproach__logomark {
  width: 237px;
  height: auto;
}
.DaiwaApproach__logomark--sdgs {
  width: 100%;
}
.DaiwaApproach__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 40px;
}
.DaiwaApproach__content--sdgs {
  margin-top: 20px;
}
.DaiwaApproach__content--sdgs-2 {
  margin-top: -10px;
}
.DaiwaApproach__content--sdgs-leftWrap {
  width: 500px;
}
.DaiwaApproach__content--sdgs-rightWrap {
  width: 485px;
}
.DaiwaApproach__content-2-leftWrap {
  width: 445px;
  margin-top: 25px;
}
.DaiwaApproach__content-2-rightWrap {
  width: 447px;
  margin-top: 10px;
}
.DaiwaApproach__content-3-leftWrap {
  width: 444px;
  margin-top: 15px;
}
.DaiwaApproach__content-3-rightWrap {
  width: 447px;
}
.DaiwaApproach__content-BodyTitle {
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  font-feature-settings: "palt";
}
.DaiwaApproach__content-BodyTitle--sdgs {
  width: 100%;
}
.DaiwaApproach__content-BodyMarker {
  display: inline-block;
  padding: 0.2em 0.1em;
  background: linear-gradient(transparent 46%, #ff6 46%);
}
.DaiwaApproach__content-Body-3 {
  width: 100%;
  margin: 16px 0;
}
.DaiwaApproach__content-Body-4 {
  width: 100%;
  margin: 16px 0;
}
.DaiwaApproach__content-Body-ouenlogo {
  width: 320px;
  height: auto;
}
.DaiwaApproach__content-Body-ouenlogoWrap {
  display: inline-block;
  float: right;
  width: 320px;
  margin: 0 0 6px 10px;
}
.DaiwaApproach__content-BodySubTitle {
  color: var(--col-inverse);
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  font-feature-settings: "palt";
}
.DaiwaApproach__content-BodySubTitle-4 {
  color: var(--col-text);
}
.DaiwaApproach__content-BodyText {
  font-size: 15px;
  line-height: 2.3;
  margin: 10px 0;
}
.DaiwaApproach__content-BodyText--sdgs {
  line-height: 1.8;
}
.DaiwaApproach__content-BodyText--sdgs-3-2 {
  width: 480px;
}
.DaiwaApproach__content-BodyText--sdgs-orage {
  color: #FF8603;
}
.DaiwaApproach__content-BodyText--sdgs-green {
  color: #2E6D2D;
}
.DaiwaApproach__content-BodyText-2-1 {
  line-height: 1.8;
}
.DaiwaApproach__content-BodyText-2-2 {
  line-height: 1.8;
}
.DaiwaApproach__content-BodyText--olive {
  line-height: 1.8;
  font-feature-settings: "palt";
  border-radius: 10px;
  background-color: #CCDFBF;
  padding: 0.8em;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.DaiwaApproach__content-BodyText--oliveTitle {
  color: #547B3B;
  display: block;
  font-weight: 600;
}
.DaiwaApproach__content-BodyText--oliveTitle small {
  font-size: 86%;
}
.DaiwaApproach__content-BodyText--salmon {
  line-height: 1.8;
  font-feature-settings: "palt";
  border-radius: 10px;
  background-color: #ECBBB5;
  padding: 0.8em;
  margin-top: 12px;
  letter-spacing: 0.02em;
}
.DaiwaApproach__content-BodyText--salmonTitle {
  color: #A85A52;
  display: block;
  font-weight: 600;
}
.DaiwaApproach__content-BodyText--salmonTitle small {
  font-size: 86%;
}
.DaiwaApproach__content-BodyText-3-1 {
  width: 100%;
  margin-top: 15px;
  line-height: 1.8;
}
.DaiwaApproach__content-BodyText-3-2 {
  line-height: 1.8;
}
.DaiwaApproach__content-BodyText-4-1 {
  line-height: 1.8;
}
.DaiwaApproach__content-BodyText-4-2 {
  line-height: 1.8;
}
.DaiwaApproach__content-IllustWrap {
  overflow: hidden;
}
.DaiwaApproach__content-IllustWrap--sdgs-1 {
  width: 381px;
  border-radius: 12px;
  margin-top: 16px;
}
.DaiwaApproach__content-IllustWrap--sdgs-2 {
  width: 414px;
  margin-top: 20px;
}
.DaiwaApproach__content-IllustWrap--sdgs-3 {
  width: 405px;
  margin-top: 6px;
}
.DaiwaApproach__content-IllustWrap-2-1 {
  width: 440px;
}
.DaiwaApproach__content-IllustWrap-2-2 {
  width: 440px;
  height: 302px;
}
.DaiwaApproach__content-IllustWrap-3-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.DaiwaApproach__content-IllustWrap-3-1Item {
  width: 144px;
  margin-bottom: 6px;
}
.DaiwaApproach__content-IllustWrap-3-1Item img {
  width: 100%;
  height: auto;
}
.DaiwaApproach__content-IllustWrap-3-2 {
  width: 600px;
  margin: 20px auto;
}
.DaiwaApproach__content-IllustWrap-4-1 {
  width: 364px;
  height: 296px;
}
.DaiwaApproach__content-IllustWrap-4-2 {
  width: 493px;
  height: auto;
}
.DaiwaApproach__content-Illust {
  width: 100%;
  height: auto;
}
.DaiwaApproach__content-Illust--1 {
  float: right;
  margin-left: 20px;
  width: 420px;
  height: auto;
}
.DaiwaApproach__content-Illust--2-2 {
  margin-top: 20px;
}
.DaiwaApproach__content-LinkWrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}
.DaiwaApproach__content-LinkWrap--sdgs {
  width: 100%;
  justify-content: flex-end;
}
.DaiwaApproach__content-LinkWrap-3 {
  margin-top: 20px;
  font-size: 18px;
}
.DaiwaApproach__content-LinkWrap-3 .DaiwaApproach__Link {
  margin-right: 10px;
}
.DaiwaApproach__content-LinkWrap-4 .DaiwaApproach__Link {
  margin-right: 20px;
}
.DaiwaApproach__content-Link .riff-Icon {
  margin-left: 10px;
  color: #006F34;
}
.DaiwaApproach__Link {
  color: #0b6c3a;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  font-feature-settings: "palt";
}
.DaiwaApproach__Link--sdgs {
  font-size: 16px;
}
.DaiwaApproach__Link--sdgs-1 {
  margin-top: -50px;
}
.DaiwaApproach__table-4 {
  width: 910px;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.DaiwaApproach__table-4-Wrap {
  margin: 18px 0 12px;
}
.DaiwaApproach__table-4 th {
  background-color: #F3B63F;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  padding: 10px 0;
}
.DaiwaApproach__table-4 th:nth-child(1) {
  width: 160px;
  border-right: solid 5px #ffffff;
  border-bottom: solid 5px #ffffff;
}
.DaiwaApproach__table-4 th:nth-child(2) {
  width: 340px;
  border-right: solid 5px #ffffff;
  border-bottom: solid 5px #ffffff;
}
.DaiwaApproach__table-4 th:nth-child(3) {
  border-bottom: solid 5px #ffffff;
}
.DaiwaApproach__table-4 td {
  background-color: #fdf9d9;
  color: #333333;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
}
.DaiwaApproach__table-4 td:first-of-type {
  border-right: solid 5px #ffffff;
  border-bottom: solid 5px #ffffff;
}
.DaiwaApproach__table-4 td:nth-last-of-type(2) {
  border-right: solid 5px #ffffff;
  border-bottom: solid 5px #ffffff;
  text-align: left;
}
.DaiwaApproach__table-4 td:last-of-type {
  border-bottom: solid 5px #ffffff;
  border-right: none;
  text-align: left;
}
.DaiwaApproach__table-4-caption {
  font-size: 12px;
  color: #333333;
  text-align: right;
  margin-top: 4px;
}

/* Yahoo! JAPANのSDGs活動 */
.YahooApproach {
  position: relative;
  width: 970px;
  margin: 0 auto;
  padding: 30px 40px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
.YahooApproach__logoLink {
  position: absolute;
  width: 117px;
  height: 30px;
  top: 30px;
  right: 40px;
}
.YahooApproach__logoLink--ly {
  width: 130px;
}
.YahooApproach__logo {
  width: 100%;
  height: auto;
}
.YahooApproach__leadCopy {
  font-size: 18px;
}
.YahooApproach__LinkText {
  font-size: 18px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 18px;
  transition: opacity 0.3s;
}
.YahooApproach__LinkText:hover {
  opacity: 0.7;
}
.YahooApproach__List {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
.YahooApproach__ListItem {
  width: 420px;
}
.YahooApproach__imglink {
  display: block;
  cursor: pointer;
  transition: opacity 0.3s;
}
.YahooApproach__imglink:hover {
  opacity: 0.7;
}
.YahooApproach__imgWrap {
  width: 420px;
  height: 280px;
  overflow: hidden;
}
.YahooApproach__imgWrap--border {
  border: solid 1px #ebebeb;
}
.YahooApproach__img {
  width: 100%;
  height: auto;
}
.YahooApproach__img-cap {
  font-size: 26px;
  line-height: 34px;
  font-feature-settings: "palt";
  color: var(--col-text);
  font-weight: 600;
  margin-top: 10px;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
}
.YahooApproach__img-capSmall {
  font-size: 16px;
  color: var(--col-text);
  display: flex;
  justify-content: space-between;
  align-items: bottom;
  margin-top: 10px;
}

/*Education　教育プログラム*/
.Education {
  width: 100%;
  margin: 30px 0 0;
  padding-top: 40px 0 80px;
  position: relative;
  z-index: 1;
  /*__phase*/
  /*__features*/
  /*__Available*/
  /*__inquiry */
  /*__Tomonokai*/
}
.Education__anchor {
  position: absolute;
  top: -90px;
  height: 0;
  width: 100%;
}
.Education__mainWrap {
  width: 970px;
  margin: 30px auto 0;
  padding-bottom: 56px;
  position: relative;
  background-color: #fff;
}
.Education__mainWrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 970px;
  height: 20px;
  background: url(https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/education/2021july/colorline_pc.svg) no-repeat;
}
.Education__mainWrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 970px;
  height: 20px;
  background: url(https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/education/2021july/colorline_pc.svg) no-repeat;
  background-size: contain;
}
.Education__heading {
  position: relative;
  padding: 40px 30px 0 30px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.Education__heading-title {
  width: 100%;
  height: 138px;
  text-indent: -100%;
  font-feature-settings: "palt";
  overflow: hidden;
  background-image: url(https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/education/2021july/h1_education_pc.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}
.Education__heading-text {
  width: 100%;
  margin: 22px 0 0 0;
  text-align: justify;
}
.Education__phase {
  margin-top: 28px;
}
.Education__phase-Title {
  width: 720px;
  height: 90px;
  margin: 0 auto;
  text-indent: -100%;
  font-feature-settings: "palt";
  overflow: hidden;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/education/2021july/ttl_education_program_pc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}
.Education__phase-List {
  width: 800px;
  position: relative;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
}
.Education__phase-ListItem {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 42px;
  margin-bottom: 4px;
  width: 800px;
  height: 160px;
  position: relative;
}
.Education__phase-Order {
  width: 76px;
  height: auto;
  position: absolute;
  top: 10px;
  left: 362px;
}
.Education__phase-Order img {
  width: 100%;
  height: auto;
}
.Education__phase-OrderTtl {
  position: absolute;
  top: 10px;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  font-feature-settings: "palt";
  text-align: left;
  white-space: nowrap;
}
.Education__phase-OrderTtl1 {
  color: #dc007a;
}
.Education__phase-OrderTtl2 {
  color: #4f92cf;
  left: 465px;
}
.Education__phase-OrderTtl3 {
  color: #e7b000;
  left: 0;
}
.Education__phase-OrderTtl4 {
  color: #48ae8e;
  left: 465px;
}
.Education__phase-OrderTtl5 {
  color: #f0832b;
  left: 0;
}
.Education__phase-OrderImgWrap {
  width: 362px;
  height: 160px;
  position: absolute;
  top: 0;
}
.Education__phase-OrderImgWrap1 {
  left: 465px;
}
.Education__phase-OrderImgWrap2 {
  left: 0;
}
.Education__phase-OrderImgWrap3 {
  left: 465px;
}
.Education__phase-OrderImgWrap4 {
  left: 0;
}
.Education__phase-OrderImgWrap5 {
  left: 465px;
}
.Education__phase-OrderImg {
  position: absolute;
}
.Education__phase-OrderImg1 {
  width: 295px;
  height: auto;
  top: 2px;
  right: 6px;
}
.Education__phase-OrderImg2 {
  width: 238px;
  height: auto;
  top: -2px;
  left: 49px;
}
.Education__phase-OrderImg3 {
  width: 263px;
  height: auto;
  top: -12px;
  right: 32px;
}
.Education__phase-OrderImg4 {
  width: 292px;
  height: auto;
  top: -11px;
  left: 20px;
}
.Education__phase-OrderImg5 {
  width: 315px;
  height: auto;
  top: -8px;
  right: 10px;
}
.Education__phase-OrderTxt {
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
  width: 340px;
  position: absolute;
  top: 55px;
}
.Education__phase-OrderTxt1 {
  left: 3px;
}
.Education__phase-OrderTxt2 {
  left: 468px;
}
.Education__phase-OrderTxt3 {
  left: 3px;
}
.Education__phase-OrderTxt4 {
  left: 468px;
}
.Education__phase-OrderTxt5 {
  left: 3px;
}
.Education__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.Education__features-HeadingPink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/education/2021july/ttl_education_bgline.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.Education__features-HeadingPinkTitle {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-size: 37px;
  line-height: 1;
  font-weight: 700;
  font-feature-settings: "palt";
  background-color: #fff;
  padding: 0 18px;
}
.Education__features-ImgWrap {
  width: 381px;
  margin: 67px 0 0 40px;
}
.Education__features-Img {
  width: 100%;
  height: auto;
}
.Education__features-CntWrap {
  margin-top: 24px;
}
.Education__features-CntWrap:first-of-type {
  width: 482px;
  margin: 75px 40px 0 27px;
}
.Education__features-CntWrap:nth-of-type(2) {
  width: 890px;
  margin: 21px 40px 0 40px;
  padding-bottom: 8px;
}
.Education__features-CntWrap:nth-of-type(3) {
  width: 890px;
  margin: 21px 40px 0 40px;
  padding-bottom: 8px;
}
.Education__features-ttl-h3-Wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.Education__features-ttl-h3-Icon {
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Education__features-ttl-h3-Icon img {
  width: 100%;
  height: auto;
}
.Education__features-ttl-h3 {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  padding-left: 10px;
}
.Education__features-txt {
  color: #333;
  text-align: justify;
  font-size: 18px;
  line-height: 1.7;
  margin-top: 18px;
}
.Education__Available {
  padding: 50px 0 0;
}
.Education__Available-ContWrap {
  padding: 32px 51px 0 51px;
}
.Education__Available-List {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.Education__Available-Item {
  width: 280px;
}
.Education__Available-movieWrap {
  width: 280px;
  height: 158px;
}
.Education__Available-thumbnailWrap {
  width: 280px;
  height: 158px;
}
.Education__Available-thumbnailLink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 158px;
  overflow: hidden;
}
.Education__Available-thumbnailLink img {
  transition: 0.6s;
}
.Education__Available-thumbnailLink img:hover {
  width: 106%;
  height: 106%;
}
.Education__Available-title {
  color: var(--col-text);
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
  margin-top: 4px;
  min-height: 45px;
}
.Education__Available-Linkwrap {
  text-align: right;
  margin-top: 2px;
}
.Education__Available-Link {
  font-size: 14px;
}
.Education__inquiry {
  width: 100%;
}
.Education__inquiry-Link {
  width: 600px;
  height: 60px;
  margin: 25px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background-color: #c52372;
}
.Education__Tomonokai-Wrap {
  border: solid 4px silver;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px auto 0 auto;
  width: 880px;
  padding: 25px 0 17px 0;
}
.Education__Tomonokai-heading {
  background-color: #fff;
  width: 225px;
  height: 33px;
  position: absolute;
  top: -20px;
  left: 20px;
}
.Education__Tomonokai-heading-ttl {
  font-size: 14px;
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 13px;
  color: #333;
}
.Education__Tomonokai-heading-Logo {
  width: 143px;
  position: absolute;
  top: 0;
  right: 7px;
}
.Education__Tomonokai-heading-Logo img {
  width: 100%;
  height: auto;
}
.Education__Tomonokai-txt {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  text-align: justify;
  font-feature-settings: "palt";
  width: 830px;
  margin: 0 auto;
}
.Education__Tomonokai-Link {
  font-size: 14px;
}

/*.Education*/
/* SNSシェア */
.Share {
  margin-top: 50px;
  padding: 50px 24px 0;
  background: var(--col-bg-lv2);
  /* このページをシェア */
}
@media (--small-screen) {
  .Share {
    padding: 20px 0 40px 0;
  }
}
.Share__inner {
  display: flex;
  justify-content: center;
}
.Share__content {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
@media (--small-screen) {
  .Share__content {
    display: block;
  }
}
.Share__list {
  display: flex;
}
.Share__item:not(:last-child) {
  margin-right: 16px;
}
.Share__itemBtn {
  width: 4rem;
  height: auto;
  transition: var(--animation-duration-short);
}
.Share__itemBtn:hover {
  transform: scale(1.1);
}

/* About Us */
.AboutUs {
  padding-bottom: 24px;
  background: var(--col-bg-lv2);
}
.AboutUs__box {
  max-width: var(--size-width-content-950);
  margin: 0 auto;
  padding: 40px 0 60px;
}
.AboutUs__body {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.AboutUs__body a {
  transition: var(--animation-duration-short);
}
.AboutUs__body a:hover {
  opacity: var(--hover-opacity);
}
.AboutUs__body:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--col-bor);
}
.AboutUs__title {
  color: var(--col-text);
  font-size: 20px;
  font-weight: 600;
}
.AboutUs__subtitle {
  color: var(--col-text);
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 -8px 0;
  text-align: left;
}
.AboutUs__link {
  display: block;
  flex: none;
  width: 206px;
  height: 120px;
  margin: 0 auto;
}
.AboutUs__link--creatorsProgram {
  background: url(https://s.yimg.jp/images/expert/feature/docs4sdgs/images/logo_creatorsFullColor.svg) no-repeat center/contain;
  margin-top: -60px;
}
.AboutUs__link--news {
  background: url(https://s.yimg.jp/images/expert/feature/documentary/sdgs/images/news.svg) no-repeat center/contain;
  margin-top: 8px;
  margin-left: 10px;
  width: 186px;
}
.AboutUs__link--udp {
  order: 1;
  background: url(https://s.yimg.jp/images/expert/feature/docs4sdgs/images/logo_udp.svg) no-repeat center/contain;
}
.AboutUs__udpText {
  order: 2;
  margin-left: 24px;
}
.AboutUs__redink {
  color: #df3947;
}

/* フッター */
.Footer {
  padding: 40px 20px;
  background: var(--col-bg-inverse);
}
.Footer__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.Footer__item:not(:first-child) {
  margin-left: 20px;
}
.Footer__item > a {
  color: var(--col-text-sub);
  font-size: 1.4rem;
}
@media (--small-screen) {
  .Footer__item > a {
    font-size: 1.2rem;
  }
}
.Footer__copyright {
  color: rgba(var(--col-inverse-rgb), 0.3);
  font-size: 1.4rem;
  text-align: center;
}

/* トップページのdocumentary */
.Documentary {
  width: 100%;
  padding: 55px 0 40px 0;
  overflow-x: visible;
  margin-top: 24px;
  position: relative;
}
.Documentary__anchor {
  position: absolute;
  top: -70px;
  width: 100%;
  height: 0;
}
.Documentary__main {
  z-index: 1;
  position: relative;
  margin-top: 110px;
  padding: 40px 0;
}
.Documentary__mainWrap {
  max-width: var(--size-width-content-950);
  margin: 0 auto;
}
.Documentary__main::before {
  content: url(https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/clear.png);
  position: absolute;
  top: 0;
  width: calc(50vw + 495px);
  min-width: var(--size-width-content-max);
  height: 100%;
  background: var(--col-bg-lv1);
  box-shadow: var(--shadow-lv1);
}
.Documentary__main:nth-child(2n)::before {
  left: 0;
}
.Documentary__main:nth-child(2n-1)::before {
  right: 0;
}
.Documentary__mainBlock {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 12px;
}
.Documentary__mainBlock--odd {
  padding-left: 0;
  padding-right: 450px;
}
.Documentary__mainBlock--odd .Documentary__mainSdgs {
  right: 436px;
}
.Documentary__mainBlock--odd .Documentary__thumbnailWrap {
  left: 541px;
}
.Documentary__mainBlock--odd .Documentary__mainReadMoreWrap {
  right: 436px;
}
.Documentary__mainBlock--even {
  padding-left: 460px;
  padding-right: 0;
}
.Documentary__mainBlock--even .Documentary__mainSdgs {
  right: 0;
}
.Documentary__mainBlock--even .Documentary__thumbnailWrap {
  right: 524px;
}
.Documentary__mainBlock--even .Documentary__mainReadMoreWrap {
  right: 0;
}
.Documentary__mainSdgs {
  order: 1;
  display: flex;
  position: absolute;
  top: -110px;
  justify-content: flex-end;
  width: 100%;
  z-index: 100;
}
.Documentary__mainSdgs .SdgsIconList {
  display: flex;
}
.Documentary__mainSdgs .SdgsIconList__item:not(:first-of-type) {
  margin-left: 10px;
}
.Documentary__mainSdgs .SdgsIcon {
  width: 110px;
  height: 110px;
}
.Documentary__mainSubTitle {
  width: 502px;
  order: 2;
  color: var(--col-text-sub);
  font-size: 16px;
  padding-top: 8px;
}
.Documentary__mainTitle {
  font-size: 32px;
  width: 502px;
  order: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: baseline;
  font-feature-settings: "palt";
  margin-top: 5px;
  color: var(--col-text);
  font-weight: 600;
  line-height: 1.3;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
}
.Documentary__mainDirectorNameLink {
  order: 6;
  margin: 10px 0 0 0;
}
.Documentary__mainDirector {
  width: 160px;
  display: flex;
  justify-content: flex-start;
}
.Documentary__mainDirectorName {
  order: 2;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  color: var(--col-text);
  text-align: left;
}
.Documentary__mainDirectorName1 {
  font-size: 20px;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  margin-bottom: 4px;
}
.Documentary__mainDirectorName2 {
  font-size: 14px;
  color: #8b8b8b;
}
.Documentary__mainDirectorAvatar {
  order: 1;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  overflow: hidden;
  margin-right: 10px;
}
.Documentary__mainDirectorImage {
  width: 100%;
  height: auto;
}
.Documentary__mainAbout {
  width: 502px;
  order: 7;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.85;
}
.Documentary__mainReadMore {
  display: flex;
  position: relative;
  align-items: center;
  padding: 5px 50px;
  background: var(--col-sdgs);
  color: #fff;
  color: var(--col-inverse);
}
.Documentary__mainReadMoreWrap {
  position: absolute;
  bottom: -40px;
  order: 8;
}
.Documentary__thumbnail {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.Documentary__thumbnailWrap {
  position: absolute;
  width: 448px;
  height: 252px;
  top: 16px;
  order: 4;
  overflow: hidden;
  flex: none;
  box-shadow: var(--shadow-lv2);
}
.Documentary__thumbnailLink {
  display: flex;
  justify-content: center;
  align-items: center;
}
.Documentary__thumbnailLink:hover img {
  width: 106%;
  height: 106%;
}
.Documentary__thumbnailPlaybackTime {
  position: absolute;
  right: 6px;
  bottom: 6px;
  min-width: 50px;
  height: 22px;
  background-color: #000000;
  opacity: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  line-height: 0;
  text-align: center;
}

/* 作品ページへのリンク ShortfilmLinks */
.ShortfilmLinks {
  width: 100%;
  padding-bottom: 6px;
  position: relative;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/bg_ShortfilmLinks.png");
}
.ShortfilmLinks__anchor {
  position: absolute;
  height: 0;
  width: 100%;
  top: -86px;
}
.ShortfilmLinksMain {
  max-width: var(--size-width-content-max);
  margin: 0 auto;
  padding-bottom: 20px;
  position: relative;
}
.ShortfilmLinks__Title--h2 {
  font-size: 32px;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
  padding-top: 16px;
  color: var(--col-black);
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
}
.ShortfilmLinks__Title--h2Wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--size-width-content-950);
  height: 80px;
  margin: 0 auto;
  position: relative;
}
.ShortfilmLinks__Button {
  width: 22px;
  height: 40px;
  position: absolute;
  top: 200px;
  cursor: pointer;
  transition: opacity 0.6s;
}
.ShortfilmLinks__Button:hover {
  opacity: 0.7;
}
.ShortfilmLinks__Button--prev {
  left: 0;
}
.ShortfilmLinks__Button--prev-hidden {
  visibility: hidden;
  left: 0;
}
.ShortfilmLinks__Button--next {
  right: 0;
}
.ShortfilmLinks__Button--next-hidden {
  visibility: hidden;
  right: 0;
}
.ShortfilmLinks__ButtonIcon {
  width: 100%;
  height: 100%;
}
.ShortfilmLinks__CarouselWrap {
  width: 900px;
  overflow-x: hidden;
  position: relative;
  margin: -155px auto 0;
  padding-top: 180px;
  padding-bottom: 10px;
}
.ShortfilmLinks__CarouselList {
  display: flex;
  margin-left: 0;
  transition: margin 0.7s;
}
.ShortfilmLinks__CarouselItem {
  width: 260px;
  position: relative;
}
.ShortfilmLinks__CarouselItem:not(:first-of-type) {
  margin-left: 60px;
}
.ShortfilmLinks__sdgsIconList {
  height: 31px;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto 10px 0;
}
.ShortfilmLinks__sdgsIconItem {
  width: 31px;
  height: 31px;
  text-align: center;
}
.ShortfilmLinks__sdgsIconItem:not(:first-of-type) {
  margin-left: 10px;
}
.ShortfilmLinks__sdgsIconImage {
  width: 100%;
  height: 100%;
  display: block;
}
.ShortfilmLinks__Link {
  display: block;
}
.ShortfilmLinks__BodyWrap {
  width: 100%;
}
.ShortfilmLinks__Thumbnail {
  width: 260px;
  height: 146px;
  transition: 0.6s;
}
.ShortfilmLinks__Thumbnail:hover {
  width: 106%;
  height: 106%;
}
.ShortfilmLinks__ThumbnailWrap {
  width: 260px;
  height: 146px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ShortfilmLinks__PlaybackTime {
  font-size: 11px;
  color: #ffffff;
  line-height: 1;
}
.ShortfilmLinks__PlaybackTimeWrap {
  background-color: #000000;
  opacity: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: auto;
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 0 6px;
}
.ShortfilmLinks__SubTitle {
  font-size: 12px;
  line-height: 1.6;
  color: #8B8B8B;
  text-align: left;
  margin-top: 6px;
}
.ShortfilmLinks__Title {
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  color: #333333;
  text-align: left;
  margin-top: 4px;
}
.ShortfilmLinks__Director {
  font-size: 14px;
  line-height: 1;
  color: #8B8B8B;
  text-align: left;
  margin-top: 6px;
}
.ShortfilmLinks__ichiranWrap {
  margin: 2px 0 0;
}
.ShortfilmLinks__ichiranLink {
  width: 220px;
  height: 50px;
  display: block;
  margin: 0 auto;
}
.ShortfilmLinks__ichiranLink img {
  width: 100%;
  height: auto;
}

/* sDGs詳細画面 */
.SdgsDetail {
  border: solid 1px red;
  display: none;
  opacity: 0;
  position: fixed;
  z-index: var(--layer-overlay);
  top: 0;
  left: 0;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.6s;
  /* 記事文章内の文字を20%小さく、または大きくする。 */
}
.SdgsDetail.is-show {
  display: flex;
  opacity: 1;
}
.SdgsDetail.is-hide {
  display: none;
  opacity: 0;
}
.SdgsDetail__window {
  width: 950px;
  height: 400px;
  overflow: hidden;
  background-color: var(--col-bg-lv1);
}
@media (--small-screen) {
  .SdgsDetail__window {
    width: 320px;
    height: 480px;
  }
}
.SdgsDetail__list {
  display: flex;
  transition: 0.3s ease-out;
  /* &Item {
    @for $i from 1 to 9 {
      &:nth-of-type($i) .SdgsDetail__itemTitleNumber {
        color: var(--col-sdgs-0$(i));
      }
    }

    @for $i from 10 to 17 {
      &:nth-of-type($i) .SdgsDetail__itemTitleNumber {
        color: var(--col-sdgs-$(i));
      }
    }
  }*/
}
.is-animationOff .SdgsDetail__list {
  transition: none;
}
.SdgsDetail__list--0 {
  margin-left: 0;
}
.SdgsDetail__list--1 {
  margin-left: -950px;
}
.SdgsDetail__list--2 {
  margin-left: -1900px;
}
.SdgsDetail__list--3 {
  margin-left: -2850px;
}
.SdgsDetail__list--4 {
  margin-left: -3800px;
}
.SdgsDetail__list--5 {
  margin-left: -4750px;
}
.SdgsDetail__list--6 {
  margin-left: -5700px;
}
.SdgsDetail__list--7 {
  margin-left: -6650px;
}
.SdgsDetail__list--8 {
  margin-left: -7600px;
}
.SdgsDetail__list--9 {
  margin-left: -8550px;
}
.SdgsDetail__list--10 {
  margin-left: -9500px;
}
.SdgsDetail__list--11 {
  margin-left: -10450px;
}
.SdgsDetail__list--12 {
  margin-left: -11400px;
}
.SdgsDetail__list--13 {
  margin-left: -12350px;
}
.SdgsDetail__list--14 {
  margin-left: -13300px;
}
.SdgsDetail__list--15 {
  margin-left: -14250px;
}
.SdgsDetail__list--16 {
  margin-left: -15200px;
}
.SdgsDetail__itemHead {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}
@media (--small-screen) {
  .SdgsDetail__itemHead {
    padding: 15px;
  }
}
.SdgsDetail__itemTitleWrap {
  width: 740px;
}
@media (--small-screen) {
  .SdgsDetail__itemTitleWrap {
    width: auto;
  }
}
@media (--small-screen) {
  .SdgsDetail__itemTitle {
    min-height: 100px;
    margin-left: 110px;
    display: flex;
    align-items: center;
  }
}
.SdgsDetail__itemTitleNumber {
  font-family: Impact, Helvetica, sans-serif;
  font-size: 70px;
  line-height: 1;
}
@media (--small-screen) {
  .SdgsDetail__itemTitleNumber {
    display: none;
  }
}
.SdgsDetail__itemTitleText {
  margin-left: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
@media (--small-screen) {
  .SdgsDetail__itemTitleText {
    margin: 0;
  }
}
.SdgsDetail__itemLead {
  margin-top: 10px;
  font-size: 16px;
  line-height: 22px;
}
.SdgsDetail__itemIconWrap {
  width: 130px;
  height: 130px;
}
@media (--small-screen) {
  .SdgsDetail__itemIconWrap {
    position: absolute;
    width: 100px;
    height: auto;
  }
}
.SdgsDetail__itemIcon {
  width: 100%;
  height: auto;
}
.SdgsDetail__itemBody {
  width: 950px;
  height: 220px;
  padding: 20px 30px;
  background-color: #f3f3f3;
}
@media (--small-screen) {
  .SdgsDetail__itemBody {
    width: 290px;
    height: 170px;
    padding: 15px;
    margin: 0 15px;
    overflow-y: scroll;
  }
}
.SdgsDetail__itemBodyTitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.SdgsDetail__itemBodyList {
  height: 150px;
  margin: 10px 0 20px 0;
  overflow-y: scroll;
}
@media (--small-screen) {
  .SdgsDetail__itemBodyList {
    height: auto;
    overflow-y: auto;
  }
}
.SdgsDetail__itemBodyListItem {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
}
.SdgsDetail__itemBodyListNumber {
  display: block;
  width: 55px;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  margin-right: 8px;
}
.SdgsDetail__itemBodyListText {
  width: 855px;
}
.SdgsDetail__prevButton, .SdgsDetail__nextButton {
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  transition: opacity 1s ease-out;
  border-radius: 30px;
  background-color: var(--col-inverse);
  color: var(--col-sdgs);
}
@media (--small-screen) {
  .SdgsDetail__prevButton, .SdgsDetail__nextButton {
    top: auto;
    left: auto;
    background-color: transparent;
  }
}
.SdgsDetail__prevButton.is-disabled, .SdgsDetail__nextButton.is-disabled {
  opacity: 0.2;
}
.SdgsDetail__prevButton {
  transform: translate(-575px, -30px);
  transition: opacity 0.6s;
}
.SdgsDetail__prevButton--on {
  opacity: 1;
  cursor: pointer;
}
.SdgsDetail__prevButton--on:hover {
  opacity: 0.8;
}
.SdgsDetail__prevButton--off {
  opacity: 0.2;
  cursor: initial;
}
.SdgsDetail__prevButton .riff-Icon {
  margin-left: -5px;
}
@media (--small-screen) {
  .SdgsDetail__prevButton {
    transform: translate(-130px, 190px);
  }
  .SdgsDetail__prevButton .riff-Icon {
    margin-left: 0;
  }
}
.SdgsDetail__nextButton {
  transform: translate(510px, -30px);
  transition: opacity 0.6s;
}
.SdgsDetail__nextButton--on {
  opacity: 1;
  cursor: pointer;
}
.SdgsDetail__nextButton--on:hover {
  opacity: 0.8;
}
.SdgsDetail__nextButton--off {
  opacity: 0.2;
  cursor: initial;
}
.SdgsDetail__nextButton .riff-Icon {
  margin-right: -5px;
}
@media (--small-screen) {
  .SdgsDetail__nextButton {
    transform: translate(130px, 190px);
  }
  .SdgsDetail__nextButton .riff-Icon {
    margin-right: 0;
  }
}
.SdgsDetail__closeButton {
  display: flex;
  position: absolute;
  top: 50%;
  right: 50%;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  overflow: hidden;
  transform: translate(510px, -225px);
  transition: opacity 0.5s ease-out;
  border-radius: 31px;
  background-color: #9b9b9b;
  color: var(--col-inverse);
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
@media (--small-screen) {
  .SdgsDetail__closeButton {
    top: 50%;
    right: 8px;
    transform: translate(0, -260px);
    width: 48px;
    height: 48px;
  }
}
.SdgsDetail__closeButton:hover {
  opacity: 0.8;
}
.SdgsDetail small {
  font-size: 80%;
}
.SdgsDetail big {
  font-size: 120%;
}

.SdgsDetail__itemHead {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}

/*TODO: ループがうまく動かないため、いったんベタ書きに変更*/
.SdgsDetail__listItem:nth-of-type(1) .SdgsDetail__itemTitleNumber {
  color: #d62839;
  color: var(--col-sdgs-01);
}

.SdgsDetail__listItem:nth-of-type(2) .SdgsDetail__itemTitleNumber {
  color: #d4a13d;
  color: var(--col-sdgs-02);
}

.SdgsDetail__listItem:nth-of-type(3) .SdgsDetail__itemTitleNumber {
  color: #4c9738;
  color: var(--col-sdgs-03);
}

.SdgsDetail__listItem:nth-of-type(4) .SdgsDetail__itemTitleNumber {
  color: #b91c2d;
  color: var(--col-sdgs-04);
}

.SdgsDetail__listItem:nth-of-type(5) .SdgsDetail__itemTitleNumber {
  color: #e73f2a;
  color: var(--col-sdgs-05);
}

.SdgsDetail__listItem:nth-of-type(6) .SdgsDetail__itemTitleNumber {
  color: #2fb1d3;
  color: var(--col-sdgs-06);
}

.SdgsDetail__listItem:nth-of-type(7) .SdgsDetail__itemTitleNumber {
  color: #f1bc1c;
  color: var(--col-sdgs-07);
}

.SdgsDetail__listItem:nth-of-type(8) .SdgsDetail__itemTitleNumber {
  color: #991d40;
  color: var(--col-sdgs-08);
}

.SdgsDetail__listItem:nth-of-type(9) .SdgsDetail__itemTitleNumber {
  color: #eb672c;
  color: var(--col-sdgs-09);
}

.SdgsDetail__listItem:nth-of-type(10) .SdgsDetail__itemTitleNumber {
  color: #cd1b61;
  color: var(--col-sdgs-10);
}

.SdgsDetail__listItem:nth-of-type(11) .SdgsDetail__itemTitleNumber {
  color: #f2982b;
  color: var(--col-sdgs-11);
}

.SdgsDetail__listItem:nth-of-type(12) .SdgsDetail__itemTitleNumber {
  color: #b8872f;
  color: var(--col-sdgs-12);
}

.SdgsDetail__listItem:nth-of-type(13) .SdgsDetail__itemTitleNumber {
  color: #3c7b43;
  color: var(--col-sdgs-13);
}

.SdgsDetail__listItem:nth-of-type(14) .SdgsDetail__itemTitleNumber {
  color: #178dc9;
  color: var(--col-sdgs-14);
}

.SdgsDetail__listItem:nth-of-type(15) .SdgsDetail__itemTitleNumber {
  color: #58b331;
  color: var(--col-sdgs-15);
}

.SdgsDetail__listItem:nth-of-type(16) .SdgsDetail__itemTitleNumber {
  color: #076394;
  color: var(--col-sdgs-16);
}

.SdgsDetail__listItem:nth-of-type(17) .SdgsDetail__itemTitleNumber {
  color: #164667;
  color: var(--col-sdgs-17);
}

/*記事ヘッダー*/
.articleHeader {
  background-color: #000000;
  width: 100%;
}
.articleHeaderWrap {
  height: 180px;
  position: relative;
}
.articleHeader__inner {
  max-width: 1200px;
  height: 120px;
  padding: 0 20px;
  position: relative;
  margin: 0 auto;
}
.articleHeader__link {
  display: block;
  width: 100%;
  height: 100%;
}
.articleHeader__titleWrap {
  position: relative;
  width: 307px;
}
.articleHeader__subTitle {
  position: absolute;
  top: 24px;
  left: 16px;
  width: 280px;
  height: 30px;
  background: url(https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/articleHeader__subTitle.svg) center top/contain no-repeat;
  text-indent: -200%;
  overflow: hidden;
}
.articleHeader__title {
  position: absolute;
  top: 60px;
  left: 0;
  width: 307px;
  height: 48px;
  text-indent: -200%;
  overflow: hidden;
  background: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/mv_logo.svg") center top/contain no-repeat;
}
.articleHeader__yLogoWrap {
  position: absolute;
  right: 5px;
  top: 48px;
  width: 140px;
  height: 36px;
}
.articleHeader__yLogoWrap--ly {
  width: 150px;
  height: 26px;
}
.articleHeader__yLogoWrap img {
  display: block;
  height: auto;
  width: 100%;
}

/*.articleHeader*/
.header__nav--inline {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.header__nav {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.header__navWrap {
  width: 100%;
  height: 60px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__navWrap--topInline {
  position: absolute;
  top: 640px;
}
.header__navWrap--topInline .header__nav {
  width: 1000px;
  border-radius: 30px;
}
.header__navWrap--inline {
  position: relative;
}
.header__navWrap--fixed {
  position: fixed;
  top: 0;
}
.header__navWrap--fixed .header__nav {
  animation: header__nav 0.4s;
}
@keyframes header__nav {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(0);
  }
}
.header__navList {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__navItem:hover .header__nav-dropdownList {
  visibility: visible;
  opacity: 1;
}
.header__navItem {
  width: 190px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}
.header__navItem:not(:last-child) {
  border-right: solid 2px #EBEBED;
}
.header__navlink {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555555;
}
.header__nav-dropdownList {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  width: 110%;
  position: absolute;
  top: 40px;
  left: -10px;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 8px 10px 8px 8px;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.15);
}
.header__nav-dropdownList--wide {
  width: 128%;
  left: -26px;
}
.header__nav-dropdownItem {
  transition: all 0.3s;
  position: relative;
  padding: 14px 0;
}
.header__nav-dropdownItem:nth-child(n+2) {
  border-top: 1px solid #E0E0E0;
}
.header__nav-dropdownItem .navIcon {
  height: 14px;
  width: 14px;
}
.header__nav-dropdownItem:hover .header__nav-dropdownLink {
  opacity: 0.5;
}
.header__nav-dropdownLink {
  color: #555;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
}
.header__nav-dropdownLinkText {
  width: auto;
}

.navIcon {
  width: 14px;
  margin: 0 5px 0 5px;
  display: block;
}
.navIcon img {
  width: 14px;
  height: 14px;
  display: block;
}
.navIcon--anchor::before {
  content: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/navIcon_anchor.svg");
}
.navIcon--link::before {
  content: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/navArrow.svg");
}
.navIcon--link2 {
  padding-top: 3px;
}

/*動画*/
.articleMovie {
  width: 950px;
  margin: 0 auto;
  padding-top: 30px;
}
.articleMovie__Wrap {
  width: 950px;
  height: 535px;
  margin-top: 32px;
}

/*article__movie*/
/* Detail */
.articleMovieDetail {
  width: 100%;
  background-color: #ffffff;
  margin-top: 100px;
  padding: 0 0 30px 0;
}
.articleMovieDetail__main {
  display: flex;
  flex-wrap: wrap;
  width: 950px;
  position: relative;
  margin: 0 auto;
  padding: 26px 500px 20px 0;
}
.articleMovieDetail__mainSubTitle {
  width: 450px;
  order: 2;
  color: #979797;
  font-size: 16px;
  line-height: 1.5;
}
.articleMovieDetail__mainTitle {
  font-size: 32px;
  line-height: 1.3;
  width: 450px;
  order: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  font-feature-settings: "palt";
  margin-top: 2px;
  min-height: 100px;
  color: #333333;
  font-weight: 700;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
}
.articleMovieDetail__mainThumbnail {
  width: 100%;
  height: auto;
}
.articleMovieDetail__mainThumbnailWrap {
  position: absolute;
  right: 0;
  top: 66px;
  width: 480px;
  height: 270px;
  order: 7;
  overflow: hidden;
}
.articleMovieDetail__mainDirectorNameLink {
  order: 5;
  display: block;
  margin: 10px 0 0 auto;
  width: 200px;
}
.articleMovieDetail__mainDirector {
  width: 200px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}
.articleMovieDetail__mainDirectorName {
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}
.articleMovieDetail__mainDirectorName1 {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  margin-bottom: 4px;
}
.articleMovieDetail__mainDirectorName2 {
  font-size: 16px;
  font-weight: 400;
  color: #8B8B8B;
}
.articleMovieDetail__mainDirectorAvatar {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  overflow: hidden;
  margin-left: 5px;
}
.articleMovieDetail__mainDirectorImage {
  width: 100%;
  height: auto;
}
.articleMovieDetail__mainActionWrap {
  order: 4;
  display: flex;
  align-items: center;
  width: 236px;
  height: 50px;
  margin-top: 10px;
}
.articleMovieDetail__mainActionList {
  display: flex;
  align-items: center;
}
.articleMovieDetail__mainActionItem {
  width: 40px;
}
.articleMovieDetail__mainActionItem:not(:last-child) {
  margin-right: 8px;
}
.articleMovieDetail__mainActionFeedback {
  padding: 6px 22px;
  border: 1px solid #979797;
  border-radius: 20px;
  color: #979797;
  font-size: 14px;
  line-height: 1;
  width: 140px;
  height: 40px;
  border: solid 1px #979797;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
}
.articleMovieDetail__mainAbout {
  order: 6;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  margin-top: 12px;
  min-height: 110px;
}
.articleMovieDetail__SdgsIconImage {
  width: 110px;
  height: 110px;
  display: block;
}
.articleMovieDetail__SdgsIconWrap {
  order: 1;
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  z-index: 100;
}
.articleMovieDetail__SdgsIconList {
  display: flex;
}
.articleMovieDetail__SdgsIconItem {
  width: 110px;
  height: 110px;
}
.articleMovieDetail__SdgsIconItem:not(:last-child) {
  margin-right: 10px;
}
.articleMovieDetail__explanation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 950px;
  position: relative;
  margin: 38px auto 0;
}
.articleMovieDetail__explanationPictureWrap {
  width: 240px;
}
.articleMovieDetail__explanationPicture:not(:last-child) {
  margin-bottom: 26px;
}
.articleMovieDetail__explanationPicture img {
  width: 100%;
  height: auto;
  display: block;
}
.articleMovieDetail__explanationText {
  font-size: 14px;
  line-height: 2;
  color: #000000;
}
.articleMovieDetail__explanationTextWrap {
  width: 670px;
  padding: 18px 40px 17px 40px;
  border: solid 1px #979797;
}
.articleMovieDetail__explanationText:not(:last-child) {
  margin-bottom: 28px;
}
.articleMovieDetail__explanationLinkText {
  font-size: 20px;
  line-height: 1;
  color: var(--col-text-link);
}
.articleMovieDetail__explanationLinkTextWrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin: 20px 0;
}
.articleMovieDetail__comment {
  width: 950px;
  margin: 30px auto 0;
}
.articleMovieDetail__commentTitle {
  width: 950px;
  font-size: 24px;
  line-height: 1;
  color: var(--col-title);
  text-align: center;
  margin: 0 auto 30px auto;
  font-weight: 700;
}
.articleMovieDetail__commentWrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.articleMovieDetail__commentWrap .CommentWrap {
  display: flex;
  align-items: stretch;
}

/* サポーター、エクスパートのコメント */
.Comment {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.CommentWrap {
  width: 450px;
}
.CommentInnerbox {
  border: solid 1px #979797;
  margin-left: 10px;
  padding: 18px 30px;
  position: relative;
  background-color: #ffffff;
}
.CommentInnerbox--supporter::before {
  content: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/icon_supporter.svg");
  display: block;
  width: 21px;
  height: 79px;
  position: absolute;
  top: -1px;
  left: -11px;
}
.CommentInnerbox--expert::before {
  content: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/icon_expert.svg");
  display: block;
  width: 21px;
  height: 69px;
  position: absolute;
  top: -1px;
  left: -11px;
}
.CommentHead {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.CommentImage {
  width: 100%;
  height: auto;
}
.CommentImageWrap {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 16px 0 0;
}
.CommentNameWrap {
  max-width: 320px;
  margin-top: 5px;
}
.CommentName {
  font-size: 18px;
  flex: none;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
}
.CommentRole {
  color: #9b9da5;
  color: var(--col-text-sub);
  font-size: 12px;
  line-height: 1.7;
  margin-top: 2px;
}
.CommentText {
  margin-top: 16px;
  font-size: 14px;
  line-height: 2.3;
  color: #000000;
}

.MessageMain {
  width: 100%;
  padding-top: 36px;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/photo_introduction.jpg");
  background-repeat: no-repeat;
  background-position: top 118px right;
  background-size: 480px 480px;
}
.Message__introWrap {
  width: 950px;
  margin: 36px auto 0;
}
.Message__intro {
  width: 740px;
  padding: 26px 36px 23px;
  background-color: #ffffff;
  margin: 0 auto 0 0;
}
.Message__introTxt {
  font-size: 17px;
  line-height: 1.7;
  color: #000000;
}
.Message__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 960px;
  margin: 0 auto;
  padding: 10px 0 0;
}
.Message__listItem {
  background-color: #ffffff;
  position: relative;
  width: calc(50% - 20px);
  margin: 40px 0 0 10px;
  padding: 30px;
  border-width: 1px;
  border-style: solid;
  box-shadow: var(--shadow-lv1);
}
.Message__listItem--supporter {
  border-color: #338fc8;
}
.Message__listItem--supporter::before {
  content: "";
  display: block;
  width: 21px;
  height: 79px;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2//images/icon_supporter.svg");
  background-size: contain;
  position: absolute;
  top: -1px;
  left: -11px;
  z-index: 100;
}
.Message__listItem--expert {
  border-color: #002673;
}
.Message__listItem--expert::before {
  content: "";
  display: block;
  width: 21px;
  height: 69px;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/icon_expert.svg");
  background-size: contain;
  position: absolute;
  top: -1px;
  left: -11px;
  z-index: 100;
}
.Message__head {
  display: flex;
  align-items: flex-start;
}
.Message__image {
  width: 100%;
  height: auto;
}
.Message__imageWrap {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  margin: 5px 20px 0 0;
}
.Message__nameWrap {
  width: 345px;
}
.Message__name {
  font-weight: 600;
  font-size: 18px;
  color: #333333;
}
.Message__role {
  font-size: 12px;
  line-height: 1.4;
  color: #8B8B8B;
}
.Message__text {
  font-size: 14px;
  line-height: 2;
  color: #333333;
  text-align: justify;
  margin-top: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #cccccc;
}
.Message__profile {
  margin-top: 8px;
  font-size: 14px;
  line-height: 2;
  color: #333333;
}
.Message__profile-ttl {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #333333;
}
.Message__type-explanationWrap {
  width: 960px;
  margin: 30px auto;
  padding-left: 10px;
}
.Message__type-explanation {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
  color: #333333;
}
.Message__type-explanation img {
  width: 80px;
  height: 21px;
  margin-right: 4px;
}

.sapporoShortfestWrap {
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/sapporo_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1px 0 28px;
}
.sapporoShortfestWrap2 {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}
.sapporoShortfestWrap2--0 {
  margin-top: 50px;
}
.sapporoShortfestWrap2--0-h2 {
  width: 528px;
  height: auto;
}
.sapporoShortfestWrap2--0-h2 img {
  width: 100%;
  height: auto;
}
.sapporoShortfestWrap2--0-text {
  font-size: 17px;
  line-height: 30px;
  margin-top: 20px;
}
.sapporoShortfestWrap2--0-text--small {
  font-size: 12px;
}
.sapporoShortfestWrap2--1 {
  margin-top: 70px;
}
.sapporoShortfestWrap2--1-h2 {
  width: 369px;
  height: auto;
}
.sapporoShortfestWrap2--1-h2 img {
  width: 100%;
  height: auto;
}
.sapporoShortfestWrap2--1-List {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 26px 0 0;
}
.sapporoShortfestWrap2--1-Item {
  width: 450px;
  position: relative;
}
.sapporoShortfestWrap2--1-Item-photoWrap {
  width: 450px;
  height:253px;
  overflow: hidden;
  background-color: #000000;
}
.sapporoShortfestWrap2--1-Item-photoWrap img {
  width: 100%;
  height: auto;
}
.sapporoShortfestWrap2--1-Item-photoWrap--logo {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.sapporoShortfestWrap2--1-Item-textwrap {
  width: 100%;
}
.sapporoShortfestWrap2--1-Item-title {
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  font-size: 23px;
  line-height: 28px;
  font-weight: 600;
  margin-top: 16px;
}
.sapporoShortfestWrap2--1-Item-title__eng {
  font-size: 20px;

}
.sapporoShortfestWrap2--1-Item-creator {
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  margin-top: 16px;
}
.sapporoShortfestWrap2--1-Item-text {
  font-size: 17px;
  line-height: 30px;
  margin-top: 12px;
}
/*.sapporoShortfestWrap2--1-Item:nth-child(2)::after, .sapporoShortfestWrap2--1-Item:nth-child(5)::after {
  content: "";
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  width: 1px;
  height: 300px;
  background: #000000;
}
.sapporoShortfestWrap2--1-Item:nth-child(2)::before, .sapporoShortfestWrap2--1-Item:nth-child(5)::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  width: 1px;
  height: 300px;
  background: #000000;
}*/
.sapporoShortfestWrap2--1-Item:nth-child(n+4) {
  margin-top: 40px;
}
.sapporoShortfestWrap2--2 {
  margin-top: 70px;
}
.sapporoShortfestWrap2--2-h2 {
  width: 816px;
  height: auto;
}
.sapporoShortfestWrap2--2-h2 img {
  width: 100%;
  height: auto;
}
.sapporoShortfestWrap2--2text {
  margin-top: 22px;
}
.sapporoShortfestWrap2--3 {
  margin-top: 70px;
  margin-bottom: 42px;
}
.sapporoShortfestWrap2--3-h2 {
  width: 539px;
  height: auto;
}
.sapporoShortfestWrap2--3-h2 img {
  width: 100%;
  height: auto;
}
.sapporoShortfestWrap2--3-text {
  margin-top: 18px;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: #333333;
}
.sapporoShortfest__SdgsIconWrap {
  position: absolute;
  top: 40px;
  right: 0;
}
.sapporoShortfest__mainTittle {
  margin-top: 10px;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  font-size: 70px;
  line-height: 1.18;
  font-weight: 400;
  color: #333333;
}
.sapporoShortfest__mainTittleWrap {
  position: relative;
  max-width: 950px;
  margin: 30px auto 0;
}
.sapporoShortfest__mainTittleSub {
  margin-top: 28px;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 600;
  color: #333333;
}
.sapporoShortfest__mainTittleText{
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.76;
  font-weight: 500;
  color: #000000;

}

.sapporoShortfest__h1Tittle {
  font-size: 36px;
  line-height: 1.22;
  font-weight: 600;
  color: #333333;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  margin-top: 34px;
}
.sapporoShortfest__h1Tittle__eng{
  font-size: 28px;
}
.sapporoShortfest__h2Tittle {
  display: flex;
  padding: 0 0 0 46px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 44px;
  line-height: 1.22;
  font-weight: 600;
  color: #333333;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
}
.sapporoShortfest__h2Tittle--1 {
  min-height: 88px;
}
.sapporoShortfest__h2Tittle--1::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 33px;
  height: 88px;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/sapporo/ttlbg.svg");
  background-size: cover;
}
.sapporoShortfest__h2Tittle--1_202312 {
  width: 369px;
  height: auto;
}
.sapporoShortfest__h2Tittle--1_202312 img {
  width: 100%;
  height: auto;
}
.sapporoShortfest__h2Tittle--2, .sapporoShortfest__h2Tittle--3 {
  min-height: 115px;
}
.sapporoShortfest__h2Tittle--2::before, .sapporoShortfest__h2Tittle--3::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 33px;
  height: 115px;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/sapporo/ttlbg2.svg");
  background-size: cover;
}
.sapporoShortfest__h2Tittle--3 {
  line-height: 1;
}
.sapporoShortfest__h2SubTittle {
  font-size: 24px;
  line-height: 1;
  margin-top: -22px;
}
.sapporoShortfest__mv {
  width: 950px;
  height: 534.375px;
  margin-top: 36px;
}
.sapporoShortfest__mv img {
  display: block;
  width: 100%;
  height: auto;
}
.sapporoShortfest__text {
  font-size: 17px;
  line-height: 1.76;
  margin-top: 18px;
}
.sapporoShortfest__textLink {
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  font-size: 20px;
  color: #222329;
  font-weight: 600;
}
.sapporoShortfest__textLink-small {
  font-size: 70%;
  font-weight: 400;
  font-family: sans-serif;
}
.sapporoShortfest__textLinkWrap {
  text-align: right;
  margin-top: 20px;
}
.sapporoShortfest__logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 168px;
}
.sapporoShortfest__logo img {
  width: 100%;
  height: auto;
}
.sapporoShortfest__photo {
  width: 300px;
  height: 180px;
}
.sapporoShortfest__photo3wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  width: 950px;
}
.sapporoShortfest__Detail {
  margin-top: 30px;
  padding: 20px 30px;
  background: rgba(245, 245, 245, 0.7);
  border-radius: 10px;
}
.sapporoShortfest__DetailHead {
  position: relative;
  min-height: 70px;
}
.sapporoShortfest__DetailDireLink {
  display: block;
  position: relative;
  height: 70px;
  width: 500px;
}
.sapporoShortfest__DetailDireAvator {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 35px;
  background-color: #979797;
  position: absolute;
  top: 0;
  left: 0;
}
.sapporoShortfest__DetailDireAvator img {
  width: 100%;
  height: 100%;
}
.sapporoShortfest__DetailDire {
  color: #333333;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  position: absolute;
  top: 20px;
  left: 82px;
  width:420px;
}
.sapporoShortfest__DetailDire__eng {
  font-size: 22px;
}
.sapporoShortfest__DetailDireName {
  color: #231815;
  font-size: 22;
  line-height: 1;
  font-weight: 400;
  position: absolute;
  top: 44px;
  left: 82px;
}
.sapporoShortfest__DetailMainActionList {
  position: absolute;
  top: 22px;
  right: 156px;
  display: flex;
  justify-content: space-between;
  height: 40px;
  width: 88px;
}
.sapporoShortfest__DetailMainActionList--202312 {
  justify-content: flex-end;
  right: 150px;
}
.sapporoShortfest__DetailMainActionItem {
  height: 40px;
  width: 40px;
}
.sapporoShortfest__DetailMainActionFeedback {
  position: absolute;
  top: 16px;
  right: 0;
  border: 1px solid #979797;
  border-radius: 25px;
  color: #666666;
  font-size: 22px;
  line-height: 1;
  width: 286px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sapporoShortfest__DetailText {
  font-size: 17px;
  line-height: 1.76;
  margin-top: 12px;
}
.sapporoShortfest__ShortfilmLinksTitle {
  text-align: left;
  font-size: 44px;
  padding: 24px 0 0 32px;
}
.sapporoShortfest__ShortfilmLinks {
  background-image: none;
}
.sapporoShortfest__Introduction {
  padding-top: 16px;
}
.sapporoShortfest__anchor {
  position: absolute;
  top: -86px;
  height: 0;
  width: 100%;
}

.logoSponser {
  width: 146px;
  height: auto;
  display: flex;

}
.logoSponser--news {
  width: 146px;
  height: auto;
}
.logoSponser__Link {
  display: block;
  height: 36px;
}
.logoSponser__Link img {
  width:100%;
  height:auto;
}
.logoSponser__Link--news {
  height: 38px;
}
.logoSponser__Link--1 {
  width: 200px;
}
.logoSponser__Link--2 {
  width: 160px;
}
.logoSponser__Link--news1 {
  width: 146px;
}
.logoSponser__Link--news2 {
  width: 160px;
}
.logoSponserWrap {
  max-width: 1200px;
  margin: 8px auto 0;
  padding: 2px 0 12px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  z-index: 100;
}

.toTopBtn {
  width: 70px;
  height: 70px;
}
.toTopBtn--hide {
  opacity: 0;
}
.toTopBtn--visible {
  opacity: 1;
}
.toTopBtnWrap {
  transition: opacity 0.8s;
  width: 1200px;
  height: 0;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
.toTopBtnLink {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  overflow: hidden;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  text-indent: -200%;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/ui/toTopBtn.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.ShortfilmListMain {
  width: 100%;
  padding-top: 36px;
  position: relative;
  overflow: hidden;
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_obje_yellow.svg"), url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_edu_blue_r.svg"), url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_edu_pink_l.svg"), url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_ap_green_l.svg"), url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_ap_green_r.svg"), url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v2/images/bg_edu_blue_r.svg");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 810px 846px, 700px 700px, 700px 700px, 700px 700px, 900px 900px, 760px 760px;
  background-position: top 860px left -30px, top 1560px right -200px, top 2890px left -40px, top 4740px left -80px, top 5880px right -150px, top 8900px right -190px;
}
.ShortfilmList__leadWrap {
  position: relative;
  margin: 26px 230px 0 0;
  padding: 40px 36px 41px;
  background: var(--col-bg-lv1);
  width: 740px;
}
.ShortfilmList__leadText {
  font-size: 17px;
  line-height: 30px;
}
.ShortfilmList__Inner {
  width: var(--size-width-content-max);
  margin: 0 auto;
}
.ShortfilmList__leadImage::before {
  background-image: url("https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/shortfilm/bg1_pc.png");
  content: "";
  display: block;
  position: absolute;
  top: -190px;
  right: -460px;
  width: 780px;
  height: 520px;
  background-size: cover;
}
.ShortfilmListWrap {
  margin: 50px 0 0 0;
}
.ShortfilmList__Item {
  width: 300px;
  padding: 0 0 50px 0;
}
.ShortfilmList__ItemList {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.ShortfilmList__Item:nth-child(3n-1) {
  margin-left: 35px;
}
.ShortfilmList__Item:nth-child(3n) {
  margin-left: 35px;
}
.ShortfilmList__Link {
  display: block;
}
.ShortfilmList__BodyWrap {
  width: 100%;
}
.ShortfilmList__ThumbnailWrap {
  width: 300px;
  height: 169px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ShortfilmList__PlaybackTimeWrap {
  background-color: #000000;
  opacity: 0.6;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 4px 6px 3px;
  border-radius: 1px;
}
.ShortfilmList__PlaybackTime {
  font-size: 11px;
  line-height: 1;
  color: #ffffff;
}
.ShortfilmList__PlaybackTime small {
  font-size: 70%;
  display: inline-block;
  margin-right: 2px;
}
.ShortfilmList__Thumbnail {
  width: 100%;
  height: auto;
  transition: 0.6s;
}
.ShortfilmList__TextWrap {
  width: 100%;
}
.ShortfilmList__Title {
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: bold;
  color: #333333;
  text-align: left;
  margin-top: 11px;
}
.ShortfilmList__Director {
  font-size: 14px;
  line-height: 1;
  color: #8B8B8B;
  text-align: left;
  margin-top: 8px;
}
.ShortfilmList__BodyCopy {
  font-size: 14px;
  line-height: 26px;
  color: #333333;
  text-align: left;
  margin-top: 8px;
}
.ShortfilmList__sdgsIconList {
  height: 35px;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto 10px 0;
}
.ShortfilmList__sdgsIconItem {
  width: 35px;
  height: 35px;
  text-align: center;
  margin: 0 10px 0 0;
}
.ShortfilmList__sdgsIconImage {
  width: 100%;
  height: 100%;
  display: block;
}

.shortfilm__anchor {
  position: absolute;
  height: 0;
  width: 100%;
  top: -70px;
}

/* lib */
.fade_up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.fade_up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* util */
/* flex内で改行したい文章に使用する */
.wMax {
  display: inline-block;
  width: 100%;
}

.alertBox {
  max-width: 930px;
  margin: 10px auto;
  padding: 8px 12px 8px 38px;
  background: #ffefb0 url(https://s.yimg.jp/images/jpnews/cre/bylines/img/ic_alert.png) 6px 50% no-repeat;
  border: #ffd325 1px solid;
  border-radius: 3px;
  font-size: 14px;
}

/* mixin */
.motherWrap--article {
  background-color: #ffffff;
}

.link-anim {
  transition: opacity 0.3s;
}
.link-anim:hover {
  opacity: 0.7;
}


.sapporoShortfest__ancerLinkWrap{
  display: flex;
  justify-content: space-between;
  margin: 28px auto 0;
  width:950px;
  position: relative;


  
}
.sapporoShortfest__ancerLinkWrap::before{
  content: "";
  height:100px;
  width:1px;
  background-color: #000000;
  color: #000000;
  position: absolute;
  left:510px;
  top:0;
}
.sapporoShortfest__ancerLink1{
  display: block;
  width: 486px;
  height:102px;
  background-image: url(https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/sapporo/sapporoAncerLink1.png);
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -600px;
  overflow: hidden;
}
.sapporoShortfest__ancerLink2{
  display: block;
  width: 412.5px;
  height:102px;
  background-image: url(https://s.yimg.jp/images/expert/feature/documentary/sdgs/v3/images/sapporo/sapporoAncerLink2.png);
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -600px;
  overflow: hidden;
}


.sapporoShortfestWrap2--0-title1_1{
  width:530px;
  height:auto;
}
.sapporoShortfestWrap2--0-title1_1 img{
  width:530px;
  height:auto;
}


.sapporoShortfest__movieButtun--950{
  width:950px;
  height:535px;
  background-color: #000000;

}
.movieBtn{
  display: block;
  width:950px;
  height:535px;
}
.movieBtn img{
  width:100%;
  height: auto;
  overflow: hidden;
}
.sapporoShortfestWrap2--1-title1_2{
  width:220px;
  height:auto;
}

.sapporoShortfestWrap2--0-title2_1{
  width:790px;
  height:141px;
}
.sapporoShortfestWrap2--0-title2_1 img{
  width:100%;
  height:auto;
}

.sapporoShortfestWrap2--0-title2_4{
  width:220px;
  height:70px;
}
.sapporoShortfestWrap2--0-title2_4 img{
  width:220px;
  height:70px;
}
.sapporoShortfestWrap2--0-title2_2{
  width:580px;
  height:70px;
}
.sapporoShortfestWrap2--0-title2_3{
  width:650px;
  height:70px;
}
.sapporoShortfestWrap2--0-title2_2 img{
  width:100%;
  height:auto;
}
.sapporoShortfestWrap2--0-title2_3 img{
  width:100%;
  height:auto;
}
.sapporoShortfestu-18-h2wrap{
  width:950px;
  display:flex ;
}
.sapporoShortfestWrap2--1-Item-title--u18{
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
}
.sapporoShortfestWrap2--1-Item-title--u18__eng{
  font-size: 20px;
}

.sapporoShortfestWrap2--1-Item-title--u18-school{
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
}
.sapporoShortfestWrap2--1-Item-creator--u18{
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
}
.sapporoShortfestWrap2--1-Item-creator--u18__eng{
  font-size: 15px;
  font-weight: 300;
}
.sapporoShortfestWrap2--1-Item-creator--u18__bold{
  font-weight: 600;
}
.sapporoShortfestWrap2--1-Item-textwrap--u18 {
  margin-top: 16px;
}


.sapporoShortfestWrap2--1-Item--border::before{
  content: "";
  position: absolute;
  left: 475px;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  width: 1px;
  height: 370px;
  background: #000000;
}
.sapporoShortfest_u18_school1{
  margin-top: 12px;
  font-size:22px;
  line-height: 2;
  font-weight: 700;
  color: #333333;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
}
.sapporoShortfest_u18_name1{
  font-size:22px;
  line-height: 1.1;
  font-weight: 600;
  color: #231815;
  font-family: 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
  margin-bottom: 12px;
}
.sapporoShortfest_u18_name1__eng{
  font-size:18px;
  line-height: 1.1;
  
  font-weight: 300;
}
.sapporoShortfest__anchor {
  position: absolute;
  top: -86px;
  height: 0;
  width: 100%;
}

/*sapporoMovie*/
.movieWrap{
  width: 950px;
  height:535px;
  background-color: black;
}
.movieWrap img{
  width: 950px;
  height:535px;}
.movieModal{
  width:100vw;
  height:100vh;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  position: fixed;
  top:0;
  left:0;
}
.movieBtn{
width:100%;
height:100%;
display: block;

}