@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
  --text-black: #333333;
  --text-gray: #666666;
  --primary: #1D50A2;
  --secondary: #00A051;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?fekkvp");
  src: url("../fonts/icomoon.eot?fekkvp#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?fekkvp") format("truetype"), url("../fonts/icomoon.woff?fekkvp") format("woff"), url("../fonts/icomoon.svg?fekkvp#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/* ---- Page Base ---- */
html, body {
  width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: var(--text-gray);
  background-color: #FFF;
}

#site_id {
  display: flex;
  height: 80px;
  padding: 16px 40px 15px;
  justify-content: space-between;
  align-items: center;
}
#site_id .logo-mark, #site_id .spacer {
  display: block;
  width: 48px;
}
#site_id .company-name {
  display: block;
  width: 280px;
}
@media (max-width: 930px) {
  #site_id {
    height: 56px;
    padding: 5px 10px 5px;
    align-items: center;
  }
  #site_id .logo-mark {
    width: 32px;
  }
  #site_id .spacer {
    width: 0;
  }
  #site_id .company-name {
    width: calc(100% - 33px);
    text-align: end;
  }
  #site_id .company-name > img {
    width: 158px;
    display: inline;
  }
}

/* ---- Main Visual ---- */
#masthead {
  min-height: calc(100dvh - 80px);
  width: 100%;
  background: url(../img/masthead.jpg) no-repeat;
  background-size: cover;
  display: flex;
  margin-bottom: 120px;
}
@media (max-width: 750px) {
  #masthead {
    background-size: 768px;
    background-position: top right;
    margin-bottom: 0;
  }
}
#masthead .head-contents {
  min-height: calc(100dvh - 80px);
  background: url(../img/masthead-shape.png) no-repeat right top;
  background-size: cover;
  padding: 110px 110px 0;
  position: relative;
}
@media (max-width: 930px) {
  #masthead .head-contents {
    width: 100%;
    background: url(../img/masthead-shape-sp.png) no-repeat center top;
    background-size: 980px;
    padding: 15px 20px;
  }
}
#masthead h1 {
  color: #FFF;
  font-weight: bold;
  font-size: 4.5rem;
  margin-bottom: 6rem;
}
@media (max-width: 930px) {
  #masthead h1 {
    font-size: 2.25rem;
  }
}
#masthead h1 .small {
  font-size: 2rem;
  display: block;
}
@media (max-width: 930px) {
  #masthead h1 .small {
    font-size: 1.25rem;
  }
}
#masthead ul.download {
  margin-bottom: 6rem;
}
@media (max-width: 930px) {
  #masthead ul.download {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto 0;
    bottom: 0;
  }
}
@media (max-width: 480px) {
  #masthead ul.download {
    width: calc(100% - 40px);
  }
}
#masthead ul.download li {
  margin-bottom: 1.5rem;
}
@media (max-width: 930px) {
  #masthead ul.download li {
    margin-bottom: 1rem;
  }
}
#masthead ul.download li a.btn:hover {
  border-color: #FFF;
}
#masthead ul.download li a.btn.separate {
  color: var(--secondary);
  border-color: var(--secondary);
}
#masthead ul.download li a.btn.separate:hover {
  background-color: var(--secondary);
  border-color: #FFF;
  color: #FFF;
}
#masthead ul.download li a.btn.separate:after {
  content: "\e900";
}
#masthead .scroll {
  position: absolute;
  bottom: 10px;
  left: 45px;
  color: #FFF;
}
#masthead .scroll .scroll-arrow-anime {
  position: relative;
  writing-mode: sideways-lr;
  padding-bottom: 90px;
  text-align: center;
  line-height: 1;
}
#masthead .scroll .scroll-arrow-anime:after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background-color: #FFF;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  animation: scrollAnime 2s ease-in-out infinite;
}
@media (max-width: 930px) {
  #masthead .scroll {
    display: none;
  }
}

@keyframes scrollAnime {
  0% {
    height: 0;
    bottom: 80px;
  }
  30% {
    height: 80px;
    bottom: 0;
  }
  100% {
    bottom: 0;
    height: 0;
  }
}
/* ---- Contents Utiluty ---- */
.container {
  max-width: 1126px;
  margin: auto;
}
@media (max-width: 1126px) {
  .container {
    padding: 20px;
  }
}

p {
  line-height: 2;
}
p.narrow {
  line-height: 1.8;
}

.btn {
  width: 280px;
  max-width: 100%;
  height: 80px;
  padding: 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 40px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: #FFF;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
}
.btn:after {
  content: var(--pdf-icon);
  width: 28px;
  height: 28px;
  display: inline-block;
  position: absolute;
  right: 20px;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  font-size: 1.8rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
}
.btn:hover {
  background-color: var(--primary);
  color: #FFF;
}
.btn.wide {
  padding: 0 25px 0 0;
}
@media (max-width: 480px) {
  .btn {
    width: 100%;
  }
}

.btn.invert {
  border-color: #FFF;
  background-color: var(--primary);
  color: #FFF;
}
.btn.invert:hover {
  background-color: #FFF;
  color: var(--primary);
}
@media (max-width: 480px) {
  .btn.invert {
    width: 100%;
  }
}

h2 {
  text-align: center;
  font-size: 3.75rem;
  color: var(--text-black);
  line-height: 1.5;
}
@media (max-width: 930px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 930px) {
  h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
h3.small {
  font-size: 2rem;
}
@media (max-width: 930px) {
  h3.small {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.lead {
  font-size: 1.5rem;
  line-height: 2;
}
@media (max-width: 930px) {
  .lead {
    font-size: 1rem;
  }
}

.text-big {
  font-size: 1.5rem;
}
@media (max-width: 930px) {
  .text-big {
    font-size: 1rem;
  }
}

@media (max-width: 930px) {
  .sp-hidden {
    display: none;
  }
}

h2 + .en-title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.5;
  line-height: 1.5;
  margin-top: -7px;
}
@media (max-width: 930px) {
  h2 + .en-title {
    font-size: 1rem;
    margin-top: 0;
  }
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 930px) {
  .row {
    flex-direction: column;
  }
}
.row.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 930px) {
  .row.reverse {
    flex-direction: column;
  }
}

.cols-2 {
  width: 558px;
  position: relative;
}
@media (max-width: 1128px) {
  .cols-2 {
    width: calc(50% - 20px);
  }
}
@media (max-width: 930px) {
  .cols-2 {
    width: 100% !important;
  }
}
.cols-2.gutter {
  width: 551px;
}
@media (max-width: 1128px) {
  .cols-2.gutter {
    width: calc(50% - 20px);
  }
}
@media (max-width: 930px) {
  .cols-2.gutter {
    width: calc(100% - 40px);
    margin: 10px auto;
  }
}
@media (max-width: 460px) {
  .cols-2.gutter {
    width: 100%;
  }
}
.cols-2.gutter-wide {
  width: 528px;
}

.cols-3 {
  width: 360px;
}
@media (max-width: 930px) {
  .cols-3 {
    width: 100%;
  }
}

.content {
  padding: 32px;
}
@media (max-width: 930px) {
  .content {
    padding: 25px 20px;
  }
}

.panel {
  background-color: #FFF;
  color: var(--text-black);
}
@media (max-width: 930px) {
  .panel {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.panel-shadow {
  background-color: #FFF;
  box-shadow: 0px 0px 24px rgba(51, 51, 51, 0.2666666667);
}
@media (max-width: 930px) {
  .panel-shadow {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.panel-blue {
  background-color: rgba(29, 80, 162, 0.0980392157);
}
@media (max-width: 930px) {
  .panel-blue {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

figure {
  max-width: 558px;
  display: block;
  margin: auto;
}
@media (max-width: 930px) {
  figure.panel, figure.panel-blue, figure.panel-shadow {
    max-width: 558px;
    width: 100%;
  }
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card .card-body {
  flex: 1 1 auto;
}
.card .btn-area {
  margin-top: 1.5rem;
}
.card .btn-area > a {
  margin: auto;
}

.text-center {
  text-align: center;
}
.text-center > .btn {
  margin: auto;
}

.text-black {
  color: var(--text-black);
}

/* ---- Srctions ---- */
@media (max-width: 930px) {
  #message .container {
    padding: 0;
  }
}
#message .top-message {
  background-color: var(--primary);
  color: #FFF;
  margin-left: 90px;
  margin-top: 120px;
  position: relative;
}
@media (max-width: 930px) {
  #message .top-message {
    margin-left: 0;
    margin-top: 65px;
    padding-bottom: 4rem;
  }
}
#message .top-message:before {
  content: "Top message";
  position: absolute;
  bottom: -30px;
  right: 0;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 96px;
  opacity: 0.1;
}
@media (max-width: 930px) {
  #message .top-message:before {
    font-size: 3rem;
    bottom: -14px;
  }
}
#message .top-message figure {
  margin-top: -90px;
  margin-left: -90px;
  padding-bottom: 70px;
}
#message .top-message figure img {
  max-width: 506px;
}
@media (max-width: 930px) {
  #message .top-message figure {
    margin-top: -80px;
    margin-left: 0;
    padding: 40px 40px 30px;
  }
  #message .top-message figure img {
    max-width: 100%;
  }
}
#message .top-message h3 {
  font-size: 2.5rem;
  color: #FFF;
}
@media (max-width: 930px) {
  #message .top-message h3 {
    font-size: 1.75rem;
  }
}
#message .top-message .content {
  padding: 48px;
}
@media (max-width: 930px) {
  #message .top-message .content {
    padding: 0 20px 20px 20px;
  }
}
#message .directors {
  background: url(../img/image_back_01.jpg) no-repeat bottom center;
  background-size: cover;
  padding-bottom: 200px;
  padding-top: 1px;
  margin-top: 180px;
  position: relative;
}
#message .directors > .container {
  margin-top: -80px;
}
#message .directors .panel-shadow {
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.1019607843);
}
@media (max-width: 930px) {
  #message .directors {
    margin-bottom: 0;
    padding: 20px 20px 30px;
    background-size: 400%;
    background-position: left center;
  }
  #message .directors .container > .cols-2:nth-child(1) {
    margin-top: -50px;
  }
}

#value_creation {
  margin-bottom: 240px;
}
@media (max-width: 930px) {
  #value_creation {
    margin-bottom: 80px;
  }
}
@media (max-width: 460px) {
  #value_creation figure {
    max-width: calc(100% - 50px);
    margin: 0 25px 25px;
  }
}
#value_creation h3.small {
  color: var(--text-black);
  font-size: 2rem;
  margin-bottom: 0;
}
@media (max-width: 930px) {
  #value_creation h3.small {
    font-size: 1.25rem;
  }
}
#value_creation .grow-cycle {
  margin-top: 6rem;
  position: relative;
}
@media (max-width: 930px) {
  #value_creation .grow-cycle {
    margin-top: 0;
  }
  #value_creation .grow-cycle .content {
    padding: 0;
  }
}
@media (max-width: 460px) {
  #value_creation .grow-cycle figure {
    max-width: calc(100% - 50px);
    margin: 0 25px 25px;
  }
}
#value_creation .grow-cycle:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 200vw;
  height: 100%;
  left: -30%;
  bottom: -50px;
  background-color: #F4F4F4;
  transform: rotate(-10deg);
}
@media (max-width: 930px) {
  #value_creation .grow-cycle:before {
    height: 150px;
    bottom: -30px;
  }
}
#value_creation .grow-cycle:after {
  content: "Growth Cycle";
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 96px;
  opacity: 0.1;
  position: absolute;
  bottom: -95px;
  z-index: -1;
}
@media (max-width: 930px) {
  #value_creation .grow-cycle:after {
    font-size: 3rem;
    bottom: -40px;
  }
}

#strategy .blue-stage {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding: 5rem 0 9rem;
  color: #FFF;
  background-color: var(--primary);
}
@media (max-width: 930px) {
  #strategy .blue-stage {
    margin-top: 1rem;
    padding-top: 0;
    padding-bottom: 40px;
  }
}
#strategy .blue-stage figure {
  max-width: 558px;
  margin: 40px auto;
}
@media (max-width: 600px) {
  #strategy .blue-stage figure {
    max-width: calc(100% - 40px);
    margin: 20px;
  }
}
#strategy .blue-stage h3 {
  color: #FFF;
}
#strategy .blue-stage .feature {
  margin-top: 40px;
}
@media (max-width: 930px) {
  #strategy .blue-stage .feature {
    margin-top: 45px;
  }
}
#strategy .blue-stage .feature h2 {
  color: #FFF;
  width: 405px;
  display: flex;
  flex-direction: column;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 96px;
  opacity: 0.2;
  position: absolute;
  top: -144px;
  left: 0;
  right: 0;
  z-index: -1;
  margin: auto;
  line-height: 1;
}
#strategy .blue-stage .feature h2 span {
  display: block;
  align-self: self-start;
}
#strategy .blue-stage .feature h2 span.end {
  align-self: end;
}
@media (max-width: 930px) {
  #strategy .blue-stage .feature h2 {
    font-size: 3rem;
    flex-direction: row;
    top: -30px;
    margin-left: -24px;
  }
  #strategy .blue-stage .feature h2 span {
    display: inline;
  }
}
#strategy .blue-stage .segment .panel {
  margin-bottom: 24px;
}
#strategy .blue-stage .segment figure {
  width: 690px !important;
  max-width: none;
  flex-shrink: 0;
  margin: 0 !important;
}
@media (max-width: 930px) {
  #strategy .blue-stage .segment figure {
    max-width: 558px;
    overflow: hidden;
    margin: 0;
  }
  #strategy .blue-stage .segment figure > img {
    overflow: hidden;
  }
}
@media (max-width: 460px) {
  #strategy .blue-stage .segment figure {
    max-width: 100%;
    height: 230px;
    position: relative;
  }
  #strategy .blue-stage .segment figure > img {
    max-width: 558px;
    position: absolute;
  }
}

#sustainability {
  margin-top: 8rem;
}
@media (max-width: 930px) {
  #sustainability {
    margin-top: 2rem;
  }
  #sustainability .cols-2.gutter {
    width: 100% !important;
    margin: 0 0 20px;
  }
}

.pale-stage {
  margin-top: 15rem;
  background-color: rgba(29, 80, 162, 0.0980392157);
  padding-top: 1px;
  padding-bottom: 6rem;
}
@media (max-width: 930px) {
  .pale-stage {
    margin-top: 4rem;
    padding-bottom: 0;
  }
}

#intecrated_report {
  margin-top: -8rem;
  padding-bottom: 3rem;
  background-color: #FFF;
  border: 1px solid #707070;
}
@media (max-width: 930px) {
  #intecrated_report {
    margin-top: -4rem;
    padding-bottom: 1rem;
  }
}
#intecrated_report .download {
  padding: 0 30px;
}
@media (max-width: 930px) {
  #intecrated_report .download {
    padding: 0 13px;
  }
}
#intecrated_report .download .content {
  padding: 0 20px;
}
@media (max-width: 930px) {
  #intecrated_report .download .content {
    padding: 0;
  }
}
#intecrated_report .download h4 {
  color: var(--text-black);
  border-bottom: 1px solid var(--text-black);
  padding: 0.5rem 0;
}
@media (max-width: 930px) {
  #intecrated_report .download h4 {
    font-size: 1.25rem;
  }
}
#intecrated_report .download figure {
  max-width: 396px;
}
#intecrated_report .download a.pdf-link {
  position: relative;
  display: block;
  padding-left: 36px;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
}
#intecrated_report .download a.pdf-link:before {
  content: var(--pdf-icon);
  width: 28px;
  height: 28px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 4px;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 1.8rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
}
#intecrated_report .download a.pdf-link:hover {
  opacity: 0.5;
}
#intecrated_report .download .pdf-list li {
  margin-bottom: 1rem;
}
#intecrated_report .download .pdf-list p {
  padding-left: 36px;
}

#backnumber {
  margin-top: 7rem;
}
@media (max-width: 460px) {
  #backnumber {
    margin-top: 4rem;
  }
}
#backnumber .backnumber-link {
  display: flex;
  flex-wrap: wrap;
  margin: 3rem -10px;
}
@media (max-width: 930px) {
  #backnumber .backnumber-link {
    justify-content: center;
  }
}
@media (max-width: 460px) {
  #backnumber .backnumber-link {
    margin: 1rem 0;
    flex-direction: column;
    width: 100%;
  }
}
#backnumber .backnumber-link li {
  padding: 13px;
}
@media (max-width: 460px) {
  #backnumber .backnumber-link li {
    padding: 0;
    margin-bottom: 20px;
  }
}
#backnumber .backnumber-link a.btn {
  width: 260px;
}
@media (max-width: 460px) {
  #backnumber .backnumber-link a.btn {
    width: 100%;
  }
}

/* ---- Footer ---- */
footer {
  background-color: var(--primary);
  color: #FFF;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 15rem;
}
@media (max-width: 930px) {
  footer {
    padding-top: 2rem;
    padding-bottom: 8rem;
  }
}
footer .page-top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 72px;
  height: 72px;
  z-index: 100;
  opacity: 0;
  bottom: -50px;
  transition: all 0.5s;
}
@media (max-width: 930px) {
  footer .page-top {
    right: 20px;
  }
}
footer .page-top.is-visible {
  opacity: 1;
  bottom: 50px;
}
@media (max-width: 930px) {
  footer .page-top.is-visible {
    bottom: 20px;
  }
}
footer .page-top a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  border-radius: 50%;
  background-color: #FFF;
  box-shadow: 1px 1px 16px rgba(0, 0, 0, 0.16);
  color: var(--primary);
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  padding-top: 24px;
}
footer .page-top a:after {
  content: "\e900";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 25px;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 24px;
  height: 14px;
  transform: rotate(180deg);
  font-size: 16px;
  color: var(--primary);
}
footer .library-top > .btn {
  font-size: 2rem;
  margin: auto;
  width: 480px;
  padding: 0;
}
footer .library-top > .btn:after {
  content: "";
  display: none;
}
@media (max-width: 930px) {
  footer .library-top > .btn {
    font-size: 1.25rem;
  }
}
footer .foot-nav {
  margin-top: 5rem;
}
@media (max-width: 930px) {
  footer .foot-nav {
    margin-top: 4rem;
  }
}
footer .foot-nav ul {
  margin: auto;
  display: flex;
  width: fit-content;
}
footer .foot-nav ul li {
  padding: 0 1rem;
  border-right: 1px solid #FFF;
}
footer .foot-nav ul li:nth-last-child(1) {
  border-right: none;
}
footer .foot-nav ul li a {
  text-decoration: none;
}
footer .foot-nav ul li a:hover {
  opacity: 0.5;
}
@media (max-width: 930px) {
  footer .foot-nav ul {
    flex-direction: column;
  }
  footer .foot-nav ul li {
    border-right: none;
    margin-bottom: 1rem;
    text-align: center;
  }
}
footer .copyright {
  color: rgba(255, 255, 255, 0.5333333333);
  font-size: 0.75rem;
  margin-top: 1rem;
  text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 930px) {
  .sp-mt-0 {
    margin-top: 0rem !important;
  }
  .sp-mt-1 {
    margin-top: 1rem !important;
  }
  .sp-mt-2 {
    margin-top: 2rem !important;
  }
  .sp-mt-3 {
    margin-top: 3rem !important;
  }
  .sp-text-center {
    text-align: center;
  }
  .sp-text-center > .btn {
    margin: auto;
  }
  .sp-text-left {
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */